mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Update DBG_VALUE to refer appropriate stack slot in case of a spill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108023 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
58dbf3784d
commit
7a029b6d7e
@ -764,8 +764,25 @@ void RAFast::AllocateBasicBlock() {
|
|||||||
LiveRegMap::iterator LRI = LiveVirtRegs.find(Reg);
|
LiveRegMap::iterator LRI = LiveVirtRegs.find(Reg);
|
||||||
if (LRI != LiveVirtRegs.end())
|
if (LRI != LiveVirtRegs.end())
|
||||||
setPhysReg(MI, i, LRI->second.PhysReg);
|
setPhysReg(MI, i, LRI->second.PhysReg);
|
||||||
else
|
else {
|
||||||
MO.setReg(0); // We can't allocate a physreg for a DebugValue, sorry!
|
int SS = StackSlotForVirtReg[Reg];
|
||||||
|
if (SS == -1)
|
||||||
|
MO.setReg(0); // We can't allocate a physreg for a DebugValue, sorry!
|
||||||
|
else {
|
||||||
|
// Modify DBG_VALUE now that the value is in a spill slot.
|
||||||
|
uint64_t Offset = MI->getOperand(1).getImm();
|
||||||
|
const MDNode *MDPtr =
|
||||||
|
MI->getOperand(MI->getNumOperands()-1).getMetadata();
|
||||||
|
DebugLoc DL = MI->getDebugLoc();
|
||||||
|
if (MachineInstr *NewDV =
|
||||||
|
TII->emitFrameIndexDebugValue(*MF, SS, Offset, MDPtr, DL)) {
|
||||||
|
DEBUG(dbgs() << "Modifying debug info due to spill:" << "\t" << *MI);
|
||||||
|
MachineBasicBlock *MBB = MI->getParent();
|
||||||
|
MBB->insert(MBB->erase(MI), NewDV);
|
||||||
|
} else
|
||||||
|
MO.setReg(0); // We can't allocate a physreg for a DebugValue, sorry!
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Next instruction.
|
// Next instruction.
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user