1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

A restore is promoted to copy (or deleted entirely), remove the kill from the last use of the targetted register.

llvm-svn: 34773
This commit is contained in:
Evan Cheng 2007-03-01 02:27:30 +00:00
parent ce7f2618a9
commit ad431d7a94

View File

@ -855,14 +855,15 @@ void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM) {
} else
DOUT << "Removing now-noop copy: " << MI;
// Extend the live range of the MI that last kill the register if
// the next MI reuse it.
// Either way, the live range of the last kill of InReg has been
// extended. Remove its kill.
MachineOperand *MOK = SSMI->findRegisterUseOperand(InReg, true);
if (MOK && NextMII != MBB.end()) {
MOK->unsetIsKill();
// If NextMII uses InReg (must be the copy?), mark it killed.
MachineOperand *MOU = NextMII->findRegisterUseOperand(InReg);
if (MOU) {
MOU->setIsKill();
MOK->unsetIsKill();
Spills.UpdateLastUse(InReg, &(*NextMII));
}
}