1//===-- SlotIndexes.cpp - Slot Indexes Pass ------------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/CodeGen/SlotIndexes.h"
10#include "llvm/ADT/Statistic.h"
11#include "llvm/CodeGen/MachineFunction.h"
12#include "llvm/Config/llvm-config.h"
13#include "llvm/InitializePasses.h"
14#include "llvm/Support/Debug.h"
15#include "llvm/Support/raw_ostream.h"
16
17using namespace llvm;
18
19#define DEBUG_TYPE "slotindexes"
20
21AnalysisKey SlotIndexesAnalysis::Key;
22
23SlotIndexesAnalysis::Result
24SlotIndexesAnalysis::run(MachineFunction &MF,
25 MachineFunctionAnalysisManager &) {
26 return Result(MF);
27}
28
29PreservedAnalyses
30SlotIndexesPrinterPass::run(MachineFunction &MF,
31 MachineFunctionAnalysisManager &MFAM) {
32 OS << "Slot indexes in machine function: " << MF.getName() << '\n';
33 MFAM.getResult<SlotIndexesAnalysis>(IR&: MF).print(OS);
34 return PreservedAnalyses::all();
35}
36char SlotIndexesWrapperPass::ID = 0;
37
38SlotIndexesWrapperPass::SlotIndexesWrapperPass() : MachineFunctionPass(ID) {}
39
40SlotIndexes::~SlotIndexes() {
41 // The indexList's nodes are all allocated in the BumpPtrAllocator.
42 indexList.clear();
43}
44
45INITIALIZE_PASS(SlotIndexesWrapperPass, DEBUG_TYPE, "Slot index numbering",
46 false, false)
47
48STATISTIC(NumLocalRenum, "Number of local renumberings");
49
50void SlotIndexesWrapperPass::getAnalysisUsage(AnalysisUsage &au) const {
51 au.setPreservesAll();
52 MachineFunctionPass::getAnalysisUsage(AU&: au);
53}
54
55void SlotIndexes::clear() {
56 mi2iMap.clear();
57 MBBRanges.clear();
58 idx2MBBMap.clear();
59 indexList.clear();
60 ileAllocator.Reset();
61}
62
63void SlotIndexes::analyze(MachineFunction &fn) {
64
65 // Compute numbering as follows:
66 // Grab an iterator to the start of the index list.
67 // Iterate over all MBBs, and within each MBB all MIs, keeping the MI
68 // iterator in lock-step (though skipping it over indexes which have
69 // null pointers in the instruction field).
70 // At each iteration assert that the instruction pointed to in the index
71 // is the same one pointed to by the MI iterator. This
72
73 // FIXME: This can be simplified. The mi2iMap_, Idx2MBBMap, etc. should
74 // only need to be set up once after the first numbering is computed.
75
76 mf = &fn;
77
78 // Check that the list contains only the sentinel.
79 assert(indexList.empty() && "Index list non-empty at initial numbering?");
80 assert(idx2MBBMap.empty() &&
81 "Index -> MBB mapping non-empty at initial numbering?");
82 assert(MBBRanges.empty() &&
83 "MBB -> Index mapping non-empty at initial numbering?");
84 assert(mi2iMap.empty() &&
85 "MachineInstr -> Index mapping non-empty at initial numbering?");
86
87 unsigned index = 0;
88 MBBRanges.resize(N: mf->getNumBlockIDs());
89 idx2MBBMap.reserve(N: mf->size());
90
91 indexList.push_back(Node&: *createEntry(mi: nullptr, index));
92
93 // Iterate over the function.
94 for (MachineBasicBlock &MBB : *mf) {
95 // Insert an index for the MBB start.
96 SlotIndex blockStartIndex(&indexList.back(), SlotIndex::Slot_Block);
97
98 for (MachineInstr &MI : MBB) {
99 if (MI.isDebugOrPseudoInstr())
100 continue;
101
102 // Insert a store index for the instr.
103 indexList.push_back(Node&: *createEntry(mi: &MI, index: index += SlotIndex::InstrDist));
104
105 // Save this base index in the maps.
106 mi2iMap.insert(KV: std::make_pair(
107 x: &MI, y: SlotIndex(&indexList.back(), SlotIndex::Slot_Block)));
108 }
109
110 // We insert one blank instructions between basic blocks.
111 indexList.push_back(Node&: *createEntry(mi: nullptr, index: index += SlotIndex::InstrDist));
112
113 MBBRanges[MBB.getNumber()].first = blockStartIndex;
114 MBBRanges[MBB.getNumber()].second = SlotIndex(&indexList.back(),
115 SlotIndex::Slot_Block);
116 idx2MBBMap.push_back(Elt: IdxMBBPair(blockStartIndex, &MBB));
117 }
118
119 // Sort the Idx2MBBMap
120 llvm::sort(C&: idx2MBBMap, Comp: less_first());
121
122 LLVM_DEBUG(mf->print(dbgs(), this));
123}
124
125void SlotIndexes::removeMachineInstrFromMaps(MachineInstr &MI,
126 bool AllowBundled) {
127 assert((AllowBundled || !MI.isBundledWithPred()) &&
128 "Use removeSingleMachineInstrFromMaps() instead");
129 Mi2IndexMap::iterator mi2iItr = mi2iMap.find(Val: &MI);
130 if (mi2iItr == mi2iMap.end())
131 return;
132
133 SlotIndex MIIndex = mi2iItr->second;
134 IndexListEntry &MIEntry = *MIIndex.listEntry();
135 assert(MIEntry.getInstr() == &MI && "Instruction indexes broken.");
136 mi2iMap.erase(I: mi2iItr);
137 // FIXME: Eventually we want to actually delete these indexes.
138 MIEntry.setInstr(nullptr);
139}
140
141void SlotIndexes::removeSingleMachineInstrFromMaps(MachineInstr &MI) {
142 Mi2IndexMap::iterator mi2iItr = mi2iMap.find(Val: &MI);
143 if (mi2iItr == mi2iMap.end())
144 return;
145
146 SlotIndex MIIndex = mi2iItr->second;
147 IndexListEntry &MIEntry = *MIIndex.listEntry();
148 assert(MIEntry.getInstr() == &MI && "Instruction indexes broken.");
149 mi2iMap.erase(I: mi2iItr);
150
151 // When removing the first instruction of a bundle update mapping to next
152 // instruction.
153 if (MI.isBundledWithSucc()) {
154 // Only the first instruction of a bundle should have an index assigned.
155 assert(!MI.isBundledWithPred() && "Should be first bundle instruction");
156
157 MachineBasicBlock::instr_iterator Next = std::next(x: MI.getIterator());
158 MachineInstr &NextMI = *Next;
159 MIEntry.setInstr(&NextMI);
160 mi2iMap.insert(KV: std::make_pair(x: &NextMI, y&: MIIndex));
161 return;
162 } else {
163 // FIXME: Eventually we want to actually delete these indexes.
164 MIEntry.setInstr(nullptr);
165 }
166}
167
168// Renumber indexes locally after curItr was inserted, but failed to get a new
169// index.
170void SlotIndexes::renumberIndexes(IndexList::iterator curItr) {
171 // Number indexes with half the default spacing so we can catch up quickly.
172 const unsigned Space = SlotIndex::InstrDist/2;
173 static_assert((Space & 3) == 0, "InstrDist must be a multiple of 2*NUM");
174
175 IndexList::iterator startItr = std::prev(x: curItr);
176 unsigned index = startItr->getIndex();
177 do {
178 curItr->setIndex(index += Space);
179 ++curItr;
180 // If the next index is bigger, we have caught up.
181 } while (curItr != indexList.end() && curItr->getIndex() <= index);
182
183 LLVM_DEBUG(dbgs() << "\n*** Renumbered SlotIndexes " << startItr->getIndex()
184 << '-' << index << " ***\n");
185 ++NumLocalRenum;
186}
187
188// Repair indexes after adding and removing instructions.
189void SlotIndexes::repairIndexesInRange(MachineBasicBlock *MBB,
190 MachineBasicBlock::iterator Begin,
191 MachineBasicBlock::iterator End) {
192 bool includeStart = (Begin == MBB->begin());
193 SlotIndex startIdx;
194 if (includeStart)
195 startIdx = getMBBStartIdx(mbb: MBB);
196 else
197 startIdx = getInstructionIndex(MI: *--Begin);
198
199 SlotIndex endIdx;
200 if (End == MBB->end())
201 endIdx = getMBBEndIdx(mbb: MBB);
202 else
203 endIdx = getInstructionIndex(MI: *End);
204
205 // FIXME: Conceptually, this code is implementing an iterator on MBB that
206 // optionally includes an additional position prior to MBB->begin(), indicated
207 // by the includeStart flag. This is done so that we can iterate MIs in a MBB
208 // in parallel with SlotIndexes, but there should be a better way to do this.
209 IndexList::iterator ListB = startIdx.listEntry()->getIterator();
210 IndexList::iterator ListI = endIdx.listEntry()->getIterator();
211 MachineBasicBlock::iterator MBBI = End;
212 bool pastStart = false;
213 bool OldIndexesRemoved = false;
214 while (ListI != ListB || MBBI != Begin || (includeStart && !pastStart)) {
215 assert(ListI->getIndex() >= startIdx.getIndex() &&
216 (includeStart || !pastStart) &&
217 "Decremented past the beginning of region to repair.");
218
219 MachineInstr *SlotMI = ListI->getInstr();
220 MachineInstr *MI = (MBBI != MBB->end() && !pastStart) ? &*MBBI : nullptr;
221 bool MBBIAtBegin = MBBI == Begin && (!includeStart || pastStart);
222 bool MIIndexNotFound = MI && !mi2iMap.contains(Val: MI);
223 bool SlotMIRemoved = false;
224
225 if (SlotMI == MI && !MBBIAtBegin) {
226 --ListI;
227 if (MBBI != Begin)
228 --MBBI;
229 else
230 pastStart = true;
231 } else if (MIIndexNotFound || OldIndexesRemoved) {
232 if (MBBI != Begin)
233 --MBBI;
234 else
235 pastStart = true;
236 } else {
237 // We ran through all the indexes on the interval
238 // -> The only thing left is to go through all the
239 // remaining MBB instructions and update their indexes
240 if (ListI == ListB)
241 OldIndexesRemoved = true;
242 else
243 --ListI;
244 if (SlotMI) {
245 removeMachineInstrFromMaps(MI&: *SlotMI);
246 SlotMIRemoved = true;
247 }
248 }
249
250 MachineInstr *InstrToInsert = SlotMIRemoved ? SlotMI : MI;
251
252 // Insert instruction back into the maps after passing it/removing the index
253 if ((MIIndexNotFound || SlotMIRemoved) && InstrToInsert->getParent() &&
254 !InstrToInsert->isDebugOrPseudoInstr())
255 insertMachineInstrInMaps(MI&: *InstrToInsert);
256 }
257}
258
259void SlotIndexes::packIndexes() {
260 for (auto [Index, Entry] : enumerate(First&: indexList))
261 Entry.setIndex(Index * SlotIndex::InstrDist);
262}
263
264void SlotIndexes::print(raw_ostream &OS) const {
265 for (const IndexListEntry &ILE : indexList) {
266 OS << ILE.getIndex() << ' ';
267
268 if (ILE.getInstr())
269 OS << *ILE.getInstr();
270 else
271 OS << '\n';
272 }
273
274 for (unsigned i = 0, e = MBBRanges.size(); i != e; ++i)
275 OS << "%bb." << i << "\t[" << MBBRanges[i].first << ';'
276 << MBBRanges[i].second << ")\n";
277}
278
279#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
280LLVM_DUMP_METHOD void SlotIndexes::dump() const { print(dbgs()); }
281#endif
282
283// Print a SlotIndex to a raw_ostream.
284void SlotIndex::print(raw_ostream &os) const {
285 if (isValid())
286 os << listEntry()->getIndex() << "Berd"[getSlot()];
287 else
288 os << "invalid";
289}
290
291#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
292// Dump a SlotIndex to stderr.
293LLVM_DUMP_METHOD void SlotIndex::dump() const {
294 print(dbgs());
295 dbgs() << "\n";
296}
297#endif
298