Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 1 | //===- HexagonMachineScheduler.h - Custom Hexagon MI scheduler --*- C++ -*-===// |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +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 | // Custom Hexagon MI scheduler. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONMACHINESCHEDULER_H |
| 15 | #define LLVM_LIB_TARGET_HEXAGON_HEXAGONMACHINESCHEDULER_H |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 16 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/STLExtras.h" |
| 18 | #include "llvm/ADT/Twine.h" |
| 19 | #include "llvm/CodeGen/DFAPacketizer.h" |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineScheduler.h" |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/RegisterPressure.h" |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/ScheduleHazardRecognizer.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/TargetInstrInfo.h" |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/TargetSchedule.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 26 | #include <algorithm> |
| 27 | #include <cassert> |
| 28 | #include <limits> |
| 29 | #include <memory> |
| 30 | #include <vector> |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 31 | |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 32 | namespace llvm { |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 33 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 34 | class SUnit; |
| 35 | |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 36 | class VLIWResourceModel { |
| 37 | /// ResourcesModel - Represents VLIW state. |
Krzysztof Parzyszek | 14f10e0 | 2017-04-27 14:38:21 +0000 | [diff] [blame] | 38 | /// Not limited to VLIW targets per se, but assumes |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 39 | /// definition of DFA by a target. |
| 40 | DFAPacketizer *ResourcesModel; |
| 41 | |
Andrew Trick | dd79f0f | 2012-10-10 05:43:09 +0000 | [diff] [blame] | 42 | const TargetSchedModel *SchedModel; |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 43 | |
| 44 | /// Local packet/bundle model. Purely |
| 45 | /// internal to the MI schedulre at the time. |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 46 | std::vector<SUnit *> Packet; |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 47 | |
| 48 | /// Total packets created. |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 49 | unsigned TotalPackets = 0; |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 50 | |
| 51 | public: |
Eric Christopher | f8b8e4a | 2015-02-02 22:11:40 +0000 | [diff] [blame] | 52 | VLIWResourceModel(const TargetSubtargetInfo &STI, const TargetSchedModel *SM) |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 53 | : SchedModel(SM) { |
| 54 | ResourcesModel = STI.getInstrInfo()->CreateTargetScheduleState(STI); |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 55 | |
| 56 | // This hard requirement could be relaxed, |
| 57 | // but for now do not let it proceed. |
| 58 | assert(ResourcesModel && "Unimplemented CreateTargetScheduleState."); |
| 59 | |
Andrew Trick | dd79f0f | 2012-10-10 05:43:09 +0000 | [diff] [blame] | 60 | Packet.resize(SchedModel->getIssueWidth()); |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 61 | Packet.clear(); |
| 62 | ResourcesModel->clearResources(); |
| 63 | } |
| 64 | |
| 65 | ~VLIWResourceModel() { |
| 66 | delete ResourcesModel; |
| 67 | } |
| 68 | |
| 69 | void resetPacketState() { |
| 70 | Packet.clear(); |
| 71 | } |
| 72 | |
| 73 | void resetDFA() { |
| 74 | ResourcesModel->clearResources(); |
| 75 | } |
| 76 | |
| 77 | void reset() { |
| 78 | Packet.clear(); |
| 79 | ResourcesModel->clearResources(); |
| 80 | } |
| 81 | |
Krzysztof Parzyszek | dca3831 | 2018-03-20 12:28:43 +0000 | [diff] [blame] | 82 | bool isResourceAvailable(SUnit *SU, bool IsTop); |
| 83 | bool reserveResources(SUnit *SU, bool IsTop); |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 84 | unsigned getTotalPackets() const { return TotalPackets; } |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 85 | bool isInPacket(SUnit *SU) const { return is_contained(Packet, SU); } |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 86 | }; |
| 87 | |
Andrew Trick | 7a8e100 | 2012-09-11 00:39:15 +0000 | [diff] [blame] | 88 | /// Extend the standard ScheduleDAGMI to provide more context and override the |
| 89 | /// top-level schedule() driver. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 90 | class VLIWMachineScheduler : public ScheduleDAGMILive { |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 91 | public: |
David Blaikie | 422b93d | 2014-04-21 20:32:32 +0000 | [diff] [blame] | 92 | VLIWMachineScheduler(MachineSchedContext *C, |
| 93 | std::unique_ptr<MachineSchedStrategy> S) |
| 94 | : ScheduleDAGMILive(C, std::move(S)) {} |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 95 | |
| 96 | /// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's |
| 97 | /// time to do some work. |
Craig Topper | fd38cbe | 2014-08-30 16:48:34 +0000 | [diff] [blame] | 98 | void schedule() override; |
Krzysztof Parzyszek | dca3831 | 2018-03-20 12:28:43 +0000 | [diff] [blame] | 99 | |
| 100 | RegisterClassInfo *getRegClassInfo() { return RegClassInfo; } |
Krzysztof Parzyszek | 5ffd808 | 2018-03-20 14:54:01 +0000 | [diff] [blame] | 101 | int getBBSize() { return BB->size(); } |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 102 | }; |
| 103 | |
Krzysztof Parzyszek | 14f10e0 | 2017-04-27 14:38:21 +0000 | [diff] [blame] | 104 | //===----------------------------------------------------------------------===// |
| 105 | // ConvergingVLIWScheduler - Implementation of the standard |
| 106 | // MachineSchedStrategy. |
| 107 | //===----------------------------------------------------------------------===// |
| 108 | |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 109 | /// ConvergingVLIWScheduler shrinks the unscheduled zone using heuristics |
| 110 | /// to balance the schedule. |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 111 | class ConvergingVLIWScheduler : public MachineSchedStrategy { |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 112 | /// Store the state used by ConvergingVLIWScheduler heuristics, required |
| 113 | /// for the lifetime of one invocation of pickNode(). |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 114 | struct SchedCandidate { |
| 115 | // The best SUnit candidate. |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 116 | SUnit *SU = nullptr; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 117 | |
| 118 | // Register pressure values for the best candidate. |
| 119 | RegPressureDelta RPDelta; |
| 120 | |
| 121 | // Best scheduling cost. |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 122 | int SCost = 0; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 123 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 124 | SchedCandidate() = default; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 125 | }; |
| 126 | /// Represent the type of SchedCandidate found within a single queue. |
| 127 | enum CandResult { |
| 128 | NoCand, NodeOrder, SingleExcess, SingleCritical, SingleMax, MultiPressure, |
Krzysztof Parzyszek | 65059ee | 2018-03-20 19:26:27 +0000 | [diff] [blame] | 129 | BestCost, Weak}; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 130 | |
| 131 | /// Each Scheduling boundary is associated with ready queues. It tracks the |
| 132 | /// current cycle in whichever direction at has moved, and maintains the state |
| 133 | /// of "hazards" and other interlocks at the current cycle. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 134 | struct VLIWSchedBoundary { |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 135 | VLIWMachineScheduler *DAG = nullptr; |
| 136 | const TargetSchedModel *SchedModel = nullptr; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 137 | |
| 138 | ReadyQueue Available; |
| 139 | ReadyQueue Pending; |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 140 | bool CheckPending = false; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 141 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 142 | ScheduleHazardRecognizer *HazardRec = nullptr; |
| 143 | VLIWResourceModel *ResourceModel = nullptr; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 144 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 145 | unsigned CurrCycle = 0; |
| 146 | unsigned IssueCount = 0; |
Krzysztof Parzyszek | 5ffd808 | 2018-03-20 14:54:01 +0000 | [diff] [blame] | 147 | unsigned CriticalPathLength = 0; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 148 | |
| 149 | /// MinReadyCycle - Cycle of the soonest available instruction. |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 150 | unsigned MinReadyCycle = std::numeric_limits<unsigned>::max(); |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 151 | |
| 152 | // Remember the greatest min operand latency. |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 153 | unsigned MaxMinLatency = 0; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 154 | |
| 155 | /// Pending queues extend the ready queues with the same ID and the |
| 156 | /// PendingFlag set. |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 157 | VLIWSchedBoundary(unsigned ID, const Twine &Name) |
| 158 | : Available(ID, Name+".A"), |
| 159 | Pending(ID << ConvergingVLIWScheduler::LogMaxQID, Name+".P") {} |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 160 | |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 161 | ~VLIWSchedBoundary() { |
Sergei Larin | ef4cc11 | 2012-09-10 17:31:34 +0000 | [diff] [blame] | 162 | delete ResourceModel; |
| 163 | delete HazardRec; |
| 164 | } |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 165 | |
Andrew Trick | dd79f0f | 2012-10-10 05:43:09 +0000 | [diff] [blame] | 166 | void init(VLIWMachineScheduler *dag, const TargetSchedModel *smodel) { |
| 167 | DAG = dag; |
| 168 | SchedModel = smodel; |
Krzysztof Parzyszek | dca3831 | 2018-03-20 12:28:43 +0000 | [diff] [blame] | 169 | CurrCycle = 0; |
Krzysztof Parzyszek | 6c715e1 | 2016-07-15 20:16:03 +0000 | [diff] [blame] | 170 | IssueCount = 0; |
Krzysztof Parzyszek | 5ffd808 | 2018-03-20 14:54:01 +0000 | [diff] [blame] | 171 | // Initialize the critical path length limit, which used by the scheduling |
| 172 | // cost model to determine the value for scheduling an instruction. We use |
| 173 | // a slightly different heuristic for small and large functions. For small |
| 174 | // functions, it's important to use the height/depth of the instruction. |
| 175 | // For large functions, prioritizing by height or depth increases spills. |
| 176 | CriticalPathLength = DAG->getBBSize() / SchedModel->getIssueWidth(); |
| 177 | if (DAG->getBBSize() < 50) |
| 178 | // We divide by two as a cheap and simple heuristic to reduce the |
| 179 | // critcal path length, which increases the priority of using the graph |
| 180 | // height/depth in the scheduler's cost computation. |
| 181 | CriticalPathLength >>= 1; |
| 182 | else { |
| 183 | // For large basic blocks, we prefer a larger critical path length to |
| 184 | // decrease the priority of using the graph height/depth. |
| 185 | unsigned MaxPath = 0; |
| 186 | for (auto &SU : DAG->SUnits) |
| 187 | MaxPath = std::max(MaxPath, isTop() ? SU.getHeight() : SU.getDepth()); |
| 188 | CriticalPathLength = std::max(CriticalPathLength, MaxPath) + 1; |
| 189 | } |
Andrew Trick | dd79f0f | 2012-10-10 05:43:09 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 192 | bool isTop() const { |
| 193 | return Available.getID() == ConvergingVLIWScheduler::TopQID; |
| 194 | } |
| 195 | |
| 196 | bool checkHazard(SUnit *SU); |
| 197 | |
| 198 | void releaseNode(SUnit *SU, unsigned ReadyCycle); |
| 199 | |
| 200 | void bumpCycle(); |
| 201 | |
| 202 | void bumpNode(SUnit *SU); |
| 203 | |
| 204 | void releasePending(); |
| 205 | |
| 206 | void removeReady(SUnit *SU); |
| 207 | |
| 208 | SUnit *pickOnlyChoice(); |
Krzysztof Parzyszek | 65059ee | 2018-03-20 19:26:27 +0000 | [diff] [blame] | 209 | |
Krzysztof Parzyszek | 5ffd808 | 2018-03-20 14:54:01 +0000 | [diff] [blame] | 210 | bool isLatencyBound(SUnit *SU) { |
| 211 | if (CurrCycle >= CriticalPathLength) |
| 212 | return true; |
| 213 | unsigned PathLength = isTop() ? SU->getHeight() : SU->getDepth(); |
| 214 | return CriticalPathLength - CurrCycle <= PathLength; |
| 215 | } |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 216 | }; |
| 217 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 218 | VLIWMachineScheduler *DAG = nullptr; |
| 219 | const TargetSchedModel *SchedModel = nullptr; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 220 | |
| 221 | // State of the top and bottom scheduled instruction boundaries. |
Andrew Trick | d7f890e | 2013-12-28 21:56:47 +0000 | [diff] [blame] | 222 | VLIWSchedBoundary Top; |
| 223 | VLIWSchedBoundary Bot; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 224 | |
Krzysztof Parzyszek | dca3831 | 2018-03-20 12:28:43 +0000 | [diff] [blame] | 225 | /// List of pressure sets that have a high pressure level in the region. |
| 226 | std::vector<bool> HighPressureSets; |
| 227 | |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 228 | public: |
| 229 | /// SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both) |
| 230 | enum { |
| 231 | TopQID = 1, |
| 232 | BotQID = 2, |
| 233 | LogMaxQID = 2 |
| 234 | }; |
| 235 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 236 | ConvergingVLIWScheduler() : Top(TopQID, "TopQ"), Bot(BotQID, "BotQ") {} |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 237 | |
Craig Topper | fd38cbe | 2014-08-30 16:48:34 +0000 | [diff] [blame] | 238 | void initialize(ScheduleDAGMI *dag) override; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 239 | |
Craig Topper | fd38cbe | 2014-08-30 16:48:34 +0000 | [diff] [blame] | 240 | SUnit *pickNode(bool &IsTopNode) override; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 241 | |
Craig Topper | fd38cbe | 2014-08-30 16:48:34 +0000 | [diff] [blame] | 242 | void schedNode(SUnit *SU, bool IsTopNode) override; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 243 | |
Craig Topper | fd38cbe | 2014-08-30 16:48:34 +0000 | [diff] [blame] | 244 | void releaseTopNode(SUnit *SU) override; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 245 | |
Craig Topper | fd38cbe | 2014-08-30 16:48:34 +0000 | [diff] [blame] | 246 | void releaseBottomNode(SUnit *SU) override; |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 247 | |
Krzysztof Parzyszek | 65059ee | 2018-03-20 19:26:27 +0000 | [diff] [blame] | 248 | unsigned reportPackets() { |
Sergei Larin | 2db64a7 | 2012-09-14 15:07:59 +0000 | [diff] [blame] | 249 | return Top.ResourceModel->getTotalPackets() + |
| 250 | Bot.ResourceModel->getTotalPackets(); |
| 251 | } |
| 252 | |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 253 | protected: |
| 254 | SUnit *pickNodeBidrectional(bool &IsTopNode); |
| 255 | |
Krzysztof Parzyszek | dca3831 | 2018-03-20 12:28:43 +0000 | [diff] [blame] | 256 | int pressureChange(const SUnit *SU, bool isBotUp); |
| 257 | |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 258 | int SchedulingCost(ReadyQueue &Q, |
| 259 | SUnit *SU, SchedCandidate &Candidate, |
| 260 | RegPressureDelta &Delta, bool verbose); |
| 261 | |
Krzysztof Parzyszek | 65059ee | 2018-03-20 19:26:27 +0000 | [diff] [blame] | 262 | CandResult pickNodeFromQueue(VLIWSchedBoundary &Zone, |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 263 | const RegPressureTracker &RPTracker, |
| 264 | SchedCandidate &Candidate); |
| 265 | #ifndef NDEBUG |
| 266 | void traceCandidate(const char *Label, const ReadyQueue &Q, SUnit *SU, |
Krzysztof Parzyszek | f05dc4d | 2016-07-18 15:47:25 +0000 | [diff] [blame] | 267 | int Cost, PressureChange P = PressureChange()); |
| 268 | |
| 269 | void readyQueueVerboseDump(const RegPressureTracker &RPTracker, |
| 270 | SchedCandidate &Candidate, ReadyQueue &Q); |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 271 | #endif |
| 272 | }; |
| 273 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 274 | } // end namespace llvm |
Sergei Larin | 4d8986a | 2012-09-04 14:49:56 +0000 | [diff] [blame] | 275 | |
Eugene Zelenko | 3b87336 | 2017-09-28 22:27:31 +0000 | [diff] [blame] | 276 | #endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONMACHINESCHEDULER_H |