1 //===- HexagonMachineScheduler.h - Custom Hexagon MI scheduler --*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Custom Hexagon MI scheduler.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONMACHINESCHEDULER_H
14 #define LLVM_LIB_TARGET_HEXAGON_HEXAGONMACHINESCHEDULER_H
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/ADT/Twine.h"
18 #include "llvm/CodeGen/DFAPacketizer.h"
19 #include "llvm/CodeGen/MachineScheduler.h"
20 #include "llvm/CodeGen/RegisterPressure.h"
21 #include "llvm/CodeGen/ScheduleHazardRecognizer.h"
22 #include "llvm/CodeGen/TargetInstrInfo.h"
23 #include "llvm/CodeGen/TargetSchedule.h"
24 #include "llvm/CodeGen/TargetSubtargetInfo.h"
35 class VLIWResourceModel
{
36 /// ResourcesModel - Represents VLIW state.
37 /// Not limited to VLIW targets per se, but assumes
38 /// definition of DFA by a target.
39 DFAPacketizer
*ResourcesModel
;
41 const TargetSchedModel
*SchedModel
;
43 /// Local packet/bundle model. Purely
44 /// internal to the MI schedulre at the time.
45 std::vector
<SUnit
*> Packet
;
47 /// Total packets created.
48 unsigned TotalPackets
= 0;
51 VLIWResourceModel(const TargetSubtargetInfo
&STI
, const TargetSchedModel
*SM
)
53 ResourcesModel
= STI
.getInstrInfo()->CreateTargetScheduleState(STI
);
55 // This hard requirement could be relaxed,
56 // but for now do not let it proceed.
57 assert(ResourcesModel
&& "Unimplemented CreateTargetScheduleState.");
59 Packet
.resize(SchedModel
->getIssueWidth());
61 ResourcesModel
->clearResources();
64 ~VLIWResourceModel() {
65 delete ResourcesModel
;
68 void resetPacketState() {
73 ResourcesModel
->clearResources();
78 ResourcesModel
->clearResources();
81 bool isResourceAvailable(SUnit
*SU
, bool IsTop
);
82 bool reserveResources(SUnit
*SU
, bool IsTop
);
83 unsigned getTotalPackets() const { return TotalPackets
; }
84 bool isInPacket(SUnit
*SU
) const { return is_contained(Packet
, SU
); }
87 /// Extend the standard ScheduleDAGMI to provide more context and override the
88 /// top-level schedule() driver.
89 class VLIWMachineScheduler
: public ScheduleDAGMILive
{
91 VLIWMachineScheduler(MachineSchedContext
*C
,
92 std::unique_ptr
<MachineSchedStrategy
> S
)
93 : ScheduleDAGMILive(C
, std::move(S
)) {}
95 /// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
96 /// time to do some work.
97 void schedule() override
;
99 RegisterClassInfo
*getRegClassInfo() { return RegClassInfo
; }
100 int getBBSize() { return BB
->size(); }
103 //===----------------------------------------------------------------------===//
104 // ConvergingVLIWScheduler - Implementation of the standard
105 // MachineSchedStrategy.
106 //===----------------------------------------------------------------------===//
108 /// ConvergingVLIWScheduler shrinks the unscheduled zone using heuristics
109 /// to balance the schedule.
110 class ConvergingVLIWScheduler
: public MachineSchedStrategy
{
111 /// Store the state used by ConvergingVLIWScheduler heuristics, required
112 /// for the lifetime of one invocation of pickNode().
113 struct SchedCandidate
{
114 // The best SUnit candidate.
117 // Register pressure values for the best candidate.
118 RegPressureDelta RPDelta
;
120 // Best scheduling cost.
123 SchedCandidate() = default;
125 /// Represent the type of SchedCandidate found within a single queue.
127 NoCand
, NodeOrder
, SingleExcess
, SingleCritical
, SingleMax
, MultiPressure
,
130 /// Each Scheduling boundary is associated with ready queues. It tracks the
131 /// current cycle in whichever direction at has moved, and maintains the state
132 /// of "hazards" and other interlocks at the current cycle.
133 struct VLIWSchedBoundary
{
134 VLIWMachineScheduler
*DAG
= nullptr;
135 const TargetSchedModel
*SchedModel
= nullptr;
137 ReadyQueue Available
;
139 bool CheckPending
= false;
141 ScheduleHazardRecognizer
*HazardRec
= nullptr;
142 VLIWResourceModel
*ResourceModel
= nullptr;
144 unsigned CurrCycle
= 0;
145 unsigned IssueCount
= 0;
146 unsigned CriticalPathLength
= 0;
148 /// MinReadyCycle - Cycle of the soonest available instruction.
149 unsigned MinReadyCycle
= std::numeric_limits
<unsigned>::max();
151 // Remember the greatest min operand latency.
152 unsigned MaxMinLatency
= 0;
154 /// Pending queues extend the ready queues with the same ID and the
156 VLIWSchedBoundary(unsigned ID
, const Twine
&Name
)
157 : Available(ID
, Name
+".A"),
158 Pending(ID
<< ConvergingVLIWScheduler::LogMaxQID
, Name
+".P") {}
160 ~VLIWSchedBoundary() {
161 delete ResourceModel
;
165 void init(VLIWMachineScheduler
*dag
, const TargetSchedModel
*smodel
) {
170 // Initialize the critical path length limit, which used by the scheduling
171 // cost model to determine the value for scheduling an instruction. We use
172 // a slightly different heuristic for small and large functions. For small
173 // functions, it's important to use the height/depth of the instruction.
174 // For large functions, prioritizing by height or depth increases spills.
175 CriticalPathLength
= DAG
->getBBSize() / SchedModel
->getIssueWidth();
176 if (DAG
->getBBSize() < 50)
177 // We divide by two as a cheap and simple heuristic to reduce the
178 // critcal path length, which increases the priority of using the graph
179 // height/depth in the scheduler's cost computation.
180 CriticalPathLength
>>= 1;
182 // For large basic blocks, we prefer a larger critical path length to
183 // decrease the priority of using the graph height/depth.
184 unsigned MaxPath
= 0;
185 for (auto &SU
: DAG
->SUnits
)
186 MaxPath
= std::max(MaxPath
, isTop() ? SU
.getHeight() : SU
.getDepth());
187 CriticalPathLength
= std::max(CriticalPathLength
, MaxPath
) + 1;
192 return Available
.getID() == ConvergingVLIWScheduler::TopQID
;
195 bool checkHazard(SUnit
*SU
);
197 void releaseNode(SUnit
*SU
, unsigned ReadyCycle
);
201 void bumpNode(SUnit
*SU
);
203 void releasePending();
205 void removeReady(SUnit
*SU
);
207 SUnit
*pickOnlyChoice();
209 bool isLatencyBound(SUnit
*SU
) {
210 if (CurrCycle
>= CriticalPathLength
)
212 unsigned PathLength
= isTop() ? SU
->getHeight() : SU
->getDepth();
213 return CriticalPathLength
- CurrCycle
<= PathLength
;
217 VLIWMachineScheduler
*DAG
= nullptr;
218 const TargetSchedModel
*SchedModel
= nullptr;
220 // State of the top and bottom scheduled instruction boundaries.
221 VLIWSchedBoundary Top
;
222 VLIWSchedBoundary Bot
;
224 /// List of pressure sets that have a high pressure level in the region.
225 std::vector
<bool> HighPressureSets
;
228 /// SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both)
235 ConvergingVLIWScheduler() : Top(TopQID
, "TopQ"), Bot(BotQID
, "BotQ") {}
237 void initialize(ScheduleDAGMI
*dag
) override
;
239 SUnit
*pickNode(bool &IsTopNode
) override
;
241 void schedNode(SUnit
*SU
, bool IsTopNode
) override
;
243 void releaseTopNode(SUnit
*SU
) override
;
245 void releaseBottomNode(SUnit
*SU
) override
;
247 unsigned reportPackets() {
248 return Top
.ResourceModel
->getTotalPackets() +
249 Bot
.ResourceModel
->getTotalPackets();
253 SUnit
*pickNodeBidrectional(bool &IsTopNode
);
255 int pressureChange(const SUnit
*SU
, bool isBotUp
);
257 int SchedulingCost(ReadyQueue
&Q
,
258 SUnit
*SU
, SchedCandidate
&Candidate
,
259 RegPressureDelta
&Delta
, bool verbose
);
261 CandResult
pickNodeFromQueue(VLIWSchedBoundary
&Zone
,
262 const RegPressureTracker
&RPTracker
,
263 SchedCandidate
&Candidate
);
265 void traceCandidate(const char *Label
, const ReadyQueue
&Q
, SUnit
*SU
,
266 int Cost
, PressureChange P
= PressureChange());
268 void readyQueueVerboseDump(const RegPressureTracker
&RPTracker
,
269 SchedCandidate
&Candidate
, ReadyQueue
&Q
);
273 } // end namespace llvm
275 #endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONMACHINESCHEDULER_H