mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
If the first definition of a virtual register is a partial redef, add an
<imp-def> operand for the full register. This ensures that the full physical register is marked live after register allocation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104320 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -320,6 +320,12 @@ void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
|
||||
// of inputs.
|
||||
if (MO.isEarlyClobber())
|
||||
defIndex = MIIdx.getUseIndex();
|
||||
|
||||
// Make sure the first definition is not a partial redefinition. Add an
|
||||
// <imp-def> of the full register.
|
||||
if (MO.getSubReg())
|
||||
mi->addRegisterDefined(interval.reg);
|
||||
|
||||
MachineInstr *CopyMI = NULL;
|
||||
unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
|
||||
if (mi->isExtractSubreg() || mi->isInsertSubreg() || mi->isSubregToReg() ||
|
||||
@ -1371,7 +1377,8 @@ rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
|
||||
MI->eraseFromParent();
|
||||
continue;
|
||||
}
|
||||
assert(!O.isImplicit() && "Spilling register that's used as implicit use?");
|
||||
assert(!(O.isImplicit() && O.isUse()) &&
|
||||
"Spilling register that's used as implicit use?");
|
||||
SlotIndex index = getInstructionIndex(MI);
|
||||
if (index < start || index >= end)
|
||||
continue;
|
||||
|
Reference in New Issue
Block a user