mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-25 00:33:15 +00:00
Change the post-RA scheduler to iterate through the
basic-block segments bottom-up instead of top down. This is the first step in a general restructuring of the way register liveness is tracked in the post-RA scheduler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63643 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
605679f0cd
commit
43f07fb6c3
@ -189,15 +189,17 @@ bool PostRAScheduler::runOnMachineFunction(MachineFunction &Fn) {
|
|||||||
MBB != MBBe; ++MBB) {
|
MBB != MBBe; ++MBB) {
|
||||||
// Schedule each sequence of instructions not interrupted by a label
|
// Schedule each sequence of instructions not interrupted by a label
|
||||||
// or anything else that effectively needs to shut down scheduling.
|
// or anything else that effectively needs to shut down scheduling.
|
||||||
MachineBasicBlock::iterator Current = MBB->begin(), End = MBB->end();
|
MachineBasicBlock::iterator Current = MBB->end(), Top = MBB->begin();
|
||||||
for (MachineBasicBlock::iterator MI = Current; MI != End; ++MI)
|
for (MachineBasicBlock::iterator I = Current; I != Top; ) {
|
||||||
|
MachineInstr *MI = --I;
|
||||||
if (MI->getDesc().isTerminator() || MI->isLabel()) {
|
if (MI->getDesc().isTerminator() || MI->isLabel()) {
|
||||||
Scheduler.Run(0, MBB, Current, MI);
|
Scheduler.Run(0, MBB, next(I), Current);
|
||||||
Scheduler.EmitSchedule();
|
Scheduler.EmitSchedule();
|
||||||
Current = next(MI);
|
Current = I;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Scheduler.Run(0, MBB, Current, End);
|
Scheduler.Run(0, MBB, Top, Current);
|
||||||
Scheduler.EmitSchedule();
|
Scheduler.EmitSchedule();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -415,10 +417,10 @@ bool SchedulePostRATDList::BreakAntiDependencies() {
|
|||||||
// instructions from the bottom up, tracking information about liveness
|
// instructions from the bottom up, tracking information about liveness
|
||||||
// as we go to help determine which registers are available.
|
// as we go to help determine which registers are available.
|
||||||
bool Changed = false;
|
bool Changed = false;
|
||||||
unsigned Count = BB->size() - 1;
|
unsigned Count = SUnits.size() - 1;
|
||||||
for (MachineBasicBlock::reverse_iterator I = BB->rbegin(), E = BB->rend();
|
for (MachineBasicBlock::iterator I = End, E = Begin;
|
||||||
I != E; ++I, --Count) {
|
I != E; --Count) {
|
||||||
MachineInstr *MI = &*I;
|
MachineInstr *MI = --I;
|
||||||
|
|
||||||
// After regalloc, IMPLICIT_DEF instructions aren't safe to treat as
|
// After regalloc, IMPLICIT_DEF instructions aren't safe to treat as
|
||||||
// dependence-breaking. In the case of an INSERT_SUBREG, the IMPLICIT_DEF
|
// dependence-breaking. In the case of an INSERT_SUBREG, the IMPLICIT_DEF
|
||||||
|
Loading…
x
Reference in New Issue
Block a user