mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 16:19:52 +00:00
Ignore IMPLICIT_DEF instructions when computing physreg liveness.
While they appear to provide a normal clobbering def, they don't in the case of the awkward IMPLICIT_DEF+INSERT_SUBREG idiom. It would be good to change INSERT_SUBREG; until then, this change allows post-regalloc scheduling to cope in a mildly conservative way. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60583 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -353,6 +353,13 @@ bool SchedulePostRATDList::BreakAntiDependencies() {
|
|||||||
I != E; ++I, --Count) {
|
I != E; ++I, --Count) {
|
||||||
MachineInstr *MI = &*I;
|
MachineInstr *MI = &*I;
|
||||||
|
|
||||||
|
// After regalloc, IMPLICIT_DEF instructions aren't safe to treat as
|
||||||
|
// dependence-breaking. In the case of an INSERT_SUBREG, the IMPLICIT_DEF
|
||||||
|
// is left behind appearing to clobber the super-register, while the
|
||||||
|
// subregister needs to remain live. So we just ignore them.
|
||||||
|
if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
|
||||||
|
continue;
|
||||||
|
|
||||||
// Check if this instruction has an anti-dependence that we're
|
// Check if this instruction has an anti-dependence that we're
|
||||||
// interested in.
|
// interested in.
|
||||||
DenseMap<MachineInstr *, unsigned>::iterator C = CriticalAntiDeps.find(MI);
|
DenseMap<MachineInstr *, unsigned>::iterator C = CriticalAntiDeps.find(MI);
|
||||||
|
|||||||
Reference in New Issue
Block a user