Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 1 | //===----- ScheduleDAGFast.cpp - Fast poor list scheduler -----------------===// |
| 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 | // This implements a fast scheduler. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "InstrEmitter.h" |
| 15 | #include "ScheduleDAGSDNodes.h" |
| 16 | #include "llvm/ADT/STLExtras.h" |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SmallSet.h" |
| 18 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/SchedulerRegistry.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/SelectionDAGISel.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 23 | #include "llvm/IR/DataLayout.h" |
| 24 | #include "llvm/IR/InlineAsm.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Debug.h" |
Torok Edwin | ccb29cd | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 26 | #include "llvm/Support/ErrorHandling.h" |
Chris Lattner | 4dc3edd | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 30 | #define DEBUG_TYPE "pre-RA-sched" |
| 31 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 32 | STATISTIC(NumUnfolds, "Number of nodes unfolded"); |
| 33 | STATISTIC(NumDups, "Number of duplicated nodes"); |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 34 | STATISTIC(NumPRCopies, "Number of physical copies"); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 35 | |
| 36 | static RegisterScheduler |
Dan Gohman | 9c4b7d5 | 2008-10-14 20:25:08 +0000 | [diff] [blame] | 37 | fastDAGScheduler("fast", "Fast suboptimal list scheduling", |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 38 | createFastDAGScheduler); |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 39 | static RegisterScheduler |
| 40 | linearizeDAGScheduler("linearize", "Linearize DAG, no scheduling", |
| 41 | createDAGLinearizer); |
| 42 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 43 | |
| 44 | namespace { |
| 45 | /// FastPriorityQueue - A degenerate priority queue that considers |
| 46 | /// all nodes to have the same priority. |
| 47 | /// |
Nick Lewycky | 02d5f77 | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 48 | struct FastPriorityQueue { |
Dan Gohman | c07f686 | 2008-09-23 18:50:48 +0000 | [diff] [blame] | 49 | SmallVector<SUnit *, 16> Queue; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 50 | |
| 51 | bool empty() const { return Queue.empty(); } |
Andrew Trick | 7c6c41a | 2012-03-07 05:21:32 +0000 | [diff] [blame] | 52 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 53 | void push(SUnit *U) { |
| 54 | Queue.push_back(U); |
| 55 | } |
| 56 | |
| 57 | SUnit *pop() { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 58 | if (empty()) return nullptr; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 59 | SUnit *V = Queue.back(); |
| 60 | Queue.pop_back(); |
| 61 | return V; |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | //===----------------------------------------------------------------------===// |
| 66 | /// ScheduleDAGFast - The actual "fast" list scheduler implementation. |
| 67 | /// |
Nick Lewycky | 02d5f77 | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 68 | class ScheduleDAGFast : public ScheduleDAGSDNodes { |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 69 | private: |
| 70 | /// AvailableQueue - The priority queue to use for the available SUnits. |
| 71 | FastPriorityQueue AvailableQueue; |
| 72 | |
Dan Gohman | c07f686 | 2008-09-23 18:50:48 +0000 | [diff] [blame] | 73 | /// LiveRegDefs - A set of physical registers and their definition |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 74 | /// that are "live". These nodes must be scheduled before any other nodes that |
| 75 | /// modifies the registers can be scheduled. |
Dan Gohman | c07f686 | 2008-09-23 18:50:48 +0000 | [diff] [blame] | 76 | unsigned NumLiveRegs; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 77 | std::vector<SUnit*> LiveRegDefs; |
| 78 | std::vector<unsigned> LiveRegCycles; |
| 79 | |
| 80 | public: |
Dan Gohman | 619ef48 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 81 | ScheduleDAGFast(MachineFunction &mf) |
| 82 | : ScheduleDAGSDNodes(mf) {} |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 83 | |
Craig Topper | 7b883b3 | 2014-03-08 06:31:39 +0000 | [diff] [blame] | 84 | void Schedule() override; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 85 | |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 86 | /// AddPred - adds a predecessor edge to SUnit SU. |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 87 | /// This returns true if this is a new predecessor. |
Dan Gohman | 17214e6 | 2008-12-16 01:00:55 +0000 | [diff] [blame] | 88 | void AddPred(SUnit *SU, const SDep &D) { |
| 89 | SU->addPred(D); |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 90 | } |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 91 | |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 92 | /// RemovePred - removes a predecessor edge from SUnit SU. |
| 93 | /// This returns true if an edge was removed. |
Dan Gohman | 17214e6 | 2008-12-16 01:00:55 +0000 | [diff] [blame] | 94 | void RemovePred(SUnit *SU, const SDep &D) { |
| 95 | SU->removePred(D); |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 96 | } |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 97 | |
| 98 | private: |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 99 | void ReleasePred(SUnit *SU, SDep *PredEdge); |
Dan Gohman | b954343 | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 100 | void ReleasePredecessors(SUnit *SU, unsigned CurCycle); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 101 | void ScheduleNodeBottomUp(SUnit*, unsigned); |
| 102 | SUnit *CopyAndMoveSuccessors(SUnit*); |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 103 | void InsertCopiesAndMoveSuccs(SUnit*, unsigned, |
| 104 | const TargetRegisterClass*, |
| 105 | const TargetRegisterClass*, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 106 | SmallVectorImpl<SUnit*>&); |
| 107 | bool DelayForLiveRegsBottomUp(SUnit*, SmallVectorImpl<unsigned>&); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 108 | void ListScheduleBottomUp(); |
Dan Gohman | dddc1ac | 2008-12-16 03:25:46 +0000 | [diff] [blame] | 109 | |
Andrew Trick | 52226d4 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 110 | /// forceUnitLatencies - The fast scheduler doesn't care about real latencies. |
Craig Topper | 7b883b3 | 2014-03-08 06:31:39 +0000 | [diff] [blame] | 111 | bool forceUnitLatencies() const override { return true; } |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 112 | }; |
| 113 | } // end anonymous namespace |
| 114 | |
| 115 | |
| 116 | /// Schedule - Schedule the DAG using list scheduling. |
| 117 | void ScheduleDAGFast::Schedule() { |
David Greene | d65bc15 | 2010-01-05 01:25:09 +0000 | [diff] [blame] | 118 | DEBUG(dbgs() << "********** List Scheduling **********\n"); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 119 | |
Dan Gohman | c07f686 | 2008-09-23 18:50:48 +0000 | [diff] [blame] | 120 | NumLiveRegs = 0; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 121 | LiveRegDefs.resize(TRI->getNumRegs(), nullptr); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 122 | LiveRegCycles.resize(TRI->getNumRegs(), 0); |
| 123 | |
Dan Gohman | 04543e7 | 2008-12-23 18:36:58 +0000 | [diff] [blame] | 124 | // Build the scheduling graph. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 125 | BuildSchedGraph(nullptr); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 126 | |
| 127 | DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su) |
Dan Gohman | 22d07b1 | 2008-11-18 02:06:40 +0000 | [diff] [blame] | 128 | SUnits[su].dumpAll(this)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 129 | |
| 130 | // Execute the actual scheduling loop. |
| 131 | ListScheduleBottomUp(); |
| 132 | } |
| 133 | |
| 134 | //===----------------------------------------------------------------------===// |
| 135 | // Bottom-Up Scheduling |
| 136 | //===----------------------------------------------------------------------===// |
| 137 | |
| 138 | /// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. Add it to |
| 139 | /// the AvailableQueue if the count reaches zero. Also update its cycle bound. |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 140 | void ScheduleDAGFast::ReleasePred(SUnit *SU, SDep *PredEdge) { |
| 141 | SUnit *PredSU = PredEdge->getSUnit(); |
Reid Kleckner | 8ff5c19 | 2009-09-30 20:15:38 +0000 | [diff] [blame] | 142 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 143 | #ifndef NDEBUG |
Reid Kleckner | 8ff5c19 | 2009-09-30 20:15:38 +0000 | [diff] [blame] | 144 | if (PredSU->NumSuccsLeft == 0) { |
David Greene | d65bc15 | 2010-01-05 01:25:09 +0000 | [diff] [blame] | 145 | dbgs() << "*** Scheduling failed! ***\n"; |
Dan Gohman | 22d07b1 | 2008-11-18 02:06:40 +0000 | [diff] [blame] | 146 | PredSU->dump(this); |
David Greene | d65bc15 | 2010-01-05 01:25:09 +0000 | [diff] [blame] | 147 | dbgs() << " has been released too many times!\n"; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 148 | llvm_unreachable(nullptr); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 149 | } |
| 150 | #endif |
Reid Kleckner | 8ff5c19 | 2009-09-30 20:15:38 +0000 | [diff] [blame] | 151 | --PredSU->NumSuccsLeft; |
| 152 | |
Dan Gohman | b954343 | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 153 | // If all the node's successors are scheduled, this node is ready |
| 154 | // to be scheduled. Ignore the special EntrySU node. |
| 155 | if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) { |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 156 | PredSU->isAvailable = true; |
| 157 | AvailableQueue.push(PredSU); |
| 158 | } |
| 159 | } |
| 160 | |
Dan Gohman | b954343 | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 161 | void ScheduleDAGFast::ReleasePredecessors(SUnit *SU, unsigned CurCycle) { |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 162 | // Bottom up: release predecessors |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 163 | for (SDep &Pred : SU->Preds) { |
| 164 | ReleasePred(SU, &Pred); |
| 165 | if (Pred.isAssignedRegDep()) { |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 166 | // This is a physical register dependency and it's impossible or |
Andrew Trick | 7c6c41a | 2012-03-07 05:21:32 +0000 | [diff] [blame] | 167 | // expensive to copy the register. Make sure nothing that can |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 168 | // clobber the register is scheduled between the predecessor and |
| 169 | // this node. |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 170 | if (!LiveRegDefs[Pred.getReg()]) { |
Dan Gohman | c07f686 | 2008-09-23 18:50:48 +0000 | [diff] [blame] | 171 | ++NumLiveRegs; |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 172 | LiveRegDefs[Pred.getReg()] = Pred.getSUnit(); |
| 173 | LiveRegCycles[Pred.getReg()] = CurCycle; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 174 | } |
| 175 | } |
| 176 | } |
Dan Gohman | b954343 | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | /// ScheduleNodeBottomUp - Add the node to the schedule. Decrement the pending |
| 180 | /// count of its predecessors. If a predecessor pending count is zero, add it to |
| 181 | /// the Available queue. |
| 182 | void ScheduleDAGFast::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) { |
David Greene | d65bc15 | 2010-01-05 01:25:09 +0000 | [diff] [blame] | 183 | DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: "); |
Dan Gohman | b954343 | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 184 | DEBUG(SU->dump(this)); |
| 185 | |
| 186 | assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!"); |
| 187 | SU->setHeightToAtLeast(CurCycle); |
| 188 | Sequence.push_back(SU); |
| 189 | |
| 190 | ReleasePredecessors(SU, CurCycle); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 191 | |
| 192 | // Release all the implicit physical register defs that are live. |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 193 | for (SDep &Succ : SU->Succs) { |
| 194 | if (Succ.isAssignedRegDep()) { |
| 195 | if (LiveRegCycles[Succ.getReg()] == Succ.getSUnit()->getHeight()) { |
Dan Gohman | c07f686 | 2008-09-23 18:50:48 +0000 | [diff] [blame] | 196 | assert(NumLiveRegs > 0 && "NumLiveRegs is already zero!"); |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 197 | assert(LiveRegDefs[Succ.getReg()] == SU && |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 198 | "Physical register dependency violated?"); |
Dan Gohman | c07f686 | 2008-09-23 18:50:48 +0000 | [diff] [blame] | 199 | --NumLiveRegs; |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 200 | LiveRegDefs[Succ.getReg()] = nullptr; |
| 201 | LiveRegCycles[Succ.getReg()] = 0; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 202 | } |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | SU->isScheduled = true; |
| 207 | } |
| 208 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 209 | /// CopyAndMoveSuccessors - Clone the specified node and move its scheduled |
| 210 | /// successors to the newly created node. |
| 211 | SUnit *ScheduleDAGFast::CopyAndMoveSuccessors(SUnit *SU) { |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 212 | if (SU->getNode()->getGluedNode()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 213 | return nullptr; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 214 | |
Dan Gohman | 1ddfcba | 2008-11-13 21:36:12 +0000 | [diff] [blame] | 215 | SDNode *N = SU->getNode(); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 216 | if (!N) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 217 | return nullptr; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 218 | |
| 219 | SUnit *NewSU; |
| 220 | bool TryUnfold = false; |
| 221 | for (unsigned i = 0, e = N->getNumValues(); i != e; ++i) { |
Craig Topper | 7f416c8 | 2014-11-16 21:17:18 +0000 | [diff] [blame] | 222 | MVT VT = N->getSimpleValueType(i); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 223 | if (VT == MVT::Glue) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 224 | return nullptr; |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 225 | else if (VT == MVT::Other) |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 226 | TryUnfold = true; |
| 227 | } |
Pete Cooper | 9271ccc | 2015-06-26 19:18:49 +0000 | [diff] [blame] | 228 | for (const SDValue &Op : N->op_values()) { |
Craig Topper | 7f416c8 | 2014-11-16 21:17:18 +0000 | [diff] [blame] | 229 | MVT VT = Op.getNode()->getSimpleValueType(Op.getResNo()); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 230 | if (VT == MVT::Glue) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 231 | return nullptr; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | if (TryUnfold) { |
| 235 | SmallVector<SDNode*, 2> NewNodes; |
Dan Gohman | 5a390b9 | 2008-11-13 21:21:28 +0000 | [diff] [blame] | 236 | if (!TII->unfoldMemoryOperand(*DAG, N, NewNodes)) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 237 | return nullptr; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 238 | |
David Greene | d65bc15 | 2010-01-05 01:25:09 +0000 | [diff] [blame] | 239 | DEBUG(dbgs() << "Unfolding SU # " << SU->NodeNum << "\n"); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 240 | assert(NewNodes.size() == 2 && "Expected a load folding node!"); |
| 241 | |
| 242 | N = NewNodes[1]; |
| 243 | SDNode *LoadNode = NewNodes[0]; |
| 244 | unsigned NumVals = N->getNumValues(); |
Dan Gohman | 1ddfcba | 2008-11-13 21:36:12 +0000 | [diff] [blame] | 245 | unsigned OldNumVals = SU->getNode()->getNumValues(); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 246 | for (unsigned i = 0; i != NumVals; ++i) |
Dan Gohman | 1ddfcba | 2008-11-13 21:36:12 +0000 | [diff] [blame] | 247 | DAG->ReplaceAllUsesOfValueWith(SDValue(SU->getNode(), i), SDValue(N, i)); |
| 248 | DAG->ReplaceAllUsesOfValueWith(SDValue(SU->getNode(), OldNumVals-1), |
Dan Gohman | 5a390b9 | 2008-11-13 21:21:28 +0000 | [diff] [blame] | 249 | SDValue(LoadNode, 1)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 250 | |
Andrew Trick | 52226d4 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 251 | SUnit *NewSU = newSUnit(N); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 252 | assert(N->getNodeId() == -1 && "Node already inserted!"); |
| 253 | N->setNodeId(NewSU->NodeNum); |
Andrew Trick | 7c6c41a | 2012-03-07 05:21:32 +0000 | [diff] [blame] | 254 | |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 255 | const MCInstrDesc &MCID = TII->get(N->getMachineOpcode()); |
| 256 | for (unsigned i = 0; i != MCID.getNumOperands(); ++i) { |
| 257 | if (MCID.getOperandConstraint(i, MCOI::TIED_TO) != -1) { |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 258 | NewSU->isTwoAddress = true; |
| 259 | break; |
| 260 | } |
| 261 | } |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 262 | if (MCID.isCommutable()) |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 263 | NewSU->isCommutable = true; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 264 | |
| 265 | // LoadNode may already exist. This can happen when there is another |
| 266 | // load from the same location and producing the same type of value |
| 267 | // but it has different alignment or volatileness. |
| 268 | bool isNewLoad = true; |
| 269 | SUnit *LoadSU; |
| 270 | if (LoadNode->getNodeId() != -1) { |
| 271 | LoadSU = &SUnits[LoadNode->getNodeId()]; |
| 272 | isNewLoad = false; |
| 273 | } else { |
Andrew Trick | 52226d4 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 274 | LoadSU = newSUnit(LoadNode); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 275 | LoadNode->setNodeId(LoadSU->NodeNum); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 278 | SDep ChainPred; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 279 | SmallVector<SDep, 4> ChainSuccs; |
| 280 | SmallVector<SDep, 4> LoadPreds; |
| 281 | SmallVector<SDep, 4> NodePreds; |
| 282 | SmallVector<SDep, 4> NodeSuccs; |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 283 | for (SDep &Pred : SU->Preds) { |
| 284 | if (Pred.isCtrl()) |
| 285 | ChainPred = Pred; |
| 286 | else if (Pred.getSUnit()->getNode() && |
| 287 | Pred.getSUnit()->getNode()->isOperandOf(LoadNode)) |
| 288 | LoadPreds.push_back(Pred); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 289 | else |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 290 | NodePreds.push_back(Pred); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 291 | } |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 292 | for (SDep &Succ : SU->Succs) { |
| 293 | if (Succ.isCtrl()) |
| 294 | ChainSuccs.push_back(Succ); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 295 | else |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 296 | NodeSuccs.push_back(Succ); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 299 | if (ChainPred.getSUnit()) { |
| 300 | RemovePred(SU, ChainPred); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 301 | if (isNewLoad) |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 302 | AddPred(LoadSU, ChainPred); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 303 | } |
| 304 | for (unsigned i = 0, e = LoadPreds.size(); i != e; ++i) { |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 305 | const SDep &Pred = LoadPreds[i]; |
| 306 | RemovePred(SU, Pred); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 307 | if (isNewLoad) { |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 308 | AddPred(LoadSU, Pred); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 309 | } |
| 310 | } |
| 311 | for (unsigned i = 0, e = NodePreds.size(); i != e; ++i) { |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 312 | const SDep &Pred = NodePreds[i]; |
| 313 | RemovePred(SU, Pred); |
| 314 | AddPred(NewSU, Pred); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 315 | } |
| 316 | for (unsigned i = 0, e = NodeSuccs.size(); i != e; ++i) { |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 317 | SDep D = NodeSuccs[i]; |
| 318 | SUnit *SuccDep = D.getSUnit(); |
| 319 | D.setSUnit(SU); |
| 320 | RemovePred(SuccDep, D); |
| 321 | D.setSUnit(NewSU); |
| 322 | AddPred(SuccDep, D); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 323 | } |
| 324 | for (unsigned i = 0, e = ChainSuccs.size(); i != e; ++i) { |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 325 | SDep D = ChainSuccs[i]; |
| 326 | SUnit *SuccDep = D.getSUnit(); |
| 327 | D.setSUnit(SU); |
| 328 | RemovePred(SuccDep, D); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 329 | if (isNewLoad) { |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 330 | D.setSUnit(LoadSU); |
| 331 | AddPred(SuccDep, D); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 332 | } |
Andrew Trick | 7c6c41a | 2012-03-07 05:21:32 +0000 | [diff] [blame] | 333 | } |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 334 | if (isNewLoad) { |
Andrew Trick | baeaabb | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 335 | SDep D(LoadSU, SDep::Barrier); |
| 336 | D.setLatency(LoadSU->Latency); |
| 337 | AddPred(NewSU, D); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | ++NumUnfolds; |
| 341 | |
| 342 | if (NewSU->NumSuccsLeft == 0) { |
| 343 | NewSU->isAvailable = true; |
| 344 | return NewSU; |
| 345 | } |
| 346 | SU = NewSU; |
| 347 | } |
| 348 | |
David Greene | d65bc15 | 2010-01-05 01:25:09 +0000 | [diff] [blame] | 349 | DEBUG(dbgs() << "Duplicating SU # " << SU->NodeNum << "\n"); |
Dan Gohman | 4c3034f | 2008-11-19 23:39:02 +0000 | [diff] [blame] | 350 | NewSU = Clone(SU); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 351 | |
| 352 | // New SUnit has the exact same predecessors. |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 353 | for (SDep &Pred : SU->Preds) |
| 354 | if (!Pred.isArtificial()) |
| 355 | AddPred(NewSU, Pred); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 356 | |
| 357 | // Only copy scheduled successors. Cut them from old node's successor |
| 358 | // list and move them over. |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 359 | SmallVector<std::pair<SUnit *, SDep>, 4> DelDeps; |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 360 | for (SDep &Succ : SU->Succs) { |
| 361 | if (Succ.isArtificial()) |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 362 | continue; |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 363 | SUnit *SuccSU = Succ.getSUnit(); |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 364 | if (SuccSU->isScheduled) { |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 365 | SDep D = Succ; |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 366 | D.setSUnit(NewSU); |
| 367 | AddPred(SuccSU, D); |
| 368 | D.setSUnit(SU); |
| 369 | DelDeps.push_back(std::make_pair(SuccSU, D)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 370 | } |
| 371 | } |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 372 | for (unsigned i = 0, e = DelDeps.size(); i != e; ++i) |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 373 | RemovePred(DelDeps[i].first, DelDeps[i].second); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 374 | |
| 375 | ++NumDups; |
| 376 | return NewSU; |
| 377 | } |
| 378 | |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 379 | /// InsertCopiesAndMoveSuccs - Insert register copies and move all |
| 380 | /// scheduled successors of the given SUnit to the last copy. |
| 381 | void ScheduleDAGFast::InsertCopiesAndMoveSuccs(SUnit *SU, unsigned Reg, |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 382 | const TargetRegisterClass *DestRC, |
| 383 | const TargetRegisterClass *SrcRC, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 384 | SmallVectorImpl<SUnit*> &Copies) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 385 | SUnit *CopyFromSU = newSUnit(static_cast<SDNode *>(nullptr)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 386 | CopyFromSU->CopySrcRC = SrcRC; |
| 387 | CopyFromSU->CopyDstRC = DestRC; |
| 388 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 389 | SUnit *CopyToSU = newSUnit(static_cast<SDNode *>(nullptr)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 390 | CopyToSU->CopySrcRC = DestRC; |
| 391 | CopyToSU->CopyDstRC = SrcRC; |
| 392 | |
| 393 | // Only copy scheduled successors. Cut them from old node's successor |
| 394 | // list and move them over. |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 395 | SmallVector<std::pair<SUnit *, SDep>, 4> DelDeps; |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 396 | for (SDep &Succ : SU->Succs) { |
| 397 | if (Succ.isArtificial()) |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 398 | continue; |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 399 | SUnit *SuccSU = Succ.getSUnit(); |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 400 | if (SuccSU->isScheduled) { |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 401 | SDep D = Succ; |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 402 | D.setSUnit(CopyToSU); |
| 403 | AddPred(SuccSU, D); |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 404 | DelDeps.push_back(std::make_pair(SuccSU, Succ)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 405 | } |
| 406 | } |
| 407 | for (unsigned i = 0, e = DelDeps.size(); i != e; ++i) { |
Dan Gohman | 2d17089 | 2008-12-09 22:54:47 +0000 | [diff] [blame] | 408 | RemovePred(DelDeps[i].first, DelDeps[i].second); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 409 | } |
Andrew Trick | baeaabb | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 410 | SDep FromDep(SU, SDep::Data, Reg); |
| 411 | FromDep.setLatency(SU->Latency); |
| 412 | AddPred(CopyFromSU, FromDep); |
| 413 | SDep ToDep(CopyFromSU, SDep::Data, 0); |
| 414 | ToDep.setLatency(CopyFromSU->Latency); |
| 415 | AddPred(CopyToSU, ToDep); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 416 | |
| 417 | Copies.push_back(CopyFromSU); |
| 418 | Copies.push_back(CopyToSU); |
| 419 | |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 420 | ++NumPRCopies; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | /// getPhysicalRegisterVT - Returns the ValueType of the physical register |
| 424 | /// definition of the specified node. |
| 425 | /// FIXME: Move to SelectionDAG? |
Craig Topper | 7f416c8 | 2014-11-16 21:17:18 +0000 | [diff] [blame] | 426 | static MVT getPhysicalRegisterVT(SDNode *N, unsigned Reg, |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 427 | const TargetInstrInfo *TII) { |
Tim Northover | e4c7be5 | 2014-10-23 22:31:48 +0000 | [diff] [blame] | 428 | unsigned NumRes; |
| 429 | if (N->getOpcode() == ISD::CopyFromReg) { |
| 430 | // CopyFromReg has: "chain, Val, glue" so operand 1 gives the type. |
| 431 | NumRes = 1; |
| 432 | } else { |
| 433 | const MCInstrDesc &MCID = TII->get(N->getMachineOpcode()); |
| 434 | assert(MCID.ImplicitDefs && "Physical reg def must be in implicit def list!"); |
| 435 | NumRes = MCID.getNumDefs(); |
Craig Topper | e5e035a3 | 2015-12-05 07:13:35 +0000 | [diff] [blame] | 436 | for (const MCPhysReg *ImpDef = MCID.getImplicitDefs(); *ImpDef; ++ImpDef) { |
Tim Northover | e4c7be5 | 2014-10-23 22:31:48 +0000 | [diff] [blame] | 437 | if (Reg == *ImpDef) |
| 438 | break; |
| 439 | ++NumRes; |
| 440 | } |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 441 | } |
Craig Topper | 7f416c8 | 2014-11-16 21:17:18 +0000 | [diff] [blame] | 442 | return N->getSimpleValueType(NumRes); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 443 | } |
| 444 | |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 445 | /// CheckForLiveRegDef - Return true and update live register vector if the |
| 446 | /// specified register def of the specified SUnit clobbers any "live" registers. |
| 447 | static bool CheckForLiveRegDef(SUnit *SU, unsigned Reg, |
| 448 | std::vector<SUnit*> &LiveRegDefs, |
| 449 | SmallSet<unsigned, 4> &RegAdded, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 450 | SmallVectorImpl<unsigned> &LRegs, |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 451 | const TargetRegisterInfo *TRI) { |
| 452 | bool Added = false; |
Jakob Stoklund Olesen | 9b09cf0 | 2012-06-01 22:38:17 +0000 | [diff] [blame] | 453 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { |
| 454 | if (LiveRegDefs[*AI] && LiveRegDefs[*AI] != SU) { |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 455 | if (RegAdded.insert(*AI).second) { |
Jakob Stoklund Olesen | 9b09cf0 | 2012-06-01 22:38:17 +0000 | [diff] [blame] | 456 | LRegs.push_back(*AI); |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 457 | Added = true; |
| 458 | } |
| 459 | } |
Jakob Stoklund Olesen | 9b09cf0 | 2012-06-01 22:38:17 +0000 | [diff] [blame] | 460 | } |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 461 | return Added; |
| 462 | } |
| 463 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 464 | /// DelayForLiveRegsBottomUp - Returns true if it is necessary to delay |
| 465 | /// scheduling of the given node to satisfy live physical register dependencies. |
| 466 | /// If the specific node is the last one that's available to schedule, do |
| 467 | /// whatever is necessary (i.e. backtracking or cloning) to make it possible. |
| 468 | bool ScheduleDAGFast::DelayForLiveRegsBottomUp(SUnit *SU, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 469 | SmallVectorImpl<unsigned> &LRegs){ |
Dan Gohman | c07f686 | 2008-09-23 18:50:48 +0000 | [diff] [blame] | 470 | if (NumLiveRegs == 0) |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 471 | return false; |
| 472 | |
| 473 | SmallSet<unsigned, 4> RegAdded; |
| 474 | // If this node would clobber any "live" register, then it's not ready. |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 475 | for (SDep &Pred : SU->Preds) { |
| 476 | if (Pred.isAssignedRegDep()) { |
| 477 | CheckForLiveRegDef(Pred.getSUnit(), Pred.getReg(), LiveRegDefs, |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 478 | RegAdded, LRegs, TRI); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 479 | } |
| 480 | } |
| 481 | |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 482 | for (SDNode *Node = SU->getNode(); Node; Node = Node->getGluedNode()) { |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 483 | if (Node->getOpcode() == ISD::INLINEASM) { |
| 484 | // Inline asm can clobber physical defs. |
| 485 | unsigned NumOps = Node->getNumOperands(); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 486 | if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue) |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 487 | --NumOps; // Ignore the glue operand. |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 488 | |
| 489 | for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) { |
| 490 | unsigned Flags = |
| 491 | cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue(); |
| 492 | unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags); |
| 493 | |
| 494 | ++i; // Skip the ID value. |
| 495 | if (InlineAsm::isRegDefKind(Flags) || |
Jakob Stoklund Olesen | 537a302 | 2011-06-27 04:08:33 +0000 | [diff] [blame] | 496 | InlineAsm::isRegDefEarlyClobberKind(Flags) || |
| 497 | InlineAsm::isClobberKind(Flags)) { |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 498 | // Check for def of register or earlyclobber register. |
| 499 | for (; NumVals; --NumVals, ++i) { |
| 500 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
| 501 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 502 | CheckForLiveRegDef(SU, Reg, LiveRegDefs, RegAdded, LRegs, TRI); |
| 503 | } |
| 504 | } else |
| 505 | i += NumVals; |
| 506 | } |
| 507 | continue; |
| 508 | } |
Dan Gohman | 072734e | 2008-11-13 23:24:17 +0000 | [diff] [blame] | 509 | if (!Node->isMachineOpcode()) |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 510 | continue; |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 511 | const MCInstrDesc &MCID = TII->get(Node->getMachineOpcode()); |
| 512 | if (!MCID.ImplicitDefs) |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 513 | continue; |
Craig Topper | e5e035a3 | 2015-12-05 07:13:35 +0000 | [diff] [blame] | 514 | for (const MCPhysReg *Reg = MCID.getImplicitDefs(); *Reg; ++Reg) { |
Dale Johannesen | 16f9644 | 2010-08-17 22:17:24 +0000 | [diff] [blame] | 515 | CheckForLiveRegDef(SU, *Reg, LiveRegDefs, RegAdded, LRegs, TRI); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 516 | } |
| 517 | } |
| 518 | return !LRegs.empty(); |
| 519 | } |
| 520 | |
| 521 | |
| 522 | /// ListScheduleBottomUp - The main loop of list scheduling for bottom-up |
| 523 | /// schedulers. |
| 524 | void ScheduleDAGFast::ListScheduleBottomUp() { |
| 525 | unsigned CurCycle = 0; |
Dan Gohman | b954343 | 2009-02-10 23:27:53 +0000 | [diff] [blame] | 526 | |
| 527 | // Release any predecessors of the special Exit node. |
| 528 | ReleasePredecessors(&ExitSU, CurCycle); |
| 529 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 530 | // Add root to Available queue. |
| 531 | if (!SUnits.empty()) { |
Dan Gohman | 5a390b9 | 2008-11-13 21:21:28 +0000 | [diff] [blame] | 532 | SUnit *RootSU = &SUnits[DAG->getRoot().getNode()->getNodeId()]; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 533 | assert(RootSU->Succs.empty() && "Graph root shouldn't have successors!"); |
| 534 | RootSU->isAvailable = true; |
| 535 | AvailableQueue.push(RootSU); |
| 536 | } |
| 537 | |
| 538 | // While Available queue is not empty, grab the node with the highest |
| 539 | // priority. If it is not ready put it back. Schedule the node. |
| 540 | SmallVector<SUnit*, 4> NotReady; |
| 541 | DenseMap<SUnit*, SmallVector<unsigned, 4> > LRegsMap; |
| 542 | Sequence.reserve(SUnits.size()); |
| 543 | while (!AvailableQueue.empty()) { |
| 544 | bool Delayed = false; |
| 545 | LRegsMap.clear(); |
| 546 | SUnit *CurSU = AvailableQueue.pop(); |
| 547 | while (CurSU) { |
Dan Gohman | 4f474b0 | 2008-11-17 19:52:36 +0000 | [diff] [blame] | 548 | SmallVector<unsigned, 4> LRegs; |
| 549 | if (!DelayForLiveRegsBottomUp(CurSU, LRegs)) |
| 550 | break; |
| 551 | Delayed = true; |
| 552 | LRegsMap.insert(std::make_pair(CurSU, LRegs)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 553 | |
| 554 | CurSU->isPending = true; // This SU is not in AvailableQueue right now. |
| 555 | NotReady.push_back(CurSU); |
| 556 | CurSU = AvailableQueue.pop(); |
| 557 | } |
| 558 | |
| 559 | // All candidates are delayed due to live physical reg dependencies. |
| 560 | // Try code duplication or inserting cross class copies |
| 561 | // to resolve it. |
| 562 | if (Delayed && !CurSU) { |
| 563 | if (!CurSU) { |
| 564 | // Try duplicating the nodes that produces these |
| 565 | // "expensive to copy" values to break the dependency. In case even |
| 566 | // that doesn't work, insert cross class copies. |
| 567 | SUnit *TrySU = NotReady[0]; |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 568 | SmallVectorImpl<unsigned> &LRegs = LRegsMap[TrySU]; |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 569 | assert(LRegs.size() == 1 && "Can't handle this yet!"); |
| 570 | unsigned Reg = LRegs[0]; |
| 571 | SUnit *LRDef = LiveRegDefs[Reg]; |
Craig Topper | 7f416c8 | 2014-11-16 21:17:18 +0000 | [diff] [blame] | 572 | MVT VT = getPhysicalRegisterVT(LRDef->getNode(), Reg, TII); |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 573 | const TargetRegisterClass *RC = |
Rafael Espindola | 38a7d7c | 2010-06-29 14:02:34 +0000 | [diff] [blame] | 574 | TRI->getMinimalPhysRegClass(Reg, VT); |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 575 | const TargetRegisterClass *DestRC = TRI->getCrossCopyRegClass(RC); |
| 576 | |
Evan Cheng | b4c6a34 | 2011-03-10 00:16:32 +0000 | [diff] [blame] | 577 | // If cross copy register class is the same as RC, then it must be |
| 578 | // possible copy the value directly. Do not try duplicate the def. |
| 579 | // If cross copy register class is not the same as RC, then it's |
| 580 | // possible to copy the value but it require cross register class copies |
| 581 | // and it is expensive. |
| 582 | // If cross copy register class is null, then it's not possible to copy |
| 583 | // the value at all. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 584 | SUnit *NewDef = nullptr; |
Evan Cheng | b4c6a34 | 2011-03-10 00:16:32 +0000 | [diff] [blame] | 585 | if (DestRC != RC) { |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 586 | NewDef = CopyAndMoveSuccessors(LRDef); |
Evan Cheng | b4c6a34 | 2011-03-10 00:16:32 +0000 | [diff] [blame] | 587 | if (!DestRC && !NewDef) |
| 588 | report_fatal_error("Can't handle live physical " |
| 589 | "register dependency!"); |
| 590 | } |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 591 | if (!NewDef) { |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 592 | // Issue copies, these can be expensive cross register class copies. |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 593 | SmallVector<SUnit*, 2> Copies; |
Evan Cheng | b2c42c6 | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 594 | InsertCopiesAndMoveSuccs(LRDef, Reg, DestRC, RC, Copies); |
David Greene | d65bc15 | 2010-01-05 01:25:09 +0000 | [diff] [blame] | 595 | DEBUG(dbgs() << "Adding an edge from SU # " << TrySU->NodeNum |
Chris Lattner | 4dc3edd | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 596 | << " to SU #" << Copies.front()->NodeNum << "\n"); |
Andrew Trick | baeaabb | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 597 | AddPred(TrySU, SDep(Copies.front(), SDep::Artificial)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 598 | NewDef = Copies.back(); |
| 599 | } |
| 600 | |
David Greene | d65bc15 | 2010-01-05 01:25:09 +0000 | [diff] [blame] | 601 | DEBUG(dbgs() << "Adding an edge from SU # " << NewDef->NodeNum |
Chris Lattner | 4dc3edd | 2009-08-23 06:35:02 +0000 | [diff] [blame] | 602 | << " to SU #" << TrySU->NodeNum << "\n"); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 603 | LiveRegDefs[Reg] = NewDef; |
Andrew Trick | baeaabb | 2012-11-06 03:13:46 +0000 | [diff] [blame] | 604 | AddPred(NewDef, SDep(TrySU, SDep::Artificial)); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 605 | TrySU->isAvailable = false; |
| 606 | CurSU = NewDef; |
| 607 | } |
| 608 | |
| 609 | if (!CurSU) { |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 610 | llvm_unreachable("Unable to resolve live physical register dependencies!"); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 611 | } |
| 612 | } |
| 613 | |
| 614 | // Add the nodes that aren't ready back onto the available list. |
| 615 | for (unsigned i = 0, e = NotReady.size(); i != e; ++i) { |
| 616 | NotReady[i]->isPending = false; |
| 617 | // May no longer be available due to backtracking. |
| 618 | if (NotReady[i]->isAvailable) |
| 619 | AvailableQueue.push(NotReady[i]); |
| 620 | } |
| 621 | NotReady.clear(); |
| 622 | |
Dan Gohman | c602dd4 | 2008-11-21 00:10:42 +0000 | [diff] [blame] | 623 | if (CurSU) |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 624 | ScheduleNodeBottomUp(CurSU, CurCycle); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 625 | ++CurCycle; |
| 626 | } |
| 627 | |
Dan Gohman | 6905f15 | 2009-09-28 16:09:41 +0000 | [diff] [blame] | 628 | // Reverse the order since it is bottom up. |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 629 | std::reverse(Sequence.begin(), Sequence.end()); |
Dan Gohman | 6905f15 | 2009-09-28 16:09:41 +0000 | [diff] [blame] | 630 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 631 | #ifndef NDEBUG |
Andrew Trick | 46a5866 | 2012-03-07 05:21:36 +0000 | [diff] [blame] | 632 | VerifyScheduledSequence(/*isBottomUp=*/true); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 633 | #endif |
| 634 | } |
| 635 | |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 636 | |
Benjamin Kramer | a74129a | 2012-10-20 12:53:26 +0000 | [diff] [blame] | 637 | namespace { |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 638 | //===----------------------------------------------------------------------===// |
| 639 | // ScheduleDAGLinearize - No scheduling scheduler, it simply linearize the |
| 640 | // DAG in topological order. |
| 641 | // IMPORTANT: this may not work for targets with phyreg dependency. |
| 642 | // |
| 643 | class ScheduleDAGLinearize : public ScheduleDAGSDNodes { |
| 644 | public: |
| 645 | ScheduleDAGLinearize(MachineFunction &mf) : ScheduleDAGSDNodes(mf) {} |
| 646 | |
Craig Topper | 7b883b3 | 2014-03-08 06:31:39 +0000 | [diff] [blame] | 647 | void Schedule() override; |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 648 | |
Craig Topper | 7b883b3 | 2014-03-08 06:31:39 +0000 | [diff] [blame] | 649 | MachineBasicBlock * |
| 650 | EmitSchedule(MachineBasicBlock::iterator &InsertPos) override; |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 651 | |
| 652 | private: |
| 653 | std::vector<SDNode*> Sequence; |
| 654 | DenseMap<SDNode*, SDNode*> GluedMap; // Cache glue to its user |
| 655 | |
| 656 | void ScheduleNode(SDNode *N); |
| 657 | }; |
Benjamin Kramer | a74129a | 2012-10-20 12:53:26 +0000 | [diff] [blame] | 658 | } // end anonymous namespace |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 659 | |
| 660 | void ScheduleDAGLinearize::ScheduleNode(SDNode *N) { |
| 661 | if (N->getNodeId() != 0) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 662 | llvm_unreachable(nullptr); |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 663 | |
| 664 | if (!N->isMachineOpcode() && |
| 665 | (N->getOpcode() == ISD::EntryToken || isPassiveNode(N))) |
| 666 | // These nodes do not need to be translated into MIs. |
| 667 | return; |
| 668 | |
| 669 | DEBUG(dbgs() << "\n*** Scheduling: "); |
| 670 | DEBUG(N->dump(DAG)); |
| 671 | Sequence.push_back(N); |
| 672 | |
| 673 | unsigned NumOps = N->getNumOperands(); |
| 674 | if (unsigned NumLeft = NumOps) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 675 | SDNode *GluedOpN = nullptr; |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 676 | do { |
| 677 | const SDValue &Op = N->getOperand(NumLeft-1); |
| 678 | SDNode *OpN = Op.getNode(); |
| 679 | |
| 680 | if (NumLeft == NumOps && Op.getValueType() == MVT::Glue) { |
| 681 | // Schedule glue operand right above N. |
| 682 | GluedOpN = OpN; |
| 683 | assert(OpN->getNodeId() != 0 && "Glue operand not ready?"); |
| 684 | OpN->setNodeId(0); |
| 685 | ScheduleNode(OpN); |
| 686 | continue; |
| 687 | } |
| 688 | |
| 689 | if (OpN == GluedOpN) |
| 690 | // Glue operand is already scheduled. |
| 691 | continue; |
| 692 | |
| 693 | DenseMap<SDNode*, SDNode*>::iterator DI = GluedMap.find(OpN); |
| 694 | if (DI != GluedMap.end() && DI->second != N) |
| 695 | // Users of glues are counted against the glued users. |
| 696 | OpN = DI->second; |
| 697 | |
| 698 | unsigned Degree = OpN->getNodeId(); |
| 699 | assert(Degree > 0 && "Predecessor over-released!"); |
| 700 | OpN->setNodeId(--Degree); |
| 701 | if (Degree == 0) |
| 702 | ScheduleNode(OpN); |
| 703 | } while (--NumLeft); |
| 704 | } |
| 705 | } |
| 706 | |
| 707 | /// findGluedUser - Find the representative use of a glue value by walking |
| 708 | /// the use chain. |
| 709 | static SDNode *findGluedUser(SDNode *N) { |
| 710 | while (SDNode *Glued = N->getGluedUser()) |
| 711 | N = Glued; |
| 712 | return N; |
| 713 | } |
| 714 | |
| 715 | void ScheduleDAGLinearize::Schedule() { |
| 716 | DEBUG(dbgs() << "********** DAG Linearization **********\n"); |
| 717 | |
| 718 | SmallVector<SDNode*, 8> Glues; |
| 719 | unsigned DAGSize = 0; |
Pete Cooper | 65c6940 | 2015-07-14 22:10:54 +0000 | [diff] [blame] | 720 | for (SDNode &Node : DAG->allnodes()) { |
| 721 | SDNode *N = &Node; |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 722 | |
| 723 | // Use node id to record degree. |
| 724 | unsigned Degree = N->use_size(); |
| 725 | N->setNodeId(Degree); |
| 726 | unsigned NumVals = N->getNumValues(); |
| 727 | if (NumVals && N->getValueType(NumVals-1) == MVT::Glue && |
| 728 | N->hasAnyUseOfValue(NumVals-1)) { |
| 729 | SDNode *User = findGluedUser(N); |
| 730 | if (User) { |
| 731 | Glues.push_back(N); |
| 732 | GluedMap.insert(std::make_pair(N, User)); |
| 733 | } |
| 734 | } |
| 735 | |
| 736 | if (N->isMachineOpcode() || |
| 737 | (N->getOpcode() != ISD::EntryToken && !isPassiveNode(N))) |
| 738 | ++DAGSize; |
| 739 | } |
| 740 | |
| 741 | for (unsigned i = 0, e = Glues.size(); i != e; ++i) { |
| 742 | SDNode *Glue = Glues[i]; |
| 743 | SDNode *GUser = GluedMap[Glue]; |
| 744 | unsigned Degree = Glue->getNodeId(); |
| 745 | unsigned UDegree = GUser->getNodeId(); |
| 746 | |
| 747 | // Glue user must be scheduled together with the glue operand. So other |
| 748 | // users of the glue operand must be treated as its users. |
| 749 | SDNode *ImmGUser = Glue->getGluedUser(); |
Krzysztof Parzyszek | 41b6e14 | 2017-05-04 13:35:17 +0000 | [diff] [blame] | 750 | for (const SDNode *U : Glue->uses()) |
| 751 | if (U == ImmGUser) |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 752 | --Degree; |
| 753 | GUser->setNodeId(UDegree + Degree); |
| 754 | Glue->setNodeId(1); |
| 755 | } |
| 756 | |
| 757 | Sequence.reserve(DAGSize); |
| 758 | ScheduleNode(DAG->getRoot().getNode()); |
| 759 | } |
| 760 | |
| 761 | MachineBasicBlock* |
| 762 | ScheduleDAGLinearize::EmitSchedule(MachineBasicBlock::iterator &InsertPos) { |
| 763 | InstrEmitter Emitter(BB, InsertPos); |
| 764 | DenseMap<SDValue, unsigned> VRBaseMap; |
| 765 | |
| 766 | DEBUG({ |
| 767 | dbgs() << "\n*** Final schedule ***\n"; |
| 768 | }); |
| 769 | |
| 770 | // FIXME: Handle dbg_values. |
| 771 | unsigned NumNodes = Sequence.size(); |
| 772 | for (unsigned i = 0; i != NumNodes; ++i) { |
| 773 | SDNode *N = Sequence[NumNodes-i-1]; |
| 774 | DEBUG(N->dump(DAG)); |
| 775 | Emitter.EmitNode(N, false, false, VRBaseMap); |
| 776 | } |
| 777 | |
| 778 | DEBUG(dbgs() << '\n'); |
| 779 | |
| 780 | InsertPos = Emitter.getInsertPos(); |
| 781 | return Emitter.getBlock(); |
| 782 | } |
| 783 | |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 784 | //===----------------------------------------------------------------------===// |
| 785 | // Public Constructor Functions |
| 786 | //===----------------------------------------------------------------------===// |
| 787 | |
Dan Gohman | dfaf646 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 788 | llvm::ScheduleDAGSDNodes * |
Bill Wendling | 026e5d7 | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 789 | llvm::createFastDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level) { |
Dan Gohman | 619ef48 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 790 | return new ScheduleDAGFast(*IS->MF); |
Dan Gohman | 95be7d7 | 2008-09-18 16:26:26 +0000 | [diff] [blame] | 791 | } |
Evan Cheng | 839fb65 | 2012-10-17 19:39:36 +0000 | [diff] [blame] | 792 | |
| 793 | llvm::ScheduleDAGSDNodes * |
| 794 | llvm::createDAGLinearizer(SelectionDAGISel *IS, CodeGenOpt::Level) { |
| 795 | return new ScheduleDAGLinearize(*IS->MF); |
| 796 | } |