mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-01 18:33:56 +00:00
s/method/function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2177 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
35e309ab01
commit
4d669b510c
@ -27,7 +27,7 @@ public:
|
||||
|
||||
protected:
|
||||
void outputConstants(bool isMethod);
|
||||
void processMethod(const Method *M);
|
||||
void processMethod(const Function *F);
|
||||
void processBasicBlock(const BasicBlock *BB);
|
||||
void processInstruction(const Instruction *I);
|
||||
|
||||
|
@ -167,7 +167,7 @@ std::ostream &operator<<(std::ostream &os, const MachineOperand &mop)
|
||||
case MachineOperand::MO_PCRelativeDisp:
|
||||
{
|
||||
const Value* opVal = mop.getVRegValue();
|
||||
bool isLabel = isa<Method>(opVal) || isa<BasicBlock>(opVal);
|
||||
bool isLabel = isa<Function>(opVal) || isa<BasicBlock>(opVal);
|
||||
os << "%disp(" << (isLabel? "label " : "addr-of-val ");
|
||||
if (opVal->hasName())
|
||||
os << opVal->getName();
|
||||
|
@ -6,9 +6,9 @@ using std::cerr;
|
||||
// This constructor inits IG. The actual matrix is created by a call to
|
||||
// createInterferenceGraph() above.
|
||||
//----------------------------------------------------------------------------
|
||||
RegClass::RegClass(const Method *const M,
|
||||
const MachineRegClassInfo *const Mrc,
|
||||
const ReservedColorListType *const RCL)
|
||||
RegClass::RegClass(const Function *M,
|
||||
const MachineRegClassInfo *Mrc,
|
||||
const ReservedColorListType *RCL)
|
||||
: Meth(M), MRC(Mrc), RegClassID( Mrc->getRegClassID() ),
|
||||
IG(this), IGNodeStack(), ReservedColorList(RCL) {
|
||||
if( DEBUG_RA)
|
||||
|
@ -6,9 +6,9 @@ using std::cerr;
|
||||
// This constructor inits IG. The actual matrix is created by a call to
|
||||
// createInterferenceGraph() above.
|
||||
//----------------------------------------------------------------------------
|
||||
RegClass::RegClass(const Method *const M,
|
||||
const MachineRegClassInfo *const Mrc,
|
||||
const ReservedColorListType *const RCL)
|
||||
RegClass::RegClass(const Function *M,
|
||||
const MachineRegClassInfo *Mrc,
|
||||
const ReservedColorListType *RCL)
|
||||
: Meth(M), MRC(Mrc), RegClassID( Mrc->getRegClassID() ),
|
||||
IG(this), IGNodeStack(), ReservedColorList(RCL) {
|
||||
if( DEBUG_RA)
|
||||
|
Loading…
x
Reference in New Issue
Block a user