From 2cdac8994e445174ad7ebcbc43bc2e39bb60d490 Mon Sep 17 00:00:00 2001 From: Krzysztof Parzyszek Date: Mon, 18 Jul 2016 16:15:15 +0000 Subject: [PATCH] [Hexagon] Misc changes to HexagonMachineScheduler, NFC - Remove duplicated code. - Convert loop to range-for. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275806 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../Hexagon/HexagonMachineScheduler.cpp | 29 ++----------------- 1 file changed, 3 insertions(+), 26 deletions(-) diff --git a/lib/Target/Hexagon/HexagonMachineScheduler.cpp b/lib/Target/Hexagon/HexagonMachineScheduler.cpp index 9368a433743..6dcac0dc7ee 100644 --- a/lib/Target/Hexagon/HexagonMachineScheduler.cpp +++ b/lib/Target/Hexagon/HexagonMachineScheduler.cpp @@ -265,10 +265,6 @@ void VLIWMachineScheduler::schedule() { // Initialize the strategy before modifying the DAG. SchedImpl->initialize(this); - // To view Height/Depth correctly, they should be accessed at least once. - // - // FIXME: SUnit::dumpAll always recompute depth and height now. The max - // depth/height could be computed directly from the roots and leaves. DEBUG(unsigned maxH = 0; for (unsigned su = 0, e = SUnits.size(); su != e; ++su) if (SUnits[su].getHeight() > maxH) @@ -345,10 +341,9 @@ void ConvergingVLIWScheduler::releaseTopNode(SUnit *SU) { if (SU->isScheduled) return; - for (SUnit::succ_iterator I = SU->Preds.begin(), E = SU->Preds.end(); - I != E; ++I) { - unsigned PredReadyCycle = I->getSUnit()->TopReadyCycle; - unsigned MinLatency = I->getLatency(); + for (const SDep &PI : SU->Preds) { + unsigned PredReadyCycle = PI.getSUnit()->TopReadyCycle; + unsigned MinLatency = PI.getLatency(); #ifndef NDEBUG Top.MaxMinLatency = std::max(MinLatency, Top.MaxMinLatency); #endif @@ -710,9 +705,6 @@ int ConvergingVLIWScheduler::SchedulingCost(ReadyQueue &Q, SUnit *SU, // available for it. auto &QST = DAG->MF.getSubtarget(); auto &QII = *QST.getInstrInfo(); - - // Give a little extra priority to a .cur instruction if there is a resource - // available for it. if (SU->isInstr() && QII.mayBeCurLoad(SU->getInstr())) { if (Q.getID() == TopQID && Top.ResourceModel->isResourceAvailable(SU)) { ResCount += PriorityTwo; @@ -786,21 +778,6 @@ int ConvergingVLIWScheduler::SchedulingCost(ReadyQueue &Q, SUnit *SU, } } - // Give less preference to an instruction that will cause a stall with - // an instruction in the previous packet. - if (QII.isV60VectorInstruction(Instr)) { - // Check for stalls in the previous packet. - if (Q.getID() == TopQID) { - for (auto J : Top.ResourceModel->OldPacket) - if (QII.producesStall(J->getInstr(), Instr)) - ResCount -= PriorityOne; - } else { - for (auto J : Bot.ResourceModel->OldPacket) - if (QII.producesStall(Instr, J->getInstr())) - ResCount -= PriorityOne; - } - } - DEBUG(if (verbose) { std::stringstream dbgstr; dbgstr << "Total " << std::setw(4) << ResCount << ")"; -- 2.40.0