mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 21:35:07 +00:00
Add a LiveVariables::VarInfo::dump method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25080 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0df687b1be
commit
dacceef266
@ -35,10 +35,30 @@
|
|||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/Config/alloca.h"
|
#include "llvm/Config/alloca.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <iostream>
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
static RegisterAnalysis<LiveVariables> X("livevars", "Live Variable Analysis");
|
static RegisterAnalysis<LiveVariables> X("livevars", "Live Variable Analysis");
|
||||||
|
|
||||||
|
void LiveVariables::VarInfo::dump() const {
|
||||||
|
std::cerr << "Register Defined by: ";
|
||||||
|
if (DefInst)
|
||||||
|
std::cerr << *DefInst;
|
||||||
|
else
|
||||||
|
std::cerr << "<null>\n";
|
||||||
|
std::cerr << " Alive in blocks: ";
|
||||||
|
for (unsigned i = 0, e = AliveBlocks.size(); i != e; ++i)
|
||||||
|
if (AliveBlocks[i]) std::cerr << i << ", ";
|
||||||
|
std::cerr << "\n Killed by:";
|
||||||
|
if (Kills.empty())
|
||||||
|
std::cerr << " No instructions.\n";
|
||||||
|
else {
|
||||||
|
for (unsigned i = 0, e = Kills.size(); i != e; ++i)
|
||||||
|
std::cerr << "\n #" << i << ": " << *Kills[i];
|
||||||
|
std::cerr << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
|
LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
|
||||||
assert(MRegisterInfo::isVirtualRegister(RegIdx) &&
|
assert(MRegisterInfo::isVirtualRegister(RegIdx) &&
|
||||||
"getVarInfo: not a virtual register!");
|
"getVarInfo: not a virtual register!");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user