Andrew Trick | 6a50baa | 2012-05-17 22:37:09 +0000 | [diff] [blame] | 1 | //===- MachineScheduler.cpp - Machine Instruction Scheduler ---------------===// |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // MachineScheduler schedules machine instructions after phi elimination. It |
| 11 | // preserves LiveIntervals so it can be invoked before register allocation. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/MachineScheduler.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/PriorityQueue.h" |
| 17 | #include "llvm/Analysis/AliasAnalysis.h" |
| 18 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Jakub Staszak | df17ddd | 2013-03-10 13:11:23 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineDominators.h" |
| 20 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Andrew Trick | 736dd9a | 2013-06-21 18:32:58 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/Passes.h" |
Andrew Trick | 05ff466 | 2012-06-06 20:29:31 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/RegisterClassInfo.h" |
Andrew Trick | cd1c2f9 | 2012-11-28 05:13:24 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/ScheduleDFS.h" |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/ScheduleHazardRecognizer.h" |
Matthias Braun | 31d19d4 | 2016-05-10 03:21:59 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/TargetPassConfig.h" |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 27 | #include "llvm/Support/CommandLine.h" |
| 28 | #include "llvm/Support/Debug.h" |
| 29 | #include "llvm/Support/ErrorHandling.h" |
Andrew Trick | ea9fd95 | 2013-01-25 07:45:29 +0000 | [diff] [blame] | 30 | #include "llvm/Support/GraphWriter.h" |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 31 | #include "llvm/Support/raw_ostream.h" |
Jakub Staszak | 80df8b8 | 2013-06-14 00:00:13 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetInstrInfo.h" |
Andrew Trick | 7ccdc5c | 2012-01-17 06:55:07 +0000 | [diff] [blame] | 33 | |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 34 | using namespace llvm; |
| 35 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 36 | #define DEBUG_TYPE "misched" |
| 37 | |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 38 | namespace llvm { |
| 39 | cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden, |
| 40 | cl::desc("Force top-down list scheduling")); |
| 41 | cl::opt<bool> ForceBottomUp("misched-bottomup", cl::Hidden, |
| 42 | cl::desc("Force bottom-up list scheduling")); |
Gerolf Hoflehner | b5220dc | 2014-08-07 21:49:44 +0000 | [diff] [blame] | 43 | cl::opt<bool> |
| 44 | DumpCriticalPathLength("misched-dcpl", cl::Hidden, |
| 45 | cl::desc("Print critical path length to stdout")); |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 46 | } |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 47 | |
Andrew Trick | a5f1956 | 2012-03-07 00:18:25 +0000 | [diff] [blame] | 48 | #ifndef NDEBUG |
| 49 | static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden, |
| 50 | cl::desc("Pop up a window to show MISched dags after they are processed")); |
Lang Hames | dd98c49 | 2012-03-19 18:38:38 +0000 | [diff] [blame] | 51 | |
Matthias Braun | d78ee54 | 2015-09-17 21:09:59 +0000 | [diff] [blame] | 52 | /// In some situations a few uninteresting nodes depend on nearly all other |
| 53 | /// nodes in the graph, provide a cutoff to hide them. |
| 54 | static cl::opt<unsigned> ViewMISchedCutoff("view-misched-cutoff", cl::Hidden, |
| 55 | cl::desc("Hide nodes with more predecessor/successor than cutoff")); |
| 56 | |
Lang Hames | dd98c49 | 2012-03-19 18:38:38 +0000 | [diff] [blame] | 57 | static cl::opt<unsigned> MISchedCutoff("misched-cutoff", cl::Hidden, |
| 58 | cl::desc("Stop scheduling after N instructions"), cl::init(~0U)); |
Andrew Trick | 33e05d7 | 2013-12-28 21:57:02 +0000 | [diff] [blame] | 59 | |
| 60 | static cl::opt<std::string> SchedOnlyFunc("misched-only-func", cl::Hidden, |
| 61 | cl::desc("Only schedule this function")); |
| 62 | static cl::opt<unsigned> SchedOnlyBlock("misched-only-block", cl::Hidden, |
| 63 | cl::desc("Only schedule this MBB#")); |
Andrew Trick | a5f1956 | 2012-03-07 00:18:25 +0000 | [diff] [blame] | 64 | #else |
| 65 | static bool ViewMISchedDAGs = false; |
| 66 | #endif // NDEBUG |
| 67 | |
Matthias Braun | 6493bc2 | 2016-04-22 19:09:17 +0000 | [diff] [blame] | 68 | /// Avoid quadratic complexity in unusually large basic blocks by limiting the |
| 69 | /// size of the ready lists. |
| 70 | static cl::opt<unsigned> ReadyListLimit("misched-limit", cl::Hidden, |
| 71 | cl::desc("Limit ready list to N instructions"), cl::init(256)); |
| 72 | |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 73 | static cl::opt<bool> EnableRegPressure("misched-regpressure", cl::Hidden, |
| 74 | cl::desc("Enable register pressure scheduling."), cl::init(true)); |
| 75 | |
Andrew Trick | c01b004 | 2013-08-23 17:48:43 +0000 | [diff] [blame] | 76 | static cl::opt<bool> EnableCyclicPath("misched-cyclicpath", cl::Hidden, |
Andrew Trick | 6c88b35 | 2013-09-09 23:31:14 +0000 | [diff] [blame] | 77 | cl::desc("Enable cyclic critical path analysis."), cl::init(true)); |
Andrew Trick | c01b004 | 2013-08-23 17:48:43 +0000 | [diff] [blame] | 78 | |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 79 | static cl::opt<bool> EnableMemOpCluster("misched-cluster", cl::Hidden, |
| 80 | cl::desc("Enable memop clustering."), |
| 81 | cl::init(true)); |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 82 | |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 83 | // Experimental heuristics |
| 84 | static cl::opt<bool> EnableMacroFusion("misched-fusion", cl::Hidden, |
Andrew Trick | 108c88c | 2012-11-13 08:47:29 +0000 | [diff] [blame] | 85 | cl::desc("Enable scheduling for macro fusion."), cl::init(true)); |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 86 | |
Andrew Trick | 48f2a72 | 2013-03-08 05:40:34 +0000 | [diff] [blame] | 87 | static cl::opt<bool> VerifyScheduling("verify-misched", cl::Hidden, |
| 88 | cl::desc("Verify machine instrs before and after machine scheduling")); |
| 89 | |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 90 | // DAG subtrees must have at least this many nodes. |
| 91 | static const unsigned MinSubtreeSize = 8; |
| 92 | |
Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 93 | // Pin the vtables to this file. |
| 94 | void MachineSchedStrategy::anchor() {} |
| 95 | void ScheduleDAGMutation::anchor() {} |
| 96 | |
Andrew Trick | 6344087 | 2012-01-14 02:17:06 +0000 | [diff] [blame] | 97 | //===----------------------------------------------------------------------===// |
| 98 | // Machine Instruction Scheduling Pass and Registry |
| 99 | //===----------------------------------------------------------------------===// |
| 100 | |
Andrew Trick | 4d4b546 | 2012-04-24 20:36:19 +0000 | [diff] [blame] | 101 | MachineSchedContext::MachineSchedContext(): |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 102 | MF(nullptr), MLI(nullptr), MDT(nullptr), PassConfig(nullptr), AA(nullptr), LIS(nullptr) { |
Andrew Trick | 4d4b546 | 2012-04-24 20:36:19 +0000 | [diff] [blame] | 103 | RegClassInfo = new RegisterClassInfo(); |
| 104 | } |
| 105 | |
| 106 | MachineSchedContext::~MachineSchedContext() { |
| 107 | delete RegClassInfo; |
| 108 | } |
| 109 | |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 110 | namespace { |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 111 | /// Base class for a machine scheduler class that can run at any point. |
| 112 | class MachineSchedulerBase : public MachineSchedContext, |
| 113 | public MachineFunctionPass { |
| 114 | public: |
| 115 | MachineSchedulerBase(char &ID): MachineFunctionPass(ID) {} |
| 116 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 117 | void print(raw_ostream &O, const Module* = nullptr) const override; |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 118 | |
| 119 | protected: |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 120 | void scheduleRegions(ScheduleDAGInstrs &Scheduler, bool FixKillFlags); |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 121 | }; |
| 122 | |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 123 | /// MachineScheduler runs after coalescing and before register allocation. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 124 | class MachineScheduler : public MachineSchedulerBase { |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 125 | public: |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 126 | MachineScheduler(); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 127 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 128 | void getAnalysisUsage(AnalysisUsage &AU) const override; |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 129 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 130 | bool runOnMachineFunction(MachineFunction&) override; |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 131 | |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 132 | static char ID; // Class identification, replacement for typeinfo |
Andrew Trick | 978674b | 2013-09-20 05:14:41 +0000 | [diff] [blame] | 133 | |
| 134 | protected: |
| 135 | ScheduleDAGInstrs *createMachineScheduler(); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 136 | }; |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 137 | |
| 138 | /// PostMachineScheduler runs after shortly before code emission. |
| 139 | class PostMachineScheduler : public MachineSchedulerBase { |
| 140 | public: |
| 141 | PostMachineScheduler(); |
| 142 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 143 | void getAnalysisUsage(AnalysisUsage &AU) const override; |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 144 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 145 | bool runOnMachineFunction(MachineFunction&) override; |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 146 | |
| 147 | static char ID; // Class identification, replacement for typeinfo |
| 148 | |
| 149 | protected: |
| 150 | ScheduleDAGInstrs *createPostMachineScheduler(); |
| 151 | }; |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 152 | } // namespace |
| 153 | |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 154 | char MachineScheduler::ID = 0; |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 155 | |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 156 | char &llvm::MachineSchedulerID = MachineScheduler::ID; |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 157 | |
Akira Hatanaka | 7ba7830 | 2014-12-13 04:52:04 +0000 | [diff] [blame] | 158 | INITIALIZE_PASS_BEGIN(MachineScheduler, "machine-scheduler", |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 159 | "Machine Instruction Scheduler", false, false) |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 160 | INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 161 | INITIALIZE_PASS_DEPENDENCY(SlotIndexes) |
| 162 | INITIALIZE_PASS_DEPENDENCY(LiveIntervals) |
Akira Hatanaka | 7ba7830 | 2014-12-13 04:52:04 +0000 | [diff] [blame] | 163 | INITIALIZE_PASS_END(MachineScheduler, "machine-scheduler", |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 164 | "Machine Instruction Scheduler", false, false) |
| 165 | |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 166 | MachineScheduler::MachineScheduler() |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 167 | : MachineSchedulerBase(ID) { |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 168 | initializeMachineSchedulerPass(*PassRegistry::getPassRegistry()); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 169 | } |
| 170 | |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 171 | void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const { |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 172 | AU.setPreservesCFG(); |
| 173 | AU.addRequiredID(MachineDominatorsID); |
| 174 | AU.addRequired<MachineLoopInfo>(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 175 | AU.addRequired<AAResultsWrapperPass>(); |
Andrew Trick | 4530068 | 2012-03-09 00:52:20 +0000 | [diff] [blame] | 176 | AU.addRequired<TargetPassConfig>(); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 177 | AU.addRequired<SlotIndexes>(); |
| 178 | AU.addPreserved<SlotIndexes>(); |
| 179 | AU.addRequired<LiveIntervals>(); |
| 180 | AU.addPreserved<LiveIntervals>(); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 181 | MachineFunctionPass::getAnalysisUsage(AU); |
| 182 | } |
| 183 | |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 184 | char PostMachineScheduler::ID = 0; |
| 185 | |
| 186 | char &llvm::PostMachineSchedulerID = PostMachineScheduler::ID; |
| 187 | |
| 188 | INITIALIZE_PASS(PostMachineScheduler, "postmisched", |
Saleem Abdulrasool | 7230b37 | 2013-12-28 22:47:55 +0000 | [diff] [blame] | 189 | "PostRA Machine Instruction Scheduler", false, false) |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 190 | |
| 191 | PostMachineScheduler::PostMachineScheduler() |
| 192 | : MachineSchedulerBase(ID) { |
| 193 | initializePostMachineSchedulerPass(*PassRegistry::getPassRegistry()); |
| 194 | } |
| 195 | |
| 196 | void PostMachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const { |
| 197 | AU.setPreservesCFG(); |
| 198 | AU.addRequiredID(MachineDominatorsID); |
| 199 | AU.addRequired<MachineLoopInfo>(); |
| 200 | AU.addRequired<TargetPassConfig>(); |
| 201 | MachineFunctionPass::getAnalysisUsage(AU); |
| 202 | } |
| 203 | |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 204 | MachinePassRegistry MachineSchedRegistry::Registry; |
| 205 | |
Andrew Trick | 4530068 | 2012-03-09 00:52:20 +0000 | [diff] [blame] | 206 | /// A dummy default scheduler factory indicates whether the scheduler |
| 207 | /// is overridden on the command line. |
| 208 | static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 209 | return nullptr; |
Andrew Trick | 4530068 | 2012-03-09 00:52:20 +0000 | [diff] [blame] | 210 | } |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 211 | |
| 212 | /// MachineSchedOpt allows command line selection of the scheduler. |
| 213 | static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false, |
| 214 | RegisterPassParser<MachineSchedRegistry> > |
| 215 | MachineSchedOpt("misched", |
Andrew Trick | 4530068 | 2012-03-09 00:52:20 +0000 | [diff] [blame] | 216 | cl::init(&useDefaultMachineSched), cl::Hidden, |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 217 | cl::desc("Machine instruction scheduler to use")); |
| 218 | |
Andrew Trick | 4530068 | 2012-03-09 00:52:20 +0000 | [diff] [blame] | 219 | static MachineSchedRegistry |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 220 | DefaultSchedRegistry("default", "Use the target's default scheduler choice.", |
Andrew Trick | 4530068 | 2012-03-09 00:52:20 +0000 | [diff] [blame] | 221 | useDefaultMachineSched); |
| 222 | |
Eric Christopher | 5f141b0 | 2015-03-11 22:56:10 +0000 | [diff] [blame] | 223 | static cl::opt<bool> EnableMachineSched( |
| 224 | "enable-misched", |
| 225 | cl::desc("Enable the machine instruction scheduling pass."), cl::init(true), |
| 226 | cl::Hidden); |
| 227 | |
Chad Rosier | 816a1ab | 2016-01-20 23:08:32 +0000 | [diff] [blame] | 228 | static cl::opt<bool> EnablePostRAMachineSched( |
| 229 | "enable-post-misched", |
| 230 | cl::desc("Enable the post-ra machine instruction scheduling pass."), |
| 231 | cl::init(true), cl::Hidden); |
| 232 | |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 233 | /// Forward declare the standard machine scheduler. This will be used as the |
Andrew Trick | 4530068 | 2012-03-09 00:52:20 +0000 | [diff] [blame] | 234 | /// default scheduler if the target does not set a default. |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 235 | static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C); |
| 236 | static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C); |
Andrew Trick | cc45a28 | 2012-04-24 18:04:34 +0000 | [diff] [blame] | 237 | |
| 238 | /// Decrement this iterator until reaching the top or a non-debug instr. |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 239 | static MachineBasicBlock::const_iterator |
| 240 | priorNonDebug(MachineBasicBlock::const_iterator I, |
| 241 | MachineBasicBlock::const_iterator Beg) { |
Andrew Trick | cc45a28 | 2012-04-24 18:04:34 +0000 | [diff] [blame] | 242 | assert(I != Beg && "reached the top of the region, cannot decrement"); |
| 243 | while (--I != Beg) { |
| 244 | if (!I->isDebugValue()) |
| 245 | break; |
| 246 | } |
| 247 | return I; |
| 248 | } |
| 249 | |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 250 | /// Non-const version. |
| 251 | static MachineBasicBlock::iterator |
| 252 | priorNonDebug(MachineBasicBlock::iterator I, |
| 253 | MachineBasicBlock::const_iterator Beg) { |
| 254 | return const_cast<MachineInstr*>( |
| 255 | &*priorNonDebug(MachineBasicBlock::const_iterator(I), Beg)); |
| 256 | } |
| 257 | |
Andrew Trick | cc45a28 | 2012-04-24 18:04:34 +0000 | [diff] [blame] | 258 | /// If this iterator is a debug value, increment until reaching the End or a |
| 259 | /// non-debug instruction. |
Andrew Trick | 2c4f8b7 | 2013-08-31 05:17:58 +0000 | [diff] [blame] | 260 | static MachineBasicBlock::const_iterator |
| 261 | nextIfDebug(MachineBasicBlock::const_iterator I, |
| 262 | MachineBasicBlock::const_iterator End) { |
Andrew Trick | 463b2f1 | 2012-05-17 18:35:03 +0000 | [diff] [blame] | 263 | for(; I != End; ++I) { |
Andrew Trick | cc45a28 | 2012-04-24 18:04:34 +0000 | [diff] [blame] | 264 | if (!I->isDebugValue()) |
| 265 | break; |
| 266 | } |
| 267 | return I; |
| 268 | } |
| 269 | |
Andrew Trick | 2c4f8b7 | 2013-08-31 05:17:58 +0000 | [diff] [blame] | 270 | /// Non-const version. |
| 271 | static MachineBasicBlock::iterator |
| 272 | nextIfDebug(MachineBasicBlock::iterator I, |
| 273 | MachineBasicBlock::const_iterator End) { |
| 274 | // Cast the return value to nonconst MachineInstr, then cast to an |
| 275 | // instr_iterator, which does not check for null, finally return a |
| 276 | // bundle_iterator. |
| 277 | return MachineBasicBlock::instr_iterator( |
| 278 | const_cast<MachineInstr*>( |
| 279 | &*nextIfDebug(MachineBasicBlock::const_iterator(I), End))); |
| 280 | } |
| 281 | |
Andrew Trick | dc4c1ad | 2013-09-24 17:11:19 +0000 | [diff] [blame] | 282 | /// Instantiate a ScheduleDAGInstrs that will be owned by the caller. |
Andrew Trick | 978674b | 2013-09-20 05:14:41 +0000 | [diff] [blame] | 283 | ScheduleDAGInstrs *MachineScheduler::createMachineScheduler() { |
| 284 | // Select the scheduler, or set the default. |
| 285 | MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt; |
| 286 | if (Ctor != useDefaultMachineSched) |
| 287 | return Ctor(this); |
| 288 | |
| 289 | // Get the default scheduler set by the target for this function. |
| 290 | ScheduleDAGInstrs *Scheduler = PassConfig->createMachineScheduler(this); |
| 291 | if (Scheduler) |
| 292 | return Scheduler; |
| 293 | |
| 294 | // Default to GenericScheduler. |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 295 | return createGenericSchedLive(this); |
Andrew Trick | 978674b | 2013-09-20 05:14:41 +0000 | [diff] [blame] | 296 | } |
| 297 | |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 298 | /// Instantiate a ScheduleDAGInstrs for PostRA scheduling that will be owned by |
| 299 | /// the caller. We don't have a command line option to override the postRA |
| 300 | /// scheduler. The Target must configure it. |
| 301 | ScheduleDAGInstrs *PostMachineScheduler::createPostMachineScheduler() { |
| 302 | // Get the postRA scheduler set by the target for this function. |
| 303 | ScheduleDAGInstrs *Scheduler = PassConfig->createPostMachineScheduler(this); |
| 304 | if (Scheduler) |
| 305 | return Scheduler; |
| 306 | |
| 307 | // Default to GenericScheduler. |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 308 | return createGenericSchedPostRA(this); |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Andrew Trick | 72515be | 2012-03-14 04:00:38 +0000 | [diff] [blame] | 311 | /// Top-level MachineScheduler pass driver. |
| 312 | /// |
| 313 | /// Visit blocks in function order. Divide each block into scheduling regions |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 314 | /// and visit them bottom-up. Visiting regions bottom-up is not required, but is |
| 315 | /// consistent with the DAG builder, which traverses the interior of the |
| 316 | /// scheduling regions bottom-up. |
Andrew Trick | 72515be | 2012-03-14 04:00:38 +0000 | [diff] [blame] | 317 | /// |
| 318 | /// This design avoids exposing scheduling boundaries to the DAG builder, |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 319 | /// simplifying the DAG builder's support for "special" target instructions. |
| 320 | /// At the same time the design allows target schedulers to operate across |
Andrew Trick | 72515be | 2012-03-14 04:00:38 +0000 | [diff] [blame] | 321 | /// scheduling boundaries, for example to bundle the boudary instructions |
| 322 | /// without reordering them. This creates complexity, because the target |
| 323 | /// scheduler must update the RegionBegin and RegionEnd positions cached by |
| 324 | /// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler |
| 325 | /// design would be to split blocks at scheduling boundaries, but LLVM has a |
| 326 | /// general bias against block splitting purely for implementation simplicity. |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 327 | bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) { |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 328 | if (skipFunction(*mf.getFunction())) |
Chad Rosier | 6338d7c | 2016-01-20 22:38:25 +0000 | [diff] [blame] | 329 | return false; |
| 330 | |
Eric Christopher | 5f141b0 | 2015-03-11 22:56:10 +0000 | [diff] [blame] | 331 | if (EnableMachineSched.getNumOccurrences()) { |
| 332 | if (!EnableMachineSched) |
| 333 | return false; |
| 334 | } else if (!mf.getSubtarget().enableMachineScheduler()) |
| 335 | return false; |
| 336 | |
Matthias Braun | dc7580a | 2015-10-29 03:57:28 +0000 | [diff] [blame] | 337 | DEBUG(dbgs() << "Before MISched:\n"; mf.print(dbgs())); |
Andrew Trick | c5d7008 | 2012-05-10 21:06:21 +0000 | [diff] [blame] | 338 | |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 339 | // Initialize the context of the pass. |
| 340 | MF = &mf; |
| 341 | MLI = &getAnalysis<MachineLoopInfo>(); |
| 342 | MDT = &getAnalysis<MachineDominatorTree>(); |
Andrew Trick | 4530068 | 2012-03-09 00:52:20 +0000 | [diff] [blame] | 343 | PassConfig = &getAnalysis<TargetPassConfig>(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 344 | AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 345 | |
Lang Hames | ad33d5a | 2012-01-27 22:36:19 +0000 | [diff] [blame] | 346 | LIS = &getAnalysis<LiveIntervals>(); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 347 | |
Andrew Trick | 48f2a72 | 2013-03-08 05:40:34 +0000 | [diff] [blame] | 348 | if (VerifyScheduling) { |
Andrew Trick | 9706496 | 2013-07-25 07:26:26 +0000 | [diff] [blame] | 349 | DEBUG(LIS->dump()); |
Andrew Trick | 48f2a72 | 2013-03-08 05:40:34 +0000 | [diff] [blame] | 350 | MF->verify(this, "Before machine scheduling."); |
| 351 | } |
Andrew Trick | 4d4b546 | 2012-04-24 20:36:19 +0000 | [diff] [blame] | 352 | RegClassInfo->runOnMachineFunction(*MF); |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 353 | |
Andrew Trick | 978674b | 2013-09-20 05:14:41 +0000 | [diff] [blame] | 354 | // Instantiate the selected scheduler for this target, function, and |
| 355 | // optimization level. |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 356 | std::unique_ptr<ScheduleDAGInstrs> Scheduler(createMachineScheduler()); |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 357 | scheduleRegions(*Scheduler, false); |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 358 | |
| 359 | DEBUG(LIS->dump()); |
| 360 | if (VerifyScheduling) |
| 361 | MF->verify(this, "After machine scheduling."); |
| 362 | return true; |
| 363 | } |
| 364 | |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 365 | bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) { |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 366 | if (skipFunction(*mf.getFunction())) |
Paul Robinson | 7c99ec5 | 2014-03-31 17:43:35 +0000 | [diff] [blame] | 367 | return false; |
| 368 | |
Chad Rosier | 816a1ab | 2016-01-20 23:08:32 +0000 | [diff] [blame] | 369 | if (EnablePostRAMachineSched.getNumOccurrences()) { |
| 370 | if (!EnablePostRAMachineSched) |
| 371 | return false; |
| 372 | } else if (!mf.getSubtarget().enablePostRAScheduler()) { |
Andrew Trick | 8d2ee37 | 2014-06-04 07:06:27 +0000 | [diff] [blame] | 373 | DEBUG(dbgs() << "Subtarget disables post-MI-sched.\n"); |
| 374 | return false; |
| 375 | } |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 376 | DEBUG(dbgs() << "Before post-MI-sched:\n"; mf.print(dbgs())); |
| 377 | |
| 378 | // Initialize the context of the pass. |
| 379 | MF = &mf; |
| 380 | PassConfig = &getAnalysis<TargetPassConfig>(); |
| 381 | |
| 382 | if (VerifyScheduling) |
| 383 | MF->verify(this, "Before post machine scheduling."); |
| 384 | |
| 385 | // Instantiate the selected scheduler for this target, function, and |
| 386 | // optimization level. |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 387 | std::unique_ptr<ScheduleDAGInstrs> Scheduler(createPostMachineScheduler()); |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 388 | scheduleRegions(*Scheduler, true); |
Andrew Trick | 17080b9 | 2013-12-28 21:56:51 +0000 | [diff] [blame] | 389 | |
| 390 | if (VerifyScheduling) |
| 391 | MF->verify(this, "After post machine scheduling."); |
| 392 | return true; |
| 393 | } |
| 394 | |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 395 | /// Return true of the given instruction should not be included in a scheduling |
| 396 | /// region. |
| 397 | /// |
| 398 | /// MachineScheduler does not currently support scheduling across calls. To |
| 399 | /// handle calls, the DAG builder needs to be modified to create register |
| 400 | /// anti/output dependencies on the registers clobbered by the call's regmask |
| 401 | /// operand. In PreRA scheduling, the stack pointer adjustment already prevents |
| 402 | /// scheduling across calls. In PostRA scheduling, we need the isCall to enforce |
| 403 | /// the boundary, but there would be no benefit to postRA scheduling across |
| 404 | /// calls this late anyway. |
| 405 | static bool isSchedBoundary(MachineBasicBlock::iterator MI, |
| 406 | MachineBasicBlock *MBB, |
| 407 | MachineFunction *MF, |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 408 | const TargetInstrInfo *TII) { |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 409 | return MI->isCall() || TII->isSchedulingBoundary(MI, MBB, *MF); |
| 410 | } |
| 411 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 412 | /// Main driver for both MachineScheduler and PostMachineScheduler. |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 413 | void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler, |
| 414 | bool FixKillFlags) { |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 415 | const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 416 | |
| 417 | // Visit all machine basic blocks. |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 418 | // |
| 419 | // TODO: Visit blocks in global postorder or postorder within the bottom-up |
| 420 | // loop tree. Then we can optionally compute global RegPressure. |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 421 | for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end(); |
| 422 | MBB != MBBEnd; ++MBB) { |
| 423 | |
Duncan P. N. Exon Smith | 5ec1568 | 2015-10-09 19:40:45 +0000 | [diff] [blame] | 424 | Scheduler.startBlock(&*MBB); |
Andrew Trick | edfe2ec | 2012-03-09 08:02:51 +0000 | [diff] [blame] | 425 | |
Andrew Trick | 33e05d7 | 2013-12-28 21:57:02 +0000 | [diff] [blame] | 426 | #ifndef NDEBUG |
| 427 | if (SchedOnlyFunc.getNumOccurrences() && SchedOnlyFunc != MF->getName()) |
| 428 | continue; |
| 429 | if (SchedOnlyBlock.getNumOccurrences() |
| 430 | && (int)SchedOnlyBlock != MBB->getNumber()) |
| 431 | continue; |
| 432 | #endif |
| 433 | |
Andrew Trick | 7e120f4 | 2012-01-14 02:17:09 +0000 | [diff] [blame] | 434 | // Break the block into scheduling regions [I, RegionEnd), and schedule each |
Sylvestre Ledru | 35521e2 | 2012-07-23 08:51:15 +0000 | [diff] [blame] | 435 | // region as soon as it is discovered. RegionEnd points the scheduling |
Andrew Trick | af1bee7 | 2012-03-09 22:34:56 +0000 | [diff] [blame] | 436 | // boundary at the bottom of the region. The DAG does not include RegionEnd, |
| 437 | // but the region does (i.e. the next RegionEnd is above the previous |
| 438 | // RegionBegin). If the current block has no terminator then RegionEnd == |
| 439 | // MBB->end() for the bottom region. |
| 440 | // |
| 441 | // The Scheduler may insert instructions during either schedule() or |
| 442 | // exitRegion(), even for empty regions. So the local iterators 'I' and |
| 443 | // 'RegionEnd' are invalid across these calls. |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 444 | // |
| 445 | // MBB::size() uses instr_iterator to count. Here we need a bundle to count |
| 446 | // as a single instruction. |
Andrew Trick | a21daf7 | 2012-03-09 03:46:39 +0000 | [diff] [blame] | 447 | for(MachineBasicBlock::iterator RegionEnd = MBB->end(); |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 448 | RegionEnd != MBB->begin(); RegionEnd = Scheduler.begin()) { |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 449 | |
Andrew Trick | edfe2ec | 2012-03-09 08:02:51 +0000 | [diff] [blame] | 450 | // Avoid decrementing RegionEnd for blocks with no terminator. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 451 | if (RegionEnd != MBB->end() || |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 452 | isSchedBoundary(&*std::prev(RegionEnd), &*MBB, MF, TII)) { |
Andrew Trick | edfe2ec | 2012-03-09 08:02:51 +0000 | [diff] [blame] | 453 | --RegionEnd; |
Andrew Trick | edfe2ec | 2012-03-09 08:02:51 +0000 | [diff] [blame] | 454 | } |
| 455 | |
Andrew Trick | 7e120f4 | 2012-01-14 02:17:09 +0000 | [diff] [blame] | 456 | // The next region starts above the previous region. Look backward in the |
| 457 | // instruction stream until we find the nearest boundary. |
Andrew Trick | a53e101 | 2013-08-23 17:48:33 +0000 | [diff] [blame] | 458 | unsigned NumRegionInstrs = 0; |
Andrew Trick | 7e120f4 | 2012-01-14 02:17:09 +0000 | [diff] [blame] | 459 | MachineBasicBlock::iterator I = RegionEnd; |
Matthias Braun | 858d1df | 2016-05-20 19:46:13 +0000 | [diff] [blame] | 460 | for (;I != MBB->begin(); --I) { |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 461 | if (isSchedBoundary(&*std::prev(I), &*MBB, MF, TII)) |
Andrew Trick | 7e120f4 | 2012-01-14 02:17:09 +0000 | [diff] [blame] | 462 | break; |
Andrea Di Biagio | d65fd9f | 2014-12-12 15:09:58 +0000 | [diff] [blame] | 463 | if (!I->isDebugValue()) |
| 464 | ++NumRegionInstrs; |
Andrew Trick | 7e120f4 | 2012-01-14 02:17:09 +0000 | [diff] [blame] | 465 | } |
Andrew Trick | 60cf03e | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 466 | // Notify the scheduler of the region, even if we may skip scheduling |
| 467 | // it. Perhaps it still needs to be bundled. |
Duncan P. N. Exon Smith | 5ec1568 | 2015-10-09 19:40:45 +0000 | [diff] [blame] | 468 | Scheduler.enterRegion(&*MBB, I, RegionEnd, NumRegionInstrs); |
Andrew Trick | 60cf03e | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 469 | |
| 470 | // Skip empty scheduling regions (0 or 1 schedulable instructions). |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 471 | if (I == RegionEnd || I == std::prev(RegionEnd)) { |
Andrew Trick | 60cf03e | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 472 | // Close the current region. Bundle the terminator if needed. |
Andrew Trick | af1bee7 | 2012-03-09 22:34:56 +0000 | [diff] [blame] | 473 | // This invalidates 'RegionEnd' and 'I'. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 474 | Scheduler.exitRegion(); |
Andrew Trick | 7ccdc5c | 2012-01-17 06:55:07 +0000 | [diff] [blame] | 475 | continue; |
Andrew Trick | 59ac4fb | 2012-01-14 02:17:18 +0000 | [diff] [blame] | 476 | } |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 477 | DEBUG(dbgs() << "********** MI Scheduling **********\n"); |
Craig Topper | a538d83 | 2012-08-22 06:07:19 +0000 | [diff] [blame] | 478 | DEBUG(dbgs() << MF->getName() |
Andrew Trick | 54b2ce3 | 2013-01-25 07:45:31 +0000 | [diff] [blame] | 479 | << ":BB#" << MBB->getNumber() << " " << MBB->getName() |
| 480 | << "\n From: " << *I << " To: "; |
Andrew Trick | e57583a | 2012-02-08 02:17:21 +0000 | [diff] [blame] | 481 | if (RegionEnd != MBB->end()) dbgs() << *RegionEnd; |
| 482 | else dbgs() << "End"; |
Matthias Braun | 858d1df | 2016-05-20 19:46:13 +0000 | [diff] [blame] | 483 | dbgs() << " RegionInstrs: " << NumRegionInstrs << '\n'); |
Gerolf Hoflehner | b5220dc | 2014-08-07 21:49:44 +0000 | [diff] [blame] | 484 | if (DumpCriticalPathLength) { |
| 485 | errs() << MF->getName(); |
| 486 | errs() << ":BB# " << MBB->getNumber(); |
| 487 | errs() << " " << MBB->getName() << " \n"; |
| 488 | } |
Andrew Trick | 7ccdc5c | 2012-01-17 06:55:07 +0000 | [diff] [blame] | 489 | |
Andrew Trick | 1c0ec45 | 2012-03-09 03:46:42 +0000 | [diff] [blame] | 490 | // Schedule a region: possibly reorder instructions. |
Andrew Trick | af1bee7 | 2012-03-09 22:34:56 +0000 | [diff] [blame] | 491 | // This invalidates 'RegionEnd' and 'I'. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 492 | Scheduler.schedule(); |
Andrew Trick | 1c0ec45 | 2012-03-09 03:46:42 +0000 | [diff] [blame] | 493 | |
| 494 | // Close the current region. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 495 | Scheduler.exitRegion(); |
Andrew Trick | 60cf03e | 2012-03-07 05:21:52 +0000 | [diff] [blame] | 496 | |
| 497 | // Scheduling has invalidated the current iterator 'I'. Ask the |
| 498 | // scheduler for the top of it's scheduled region. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 499 | RegionEnd = Scheduler.begin(); |
Andrew Trick | 7e120f4 | 2012-01-14 02:17:09 +0000 | [diff] [blame] | 500 | } |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 501 | Scheduler.finishBlock(); |
Matthias Braun | 93563e7 | 2015-11-03 01:53:29 +0000 | [diff] [blame] | 502 | // FIXME: Ideally, no further passes should rely on kill flags. However, |
| 503 | // thumb2 size reduction is currently an exception, so the PostMIScheduler |
| 504 | // needs to do this. |
| 505 | if (FixKillFlags) |
| 506 | Scheduler.fixupKills(&*MBB); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 507 | } |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 508 | Scheduler.finalizeSchedule(); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 509 | } |
| 510 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 511 | void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const { |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 512 | // unimplemented |
| 513 | } |
| 514 | |
Alp Toker | d8d510a | 2014-07-01 21:19:13 +0000 | [diff] [blame] | 515 | LLVM_DUMP_METHOD |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 516 | void ReadyQueue::dump() { |
James Y Knight | e72b0db | 2015-09-18 18:52:20 +0000 | [diff] [blame] | 517 | dbgs() << "Queue " << Name << ": "; |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 518 | for (unsigned i = 0, e = Queue.size(); i < e; ++i) |
| 519 | dbgs() << Queue[i]->NodeNum << " "; |
| 520 | dbgs() << "\n"; |
| 521 | } |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 522 | |
| 523 | //===----------------------------------------------------------------------===// |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 524 | // ScheduleDAGMI - Basic machine instruction scheduling. This is |
| 525 | // independent of PreRA/PostRA scheduling and involves no extra book-keeping for |
| 526 | // virtual registers. |
| 527 | // ===----------------------------------------------------------------------===/ |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 528 | |
David Blaikie | 422b93d | 2014-04-21 20:32:32 +0000 | [diff] [blame] | 529 | // Provide a vtable anchor. |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 530 | ScheduleDAGMI::~ScheduleDAGMI() { |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 533 | bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) { |
| 534 | return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU); |
| 535 | } |
| 536 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 537 | bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) { |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 538 | if (SuccSU != &ExitSU) { |
| 539 | // Do not use WillCreateCycle, it assumes SD scheduling. |
| 540 | // If Pred is reachable from Succ, then the edge creates a cycle. |
| 541 | if (Topo.IsReachable(PredDep.getSUnit(), SuccSU)) |
| 542 | return false; |
| 543 | Topo.AddPred(SuccSU, PredDep.getSUnit()); |
| 544 | } |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 545 | SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial()); |
| 546 | // Return true regardless of whether a new edge needed to be inserted. |
| 547 | return true; |
| 548 | } |
| 549 | |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 550 | /// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When |
| 551 | /// NumPredsLeft reaches zero, release the successor node. |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 552 | /// |
| 553 | /// FIXME: Adjust SuccSU height based on MinLatency. |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 554 | void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) { |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 555 | SUnit *SuccSU = SuccEdge->getSUnit(); |
| 556 | |
Andrew Trick | f1ff84c | 2012-11-12 19:28:57 +0000 | [diff] [blame] | 557 | if (SuccEdge->isWeak()) { |
| 558 | --SuccSU->WeakPredsLeft; |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 559 | if (SuccEdge->isCluster()) |
| 560 | NextClusterSucc = SuccSU; |
Andrew Trick | f1ff84c | 2012-11-12 19:28:57 +0000 | [diff] [blame] | 561 | return; |
| 562 | } |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 563 | #ifndef NDEBUG |
| 564 | if (SuccSU->NumPredsLeft == 0) { |
| 565 | dbgs() << "*** Scheduling failed! ***\n"; |
| 566 | SuccSU->dump(this); |
| 567 | dbgs() << " has been released too many times!\n"; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 568 | llvm_unreachable(nullptr); |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 569 | } |
| 570 | #endif |
Andrew Trick | 7f1ebbe | 2014-06-07 01:48:43 +0000 | [diff] [blame] | 571 | // SU->TopReadyCycle was set to CurrCycle when it was scheduled. However, |
| 572 | // CurrCycle may have advanced since then. |
| 573 | if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency()) |
| 574 | SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency(); |
| 575 | |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 576 | --SuccSU->NumPredsLeft; |
| 577 | if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 578 | SchedImpl->releaseTopNode(SuccSU); |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | /// releaseSuccessors - Call releaseSucc on each of SU's successors. |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 582 | void ScheduleDAGMI::releaseSuccessors(SUnit *SU) { |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 583 | for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end(); |
| 584 | I != E; ++I) { |
| 585 | releaseSucc(SU, &*I); |
| 586 | } |
| 587 | } |
| 588 | |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 589 | /// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When |
| 590 | /// NumSuccsLeft reaches zero, release the predecessor node. |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 591 | /// |
| 592 | /// FIXME: Adjust PredSU height based on MinLatency. |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 593 | void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) { |
| 594 | SUnit *PredSU = PredEdge->getSUnit(); |
| 595 | |
Andrew Trick | f1ff84c | 2012-11-12 19:28:57 +0000 | [diff] [blame] | 596 | if (PredEdge->isWeak()) { |
| 597 | --PredSU->WeakSuccsLeft; |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 598 | if (PredEdge->isCluster()) |
| 599 | NextClusterPred = PredSU; |
Andrew Trick | f1ff84c | 2012-11-12 19:28:57 +0000 | [diff] [blame] | 600 | return; |
| 601 | } |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 602 | #ifndef NDEBUG |
| 603 | if (PredSU->NumSuccsLeft == 0) { |
| 604 | dbgs() << "*** Scheduling failed! ***\n"; |
| 605 | PredSU->dump(this); |
| 606 | dbgs() << " has been released too many times!\n"; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 607 | llvm_unreachable(nullptr); |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 608 | } |
| 609 | #endif |
Andrew Trick | 7f1ebbe | 2014-06-07 01:48:43 +0000 | [diff] [blame] | 610 | // SU->BotReadyCycle was set to CurrCycle when it was scheduled. However, |
| 611 | // CurrCycle may have advanced since then. |
| 612 | if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency()) |
| 613 | PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency(); |
| 614 | |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 615 | --PredSU->NumSuccsLeft; |
| 616 | if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) |
| 617 | SchedImpl->releaseBottomNode(PredSU); |
| 618 | } |
| 619 | |
| 620 | /// releasePredecessors - Call releasePred on each of SU's predecessors. |
| 621 | void ScheduleDAGMI::releasePredecessors(SUnit *SU) { |
| 622 | for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end(); |
| 623 | I != E; ++I) { |
| 624 | releasePred(SU, &*I); |
| 625 | } |
| 626 | } |
| 627 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 628 | /// enterRegion - Called back from MachineScheduler::runOnMachineFunction after |
| 629 | /// crossing a scheduling boundary. [begin, end) includes all instructions in |
| 630 | /// the region, including the boundary itself and single-instruction regions |
| 631 | /// that don't get scheduled. |
| 632 | void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb, |
| 633 | MachineBasicBlock::iterator begin, |
| 634 | MachineBasicBlock::iterator end, |
| 635 | unsigned regioninstrs) |
| 636 | { |
| 637 | ScheduleDAGInstrs::enterRegion(bb, begin, end, regioninstrs); |
| 638 | |
| 639 | SchedImpl->initPolicy(begin, end, regioninstrs); |
| 640 | } |
| 641 | |
Andrew Trick | e833e1c | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 642 | /// This is normally called from the main scheduler loop but may also be invoked |
| 643 | /// by the scheduling strategy to perform additional code motion. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 644 | void ScheduleDAGMI::moveInstruction( |
| 645 | MachineInstr *MI, MachineBasicBlock::iterator InsertPos) { |
Andrew Trick | 463b2f1 | 2012-05-17 18:35:03 +0000 | [diff] [blame] | 646 | // Advance RegionBegin if the first instruction moves down. |
Andrew Trick | 54f7def | 2012-03-21 04:12:10 +0000 | [diff] [blame] | 647 | if (&*RegionBegin == MI) |
Andrew Trick | 463b2f1 | 2012-05-17 18:35:03 +0000 | [diff] [blame] | 648 | ++RegionBegin; |
| 649 | |
| 650 | // Update the instruction stream. |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 651 | BB->splice(InsertPos, BB, MI); |
Andrew Trick | 463b2f1 | 2012-05-17 18:35:03 +0000 | [diff] [blame] | 652 | |
| 653 | // Update LiveIntervals |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 654 | if (LIS) |
Duncan P. N. Exon Smith | be8f8c4 | 2016-02-27 20:14:29 +0000 | [diff] [blame] | 655 | LIS->handleMove(*MI, /*UpdateFlags=*/true); |
Andrew Trick | 463b2f1 | 2012-05-17 18:35:03 +0000 | [diff] [blame] | 656 | |
| 657 | // Recede RegionBegin if an instruction moves above the first. |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 658 | if (RegionBegin == InsertPos) |
| 659 | RegionBegin = MI; |
| 660 | } |
| 661 | |
Andrew Trick | de670c0 | 2012-03-21 04:12:07 +0000 | [diff] [blame] | 662 | bool ScheduleDAGMI::checkSchedLimit() { |
| 663 | #ifndef NDEBUG |
| 664 | if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) { |
| 665 | CurrentTop = CurrentBottom; |
| 666 | return false; |
| 667 | } |
| 668 | ++NumInstrsScheduled; |
| 669 | #endif |
| 670 | return true; |
| 671 | } |
| 672 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 673 | /// Per-region scheduling driver, called back from |
| 674 | /// MachineScheduler::runOnMachineFunction. This is a simplified driver that |
| 675 | /// does not consider liveness or register pressure. It is useful for PostRA |
| 676 | /// scheduling and potentially other custom schedulers. |
| 677 | void ScheduleDAGMI::schedule() { |
James Y Knight | e72b0db | 2015-09-18 18:52:20 +0000 | [diff] [blame] | 678 | DEBUG(dbgs() << "ScheduleDAGMI::schedule starting\n"); |
| 679 | DEBUG(SchedImpl->dumpPolicy()); |
| 680 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 681 | // Build the DAG. |
| 682 | buildSchedGraph(AA); |
| 683 | |
| 684 | Topo.InitDAGTopologicalSorting(); |
| 685 | |
| 686 | postprocessDAG(); |
| 687 | |
| 688 | SmallVector<SUnit*, 8> TopRoots, BotRoots; |
| 689 | findRootsAndBiasEdges(TopRoots, BotRoots); |
| 690 | |
| 691 | // Initialize the strategy before modifying the DAG. |
| 692 | // This may initialize a DFSResult to be used for queue priority. |
| 693 | SchedImpl->initialize(this); |
| 694 | |
| 695 | DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su) |
| 696 | SUnits[su].dumpAll(this)); |
| 697 | if (ViewMISchedDAGs) viewGraph(); |
| 698 | |
| 699 | // Initialize ready queues now that the DAG and priority data are finalized. |
| 700 | initQueues(TopRoots, BotRoots); |
| 701 | |
| 702 | bool IsTopNode = false; |
James Y Knight | e72b0db | 2015-09-18 18:52:20 +0000 | [diff] [blame] | 703 | while (true) { |
| 704 | DEBUG(dbgs() << "** ScheduleDAGMI::schedule picking next node\n"); |
| 705 | SUnit *SU = SchedImpl->pickNode(IsTopNode); |
| 706 | if (!SU) break; |
| 707 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 708 | assert(!SU->isScheduled && "Node already scheduled"); |
| 709 | if (!checkSchedLimit()) |
| 710 | break; |
| 711 | |
| 712 | MachineInstr *MI = SU->getInstr(); |
| 713 | if (IsTopNode) { |
| 714 | assert(SU->isTopReady() && "node still has unscheduled dependencies"); |
| 715 | if (&*CurrentTop == MI) |
| 716 | CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom); |
| 717 | else |
| 718 | moveInstruction(MI, CurrentTop); |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 719 | } else { |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 720 | assert(SU->isBottomReady() && "node still has unscheduled dependencies"); |
| 721 | MachineBasicBlock::iterator priorII = |
| 722 | priorNonDebug(CurrentBottom, CurrentTop); |
| 723 | if (&*priorII == MI) |
| 724 | CurrentBottom = priorII; |
| 725 | else { |
| 726 | if (&*CurrentTop == MI) |
| 727 | CurrentTop = nextIfDebug(++CurrentTop, priorII); |
| 728 | moveInstruction(MI, CurrentBottom); |
| 729 | CurrentBottom = MI; |
| 730 | } |
| 731 | } |
Andrew Trick | 7f1ebbe | 2014-06-07 01:48:43 +0000 | [diff] [blame] | 732 | // Notify the scheduling strategy before updating the DAG. |
Andrew Trick | 491e34a | 2014-06-12 22:36:28 +0000 | [diff] [blame] | 733 | // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues |
Andrew Trick | 7f1ebbe | 2014-06-07 01:48:43 +0000 | [diff] [blame] | 734 | // runs, it can then use the accurate ReadyCycle time to determine whether |
| 735 | // newly released nodes can move to the readyQ. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 736 | SchedImpl->schedNode(SU, IsTopNode); |
Andrew Trick | 7f1ebbe | 2014-06-07 01:48:43 +0000 | [diff] [blame] | 737 | |
| 738 | updateQueues(SU, IsTopNode); |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 739 | } |
| 740 | assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); |
| 741 | |
| 742 | placeDebugValues(); |
| 743 | |
| 744 | DEBUG({ |
| 745 | unsigned BBNum = begin()->getParent()->getNumber(); |
| 746 | dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n"; |
| 747 | dumpSchedule(); |
| 748 | dbgs() << '\n'; |
| 749 | }); |
| 750 | } |
| 751 | |
| 752 | /// Apply each ScheduleDAGMutation step in order. |
| 753 | void ScheduleDAGMI::postprocessDAG() { |
| 754 | for (unsigned i = 0, e = Mutations.size(); i < e; ++i) { |
| 755 | Mutations[i]->apply(this); |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | void ScheduleDAGMI:: |
| 760 | findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots, |
| 761 | SmallVectorImpl<SUnit*> &BotRoots) { |
| 762 | for (std::vector<SUnit>::iterator |
| 763 | I = SUnits.begin(), E = SUnits.end(); I != E; ++I) { |
| 764 | SUnit *SU = &(*I); |
| 765 | assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits"); |
| 766 | |
| 767 | // Order predecessors so DFSResult follows the critical path. |
| 768 | SU->biasCriticalPath(); |
| 769 | |
| 770 | // A SUnit is ready to top schedule if it has no predecessors. |
| 771 | if (!I->NumPredsLeft) |
| 772 | TopRoots.push_back(SU); |
| 773 | // A SUnit is ready to bottom schedule if it has no successors. |
| 774 | if (!I->NumSuccsLeft) |
| 775 | BotRoots.push_back(SU); |
| 776 | } |
| 777 | ExitSU.biasCriticalPath(); |
| 778 | } |
| 779 | |
| 780 | /// Identify DAG roots and setup scheduler queues. |
| 781 | void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots, |
| 782 | ArrayRef<SUnit*> BotRoots) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 783 | NextClusterSucc = nullptr; |
| 784 | NextClusterPred = nullptr; |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 785 | |
| 786 | // Release all DAG roots for scheduling, not including EntrySU/ExitSU. |
| 787 | // |
| 788 | // Nodes with unreleased weak edges can still be roots. |
| 789 | // Release top roots in forward order. |
| 790 | for (SmallVectorImpl<SUnit*>::const_iterator |
| 791 | I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) { |
| 792 | SchedImpl->releaseTopNode(*I); |
| 793 | } |
| 794 | // Release bottom roots in reverse order so the higher priority nodes appear |
| 795 | // first. This is more natural and slightly more efficient. |
| 796 | for (SmallVectorImpl<SUnit*>::const_reverse_iterator |
| 797 | I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) { |
| 798 | SchedImpl->releaseBottomNode(*I); |
| 799 | } |
| 800 | |
| 801 | releaseSuccessors(&EntrySU); |
| 802 | releasePredecessors(&ExitSU); |
| 803 | |
| 804 | SchedImpl->registerRoots(); |
| 805 | |
| 806 | // Advance past initial DebugValues. |
| 807 | CurrentTop = nextIfDebug(RegionBegin, RegionEnd); |
| 808 | CurrentBottom = RegionEnd; |
| 809 | } |
| 810 | |
| 811 | /// Update scheduler queues after scheduling an instruction. |
| 812 | void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) { |
| 813 | // Release dependent instructions for scheduling. |
| 814 | if (IsTopNode) |
| 815 | releaseSuccessors(SU); |
| 816 | else |
| 817 | releasePredecessors(SU); |
| 818 | |
| 819 | SU->isScheduled = true; |
| 820 | } |
| 821 | |
| 822 | /// Reinsert any remaining debug_values, just like the PostRA scheduler. |
| 823 | void ScheduleDAGMI::placeDebugValues() { |
| 824 | // If first instruction was a DBG_VALUE then put it back. |
| 825 | if (FirstDbgValue) { |
| 826 | BB->splice(RegionBegin, BB, FirstDbgValue); |
| 827 | RegionBegin = FirstDbgValue; |
| 828 | } |
| 829 | |
| 830 | for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator |
| 831 | DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) { |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 832 | std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI); |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 833 | MachineInstr *DbgValue = P.first; |
| 834 | MachineBasicBlock::iterator OrigPrevMI = P.second; |
| 835 | if (&*RegionBegin == DbgValue) |
| 836 | ++RegionBegin; |
| 837 | BB->splice(++OrigPrevMI, BB, DbgValue); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 838 | if (OrigPrevMI == std::prev(RegionEnd)) |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 839 | RegionEnd = DbgValue; |
| 840 | } |
| 841 | DbgValues.clear(); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 842 | FirstDbgValue = nullptr; |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 843 | } |
| 844 | |
| 845 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
| 846 | void ScheduleDAGMI::dumpSchedule() const { |
| 847 | for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) { |
| 848 | if (SUnit *SU = getSUnit(&(*MI))) |
| 849 | SU->dump(this); |
| 850 | else |
| 851 | dbgs() << "Missing SUnit\n"; |
| 852 | } |
| 853 | } |
| 854 | #endif |
| 855 | |
| 856 | //===----------------------------------------------------------------------===// |
| 857 | // ScheduleDAGMILive - Base class for MachineInstr scheduling with LiveIntervals |
| 858 | // preservation. |
| 859 | //===----------------------------------------------------------------------===// |
| 860 | |
| 861 | ScheduleDAGMILive::~ScheduleDAGMILive() { |
| 862 | delete DFSResult; |
| 863 | } |
| 864 | |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 865 | /// enterRegion - Called back from MachineScheduler::runOnMachineFunction after |
| 866 | /// crossing a scheduling boundary. [begin, end) includes all instructions in |
| 867 | /// the region, including the boundary itself and single-instruction regions |
| 868 | /// that don't get scheduled. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 869 | void ScheduleDAGMILive::enterRegion(MachineBasicBlock *bb, |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 870 | MachineBasicBlock::iterator begin, |
| 871 | MachineBasicBlock::iterator end, |
Andrew Trick | a53e101 | 2013-08-23 17:48:33 +0000 | [diff] [blame] | 872 | unsigned regioninstrs) |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 873 | { |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 874 | // ScheduleDAGMI initializes SchedImpl's per-region policy. |
| 875 | ScheduleDAGMI::enterRegion(bb, begin, end, regioninstrs); |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 876 | |
| 877 | // For convenience remember the end of the liveness region. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 878 | LiveRegionEnd = (RegionEnd == bb->end()) ? RegionEnd : std::next(RegionEnd); |
Andrew Trick | 75e411c | 2013-09-06 17:32:34 +0000 | [diff] [blame] | 879 | |
Andrew Trick | b248b4a | 2013-09-06 17:32:47 +0000 | [diff] [blame] | 880 | SUPressureDiffs.clear(); |
| 881 | |
Andrew Trick | 75e411c | 2013-09-06 17:32:34 +0000 | [diff] [blame] | 882 | ShouldTrackPressure = SchedImpl->shouldTrackPressure(); |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 883 | ShouldTrackLaneMasks = SchedImpl->shouldTrackLaneMasks(); |
| 884 | |
Matthias Braun | f9acaca | 2016-05-31 22:38:06 +0000 | [diff] [blame] | 885 | assert((!ShouldTrackLaneMasks || ShouldTrackPressure) && |
| 886 | "ShouldTrackLaneMasks requires ShouldTrackPressure"); |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | // Setup the register pressure trackers for the top scheduled top and bottom |
| 890 | // scheduled regions. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 891 | void ScheduleDAGMILive::initRegPressure() { |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 892 | TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin, |
| 893 | ShouldTrackLaneMasks, false); |
| 894 | BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd, |
| 895 | ShouldTrackLaneMasks, false); |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 896 | |
| 897 | // Close the RPTracker to finalize live ins. |
| 898 | RPTracker.closeRegion(); |
| 899 | |
Andrew Trick | 9c17eab | 2013-07-30 19:59:12 +0000 | [diff] [blame] | 900 | DEBUG(RPTracker.dump()); |
Andrew Trick | 79d3eec | 2012-05-24 22:11:14 +0000 | [diff] [blame] | 901 | |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 902 | // Initialize the live ins and live outs. |
Matthias Braun | 3e86de1 | 2015-09-17 21:12:24 +0000 | [diff] [blame] | 903 | TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs); |
| 904 | BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs); |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 905 | |
| 906 | // Close one end of the tracker so we can call |
| 907 | // getMaxUpward/DownwardPressureDelta before advancing across any |
| 908 | // instructions. This converts currently live regs into live ins/outs. |
| 909 | TopRPTracker.closeTop(); |
| 910 | BotRPTracker.closeBottom(); |
| 911 | |
Andrew Trick | 9c17eab | 2013-07-30 19:59:12 +0000 | [diff] [blame] | 912 | BotRPTracker.initLiveThru(RPTracker); |
| 913 | if (!BotRPTracker.getLiveThru().empty()) { |
| 914 | TopRPTracker.initLiveThru(BotRPTracker.getLiveThru()); |
| 915 | DEBUG(dbgs() << "Live Thru: "; |
| 916 | dumpRegSetPressure(BotRPTracker.getLiveThru(), TRI)); |
| 917 | }; |
| 918 | |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 919 | // For each live out vreg reduce the pressure change associated with other |
| 920 | // uses of the same vreg below the live-out reaching def. |
Matthias Braun | 3e86de1 | 2015-09-17 21:12:24 +0000 | [diff] [blame] | 921 | updatePressureDiffs(RPTracker.getPressure().LiveOutRegs); |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 922 | |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 923 | // Account for liveness generated by the region boundary. |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 924 | if (LiveRegionEnd != RegionEnd) { |
Matthias Braun | 5d45861 | 2016-01-20 00:23:26 +0000 | [diff] [blame] | 925 | SmallVector<RegisterMaskPair, 8> LiveUses; |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 926 | BotRPTracker.recede(&LiveUses); |
| 927 | updatePressureDiffs(LiveUses); |
| 928 | } |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 929 | |
Matthias Braun | e6edd48 | 2015-11-13 22:30:31 +0000 | [diff] [blame] | 930 | DEBUG( |
| 931 | dbgs() << "Top Pressure:\n"; |
| 932 | dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI); |
| 933 | dbgs() << "Bottom Pressure:\n"; |
| 934 | dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI); |
| 935 | ); |
| 936 | |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 937 | assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom"); |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 938 | |
| 939 | // Cache the list of excess pressure sets in this region. This will also track |
| 940 | // the max pressure in the scheduled code for these sets. |
| 941 | RegionCriticalPSets.clear(); |
Jakub Staszak | c641ada | 2013-01-25 21:44:27 +0000 | [diff] [blame] | 942 | const std::vector<unsigned> &RegionPressure = |
| 943 | RPTracker.getPressure().MaxSetPressure; |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 944 | for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) { |
Andrew Trick | 736dd9a | 2013-06-21 18:32:58 +0000 | [diff] [blame] | 945 | unsigned Limit = RegClassInfo->getRegPressureSetLimit(i); |
Andrew Trick | b55db58 | 2013-06-21 18:33:01 +0000 | [diff] [blame] | 946 | if (RegionPressure[i] > Limit) { |
| 947 | DEBUG(dbgs() << TRI->getRegPressureSetName(i) |
| 948 | << " Limit " << Limit |
| 949 | << " Actual " << RegionPressure[i] << "\n"); |
Andrew Trick | 1a83134 | 2013-08-30 03:49:48 +0000 | [diff] [blame] | 950 | RegionCriticalPSets.push_back(PressureChange(i)); |
Andrew Trick | b55db58 | 2013-06-21 18:33:01 +0000 | [diff] [blame] | 951 | } |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 952 | } |
| 953 | DEBUG(dbgs() << "Excess PSets: "; |
| 954 | for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i) |
| 955 | dbgs() << TRI->getRegPressureSetName( |
Andrew Trick | 1a83134 | 2013-08-30 03:49:48 +0000 | [diff] [blame] | 956 | RegionCriticalPSets[i].getPSet()) << " "; |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 957 | dbgs() << "\n"); |
| 958 | } |
| 959 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 960 | void ScheduleDAGMILive:: |
Andrew Trick | b248b4a | 2013-09-06 17:32:47 +0000 | [diff] [blame] | 961 | updateScheduledPressure(const SUnit *SU, |
| 962 | const std::vector<unsigned> &NewMaxPressure) { |
| 963 | const PressureDiff &PDiff = getPressureDiff(SU); |
| 964 | unsigned CritIdx = 0, CritEnd = RegionCriticalPSets.size(); |
| 965 | for (PressureDiff::const_iterator I = PDiff.begin(), E = PDiff.end(); |
| 966 | I != E; ++I) { |
| 967 | if (!I->isValid()) |
| 968 | break; |
| 969 | unsigned ID = I->getPSet(); |
| 970 | while (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() < ID) |
| 971 | ++CritIdx; |
| 972 | if (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() == ID) { |
| 973 | if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc() |
| 974 | && NewMaxPressure[ID] <= INT16_MAX) |
| 975 | RegionCriticalPSets[CritIdx].setUnitInc(NewMaxPressure[ID]); |
| 976 | } |
| 977 | unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID); |
| 978 | if (NewMaxPressure[ID] >= Limit - 2) { |
| 979 | DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": " |
Andrew Trick | 569dc65a | 2015-05-17 23:40:31 +0000 | [diff] [blame] | 980 | << NewMaxPressure[ID] |
| 981 | << ((NewMaxPressure[ID] > Limit) ? " > " : " <= ") << Limit |
| 982 | << "(+ " << BotRPTracker.getLiveThru()[ID] << " livethru)\n"); |
Andrew Trick | b248b4a | 2013-09-06 17:32:47 +0000 | [diff] [blame] | 983 | } |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 984 | } |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 985 | } |
| 986 | |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 987 | /// Update the PressureDiff array for liveness after scheduling this |
| 988 | /// instruction. |
Matthias Braun | 5d45861 | 2016-01-20 00:23:26 +0000 | [diff] [blame] | 989 | void ScheduleDAGMILive::updatePressureDiffs( |
| 990 | ArrayRef<RegisterMaskPair> LiveUses) { |
| 991 | for (const RegisterMaskPair &P : LiveUses) { |
Matthias Braun | 5d45861 | 2016-01-20 00:23:26 +0000 | [diff] [blame] | 992 | unsigned Reg = P.RegUnit; |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 993 | /// FIXME: Currently assuming single-use physregs. |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 994 | if (!TRI->isVirtualRegister(Reg)) |
| 995 | continue; |
Andrew Trick | ffdbefb | 2013-09-06 17:32:39 +0000 | [diff] [blame] | 996 | |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 997 | if (ShouldTrackLaneMasks) { |
| 998 | // If the register has just become live then other uses won't change |
| 999 | // this fact anymore => decrement pressure. |
| 1000 | // If the register has just become dead then other uses make it come |
| 1001 | // back to life => increment pressure. |
| 1002 | bool Decrement = P.LaneMask != 0; |
| 1003 | |
| 1004 | for (const VReg2SUnit &V2SU |
| 1005 | : make_range(VRegUses.find(Reg), VRegUses.end())) { |
| 1006 | SUnit &SU = *V2SU.SU; |
| 1007 | if (SU.isScheduled || &SU == &ExitSU) |
| 1008 | continue; |
| 1009 | |
| 1010 | PressureDiff &PDiff = getPressureDiff(&SU); |
| 1011 | PDiff.addPressureChange(Reg, Decrement, &MRI); |
| 1012 | DEBUG( |
| 1013 | dbgs() << " UpdateRegP: SU(" << SU.NodeNum << ") " |
| 1014 | << PrintReg(Reg, TRI) << ':' << PrintLaneMask(P.LaneMask) |
| 1015 | << ' ' << *SU.getInstr(); |
| 1016 | dbgs() << " to "; |
| 1017 | PDiff.dump(*TRI); |
| 1018 | ); |
| 1019 | } |
| 1020 | } else { |
| 1021 | assert(P.LaneMask != 0); |
| 1022 | DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n"); |
| 1023 | // This may be called before CurrentBottom has been initialized. However, |
| 1024 | // BotRPTracker must have a valid position. We want the value live into the |
| 1025 | // instruction or live out of the block, so ask for the previous |
| 1026 | // instruction's live-out. |
| 1027 | const LiveInterval &LI = LIS->getInterval(Reg); |
| 1028 | VNInfo *VNI; |
| 1029 | MachineBasicBlock::const_iterator I = |
| 1030 | nextIfDebug(BotRPTracker.getPos(), BB->end()); |
| 1031 | if (I == BB->end()) |
| 1032 | VNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB)); |
| 1033 | else { |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1034 | LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*I)); |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1035 | VNI = LRQ.valueIn(); |
| 1036 | } |
| 1037 | // RegisterPressureTracker guarantees that readsReg is true for LiveUses. |
| 1038 | assert(VNI && "No live value at use."); |
| 1039 | for (const VReg2SUnit &V2SU |
| 1040 | : make_range(VRegUses.find(Reg), VRegUses.end())) { |
| 1041 | SUnit *SU = V2SU.SU; |
| 1042 | // If this use comes before the reaching def, it cannot be a last use, |
| 1043 | // so decrease its pressure change. |
| 1044 | if (!SU->isScheduled && SU != &ExitSU) { |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1045 | LiveQueryResult LRQ = |
| 1046 | LI.Query(LIS->getInstructionIndex(*SU->getInstr())); |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1047 | if (LRQ.valueIn() == VNI) { |
| 1048 | PressureDiff &PDiff = getPressureDiff(SU); |
| 1049 | PDiff.addPressureChange(Reg, true, &MRI); |
| 1050 | DEBUG( |
| 1051 | dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") " |
| 1052 | << *SU->getInstr(); |
| 1053 | dbgs() << " to "; |
| 1054 | PDiff.dump(*TRI); |
| 1055 | ); |
| 1056 | } |
Matthias Braun | 9198c67 | 2015-11-06 20:59:02 +0000 | [diff] [blame] | 1057 | } |
Andrew Trick | 2bc74c2 | 2013-08-30 04:36:57 +0000 | [diff] [blame] | 1058 | } |
| 1059 | } |
| 1060 | } |
| 1061 | } |
| 1062 | |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 1063 | /// schedule - Called back from MachineScheduler::runOnMachineFunction |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 1064 | /// after setting up the current scheduling region. [RegionBegin, RegionEnd) |
| 1065 | /// only includes instructions that have DAG nodes, not scheduling boundaries. |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1066 | /// |
| 1067 | /// This is a skeletal driver, with all the functionality pushed into helpers, |
Nick Lewycky | 06b0ea2 | 2015-08-18 22:41:58 +0000 | [diff] [blame] | 1068 | /// so that it can be easily extended by experimental schedulers. Generally, |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1069 | /// implementing MachineSchedStrategy should be sufficient to implement a new |
| 1070 | /// scheduling algorithm. However, if a scheduler further subclasses |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1071 | /// ScheduleDAGMILive then it will want to override this virtual method in order |
| 1072 | /// to update any specialized state. |
| 1073 | void ScheduleDAGMILive::schedule() { |
James Y Knight | e72b0db | 2015-09-18 18:52:20 +0000 | [diff] [blame] | 1074 | DEBUG(dbgs() << "ScheduleDAGMILive::schedule starting\n"); |
| 1075 | DEBUG(SchedImpl->dumpPolicy()); |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1076 | buildDAGWithRegPressure(); |
| 1077 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1078 | Topo.InitDAGTopologicalSorting(); |
| 1079 | |
Andrew Trick | a2733e9 | 2012-09-14 17:22:42 +0000 | [diff] [blame] | 1080 | postprocessDAG(); |
| 1081 | |
Andrew Trick | e2c3f5c | 2013-01-25 06:33:57 +0000 | [diff] [blame] | 1082 | SmallVector<SUnit*, 8> TopRoots, BotRoots; |
| 1083 | findRootsAndBiasEdges(TopRoots, BotRoots); |
| 1084 | |
| 1085 | // Initialize the strategy before modifying the DAG. |
| 1086 | // This may initialize a DFSResult to be used for queue priority. |
| 1087 | SchedImpl->initialize(this); |
| 1088 | |
Matthias Braun | 9198c67 | 2015-11-06 20:59:02 +0000 | [diff] [blame] | 1089 | DEBUG( |
| 1090 | for (const SUnit &SU : SUnits) { |
| 1091 | SU.dumpAll(this); |
| 1092 | if (ShouldTrackPressure) { |
| 1093 | dbgs() << " Pressure Diff : "; |
| 1094 | getPressureDiff(&SU).dump(*TRI); |
| 1095 | } |
| 1096 | dbgs() << '\n'; |
| 1097 | } |
| 1098 | ); |
Andrew Trick | e2c3f5c | 2013-01-25 06:33:57 +0000 | [diff] [blame] | 1099 | if (ViewMISchedDAGs) viewGraph(); |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1100 | |
Andrew Trick | e2c3f5c | 2013-01-25 06:33:57 +0000 | [diff] [blame] | 1101 | // Initialize ready queues now that the DAG and priority data are finalized. |
| 1102 | initQueues(TopRoots, BotRoots); |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1103 | |
| 1104 | bool IsTopNode = false; |
James Y Knight | e72b0db | 2015-09-18 18:52:20 +0000 | [diff] [blame] | 1105 | while (true) { |
| 1106 | DEBUG(dbgs() << "** ScheduleDAGMILive::schedule picking next node\n"); |
| 1107 | SUnit *SU = SchedImpl->pickNode(IsTopNode); |
| 1108 | if (!SU) break; |
| 1109 | |
Andrew Trick | 984d98b | 2012-10-08 18:53:53 +0000 | [diff] [blame] | 1110 | assert(!SU->isScheduled && "Node already scheduled"); |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1111 | if (!checkSchedLimit()) |
| 1112 | break; |
| 1113 | |
| 1114 | scheduleMI(SU, IsTopNode); |
| 1115 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1116 | if (DFSResult) { |
| 1117 | unsigned SubtreeID = DFSResult->getSubtreeID(SU); |
| 1118 | if (!ScheduledTrees.test(SubtreeID)) { |
| 1119 | ScheduledTrees.set(SubtreeID); |
| 1120 | DFSResult->scheduleTree(SubtreeID); |
| 1121 | SchedImpl->scheduleTree(SubtreeID); |
| 1122 | } |
| 1123 | } |
| 1124 | |
| 1125 | // Notify the scheduling strategy after updating the DAG. |
| 1126 | SchedImpl->schedNode(SU, IsTopNode); |
Andrew Trick | 43adfb3 | 2015-03-27 06:10:13 +0000 | [diff] [blame] | 1127 | |
| 1128 | updateQueues(SU, IsTopNode); |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1129 | } |
| 1130 | assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); |
| 1131 | |
| 1132 | placeDebugValues(); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1133 | |
| 1134 | DEBUG({ |
Andrew Trick | cf7e697 | 2012-11-28 03:42:47 +0000 | [diff] [blame] | 1135 | unsigned BBNum = begin()->getParent()->getNumber(); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1136 | dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n"; |
| 1137 | dumpSchedule(); |
| 1138 | dbgs() << '\n'; |
| 1139 | }); |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | /// Build the DAG and setup three register pressure trackers. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1143 | void ScheduleDAGMILive::buildDAGWithRegPressure() { |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 1144 | if (!ShouldTrackPressure) { |
| 1145 | RPTracker.reset(); |
| 1146 | RegionCriticalPSets.clear(); |
| 1147 | buildSchedGraph(AA); |
| 1148 | return; |
| 1149 | } |
| 1150 | |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 1151 | // Initialize the register pressure tracker used by buildSchedGraph. |
Andrew Trick | 9c17eab | 2013-07-30 19:59:12 +0000 | [diff] [blame] | 1152 | RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd, |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1153 | ShouldTrackLaneMasks, /*TrackUntiedDefs=*/true); |
Andrew Trick | 8863992 | 2012-04-24 17:56:43 +0000 | [diff] [blame] | 1154 | |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 1155 | // Account for liveness generate by the region boundary. |
| 1156 | if (LiveRegionEnd != RegionEnd) |
| 1157 | RPTracker.recede(); |
| 1158 | |
| 1159 | // Build the DAG, and compute current register pressure. |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1160 | buildSchedGraph(AA, &RPTracker, &SUPressureDiffs, LIS, ShouldTrackLaneMasks); |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 1161 | |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 1162 | // Initialize top/bottom trackers after computing region pressure. |
| 1163 | initRegPressure(); |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1164 | } |
Andrew Trick | 4add42f | 2012-05-10 21:06:10 +0000 | [diff] [blame] | 1165 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1166 | void ScheduleDAGMILive::computeDFSResult() { |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 1167 | if (!DFSResult) |
| 1168 | DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize); |
| 1169 | DFSResult->clear(); |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 1170 | ScheduledTrees.clear(); |
Andrew Trick | e2c3f5c | 2013-01-25 06:33:57 +0000 | [diff] [blame] | 1171 | DFSResult->resize(SUnits.size()); |
| 1172 | DFSResult->compute(SUnits); |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 1173 | ScheduledTrees.resize(DFSResult->getNumSubtrees()); |
| 1174 | } |
| 1175 | |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1176 | /// Compute the max cyclic critical path through the DAG. The scheduling DAG |
| 1177 | /// only provides the critical path for single block loops. To handle loops that |
| 1178 | /// span blocks, we could use the vreg path latencies provided by |
| 1179 | /// MachineTraceMetrics instead. However, MachineTraceMetrics is not currently |
| 1180 | /// available for use in the scheduler. |
| 1181 | /// |
| 1182 | /// The cyclic path estimation identifies a def-use pair that crosses the back |
Andrew Trick | ef80f50 | 2013-08-30 02:02:12 +0000 | [diff] [blame] | 1183 | /// edge and considers the depth and height of the nodes. For example, consider |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1184 | /// the following instruction sequence where each instruction has unit latency |
| 1185 | /// and defines an epomymous virtual register: |
| 1186 | /// |
| 1187 | /// a->b(a,c)->c(b)->d(c)->exit |
| 1188 | /// |
| 1189 | /// The cyclic critical path is a two cycles: b->c->b |
| 1190 | /// The acyclic critical path is four cycles: a->b->c->d->exit |
| 1191 | /// LiveOutHeight = height(c) = len(c->d->exit) = 2 |
| 1192 | /// LiveOutDepth = depth(c) + 1 = len(a->b->c) + 1 = 3 |
| 1193 | /// LiveInHeight = height(b) + 1 = len(b->c->d->exit) + 1 = 4 |
| 1194 | /// LiveInDepth = depth(b) = len(a->b) = 1 |
| 1195 | /// |
| 1196 | /// LiveOutDepth - LiveInDepth = 3 - 1 = 2 |
| 1197 | /// LiveInHeight - LiveOutHeight = 4 - 2 = 2 |
| 1198 | /// CyclicCriticalPath = min(2, 2) = 2 |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1199 | /// |
| 1200 | /// This could be relevant to PostRA scheduling, but is currently implemented |
| 1201 | /// assuming LiveIntervals. |
| 1202 | unsigned ScheduleDAGMILive::computeCyclicCriticalPath() { |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1203 | // This only applies to single block loop. |
| 1204 | if (!BB->isSuccessor(BB)) |
| 1205 | return 0; |
| 1206 | |
| 1207 | unsigned MaxCyclicLatency = 0; |
| 1208 | // Visit each live out vreg def to find def/use pairs that cross iterations. |
Matthias Braun | 5d45861 | 2016-01-20 00:23:26 +0000 | [diff] [blame] | 1209 | for (const RegisterMaskPair &P : RPTracker.getPressure().LiveOutRegs) { |
| 1210 | unsigned Reg = P.RegUnit; |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1211 | if (!TRI->isVirtualRegister(Reg)) |
| 1212 | continue; |
| 1213 | const LiveInterval &LI = LIS->getInterval(Reg); |
| 1214 | const VNInfo *DefVNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB)); |
| 1215 | if (!DefVNI) |
| 1216 | continue; |
| 1217 | |
| 1218 | MachineInstr *DefMI = LIS->getInstructionFromIndex(DefVNI->def); |
| 1219 | const SUnit *DefSU = getSUnit(DefMI); |
| 1220 | if (!DefSU) |
| 1221 | continue; |
| 1222 | |
| 1223 | unsigned LiveOutHeight = DefSU->getHeight(); |
| 1224 | unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency; |
| 1225 | // Visit all local users of the vreg def. |
Matthias Braun | b0c437b | 2015-10-29 03:57:17 +0000 | [diff] [blame] | 1226 | for (const VReg2SUnit &V2SU |
| 1227 | : make_range(VRegUses.find(Reg), VRegUses.end())) { |
| 1228 | SUnit *SU = V2SU.SU; |
| 1229 | if (SU == &ExitSU) |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1230 | continue; |
| 1231 | |
| 1232 | // Only consider uses of the phi. |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1233 | LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*SU->getInstr())); |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1234 | if (!LRQ.valueIn()->isPHIDef()) |
| 1235 | continue; |
| 1236 | |
| 1237 | // Assume that a path spanning two iterations is a cycle, which could |
| 1238 | // overestimate in strange cases. This allows cyclic latency to be |
| 1239 | // estimated as the minimum slack of the vreg's depth or height. |
| 1240 | unsigned CyclicLatency = 0; |
Matthias Braun | b0c437b | 2015-10-29 03:57:17 +0000 | [diff] [blame] | 1241 | if (LiveOutDepth > SU->getDepth()) |
| 1242 | CyclicLatency = LiveOutDepth - SU->getDepth(); |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1243 | |
Matthias Braun | b0c437b | 2015-10-29 03:57:17 +0000 | [diff] [blame] | 1244 | unsigned LiveInHeight = SU->getHeight() + DefSU->Latency; |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1245 | if (LiveInHeight > LiveOutHeight) { |
| 1246 | if (LiveInHeight - LiveOutHeight < CyclicLatency) |
| 1247 | CyclicLatency = LiveInHeight - LiveOutHeight; |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 1248 | } else |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1249 | CyclicLatency = 0; |
| 1250 | |
| 1251 | DEBUG(dbgs() << "Cyclic Path: SU(" << DefSU->NodeNum << ") -> SU(" |
Matthias Braun | b0c437b | 2015-10-29 03:57:17 +0000 | [diff] [blame] | 1252 | << SU->NodeNum << ") = " << CyclicLatency << "c\n"); |
Andrew Trick | 483f419 | 2013-08-29 18:04:49 +0000 | [diff] [blame] | 1253 | if (CyclicLatency > MaxCyclicLatency) |
| 1254 | MaxCyclicLatency = CyclicLatency; |
| 1255 | } |
| 1256 | } |
| 1257 | DEBUG(dbgs() << "Cyclic Critical Path: " << MaxCyclicLatency << "c\n"); |
| 1258 | return MaxCyclicLatency; |
| 1259 | } |
| 1260 | |
Krzysztof Parzyszek | 7ea9a52 | 2016-04-28 19:17:44 +0000 | [diff] [blame] | 1261 | /// Release ExitSU predecessors and setup scheduler queues. Re-position |
| 1262 | /// the Top RP tracker in case the region beginning has changed. |
| 1263 | void ScheduleDAGMILive::initQueues(ArrayRef<SUnit*> TopRoots, |
| 1264 | ArrayRef<SUnit*> BotRoots) { |
| 1265 | ScheduleDAGMI::initQueues(TopRoots, BotRoots); |
| 1266 | if (ShouldTrackPressure) { |
| 1267 | assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker"); |
| 1268 | TopRPTracker.setPos(CurrentTop); |
| 1269 | } |
| 1270 | } |
| 1271 | |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1272 | /// Move an instruction and update register pressure. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1273 | void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) { |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1274 | // Move the instruction to its new location in the instruction stream. |
| 1275 | MachineInstr *MI = SU->getInstr(); |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 1276 | |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1277 | if (IsTopNode) { |
| 1278 | assert(SU->isTopReady() && "node still has unscheduled dependencies"); |
| 1279 | if (&*CurrentTop == MI) |
| 1280 | CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom); |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 1281 | else { |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1282 | moveInstruction(MI, CurrentTop); |
| 1283 | TopRPTracker.setPos(MI); |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 1284 | } |
Andrew Trick | c3ea005 | 2012-04-24 18:04:37 +0000 | [diff] [blame] | 1285 | |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 1286 | if (ShouldTrackPressure) { |
| 1287 | // Update top scheduled pressure. |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1288 | RegisterOperands RegOpers; |
| 1289 | RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false); |
| 1290 | if (ShouldTrackLaneMasks) { |
| 1291 | // Adjust liveness and add missing dead+read-undef flags. |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1292 | SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot(); |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1293 | RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI); |
| 1294 | } else { |
| 1295 | // Adjust for missing dead-def flags. |
| 1296 | RegOpers.detectDeadDefs(*MI, *LIS); |
| 1297 | } |
| 1298 | |
| 1299 | TopRPTracker.advance(RegOpers); |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 1300 | assert(TopRPTracker.getPos() == CurrentTop && "out of sync"); |
Matthias Braun | 9198c67 | 2015-11-06 20:59:02 +0000 | [diff] [blame] | 1301 | DEBUG( |
| 1302 | dbgs() << "Top Pressure:\n"; |
| 1303 | dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI); |
| 1304 | ); |
| 1305 | |
Andrew Trick | b248b4a | 2013-09-06 17:32:47 +0000 | [diff] [blame] | 1306 | updateScheduledPressure(SU, TopRPTracker.getPressure().MaxSetPressure); |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 1307 | } |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 1308 | } else { |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1309 | assert(SU->isBottomReady() && "node still has unscheduled dependencies"); |
| 1310 | MachineBasicBlock::iterator priorII = |
| 1311 | priorNonDebug(CurrentBottom, CurrentTop); |
| 1312 | if (&*priorII == MI) |
| 1313 | CurrentBottom = priorII; |
| 1314 | else { |
| 1315 | if (&*CurrentTop == MI) { |
| 1316 | CurrentTop = nextIfDebug(++CurrentTop, priorII); |
| 1317 | TopRPTracker.setPos(CurrentTop); |
| 1318 | } |
| 1319 | moveInstruction(MI, CurrentBottom); |
| 1320 | CurrentBottom = MI; |
| 1321 | } |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 1322 | if (ShouldTrackPressure) { |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1323 | RegisterOperands RegOpers; |
| 1324 | RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false); |
| 1325 | if (ShouldTrackLaneMasks) { |
| 1326 | // Adjust liveness and add missing dead+read-undef flags. |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1327 | SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot(); |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1328 | RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI); |
| 1329 | } else { |
| 1330 | // Adjust for missing dead-def flags. |
| 1331 | RegOpers.detectDeadDefs(*MI, *LIS); |
| 1332 | } |
| 1333 | |
| 1334 | BotRPTracker.recedeSkipDebugValues(); |
Matthias Braun | 5d45861 | 2016-01-20 00:23:26 +0000 | [diff] [blame] | 1335 | SmallVector<RegisterMaskPair, 8> LiveUses; |
Matthias Braun | d4f6409 | 2016-01-20 00:23:32 +0000 | [diff] [blame] | 1336 | BotRPTracker.recede(RegOpers, &LiveUses); |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 1337 | assert(BotRPTracker.getPos() == CurrentBottom && "out of sync"); |
Matthias Braun | 9198c67 | 2015-11-06 20:59:02 +0000 | [diff] [blame] | 1338 | DEBUG( |
| 1339 | dbgs() << "Bottom Pressure:\n"; |
| 1340 | dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI); |
| 1341 | ); |
| 1342 | |
Andrew Trick | b248b4a | 2013-09-06 17:32:47 +0000 | [diff] [blame] | 1343 | updateScheduledPressure(SU, BotRPTracker.getPressure().MaxSetPressure); |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 1344 | updatePressureDiffs(LiveUses); |
Andrew Trick | b6e7471 | 2013-09-04 20:59:59 +0000 | [diff] [blame] | 1345 | } |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 1346 | } |
| 1347 | } |
| 1348 | |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1349 | //===----------------------------------------------------------------------===// |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1350 | // BaseMemOpClusterMutation - DAG post-processing to cluster loads or stores. |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1351 | //===----------------------------------------------------------------------===// |
| 1352 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1353 | namespace { |
| 1354 | /// \brief Post-process the DAG to create cluster edges between neighboring |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1355 | /// loads or between neighboring stores. |
| 1356 | class BaseMemOpClusterMutation : public ScheduleDAGMutation { |
| 1357 | struct MemOpInfo { |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1358 | SUnit *SU; |
| 1359 | unsigned BaseReg; |
Chad Rosier | c27a18f | 2016-03-09 16:00:35 +0000 | [diff] [blame] | 1360 | int64_t Offset; |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1361 | MemOpInfo(SUnit *su, unsigned reg, int64_t ofs) |
| 1362 | : SU(su), BaseReg(reg), Offset(ofs) {} |
Benjamin Kramer | b0f74b2 | 2014-03-07 21:35:39 +0000 | [diff] [blame] | 1363 | |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1364 | bool operator<(const MemOpInfo&RHS) const { |
Benjamin Kramer | b0f74b2 | 2014-03-07 21:35:39 +0000 | [diff] [blame] | 1365 | return std::tie(BaseReg, Offset) < std::tie(RHS.BaseReg, RHS.Offset); |
| 1366 | } |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1367 | }; |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1368 | |
| 1369 | const TargetInstrInfo *TII; |
| 1370 | const TargetRegisterInfo *TRI; |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1371 | bool IsLoad; |
| 1372 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1373 | public: |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1374 | BaseMemOpClusterMutation(const TargetInstrInfo *tii, |
| 1375 | const TargetRegisterInfo *tri, bool IsLoad) |
| 1376 | : TII(tii), TRI(tri), IsLoad(IsLoad) {} |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1377 | |
Krzysztof Parzyszek | 5c61d11 | 2016-03-05 15:45:23 +0000 | [diff] [blame] | 1378 | void apply(ScheduleDAGInstrs *DAGInstrs) override; |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1379 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1380 | protected: |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1381 | void clusterNeighboringMemOps(ArrayRef<SUnit *> MemOps, ScheduleDAGMI *DAG); |
| 1382 | }; |
| 1383 | |
| 1384 | class StoreClusterMutation : public BaseMemOpClusterMutation { |
| 1385 | public: |
| 1386 | StoreClusterMutation(const TargetInstrInfo *tii, |
| 1387 | const TargetRegisterInfo *tri) |
| 1388 | : BaseMemOpClusterMutation(tii, tri, false) {} |
| 1389 | }; |
| 1390 | |
| 1391 | class LoadClusterMutation : public BaseMemOpClusterMutation { |
| 1392 | public: |
| 1393 | LoadClusterMutation(const TargetInstrInfo *tii, const TargetRegisterInfo *tri) |
| 1394 | : BaseMemOpClusterMutation(tii, tri, true) {} |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1395 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 1396 | } // anonymous |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1397 | |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1398 | void BaseMemOpClusterMutation::clusterNeighboringMemOps( |
| 1399 | ArrayRef<SUnit *> MemOps, ScheduleDAGMI *DAG) { |
| 1400 | SmallVector<MemOpInfo, 32> MemOpRecords; |
| 1401 | for (unsigned Idx = 0, End = MemOps.size(); Idx != End; ++Idx) { |
| 1402 | SUnit *SU = MemOps[Idx]; |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1403 | unsigned BaseReg; |
Chad Rosier | c27a18f | 2016-03-09 16:00:35 +0000 | [diff] [blame] | 1404 | int64_t Offset; |
Sanjoy Das | b666ea3 | 2015-06-15 18:44:14 +0000 | [diff] [blame] | 1405 | if (TII->getMemOpBaseRegImmOfs(SU->getInstr(), BaseReg, Offset, TRI)) |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1406 | MemOpRecords.push_back(MemOpInfo(SU, BaseReg, Offset)); |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1407 | } |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1408 | if (MemOpRecords.size() < 2) |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1409 | return; |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1410 | |
| 1411 | std::sort(MemOpRecords.begin(), MemOpRecords.end()); |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1412 | unsigned ClusterLength = 1; |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1413 | for (unsigned Idx = 0, End = MemOpRecords.size(); Idx < (End - 1); ++Idx) { |
| 1414 | if (MemOpRecords[Idx].BaseReg != MemOpRecords[Idx+1].BaseReg) { |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1415 | ClusterLength = 1; |
| 1416 | continue; |
| 1417 | } |
| 1418 | |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1419 | SUnit *SUa = MemOpRecords[Idx].SU; |
| 1420 | SUnit *SUb = MemOpRecords[Idx+1].SU; |
| 1421 | if (TII->shouldClusterMemOps(SUa->getInstr(), SUb->getInstr(), ClusterLength) |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1422 | && DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) { |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1423 | DEBUG(dbgs() << "Cluster ld/st SU(" << SUa->NodeNum << ") - SU(" |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1424 | << SUb->NodeNum << ")\n"); |
| 1425 | // Copy successor edges from SUa to SUb. Interleaving computation |
| 1426 | // dependent on SUa can prevent load combining due to register reuse. |
| 1427 | // Predecessor edges do not need to be copied from SUb to SUa since nearby |
| 1428 | // loads should have effectively the same inputs. |
| 1429 | for (SUnit::const_succ_iterator |
| 1430 | SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) { |
| 1431 | if (SI->getSUnit() == SUb) |
| 1432 | continue; |
| 1433 | DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n"); |
| 1434 | DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial)); |
| 1435 | } |
| 1436 | ++ClusterLength; |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 1437 | } else |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1438 | ClusterLength = 1; |
| 1439 | } |
| 1440 | } |
| 1441 | |
| 1442 | /// \brief Callback from DAG postProcessing to create cluster edges for loads. |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1443 | void BaseMemOpClusterMutation::apply(ScheduleDAGInstrs *DAGInstrs) { |
| 1444 | |
Krzysztof Parzyszek | 5c61d11 | 2016-03-05 15:45:23 +0000 | [diff] [blame] | 1445 | ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs); |
| 1446 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1447 | // Map DAG NodeNum to store chain ID. |
| 1448 | DenseMap<unsigned, unsigned> StoreChainIDs; |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1449 | // Map each store chain to a set of dependent MemOps. |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1450 | SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents; |
| 1451 | for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) { |
| 1452 | SUnit *SU = &DAG->SUnits[Idx]; |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1453 | if ((IsLoad && !SU->getInstr()->mayLoad()) || |
| 1454 | (!IsLoad && !SU->getInstr()->mayStore())) |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1455 | continue; |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1456 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1457 | unsigned ChainPredID = DAG->SUnits.size(); |
| 1458 | for (SUnit::const_pred_iterator |
| 1459 | PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) { |
| 1460 | if (PI->isCtrl()) { |
| 1461 | ChainPredID = PI->getSUnit()->NodeNum; |
| 1462 | break; |
| 1463 | } |
| 1464 | } |
| 1465 | // Check if this chain-like pred has been seen |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1466 | // before. ChainPredID==MaxNodeID at the top of the schedule. |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1467 | unsigned NumChains = StoreChainDependents.size(); |
| 1468 | std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result = |
| 1469 | StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains)); |
| 1470 | if (Result.second) |
| 1471 | StoreChainDependents.resize(NumChains + 1); |
| 1472 | StoreChainDependents[Result.first->second].push_back(SU); |
| 1473 | } |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1474 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1475 | // Iterate over the store chains. |
| 1476 | for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx) |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 1477 | clusterNeighboringMemOps(StoreChainDependents[Idx], DAG); |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 1478 | } |
| 1479 | |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 1480 | //===----------------------------------------------------------------------===// |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1481 | // MacroFusion - DAG post-processing to encourage fusion of macro ops. |
| 1482 | //===----------------------------------------------------------------------===// |
| 1483 | |
| 1484 | namespace { |
| 1485 | /// \brief Post-process the DAG to create cluster edges between instructions |
| 1486 | /// that may be fused by the processor into a single operation. |
| 1487 | class MacroFusion : public ScheduleDAGMutation { |
Matthias Braun | 2bd6dd8 | 2015-07-20 22:34:44 +0000 | [diff] [blame] | 1488 | const TargetInstrInfo &TII; |
| 1489 | const TargetRegisterInfo &TRI; |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1490 | public: |
Matthias Braun | 2bd6dd8 | 2015-07-20 22:34:44 +0000 | [diff] [blame] | 1491 | MacroFusion(const TargetInstrInfo &TII, const TargetRegisterInfo &TRI) |
| 1492 | : TII(TII), TRI(TRI) {} |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1493 | |
Krzysztof Parzyszek | 5c61d11 | 2016-03-05 15:45:23 +0000 | [diff] [blame] | 1494 | void apply(ScheduleDAGInstrs *DAGInstrs) override; |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1495 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 1496 | } // anonymous |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1497 | |
Matthias Braun | 2bd6dd8 | 2015-07-20 22:34:44 +0000 | [diff] [blame] | 1498 | /// Returns true if \p MI reads a register written by \p Other. |
| 1499 | static bool HasDataDep(const TargetRegisterInfo &TRI, const MachineInstr &MI, |
| 1500 | const MachineInstr &Other) { |
| 1501 | for (const MachineOperand &MO : MI.uses()) { |
| 1502 | if (!MO.isReg() || !MO.readsReg()) |
| 1503 | continue; |
| 1504 | |
| 1505 | unsigned Reg = MO.getReg(); |
| 1506 | if (Other.modifiesRegister(Reg, &TRI)) |
| 1507 | return true; |
| 1508 | } |
| 1509 | return false; |
| 1510 | } |
| 1511 | |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1512 | /// \brief Callback from DAG postProcessing to create cluster edges to encourage |
| 1513 | /// fused operations. |
Krzysztof Parzyszek | 5c61d11 | 2016-03-05 15:45:23 +0000 | [diff] [blame] | 1514 | void MacroFusion::apply(ScheduleDAGInstrs *DAGInstrs) { |
| 1515 | ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs); |
| 1516 | |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1517 | // For now, assume targets can only fuse with the branch. |
Matthias Braun | 2bd6dd8 | 2015-07-20 22:34:44 +0000 | [diff] [blame] | 1518 | SUnit &ExitSU = DAG->ExitSU; |
| 1519 | MachineInstr *Branch = ExitSU.getInstr(); |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1520 | if (!Branch) |
| 1521 | return; |
| 1522 | |
Matthias Braun | 2bd6dd8 | 2015-07-20 22:34:44 +0000 | [diff] [blame] | 1523 | for (SUnit &SU : DAG->SUnits) { |
| 1524 | // SUnits with successors can't be schedule in front of the ExitSU. |
| 1525 | if (!SU.Succs.empty()) |
| 1526 | continue; |
| 1527 | // We only care if the node writes to a register that the branch reads. |
| 1528 | MachineInstr *Pred = SU.getInstr(); |
| 1529 | if (!HasDataDep(TRI, *Branch, *Pred)) |
| 1530 | continue; |
| 1531 | |
| 1532 | if (!TII.shouldScheduleAdjacent(Pred, Branch)) |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1533 | continue; |
| 1534 | |
| 1535 | // Create a single weak edge from SU to ExitSU. The only effect is to cause |
| 1536 | // bottom-up scheduling to heavily prioritize the clustered SU. There is no |
| 1537 | // need to copy predecessor edges from ExitSU to SU, since top-down |
| 1538 | // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling |
| 1539 | // of SU, we could create an artificial edge from the deepest root, but it |
| 1540 | // hasn't been needed yet. |
Matthias Braun | 2bd6dd8 | 2015-07-20 22:34:44 +0000 | [diff] [blame] | 1541 | bool Success = DAG->addEdge(&ExitSU, SDep(&SU, SDep::Cluster)); |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1542 | (void)Success; |
| 1543 | assert(Success && "No DAG nodes should be reachable from ExitSU"); |
| 1544 | |
Matthias Braun | 2bd6dd8 | 2015-07-20 22:34:44 +0000 | [diff] [blame] | 1545 | DEBUG(dbgs() << "Macro Fuse SU(" << SU.NodeNum << ")\n"); |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 1546 | break; |
| 1547 | } |
| 1548 | } |
| 1549 | |
| 1550 | //===----------------------------------------------------------------------===// |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1551 | // CopyConstrain - DAG post-processing to encourage copy elimination. |
| 1552 | //===----------------------------------------------------------------------===// |
| 1553 | |
| 1554 | namespace { |
| 1555 | /// \brief Post-process the DAG to create weak edges from all uses of a copy to |
| 1556 | /// the one use that defines the copy's source vreg, most likely an induction |
| 1557 | /// variable increment. |
| 1558 | class CopyConstrain : public ScheduleDAGMutation { |
| 1559 | // Transient state. |
| 1560 | SlotIndex RegionBeginIdx; |
Andrew Trick | 2e87517 | 2013-04-24 23:19:56 +0000 | [diff] [blame] | 1561 | // RegionEndIdx is the slot index of the last non-debug instruction in the |
| 1562 | // scheduling region. So we may have RegionBeginIdx == RegionEndIdx. |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1563 | SlotIndex RegionEndIdx; |
| 1564 | public: |
| 1565 | CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {} |
| 1566 | |
Krzysztof Parzyszek | 5c61d11 | 2016-03-05 15:45:23 +0000 | [diff] [blame] | 1567 | void apply(ScheduleDAGInstrs *DAGInstrs) override; |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1568 | |
| 1569 | protected: |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1570 | void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG); |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1571 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 1572 | } // anonymous |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1573 | |
| 1574 | /// constrainLocalCopy handles two possibilities: |
| 1575 | /// 1) Local src: |
| 1576 | /// I0: = dst |
| 1577 | /// I1: src = ... |
| 1578 | /// I2: = dst |
| 1579 | /// I3: dst = src (copy) |
| 1580 | /// (create pred->succ edges I0->I1, I2->I1) |
| 1581 | /// |
| 1582 | /// 2) Local copy: |
| 1583 | /// I0: dst = src (copy) |
| 1584 | /// I1: = dst |
| 1585 | /// I2: src = ... |
| 1586 | /// I3: = dst |
| 1587 | /// (create pred->succ edges I1->I2, I3->I2) |
| 1588 | /// |
| 1589 | /// Although the MachineScheduler is currently constrained to single blocks, |
| 1590 | /// this algorithm should handle extended blocks. An EBB is a set of |
| 1591 | /// contiguously numbered blocks such that the previous block in the EBB is |
| 1592 | /// always the single predecessor. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1593 | void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG) { |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1594 | LiveIntervals *LIS = DAG->getLIS(); |
| 1595 | MachineInstr *Copy = CopySU->getInstr(); |
| 1596 | |
| 1597 | // Check for pure vreg copies. |
Matthias Braun | 7511abd | 2016-04-04 21:23:46 +0000 | [diff] [blame] | 1598 | const MachineOperand &SrcOp = Copy->getOperand(1); |
| 1599 | unsigned SrcReg = SrcOp.getReg(); |
| 1600 | if (!TargetRegisterInfo::isVirtualRegister(SrcReg) || !SrcOp.readsReg()) |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1601 | return; |
| 1602 | |
Matthias Braun | 7511abd | 2016-04-04 21:23:46 +0000 | [diff] [blame] | 1603 | const MachineOperand &DstOp = Copy->getOperand(0); |
| 1604 | unsigned DstReg = DstOp.getReg(); |
| 1605 | if (!TargetRegisterInfo::isVirtualRegister(DstReg) || DstOp.isDead()) |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1606 | return; |
| 1607 | |
| 1608 | // Check if either the dest or source is local. If it's live across a back |
| 1609 | // edge, it's not local. Note that if both vregs are live across the back |
| 1610 | // edge, we cannot successfully contrain the copy without cyclic scheduling. |
Michael Kuperstein | 54c61ed | 2015-01-19 07:30:47 +0000 | [diff] [blame] | 1611 | // If both the copy's source and dest are local live intervals, then we |
| 1612 | // should treat the dest as the global for the purpose of adding |
| 1613 | // constraints. This adds edges from source's other uses to the copy. |
| 1614 | unsigned LocalReg = SrcReg; |
| 1615 | unsigned GlobalReg = DstReg; |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1616 | LiveInterval *LocalLI = &LIS->getInterval(LocalReg); |
| 1617 | if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) { |
Michael Kuperstein | 54c61ed | 2015-01-19 07:30:47 +0000 | [diff] [blame] | 1618 | LocalReg = DstReg; |
| 1619 | GlobalReg = SrcReg; |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1620 | LocalLI = &LIS->getInterval(LocalReg); |
| 1621 | if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) |
| 1622 | return; |
| 1623 | } |
| 1624 | LiveInterval *GlobalLI = &LIS->getInterval(GlobalReg); |
| 1625 | |
| 1626 | // Find the global segment after the start of the local LI. |
| 1627 | LiveInterval::iterator GlobalSegment = GlobalLI->find(LocalLI->beginIndex()); |
| 1628 | // If GlobalLI does not overlap LocalLI->start, then a copy directly feeds a |
| 1629 | // local live range. We could create edges from other global uses to the local |
| 1630 | // start, but the coalescer should have already eliminated these cases, so |
| 1631 | // don't bother dealing with it. |
| 1632 | if (GlobalSegment == GlobalLI->end()) |
| 1633 | return; |
| 1634 | |
| 1635 | // If GlobalSegment is killed at the LocalLI->start, the call to find() |
| 1636 | // returned the next global segment. But if GlobalSegment overlaps with |
| 1637 | // LocalLI->start, then advance to the next segement. If a hole in GlobalLI |
| 1638 | // exists in LocalLI's vicinity, GlobalSegment will be the end of the hole. |
| 1639 | if (GlobalSegment->contains(LocalLI->beginIndex())) |
| 1640 | ++GlobalSegment; |
| 1641 | |
| 1642 | if (GlobalSegment == GlobalLI->end()) |
| 1643 | return; |
| 1644 | |
| 1645 | // Check if GlobalLI contains a hole in the vicinity of LocalLI. |
| 1646 | if (GlobalSegment != GlobalLI->begin()) { |
| 1647 | // Two address defs have no hole. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1648 | if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->end, |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1649 | GlobalSegment->start)) { |
| 1650 | return; |
| 1651 | } |
Andrew Trick | d976177 | 2013-07-30 19:59:08 +0000 | [diff] [blame] | 1652 | // If the prior global segment may be defined by the same two-address |
| 1653 | // instruction that also defines LocalLI, then can't make a hole here. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1654 | if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->start, |
Andrew Trick | d976177 | 2013-07-30 19:59:08 +0000 | [diff] [blame] | 1655 | LocalLI->beginIndex())) { |
| 1656 | return; |
| 1657 | } |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1658 | // If GlobalLI has a prior segment, it must be live into the EBB. Otherwise |
| 1659 | // it would be a disconnected component in the live range. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1660 | assert(std::prev(GlobalSegment)->start < LocalLI->beginIndex() && |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1661 | "Disconnected LRG within the scheduling region."); |
| 1662 | } |
| 1663 | MachineInstr *GlobalDef = LIS->getInstructionFromIndex(GlobalSegment->start); |
| 1664 | if (!GlobalDef) |
| 1665 | return; |
| 1666 | |
| 1667 | SUnit *GlobalSU = DAG->getSUnit(GlobalDef); |
| 1668 | if (!GlobalSU) |
| 1669 | return; |
| 1670 | |
| 1671 | // GlobalDef is the bottom of the GlobalLI hole. Open the hole by |
| 1672 | // constraining the uses of the last local def to precede GlobalDef. |
| 1673 | SmallVector<SUnit*,8> LocalUses; |
| 1674 | const VNInfo *LastLocalVN = LocalLI->getVNInfoBefore(LocalLI->endIndex()); |
| 1675 | MachineInstr *LastLocalDef = LIS->getInstructionFromIndex(LastLocalVN->def); |
| 1676 | SUnit *LastLocalSU = DAG->getSUnit(LastLocalDef); |
| 1677 | for (SUnit::const_succ_iterator |
| 1678 | I = LastLocalSU->Succs.begin(), E = LastLocalSU->Succs.end(); |
| 1679 | I != E; ++I) { |
| 1680 | if (I->getKind() != SDep::Data || I->getReg() != LocalReg) |
| 1681 | continue; |
| 1682 | if (I->getSUnit() == GlobalSU) |
| 1683 | continue; |
| 1684 | if (!DAG->canAddEdge(GlobalSU, I->getSUnit())) |
| 1685 | return; |
| 1686 | LocalUses.push_back(I->getSUnit()); |
| 1687 | } |
| 1688 | // Open the top of the GlobalLI hole by constraining any earlier global uses |
| 1689 | // to precede the start of LocalLI. |
| 1690 | SmallVector<SUnit*,8> GlobalUses; |
| 1691 | MachineInstr *FirstLocalDef = |
| 1692 | LIS->getInstructionFromIndex(LocalLI->beginIndex()); |
| 1693 | SUnit *FirstLocalSU = DAG->getSUnit(FirstLocalDef); |
| 1694 | for (SUnit::const_pred_iterator |
| 1695 | I = GlobalSU->Preds.begin(), E = GlobalSU->Preds.end(); I != E; ++I) { |
| 1696 | if (I->getKind() != SDep::Anti || I->getReg() != GlobalReg) |
| 1697 | continue; |
| 1698 | if (I->getSUnit() == FirstLocalSU) |
| 1699 | continue; |
| 1700 | if (!DAG->canAddEdge(FirstLocalSU, I->getSUnit())) |
| 1701 | return; |
| 1702 | GlobalUses.push_back(I->getSUnit()); |
| 1703 | } |
| 1704 | DEBUG(dbgs() << "Constraining copy SU(" << CopySU->NodeNum << ")\n"); |
| 1705 | // Add the weak edges. |
| 1706 | for (SmallVectorImpl<SUnit*>::const_iterator |
| 1707 | I = LocalUses.begin(), E = LocalUses.end(); I != E; ++I) { |
| 1708 | DEBUG(dbgs() << " Local use SU(" << (*I)->NodeNum << ") -> SU(" |
| 1709 | << GlobalSU->NodeNum << ")\n"); |
| 1710 | DAG->addEdge(GlobalSU, SDep(*I, SDep::Weak)); |
| 1711 | } |
| 1712 | for (SmallVectorImpl<SUnit*>::const_iterator |
| 1713 | I = GlobalUses.begin(), E = GlobalUses.end(); I != E; ++I) { |
| 1714 | DEBUG(dbgs() << " Global use SU(" << (*I)->NodeNum << ") -> SU(" |
| 1715 | << FirstLocalSU->NodeNum << ")\n"); |
| 1716 | DAG->addEdge(FirstLocalSU, SDep(*I, SDep::Weak)); |
| 1717 | } |
| 1718 | } |
| 1719 | |
| 1720 | /// \brief Callback from DAG postProcessing to create weak edges to encourage |
| 1721 | /// copy elimination. |
Krzysztof Parzyszek | 5c61d11 | 2016-03-05 15:45:23 +0000 | [diff] [blame] | 1722 | void CopyConstrain::apply(ScheduleDAGInstrs *DAGInstrs) { |
| 1723 | ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs); |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1724 | assert(DAG->hasVRegLiveness() && "Expect VRegs with LiveIntervals"); |
| 1725 | |
Andrew Trick | 2e87517 | 2013-04-24 23:19:56 +0000 | [diff] [blame] | 1726 | MachineBasicBlock::iterator FirstPos = nextIfDebug(DAG->begin(), DAG->end()); |
| 1727 | if (FirstPos == DAG->end()) |
| 1728 | return; |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1729 | RegionBeginIdx = DAG->getLIS()->getInstructionIndex(*FirstPos); |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1730 | RegionEndIdx = DAG->getLIS()->getInstructionIndex( |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1731 | *priorNonDebug(DAG->end(), DAG->begin())); |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1732 | |
| 1733 | for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) { |
| 1734 | SUnit *SU = &DAG->SUnits[Idx]; |
| 1735 | if (!SU->getInstr()->isCopy()) |
| 1736 | continue; |
| 1737 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 1738 | constrainLocalCopy(SU, static_cast<ScheduleDAGMILive*>(DAG)); |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 1739 | } |
| 1740 | } |
| 1741 | |
| 1742 | //===----------------------------------------------------------------------===// |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1743 | // MachineSchedStrategy helpers used by GenericScheduler, GenericPostScheduler |
| 1744 | // and possibly other custom schedulers. |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 1745 | //===----------------------------------------------------------------------===// |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 1746 | |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 1747 | static const unsigned InvalidCycle = ~0U; |
| 1748 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1749 | SchedBoundary::~SchedBoundary() { delete HazardRec; } |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1750 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1751 | void SchedBoundary::reset() { |
| 1752 | // A new HazardRec is created for each DAG and owned by SchedBoundary. |
| 1753 | // Destroying and reconstructing it is very expensive though. So keep |
| 1754 | // invalid, placeholder HazardRecs. |
| 1755 | if (HazardRec && HazardRec->isEnabled()) { |
| 1756 | delete HazardRec; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1757 | HazardRec = nullptr; |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1758 | } |
| 1759 | Available.clear(); |
| 1760 | Pending.clear(); |
| 1761 | CheckPending = false; |
| 1762 | NextSUs.clear(); |
| 1763 | CurrCycle = 0; |
| 1764 | CurrMOps = 0; |
| 1765 | MinReadyCycle = UINT_MAX; |
| 1766 | ExpectedLatency = 0; |
| 1767 | DependentLatency = 0; |
| 1768 | RetiredMOps = 0; |
| 1769 | MaxExecutedResCount = 0; |
| 1770 | ZoneCritResIdx = 0; |
| 1771 | IsResourceLimited = false; |
| 1772 | ReservedCycles.clear(); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1773 | #ifndef NDEBUG |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 1774 | // Track the maximum number of stall cycles that could arise either from the |
| 1775 | // latency of a DAG edge or the number of cycles that a processor resource is |
| 1776 | // reserved (SchedBoundary::ReservedCycles). |
Andrew Trick | 7f1ebbe | 2014-06-07 01:48:43 +0000 | [diff] [blame] | 1777 | MaxObservedStall = 0; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1778 | #endif |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1779 | // Reserve a zero-count for invalid CritResIdx. |
| 1780 | ExecutedResCounts.resize(1); |
| 1781 | assert(!ExecutedResCounts[0] && "nonzero count for bad resource"); |
| 1782 | } |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1783 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1784 | void SchedRemainder:: |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1785 | init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) { |
| 1786 | reset(); |
| 1787 | if (!SchedModel->hasInstrSchedModel()) |
| 1788 | return; |
| 1789 | RemainingCounts.resize(SchedModel->getNumProcResourceKinds()); |
| 1790 | for (std::vector<SUnit>::iterator |
| 1791 | I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) { |
| 1792 | const MCSchedClassDesc *SC = DAG->getSchedClass(&*I); |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1793 | RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC) |
| 1794 | * SchedModel->getMicroOpFactor(); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1795 | for (TargetSchedModel::ProcResIter |
| 1796 | PI = SchedModel->getWriteProcResBegin(SC), |
| 1797 | PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) { |
| 1798 | unsigned PIdx = PI->ProcResourceIdx; |
| 1799 | unsigned Factor = SchedModel->getResourceFactor(PIdx); |
| 1800 | RemainingCounts[PIdx] += (Factor * PI->Cycles); |
| 1801 | } |
| 1802 | } |
| 1803 | } |
| 1804 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1805 | void SchedBoundary:: |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1806 | init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) { |
| 1807 | reset(); |
| 1808 | DAG = dag; |
| 1809 | SchedModel = smodel; |
| 1810 | Rem = rem; |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 1811 | if (SchedModel->hasInstrSchedModel()) { |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1812 | ExecutedResCounts.resize(SchedModel->getNumProcResourceKinds()); |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 1813 | ReservedCycles.resize(SchedModel->getNumProcResourceKinds(), InvalidCycle); |
| 1814 | } |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1815 | } |
| 1816 | |
Andrew Trick | 880e573 | 2013-12-05 17:55:58 +0000 | [diff] [blame] | 1817 | /// Compute the stall cycles based on this SUnit's ready time. Heuristics treat |
| 1818 | /// these "soft stalls" differently than the hard stall cycles based on CPU |
| 1819 | /// resources and computed by checkHazard(). A fully in-order model |
| 1820 | /// (MicroOpBufferSize==0) will not make use of this since instructions are not |
| 1821 | /// available for scheduling until they are ready. However, a weaker in-order |
| 1822 | /// model may use this for heuristics. For example, if a processor has in-order |
| 1823 | /// behavior when reading certain resources, this may come into play. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1824 | unsigned SchedBoundary::getLatencyStallCycles(SUnit *SU) { |
Andrew Trick | 880e573 | 2013-12-05 17:55:58 +0000 | [diff] [blame] | 1825 | if (!SU->isUnbuffered) |
| 1826 | return 0; |
| 1827 | |
| 1828 | unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle); |
| 1829 | if (ReadyCycle > CurrCycle) |
| 1830 | return ReadyCycle - CurrCycle; |
| 1831 | return 0; |
| 1832 | } |
| 1833 | |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 1834 | /// Compute the next cycle at which the given processor resource can be |
| 1835 | /// scheduled. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1836 | unsigned SchedBoundary:: |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 1837 | getNextResourceCycle(unsigned PIdx, unsigned Cycles) { |
| 1838 | unsigned NextUnreserved = ReservedCycles[PIdx]; |
| 1839 | // If this resource has never been used, always return cycle zero. |
| 1840 | if (NextUnreserved == InvalidCycle) |
| 1841 | return 0; |
| 1842 | // For bottom-up scheduling add the cycles needed for the current operation. |
| 1843 | if (!isTop()) |
| 1844 | NextUnreserved += Cycles; |
| 1845 | return NextUnreserved; |
| 1846 | } |
| 1847 | |
Andrew Trick | 8c9e672 | 2012-06-29 03:23:24 +0000 | [diff] [blame] | 1848 | /// Does this SU have a hazard within the current instruction group. |
| 1849 | /// |
| 1850 | /// The scheduler supports two modes of hazard recognition. The first is the |
| 1851 | /// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that |
| 1852 | /// supports highly complicated in-order reservation tables |
| 1853 | /// (ScoreboardHazardRecognizer) and arbitraty target-specific logic. |
| 1854 | /// |
| 1855 | /// The second is a streamlined mechanism that checks for hazards based on |
| 1856 | /// simple counters that the scheduler itself maintains. It explicitly checks |
| 1857 | /// for instruction dispatch limitations, including the number of micro-ops that |
| 1858 | /// can dispatch per cycle. |
| 1859 | /// |
| 1860 | /// TODO: Also check whether the SU must start a new group. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1861 | bool SchedBoundary::checkHazard(SUnit *SU) { |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 1862 | if (HazardRec->isEnabled() |
| 1863 | && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard) { |
| 1864 | return true; |
| 1865 | } |
Andrew Trick | dd79f0f | 2012-10-10 05:43:09 +0000 | [diff] [blame] | 1866 | unsigned uops = SchedModel->getNumMicroOps(SU->getInstr()); |
Andrew Trick | e2ff575 | 2013-06-15 04:49:49 +0000 | [diff] [blame] | 1867 | if ((CurrMOps > 0) && (CurrMOps + uops > SchedModel->getIssueWidth())) { |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1868 | DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops=" |
| 1869 | << SchedModel->getNumMicroOps(SU->getInstr()) << '\n'); |
Andrew Trick | 8c9e672 | 2012-06-29 03:23:24 +0000 | [diff] [blame] | 1870 | return true; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1871 | } |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 1872 | if (SchedModel->hasInstrSchedModel() && SU->hasReservedResource) { |
| 1873 | const MCSchedClassDesc *SC = DAG->getSchedClass(SU); |
| 1874 | for (TargetSchedModel::ProcResIter |
| 1875 | PI = SchedModel->getWriteProcResBegin(SC), |
| 1876 | PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) { |
Andrew Trick | 5632722 | 2014-06-27 04:57:05 +0000 | [diff] [blame] | 1877 | unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles); |
| 1878 | if (NRCycle > CurrCycle) { |
Andrew Trick | 040c0da | 2014-06-27 05:09:36 +0000 | [diff] [blame] | 1879 | #ifndef NDEBUG |
Chad Rosier | aba845e | 2014-07-02 16:46:08 +0000 | [diff] [blame] | 1880 | MaxObservedStall = std::max(PI->Cycles, MaxObservedStall); |
Andrew Trick | 040c0da | 2014-06-27 05:09:36 +0000 | [diff] [blame] | 1881 | #endif |
Andrew Trick | 5632722 | 2014-06-27 04:57:05 +0000 | [diff] [blame] | 1882 | DEBUG(dbgs() << " SU(" << SU->NodeNum << ") " |
| 1883 | << SchedModel->getResourceName(PI->ProcResourceIdx) |
| 1884 | << "=" << NRCycle << "c\n"); |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 1885 | return true; |
Andrew Trick | 5632722 | 2014-06-27 04:57:05 +0000 | [diff] [blame] | 1886 | } |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 1887 | } |
| 1888 | } |
Andrew Trick | 8c9e672 | 2012-06-29 03:23:24 +0000 | [diff] [blame] | 1889 | return false; |
| 1890 | } |
| 1891 | |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1892 | // Find the unscheduled node in ReadySUs with the highest latency. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1893 | unsigned SchedBoundary:: |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1894 | findMaxLatency(ArrayRef<SUnit*> ReadySUs) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1895 | SUnit *LateSU = nullptr; |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1896 | unsigned RemLatency = 0; |
| 1897 | for (ArrayRef<SUnit*>::iterator I = ReadySUs.begin(), E = ReadySUs.end(); |
Andrew Trick | d6d5ad3 | 2012-12-18 20:52:56 +0000 | [diff] [blame] | 1898 | I != E; ++I) { |
| 1899 | unsigned L = getUnscheduledLatency(*I); |
Andrew Trick | f5b8ef2 | 2013-06-15 04:49:44 +0000 | [diff] [blame] | 1900 | if (L > RemLatency) { |
Andrew Trick | d6d5ad3 | 2012-12-18 20:52:56 +0000 | [diff] [blame] | 1901 | RemLatency = L; |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1902 | LateSU = *I; |
Andrew Trick | f5b8ef2 | 2013-06-15 04:49:44 +0000 | [diff] [blame] | 1903 | } |
Andrew Trick | d6d5ad3 | 2012-12-18 20:52:56 +0000 | [diff] [blame] | 1904 | } |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1905 | if (LateSU) { |
| 1906 | DEBUG(dbgs() << Available.getName() << " RemLatency SU(" |
| 1907 | << LateSU->NodeNum << ") " << RemLatency << "c\n"); |
Andrew Trick | d6d5ad3 | 2012-12-18 20:52:56 +0000 | [diff] [blame] | 1908 | } |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1909 | return RemLatency; |
| 1910 | } |
Andrew Trick | f5b8ef2 | 2013-06-15 04:49:44 +0000 | [diff] [blame] | 1911 | |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1912 | // Count resources in this zone and the remaining unscheduled |
| 1913 | // instruction. Return the max count, scaled. Set OtherCritIdx to the critical |
| 1914 | // resource index, or zero if the zone is issue limited. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1915 | unsigned SchedBoundary:: |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1916 | getOtherResourceCount(unsigned &OtherCritIdx) { |
Alexey Samsonov | 64c391d | 2013-07-19 08:55:18 +0000 | [diff] [blame] | 1917 | OtherCritIdx = 0; |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1918 | if (!SchedModel->hasInstrSchedModel()) |
| 1919 | return 0; |
| 1920 | |
| 1921 | unsigned OtherCritCount = Rem->RemIssueCount |
| 1922 | + (RetiredMOps * SchedModel->getMicroOpFactor()); |
| 1923 | DEBUG(dbgs() << " " << Available.getName() << " + Remain MOps: " |
| 1924 | << OtherCritCount / SchedModel->getMicroOpFactor() << '\n'); |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1925 | for (unsigned PIdx = 1, PEnd = SchedModel->getNumProcResourceKinds(); |
| 1926 | PIdx != PEnd; ++PIdx) { |
| 1927 | unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx]; |
| 1928 | if (OtherCount > OtherCritCount) { |
| 1929 | OtherCritCount = OtherCount; |
| 1930 | OtherCritIdx = PIdx; |
| 1931 | } |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1932 | } |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1933 | if (OtherCritIdx) { |
| 1934 | DEBUG(dbgs() << " " << Available.getName() << " + Remain CritRes: " |
| 1935 | << OtherCritCount / SchedModel->getResourceFactor(OtherCritIdx) |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1936 | << " " << SchedModel->getResourceName(OtherCritIdx) << "\n"); |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1937 | } |
| 1938 | return OtherCritCount; |
| 1939 | } |
| 1940 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1941 | void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle) { |
Andrew Trick | 7f1ebbe | 2014-06-07 01:48:43 +0000 | [diff] [blame] | 1942 | assert(SU->getInstr() && "Scheduled SUnit must have instr"); |
| 1943 | |
| 1944 | #ifndef NDEBUG |
Andrew Trick | 491e34a | 2014-06-12 22:36:28 +0000 | [diff] [blame] | 1945 | // ReadyCycle was been bumped up to the CurrCycle when this node was |
| 1946 | // scheduled, but CurrCycle may have been eagerly advanced immediately after |
| 1947 | // scheduling, so may now be greater than ReadyCycle. |
| 1948 | if (ReadyCycle > CurrCycle) |
| 1949 | MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall); |
Andrew Trick | 7f1ebbe | 2014-06-07 01:48:43 +0000 | [diff] [blame] | 1950 | #endif |
| 1951 | |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 1952 | if (ReadyCycle < MinReadyCycle) |
| 1953 | MinReadyCycle = ReadyCycle; |
| 1954 | |
| 1955 | // Check for interlocks first. For the purpose of other heuristics, an |
| 1956 | // instruction that cannot issue appears as if it's not in the ReadyQueue. |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1957 | bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0; |
Matthias Braun | 6493bc2 | 2016-04-22 19:09:17 +0000 | [diff] [blame] | 1958 | if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU) || |
| 1959 | Available.size() >= ReadyListLimit) |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 1960 | Pending.push(SU); |
| 1961 | else |
| 1962 | Available.push(SU); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1963 | |
| 1964 | // Record this node as an immediate dependent of the scheduled node. |
| 1965 | NextSUs.insert(SU); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 1966 | } |
| 1967 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1968 | void SchedBoundary::releaseTopNode(SUnit *SU) { |
| 1969 | if (SU->isScheduled) |
| 1970 | return; |
| 1971 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1972 | releaseNode(SU, SU->TopReadyCycle); |
| 1973 | } |
| 1974 | |
| 1975 | void SchedBoundary::releaseBottomNode(SUnit *SU) { |
| 1976 | if (SU->isScheduled) |
| 1977 | return; |
| 1978 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1979 | releaseNode(SU, SU->BotReadyCycle); |
| 1980 | } |
| 1981 | |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 1982 | /// Move the boundary of scheduled code by one cycle. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 1983 | void SchedBoundary::bumpCycle(unsigned NextCycle) { |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1984 | if (SchedModel->getMicroOpBufferSize() == 0) { |
| 1985 | assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized"); |
| 1986 | if (MinReadyCycle > NextCycle) |
| 1987 | NextCycle = MinReadyCycle; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 1988 | } |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 1989 | // Update the current micro-ops, which will issue in the next cycle. |
| 1990 | unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle); |
| 1991 | CurrMOps = (CurrMOps <= DecMOps) ? 0 : CurrMOps - DecMOps; |
| 1992 | |
| 1993 | // Decrement DependentLatency based on the next cycle. |
Andrew Trick | f5b8ef2 | 2013-06-15 04:49:44 +0000 | [diff] [blame] | 1994 | if ((NextCycle - CurrCycle) > DependentLatency) |
| 1995 | DependentLatency = 0; |
| 1996 | else |
| 1997 | DependentLatency -= (NextCycle - CurrCycle); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 1998 | |
| 1999 | if (!HazardRec->isEnabled()) { |
Andrew Trick | 4544606 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 2000 | // Bypass HazardRec virtual calls. |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2001 | CurrCycle = NextCycle; |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 2002 | } else { |
Andrew Trick | 4544606 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 2003 | // Bypass getHazardType calls in case of long latency. |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2004 | for (; CurrCycle != NextCycle; ++CurrCycle) { |
| 2005 | if (isTop()) |
| 2006 | HazardRec->AdvanceCycle(); |
| 2007 | else |
| 2008 | HazardRec->RecedeCycle(); |
| 2009 | } |
| 2010 | } |
| 2011 | CheckPending = true; |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2012 | unsigned LFactor = SchedModel->getLatencyFactor(); |
| 2013 | IsResourceLimited = |
| 2014 | (int)(getCriticalCount() - (getScheduledLatency() * LFactor)) |
| 2015 | > (int)LFactor; |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2016 | |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2017 | DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() << '\n'); |
| 2018 | } |
| 2019 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2020 | void SchedBoundary::incExecutedResources(unsigned PIdx, unsigned Count) { |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2021 | ExecutedResCounts[PIdx] += Count; |
| 2022 | if (ExecutedResCounts[PIdx] > MaxExecutedResCount) |
| 2023 | MaxExecutedResCount = ExecutedResCounts[PIdx]; |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2024 | } |
| 2025 | |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2026 | /// Add the given processor resource to this scheduled zone. |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2027 | /// |
| 2028 | /// \param Cycles indicates the number of consecutive (non-pipelined) cycles |
| 2029 | /// during which this resource is consumed. |
| 2030 | /// |
| 2031 | /// \return the next cycle at which the instruction may execute without |
| 2032 | /// oversubscribing resources. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2033 | unsigned SchedBoundary:: |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2034 | countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) { |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2035 | unsigned Factor = SchedModel->getResourceFactor(PIdx); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2036 | unsigned Count = Factor * Cycles; |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2037 | DEBUG(dbgs() << " " << SchedModel->getResourceName(PIdx) |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2038 | << " +" << Cycles << "x" << Factor << "u\n"); |
| 2039 | |
| 2040 | // Update Executed resources counts. |
| 2041 | incExecutedResources(PIdx, Count); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2042 | assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted"); |
| 2043 | Rem->RemainingCounts[PIdx] -= Count; |
| 2044 | |
Andrew Trick | b13ef17 | 2013-07-19 00:20:07 +0000 | [diff] [blame] | 2045 | // Check if this resource exceeds the current critical resource. If so, it |
| 2046 | // becomes the critical resource. |
| 2047 | if (ZoneCritResIdx != PIdx && (getResourceCount(PIdx) > getCriticalCount())) { |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2048 | ZoneCritResIdx = PIdx; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2049 | DEBUG(dbgs() << " *** Critical resource " |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2050 | << SchedModel->getResourceName(PIdx) << ": " |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2051 | << getResourceCount(PIdx) / SchedModel->getLatencyFactor() << "c\n"); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2052 | } |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2053 | // For reserved resources, record the highest cycle using the resource. |
| 2054 | unsigned NextAvailable = getNextResourceCycle(PIdx, Cycles); |
| 2055 | if (NextAvailable > CurrCycle) { |
| 2056 | DEBUG(dbgs() << " Resource conflict: " |
| 2057 | << SchedModel->getProcResource(PIdx)->Name << " reserved until @" |
| 2058 | << NextAvailable << "\n"); |
| 2059 | } |
| 2060 | return NextAvailable; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2061 | } |
| 2062 | |
Andrew Trick | 4544606 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 2063 | /// Move the boundary of scheduled code by one SUnit. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2064 | void SchedBoundary::bumpNode(SUnit *SU) { |
Andrew Trick | 4544606 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 2065 | // Update the reservation table. |
| 2066 | if (HazardRec->isEnabled()) { |
| 2067 | if (!isTop() && SU->isCall) { |
| 2068 | // Calls are scheduled with their preceding instructions. For bottom-up |
| 2069 | // scheduling, clear the pipeline state before emitting. |
| 2070 | HazardRec->Reset(); |
| 2071 | } |
| 2072 | HazardRec->EmitInstruction(SU); |
| 2073 | } |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2074 | // checkHazard should prevent scheduling multiple instructions per cycle that |
| 2075 | // exceed the issue width. |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2076 | const MCSchedClassDesc *SC = DAG->getSchedClass(SU); |
| 2077 | unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr()); |
Daniel Jasper | 0d92abd | 2013-12-06 08:58:22 +0000 | [diff] [blame] | 2078 | assert( |
| 2079 | (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) && |
Andrew Trick | f7760a2 | 2013-12-06 17:19:20 +0000 | [diff] [blame] | 2080 | "Cannot schedule this instruction's MicroOps in the current cycle."); |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2081 | |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2082 | unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle); |
| 2083 | DEBUG(dbgs() << " Ready @" << ReadyCycle << "c\n"); |
| 2084 | |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2085 | unsigned NextCycle = CurrCycle; |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2086 | switch (SchedModel->getMicroOpBufferSize()) { |
| 2087 | case 0: |
| 2088 | assert(ReadyCycle <= CurrCycle && "Broken PendingQueue"); |
| 2089 | break; |
| 2090 | case 1: |
| 2091 | if (ReadyCycle > NextCycle) { |
| 2092 | NextCycle = ReadyCycle; |
| 2093 | DEBUG(dbgs() << " *** Stall until: " << ReadyCycle << "\n"); |
| 2094 | } |
| 2095 | break; |
| 2096 | default: |
| 2097 | // We don't currently model the OOO reorder buffer, so consider all |
Andrew Trick | 880e573 | 2013-12-05 17:55:58 +0000 | [diff] [blame] | 2098 | // scheduled MOps to be "retired". We do loosely model in-order resource |
| 2099 | // latency. If this instruction uses an in-order resource, account for any |
| 2100 | // likely stall cycles. |
| 2101 | if (SU->isUnbuffered && ReadyCycle > NextCycle) |
| 2102 | NextCycle = ReadyCycle; |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2103 | break; |
| 2104 | } |
| 2105 | RetiredMOps += IncMOps; |
| 2106 | |
| 2107 | // Update resource counts and critical resource. |
| 2108 | if (SchedModel->hasInstrSchedModel()) { |
| 2109 | unsigned DecRemIssue = IncMOps * SchedModel->getMicroOpFactor(); |
| 2110 | assert(Rem->RemIssueCount >= DecRemIssue && "MOps double counted"); |
| 2111 | Rem->RemIssueCount -= DecRemIssue; |
| 2112 | if (ZoneCritResIdx) { |
| 2113 | // Scale scheduled micro-ops for comparing with the critical resource. |
| 2114 | unsigned ScaledMOps = |
| 2115 | RetiredMOps * SchedModel->getMicroOpFactor(); |
| 2116 | |
| 2117 | // If scaled micro-ops are now more than the previous critical resource by |
| 2118 | // a full cycle, then micro-ops issue becomes critical. |
| 2119 | if ((int)(ScaledMOps - getResourceCount(ZoneCritResIdx)) |
| 2120 | >= (int)SchedModel->getLatencyFactor()) { |
| 2121 | ZoneCritResIdx = 0; |
| 2122 | DEBUG(dbgs() << " *** Critical resource NumMicroOps: " |
| 2123 | << ScaledMOps / SchedModel->getLatencyFactor() << "c\n"); |
| 2124 | } |
| 2125 | } |
| 2126 | for (TargetSchedModel::ProcResIter |
| 2127 | PI = SchedModel->getWriteProcResBegin(SC), |
| 2128 | PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) { |
| 2129 | unsigned RCycle = |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2130 | countResource(PI->ProcResourceIdx, PI->Cycles, NextCycle); |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2131 | if (RCycle > NextCycle) |
| 2132 | NextCycle = RCycle; |
| 2133 | } |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2134 | if (SU->hasReservedResource) { |
| 2135 | // For reserved resources, record the highest cycle using the resource. |
| 2136 | // For top-down scheduling, this is the cycle in which we schedule this |
| 2137 | // instruction plus the number of cycles the operations reserves the |
| 2138 | // resource. For bottom-up is it simply the instruction's cycle. |
| 2139 | for (TargetSchedModel::ProcResIter |
| 2140 | PI = SchedModel->getWriteProcResBegin(SC), |
| 2141 | PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) { |
| 2142 | unsigned PIdx = PI->ProcResourceIdx; |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2143 | if (SchedModel->getProcResource(PIdx)->BufferSize == 0) { |
Chad Rosier | aba845e | 2014-07-02 16:46:08 +0000 | [diff] [blame] | 2144 | if (isTop()) { |
| 2145 | ReservedCycles[PIdx] = |
| 2146 | std::max(getNextResourceCycle(PIdx, 0), NextCycle + PI->Cycles); |
| 2147 | } |
| 2148 | else |
| 2149 | ReservedCycles[PIdx] = NextCycle; |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2150 | } |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2151 | } |
| 2152 | } |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2153 | } |
| 2154 | // Update ExpectedLatency and DependentLatency. |
| 2155 | unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency; |
| 2156 | unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency; |
| 2157 | if (SU->getDepth() > TopLatency) { |
| 2158 | TopLatency = SU->getDepth(); |
| 2159 | DEBUG(dbgs() << " " << Available.getName() |
| 2160 | << " TopLatency SU(" << SU->NodeNum << ") " << TopLatency << "c\n"); |
| 2161 | } |
| 2162 | if (SU->getHeight() > BotLatency) { |
| 2163 | BotLatency = SU->getHeight(); |
| 2164 | DEBUG(dbgs() << " " << Available.getName() |
| 2165 | << " BotLatency SU(" << SU->NodeNum << ") " << BotLatency << "c\n"); |
| 2166 | } |
| 2167 | // If we stall for any reason, bump the cycle. |
| 2168 | if (NextCycle > CurrCycle) { |
| 2169 | bumpCycle(NextCycle); |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 2170 | } else { |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2171 | // After updating ZoneCritResIdx and ExpectedLatency, check if we're |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 2172 | // resource limited. If a stall occurred, bumpCycle does this. |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2173 | unsigned LFactor = SchedModel->getLatencyFactor(); |
| 2174 | IsResourceLimited = |
| 2175 | (int)(getCriticalCount() - (getScheduledLatency() * LFactor)) |
| 2176 | > (int)LFactor; |
| 2177 | } |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2178 | // Update CurrMOps after calling bumpCycle to handle stalls, since bumpCycle |
| 2179 | // resets CurrMOps. Loop to handle instructions with more MOps than issue in |
| 2180 | // one cycle. Since we commonly reach the max MOps here, opportunistically |
| 2181 | // bump the cycle to avoid uselessly checking everything in the readyQ. |
| 2182 | CurrMOps += IncMOps; |
| 2183 | while (CurrMOps >= SchedModel->getIssueWidth()) { |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2184 | DEBUG(dbgs() << " *** Max MOps " << CurrMOps |
| 2185 | << " at cycle " << CurrCycle << '\n'); |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2186 | bumpCycle(++NextCycle); |
Andrew Trick | 5a22df4 | 2013-12-05 17:56:02 +0000 | [diff] [blame] | 2187 | } |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2188 | DEBUG(dumpScheduledState()); |
Andrew Trick | 4544606 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 2189 | } |
| 2190 | |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2191 | /// Release pending ready nodes in to the available queue. This makes them |
| 2192 | /// visible to heuristics. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2193 | void SchedBoundary::releasePending() { |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2194 | // If the available queue is empty, it is safe to reset MinReadyCycle. |
| 2195 | if (Available.empty()) |
| 2196 | MinReadyCycle = UINT_MAX; |
| 2197 | |
| 2198 | // Check to see if any of the pending instructions are ready to issue. If |
| 2199 | // so, add them to the available queue. |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2200 | bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0; |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2201 | for (unsigned i = 0, e = Pending.size(); i != e; ++i) { |
| 2202 | SUnit *SU = *(Pending.begin()+i); |
Andrew Trick | 4544606 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 2203 | unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle; |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2204 | |
| 2205 | if (ReadyCycle < MinReadyCycle) |
| 2206 | MinReadyCycle = ReadyCycle; |
| 2207 | |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2208 | if (!IsBuffered && ReadyCycle > CurrCycle) |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2209 | continue; |
| 2210 | |
Andrew Trick | 8c9e672 | 2012-06-29 03:23:24 +0000 | [diff] [blame] | 2211 | if (checkHazard(SU)) |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2212 | continue; |
| 2213 | |
Matthias Braun | 6493bc2 | 2016-04-22 19:09:17 +0000 | [diff] [blame] | 2214 | if (Available.size() >= ReadyListLimit) |
| 2215 | break; |
| 2216 | |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2217 | Available.push(SU); |
| 2218 | Pending.remove(Pending.begin()+i); |
| 2219 | --i; --e; |
| 2220 | } |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2221 | DEBUG(if (!Pending.empty()) Pending.dump()); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2222 | CheckPending = false; |
| 2223 | } |
| 2224 | |
| 2225 | /// Remove SU from the ready set for this boundary. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2226 | void SchedBoundary::removeReady(SUnit *SU) { |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2227 | if (Available.isInQueue(SU)) |
| 2228 | Available.remove(Available.find(SU)); |
| 2229 | else { |
| 2230 | assert(Pending.isInQueue(SU) && "bad ready count"); |
| 2231 | Pending.remove(Pending.find(SU)); |
| 2232 | } |
| 2233 | } |
| 2234 | |
| 2235 | /// If this queue only has one ready candidate, return it. As a side effect, |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2236 | /// defer any nodes that now hit a hazard, and advance the cycle until at least |
| 2237 | /// one node is ready. If multiple instructions are ready, return NULL. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2238 | SUnit *SchedBoundary::pickOnlyChoice() { |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2239 | if (CheckPending) |
| 2240 | releasePending(); |
| 2241 | |
Andrew Trick | e2ff575 | 2013-06-15 04:49:49 +0000 | [diff] [blame] | 2242 | if (CurrMOps > 0) { |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2243 | // Defer any ready instrs that now have a hazard. |
| 2244 | for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) { |
| 2245 | if (checkHazard(*I)) { |
| 2246 | Pending.push(*I); |
| 2247 | I = Available.remove(I); |
| 2248 | continue; |
| 2249 | } |
| 2250 | ++I; |
| 2251 | } |
| 2252 | } |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2253 | for (unsigned i = 0; Available.empty(); ++i) { |
Chad Rosier | aba845e | 2014-07-02 16:46:08 +0000 | [diff] [blame] | 2254 | // FIXME: Re-enable assert once PR20057 is resolved. |
| 2255 | // assert(i <= (HazardRec->getMaxLookAhead() + MaxObservedStall) && |
| 2256 | // "permanent hazard"); |
| 2257 | (void)i; |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2258 | bumpCycle(CurrCycle + 1); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2259 | releasePending(); |
| 2260 | } |
Matthias Braun | d29d31e | 2016-06-23 21:27:38 +0000 | [diff] [blame^] | 2261 | |
| 2262 | DEBUG(Pending.dump()); |
| 2263 | DEBUG(Available.dump()); |
| 2264 | |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2265 | if (Available.size() == 1) |
| 2266 | return *Available.begin(); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2267 | return nullptr; |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2268 | } |
| 2269 | |
Andrew Trick | 8e8415f | 2013-06-15 05:46:47 +0000 | [diff] [blame] | 2270 | #ifndef NDEBUG |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2271 | // This is useful information to dump after bumpNode. |
| 2272 | // Note that the Queue contents are more useful before pickNodeFromQueue. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2273 | void SchedBoundary::dumpScheduledState() { |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2274 | unsigned ResFactor; |
| 2275 | unsigned ResCount; |
| 2276 | if (ZoneCritResIdx) { |
| 2277 | ResFactor = SchedModel->getResourceFactor(ZoneCritResIdx); |
| 2278 | ResCount = getResourceCount(ZoneCritResIdx); |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 2279 | } else { |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2280 | ResFactor = SchedModel->getMicroOpFactor(); |
| 2281 | ResCount = RetiredMOps * SchedModel->getMicroOpFactor(); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2282 | } |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2283 | unsigned LFactor = SchedModel->getLatencyFactor(); |
| 2284 | dbgs() << Available.getName() << " @" << CurrCycle << "c\n" |
| 2285 | << " Retired: " << RetiredMOps; |
| 2286 | dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c"; |
| 2287 | dbgs() << "\n Critical: " << ResCount / LFactor << "c, " |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2288 | << ResCount / ResFactor << " " |
| 2289 | << SchedModel->getResourceName(ZoneCritResIdx) |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2290 | << "\n ExpectedLatency: " << ExpectedLatency << "c\n" |
| 2291 | << (IsResourceLimited ? " - Resource" : " - Latency") |
| 2292 | << " limited.\n"; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2293 | } |
Andrew Trick | 8e8415f | 2013-06-15 05:46:47 +0000 | [diff] [blame] | 2294 | #endif |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2295 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2296 | //===----------------------------------------------------------------------===// |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2297 | // GenericScheduler - Generic implementation of MachineSchedStrategy. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2298 | //===----------------------------------------------------------------------===// |
| 2299 | |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2300 | void GenericSchedulerBase::SchedCandidate:: |
| 2301 | initResourceDelta(const ScheduleDAGMI *DAG, |
| 2302 | const TargetSchedModel *SchedModel) { |
| 2303 | if (!Policy.ReduceResIdx && !Policy.DemandResIdx) |
| 2304 | return; |
| 2305 | |
| 2306 | const MCSchedClassDesc *SC = DAG->getSchedClass(SU); |
| 2307 | for (TargetSchedModel::ProcResIter |
| 2308 | PI = SchedModel->getWriteProcResBegin(SC), |
| 2309 | PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) { |
| 2310 | if (PI->ProcResourceIdx == Policy.ReduceResIdx) |
| 2311 | ResDelta.CritResources += PI->Cycles; |
| 2312 | if (PI->ProcResourceIdx == Policy.DemandResIdx) |
| 2313 | ResDelta.DemandedResources += PI->Cycles; |
| 2314 | } |
| 2315 | } |
| 2316 | |
| 2317 | /// Set the CandPolicy given a scheduling zone given the current resources and |
| 2318 | /// latencies inside and outside the zone. |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 2319 | void GenericSchedulerBase::setPolicy(CandPolicy &Policy, bool IsPostRA, |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2320 | SchedBoundary &CurrZone, |
| 2321 | SchedBoundary *OtherZone) { |
Eric Christopher | 572e03a | 2015-06-19 01:53:21 +0000 | [diff] [blame] | 2322 | // Apply preemptive heuristics based on the total latency and resources |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2323 | // inside and outside this zone. Potential stalls should be considered before |
| 2324 | // following this policy. |
| 2325 | |
| 2326 | // Compute remaining latency. We need this both to determine whether the |
| 2327 | // overall schedule has become latency-limited and whether the instructions |
| 2328 | // outside this zone are resource or latency limited. |
| 2329 | // |
| 2330 | // The "dependent" latency is updated incrementally during scheduling as the |
| 2331 | // max height/depth of scheduled nodes minus the cycles since it was |
| 2332 | // scheduled: |
| 2333 | // DLat = max (N.depth - (CurrCycle - N.ReadyCycle) for N in Zone |
| 2334 | // |
| 2335 | // The "independent" latency is the max ready queue depth: |
| 2336 | // ILat = max N.depth for N in Available|Pending |
| 2337 | // |
| 2338 | // RemainingLatency is the greater of independent and dependent latency. |
| 2339 | unsigned RemLatency = CurrZone.getDependentLatency(); |
| 2340 | RemLatency = std::max(RemLatency, |
| 2341 | CurrZone.findMaxLatency(CurrZone.Available.elements())); |
| 2342 | RemLatency = std::max(RemLatency, |
| 2343 | CurrZone.findMaxLatency(CurrZone.Pending.elements())); |
| 2344 | |
| 2345 | // Compute the critical resource outside the zone. |
Andrew Trick | 7afe481 | 2013-12-28 22:25:57 +0000 | [diff] [blame] | 2346 | unsigned OtherCritIdx = 0; |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2347 | unsigned OtherCount = |
| 2348 | OtherZone ? OtherZone->getOtherResourceCount(OtherCritIdx) : 0; |
| 2349 | |
| 2350 | bool OtherResLimited = false; |
| 2351 | if (SchedModel->hasInstrSchedModel()) { |
| 2352 | unsigned LFactor = SchedModel->getLatencyFactor(); |
| 2353 | OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor; |
| 2354 | } |
| 2355 | // Schedule aggressively for latency in PostRA mode. We don't check for |
| 2356 | // acyclic latency during PostRA, and highly out-of-order processors will |
| 2357 | // skip PostRA scheduling. |
| 2358 | if (!OtherResLimited) { |
| 2359 | if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) { |
| 2360 | Policy.ReduceLatency |= true; |
| 2361 | DEBUG(dbgs() << " " << CurrZone.Available.getName() |
| 2362 | << " RemainingLatency " << RemLatency << " + " |
| 2363 | << CurrZone.getCurrCycle() << "c > CritPath " |
| 2364 | << Rem.CriticalPath << "\n"); |
| 2365 | } |
| 2366 | } |
| 2367 | // If the same resource is limiting inside and outside the zone, do nothing. |
| 2368 | if (CurrZone.getZoneCritResIdx() == OtherCritIdx) |
| 2369 | return; |
| 2370 | |
| 2371 | DEBUG( |
| 2372 | if (CurrZone.isResourceLimited()) { |
| 2373 | dbgs() << " " << CurrZone.Available.getName() << " ResourceLimited: " |
| 2374 | << SchedModel->getResourceName(CurrZone.getZoneCritResIdx()) |
| 2375 | << "\n"; |
| 2376 | } |
| 2377 | if (OtherResLimited) |
| 2378 | dbgs() << " RemainingLimit: " |
| 2379 | << SchedModel->getResourceName(OtherCritIdx) << "\n"; |
| 2380 | if (!CurrZone.isResourceLimited() && !OtherResLimited) |
| 2381 | dbgs() << " Latency limited both directions.\n"); |
| 2382 | |
| 2383 | if (CurrZone.isResourceLimited() && !Policy.ReduceResIdx) |
| 2384 | Policy.ReduceResIdx = CurrZone.getZoneCritResIdx(); |
| 2385 | |
| 2386 | if (OtherResLimited) |
| 2387 | Policy.DemandResIdx = OtherCritIdx; |
| 2388 | } |
| 2389 | |
| 2390 | #ifndef NDEBUG |
| 2391 | const char *GenericSchedulerBase::getReasonStr( |
| 2392 | GenericSchedulerBase::CandReason Reason) { |
| 2393 | switch (Reason) { |
| 2394 | case NoCand: return "NOCAND "; |
Matthias Braun | 49cb6e9 | 2016-05-27 22:14:26 +0000 | [diff] [blame] | 2395 | case Only1: return "ONLY1 "; |
| 2396 | case PhysRegCopy: return "PREG-COPY "; |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2397 | case RegExcess: return "REG-EXCESS"; |
| 2398 | case RegCritical: return "REG-CRIT "; |
| 2399 | case Stall: return "STALL "; |
| 2400 | case Cluster: return "CLUSTER "; |
| 2401 | case Weak: return "WEAK "; |
| 2402 | case RegMax: return "REG-MAX "; |
| 2403 | case ResourceReduce: return "RES-REDUCE"; |
| 2404 | case ResourceDemand: return "RES-DEMAND"; |
| 2405 | case TopDepthReduce: return "TOP-DEPTH "; |
| 2406 | case TopPathReduce: return "TOP-PATH "; |
| 2407 | case BotHeightReduce:return "BOT-HEIGHT"; |
| 2408 | case BotPathReduce: return "BOT-PATH "; |
| 2409 | case NextDefUse: return "DEF-USE "; |
| 2410 | case NodeOrder: return "ORDER "; |
| 2411 | }; |
| 2412 | llvm_unreachable("Unknown reason!"); |
| 2413 | } |
| 2414 | |
| 2415 | void GenericSchedulerBase::traceCandidate(const SchedCandidate &Cand) { |
| 2416 | PressureChange P; |
| 2417 | unsigned ResIdx = 0; |
| 2418 | unsigned Latency = 0; |
| 2419 | switch (Cand.Reason) { |
| 2420 | default: |
| 2421 | break; |
| 2422 | case RegExcess: |
| 2423 | P = Cand.RPDelta.Excess; |
| 2424 | break; |
| 2425 | case RegCritical: |
| 2426 | P = Cand.RPDelta.CriticalMax; |
| 2427 | break; |
| 2428 | case RegMax: |
| 2429 | P = Cand.RPDelta.CurrentMax; |
| 2430 | break; |
| 2431 | case ResourceReduce: |
| 2432 | ResIdx = Cand.Policy.ReduceResIdx; |
| 2433 | break; |
| 2434 | case ResourceDemand: |
| 2435 | ResIdx = Cand.Policy.DemandResIdx; |
| 2436 | break; |
| 2437 | case TopDepthReduce: |
| 2438 | Latency = Cand.SU->getDepth(); |
| 2439 | break; |
| 2440 | case TopPathReduce: |
| 2441 | Latency = Cand.SU->getHeight(); |
| 2442 | break; |
| 2443 | case BotHeightReduce: |
| 2444 | Latency = Cand.SU->getHeight(); |
| 2445 | break; |
| 2446 | case BotPathReduce: |
| 2447 | Latency = Cand.SU->getDepth(); |
| 2448 | break; |
| 2449 | } |
James Y Knight | e72b0db | 2015-09-18 18:52:20 +0000 | [diff] [blame] | 2450 | dbgs() << " Cand SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason); |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2451 | if (P.isValid()) |
| 2452 | dbgs() << " " << TRI->getRegPressureSetName(P.getPSet()) |
| 2453 | << ":" << P.getUnitInc() << " "; |
| 2454 | else |
| 2455 | dbgs() << " "; |
| 2456 | if (ResIdx) |
| 2457 | dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " "; |
| 2458 | else |
| 2459 | dbgs() << " "; |
| 2460 | if (Latency) |
| 2461 | dbgs() << " " << Latency << " cycles "; |
| 2462 | else |
| 2463 | dbgs() << " "; |
| 2464 | dbgs() << '\n'; |
| 2465 | } |
| 2466 | #endif |
| 2467 | |
| 2468 | /// Return true if this heuristic determines order. |
| 2469 | static bool tryLess(int TryVal, int CandVal, |
| 2470 | GenericSchedulerBase::SchedCandidate &TryCand, |
| 2471 | GenericSchedulerBase::SchedCandidate &Cand, |
| 2472 | GenericSchedulerBase::CandReason Reason) { |
| 2473 | if (TryVal < CandVal) { |
| 2474 | TryCand.Reason = Reason; |
| 2475 | return true; |
| 2476 | } |
| 2477 | if (TryVal > CandVal) { |
| 2478 | if (Cand.Reason > Reason) |
| 2479 | Cand.Reason = Reason; |
| 2480 | return true; |
| 2481 | } |
| 2482 | Cand.setRepeat(Reason); |
| 2483 | return false; |
| 2484 | } |
| 2485 | |
| 2486 | static bool tryGreater(int TryVal, int CandVal, |
| 2487 | GenericSchedulerBase::SchedCandidate &TryCand, |
| 2488 | GenericSchedulerBase::SchedCandidate &Cand, |
| 2489 | GenericSchedulerBase::CandReason Reason) { |
| 2490 | if (TryVal > CandVal) { |
| 2491 | TryCand.Reason = Reason; |
| 2492 | return true; |
| 2493 | } |
| 2494 | if (TryVal < CandVal) { |
| 2495 | if (Cand.Reason > Reason) |
| 2496 | Cand.Reason = Reason; |
| 2497 | return true; |
| 2498 | } |
| 2499 | Cand.setRepeat(Reason); |
| 2500 | return false; |
| 2501 | } |
| 2502 | |
| 2503 | static bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand, |
| 2504 | GenericSchedulerBase::SchedCandidate &Cand, |
| 2505 | SchedBoundary &Zone) { |
| 2506 | if (Zone.isTop()) { |
| 2507 | if (Cand.SU->getDepth() > Zone.getScheduledLatency()) { |
| 2508 | if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(), |
| 2509 | TryCand, Cand, GenericSchedulerBase::TopDepthReduce)) |
| 2510 | return true; |
| 2511 | } |
| 2512 | if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(), |
| 2513 | TryCand, Cand, GenericSchedulerBase::TopPathReduce)) |
| 2514 | return true; |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 2515 | } else { |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2516 | if (Cand.SU->getHeight() > Zone.getScheduledLatency()) { |
| 2517 | if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(), |
| 2518 | TryCand, Cand, GenericSchedulerBase::BotHeightReduce)) |
| 2519 | return true; |
| 2520 | } |
| 2521 | if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(), |
| 2522 | TryCand, Cand, GenericSchedulerBase::BotPathReduce)) |
| 2523 | return true; |
| 2524 | } |
| 2525 | return false; |
| 2526 | } |
| 2527 | |
Matthias Braun | 49cb6e9 | 2016-05-27 22:14:26 +0000 | [diff] [blame] | 2528 | static void tracePick(GenericSchedulerBase::CandReason Reason, bool IsTop) { |
| 2529 | DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ") |
| 2530 | << GenericSchedulerBase::getReasonStr(Reason) << '\n'); |
| 2531 | } |
| 2532 | |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2533 | static void tracePick(const GenericSchedulerBase::SchedCandidate &Cand, |
| 2534 | bool IsTop) { |
Matthias Braun | 49cb6e9 | 2016-05-27 22:14:26 +0000 | [diff] [blame] | 2535 | tracePick(Cand.Reason, IsTop); |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2536 | } |
| 2537 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2538 | void GenericScheduler::initialize(ScheduleDAGMI *dag) { |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 2539 | assert(dag->hasVRegLiveness() && |
| 2540 | "(PreRA)GenericScheduler needs vreg liveness"); |
| 2541 | DAG = static_cast<ScheduleDAGMILive*>(dag); |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2542 | SchedModel = DAG->getSchedModel(); |
| 2543 | TRI = DAG->TRI; |
| 2544 | |
| 2545 | Rem.init(DAG, SchedModel); |
| 2546 | Top.init(DAG, SchedModel, &Rem); |
| 2547 | Bot.init(DAG, SchedModel, &Rem); |
| 2548 | |
| 2549 | // Initialize resource counts. |
| 2550 | |
| 2551 | // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or |
| 2552 | // are disabled, then these HazardRecs will be disabled. |
| 2553 | const InstrItineraryData *Itin = SchedModel->getInstrItineraries(); |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2554 | if (!Top.HazardRec) { |
| 2555 | Top.HazardRec = |
Eric Christopher | 99556d7 | 2014-10-14 06:56:25 +0000 | [diff] [blame] | 2556 | DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer( |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 2557 | Itin, DAG); |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2558 | } |
| 2559 | if (!Bot.HazardRec) { |
| 2560 | Bot.HazardRec = |
Eric Christopher | 99556d7 | 2014-10-14 06:56:25 +0000 | [diff] [blame] | 2561 | DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer( |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 2562 | Itin, DAG); |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2563 | } |
| 2564 | } |
| 2565 | |
| 2566 | /// Initialize the per-region scheduling policy. |
| 2567 | void GenericScheduler::initPolicy(MachineBasicBlock::iterator Begin, |
| 2568 | MachineBasicBlock::iterator End, |
| 2569 | unsigned NumRegionInstrs) { |
Eric Christopher | 99556d7 | 2014-10-14 06:56:25 +0000 | [diff] [blame] | 2570 | const MachineFunction &MF = *Begin->getParent()->getParent(); |
| 2571 | const TargetLowering *TLI = MF.getSubtarget().getTargetLowering(); |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2572 | |
| 2573 | // Avoid setting up the register pressure tracker for small regions to save |
| 2574 | // compile time. As a rough heuristic, only track pressure when the number of |
| 2575 | // schedulable instructions exceeds half the integer register file. |
Andrew Trick | 350ff2c | 2014-01-21 21:27:37 +0000 | [diff] [blame] | 2576 | RegionPolicy.ShouldTrackPressure = true; |
Andrew Trick | 4675351 | 2014-01-22 03:38:55 +0000 | [diff] [blame] | 2577 | for (unsigned VT = MVT::i32; VT > (unsigned)MVT::i1; --VT) { |
| 2578 | MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT; |
| 2579 | if (TLI->isTypeLegal(LegalIntVT)) { |
Andrew Trick | 350ff2c | 2014-01-21 21:27:37 +0000 | [diff] [blame] | 2580 | unsigned NIntRegs = Context->RegClassInfo->getNumAllocatableRegs( |
Andrew Trick | 4675351 | 2014-01-22 03:38:55 +0000 | [diff] [blame] | 2581 | TLI->getRegClassFor(LegalIntVT)); |
Andrew Trick | 350ff2c | 2014-01-21 21:27:37 +0000 | [diff] [blame] | 2582 | RegionPolicy.ShouldTrackPressure = NumRegionInstrs > (NIntRegs / 2); |
| 2583 | } |
| 2584 | } |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2585 | |
| 2586 | // For generic targets, we default to bottom-up, because it's simpler and more |
| 2587 | // compile-time optimizations have been implemented in that direction. |
| 2588 | RegionPolicy.OnlyBottomUp = true; |
| 2589 | |
| 2590 | // Allow the subtarget to override default policy. |
Eric Christopher | 99556d7 | 2014-10-14 06:56:25 +0000 | [diff] [blame] | 2591 | MF.getSubtarget().overrideSchedPolicy(RegionPolicy, Begin, End, |
| 2592 | NumRegionInstrs); |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2593 | |
| 2594 | // After subtarget overrides, apply command line options. |
| 2595 | if (!EnableRegPressure) |
| 2596 | RegionPolicy.ShouldTrackPressure = false; |
| 2597 | |
| 2598 | // Check -misched-topdown/bottomup can force or unforce scheduling direction. |
| 2599 | // e.g. -misched-bottomup=false allows scheduling in both directions. |
| 2600 | assert((!ForceTopDown || !ForceBottomUp) && |
| 2601 | "-misched-topdown incompatible with -misched-bottomup"); |
| 2602 | if (ForceBottomUp.getNumOccurrences() > 0) { |
| 2603 | RegionPolicy.OnlyBottomUp = ForceBottomUp; |
| 2604 | if (RegionPolicy.OnlyBottomUp) |
| 2605 | RegionPolicy.OnlyTopDown = false; |
| 2606 | } |
| 2607 | if (ForceTopDown.getNumOccurrences() > 0) { |
| 2608 | RegionPolicy.OnlyTopDown = ForceTopDown; |
| 2609 | if (RegionPolicy.OnlyTopDown) |
| 2610 | RegionPolicy.OnlyBottomUp = false; |
| 2611 | } |
| 2612 | } |
| 2613 | |
James Y Knight | e72b0db | 2015-09-18 18:52:20 +0000 | [diff] [blame] | 2614 | void GenericScheduler::dumpPolicy() { |
| 2615 | dbgs() << "GenericScheduler RegionPolicy: " |
| 2616 | << " ShouldTrackPressure=" << RegionPolicy.ShouldTrackPressure |
| 2617 | << " OnlyTopDown=" << RegionPolicy.OnlyTopDown |
| 2618 | << " OnlyBottomUp=" << RegionPolicy.OnlyBottomUp |
| 2619 | << "\n"; |
| 2620 | } |
| 2621 | |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2622 | /// Set IsAcyclicLatencyLimited if the acyclic path is longer than the cyclic |
| 2623 | /// critical path by more cycles than it takes to drain the instruction buffer. |
| 2624 | /// We estimate an upper bounds on in-flight instructions as: |
| 2625 | /// |
| 2626 | /// CyclesPerIteration = max( CyclicPath, Loop-Resource-Height ) |
| 2627 | /// InFlightIterations = AcyclicPath / CyclesPerIteration |
| 2628 | /// InFlightResources = InFlightIterations * LoopResources |
| 2629 | /// |
| 2630 | /// TODO: Check execution resources in addition to IssueCount. |
| 2631 | void GenericScheduler::checkAcyclicLatency() { |
| 2632 | if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath) |
| 2633 | return; |
| 2634 | |
| 2635 | // Scaled number of cycles per loop iteration. |
| 2636 | unsigned IterCount = |
| 2637 | std::max(Rem.CyclicCritPath * SchedModel->getLatencyFactor(), |
| 2638 | Rem.RemIssueCount); |
| 2639 | // Scaled acyclic critical path. |
| 2640 | unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor(); |
| 2641 | // InFlightCount = (AcyclicPath / IterCycles) * InstrPerLoop |
| 2642 | unsigned InFlightCount = |
| 2643 | (AcyclicCount * Rem.RemIssueCount + IterCount-1) / IterCount; |
| 2644 | unsigned BufferLimit = |
| 2645 | SchedModel->getMicroOpBufferSize() * SchedModel->getMicroOpFactor(); |
| 2646 | |
| 2647 | Rem.IsAcyclicLatencyLimited = InFlightCount > BufferLimit; |
| 2648 | |
| 2649 | DEBUG(dbgs() << "IssueCycles=" |
| 2650 | << Rem.RemIssueCount / SchedModel->getLatencyFactor() << "c " |
| 2651 | << "IterCycles=" << IterCount / SchedModel->getLatencyFactor() |
| 2652 | << "c NumIters=" << (AcyclicCount + IterCount-1) / IterCount |
| 2653 | << " InFlight=" << InFlightCount / SchedModel->getMicroOpFactor() |
| 2654 | << "m BufferLim=" << SchedModel->getMicroOpBufferSize() << "m\n"; |
| 2655 | if (Rem.IsAcyclicLatencyLimited) |
| 2656 | dbgs() << " ACYCLIC LATENCY LIMIT\n"); |
| 2657 | } |
| 2658 | |
| 2659 | void GenericScheduler::registerRoots() { |
| 2660 | Rem.CriticalPath = DAG->ExitSU.getDepth(); |
| 2661 | |
| 2662 | // Some roots may not feed into ExitSU. Check all of them in case. |
| 2663 | for (std::vector<SUnit*>::const_iterator |
| 2664 | I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) { |
| 2665 | if ((*I)->getDepth() > Rem.CriticalPath) |
| 2666 | Rem.CriticalPath = (*I)->getDepth(); |
| 2667 | } |
Gerolf Hoflehner | b5220dc | 2014-08-07 21:49:44 +0000 | [diff] [blame] | 2668 | DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n'); |
| 2669 | if (DumpCriticalPathLength) { |
| 2670 | errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n"; |
| 2671 | } |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2672 | |
| 2673 | if (EnableCyclicPath) { |
| 2674 | Rem.CyclicCritPath = DAG->computeCyclicCriticalPath(); |
| 2675 | checkAcyclicLatency(); |
| 2676 | } |
| 2677 | } |
| 2678 | |
Andrew Trick | 1a83134 | 2013-08-30 03:49:48 +0000 | [diff] [blame] | 2679 | static bool tryPressure(const PressureChange &TryP, |
| 2680 | const PressureChange &CandP, |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2681 | GenericSchedulerBase::SchedCandidate &TryCand, |
| 2682 | GenericSchedulerBase::SchedCandidate &Cand, |
Tom Stellard | 5ce5306 | 2015-12-16 18:31:01 +0000 | [diff] [blame] | 2683 | GenericSchedulerBase::CandReason Reason, |
| 2684 | const TargetRegisterInfo *TRI, |
| 2685 | const MachineFunction &MF) { |
| 2686 | unsigned TryPSet = TryP.getPSetOrMax(); |
| 2687 | unsigned CandPSet = CandP.getPSetOrMax(); |
Andrew Trick | b1a45b6 | 2013-08-30 04:27:29 +0000 | [diff] [blame] | 2688 | // If both candidates affect the same set, go with the smallest increase. |
Tom Stellard | 5ce5306 | 2015-12-16 18:31:01 +0000 | [diff] [blame] | 2689 | if (TryPSet == CandPSet) { |
Andrew Trick | b1a45b6 | 2013-08-30 04:27:29 +0000 | [diff] [blame] | 2690 | return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand, |
| 2691 | Reason); |
Andrew Trick | 401b695 | 2013-07-25 07:26:35 +0000 | [diff] [blame] | 2692 | } |
Andrew Trick | b1a45b6 | 2013-08-30 04:27:29 +0000 | [diff] [blame] | 2693 | // If one candidate decreases and the other increases, go with it. |
| 2694 | // Invalid candidates have UnitInc==0. |
Hal Finkel | 7a87f8a | 2014-10-10 17:06:20 +0000 | [diff] [blame] | 2695 | if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand, |
| 2696 | Reason)) { |
Andrew Trick | b1a45b6 | 2013-08-30 04:27:29 +0000 | [diff] [blame] | 2697 | return true; |
| 2698 | } |
Tom Stellard | 5ce5306 | 2015-12-16 18:31:01 +0000 | [diff] [blame] | 2699 | |
| 2700 | int TryRank = TryP.isValid() ? TRI->getRegPressureSetScore(MF, TryPSet) : |
| 2701 | std::numeric_limits<int>::max(); |
| 2702 | |
| 2703 | int CandRank = CandP.isValid() ? TRI->getRegPressureSetScore(MF, CandPSet) : |
| 2704 | std::numeric_limits<int>::max(); |
| 2705 | |
Andrew Trick | 401b695 | 2013-07-25 07:26:35 +0000 | [diff] [blame] | 2706 | // If the candidates are decreasing pressure, reverse priority. |
Andrew Trick | 1a83134 | 2013-08-30 03:49:48 +0000 | [diff] [blame] | 2707 | if (TryP.getUnitInc() < 0) |
Andrew Trick | 401b695 | 2013-07-25 07:26:35 +0000 | [diff] [blame] | 2708 | std::swap(TryRank, CandRank); |
| 2709 | return tryGreater(TryRank, CandRank, TryCand, Cand, Reason); |
| 2710 | } |
| 2711 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 2712 | static unsigned getWeakLeft(const SUnit *SU, bool isTop) { |
| 2713 | return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft; |
| 2714 | } |
| 2715 | |
Andrew Trick | e833e1c | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 2716 | /// Minimize physical register live ranges. Regalloc wants them adjacent to |
| 2717 | /// their physreg def/use. |
| 2718 | /// |
| 2719 | /// FIXME: This is an unnecessary check on the critical path. Most are root/leaf |
| 2720 | /// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled |
| 2721 | /// with the operation that produces or consumes the physreg. We'll do this when |
| 2722 | /// regalloc has support for parallel copies. |
| 2723 | static int biasPhysRegCopy(const SUnit *SU, bool isTop) { |
| 2724 | const MachineInstr *MI = SU->getInstr(); |
| 2725 | if (!MI->isCopy()) |
| 2726 | return 0; |
| 2727 | |
| 2728 | unsigned ScheduledOper = isTop ? 1 : 0; |
| 2729 | unsigned UnscheduledOper = isTop ? 0 : 1; |
| 2730 | // If we have already scheduled the physreg produce/consumer, immediately |
| 2731 | // schedule the copy. |
| 2732 | if (TargetRegisterInfo::isPhysicalRegister( |
| 2733 | MI->getOperand(ScheduledOper).getReg())) |
| 2734 | return 1; |
| 2735 | // If the physreg is at the boundary, defer it. Otherwise schedule it |
| 2736 | // immediately to free the dependent. We can hoist the copy later. |
| 2737 | bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft; |
| 2738 | if (TargetRegisterInfo::isPhysicalRegister( |
| 2739 | MI->getOperand(UnscheduledOper).getReg())) |
| 2740 | return AtBoundary ? -1 : 1; |
| 2741 | return 0; |
| 2742 | } |
| 2743 | |
Matthias Braun | 4f57377 | 2016-04-22 19:10:15 +0000 | [diff] [blame] | 2744 | void GenericScheduler::initCandidate(SchedCandidate &Cand, SUnit *SU, |
| 2745 | bool AtTop, |
| 2746 | const RegPressureTracker &RPTracker, |
| 2747 | RegPressureTracker &TempTracker) { |
| 2748 | Cand.SU = SU; |
| 2749 | if (DAG->isTrackingPressure()) { |
| 2750 | if (AtTop) { |
| 2751 | TempTracker.getMaxDownwardPressureDelta( |
| 2752 | Cand.SU->getInstr(), |
| 2753 | Cand.RPDelta, |
| 2754 | DAG->getRegionCriticalPSets(), |
| 2755 | DAG->getRegPressure().MaxSetPressure); |
| 2756 | } else { |
| 2757 | if (VerifyScheduling) { |
| 2758 | TempTracker.getMaxUpwardPressureDelta( |
| 2759 | Cand.SU->getInstr(), |
| 2760 | &DAG->getPressureDiff(Cand.SU), |
| 2761 | Cand.RPDelta, |
| 2762 | DAG->getRegionCriticalPSets(), |
| 2763 | DAG->getRegPressure().MaxSetPressure); |
| 2764 | } else { |
| 2765 | RPTracker.getUpwardPressureDelta( |
| 2766 | Cand.SU->getInstr(), |
| 2767 | DAG->getPressureDiff(Cand.SU), |
| 2768 | Cand.RPDelta, |
| 2769 | DAG->getRegionCriticalPSets(), |
| 2770 | DAG->getRegPressure().MaxSetPressure); |
| 2771 | } |
| 2772 | } |
| 2773 | } |
| 2774 | DEBUG(if (Cand.RPDelta.Excess.isValid()) |
| 2775 | dbgs() << " Try SU(" << Cand.SU->NodeNum << ") " |
| 2776 | << TRI->getRegPressureSetName(Cand.RPDelta.Excess.getPSet()) |
| 2777 | << ":" << Cand.RPDelta.Excess.getUnitInc() << "\n"); |
| 2778 | } |
| 2779 | |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2780 | /// Apply a set of heursitics to a new candidate. Heuristics are currently |
| 2781 | /// hierarchical. This may be more efficient than a graduated cost model because |
| 2782 | /// we don't need to evaluate all aspects of the model for each node in the |
| 2783 | /// queue. But it's really done to make the heuristics easier to debug and |
| 2784 | /// statistically analyze. |
| 2785 | /// |
| 2786 | /// \param Cand provides the policy and current best candidate. |
| 2787 | /// \param TryCand refers to the next SUnit candidate, otherwise uninitialized. |
| 2788 | /// \param Zone describes the scheduled zone that we are extending. |
Andrew Trick | 665d3ec | 2013-09-19 23:10:59 +0000 | [diff] [blame] | 2789 | void GenericScheduler::tryCandidate(SchedCandidate &Cand, |
Andrew Trick | bb1247b | 2013-12-05 17:55:47 +0000 | [diff] [blame] | 2790 | SchedCandidate &TryCand, |
Matthias Braun | 4f57377 | 2016-04-22 19:10:15 +0000 | [diff] [blame] | 2791 | SchedBoundary &Zone) { |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2792 | // Initialize the candidate if needed. |
| 2793 | if (!Cand.isValid()) { |
| 2794 | TryCand.Reason = NodeOrder; |
| 2795 | return; |
| 2796 | } |
Andrew Trick | e833e1c | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 2797 | |
| 2798 | if (tryGreater(biasPhysRegCopy(TryCand.SU, Zone.isTop()), |
| 2799 | biasPhysRegCopy(Cand.SU, Zone.isTop()), |
| 2800 | TryCand, Cand, PhysRegCopy)) |
| 2801 | return; |
| 2802 | |
Andrew Trick | e02d5da | 2015-05-17 23:40:27 +0000 | [diff] [blame] | 2803 | // Avoid exceeding the target's limit. |
Andrew Trick | 66c3dfb | 2013-09-04 21:00:11 +0000 | [diff] [blame] | 2804 | if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess, |
| 2805 | Cand.RPDelta.Excess, |
Tom Stellard | 5ce5306 | 2015-12-16 18:31:01 +0000 | [diff] [blame] | 2806 | TryCand, Cand, RegExcess, TRI, |
| 2807 | DAG->MF)) |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2808 | return; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2809 | |
| 2810 | // Avoid increasing the max critical pressure in the scheduled region. |
Andrew Trick | 66c3dfb | 2013-09-04 21:00:11 +0000 | [diff] [blame] | 2811 | if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CriticalMax, |
| 2812 | Cand.RPDelta.CriticalMax, |
Tom Stellard | 5ce5306 | 2015-12-16 18:31:01 +0000 | [diff] [blame] | 2813 | TryCand, Cand, RegCritical, TRI, |
| 2814 | DAG->MF)) |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2815 | return; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2816 | |
Andrew Trick | ddffae9 | 2013-09-06 17:32:36 +0000 | [diff] [blame] | 2817 | // For loops that are acyclic path limited, aggressively schedule for latency. |
Andrew Trick | e1f7bf2 | 2013-09-09 22:28:08 +0000 | [diff] [blame] | 2818 | // This can result in very long dependence chains scheduled in sequence, so |
| 2819 | // once every cycle (when CurrMOps == 0), switch to normal heuristics. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2820 | if (Rem.IsAcyclicLatencyLimited && !Zone.getCurrMOps() |
Andrew Trick | e1f7bf2 | 2013-09-09 22:28:08 +0000 | [diff] [blame] | 2821 | && tryLatency(TryCand, Cand, Zone)) |
Andrew Trick | ddffae9 | 2013-09-06 17:32:36 +0000 | [diff] [blame] | 2822 | return; |
| 2823 | |
Andrew Trick | 880e573 | 2013-12-05 17:55:58 +0000 | [diff] [blame] | 2824 | // Prioritize instructions that read unbuffered resources by stall cycles. |
| 2825 | if (tryLess(Zone.getLatencyStallCycles(TryCand.SU), |
| 2826 | Zone.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall)) |
| 2827 | return; |
| 2828 | |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 2829 | // Keep clustered nodes together to encourage downstream peephole |
| 2830 | // optimizations which may reduce resource requirements. |
| 2831 | // |
| 2832 | // This is a best effort to set things up for a post-RA pass. Optimizations |
| 2833 | // like generating loads of multiple registers should ideally be done within |
| 2834 | // the scheduler pass by combining the loads during DAG postprocessing. |
| 2835 | const SUnit *NextClusterSU = |
| 2836 | Zone.isTop() ? DAG->getNextClusterSucc() : DAG->getNextClusterPred(); |
| 2837 | if (tryGreater(TryCand.SU == NextClusterSU, Cand.SU == NextClusterSU, |
| 2838 | TryCand, Cand, Cluster)) |
| 2839 | return; |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 2840 | |
| 2841 | // Weak edges are for clustering and other constraints. |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 2842 | if (tryLess(getWeakLeft(TryCand.SU, Zone.isTop()), |
| 2843 | getWeakLeft(Cand.SU, Zone.isTop()), |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 2844 | TryCand, Cand, Weak)) { |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 2845 | return; |
| 2846 | } |
Andrew Trick | 71f08a3 | 2013-06-17 21:45:13 +0000 | [diff] [blame] | 2847 | // Avoid increasing the max pressure of the entire region. |
Andrew Trick | 66c3dfb | 2013-09-04 21:00:11 +0000 | [diff] [blame] | 2848 | if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CurrentMax, |
| 2849 | Cand.RPDelta.CurrentMax, |
Tom Stellard | 5ce5306 | 2015-12-16 18:31:01 +0000 | [diff] [blame] | 2850 | TryCand, Cand, RegMax, TRI, |
| 2851 | DAG->MF)) |
Andrew Trick | 71f08a3 | 2013-06-17 21:45:13 +0000 | [diff] [blame] | 2852 | return; |
| 2853 | |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2854 | // Avoid critical resource consumption and balance the schedule. |
| 2855 | TryCand.initResourceDelta(DAG, SchedModel); |
| 2856 | if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources, |
| 2857 | TryCand, Cand, ResourceReduce)) |
| 2858 | return; |
| 2859 | if (tryGreater(TryCand.ResDelta.DemandedResources, |
| 2860 | Cand.ResDelta.DemandedResources, |
| 2861 | TryCand, Cand, ResourceDemand)) |
| 2862 | return; |
| 2863 | |
| 2864 | // Avoid serializing long latency dependence chains. |
Andrew Trick | c01b004 | 2013-08-23 17:48:43 +0000 | [diff] [blame] | 2865 | // For acyclic path limited loops, latency was already checked above. |
Matthias Braun | 61f4d64 | 2015-10-22 18:07:31 +0000 | [diff] [blame] | 2866 | if (!RegionPolicy.DisableLatencyHeuristic && Cand.Policy.ReduceLatency && |
| 2867 | !Rem.IsAcyclicLatencyLimited && tryLatency(TryCand, Cand, Zone)) { |
Andrew Trick | c01b004 | 2013-08-23 17:48:43 +0000 | [diff] [blame] | 2868 | return; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2869 | } |
| 2870 | |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2871 | // Prefer immediate defs/users of the last scheduled instruction. This is a |
Andrew Trick | f78e7fa | 2013-06-15 05:39:19 +0000 | [diff] [blame] | 2872 | // local pressure avoidance strategy that also makes the machine code |
| 2873 | // readable. |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2874 | if (tryGreater(Zone.isNextSU(TryCand.SU), Zone.isNextSU(Cand.SU), |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 2875 | TryCand, Cand, NextDefUse)) |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2876 | return; |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 2877 | |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2878 | // Fall through to original instruction order. |
| 2879 | if ((Zone.isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum) |
| 2880 | || (!Zone.isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) { |
| 2881 | TryCand.Reason = NodeOrder; |
| 2882 | } |
| 2883 | } |
Andrew Trick | 419eae2 | 2012-05-10 21:06:19 +0000 | [diff] [blame] | 2884 | |
Andrew Trick | c573cd9 | 2013-09-06 17:32:44 +0000 | [diff] [blame] | 2885 | /// Pick the best candidate from the queue. |
Andrew Trick | 7ee9de5 | 2012-05-10 21:06:16 +0000 | [diff] [blame] | 2886 | /// |
| 2887 | /// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during |
| 2888 | /// DAG building. To adjust for the current scheduling location we need to |
| 2889 | /// maintain the number of vreg uses remaining to be top-scheduled. |
Andrew Trick | 665d3ec | 2013-09-19 23:10:59 +0000 | [diff] [blame] | 2890 | void GenericScheduler::pickNodeFromQueue(SchedBoundary &Zone, |
Andrew Trick | bb1247b | 2013-12-05 17:55:47 +0000 | [diff] [blame] | 2891 | const RegPressureTracker &RPTracker, |
| 2892 | SchedCandidate &Cand) { |
Andrew Trick | 7ee9de5 | 2012-05-10 21:06:16 +0000 | [diff] [blame] | 2893 | // getMaxPressureDelta temporarily modifies the tracker. |
| 2894 | RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker); |
| 2895 | |
Matthias Braun | d29d31e | 2016-06-23 21:27:38 +0000 | [diff] [blame^] | 2896 | ReadyQueue &Q = Zone.Available; |
Andrew Trick | dd375dd | 2012-05-24 22:11:03 +0000 | [diff] [blame] | 2897 | for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) { |
Andrew Trick | 7ee9de5 | 2012-05-10 21:06:16 +0000 | [diff] [blame] | 2898 | |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2899 | SchedCandidate TryCand(Cand.Policy); |
Matthias Braun | 4f57377 | 2016-04-22 19:10:15 +0000 | [diff] [blame] | 2900 | initCandidate(TryCand, *I, Zone.isTop(), RPTracker, TempTracker); |
| 2901 | tryCandidate(Cand, TryCand, Zone); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2902 | if (TryCand.Reason != NoCand) { |
| 2903 | // Initialize resource delta if needed in case future heuristics query it. |
| 2904 | if (TryCand.ResDelta == SchedResourceDelta()) |
| 2905 | TryCand.initResourceDelta(DAG, SchedModel); |
| 2906 | Cand.setBest(TryCand); |
Andrew Trick | 419d491 | 2013-04-05 00:31:29 +0000 | [diff] [blame] | 2907 | DEBUG(traceCandidate(Cand)); |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2908 | } |
Andrew Trick | 7ee9de5 | 2012-05-10 21:06:16 +0000 | [diff] [blame] | 2909 | } |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2910 | } |
| 2911 | |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2912 | /// Pick the best candidate node from either the top or bottom queue. |
Andrew Trick | 665d3ec | 2013-09-19 23:10:59 +0000 | [diff] [blame] | 2913 | SUnit *GenericScheduler::pickNodeBidirectional(bool &IsTopNode) { |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2914 | // Schedule as far as possible in the direction of no choice. This is most |
| 2915 | // efficient, but also provides the best heuristics for CriticalPSets. |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2916 | if (SUnit *SU = Bot.pickOnlyChoice()) { |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2917 | IsTopNode = false; |
Matthias Braun | 49cb6e9 | 2016-05-27 22:14:26 +0000 | [diff] [blame] | 2918 | tracePick(Only1, false); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2919 | return SU; |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2920 | } |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2921 | if (SUnit *SU = Top.pickOnlyChoice()) { |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2922 | IsTopNode = true; |
Matthias Braun | 49cb6e9 | 2016-05-27 22:14:26 +0000 | [diff] [blame] | 2923 | tracePick(Only1, true); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2924 | return SU; |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2925 | } |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2926 | CandPolicy NoPolicy; |
| 2927 | SchedCandidate BotCand(NoPolicy); |
| 2928 | SchedCandidate TopCand(NoPolicy); |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2929 | // Set the bottom-up policy based on the state of the current bottom zone and |
| 2930 | // the instructions outside the zone, including the top zone. |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2931 | setPolicy(BotCand.Policy, /*IsPostRA=*/false, Bot, &Top); |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 2932 | // Set the top-down policy based on the state of the current top zone and |
| 2933 | // the instructions outside the zone, including the bottom zone. |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 2934 | setPolicy(TopCand.Policy, /*IsPostRA=*/false, Top, &Bot); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2935 | |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2936 | // Prefer bottom scheduling when heuristics are silent. |
Matthias Braun | d29d31e | 2016-06-23 21:27:38 +0000 | [diff] [blame^] | 2937 | DEBUG(dbgs() << "Picking from Bot:\n"); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2938 | pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand); |
| 2939 | assert(BotCand.Reason != NoCand && "failed to find the first candidate"); |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2940 | |
| 2941 | // If either Q has a single candidate that provides the least increase in |
| 2942 | // Excess pressure, we can immediately schedule from that Q. |
| 2943 | // |
| 2944 | // RegionCriticalPSets summarizes the pressure within the scheduled region and |
| 2945 | // affects picking from either Q. If scheduling in one direction must |
| 2946 | // increase pressure for one of the excess PSets, then schedule in that |
| 2947 | // direction first to provide more freedom in the other direction. |
Andrew Trick | d40d0f2 | 2013-06-17 21:45:05 +0000 | [diff] [blame] | 2948 | if ((BotCand.Reason == RegExcess && !BotCand.isRepeat(RegExcess)) |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 2949 | || (BotCand.Reason == RegCritical && !BotCand.isRepeat(RegCritical))) |
Andrew Trick | d40d0f2 | 2013-06-17 21:45:05 +0000 | [diff] [blame] | 2950 | { |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2951 | IsTopNode = false; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2952 | tracePick(BotCand, IsTopNode); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2953 | return BotCand.SU; |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2954 | } |
| 2955 | // Check if the top Q has a better candidate. |
Matthias Braun | d29d31e | 2016-06-23 21:27:38 +0000 | [diff] [blame^] | 2956 | DEBUG(dbgs() << "Picking from Top:\n"); |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2957 | pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand); |
| 2958 | assert(TopCand.Reason != NoCand && "failed to find the first candidate"); |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2959 | |
Andrew Trick | d40d0f2 | 2013-06-17 21:45:05 +0000 | [diff] [blame] | 2960 | // Choose the queue with the most important (lowest enum) reason. |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2961 | if (TopCand.Reason < BotCand.Reason) { |
| 2962 | IsTopNode = true; |
| 2963 | tracePick(TopCand, IsTopNode); |
| 2964 | return TopCand.SU; |
| 2965 | } |
Andrew Trick | d40d0f2 | 2013-06-17 21:45:05 +0000 | [diff] [blame] | 2966 | // Otherwise prefer the bottom candidate, in node order if all else failed. |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2967 | IsTopNode = false; |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2968 | tracePick(BotCand, IsTopNode); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2969 | return BotCand.SU; |
Andrew Trick | 2202577 | 2012-05-17 18:35:10 +0000 | [diff] [blame] | 2970 | } |
| 2971 | |
| 2972 | /// Pick the best node to balance the schedule. Implements MachineSchedStrategy. |
Andrew Trick | 665d3ec | 2013-09-19 23:10:59 +0000 | [diff] [blame] | 2973 | SUnit *GenericScheduler::pickNode(bool &IsTopNode) { |
Andrew Trick | 7ee9de5 | 2012-05-10 21:06:16 +0000 | [diff] [blame] | 2974 | if (DAG->top() == DAG->bottom()) { |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 2975 | assert(Top.Available.empty() && Top.Pending.empty() && |
| 2976 | Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage"); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2977 | return nullptr; |
Andrew Trick | 7ee9de5 | 2012-05-10 21:06:16 +0000 | [diff] [blame] | 2978 | } |
Andrew Trick | 7ee9de5 | 2012-05-10 21:06:16 +0000 | [diff] [blame] | 2979 | SUnit *SU; |
Andrew Trick | 984d98b | 2012-10-08 18:53:53 +0000 | [diff] [blame] | 2980 | do { |
Andrew Trick | 75e411c | 2013-09-06 17:32:34 +0000 | [diff] [blame] | 2981 | if (RegionPolicy.OnlyTopDown) { |
Andrew Trick | 984d98b | 2012-10-08 18:53:53 +0000 | [diff] [blame] | 2982 | SU = Top.pickOnlyChoice(); |
| 2983 | if (!SU) { |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2984 | CandPolicy NoPolicy; |
| 2985 | SchedCandidate TopCand(NoPolicy); |
| 2986 | pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand); |
Andrew Trick | 1ab16d9 | 2013-09-04 21:00:13 +0000 | [diff] [blame] | 2987 | assert(TopCand.Reason != NoCand && "failed to find a candidate"); |
Andrew Trick | ef54c59 | 2013-09-04 21:00:16 +0000 | [diff] [blame] | 2988 | tracePick(TopCand, true); |
Andrew Trick | 984d98b | 2012-10-08 18:53:53 +0000 | [diff] [blame] | 2989 | SU = TopCand.SU; |
| 2990 | } |
| 2991 | IsTopNode = true; |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 2992 | } else if (RegionPolicy.OnlyBottomUp) { |
Andrew Trick | 984d98b | 2012-10-08 18:53:53 +0000 | [diff] [blame] | 2993 | SU = Bot.pickOnlyChoice(); |
| 2994 | if (!SU) { |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 2995 | CandPolicy NoPolicy; |
| 2996 | SchedCandidate BotCand(NoPolicy); |
| 2997 | pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand); |
Andrew Trick | 1ab16d9 | 2013-09-04 21:00:13 +0000 | [diff] [blame] | 2998 | assert(BotCand.Reason != NoCand && "failed to find a candidate"); |
Andrew Trick | ef54c59 | 2013-09-04 21:00:16 +0000 | [diff] [blame] | 2999 | tracePick(BotCand, false); |
Andrew Trick | 984d98b | 2012-10-08 18:53:53 +0000 | [diff] [blame] | 3000 | SU = BotCand.SU; |
| 3001 | } |
| 3002 | IsTopNode = false; |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 3003 | } else { |
Andrew Trick | 3ca33ac | 2012-11-07 07:05:09 +0000 | [diff] [blame] | 3004 | SU = pickNodeBidirectional(IsTopNode); |
Andrew Trick | 984d98b | 2012-10-08 18:53:53 +0000 | [diff] [blame] | 3005 | } |
| 3006 | } while (SU->isScheduled); |
| 3007 | |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 3008 | if (SU->isTopReady()) |
| 3009 | Top.removeReady(SU); |
| 3010 | if (SU->isBottomReady()) |
| 3011 | Bot.removeReady(SU); |
Andrew Trick | 4e7f6a7 | 2012-05-25 02:02:39 +0000 | [diff] [blame] | 3012 | |
Andrew Trick | 1f0bb69 | 2013-04-13 06:07:49 +0000 | [diff] [blame] | 3013 | DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr()); |
Andrew Trick | 7ee9de5 | 2012-05-10 21:06:16 +0000 | [diff] [blame] | 3014 | return SU; |
| 3015 | } |
| 3016 | |
Andrew Trick | 665d3ec | 2013-09-19 23:10:59 +0000 | [diff] [blame] | 3017 | void GenericScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) { |
Andrew Trick | e833e1c | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 3018 | |
| 3019 | MachineBasicBlock::iterator InsertPos = SU->getInstr(); |
| 3020 | if (!isTop) |
| 3021 | ++InsertPos; |
| 3022 | SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs; |
| 3023 | |
| 3024 | // Find already scheduled copies with a single physreg dependence and move |
| 3025 | // them just above the scheduled instruction. |
| 3026 | for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end(); |
| 3027 | I != E; ++I) { |
| 3028 | if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg())) |
| 3029 | continue; |
| 3030 | SUnit *DepSU = I->getSUnit(); |
| 3031 | if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1) |
| 3032 | continue; |
| 3033 | MachineInstr *Copy = DepSU->getInstr(); |
| 3034 | if (!Copy->isCopy()) |
| 3035 | continue; |
| 3036 | DEBUG(dbgs() << " Rescheduling physreg copy "; |
| 3037 | I->getSUnit()->dump(DAG)); |
| 3038 | DAG->moveInstruction(Copy, InsertPos); |
| 3039 | } |
| 3040 | } |
| 3041 | |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 3042 | /// Update the scheduler's state after scheduling a node. This is the same node |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3043 | /// that was just returned by pickNode(). However, ScheduleDAGMILive needs to |
| 3044 | /// update it's state based on the current cycle before MachineSchedStrategy |
| 3045 | /// does. |
Andrew Trick | e833e1c | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 3046 | /// |
| 3047 | /// FIXME: Eventually, we may bundle physreg copies rather than rescheduling |
| 3048 | /// them here. See comments in biasPhysRegCopy. |
Andrew Trick | 665d3ec | 2013-09-19 23:10:59 +0000 | [diff] [blame] | 3049 | void GenericScheduler::schedNode(SUnit *SU, bool IsTopNode) { |
Andrew Trick | 4544606 | 2012-06-05 21:11:27 +0000 | [diff] [blame] | 3050 | if (IsTopNode) { |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 3051 | SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle()); |
Andrew Trick | ce27bb9 | 2012-06-29 03:23:22 +0000 | [diff] [blame] | 3052 | Top.bumpNode(SU); |
Andrew Trick | e833e1c | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 3053 | if (SU->hasPhysRegUses) |
| 3054 | reschedulePhysRegCopies(SU, true); |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 3055 | } else { |
Andrew Trick | fc127d1 | 2013-12-07 05:59:44 +0000 | [diff] [blame] | 3056 | SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle()); |
Andrew Trick | ce27bb9 | 2012-06-29 03:23:22 +0000 | [diff] [blame] | 3057 | Bot.bumpNode(SU); |
Andrew Trick | e833e1c | 2013-04-13 06:07:40 +0000 | [diff] [blame] | 3058 | if (SU->hasPhysRegDefs) |
| 3059 | reschedulePhysRegCopies(SU, false); |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 3060 | } |
| 3061 | } |
| 3062 | |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3063 | /// Create the standard converging machine scheduler. This will be used as the |
| 3064 | /// default scheduler if the target does not set a default. |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3065 | static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C) { |
David Blaikie | 422b93d | 2014-04-21 20:32:32 +0000 | [diff] [blame] | 3066 | ScheduleDAGMILive *DAG = new ScheduleDAGMILive(C, make_unique<GenericScheduler>(C)); |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 3067 | // Register DAG post-processors. |
Andrew Trick | 85a1d4c | 2013-04-24 15:54:43 +0000 | [diff] [blame] | 3068 | // |
| 3069 | // FIXME: extend the mutation API to allow earlier mutations to instantiate |
| 3070 | // data and pass it to later mutations. Have a single mutation that gathers |
| 3071 | // the interesting nodes in one pass. |
David Blaikie | 422b93d | 2014-04-21 20:32:32 +0000 | [diff] [blame] | 3072 | DAG->addMutation(make_unique<CopyConstrain>(DAG->TII, DAG->TRI)); |
Jun Bum Lim | 4c5bd58 | 2016-04-15 14:58:38 +0000 | [diff] [blame] | 3073 | if (EnableMemOpCluster) { |
| 3074 | if (DAG->TII->enableClusterLoads()) |
| 3075 | DAG->addMutation(make_unique<LoadClusterMutation>(DAG->TII, DAG->TRI)); |
| 3076 | if (DAG->TII->enableClusterStores()) |
| 3077 | DAG->addMutation(make_unique<StoreClusterMutation>(DAG->TII, DAG->TRI)); |
| 3078 | } |
Andrew Trick | 26328024 | 2012-11-12 19:52:20 +0000 | [diff] [blame] | 3079 | if (EnableMacroFusion) |
Matthias Braun | 2bd6dd8 | 2015-07-20 22:34:44 +0000 | [diff] [blame] | 3080 | DAG->addMutation(make_unique<MacroFusion>(*DAG->TII, *DAG->TRI)); |
Andrew Trick | a7714a0 | 2012-11-12 19:40:10 +0000 | [diff] [blame] | 3081 | return DAG; |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 3082 | } |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3083 | |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 3084 | static MachineSchedRegistry |
Andrew Trick | 665d3ec | 2013-09-19 23:10:59 +0000 | [diff] [blame] | 3085 | GenericSchedRegistry("converge", "Standard converging scheduler.", |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3086 | createGenericSchedLive); |
| 3087 | |
| 3088 | //===----------------------------------------------------------------------===// |
| 3089 | // PostGenericScheduler - Generic PostRA implementation of MachineSchedStrategy. |
| 3090 | //===----------------------------------------------------------------------===// |
| 3091 | |
Andrew Trick | 3ccf71d | 2014-06-04 07:06:18 +0000 | [diff] [blame] | 3092 | void PostGenericScheduler::initialize(ScheduleDAGMI *Dag) { |
| 3093 | DAG = Dag; |
| 3094 | SchedModel = DAG->getSchedModel(); |
| 3095 | TRI = DAG->TRI; |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3096 | |
Andrew Trick | 3ccf71d | 2014-06-04 07:06:18 +0000 | [diff] [blame] | 3097 | Rem.init(DAG, SchedModel); |
| 3098 | Top.init(DAG, SchedModel, &Rem); |
| 3099 | BotRoots.clear(); |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3100 | |
Andrew Trick | 3ccf71d | 2014-06-04 07:06:18 +0000 | [diff] [blame] | 3101 | // Initialize the HazardRecognizers. If itineraries don't exist, are empty, |
| 3102 | // or are disabled, then these HazardRecs will be disabled. |
| 3103 | const InstrItineraryData *Itin = SchedModel->getInstrItineraries(); |
Andrew Trick | 3ccf71d | 2014-06-04 07:06:18 +0000 | [diff] [blame] | 3104 | if (!Top.HazardRec) { |
| 3105 | Top.HazardRec = |
Eric Christopher | 99556d7 | 2014-10-14 06:56:25 +0000 | [diff] [blame] | 3106 | DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer( |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 3107 | Itin, DAG); |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3108 | } |
Andrew Trick | 3ccf71d | 2014-06-04 07:06:18 +0000 | [diff] [blame] | 3109 | } |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3110 | |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3111 | |
| 3112 | void PostGenericScheduler::registerRoots() { |
| 3113 | Rem.CriticalPath = DAG->ExitSU.getDepth(); |
| 3114 | |
| 3115 | // Some roots may not feed into ExitSU. Check all of them in case. |
| 3116 | for (SmallVectorImpl<SUnit*>::const_iterator |
| 3117 | I = BotRoots.begin(), E = BotRoots.end(); I != E; ++I) { |
| 3118 | if ((*I)->getDepth() > Rem.CriticalPath) |
| 3119 | Rem.CriticalPath = (*I)->getDepth(); |
| 3120 | } |
Gerolf Hoflehner | b5220dc | 2014-08-07 21:49:44 +0000 | [diff] [blame] | 3121 | DEBUG(dbgs() << "Critical Path: (PGS-RR) " << Rem.CriticalPath << '\n'); |
| 3122 | if (DumpCriticalPathLength) { |
| 3123 | errs() << "Critical Path(PGS-RR ): " << Rem.CriticalPath << " \n"; |
| 3124 | } |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3125 | } |
| 3126 | |
| 3127 | /// Apply a set of heursitics to a new candidate for PostRA scheduling. |
| 3128 | /// |
| 3129 | /// \param Cand provides the policy and current best candidate. |
| 3130 | /// \param TryCand refers to the next SUnit candidate, otherwise uninitialized. |
| 3131 | void PostGenericScheduler::tryCandidate(SchedCandidate &Cand, |
| 3132 | SchedCandidate &TryCand) { |
| 3133 | |
| 3134 | // Initialize the candidate if needed. |
| 3135 | if (!Cand.isValid()) { |
| 3136 | TryCand.Reason = NodeOrder; |
| 3137 | return; |
| 3138 | } |
| 3139 | |
| 3140 | // Prioritize instructions that read unbuffered resources by stall cycles. |
| 3141 | if (tryLess(Top.getLatencyStallCycles(TryCand.SU), |
| 3142 | Top.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall)) |
| 3143 | return; |
| 3144 | |
| 3145 | // Avoid critical resource consumption and balance the schedule. |
| 3146 | if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources, |
| 3147 | TryCand, Cand, ResourceReduce)) |
| 3148 | return; |
| 3149 | if (tryGreater(TryCand.ResDelta.DemandedResources, |
| 3150 | Cand.ResDelta.DemandedResources, |
| 3151 | TryCand, Cand, ResourceDemand)) |
| 3152 | return; |
| 3153 | |
| 3154 | // Avoid serializing long latency dependence chains. |
| 3155 | if (Cand.Policy.ReduceLatency && tryLatency(TryCand, Cand, Top)) { |
| 3156 | return; |
| 3157 | } |
| 3158 | |
| 3159 | // Fall through to original instruction order. |
| 3160 | if (TryCand.SU->NodeNum < Cand.SU->NodeNum) |
| 3161 | TryCand.Reason = NodeOrder; |
| 3162 | } |
| 3163 | |
| 3164 | void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) { |
| 3165 | ReadyQueue &Q = Top.Available; |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3166 | for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) { |
| 3167 | SchedCandidate TryCand(Cand.Policy); |
| 3168 | TryCand.SU = *I; |
| 3169 | TryCand.initResourceDelta(DAG, SchedModel); |
| 3170 | tryCandidate(Cand, TryCand); |
| 3171 | if (TryCand.Reason != NoCand) { |
| 3172 | Cand.setBest(TryCand); |
| 3173 | DEBUG(traceCandidate(Cand)); |
| 3174 | } |
| 3175 | } |
| 3176 | } |
| 3177 | |
| 3178 | /// Pick the next node to schedule. |
| 3179 | SUnit *PostGenericScheduler::pickNode(bool &IsTopNode) { |
| 3180 | if (DAG->top() == DAG->bottom()) { |
| 3181 | assert(Top.Available.empty() && Top.Pending.empty() && "ReadyQ garbage"); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3182 | return nullptr; |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3183 | } |
| 3184 | SUnit *SU; |
| 3185 | do { |
| 3186 | SU = Top.pickOnlyChoice(); |
Matthias Braun | 49cb6e9 | 2016-05-27 22:14:26 +0000 | [diff] [blame] | 3187 | if (SU) { |
| 3188 | tracePick(Only1, true); |
| 3189 | } else { |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3190 | CandPolicy NoPolicy; |
| 3191 | SchedCandidate TopCand(NoPolicy); |
| 3192 | // Set the top-down policy based on the state of the current top zone and |
| 3193 | // the instructions outside the zone, including the bottom zone. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3194 | setPolicy(TopCand.Policy, /*IsPostRA=*/true, Top, nullptr); |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3195 | pickNodeFromQueue(TopCand); |
| 3196 | assert(TopCand.Reason != NoCand && "failed to find a candidate"); |
| 3197 | tracePick(TopCand, true); |
| 3198 | SU = TopCand.SU; |
| 3199 | } |
| 3200 | } while (SU->isScheduled); |
| 3201 | |
| 3202 | IsTopNode = true; |
| 3203 | Top.removeReady(SU); |
| 3204 | |
| 3205 | DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr()); |
| 3206 | return SU; |
| 3207 | } |
| 3208 | |
| 3209 | /// Called after ScheduleDAGMI has scheduled an instruction and updated |
| 3210 | /// scheduled/remaining flags in the DAG nodes. |
| 3211 | void PostGenericScheduler::schedNode(SUnit *SU, bool IsTopNode) { |
| 3212 | SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle()); |
| 3213 | Top.bumpNode(SU); |
| 3214 | } |
| 3215 | |
| 3216 | /// Create a generic scheduler with no vreg liveness or DAG mutation passes. |
| 3217 | static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C) { |
David Blaikie | 422b93d | 2014-04-21 20:32:32 +0000 | [diff] [blame] | 3218 | return new ScheduleDAGMI(C, make_unique<PostGenericScheduler>(C), /*IsPostRA=*/true); |
Andrew Trick | d14d7c2 | 2013-12-28 21:56:57 +0000 | [diff] [blame] | 3219 | } |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 3220 | |
| 3221 | //===----------------------------------------------------------------------===// |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3222 | // ILP Scheduler. Currently for experimental analysis of heuristics. |
| 3223 | //===----------------------------------------------------------------------===// |
| 3224 | |
| 3225 | namespace { |
| 3226 | /// \brief Order nodes by the ILP metric. |
| 3227 | struct ILPOrder { |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 3228 | const SchedDFSResult *DFSResult; |
| 3229 | const BitVector *ScheduledTrees; |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3230 | bool MaximizeILP; |
| 3231 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3232 | ILPOrder(bool MaxILP) |
| 3233 | : DFSResult(nullptr), ScheduledTrees(nullptr), MaximizeILP(MaxILP) {} |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3234 | |
| 3235 | /// \brief Apply a less-than relation on node priority. |
Andrew Trick | 48d392e | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 3236 | /// |
| 3237 | /// (Return true if A comes after B in the Q.) |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3238 | bool operator()(const SUnit *A, const SUnit *B) const { |
Andrew Trick | 48d392e | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 3239 | unsigned SchedTreeA = DFSResult->getSubtreeID(A); |
| 3240 | unsigned SchedTreeB = DFSResult->getSubtreeID(B); |
| 3241 | if (SchedTreeA != SchedTreeB) { |
| 3242 | // Unscheduled trees have lower priority. |
| 3243 | if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB)) |
| 3244 | return ScheduledTrees->test(SchedTreeB); |
| 3245 | |
| 3246 | // Trees with shallower connections have have lower priority. |
| 3247 | if (DFSResult->getSubtreeLevel(SchedTreeA) |
| 3248 | != DFSResult->getSubtreeLevel(SchedTreeB)) { |
| 3249 | return DFSResult->getSubtreeLevel(SchedTreeA) |
| 3250 | < DFSResult->getSubtreeLevel(SchedTreeB); |
| 3251 | } |
| 3252 | } |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3253 | if (MaximizeILP) |
Andrew Trick | 48d392e | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 3254 | return DFSResult->getILP(A) < DFSResult->getILP(B); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3255 | else |
Andrew Trick | 48d392e | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 3256 | return DFSResult->getILP(A) > DFSResult->getILP(B); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3257 | } |
| 3258 | }; |
| 3259 | |
| 3260 | /// \brief Schedule based on the ILP metric. |
| 3261 | class ILPScheduler : public MachineSchedStrategy { |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 3262 | ScheduleDAGMILive *DAG; |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3263 | ILPOrder Cmp; |
| 3264 | |
| 3265 | std::vector<SUnit*> ReadyQ; |
| 3266 | public: |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3267 | ILPScheduler(bool MaximizeILP): DAG(nullptr), Cmp(MaximizeILP) {} |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3268 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 3269 | void initialize(ScheduleDAGMI *dag) override { |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 3270 | assert(dag->hasVRegLiveness() && "ILPScheduler needs vreg liveness"); |
| 3271 | DAG = static_cast<ScheduleDAGMILive*>(dag); |
Andrew Trick | e2c3f5c | 2013-01-25 06:33:57 +0000 | [diff] [blame] | 3272 | DAG->computeDFSResult(); |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 3273 | Cmp.DFSResult = DAG->getDFSResult(); |
| 3274 | Cmp.ScheduledTrees = &DAG->getScheduledTrees(); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3275 | ReadyQ.clear(); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3276 | } |
| 3277 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 3278 | void registerRoots() override { |
Benjamin Kramer | aa598b3 | 2012-11-29 14:36:26 +0000 | [diff] [blame] | 3279 | // Restore the heap in ReadyQ with the updated DFS results. |
| 3280 | std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3281 | } |
| 3282 | |
| 3283 | /// Implement MachineSchedStrategy interface. |
| 3284 | /// ----------------------------------------- |
| 3285 | |
Andrew Trick | 48d392e | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 3286 | /// Callback to select the highest priority node from the ready Q. |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 3287 | SUnit *pickNode(bool &IsTopNode) override { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3288 | if (ReadyQ.empty()) return nullptr; |
Matt Arsenault | 4ab769f | 2013-03-21 00:57:21 +0000 | [diff] [blame] | 3289 | std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3290 | SUnit *SU = ReadyQ.back(); |
| 3291 | ReadyQ.pop_back(); |
| 3292 | IsTopNode = false; |
Andrew Trick | 1f0bb69 | 2013-04-13 06:07:49 +0000 | [diff] [blame] | 3293 | DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") " |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 3294 | << " ILP: " << DAG->getDFSResult()->getILP(SU) |
| 3295 | << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @" |
| 3296 | << DAG->getDFSResult()->getSubtreeLevel( |
Andrew Trick | 1f0bb69 | 2013-04-13 06:07:49 +0000 | [diff] [blame] | 3297 | DAG->getDFSResult()->getSubtreeID(SU)) << '\n' |
| 3298 | << "Scheduling " << *SU->getInstr()); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3299 | return SU; |
| 3300 | } |
| 3301 | |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 3302 | /// \brief Scheduler callback to notify that a new subtree is scheduled. |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 3303 | void scheduleTree(unsigned SubtreeID) override { |
Andrew Trick | 44f750a | 2013-01-25 04:01:04 +0000 | [diff] [blame] | 3304 | std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp); |
| 3305 | } |
| 3306 | |
Andrew Trick | 48d392e | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 3307 | /// Callback after a node is scheduled. Mark a newly scheduled tree, notify |
| 3308 | /// DFSResults, and resort the priority Q. |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 3309 | void schedNode(SUnit *SU, bool IsTopNode) override { |
Andrew Trick | 48d392e | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 3310 | assert(!IsTopNode && "SchedDFSResult needs bottom-up"); |
Andrew Trick | 48d392e | 2012-11-28 05:13:28 +0000 | [diff] [blame] | 3311 | } |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3312 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 3313 | void releaseTopNode(SUnit *) override { /*only called for top roots*/ } |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3314 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 3315 | void releaseBottomNode(SUnit *SU) override { |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3316 | ReadyQ.push_back(SU); |
| 3317 | std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp); |
| 3318 | } |
| 3319 | }; |
| 3320 | } // namespace |
| 3321 | |
| 3322 | static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) { |
David Blaikie | 422b93d | 2014-04-21 20:32:32 +0000 | [diff] [blame] | 3323 | return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(true)); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3324 | } |
| 3325 | static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) { |
David Blaikie | 422b93d | 2014-04-21 20:32:32 +0000 | [diff] [blame] | 3326 | return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(false)); |
Andrew Trick | 90f711d | 2012-10-15 18:02:27 +0000 | [diff] [blame] | 3327 | } |
| 3328 | static MachineSchedRegistry ILPMaxRegistry( |
| 3329 | "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler); |
| 3330 | static MachineSchedRegistry ILPMinRegistry( |
| 3331 | "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler); |
| 3332 | |
| 3333 | //===----------------------------------------------------------------------===// |
Andrew Trick | 6344087 | 2012-01-14 02:17:06 +0000 | [diff] [blame] | 3334 | // Machine Instruction Shuffler for Correctness Testing |
| 3335 | //===----------------------------------------------------------------------===// |
| 3336 | |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 3337 | #ifndef NDEBUG |
| 3338 | namespace { |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3339 | /// Apply a less-than relation on the node order, which corresponds to the |
| 3340 | /// instruction order prior to scheduling. IsReverse implements greater-than. |
| 3341 | template<bool IsReverse> |
| 3342 | struct SUnitOrder { |
Andrew Trick | 7ccdc5c | 2012-01-17 06:55:07 +0000 | [diff] [blame] | 3343 | bool operator()(SUnit *A, SUnit *B) const { |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3344 | if (IsReverse) |
| 3345 | return A->NodeNum > B->NodeNum; |
| 3346 | else |
| 3347 | return A->NodeNum < B->NodeNum; |
Andrew Trick | 7ccdc5c | 2012-01-17 06:55:07 +0000 | [diff] [blame] | 3348 | } |
| 3349 | }; |
| 3350 | |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 3351 | /// Reorder instructions as much as possible. |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3352 | class InstructionShuffler : public MachineSchedStrategy { |
| 3353 | bool IsAlternating; |
| 3354 | bool IsTopDown; |
| 3355 | |
| 3356 | // Using a less-than relation (SUnitOrder<false>) for the TopQ priority |
| 3357 | // gives nodes with a higher number higher priority causing the latest |
| 3358 | // instructions to be scheduled first. |
| 3359 | PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> > |
| 3360 | TopQ; |
| 3361 | // When scheduling bottom-up, use greater-than as the queue priority. |
| 3362 | PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> > |
| 3363 | BottomQ; |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 3364 | public: |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3365 | InstructionShuffler(bool alternate, bool topdown) |
| 3366 | : IsAlternating(alternate), IsTopDown(topdown) {} |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 3367 | |
Craig Topper | 9d74a5a | 2014-04-29 07:58:41 +0000 | [diff] [blame] | 3368 | void initialize(ScheduleDAGMI*) override { |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3369 | TopQ.clear(); |
| 3370 | BottomQ.clear(); |
| 3371 | } |
Andrew Trick | 7ccdc5c | 2012-01-17 06:55:07 +0000 | [diff] [blame] | 3372 | |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3373 | /// Implement MachineSchedStrategy interface. |
| 3374 | /// ----------------------------------------- |
| 3375 | |
Craig Topper | 9d74a5a | 2014-04-29 07:58:41 +0000 | [diff] [blame] | 3376 | SUnit *pickNode(bool &IsTopNode) override { |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3377 | SUnit *SU; |
| 3378 | if (IsTopDown) { |
| 3379 | do { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3380 | if (TopQ.empty()) return nullptr; |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3381 | SU = TopQ.top(); |
| 3382 | TopQ.pop(); |
| 3383 | } while (SU->isScheduled); |
| 3384 | IsTopNode = true; |
Matthias Braun | b550b76 | 2016-04-21 01:54:13 +0000 | [diff] [blame] | 3385 | } else { |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3386 | do { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3387 | if (BottomQ.empty()) return nullptr; |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3388 | SU = BottomQ.top(); |
| 3389 | BottomQ.pop(); |
| 3390 | } while (SU->isScheduled); |
| 3391 | IsTopNode = false; |
| 3392 | } |
| 3393 | if (IsAlternating) |
| 3394 | IsTopDown = !IsTopDown; |
Andrew Trick | 7ccdc5c | 2012-01-17 06:55:07 +0000 | [diff] [blame] | 3395 | return SU; |
| 3396 | } |
| 3397 | |
Craig Topper | 9d74a5a | 2014-04-29 07:58:41 +0000 | [diff] [blame] | 3398 | void schedNode(SUnit *SU, bool IsTopNode) override {} |
Andrew Trick | 61f1a27 | 2012-05-24 22:11:09 +0000 | [diff] [blame] | 3399 | |
Craig Topper | 9d74a5a | 2014-04-29 07:58:41 +0000 | [diff] [blame] | 3400 | void releaseTopNode(SUnit *SU) override { |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3401 | TopQ.push(SU); |
| 3402 | } |
Craig Topper | 9d74a5a | 2014-04-29 07:58:41 +0000 | [diff] [blame] | 3403 | void releaseBottomNode(SUnit *SU) override { |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3404 | BottomQ.push(SU); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 3405 | } |
| 3406 | }; |
| 3407 | } // namespace |
| 3408 | |
Andrew Trick | 02a80da | 2012-03-08 01:41:12 +0000 | [diff] [blame] | 3409 | static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) { |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3410 | bool Alternate = !ForceTopDown && !ForceBottomUp; |
| 3411 | bool TopDown = !ForceBottomUp; |
Benjamin Kramer | 05e7a84 | 2012-03-14 11:26:37 +0000 | [diff] [blame] | 3412 | assert((TopDown || !ForceTopDown) && |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3413 | "-misched-topdown incompatible with -misched-bottomup"); |
David Blaikie | 422b93d | 2014-04-21 20:32:32 +0000 | [diff] [blame] | 3414 | return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown)); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 3415 | } |
Andrew Trick | 8823dec | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 3416 | static MachineSchedRegistry ShufflerRegistry( |
| 3417 | "shuffle", "Shuffle machine instructions alternating directions", |
| 3418 | createInstructionShuffler); |
Andrew Trick | e77e84e | 2012-01-13 06:30:30 +0000 | [diff] [blame] | 3419 | #endif // !NDEBUG |
Andrew Trick | ea9fd95 | 2013-01-25 07:45:29 +0000 | [diff] [blame] | 3420 | |
| 3421 | //===----------------------------------------------------------------------===// |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 3422 | // GraphWriter support for ScheduleDAGMILive. |
Andrew Trick | ea9fd95 | 2013-01-25 07:45:29 +0000 | [diff] [blame] | 3423 | //===----------------------------------------------------------------------===// |
| 3424 | |
| 3425 | #ifndef NDEBUG |
| 3426 | namespace llvm { |
| 3427 | |
| 3428 | template<> struct GraphTraits< |
| 3429 | ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {}; |
| 3430 | |
| 3431 | template<> |
| 3432 | struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits { |
| 3433 | |
| 3434 | DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} |
| 3435 | |
| 3436 | static std::string getGraphName(const ScheduleDAG *G) { |
| 3437 | return G->MF.getName(); |
| 3438 | } |
| 3439 | |
| 3440 | static bool renderGraphFromBottomUp() { |
| 3441 | return true; |
| 3442 | } |
| 3443 | |
| 3444 | static bool isNodeHidden(const SUnit *Node) { |
Matthias Braun | d78ee54 | 2015-09-17 21:09:59 +0000 | [diff] [blame] | 3445 | if (ViewMISchedCutoff == 0) |
| 3446 | return false; |
| 3447 | return (Node->Preds.size() > ViewMISchedCutoff |
| 3448 | || Node->Succs.size() > ViewMISchedCutoff); |
Andrew Trick | ea9fd95 | 2013-01-25 07:45:29 +0000 | [diff] [blame] | 3449 | } |
| 3450 | |
Andrew Trick | ea9fd95 | 2013-01-25 07:45:29 +0000 | [diff] [blame] | 3451 | /// If you want to override the dot attributes printed for a particular |
| 3452 | /// edge, override this method. |
| 3453 | static std::string getEdgeAttributes(const SUnit *Node, |
| 3454 | SUnitIterator EI, |
| 3455 | const ScheduleDAG *Graph) { |
| 3456 | if (EI.isArtificialDep()) |
| 3457 | return "color=cyan,style=dashed"; |
| 3458 | if (EI.isCtrlDep()) |
| 3459 | return "color=blue,style=dashed"; |
| 3460 | return ""; |
| 3461 | } |
| 3462 | |
| 3463 | static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) { |
Alp Toker | e69170a | 2014-06-26 22:52:05 +0000 | [diff] [blame] | 3464 | std::string Str; |
| 3465 | raw_string_ostream SS(Str); |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 3466 | const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G); |
| 3467 | const SchedDFSResult *DFS = DAG->hasVRegLiveness() ? |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3468 | static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr; |
Andrew Trick | 7609b7d | 2013-09-06 17:32:42 +0000 | [diff] [blame] | 3469 | SS << "SU:" << SU->NodeNum; |
| 3470 | if (DFS) |
| 3471 | SS << " I:" << DFS->getNumInstrs(SU); |
Andrew Trick | ea9fd95 | 2013-01-25 07:45:29 +0000 | [diff] [blame] | 3472 | return SS.str(); |
| 3473 | } |
| 3474 | static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) { |
| 3475 | return G->getGraphNodeLabel(SU); |
| 3476 | } |
| 3477 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 3478 | static std::string getNodeAttributes(const SUnit *N, const ScheduleDAG *G) { |
Andrew Trick | ea9fd95 | 2013-01-25 07:45:29 +0000 | [diff] [blame] | 3479 | std::string Str("shape=Mrecord"); |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 3480 | const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G); |
| 3481 | const SchedDFSResult *DFS = DAG->hasVRegLiveness() ? |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 3482 | static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr; |
Andrew Trick | ea9fd95 | 2013-01-25 07:45:29 +0000 | [diff] [blame] | 3483 | if (DFS) { |
| 3484 | Str += ",style=filled,fillcolor=\"#"; |
| 3485 | Str += DOT::getColorString(DFS->getSubtreeID(N)); |
| 3486 | Str += '"'; |
| 3487 | } |
| 3488 | return Str; |
| 3489 | } |
| 3490 | }; |
| 3491 | } // namespace llvm |
| 3492 | #endif // NDEBUG |
| 3493 | |
| 3494 | /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG |
| 3495 | /// rendered using 'dot'. |
| 3496 | /// |
| 3497 | void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) { |
| 3498 | #ifndef NDEBUG |
| 3499 | ViewGraph(this, Name, false, Title); |
| 3500 | #else |
| 3501 | errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on " |
| 3502 | << "systems with Graphviz or gv!\n"; |
| 3503 | #endif // NDEBUG |
| 3504 | } |
| 3505 | |
| 3506 | /// Out-of-line implementation with no arguments is handy for gdb. |
| 3507 | void ScheduleDAGMI::viewGraph() { |
| 3508 | viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName()); |
| 3509 | } |