mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Sparc: Implement emitFrameIndexDebugValue and getDebugValue Location hooks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147269 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -62,6 +62,8 @@ namespace {
|
||||
|
||||
virtual bool isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB)
|
||||
const;
|
||||
|
||||
virtual MachineLocation getDebugValueLocation(const MachineInstr *MI) const;
|
||||
};
|
||||
} // end of anonymous namespace
|
||||
|
||||
@@ -241,7 +243,14 @@ isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const {
|
||||
return I == Pred->end() || !I->isBarrier();
|
||||
}
|
||||
|
||||
|
||||
MachineLocation SparcAsmPrinter::
|
||||
getDebugValueLocation(const MachineInstr *MI) const {
|
||||
assert(MI->getNumOperands() == 4 && "Invalid number of operands!");
|
||||
assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm() &&
|
||||
"Unexpected MachineOperand types");
|
||||
return MachineLocation(MI->getOperand(0).getReg(),
|
||||
MI->getOperand(1).getImm());
|
||||
}
|
||||
|
||||
// Force static initialization.
|
||||
extern "C" void LLVMInitializeSparcAsmPrinter() {
|
||||
|
Reference in New Issue
Block a user