mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-16 12:24:03 +00:00
misched: avoid scheduling an instruction twice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165416 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -495,6 +495,7 @@ void ScheduleDAGMI::schedule() {
|
||||
|
||||
bool IsTopNode = false;
|
||||
while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
|
||||
assert(!SU->isScheduled && "Node already scheduled");
|
||||
if (!checkSchedLimit())
|
||||
break;
|
||||
|
||||
@ -1119,6 +1120,7 @@ SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) {
|
||||
return NULL;
|
||||
}
|
||||
SUnit *SU;
|
||||
do {
|
||||
if (ForceTopDown) {
|
||||
SU = Top.pickOnlyChoice();
|
||||
if (!SU) {
|
||||
@ -1146,6 +1148,8 @@ SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) {
|
||||
else {
|
||||
SU = pickNodeBidrectional(IsTopNode);
|
||||
}
|
||||
} while (SU->isScheduled);
|
||||
|
||||
if (SU->isTopReady())
|
||||
Top.removeReady(SU);
|
||||
if (SU->isBottomReady())
|
||||
|
Reference in New Issue
Block a user