mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
Fix PR8854. Track inserted copies to avoid read before write. Sorry, it's hard to reduce a sensible small test case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125523 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e98d646b11
commit
cf75ab5975
@ -331,25 +331,37 @@ bool PeepholeOptimizer::runOnMachineFunction(MachineFunction &MF) {
|
||||
ImmDefRegs.clear();
|
||||
ImmDefMIs.clear();
|
||||
|
||||
MachineBasicBlock::iterator PMII = I->begin();
|
||||
for (MachineBasicBlock::iterator
|
||||
MII = I->begin(), MIE = I->end(); MII != MIE; ) {
|
||||
MachineInstr *MI = &*MII++;
|
||||
MachineInstr *MI = &*MII;
|
||||
LocalMIs.insert(MI);
|
||||
|
||||
if (MI->isLabel() || MI->isPHI() || MI->isImplicitDef() ||
|
||||
MI->isKill() || MI->isInlineAsm() || MI->isDebugValue() ||
|
||||
MI->hasUnmodeledSideEffects())
|
||||
MI->hasUnmodeledSideEffects()) {
|
||||
++MII;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (MI->getDesc().isCompare()) {
|
||||
Changed |= OptimizeCmpInstr(MI, MBB);
|
||||
} else if (isMoveImmediate(MI, ImmDefRegs, ImmDefMIs)) {
|
||||
if (OptimizeCmpInstr(MI, MBB)) {
|
||||
// MI is deleted.
|
||||
Changed = true;
|
||||
MII = llvm::next(PMII);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
if (isMoveImmediate(MI, ImmDefRegs, ImmDefMIs)) {
|
||||
SeenMoveImm = true;
|
||||
} else {
|
||||
Changed |= OptimizeExtInstr(MI, MBB, LocalMIs);
|
||||
if (SeenMoveImm)
|
||||
Changed |= FoldImmediate(MI, MBB, ImmDefRegs, ImmDefMIs);
|
||||
}
|
||||
PMII = MII;
|
||||
++MII;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user