mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-24 13:18:17 +00:00
Modified VNInfo. The "copy" member is now a union which holds the copy for a register interval, or the defining register for a stack interval. Access is via getCopy/setCopy and getReg/setReg.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78620 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -790,7 +790,7 @@ void StrongPHIElimination::ScheduleCopies(MachineBasicBlock* MBB,
|
||||
true);
|
||||
|
||||
LiveRange R = LI.addLiveRangeToEndOfBlock(I->first, I->second);
|
||||
R.valno->copy = I->second;
|
||||
R.valno->setCopy(I->second);
|
||||
R.valno->def =
|
||||
LiveIntervals::getDefIndex(LI.getInstructionIndex(I->second));
|
||||
}
|
||||
@@ -974,7 +974,7 @@ bool StrongPHIElimination::runOnMachineFunction(MachineFunction &Fn) {
|
||||
|
||||
LiveRange R = LI.addLiveRangeToEndOfBlock(I->first,
|
||||
--SI->second->getFirstTerminator());
|
||||
R.valno->copy = --SI->second->getFirstTerminator();
|
||||
R.valno->setCopy(--SI->second->getFirstTerminator());
|
||||
R.valno->def = LiveIntervals::getDefIndex(instrIdx);
|
||||
|
||||
DOUT << "Renaming failed: " << SI->first << " -> "
|
||||
|
||||
Reference in New Issue
Block a user