diff options
author | Matthias Braun <matze@braunis.de> | 2017-04-12 18:09:05 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2017-04-12 18:09:05 +0000 |
commit | 99551053bd8321d6be10bed3a92e50318214cf81 (patch) | |
tree | af7024521da02c97429f337efb1ffc0559fcd376 /llvm/lib/CodeGen/MachineScheduler.cpp | |
parent | b0076fe8b4cb821faf766f7fc1c442e5f294ebdc (diff) | |
download | bcm5719-llvm-99551053bd8321d6be10bed3a92e50318214cf81.tar.gz bcm5719-llvm-99551053bd8321d6be10bed3a92e50318214cf81.zip |
MachineScheduler: Skip acyclic latency heuristic for in-order cores
The current heuristic is triggered on `InFlightCount > BufferLimit`
which isn't really helpful on in-order cores where BufferLimit is zero.
Note that we already get latency hiding effects for in order cores
by instructions staying in the pending queue on stalls; The additional
latency scheduling heuristics only have minimal effects after that while
occasionally increasing register pressure too much resulting in extra
spills.
My motivation here is additional spills/reloads ending up in a loop in
464.h264ref / BlockMotionSearch function resulting in a 4% overal
regression on an in order core. rdar://30264380
llvm-svn: 300083
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineScheduler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index fe7b2c8399b..41e161f71e5 100644 --- a/llvm/lib/CodeGen/MachineScheduler.cpp +++ b/llvm/lib/CodeGen/MachineScheduler.cpp @@ -2729,7 +2729,7 @@ void GenericScheduler::registerRoots() { errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n"; } - if (EnableCyclicPath) { + if (EnableCyclicPath && SchedModel->getMicroOpBufferSize() > 0) { Rem.CyclicCritPath = DAG->computeCyclicCriticalPath(); checkAcyclicLatency(); } |