mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Fix for PR1266. Don't mark a two address operand IsKill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35365 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -754,10 +754,11 @@ void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM,
|
||||
// necessary.
|
||||
bool WasKill = false;
|
||||
if (SSMI) {
|
||||
MachineOperand *MOK = SSMI->findRegisterUseOperand(PhysReg, true);
|
||||
if (MOK) {
|
||||
WasKill = MOK->isKill();
|
||||
MOK->unsetIsKill();
|
||||
int UIdx = SSMI->findRegisterUseOperand(PhysReg, true);
|
||||
if (UIdx != -1) {
|
||||
MachineOperand &MOK = SSMI->getOperand(UIdx);
|
||||
WasKill = MOK.isKill();
|
||||
MOK.unsetIsKill();
|
||||
}
|
||||
}
|
||||
if (ti == -1) {
|
||||
@ -840,17 +841,20 @@ void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM,
|
||||
// necessary.
|
||||
bool WasKill = false;
|
||||
if (SSMI) {
|
||||
MachineOperand *MOK = SSMI->findRegisterUseOperand(PhysReg, true);
|
||||
if (MOK) {
|
||||
WasKill = MOK->isKill();
|
||||
MOK->unsetIsKill();
|
||||
int UIdx = SSMI->findRegisterUseOperand(PhysReg, true);
|
||||
if (UIdx != -1) {
|
||||
MachineOperand &MOK = SSMI->getOperand(UIdx);
|
||||
WasKill = MOK.isKill();
|
||||
MOK.unsetIsKill();
|
||||
}
|
||||
}
|
||||
MachineInstr *CopyMI = prior(MII);
|
||||
if (WasKill) {
|
||||
// Transfer kill to the next use.
|
||||
MachineOperand *MOU = CopyMI->findRegisterUseOperand(PhysReg);
|
||||
MOU->setIsKill();
|
||||
int UIdx = CopyMI->findRegisterUseOperand(PhysReg);
|
||||
assert(UIdx != -1);
|
||||
MachineOperand &MOU = CopyMI->getOperand(UIdx);
|
||||
MOU.setIsKill();
|
||||
}
|
||||
Spills.addLastUse(PhysReg, CopyMI);
|
||||
|
||||
@ -945,18 +949,25 @@ void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM,
|
||||
// extended. Remove its kill.
|
||||
bool WasKill = false;
|
||||
if (SSMI) {
|
||||
MachineOperand *MOK = SSMI->findRegisterUseOperand(InReg, true);
|
||||
if (MOK) {
|
||||
WasKill = MOK->isKill();
|
||||
MOK->unsetIsKill();
|
||||
int UIdx = SSMI->findRegisterUseOperand(InReg, true);
|
||||
if (UIdx != -1) {
|
||||
MachineOperand &MOK = SSMI->getOperand(UIdx);
|
||||
WasKill = MOK.isKill();
|
||||
MOK.unsetIsKill();
|
||||
}
|
||||
}
|
||||
if (NextMII != MBB.end()) {
|
||||
// If NextMII uses InReg (must be the copy?), mark it killed.
|
||||
MachineOperand *MOU = NextMII->findRegisterUseOperand(InReg);
|
||||
if (MOU) {
|
||||
if (WasKill)
|
||||
MOU->setIsKill();
|
||||
// If NextMII uses InReg and the use is not a two address
|
||||
// operand, mark it killed.
|
||||
int UIdx = NextMII->findRegisterUseOperand(InReg);
|
||||
if (UIdx != -1) {
|
||||
MachineOperand &MOU = NextMII->getOperand(UIdx);
|
||||
if (WasKill) {
|
||||
const TargetInstrDescriptor *NTID =
|
||||
NextMII->getInstrDescriptor();
|
||||
if (NTID->getOperandConstraint(UIdx, TOI::TIED_TO) == -1)
|
||||
MOU.setIsKill();
|
||||
}
|
||||
Spills.addLastUse(InReg, &(*NextMII));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user