| 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" |
| James Molloy | b6c7fce6 | 2019-09-09 13:17:55 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/StringExtras.h" |
| Reid Kleckner | 0ad6c19 | 2019-10-19 01:07:48 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/AliasAnalysis.h" |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineFunction.h" |
| Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineInstr.h" |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineInstrBundle.h" |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/ScheduleDAG.h" |
| Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/ScheduleDAGInstrs.h" |
| David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/TargetInstrInfo.h" |
| David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 35 | #include "llvm/MC/MCInstrDesc.h" |
| Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 36 | #include "llvm/MC/MCInstrItineraries.h" |
| Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 37 | #include "llvm/Support/CommandLine.h" |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 38 | #include "llvm/Support/Debug.h" |
| 39 | #include "llvm/Support/raw_ostream.h" |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 40 | #include <algorithm> |
| 41 | #include <cassert> |
| 42 | #include <iterator> |
| 43 | #include <memory> |
| 44 | #include <vector> |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 45 | |
| Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 46 | using namespace llvm; |
| 47 | |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 48 | #define DEBUG_TYPE "packets" |
| 49 | |
| Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 50 | static cl::opt<unsigned> InstrLimit("dfa-instr-limit", cl::Hidden, |
| 51 | cl::init(0), cl::desc("If present, stops packetizing after N instructions")); |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 52 | |
| Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 53 | static unsigned InstrCount = 0; |
| 54 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 55 | // Check if the resources occupied by a MCInstrDesc are available in the |
| 56 | // current state. |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 57 | bool DFAPacketizer::canReserveResources(const MCInstrDesc *MID) { |
| jmolloy | 39525a6 | 2019-11-04 19:25:13 +0000 | [diff] [blame] | 58 | unsigned Action = ItinActions[MID->getSchedClass()]; |
| 59 | if (MID->getSchedClass() == 0 || Action == 0) |
| 60 | return false; |
| 61 | return A.canAdd(Action); |
| Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 62 | } |
| 63 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 64 | // Reserve the resources occupied by a MCInstrDesc and change the current |
| 65 | // state to reflect that change. |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 66 | void DFAPacketizer::reserveResources(const MCInstrDesc *MID) { |
| jmolloy | 39525a6 | 2019-11-04 19:25:13 +0000 | [diff] [blame] | 67 | unsigned Action = ItinActions[MID->getSchedClass()]; |
| 68 | if (MID->getSchedClass() == 0 || Action == 0) |
| 69 | return; |
| 70 | A.add(Action); |
| Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 71 | } |
| 72 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 73 | // Check if the resources occupied by a machine instruction are available |
| 74 | // in the current state. |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 75 | bool DFAPacketizer::canReserveResources(MachineInstr &MI) { |
| 76 | const MCInstrDesc &MID = MI.getDesc(); |
| Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 77 | return canReserveResources(&MID); |
| 78 | } |
| 79 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 80 | // Reserve the resources occupied by a machine instruction and change the |
| 81 | // current state to reflect that change. |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 82 | void DFAPacketizer::reserveResources(MachineInstr &MI) { |
| 83 | const MCInstrDesc &MID = MI.getDesc(); |
| Anshuman Dasgupta | 08ebdc1 | 2011-12-01 21:10:21 +0000 | [diff] [blame] | 84 | reserveResources(&MID); |
| 85 | } |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 86 | |
| James Molloy | b6c7fce6 | 2019-09-09 13:17:55 +0000 | [diff] [blame] | 87 | unsigned DFAPacketizer::getUsedResources(unsigned InstIdx) { |
| James Molloy | 12092a9 | 2019-10-17 08:34:29 +0000 | [diff] [blame] | 88 | ArrayRef<NfaPath> NfaPaths = A.getNfaPaths(); |
| 89 | assert(!NfaPaths.empty() && "Invalid bundle!"); |
| 90 | const NfaPath &RS = NfaPaths.front(); |
| James Molloy | b6c7fce6 | 2019-09-09 13:17:55 +0000 | [diff] [blame] | 91 | |
| 92 | // RS stores the cumulative resources used up to and including the I'th |
| 93 | // instruction. The 0th instruction is the base case. |
| 94 | if (InstIdx == 0) |
| 95 | return RS[0]; |
| 96 | // Return the difference between the cumulative resources used by InstIdx and |
| 97 | // its predecessor. |
| 98 | return RS[InstIdx] ^ RS[InstIdx - 1]; |
| 99 | } |
| 100 | |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 101 | namespace llvm { |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 102 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 103 | // This class extends ScheduleDAGInstrs and overrides the schedule method |
| 104 | // to build the dependence graph. |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 105 | class DefaultVLIWScheduler : public ScheduleDAGInstrs { |
| Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 106 | private: |
| Reid Kleckner | 0ad6c19 | 2019-10-19 01:07:48 +0000 | [diff] [blame] | 107 | AAResults *AA; |
| Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 108 | /// Ordered list of DAG postprocessing steps. |
| 109 | std::vector<std::unique_ptr<ScheduleDAGMutation>> Mutations; |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 110 | |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 111 | public: |
| Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 112 | DefaultVLIWScheduler(MachineFunction &MF, MachineLoopInfo &MLI, |
| Reid Kleckner | 0ad6c19 | 2019-10-19 01:07:48 +0000 | [diff] [blame] | 113 | AAResults *AA); |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 114 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 115 | // Actual scheduling work. |
| Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 116 | void schedule() override; |
| Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 117 | |
| 118 | /// DefaultVLIWScheduler takes ownership of the Mutation object. |
| 119 | void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { |
| 120 | Mutations.push_back(std::move(Mutation)); |
| 121 | } |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 122 | |
| Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 123 | protected: |
| 124 | void postprocessDAG(); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 125 | }; |
| Andrew Trick | 20349b8 | 2012-02-15 23:34:15 +0000 | [diff] [blame] | 126 | |
| Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 127 | } // end namespace llvm |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 128 | |
| Alexey Samsonov | ea0aee6 | 2014-08-20 20:57:26 +0000 | [diff] [blame] | 129 | DefaultVLIWScheduler::DefaultVLIWScheduler(MachineFunction &MF, |
| Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 130 | MachineLoopInfo &MLI, |
| Reid Kleckner | 0ad6c19 | 2019-10-19 01:07:48 +0000 | [diff] [blame] | 131 | AAResults *AA) |
| Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 132 | : ScheduleDAGInstrs(MF, &MLI), AA(AA) { |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 133 | CanHandleTerminators = true; |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 136 | /// Apply each ScheduleDAGMutation step in order. |
| 137 | void DefaultVLIWScheduler::postprocessDAG() { |
| 138 | for (auto &M : Mutations) |
| 139 | M->apply(this); |
| 140 | } |
| 141 | |
| Andrew Trick | 52226d4 | 2012-03-07 23:00:49 +0000 | [diff] [blame] | 142 | void DefaultVLIWScheduler::schedule() { |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 143 | // Build the scheduling graph. |
| Krzysztof Parzyszek | dac7102 | 2015-12-14 20:35:13 +0000 | [diff] [blame] | 144 | buildSchedGraph(AA); |
| Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 145 | postprocessDAG(); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 148 | VLIWPacketizerList::VLIWPacketizerList(MachineFunction &mf, |
| Reid Kleckner | 0ad6c19 | 2019-10-19 01:07:48 +0000 | [diff] [blame] | 149 | MachineLoopInfo &mli, AAResults *aa) |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 150 | : MF(mf), TII(mf.getSubtarget().getInstrInfo()), AA(aa) { |
| Eric Christopher | 143f02c | 2014-10-09 01:59:35 +0000 | [diff] [blame] | 151 | ResourceTracker = TII->CreateTargetScheduleState(MF.getSubtarget()); |
| James Molloy | b6c7fce6 | 2019-09-09 13:17:55 +0000 | [diff] [blame] | 152 | ResourceTracker->setTrackResources(true); |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 153 | VLIWScheduler = new DefaultVLIWScheduler(MF, mli, AA); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 154 | } |
| 155 | |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 156 | VLIWPacketizerList::~VLIWPacketizerList() { |
| Gabor Horvath | 43b72d5 | 2017-05-01 16:18:42 +0000 | [diff] [blame] | 157 | delete VLIWScheduler; |
| 158 | delete ResourceTracker; |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 161 | // 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] | 162 | void VLIWPacketizerList::endPacket(MachineBasicBlock *MBB, |
| 163 | MachineBasicBlock::iterator MI) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 164 | LLVM_DEBUG({ |
| Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 165 | if (!CurrentPacketMIs.empty()) { |
| 166 | dbgs() << "Finalizing packet:\n"; |
| James Molloy | b6c7fce6 | 2019-09-09 13:17:55 +0000 | [diff] [blame] | 167 | unsigned Idx = 0; |
| 168 | for (MachineInstr *MI : CurrentPacketMIs) { |
| 169 | unsigned R = ResourceTracker->getUsedResources(Idx++); |
| 170 | dbgs() << " * [res:0x" << utohexstr(R) << "] " << *MI; |
| 171 | } |
| Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 172 | } |
| 173 | }); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 174 | if (CurrentPacketMIs.size() > 1) { |
| Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 175 | MachineInstr &MIFirst = *CurrentPacketMIs.front(); |
| 176 | finalizeBundle(*MBB, MIFirst.getIterator(), MI.getInstrIterator()); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 177 | } |
| 178 | CurrentPacketMIs.clear(); |
| 179 | ResourceTracker->clearResources(); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 180 | LLVM_DEBUG(dbgs() << "End packet\n"); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 181 | } |
| 182 | |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 183 | // Bundle machine instructions into packets. |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 184 | void VLIWPacketizerList::PacketizeMIs(MachineBasicBlock *MBB, |
| 185 | MachineBasicBlock::iterator BeginItr, |
| 186 | MachineBasicBlock::iterator EndItr) { |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 187 | assert(VLIWScheduler && "VLIW Scheduler is not initialized!"); |
| 188 | VLIWScheduler->startBlock(MBB); |
| Andrew Trick | a53e101 | 2013-08-23 17:48:33 +0000 | [diff] [blame] | 189 | VLIWScheduler->enterRegion(MBB, BeginItr, EndItr, |
| 190 | std::distance(BeginItr, EndItr)); |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 191 | VLIWScheduler->schedule(); |
| Andrew Trick | 69b4204 | 2012-03-07 23:01:09 +0000 | [diff] [blame] | 192 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 193 | LLVM_DEBUG({ |
| Krzysztof Parzyszek | 31ceba7 | 2016-07-14 19:04:26 +0000 | [diff] [blame] | 194 | dbgs() << "Scheduling DAG of the packetize region\n"; |
| Matthias Braun | 726e12c | 2018-09-19 00:23:35 +0000 | [diff] [blame] | 195 | VLIWScheduler->dump(); |
| Krzysztof Parzyszek | 31ceba7 | 2016-07-14 19:04:26 +0000 | [diff] [blame] | 196 | }); |
| 197 | |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 198 | // Generate MI -> SU map. |
| 199 | MIToSUnit.clear(); |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 200 | for (SUnit &SU : VLIWScheduler->SUnits) |
| 201 | MIToSUnit[SU.getInstr()] = &SU; |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 202 | |
| Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 203 | bool LimitPresent = InstrLimit.getPosition(); |
| 204 | |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 205 | // The main packetizer loop. |
| 206 | for (; BeginItr != EndItr; ++BeginItr) { |
| Krzysztof Parzyszek | e4582d4 | 2016-08-19 21:12:52 +0000 | [diff] [blame] | 207 | if (LimitPresent) { |
| 208 | if (InstrCount >= InstrLimit) { |
| 209 | EndItr = BeginItr; |
| 210 | break; |
| 211 | } |
| 212 | InstrCount++; |
| 213 | } |
| Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 214 | MachineInstr &MI = *BeginItr; |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 215 | initPacketizerState(); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 216 | |
| 217 | // End the current packet if needed. |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 218 | if (isSoloInstruction(MI)) { |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 219 | endPacket(MBB, MI); |
| 220 | continue; |
| 221 | } |
| 222 | |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 223 | // Ignore pseudo instructions. |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 224 | if (ignorePseudoInstruction(MI, MBB)) |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 225 | continue; |
| 226 | |
| Duncan P. N. Exon Smith | 5702287 | 2016-02-27 19:09:00 +0000 | [diff] [blame] | 227 | SUnit *SUI = MIToSUnit[&MI]; |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 228 | assert(SUI && "Missing SUnit Info!"); |
| 229 | |
| 230 | // Ask DFA if machine resource is available for MI. |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 231 | LLVM_DEBUG(dbgs() << "Checking resources for adding MI to packet " << MI); |
| Krzysztof Parzyszek | 31ceba7 | 2016-07-14 19:04:26 +0000 | [diff] [blame] | 232 | |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 233 | bool ResourceAvail = ResourceTracker->canReserveResources(MI); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 234 | LLVM_DEBUG({ |
| Krzysztof Parzyszek | 31ceba7 | 2016-07-14 19:04:26 +0000 | [diff] [blame] | 235 | if (ResourceAvail) |
| 236 | dbgs() << " Resources are available for adding MI to packet\n"; |
| 237 | else |
| 238 | dbgs() << " Resources NOT available\n"; |
| 239 | }); |
| Krzysztof Parzyszek | 2005d7d | 2015-12-16 16:38:16 +0000 | [diff] [blame] | 240 | if (ResourceAvail && shouldAddToPacket(MI)) { |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 241 | // Dependency check for MI with instructions in CurrentPacketMIs. |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 242 | for (auto MJ : CurrentPacketMIs) { |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 243 | SUnit *SUJ = MIToSUnit[MJ]; |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 244 | assert(SUJ && "Missing SUnit Info!"); |
| 245 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 246 | LLVM_DEBUG(dbgs() << " Checking against MJ " << *MJ); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 247 | // Is it legal to packetize SUI and SUJ together. |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 248 | if (!isLegalToPacketizeTogether(SUI, SUJ)) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 249 | LLVM_DEBUG(dbgs() << " Not legal to add MI, try to prune\n"); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 250 | // Allow packetization if dependency can be pruned. |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 251 | if (!isLegalToPruneDependencies(SUI, SUJ)) { |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 252 | // End the packet if dependency cannot be pruned. |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 253 | LLVM_DEBUG(dbgs() |
| 254 | << " Could not prune dependencies for adding MI\n"); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 255 | endPacket(MBB, MI); |
| 256 | break; |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 257 | } |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 258 | LLVM_DEBUG(dbgs() << " Pruned dependence for adding MI\n"); |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 259 | } |
| 260 | } |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 261 | } else { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 262 | LLVM_DEBUG(if (ResourceAvail) dbgs() |
| 263 | << "Resources are available, but instruction should not be " |
| 264 | "added to packet\n " |
| 265 | << MI); |
| Krzysztof Parzyszek | 2005d7d | 2015-12-16 16:38:16 +0000 | [diff] [blame] | 266 | // End the packet if resource is not available, or if the instruction |
| 267 | // shoud not be added to the current packet. |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 268 | endPacket(MBB, MI); |
| 269 | } |
| 270 | |
| 271 | // Add MI to the current packet. |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 272 | LLVM_DEBUG(dbgs() << "* Adding MI to packet " << MI << '\n'); |
| Krzysztof Parzyszek | c005e20 | 2016-01-14 21:17:04 +0000 | [diff] [blame] | 273 | BeginItr = addToPacket(MI); |
| 274 | } // For all instructions in the packetization range. |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 275 | |
| 276 | // End any packet left behind. |
| 277 | endPacket(MBB, EndItr); |
| Sirish Pande | 9421216 | 2012-05-01 21:28:30 +0000 | [diff] [blame] | 278 | VLIWScheduler->exitRegion(); |
| 279 | VLIWScheduler->finishBlock(); |
| Andrew Trick | 7a35fae | 2012-02-15 18:55:14 +0000 | [diff] [blame] | 280 | } |
| Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 281 | |
| Krzysztof Parzyszek | 9d19c8c | 2017-10-20 22:08:40 +0000 | [diff] [blame] | 282 | bool VLIWPacketizerList::alias(const MachineMemOperand &Op1, |
| 283 | const MachineMemOperand &Op2, |
| 284 | bool UseTBAA) const { |
| 285 | if (!Op1.getValue() || !Op2.getValue()) |
| 286 | return true; |
| 287 | |
| 288 | int64_t MinOffset = std::min(Op1.getOffset(), Op2.getOffset()); |
| 289 | int64_t Overlapa = Op1.getSize() + Op1.getOffset() - MinOffset; |
| 290 | int64_t Overlapb = Op2.getSize() + Op2.getOffset() - MinOffset; |
| 291 | |
| 292 | AliasResult AAResult = |
| 293 | AA->alias(MemoryLocation(Op1.getValue(), Overlapa, |
| 294 | UseTBAA ? Op1.getAAInfo() : AAMDNodes()), |
| 295 | MemoryLocation(Op2.getValue(), Overlapb, |
| 296 | UseTBAA ? Op2.getAAInfo() : AAMDNodes())); |
| 297 | |
| 298 | return AAResult != NoAlias; |
| 299 | } |
| 300 | |
| 301 | bool VLIWPacketizerList::alias(const MachineInstr &MI1, |
| 302 | const MachineInstr &MI2, |
| 303 | bool UseTBAA) const { |
| 304 | if (MI1.memoperands_empty() || MI2.memoperands_empty()) |
| 305 | return true; |
| 306 | |
| 307 | for (const MachineMemOperand *Op1 : MI1.memoperands()) |
| 308 | for (const MachineMemOperand *Op2 : MI2.memoperands()) |
| 309 | if (alias(*Op1, *Op2, UseTBAA)) |
| 310 | return true; |
| 311 | return false; |
| 312 | } |
| 313 | |
| Krzysztof Parzyszek | 1a1d78b | 2016-03-08 15:33:51 +0000 | [diff] [blame] | 314 | // Add a DAG mutation object to the ordered list. |
| 315 | void VLIWPacketizerList::addMutation( |
| 316 | std::unique_ptr<ScheduleDAGMutation> Mutation) { |
| 317 | VLIWScheduler->addMutation(std::move(Mutation)); |
| 318 | } |