Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 1 | //=- llvm/CodeGen/DFAPacketizer.cpp - DFA Packetizer for VLIW -*- C++ -*-=====// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // This class implements a deterministic finite automaton (DFA) based |
| 9 | // packetizing mechanism for VLIW architectures. It provides APIs to |
| 10 | // determine whether there exists a legal mapping of instructions to |
| 11 | // functional unit assignments in a packet. The DFA is auto-generated from |
| 12 | // the target's Schedule.td file. |
| 13 | // |
| 14 | // A DFA consists of 3 major elements: states, inputs, and transitions. For |
| 15 | // the packetizing mechanism, the input is the set of instruction classes for |
| 16 | // a target. The state models all possible combinations of functional unit |
| 17 | // consumption for a given set of instructions in a packet. A transition |
| 18 | // models the addition of an instruction to a packet. In the DFA constructed |
| 19 | // by this class, if an instruction can be added to a packet, then a valid |
| 20 | // transition exists from the corresponding state. Invalid transitions |
| 21 | // indicate that the instruction cannot be added to the current packet. |
| 22 | // |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | |
| 25 | #include "llvm/CodeGen/DFAPacketizer.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineFunction.h" |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineInstr.h" |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineInstrBundle.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/ScheduleDAG.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/ScheduleDAGInstrs.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 33 | #include "llvm/MC/MCInstrDesc.h" |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 34 | #include "llvm/MC/MCInstrItineraries.h" |
Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 35 | #include "llvm/Support/CommandLine.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Debug.h" |
| 37 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 38 | #include <algorithm> |
| 39 | #include <cassert> |
| 40 | #include <iterator> |
| 41 | #include <memory> |
| 42 | #include <vector> |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 43 | |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 44 | using namespace llvm; |
| 45 | |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 46 | #define DEBUG_TYPE "packets" |
| 47 | |
Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 48 | static cl::opt<unsigned> InstrLimit("dfa-instr-limit", cl::Hidden, |
| 49 | cl::init(0), cl::desc("If present, stops packetizing after N instructions")); |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 50 | |
Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 51 | static unsigned InstrCount = 0; |
| 52 | |
Krzysztof Parzyszek | 6753f33 | 2015-11-22 15:20:19 +0000 | [diff] [blame] | 53 | // -------------------------------------------------------------------- |
| 54 | // Definitions shared between DFAPacketizer.cpp and DFAPacketizerEmitter.cpp |
| 55 | |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 56 | static DFAInput addDFAFuncUnits(DFAInput Inp, unsigned FuncUnits) { |
| 57 | return (Inp << DFA_MAX_RESOURCES) | FuncUnits; |
Krzysztof Parzyszek | 6753f33 | 2015-11-22 15:20:19 +0000 | [diff] [blame] | 58 | } |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 59 | |
| 60 | /// Return the DFAInput for an instruction class input vector. |
| 61 | /// This function is used in both DFAPacketizer.cpp and in |
| 62 | /// DFAPacketizerEmitter.cpp. |
| 63 | static DFAInput getDFAInsnInput(const std::vector<unsigned> &InsnClass) { |
| 64 | DFAInput InsnInput = 0; |
| 65 | assert((InsnClass.size() <= DFA_MAX_RESTERMS) && |
| 66 | "Exceeded maximum number of DFA terms"); |
| 67 | for (auto U : InsnClass) |
| 68 | InsnInput = addDFAFuncUnits(InsnInput, U); |
| 69 | return InsnInput; |
| 70 | } |
| 71 | |
Krzysztof Parzyszek | 6753f33 | 2015-11-22 15:20:19 +0000 | [diff] [blame] | 72 | // -------------------------------------------------------------------- |
| 73 | |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 74 | DFAPacketizer::DFAPacketizer(const InstrItineraryData *I, |
| 75 | const DFAStateInput (*SIT)[2], |
Sebastian Pop | ac35a4d | 2011-12-06 17:34:16 +0000 | [diff] [blame] | 76 | const unsigned *SET): |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 77 | InstrItins(I), DFAStateInputTable(SIT), DFAStateEntryTable(SET) { |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 78 | // Make sure DFA types are large enough for the number of terms & resources. |
Benjamin Kramer | 3e9a5d3 | 2016-05-27 11:36:04 +0000 | [diff] [blame] | 79 | static_assert((DFA_MAX_RESTERMS * DFA_MAX_RESOURCES) <= |
| 80 | (8 * sizeof(DFAInput)), |
| 81 | "(DFA_MAX_RESTERMS * DFA_MAX_RESOURCES) too big for DFAInput"); |
| 82 | static_assert( |
| 83 | (DFA_MAX_RESTERMS * DFA_MAX_RESOURCES) <= (8 * sizeof(DFAStateInput)), |
| 84 | "(DFA_MAX_RESTERMS * DFA_MAX_RESOURCES) too big for DFAStateInput"); |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 85 | } |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 86 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 87 | // Read the DFA transition table and update CachedTable. |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 88 | // |
| 89 | // Format of the transition tables: |
| 90 | // DFAStateInputTable[][2] = pairs of <Input, Transition> for all valid |
| 91 | // transitions |
| 92 | // DFAStateEntryTable[i] = Index of the first entry in DFAStateInputTable |
| 93 | // for the ith state |
| 94 | // |
| 95 | void DFAPacketizer::ReadTable(unsigned int state) { |
| 96 | unsigned ThisState = DFAStateEntryTable[state]; |
| 97 | unsigned NextStateInTable = DFAStateEntryTable[state+1]; |
| 98 | // Early exit in case CachedTable has already contains this |
Sebastian Pop | 9aa6137 | 2011-12-06 17:34:11 +0000 | [diff] [blame] | 99 | // state's transitions. |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 100 | if (CachedTable.count(UnsignPair(state, DFAStateInputTable[ThisState][0]))) |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 101 | return; |
| 102 | |
| 103 | for (unsigned i = ThisState; i < NextStateInTable; i++) |
| 104 | CachedTable[UnsignPair(state, DFAStateInputTable[i][0])] = |
| 105 | DFAStateInputTable[i][1]; |
| 106 | } |
| 107 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 108 | // Return the DFAInput for an instruction class. |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 109 | DFAInput DFAPacketizer::getInsnInput(unsigned InsnClass) { |
| 110 | // Note: this logic must match that in DFAPacketizerDefs.h for input vectors. |
| 111 | DFAInput InsnInput = 0; |
| 112 | unsigned i = 0; |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 113 | (void)i; |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 114 | for (const InstrStage *IS = InstrItins->beginStage(InsnClass), |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 115 | *IE = InstrItins->endStage(InsnClass); IS != IE; ++IS) { |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 116 | InsnInput = addDFAFuncUnits(InsnInput, IS->getUnits()); |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 117 | assert((i++ < DFA_MAX_RESTERMS) && "Exceeded maximum number of DFA inputs"); |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 118 | } |
| 119 | return InsnInput; |
| 120 | } |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 121 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 122 | // Return the DFAInput for an instruction class input vector. |
Krzysztof Parzyszek | 6753f33 | 2015-11-22 15:20:19 +0000 | [diff] [blame] | 123 | DFAInput DFAPacketizer::getInsnInput(const std::vector<unsigned> &InsnClass) { |
| 124 | return getDFAInsnInput(InsnClass); |
| 125 | } |
| 126 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 127 | // Check if the resources occupied by a MCInstrDesc are available in the |
| 128 | // current state. |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 129 | bool DFAPacketizer::canReserveResources(const MCInstrDesc *MID) { |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 130 | unsigned InsnClass = MID->getSchedClass(); |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 131 | DFAInput InsnInput = getInsnInput(InsnClass); |
| 132 | UnsignPair StateTrans = UnsignPair(CurrentState, InsnInput); |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 133 | ReadTable(CurrentState); |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 134 | return CachedTable.count(StateTrans) != 0; |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 137 | // Reserve the resources occupied by a MCInstrDesc and change the current |
| 138 | // state to reflect that change. |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 139 | void DFAPacketizer::reserveResources(const MCInstrDesc *MID) { |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 140 | unsigned InsnClass = MID->getSchedClass(); |
Krzysztof Parzyszek | b465572 | 2015-11-21 20:00:45 +0000 | [diff] [blame] | 141 | DFAInput InsnInput = getInsnInput(InsnClass); |
| 142 | UnsignPair StateTrans = UnsignPair(CurrentState, InsnInput); |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 143 | ReadTable(CurrentState); |
| 144 | assert(CachedTable.count(StateTrans) != 0); |
| 145 | CurrentState = CachedTable[StateTrans]; |
| 146 | } |
| 147 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 148 | // Check if the resources occupied by a machine instruction are available |
| 149 | // in the current state. |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 150 | bool DFAPacketizer::canReserveResources(MachineInstr &MI) { |
| 151 | const MCInstrDesc &MID = MI.getDesc(); |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 152 | return canReserveResources(&MID); |
| 153 | } |
| 154 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 155 | // Reserve the resources occupied by a machine instruction and change the |
| 156 | // current state to reflect that change. |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 157 | void DFAPacketizer::reserveResources(MachineInstr &MI) { |
| 158 | const MCInstrDesc &MID = MI.getDesc(); |
Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 159 | reserveResources(&MID); |
| 160 | } |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 161 | |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 162 | namespace llvm { |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 163 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 164 | // This class extends ScheduleDAGInstrs and overrides the schedule method |
| 165 | // to build the dependence graph. |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 166 | class DefaultVLIWScheduler : public ScheduleDAGInstrs { |
Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 167 | private: |
| 168 | AliasAnalysis *AA; |
Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 169 | /// Ordered list of DAG postprocessing steps. |
| 170 | std::vector<std::unique_ptr<ScheduleDAGMutation>> Mutations; |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 171 | |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 172 | public: |
Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 173 | DefaultVLIWScheduler(MachineFunction &MF, MachineLoopInfo &MLI, |
| 174 | AliasAnalysis *AA); |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 175 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 176 | // Actual scheduling work. |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 177 | void schedule() override; |
Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 178 | |
| 179 | /// DefaultVLIWScheduler takes ownership of the Mutation object. |
| 180 | void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { |
| 181 | Mutations.push_back(std::move(Mutation)); |
| 182 | } |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 183 | |
Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 184 | protected: |
| 185 | void postprocessDAG(); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 186 | }; |
Andrew Trick | 20349b8 | 2012-02-15 23:34:15 +0000 | [diff] [blame] | 187 | |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 188 | } // end namespace llvm |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 189 | |
Alexey Samsonov | ea0aee6 | 2014-08-20 20:57:26 +0000 | [diff] [blame] | 190 | DefaultVLIWScheduler::DefaultVLIWScheduler(MachineFunction &MF, |
Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 191 | MachineLoopInfo &MLI, |
| 192 | AliasAnalysis *AA) |
| 193 | : ScheduleDAGInstrs(MF, &MLI), AA(AA) { |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 194 | CanHandleTerminators = true; |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 197 | /// Apply each ScheduleDAGMutation step in order. |
| 198 | void DefaultVLIWScheduler::postprocessDAG() { |
| 199 | for (auto &M : Mutations) |
| 200 | M->apply(this); |
| 201 | } |
| 202 | |
Andrew Trick | 52226d4 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 203 | void DefaultVLIWScheduler::schedule() { |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 204 | // Build the scheduling graph. |
Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 205 | buildSchedGraph(AA); |
Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 206 | postprocessDAG(); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 209 | VLIWPacketizerList::VLIWPacketizerList(MachineFunction &mf, |
| 210 | MachineLoopInfo &mli, AliasAnalysis *aa) |
| 211 | : MF(mf), TII(mf.getSubtarget().getInstrInfo()), AA(aa) { |
Eric Christopher | 143f02c | 2014-10-09 01:59:35 +0000 | [diff] [blame] | 212 | ResourceTracker = TII->CreateTargetScheduleState(MF.getSubtarget()); |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 213 | VLIWScheduler = new DefaultVLIWScheduler(MF, mli, AA); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 216 | VLIWPacketizerList::~VLIWPacketizerList() { |
Gabor Horvath | 43b72d5 | 2017-05-01 16:18:42 +0000 | [diff] [blame] | 217 | delete VLIWScheduler; |
| 218 | delete ResourceTracker; |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 221 | // End the current packet, bundle packet instructions and reset DFA state. |
Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 222 | void VLIWPacketizerList::endPacket(MachineBasicBlock *MBB, |
| 223 | MachineBasicBlock::iterator MI) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 224 | LLVM_DEBUG({ |
Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 225 | if (!CurrentPacketMIs.empty()) { |
| 226 | dbgs() << "Finalizing packet:\n"; |
| 227 | for (MachineInstr *MI : CurrentPacketMIs) |
| 228 | dbgs() << " * " << *MI; |
| 229 | } |
| 230 | }); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 231 | if (CurrentPacketMIs.size() > 1) { |
Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 232 | MachineInstr &MIFirst = *CurrentPacketMIs.front(); |
| 233 | finalizeBundle(*MBB, MIFirst.getIterator(), MI.getInstrIterator()); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 234 | } |
| 235 | CurrentPacketMIs.clear(); |
| 236 | ResourceTracker->clearResources(); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 237 | LLVM_DEBUG(dbgs() << "End packet\n"); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 238 | } |
| 239 | |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 240 | // Bundle machine instructions into packets. |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 241 | void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB, |
| 242 | MachineBasicBlock::iterator BeginItr, |
| 243 | MachineBasicBlock::iterator EndItr) { |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 244 | assert(VLIWScheduler && "VLIW Scheduler is not initialized!"); |
| 245 | VLIWScheduler->startBlock(MBB); |
Andrew Trick | a53e101 | 2013-08-23 17:48:33 +0000 | [diff] [blame] | 246 | VLIWScheduler->enterRegion(MBB, BeginItr, EndItr, |
| 247 | std::distance(BeginItr, EndItr)); |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 248 | VLIWScheduler->schedule(); |
Andrew Trick | 69b4204 | 2012-03-07 23:01:09 +0000 | [diff] [blame] | 249 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 250 | LLVM_DEBUG({ |
Krzysztof Parzyszek | 31ceba7 | 2016-07-14 19:04:26 +0000 | [diff] [blame] | 251 | dbgs() << "Scheduling DAG of the packetize region\n"; |
Matthias Braun | 726e12c | 2018-09-19 00:23:35 +0000 | [diff] [blame] | 252 | VLIWScheduler->dump(); |
Krzysztof Parzyszek | 31ceba7 | 2016-07-14 19:04:26 +0000 | [diff] [blame] | 253 | }); |
| 254 | |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 255 | // Generate MI -> SU map. |
| 256 | MIToSUnit.clear(); |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 257 | for (SUnit &SU : VLIWScheduler->SUnits) |
| 258 | MIToSUnit[SU.getInstr()] = &SU; |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 259 | |
Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 260 | bool LimitPresent = InstrLimit.getPosition(); |
| 261 | |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 262 | // The main packetizer loop. |
| 263 | for (; BeginItr != EndItr; ++BeginItr) { |
Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 264 | if (LimitPresent) { |
| 265 | if (InstrCount >= InstrLimit) { |
| 266 | EndItr = BeginItr; |
| 267 | break; |
| 268 | } |
| 269 | InstrCount++; |
| 270 | } |
Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 271 | MachineInstr &MI = *BeginItr; |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 272 | initPacketizerState(); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 273 | |
| 274 | // End the current packet if needed. |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 275 | if (isSoloInstruction(MI)) { |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 276 | endPacket(MBB, MI); |
| 277 | continue; |
| 278 | } |
| 279 | |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 280 | // Ignore pseudo instructions. |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 281 | if (ignorePseudoInstruction(MI, MBB)) |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 282 | continue; |
| 283 | |
Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 284 | SUnit *SUI = MIToSUnit[&MI]; |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 285 | assert(SUI && "Missing SUnit Info!"); |
| 286 | |
| 287 | // Ask DFA if machine resource is available for MI. |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 288 | LLVM_DEBUG(dbgs() << "Checking resources for adding MI to packet " << MI); |
Krzysztof Parzyszek | 31ceba7 | 2016-07-14 19:04:26 +0000 | [diff] [blame] | 289 | |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 290 | bool ResourceAvail = ResourceTracker->canReserveResources(MI); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 291 | LLVM_DEBUG({ |
Krzysztof Parzyszek | 31ceba7 | 2016-07-14 19:04:26 +0000 | [diff] [blame] | 292 | if (ResourceAvail) |
| 293 | dbgs() << " Resources are available for adding MI to packet\n"; |
| 294 | else |
| 295 | dbgs() << " Resources NOT available\n"; |
| 296 | }); |
Krzysztof Parzyszek | 2005d7d | 2015-12-16 16:38:16 +0000 | [diff] [blame] | 297 | if (ResourceAvail && shouldAddToPacket(MI)) { |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 298 | // Dependency check for MI with instructions in CurrentPacketMIs. |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 299 | for (auto MJ : CurrentPacketMIs) { |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 300 | SUnit *SUJ = MIToSUnit[MJ]; |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 301 | assert(SUJ && "Missing SUnit Info!"); |
| 302 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 303 | LLVM_DEBUG(dbgs() << " Checking against MJ " << *MJ); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 304 | // Is it legal to packetize SUI and SUJ together. |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 305 | if (!isLegalToPacketizeTogether(SUI, SUJ)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 306 | LLVM_DEBUG(dbgs() << " Not legal to add MI, try to prune\n"); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 307 | // Allow packetization if dependency can be pruned. |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 308 | if (!isLegalToPruneDependencies(SUI, SUJ)) { |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 309 | // End the packet if dependency cannot be pruned. |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 310 | LLVM_DEBUG(dbgs() |
| 311 | << " Could not prune dependencies for adding MI\n"); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 312 | endPacket(MBB, MI); |
| 313 | break; |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 314 | } |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 315 | LLVM_DEBUG(dbgs() << " Pruned dependence for adding MI\n"); |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 316 | } |
| 317 | } |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 318 | } else { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 319 | LLVM_DEBUG(if (ResourceAvail) dbgs() |
| 320 | << "Resources are available, but instruction should not be " |
| 321 | "added to packet\n " |
| 322 | << MI); |
Krzysztof Parzyszek | 2005d7d | 2015-12-16 16:38:16 +0000 | [diff] [blame] | 323 | // End the packet if resource is not available, or if the instruction |
| 324 | // shoud not be added to the current packet. |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 325 | endPacket(MBB, MI); |
| 326 | } |
| 327 | |
| 328 | // Add MI to the current packet. |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 329 | LLVM_DEBUG(dbgs() << "* Adding MI to packet " << MI << '\n'); |
Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 330 | BeginItr = addToPacket(MI); |
| 331 | } // For all instructions in the packetization range. |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 332 | |
| 333 | // End any packet left behind. |
| 334 | endPacket(MBB, EndItr); |
Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 335 | VLIWScheduler->exitRegion(); |
| 336 | VLIWScheduler->finishBlock(); |
Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 337 | } |
Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 338 | |
Krzysztof Parzyszek | 9d19c8c | 2017-10-20 22:08:40 +0000 | [diff] [blame] | 339 | bool VLIWPacketizerList::alias(const MachineMemOperand &Op1, |
| 340 | const MachineMemOperand &Op2, |
| 341 | bool UseTBAA) const { |
| 342 | if (!Op1.getValue() || !Op2.getValue()) |
| 343 | return true; |
| 344 | |
| 345 | int64_t MinOffset = std::min(Op1.getOffset(), Op2.getOffset()); |
| 346 | int64_t Overlapa = Op1.getSize() + Op1.getOffset() - MinOffset; |
| 347 | int64_t Overlapb = Op2.getSize() + Op2.getOffset() - MinOffset; |
| 348 | |
| 349 | AliasResult AAResult = |
| 350 | AA->alias(MemoryLocation(Op1.getValue(), Overlapa, |
| 351 | UseTBAA ? Op1.getAAInfo() : AAMDNodes()), |
| 352 | MemoryLocation(Op2.getValue(), Overlapb, |
| 353 | UseTBAA ? Op2.getAAInfo() : AAMDNodes())); |
| 354 | |
| 355 | return AAResult != NoAlias; |
| 356 | } |
| 357 | |
| 358 | bool VLIWPacketizerList::alias(const MachineInstr &MI1, |
| 359 | const MachineInstr &MI2, |
| 360 | bool UseTBAA) const { |
| 361 | if (MI1.memoperands_empty() || MI2.memoperands_empty()) |
| 362 | return true; |
| 363 | |
| 364 | for (const MachineMemOperand *Op1 : MI1.memoperands()) |
| 365 | for (const MachineMemOperand *Op2 : MI2.memoperands()) |
| 366 | if (alias(*Op1, *Op2, UseTBAA)) |
| 367 | return true; |
| 368 | return false; |
| 369 | } |
| 370 | |
Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 371 | // Add a DAG mutation object to the ordered list. |
| 372 | void VLIWPacketizerList::addMutation( |
| 373 | std::unique_ptr<ScheduleDAGMutation> Mutation) { |
| 374 | VLIWScheduler->addMutation(std::move(Mutation)); |
| 375 | } |