blob: 721cf0417289b93cc394a7df1f1b570744afaeeb [file] [log] [blame]
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +00001//===--- HexagonBlockRanges.cpp -------------------------------------------===//
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#define DEBUG_TYPE "hbr"
11
12#include "HexagonBlockRanges.h"
13#include "HexagonInstrInfo.h"
14#include "HexagonSubtarget.h"
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000015#include "llvm/ADT/BitVector.h"
Eugene Zelenko82085922016-12-13 22:13:50 +000016#include "llvm/ADT/STLExtras.h"
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000017#include "llvm/CodeGen/MachineBasicBlock.h"
Eugene Zelenko82085922016-12-13 22:13:50 +000018#include "llvm/CodeGen/MachineFunction.h"
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000019#include "llvm/CodeGen/MachineInstr.h"
20#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenko82085922016-12-13 22:13:50 +000021#include "llvm/MC/MCRegisterInfo.h"
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000022#include "llvm/Support/Debug.h"
23#include "llvm/Support/raw_ostream.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000024#include "llvm/Target/TargetRegisterInfo.h"
Eugene Zelenko82085922016-12-13 22:13:50 +000025#include <algorithm>
26#include <cassert>
27#include <iterator>
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000028#include <map>
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000029
30using namespace llvm;
31
32bool HexagonBlockRanges::IndexRange::overlaps(const IndexRange &A) const {
33 // If A contains start(), or "this" contains A.start(), then overlap.
34 IndexType S = start(), E = end(), AS = A.start(), AE = A.end();
35 if (AS == S)
36 return true;
37 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE.
38 bool ASbE = (AS < E) || (AS == E && TiedEnd); // AS-before-E.
39 if ((AS < S && SbAE) || (S < AS && ASbE))
40 return true;
41 // Otherwise no overlap.
42 return false;
43}
44
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000045bool HexagonBlockRanges::IndexRange::contains(const IndexRange &A) const {
46 if (start() <= A.start()) {
47 // Treat "None" in the range end as equal to the range start.
48 IndexType E = (end() != IndexType::None) ? end() : start();
49 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start();
50 if (AE <= E)
51 return true;
52 }
53 return false;
54}
55
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000056void HexagonBlockRanges::IndexRange::merge(const IndexRange &A) {
57 // Allow merging adjacent ranges.
58 assert(end() == A.start() || overlaps(A));
59 IndexType AS = A.start(), AE = A.end();
60 if (AS < start() || start() == IndexType::None)
61 setStart(AS);
62 if (end() < AE || end() == IndexType::None) {
63 setEnd(AE);
64 TiedEnd = A.TiedEnd;
65 } else {
66 if (end() == AE)
67 TiedEnd |= A.TiedEnd;
68 }
69 if (A.Fixed)
70 Fixed = true;
71}
72
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000073void HexagonBlockRanges::RangeList::include(const RangeList &RL) {
74 for (auto &R : RL)
David Majnemer42531262016-08-12 03:55:06 +000075 if (!is_contained(*this, R))
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000076 push_back(R);
77}
78
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +000079// Merge all overlapping ranges in the list, so that all that remains
80// is a list of disjoint ranges.
81void HexagonBlockRanges::RangeList::unionize(bool MergeAdjacent) {
82 if (empty())
83 return;
84
85 std::sort(begin(), end());
86 iterator Iter = begin();
87
88 while (Iter != end()-1) {
89 iterator Next = std::next(Iter);
90 // If MergeAdjacent is true, merge ranges A and B, where A.end == B.start.
91 // This allows merging dead ranges, but is not valid for live ranges.
92 bool Merge = MergeAdjacent && (Iter->end() == Next->start());
93 if (Merge || Iter->overlaps(*Next)) {
94 Iter->merge(*Next);
95 erase(Next);
96 continue;
97 }
98 ++Iter;
99 }
100}
101
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000102// Compute a range A-B and add it to the list.
103void HexagonBlockRanges::RangeList::addsub(const IndexRange &A,
104 const IndexRange &B) {
105 // Exclusion of non-overlapping ranges makes some checks simpler
106 // later in this function.
107 if (!A.overlaps(B)) {
108 // A - B = A.
109 add(A);
110 return;
111 }
112
113 IndexType AS = A.start(), AE = A.end();
114 IndexType BS = B.start(), BE = B.end();
115
116 // If AE is None, then A is included in B, since A and B overlap.
117 // The result of subtraction if empty, so just return.
118 if (AE == IndexType::None)
119 return;
120
121 if (AS < BS) {
122 // A starts before B.
123 // AE cannot be None since A and B overlap.
124 assert(AE != IndexType::None);
125 // Add the part of A that extends on the "less" side of B.
126 add(AS, BS, A.Fixed, false);
127 }
128
129 if (BE < AE) {
130 // BE cannot be Exit here.
131 if (BE == IndexType::None)
132 add(BS, AE, A.Fixed, false);
133 else
134 add(BE, AE, A.Fixed, false);
135 }
136}
137
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000138// Subtract a given range from each element in the list.
139void HexagonBlockRanges::RangeList::subtract(const IndexRange &Range) {
140 // Cannot assume that the list is unionized (i.e. contains only non-
141 // overlapping ranges.
142 RangeList T;
143 for (iterator Next, I = begin(); I != end(); I = Next) {
144 IndexRange &Rg = *I;
145 if (Rg.overlaps(Range)) {
146 T.addsub(Rg, Range);
147 Next = this->erase(I);
148 } else {
149 Next = std::next(I);
150 }
151 }
152 include(T);
153}
154
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000155HexagonBlockRanges::InstrIndexMap::InstrIndexMap(MachineBasicBlock &B)
156 : Block(B) {
157 IndexType Idx = IndexType::First;
158 First = Idx;
159 for (auto &In : B) {
160 if (In.isDebugValue())
161 continue;
162 assert(getIndex(&In) == IndexType::None && "Instruction already in map");
163 Map.insert(std::make_pair(Idx, &In));
164 ++Idx;
165 }
166 Last = B.empty() ? IndexType::None : unsigned(Idx)-1;
167}
168
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000169MachineInstr *HexagonBlockRanges::InstrIndexMap::getInstr(IndexType Idx) const {
170 auto F = Map.find(Idx);
Eugene Zelenko82085922016-12-13 22:13:50 +0000171 return (F != Map.end()) ? F->second : nullptr;
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000172}
173
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000174HexagonBlockRanges::IndexType HexagonBlockRanges::InstrIndexMap::getIndex(
175 MachineInstr *MI) const {
176 for (auto &I : Map)
177 if (I.second == MI)
178 return I.first;
179 return IndexType::None;
180}
181
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000182HexagonBlockRanges::IndexType HexagonBlockRanges::InstrIndexMap::getPrevIndex(
183 IndexType Idx) const {
184 assert (Idx != IndexType::None);
185 if (Idx == IndexType::Entry)
186 return IndexType::None;
187 if (Idx == IndexType::Exit)
188 return Last;
189 if (Idx == First)
190 return IndexType::Entry;
191 return unsigned(Idx)-1;
192}
193
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000194HexagonBlockRanges::IndexType HexagonBlockRanges::InstrIndexMap::getNextIndex(
195 IndexType Idx) const {
196 assert (Idx != IndexType::None);
197 if (Idx == IndexType::Entry)
198 return IndexType::First;
199 if (Idx == IndexType::Exit || Idx == Last)
200 return IndexType::None;
201 return unsigned(Idx)+1;
202}
203
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000204void HexagonBlockRanges::InstrIndexMap::replaceInstr(MachineInstr *OldMI,
205 MachineInstr *NewMI) {
206 for (auto &I : Map) {
207 if (I.second != OldMI)
208 continue;
209 if (NewMI != nullptr)
210 I.second = NewMI;
211 else
212 Map.erase(I.first);
213 break;
214 }
215}
216
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000217HexagonBlockRanges::HexagonBlockRanges(MachineFunction &mf)
218 : MF(mf), HST(mf.getSubtarget<HexagonSubtarget>()),
219 TII(*HST.getInstrInfo()), TRI(*HST.getRegisterInfo()),
220 Reserved(TRI.getReservedRegs(mf)) {
221 // Consider all non-allocatable registers as reserved.
Krzysztof Parzyszekee9aa3f2017-01-25 19:29:04 +0000222 for (const TargetRegisterClass *RC : TRI.regclasses()) {
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000223 if (RC->isAllocatable())
224 continue;
225 for (unsigned R : *RC)
226 Reserved[R] = true;
227 }
228}
229
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000230HexagonBlockRanges::RegisterSet HexagonBlockRanges::getLiveIns(
Krzysztof Parzyszek5bb417b2016-10-18 19:47:20 +0000231 const MachineBasicBlock &B, const MachineRegisterInfo &MRI,
232 const TargetRegisterInfo &TRI) {
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000233 RegisterSet LiveIns;
Krzysztof Parzyszek5bb417b2016-10-18 19:47:20 +0000234 RegisterSet Tmp;
235 for (auto I : B.liveins()) {
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000236 if (I.LaneMask.all()) {
Krzysztof Parzyszek5bb417b2016-10-18 19:47:20 +0000237 Tmp.insert({I.PhysReg,0});
238 continue;
239 }
240 for (MCSubRegIndexIterator S(I.PhysReg, &TRI); S.isValid(); ++S) {
241 LaneBitmask M = TRI.getSubRegIndexLaneMask(S.getSubRegIndex());
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +0000242 if ((M & I.LaneMask).any())
Krzysztof Parzyszek5bb417b2016-10-18 19:47:20 +0000243 Tmp.insert({S.getSubReg(), 0});
244 }
245 }
246
247 for (auto R : Tmp) {
248 if (!Reserved[R.Reg])
249 LiveIns.insert(R);
250 for (auto S : expandToSubRegs(R, MRI, TRI))
251 if (!Reserved[S.Reg])
252 LiveIns.insert(S);
253 }
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000254 return LiveIns;
255}
256
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000257HexagonBlockRanges::RegisterSet HexagonBlockRanges::expandToSubRegs(
258 RegisterRef R, const MachineRegisterInfo &MRI,
259 const TargetRegisterInfo &TRI) {
260 RegisterSet SRs;
261
262 if (R.Sub != 0) {
263 SRs.insert(R);
264 return SRs;
265 }
266
267 if (TargetRegisterInfo::isPhysicalRegister(R.Reg)) {
268 MCSubRegIterator I(R.Reg, &TRI);
269 if (!I.isValid())
270 SRs.insert({R.Reg, 0});
271 for (; I.isValid(); ++I)
272 SRs.insert({*I, 0});
273 } else {
274 assert(TargetRegisterInfo::isVirtualRegister(R.Reg));
275 auto &RC = *MRI.getRegClass(R.Reg);
276 unsigned PReg = *RC.begin();
277 MCSubRegIndexIterator I(PReg, &TRI);
278 if (!I.isValid())
279 SRs.insert({R.Reg, 0});
280 for (; I.isValid(); ++I)
281 SRs.insert({R.Reg, I.getSubRegIndex()});
282 }
283 return SRs;
284}
285
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000286void HexagonBlockRanges::computeInitialLiveRanges(InstrIndexMap &IndexMap,
287 RegToRangeMap &LiveMap) {
288 std::map<RegisterRef,IndexType> LastDef, LastUse;
289 RegisterSet LiveOnEntry;
290 MachineBasicBlock &B = IndexMap.getBlock();
291 MachineRegisterInfo &MRI = B.getParent()->getRegInfo();
292
Krzysztof Parzyszek5bb417b2016-10-18 19:47:20 +0000293 for (auto R : getLiveIns(B, MRI, TRI))
294 LiveOnEntry.insert(R);
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000295
296 for (auto R : LiveOnEntry)
297 LastDef[R] = IndexType::Entry;
298
299 auto closeRange = [&LastUse,&LastDef,&LiveMap] (RegisterRef R) -> void {
300 auto LD = LastDef[R], LU = LastUse[R];
301 if (LD == IndexType::None)
302 LD = IndexType::Entry;
303 if (LU == IndexType::None)
304 LU = IndexType::Exit;
305 LiveMap[R].add(LD, LU, false, false);
306 LastUse[R] = LastDef[R] = IndexType::None;
307 };
308
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000309 RegisterSet Defs, Clobbers;
310
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000311 for (auto &In : B) {
312 if (In.isDebugValue())
313 continue;
314 IndexType Index = IndexMap.getIndex(&In);
315 // Process uses first.
316 for (auto &Op : In.operands()) {
317 if (!Op.isReg() || !Op.isUse() || Op.isUndef())
318 continue;
319 RegisterRef R = { Op.getReg(), Op.getSubReg() };
320 if (TargetRegisterInfo::isPhysicalRegister(R.Reg) && Reserved[R.Reg])
321 continue;
322 bool IsKill = Op.isKill();
323 for (auto S : expandToSubRegs(R, MRI, TRI)) {
324 LastUse[S] = Index;
325 if (IsKill)
326 closeRange(S);
327 }
328 }
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000329 // Process defs and clobbers.
330 Defs.clear();
331 Clobbers.clear();
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000332 for (auto &Op : In.operands()) {
333 if (!Op.isReg() || !Op.isDef() || Op.isUndef())
334 continue;
335 RegisterRef R = { Op.getReg(), Op.getSubReg() };
Rafael Espindola6eab4042017-02-17 02:08:58 +0000336 for (auto S : expandToSubRegs(R, MRI, TRI)) {
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000337 if (TargetRegisterInfo::isPhysicalRegister(S.Reg) && Reserved[S.Reg])
338 continue;
339 if (Op.isDead())
340 Clobbers.insert(S);
341 else
342 Defs.insert(S);
Krzysztof Parzyszekfb9503c2017-02-16 20:25:23 +0000343 }
344 }
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000345
346 for (auto &Op : In.operands()) {
347 if (!Op.isRegMask())
348 continue;
349 const uint32_t *BM = Op.getRegMask();
350 for (unsigned PR = 1, N = TRI.getNumRegs(); PR != N; ++PR) {
351 // Skip registers that have subregisters. A register is preserved
352 // iff its bit is set in the regmask, so if R1:0 was preserved, both
353 // R1 and R0 would also be present.
354 if (MCSubRegIterator(PR, &TRI, false).isValid())
355 continue;
356 if (Reserved[PR])
357 continue;
358 if (BM[PR/32] & (1u << (PR%32)))
359 continue;
360 RegisterRef R = { PR, 0 };
361 if (!Defs.count(R))
362 Clobbers.insert(R);
363 }
364 }
Krzysztof Parzyszeke9be3552017-02-27 18:03:35 +0000365 // Defs and clobbers can overlap, e.g.
366 // %D0<def,dead> = COPY %vreg5, %R0<imp-def>, %R1<imp-def>
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000367 for (RegisterRef R : Defs)
Krzysztof Parzyszeke9be3552017-02-27 18:03:35 +0000368 Clobbers.erase(R);
369
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000370 // Update maps for defs.
371 for (RegisterRef S : Defs) {
372 // Defs should already be expanded into subregs.
373 assert(!TargetRegisterInfo::isPhysicalRegister(S.Reg) ||
374 !MCSubRegIterator(S.Reg, &TRI, false).isValid());
375 if (LastDef[S] != IndexType::None || LastUse[S] != IndexType::None)
376 closeRange(S);
377 LastDef[S] = Index;
378 }
379 // Update maps for clobbers.
380 for (RegisterRef S : Clobbers) {
381 // Clobbers should already be expanded into subregs.
382 assert(!TargetRegisterInfo::isPhysicalRegister(S.Reg) ||
383 !MCSubRegIterator(S.Reg, &TRI, false).isValid());
384 if (LastDef[S] != IndexType::None || LastUse[S] != IndexType::None)
385 closeRange(S);
386 // Create a single-instruction range.
387 LastDef[S] = LastUse[S] = Index;
388 closeRange(S);
389 }
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000390 }
391
392 // Collect live-on-exit.
393 RegisterSet LiveOnExit;
394 for (auto *SB : B.successors())
Krzysztof Parzyszek5bb417b2016-10-18 19:47:20 +0000395 for (auto R : getLiveIns(*SB, MRI, TRI))
396 LiveOnExit.insert(R);
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000397
398 for (auto R : LiveOnExit)
399 LastUse[R] = IndexType::Exit;
400
401 // Process remaining registers.
402 RegisterSet Left;
403 for (auto &I : LastUse)
404 if (I.second != IndexType::None)
405 Left.insert(I.first);
406 for (auto &I : LastDef)
407 if (I.second != IndexType::None)
408 Left.insert(I.first);
409 for (auto R : Left)
410 closeRange(R);
411
412 // Finalize the live ranges.
413 for (auto &P : LiveMap)
414 P.second.unionize();
415}
416
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000417HexagonBlockRanges::RegToRangeMap HexagonBlockRanges::computeLiveMap(
418 InstrIndexMap &IndexMap) {
419 RegToRangeMap LiveMap;
Reid Kleckner40d72302016-10-20 00:22:23 +0000420 DEBUG(dbgs() << __func__ << ": index map\n" << IndexMap << '\n');
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000421 computeInitialLiveRanges(IndexMap, LiveMap);
Reid Kleckner40d72302016-10-20 00:22:23 +0000422 DEBUG(dbgs() << __func__ << ": live map\n"
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000423 << PrintRangeMap(LiveMap, TRI) << '\n');
424 return LiveMap;
425}
426
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000427HexagonBlockRanges::RegToRangeMap HexagonBlockRanges::computeDeadMap(
428 InstrIndexMap &IndexMap, RegToRangeMap &LiveMap) {
429 RegToRangeMap DeadMap;
430
431 auto addDeadRanges = [&IndexMap,&LiveMap,&DeadMap] (RegisterRef R) -> void {
432 auto F = LiveMap.find(R);
433 if (F == LiveMap.end() || F->second.empty()) {
434 DeadMap[R].add(IndexType::Entry, IndexType::Exit, false, false);
435 return;
436 }
437
438 RangeList &RL = F->second;
439 RangeList::iterator A = RL.begin(), Z = RL.end()-1;
440
441 // Try to create the initial range.
442 if (A->start() != IndexType::Entry) {
443 IndexType DE = IndexMap.getPrevIndex(A->start());
444 if (DE != IndexType::Entry)
445 DeadMap[R].add(IndexType::Entry, DE, false, false);
446 }
447
448 while (A != Z) {
449 // Creating a dead range that follows A. Pay attention to empty
450 // ranges (i.e. those ending with "None").
451 IndexType AE = (A->end() == IndexType::None) ? A->start() : A->end();
452 IndexType DS = IndexMap.getNextIndex(AE);
453 ++A;
454 IndexType DE = IndexMap.getPrevIndex(A->start());
455 if (DS < DE)
456 DeadMap[R].add(DS, DE, false, false);
457 }
458
459 // Try to create the final range.
460 if (Z->end() != IndexType::Exit) {
461 IndexType ZE = (Z->end() == IndexType::None) ? Z->start() : Z->end();
462 IndexType DS = IndexMap.getNextIndex(ZE);
463 if (DS < IndexType::Exit)
464 DeadMap[R].add(DS, IndexType::Exit, false, false);
465 }
466 };
467
468 MachineFunction &MF = *IndexMap.getBlock().getParent();
469 auto &MRI = MF.getRegInfo();
470 unsigned NumRegs = TRI.getNumRegs();
471 BitVector Visited(NumRegs);
472 for (unsigned R = 1; R < NumRegs; ++R) {
473 for (auto S : expandToSubRegs({R,0}, MRI, TRI)) {
474 if (Reserved[S.Reg] || Visited[S.Reg])
475 continue;
476 addDeadRanges(S);
477 Visited[S.Reg] = true;
478 }
479 }
480 for (auto &P : LiveMap)
481 if (TargetRegisterInfo::isVirtualRegister(P.first.Reg))
482 addDeadRanges(P.first);
483
Reid Kleckner40d72302016-10-20 00:22:23 +0000484 DEBUG(dbgs() << __func__ << ": dead map\n"
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000485 << PrintRangeMap(DeadMap, TRI) << '\n');
486 return DeadMap;
487}
488
Benjamin Kramer922efd72016-05-27 10:06:40 +0000489raw_ostream &llvm::operator<<(raw_ostream &OS,
490 HexagonBlockRanges::IndexType Idx) {
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000491 if (Idx == HexagonBlockRanges::IndexType::None)
492 return OS << '-';
493 if (Idx == HexagonBlockRanges::IndexType::Entry)
494 return OS << 'n';
495 if (Idx == HexagonBlockRanges::IndexType::Exit)
496 return OS << 'x';
497 return OS << unsigned(Idx)-HexagonBlockRanges::IndexType::First+1;
498}
499
500// A mapping to translate between instructions and their indices.
Benjamin Kramer922efd72016-05-27 10:06:40 +0000501raw_ostream &llvm::operator<<(raw_ostream &OS,
502 const HexagonBlockRanges::IndexRange &IR) {
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000503 OS << '[' << IR.start() << ':' << IR.end() << (IR.TiedEnd ? '}' : ']');
504 if (IR.Fixed)
505 OS << '!';
506 return OS;
507}
508
Benjamin Kramer922efd72016-05-27 10:06:40 +0000509raw_ostream &llvm::operator<<(raw_ostream &OS,
510 const HexagonBlockRanges::RangeList &RL) {
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000511 for (auto &R : RL)
512 OS << R << " ";
513 return OS;
514}
515
Benjamin Kramer922efd72016-05-27 10:06:40 +0000516raw_ostream &llvm::operator<<(raw_ostream &OS,
517 const HexagonBlockRanges::InstrIndexMap &M) {
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000518 for (auto &In : M.Block) {
519 HexagonBlockRanges::IndexType Idx = M.getIndex(&In);
520 OS << Idx << (Idx == M.Last ? ". " : " ") << In;
521 }
522 return OS;
523}
524
Benjamin Kramer922efd72016-05-27 10:06:40 +0000525raw_ostream &llvm::operator<<(raw_ostream &OS,
526 const HexagonBlockRanges::PrintRangeMap &P) {
Krzysztof Parzyszek7793ddb2016-02-12 22:53:35 +0000527 for (auto &I : P.Map) {
528 const HexagonBlockRanges::RangeList &RL = I.second;
529 OS << PrintReg(I.first.Reg, &P.TRI, I.first.Sub) << " -> " << RL << "\n";
530 }
531 return OS;
532}