blob: 4c8801a3611a9984d7021fe57ff4ef48ad3950a2 [file] [log] [blame]
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +00001//===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===//
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// This file contains the SplitAnalysis class as well as mutator functions for
11// live range splitting.
12//
13//===----------------------------------------------------------------------===//
14
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000015#include "SplitKit.h"
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000016#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000017#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000018#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesene172a8b2010-10-28 20:34:50 +000019#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +000020#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +000021#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000022#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000023#include "llvm/CodeGen/VirtRegMap.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000024#include "llvm/Support/Debug.h"
25#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesened4075c2010-07-20 21:46:58 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000028
29using namespace llvm;
30
Chandler Carruth1b9dde02014-04-22 02:02:50 +000031#define DEBUG_TYPE "regalloc"
32
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000033STATISTIC(NumFinished, "Number of splits finished");
34STATISTIC(NumSimple, "Number of splits that were simple");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000035STATISTIC(NumCopies, "Number of copies inserted for splitting");
36STATISTIC(NumRemats, "Number of rematerialized defs for splitting");
Jakob Stoklund Olesen50215af2011-05-10 17:37:41 +000037STATISTIC(NumRepairs, "Number of invalid live ranges repaired");
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000038
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000039//===----------------------------------------------------------------------===//
40// Split Analysis
41//===----------------------------------------------------------------------===//
42
Eric Christopherd9134482014-08-04 21:25:23 +000043SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
Jakob Stoklund Olesen0fef9dd2010-07-20 23:50:15 +000044 const MachineLoopInfo &mli)
Eric Christopherd9134482014-08-04 21:25:23 +000045 : MF(vrm.getMachineFunction()), VRM(vrm), LIS(lis), Loops(mli),
Eric Christopherfc6de422014-08-05 02:39:49 +000046 TII(*MF.getSubtarget().getInstrInfo()), CurLI(nullptr),
Eric Christopherd9134482014-08-04 21:25:23 +000047 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000048
49void SplitAnalysis::clear() {
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +000050 UseSlots.clear();
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +000051 UseBlocks.clear();
52 ThroughBlocks.clear();
Craig Topperc0196b12014-04-14 00:51:57 +000053 CurLI = nullptr;
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +000054 DidRepairRange = false;
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000055}
56
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000057SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
58 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
59 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
60 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
Jakob Stoklund Olesen8b1d0232012-01-11 02:07:05 +000061 SlotIndex MBBEnd = LIS.getMBBEndIdx(MBB);
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000062
63 // Compute split points on the first call. The pair is independent of the
64 // current live interval.
65 if (!LSP.first.isValid()) {
66 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
67 if (FirstTerm == MBB->end())
Jakob Stoklund Olesen8b1d0232012-01-11 02:07:05 +000068 LSP.first = MBBEnd;
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000069 else
70 LSP.first = LIS.getInstructionIndex(FirstTerm);
71
72 // If there is a landing pad successor, also find the call instruction.
73 if (!LPad)
74 return LSP.first;
75 // There may not be a call instruction (?) in which case we ignore LPad.
76 LSP.second = LSP.first;
Jakob Stoklund Olesen040d6592011-06-28 01:18:58 +000077 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
78 I != E;) {
79 --I;
Evan Cheng7f8e5632011-12-07 07:15:52 +000080 if (I->isCall()) {
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000081 LSP.second = LIS.getInstructionIndex(I);
82 break;
83 }
Jakob Stoklund Olesen040d6592011-06-28 01:18:58 +000084 }
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000085 }
86
87 // If CurLI is live into a landing pad successor, move the last split point
88 // back to the call that may throw.
Jakob Stoklund Olesen8b1d0232012-01-11 02:07:05 +000089 if (!LPad || !LSP.second || !LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000090 return LSP.first;
Jakob Stoklund Olesen8b1d0232012-01-11 02:07:05 +000091
92 // Find the value leaving MBB.
93 const VNInfo *VNI = CurLI->getVNInfoBefore(MBBEnd);
94 if (!VNI)
95 return LSP.first;
96
97 // If the value leaving MBB was defined after the call in MBB, it can't
98 // really be live-in to the landing pad. This can happen if the landing pad
99 // has a PHI, and this register is undef on the exceptional edge.
100 // <rdar://problem/10664933>
101 if (!SlotIndex::isEarlierInstr(VNI->def, LSP.second) && VNI->def < MBBEnd)
102 return LSP.first;
103
104 // Value is properly live-in to the landing pad.
105 // Only allow splits before the call.
106 return LSP.second;
Jakob Stoklund Olesened4075c2010-07-20 21:46:58 +0000107}
108
Jakob Stoklund Olesen67aec122012-01-11 02:07:00 +0000109MachineBasicBlock::iterator
110SplitAnalysis::getLastSplitPointIter(MachineBasicBlock *MBB) {
111 SlotIndex LSP = getLastSplitPoint(MBB->getNumber());
112 if (LSP == LIS.getMBBEndIdx(MBB))
113 return MBB->end();
114 return LIS.getInstructionFromIndex(LSP);
115}
116
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000117/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenff095502010-07-20 16:12:37 +0000118void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000119 assert(UseSlots.empty() && "Call clear first");
120
121 // First get all the defs from the interval values. This provides the correct
122 // slots for early clobbers.
Matthias Braun96761952014-12-10 23:07:54 +0000123 for (const VNInfo *VNI : CurLI->valnos)
124 if (!VNI->isPHIDef() && !VNI->isUnused())
125 UseSlots.push_back(VNI->def);
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000126
127 // Get use slots form the use-def chain.
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000128 const MachineRegisterInfo &MRI = MF.getRegInfo();
Owen Andersonb36376e2014-03-17 19:36:09 +0000129 for (MachineOperand &MO : MRI.use_nodbg_operands(CurLI->reg))
130 if (!MO.isUndef())
131 UseSlots.push_back(LIS.getInstructionIndex(MO.getParent()).getRegSlot());
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000132
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000133 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000134
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000135 // Remove duplicates, keeping the smaller slot for each instruction.
136 // That is what we want for early clobbers.
137 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
138 SlotIndex::isSameInstr),
139 UseSlots.end());
140
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000141 // Compute per-live block info.
142 if (!calcLiveBlockInfo()) {
143 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola676c4052011-06-26 22:34:10 +0000144 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +0000145 DidRepairRange = true;
Jakob Stoklund Olesen50215af2011-05-10 17:37:41 +0000146 ++NumRepairs;
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000147 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
148 const_cast<LiveIntervals&>(LIS)
149 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000150 UseBlocks.clear();
151 ThroughBlocks.clear();
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000152 bool fixed = calcLiveBlockInfo();
153 (void)fixed;
154 assert(fixed && "Couldn't fix broken live interval");
155 }
156
Jakob Stoklund Olesenbd6b86e2011-03-27 22:49:23 +0000157 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000158 << UseSlots.size() << " instrs in "
159 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000160 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000161}
162
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000163/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
164/// where CurLI is live.
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000165bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000166 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000167 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000168 if (CurLI->empty())
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000169 return true;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000170
171 LiveInterval::const_iterator LVI = CurLI->begin();
172 LiveInterval::const_iterator LVE = CurLI->end();
173
174 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
175 UseI = UseSlots.begin();
176 UseE = UseSlots.end();
177
178 // Loop over basic blocks where CurLI is live.
179 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
180 for (;;) {
181 BlockInfo BI;
182 BI.MBB = MFI;
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000183 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000184 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000185
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000186 // If the block contains no uses, the range must be live through. At one
Rafael Espindola676c4052011-06-26 22:34:10 +0000187 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000188 // mid-block.
189 if (UseI == UseE || *UseI >= Stop) {
190 ++NumThroughBlocks;
191 ThroughBlocks.set(BI.MBB->getNumber());
192 // The range shouldn't end mid-block if there are no uses. This shouldn't
193 // happen.
194 if (LVI->end < Stop)
195 return false;
196 } else {
197 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000198 BI.FirstInstr = *UseI;
199 assert(BI.FirstInstr >= Start);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000200 do ++UseI;
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000201 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000202 BI.LastInstr = UseI[-1];
203 assert(BI.LastInstr < Stop);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000204
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000205 // LVI is the first live segment overlapping MBB.
206 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000207
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000208 // When not live in, the first use should be a def.
209 if (!BI.LiveIn) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000210 assert(LVI->start == LVI->valno->def && "Dangling Segment start");
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000211 assert(LVI->start == BI.FirstInstr && "First instr should be a def");
212 BI.FirstDef = BI.FirstInstr;
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000213 }
214
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000215 // Look for gaps in the live range.
216 BI.LiveOut = true;
217 while (LVI->end < Stop) {
218 SlotIndex LastStop = LVI->end;
219 if (++LVI == LVE || LVI->start >= Stop) {
220 BI.LiveOut = false;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000221 BI.LastInstr = LastStop;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000222 break;
223 }
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000224
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000225 if (LastStop < LVI->start) {
226 // There is a gap in the live range. Create duplicate entries for the
227 // live-in snippet and the live-out snippet.
228 ++NumGapBlocks;
229
230 // Push the Live-in part.
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000231 BI.LiveOut = false;
232 UseBlocks.push_back(BI);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000233 UseBlocks.back().LastInstr = LastStop;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000234
235 // Set up BI for the live-out part.
236 BI.LiveIn = false;
237 BI.LiveOut = true;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000238 BI.FirstInstr = BI.FirstDef = LVI->start;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000239 }
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000240
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000241 // A Segment that starts in the middle of the block must be a def.
242 assert(LVI->start == LVI->valno->def && "Dangling Segment start");
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000243 if (!BI.FirstDef)
244 BI.FirstDef = LVI->start;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000245 }
246
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000247 UseBlocks.push_back(BI);
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000248
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000249 // LVI is now at LVE or LVI->end >= Stop.
250 if (LVI == LVE)
251 break;
252 }
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000253
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000254 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000255 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000256 break;
257
258 // Pick the next basic block.
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000259 if (LVI->start < Stop)
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000260 ++MFI;
261 else
262 MFI = LIS.getMBBFromIndex(LVI->start);
263 }
Jakob Stoklund Olesen5cc91b22011-05-28 02:32:57 +0000264
265 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000266 return true;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000267}
268
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +0000269unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
270 if (cli->empty())
271 return 0;
272 LiveInterval *li = const_cast<LiveInterval*>(cli);
273 LiveInterval::iterator LVI = li->begin();
274 LiveInterval::iterator LVE = li->end();
275 unsigned Count = 0;
276
277 // Loop over basic blocks where li is live.
278 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start);
279 SlotIndex Stop = LIS.getMBBEndIdx(MFI);
280 for (;;) {
281 ++Count;
282 LVI = li->advanceTo(LVI, Stop);
283 if (LVI == LVE)
284 return Count;
285 do {
286 ++MFI;
287 Stop = LIS.getMBBEndIdx(MFI);
288 } while (Stop <= LVI->start);
289 }
290}
291
Jakob Stoklund Olesen60a26a62011-02-21 23:09:46 +0000292bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
293 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
294 const LiveInterval &Orig = LIS.getInterval(OrigReg);
295 assert(!Orig.empty() && "Splitting empty interval?");
296 LiveInterval::const_iterator I = Orig.find(Idx);
297
298 // Range containing Idx should begin at Idx.
299 if (I != Orig.end() && I->start <= Idx)
300 return I->start == Idx;
301
302 // Range does not contain Idx, previous must end at Idx.
303 return I != Orig.begin() && (--I)->end == Idx;
304}
305
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000306void SplitAnalysis::analyze(const LiveInterval *li) {
307 clear();
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000308 CurLI = li;
Jakob Stoklund Olesenff095502010-07-20 16:12:37 +0000309 analyzeUses();
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000310}
311
Jakob Stoklund Olesen28e769c2010-12-15 17:49:52 +0000312
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000313//===----------------------------------------------------------------------===//
314// Split Editor
315//===----------------------------------------------------------------------===//
316
317/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Eric Christopherd9134482014-08-04 21:25:23 +0000318SplitEditor::SplitEditor(SplitAnalysis &sa, LiveIntervals &lis, VirtRegMap &vrm,
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000319 MachineDominatorTree &mdt,
320 MachineBlockFrequencyInfo &mbfi)
Eric Christopherd9134482014-08-04 21:25:23 +0000321 : SA(sa), LIS(lis), VRM(vrm), MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher60621802014-10-14 07:22:00 +0000322 MDT(mdt), TII(*vrm.getMachineFunction().getSubtarget().getInstrInfo()),
323 TRI(*vrm.getMachineFunction().getSubtarget().getRegisterInfo()),
Eric Christopherd9134482014-08-04 21:25:23 +0000324 MBFI(mbfi), Edit(nullptr), OpenIdx(0), SpillMode(SM_Partition),
325 RegAssign(Allocator) {}
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000326
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +0000327void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
328 Edit = &LRE;
329 SpillMode = SM;
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000330 OpenIdx = 0;
331 RegAssign.clear();
332 Values.clear();
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000333
334 // Reset the LiveRangeCalc instances needed for this spill mode.
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000335 LRCalc[0].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
336 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000337 if (SpillMode)
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000338 LRCalc[1].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
339 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000340
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000341 // We don't need an AliasAnalysis since we will only be performing
342 // cheap-as-a-copy remats anyway.
Craig Topperc0196b12014-04-14 00:51:57 +0000343 Edit->anyRematerializable(nullptr);
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000344}
345
Manman Ren19f49ac2012-09-11 22:23:19 +0000346#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Eric Christopherede62672011-02-03 06:18:29 +0000347void SplitEditor::dump() const {
348 if (RegAssign.empty()) {
349 dbgs() << " empty\n";
350 return;
351 }
352
353 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
354 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
355 dbgs() << '\n';
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +0000356}
Manman Ren742534c2012-09-06 19:06:06 +0000357#endif
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +0000358
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000359VNInfo *SplitEditor::defValue(unsigned RegIdx,
360 const VNInfo *ParentVNI,
361 SlotIndex Idx) {
362 assert(ParentVNI && "Mapping NULL value");
363 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000364 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
Mark Laceyf9ea8852013-08-14 23:50:04 +0000365 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000366
367 // Create a new value.
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000368 VNInfo *VNI = LI->getNextValue(Idx, LIS.getVNInfoAllocator());
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000369
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000370 // Use insert for lookup, so we can add missing values with a second lookup.
371 std::pair<ValueMap::iterator, bool> InsP =
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000372 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id),
373 ValueForcePair(VNI, false)));
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000374
375 // This was the first time (RegIdx, ParentVNI) was mapped.
376 // Keep it as a simple def without any liveness.
377 if (InsP.second)
378 return VNI;
379
380 // If the previous value was a simple mapping, add liveness for it now.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000381 if (VNInfo *OldVNI = InsP.first->second.getPointer()) {
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000382 SlotIndex Def = OldVNI->def;
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000383 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), OldVNI));
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000384 // No longer a simple mapping. Switch to a complex, non-forced mapping.
385 InsP.first->second = ValueForcePair();
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000386 }
387
388 // This is a complex mapping, add liveness for VNI
389 SlotIndex Def = VNI->def;
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000390 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000391
392 return VNI;
393}
394
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000395void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI) {
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000396 assert(ParentVNI && "Mapping NULL value");
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000397 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)];
398 VNInfo *VNI = VFP.getPointer();
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000399
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000400 // ParentVNI was either unmapped or already complex mapped. Either way, just
401 // set the force bit.
402 if (!VNI) {
403 VFP.setInt(true);
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000404 return;
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000405 }
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000406
407 // This was previously a single mapping. Make sure the old def is represented
408 // by a trivial live range.
409 SlotIndex Def = VNI->def;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000410 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000411 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000412 // Mark as complex mapped, forced.
Craig Topperc0196b12014-04-14 00:51:57 +0000413 VFP = ValueForcePair(nullptr, true);
Jakob Stoklund Olesen4484f992011-09-13 18:05:29 +0000414}
415
Eric Christopherede62672011-02-03 06:18:29 +0000416VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000417 VNInfo *ParentVNI,
418 SlotIndex UseIdx,
419 MachineBasicBlock &MBB,
420 MachineBasicBlock::iterator I) {
Craig Topperc0196b12014-04-14 00:51:57 +0000421 MachineInstr *CopyMI = nullptr;
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000422 SlotIndex Def;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000423 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000424
Jakob Stoklund Olesen7d406792011-05-02 05:29:58 +0000425 // We may be trying to avoid interference that ends at a deleted instruction,
426 // so always begin RegIdx 0 early and all others late.
427 bool Late = RegIdx != 0;
428
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000429 // Attempt cheap-as-a-copy rematerialization.
430 LiveRangeEdit::Remat RM(ParentVNI);
Pete Cooper2bde2f42012-04-02 22:22:53 +0000431 if (Edit->canRematerializeAt(RM, UseIdx, true)) {
432 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, TRI, Late);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000433 ++NumRemats;
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000434 } else {
435 // Can't remat, just insert a copy from parent.
Eric Christopherede62672011-02-03 06:18:29 +0000436 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000437 .addReg(Edit->getReg());
Jakob Stoklund Olesen7d406792011-05-02 05:29:58 +0000438 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000439 .getRegSlot();
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000440 ++NumCopies;
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000441 }
442
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000443 // Define the value in Reg.
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000444 return defValue(RegIdx, ParentVNI, Def);
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000445}
446
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000447/// Create a new virtual register and live interval.
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000448unsigned SplitEditor::openIntv() {
Eric Christopherede62672011-02-03 06:18:29 +0000449 // Create the complement as index 0.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000450 if (Edit->empty())
Mark Lacey9d8103d2013-08-14 23:50:16 +0000451 Edit->createEmptyInterval();
Eric Christopherede62672011-02-03 06:18:29 +0000452
453 // Create the open interval.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000454 OpenIdx = Edit->size();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000455 Edit->createEmptyInterval();
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000456 return OpenIdx;
457}
458
459void SplitEditor::selectIntv(unsigned Idx) {
460 assert(Idx != 0 && "Cannot select the complement interval");
461 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000462 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000463 OpenIdx = Idx;
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000464}
465
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000466SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopherede62672011-02-03 06:18:29 +0000467 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000468 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000469 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000470 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000471 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000472 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000473 return Idx;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000474 }
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000475 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000476 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000477 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000478
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000479 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
480 return VNI->def;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000481}
482
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000483SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
484 assert(OpenIdx && "openIntv not called before enterIntvAfter");
485 DEBUG(dbgs() << " enterIntvAfter " << Idx);
486 Idx = Idx.getBoundaryIndex();
487 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
488 if (!ParentVNI) {
489 DEBUG(dbgs() << ": not live\n");
490 return Idx;
491 }
492 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
493 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
494 assert(MI && "enterIntvAfter called with invalid index");
495
496 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000497 std::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000498 return VNI->def;
499}
500
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000501SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopherede62672011-02-03 06:18:29 +0000502 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000503 SlotIndex End = LIS.getMBBEndIdx(&MBB);
504 SlotIndex Last = End.getPrevSlot();
505 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000506 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000507 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000508 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000509 return End;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000510 }
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000511 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000512 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesen67aec122012-01-11 02:07:00 +0000513 SA.getLastSplitPointIter(&MBB));
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000514 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopherede62672011-02-03 06:18:29 +0000515 DEBUG(dump());
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000516 return VNI->def;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000517}
518
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000519/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000520void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000521 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000522}
523
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000524void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopherede62672011-02-03 06:18:29 +0000525 assert(OpenIdx && "openIntv not called before useIntv");
526 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
527 RegAssign.insert(Start, End, OpenIdx);
528 DEBUG(dump());
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000529}
530
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000531SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopherede62672011-02-03 06:18:29 +0000532 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000533 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000534
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000535 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000536 SlotIndex Boundary = Idx.getBoundaryIndex();
537 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000538 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000539 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000540 return Boundary.getNextSlot();
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000541 }
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000542 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000543 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
Jakob Stoklund Olesen3d11c8e2011-02-08 18:50:18 +0000544 assert(MI && "No instruction at index");
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000545
546 // In spill mode, make live ranges as short as possible by inserting the copy
547 // before MI. This is only possible if that instruction doesn't redefine the
548 // value. The inserted COPY is not a kill, and we don't need to recompute
549 // the source live range. The spiller also won't try to hoist this copy.
550 if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) &&
551 MI->readsVirtualRegister(Edit->getReg())) {
552 forceRecompute(0, ParentVNI);
553 defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
554 return Idx;
555 }
556
557 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000558 std::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000559 return VNI->def;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000560}
561
Jakob Stoklund Olesen7cb57b32011-02-09 23:30:25 +0000562SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
563 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
564 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
565
566 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenc45d38e2011-07-18 18:47:13 +0000567 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000568 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen7cb57b32011-02-09 23:30:25 +0000569 if (!ParentVNI) {
570 DEBUG(dbgs() << ": not live\n");
571 return Idx.getNextSlot();
572 }
573 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
574
575 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
576 assert(MI && "No instruction at index");
577 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
578 return VNI->def;
579}
580
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000581SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopherede62672011-02-03 06:18:29 +0000582 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000583 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000584 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000585
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000586 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000587 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000588 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000589 return Start;
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000590 }
591
Eric Christopherede62672011-02-03 06:18:29 +0000592 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000593 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopherede62672011-02-03 06:18:29 +0000594 RegAssign.insert(Start, VNI->def, OpenIdx);
595 DEBUG(dump());
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000596 return VNI->def;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000597}
598
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000599void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
600 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000601 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesend7bcf432011-11-14 01:39:36 +0000602 assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) &&
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000603 "Parent changes value in extended range");
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000604 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
605 "Range cannot span basic blocks");
606
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000607 // The complement interval will be extended as needed by LRCalc.extend().
Jakob Stoklund Olesen5c482cd2011-04-05 23:43:14 +0000608 if (ParentVNI)
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000609 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000610 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
611 RegAssign.insert(Start, End, OpenIdx);
612 DEBUG(dump());
613}
614
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000615//===----------------------------------------------------------------------===//
616// Spill modes
617//===----------------------------------------------------------------------===//
618
619void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000620 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000621 DEBUG(dbgs() << "Removing " << Copies.size() << " back-copies.\n");
622 RegAssignMap::iterator AssignI;
623 AssignI.setMap(RegAssign);
624
625 for (unsigned i = 0, e = Copies.size(); i != e; ++i) {
626 VNInfo *VNI = Copies[i];
627 SlotIndex Def = VNI->def;
628 MachineInstr *MI = LIS.getInstructionFromIndex(Def);
629 assert(MI && "No instruction for back-copy");
630
631 MachineBasicBlock *MBB = MI->getParent();
632 MachineBasicBlock::iterator MBBI(MI);
633 bool AtBegin;
634 do AtBegin = MBBI == MBB->begin();
635 while (!AtBegin && (--MBBI)->isDebugValue());
636
637 DEBUG(dbgs() << "Removing " << Def << '\t' << *MI);
638 LI->removeValNo(VNI);
639 LIS.RemoveMachineInstrFromMaps(MI);
640 MI->eraseFromParent();
641
642 // Adjust RegAssign if a register assignment is killed at VNI->def. We
643 // want to avoid calculating the live range of the source register if
644 // possible.
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +0000645 AssignI.find(Def.getPrevSlot());
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000646 if (!AssignI.valid() || AssignI.start() >= Def)
647 continue;
648 // If MI doesn't kill the assigned register, just leave it.
649 if (AssignI.stop() != Def)
650 continue;
651 unsigned RegIdx = AssignI.value();
652 if (AtBegin || !MBBI->readsVirtualRegister(Edit->getReg())) {
653 DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n');
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000654 forceRecompute(RegIdx, Edit->getParent().getVNInfoAt(Def));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000655 } else {
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000656 SlotIndex Kill = LIS.getInstructionIndex(MBBI).getRegSlot();
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000657 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
658 AssignI.setStop(Kill);
659 }
660 }
661}
662
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000663MachineBasicBlock*
664SplitEditor::findShallowDominator(MachineBasicBlock *MBB,
665 MachineBasicBlock *DefMBB) {
666 if (MBB == DefMBB)
667 return MBB;
668 assert(MDT.dominates(DefMBB, MBB) && "MBB must be dominated by the def.");
669
670 const MachineLoopInfo &Loops = SA.Loops;
671 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
672 MachineDomTreeNode *DefDomNode = MDT[DefMBB];
673
674 // Best candidate so far.
675 MachineBasicBlock *BestMBB = MBB;
676 unsigned BestDepth = UINT_MAX;
677
678 for (;;) {
679 const MachineLoop *Loop = Loops.getLoopFor(MBB);
680
681 // MBB isn't in a loop, it doesn't get any better. All dominators have a
682 // higher frequency by definition.
683 if (!Loop) {
684 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
685 << MBB->getNumber() << " at depth 0\n");
686 return MBB;
687 }
688
689 // We'll never be able to exit the DefLoop.
690 if (Loop == DefLoop) {
691 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
692 << MBB->getNumber() << " in the same loop\n");
693 return MBB;
694 }
695
696 // Least busy dominator seen so far.
697 unsigned Depth = Loop->getLoopDepth();
698 if (Depth < BestDepth) {
699 BestMBB = MBB;
700 BestDepth = Depth;
701 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
702 << MBB->getNumber() << " at depth " << Depth << '\n');
703 }
704
705 // Leave loop by going to the immediate dominator of the loop header.
706 // This is a bigger stride than simply walking up the dominator tree.
707 MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom();
708
709 // Too far up the dominator tree?
710 if (!IDom || !MDT.dominates(DefDomNode, IDom))
711 return BestMBB;
712
713 MBB = IDom->getBlock();
714 }
715}
716
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000717void SplitEditor::hoistCopiesForSize() {
718 // Get the complement interval, always RegIdx 0.
Mark Laceyf9ea8852013-08-14 23:50:04 +0000719 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000720 LiveInterval *Parent = &Edit->getParent();
721
722 // Track the nearest common dominator for all back-copies for each ParentVNI,
723 // indexed by ParentVNI->id.
724 typedef std::pair<MachineBasicBlock*, SlotIndex> DomPair;
725 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
726
727 // Find the nearest common dominator for parent values with multiple
728 // back-copies. If a single back-copy dominates, put it in DomPair.second.
Matthias Braun96761952014-12-10 23:07:54 +0000729 for (VNInfo *VNI : LI->valnos) {
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +0000730 if (VNI->isUnused())
731 continue;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000732 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
733 assert(ParentVNI && "Parent not live at complement def");
734
735 // Don't hoist remats. The complement is probably going to disappear
736 // completely anyway.
737 if (Edit->didRematerialize(ParentVNI))
738 continue;
739
740 MachineBasicBlock *ValMBB = LIS.getMBBFromIndex(VNI->def);
741 DomPair &Dom = NearestDom[ParentVNI->id];
742
743 // Keep directly defined parent values. This is either a PHI or an
744 // instruction in the complement range. All other copies of ParentVNI
745 // should be eliminated.
746 if (VNI->def == ParentVNI->def) {
747 DEBUG(dbgs() << "Direct complement def at " << VNI->def << '\n');
748 Dom = DomPair(ValMBB, VNI->def);
749 continue;
750 }
751 // Skip the singly mapped values. There is nothing to gain from hoisting a
752 // single back-copy.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000753 if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) {
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000754 DEBUG(dbgs() << "Single complement def at " << VNI->def << '\n');
755 continue;
756 }
757
758 if (!Dom.first) {
759 // First time we see ParentVNI. VNI dominates itself.
760 Dom = DomPair(ValMBB, VNI->def);
761 } else if (Dom.first == ValMBB) {
762 // Two defs in the same block. Pick the earlier def.
763 if (!Dom.second.isValid() || VNI->def < Dom.second)
764 Dom.second = VNI->def;
765 } else {
766 // Different basic blocks. Check if one dominates.
767 MachineBasicBlock *Near =
768 MDT.findNearestCommonDominator(Dom.first, ValMBB);
769 if (Near == ValMBB)
770 // Def ValMBB dominates.
771 Dom = DomPair(ValMBB, VNI->def);
772 else if (Near != Dom.first)
773 // None dominate. Hoist to common dominator, need new def.
774 Dom = DomPair(Near, SlotIndex());
775 }
776
777 DEBUG(dbgs() << "Multi-mapped complement " << VNI->id << '@' << VNI->def
778 << " for parent " << ParentVNI->id << '@' << ParentVNI->def
779 << " hoist to BB#" << Dom.first->getNumber() << ' '
780 << Dom.second << '\n');
781 }
782
783 // Insert the hoisted copies.
784 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
785 DomPair &Dom = NearestDom[i];
786 if (!Dom.first || Dom.second.isValid())
787 continue;
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000788 // This value needs a hoisted copy inserted at the end of Dom.first.
789 VNInfo *ParentVNI = Parent->getValNumInfo(i);
790 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(ParentVNI->def);
791 // Get a less loopy dominator than Dom.first.
792 Dom.first = findShallowDominator(Dom.first, DefMBB);
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000793 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
794 Dom.second =
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000795 defFromParent(0, ParentVNI, Last, *Dom.first,
Jakob Stoklund Olesen67aec122012-01-11 02:07:00 +0000796 SA.getLastSplitPointIter(Dom.first))->def;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000797 }
798
799 // Remove redundant back-copies that are now known to be dominated by another
800 // def with the same value.
801 SmallVector<VNInfo*, 8> BackCopies;
Matthias Braun96761952014-12-10 23:07:54 +0000802 for (VNInfo *VNI : LI->valnos) {
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +0000803 if (VNI->isUnused())
804 continue;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000805 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
806 const DomPair &Dom = NearestDom[ParentVNI->id];
807 if (!Dom.first || Dom.second == VNI->def)
808 continue;
809 BackCopies.push_back(VNI);
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000810 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000811 }
812 removeBackCopies(BackCopies);
813}
814
815
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000816/// transferValues - Transfer all possible values to the new live ranges.
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000817/// Values that were rematerialized are left alone, they need LRCalc.extend().
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000818bool SplitEditor::transferValues() {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000819 bool Skipped = false;
820 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Matthias Braun96761952014-12-10 23:07:54 +0000821 for (const LiveRange::Segment &S : Edit->getParent()) {
822 DEBUG(dbgs() << " blit " << S << ':');
823 VNInfo *ParentVNI = S.valno;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000824 // RegAssign has holes where RegIdx 0 should be used.
Matthias Braun96761952014-12-10 23:07:54 +0000825 SlotIndex Start = S.start;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000826 AssignI.advanceTo(Start);
827 do {
828 unsigned RegIdx;
Matthias Braun96761952014-12-10 23:07:54 +0000829 SlotIndex End = S.end;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000830 if (!AssignI.valid()) {
831 RegIdx = 0;
832 } else if (AssignI.start() <= Start) {
833 RegIdx = AssignI.value();
834 if (AssignI.stop() < End) {
835 End = AssignI.stop();
836 ++AssignI;
837 }
838 } else {
839 RegIdx = 0;
840 End = std::min(End, AssignI.start());
841 }
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000842
843 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000844 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000845 LiveRange &LR = LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000846
847 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000848 ValueForcePair VFP = Values.lookup(std::make_pair(RegIdx, ParentVNI->id));
849 if (VNInfo *VNI = VFP.getPointer()) {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000850 DEBUG(dbgs() << ':' << VNI->id);
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000851 LR.addSegment(LiveInterval::Segment(Start, End, VNI));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000852 Start = End;
853 continue;
854 }
855
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000856 // Skip values with forced recomputation.
857 if (VFP.getInt()) {
858 DEBUG(dbgs() << "(recalc)");
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000859 Skipped = true;
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000860 Start = End;
861 continue;
862 }
863
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000864 LiveRangeCalc &LRC = getLRCalc(RegIdx);
865
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000866 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
867 // so the live range is accurate. Add live-in blocks in [Start;End) to the
868 // LiveInBlocks.
869 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
870 SlotIndex BlockStart, BlockEnd;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000871 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000872
873 // The first block may be live-in, or it may have its own def.
874 if (Start != BlockStart) {
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000875 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000876 assert(VNI && "Missing def for complex mapped value");
877 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
878 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000879 if (BlockEnd <= End)
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000880 LRC.setLiveOutValue(MBB, VNI);
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000881
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000882 // Skip to the next block for live-in.
883 ++MBB;
884 BlockStart = BlockEnd;
885 }
886
887 // Handle the live-in blocks covered by [Start;End).
888 assert(Start <= BlockStart && "Expected live-in block");
889 while (BlockStart < End) {
890 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
891 BlockEnd = LIS.getMBBEndIdx(MBB);
892 if (BlockStart == ParentVNI->def) {
893 // This block has the def of a parent PHI, so it isn't live-in.
894 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000895 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000896 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000897 if (End >= BlockEnd)
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000898 LRC.setLiveOutValue(MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000899 } else {
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000900 // This block needs a live-in value. The last block covered may not
901 // be live-out.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000902 if (End < BlockEnd)
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000903 LRC.addLiveInBlock(LR, MDT[MBB], End);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000904 else {
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000905 // Live-through, and we don't know the value.
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000906 LRC.addLiveInBlock(LR, MDT[MBB]);
Craig Topperc0196b12014-04-14 00:51:57 +0000907 LRC.setLiveOutValue(MBB, nullptr);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000908 }
909 }
910 BlockStart = BlockEnd;
911 ++MBB;
912 }
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000913 Start = End;
Matthias Braun96761952014-12-10 23:07:54 +0000914 } while (Start != S.end);
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000915 DEBUG(dbgs() << '\n');
916 }
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000917
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000918 LRCalc[0].calculateValues();
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000919 if (SpillMode)
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000920 LRCalc[1].calculateValues();
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000921
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000922 return Skipped;
923}
924
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000925void SplitEditor::extendPHIKillRanges() {
926 // Extend live ranges to be live-out for successor PHI values.
Matthias Braun96761952014-12-10 23:07:54 +0000927 for (const VNInfo *PHIVNI : Edit->getParent().valnos) {
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000928 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
929 continue;
930 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000931 LiveRange &LR = LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000932 LiveRangeCalc &LRC = getLRCalc(RegIdx);
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000933 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
934 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
935 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000936 SlotIndex End = LIS.getMBBEndIdx(*PI);
937 SlotIndex LastUse = End.getPrevSlot();
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000938 // The predecessor may not have a live-out value. That is OK, like an
939 // undef PHI operand.
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000940 if (Edit->getParent().liveAt(LastUse)) {
941 assert(RegAssign.lookup(LastUse) == RegIdx &&
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000942 "Different register assignment in phi predecessor");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000943 LRC.extend(LR, End);
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000944 }
945 }
946 }
947}
948
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000949/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000950void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000951 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000952 RE = MRI.reg_end(); RI != RE;) {
Owen Anderson16c6bf42014-03-13 23:12:04 +0000953 MachineOperand &MO = *RI;
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +0000954 MachineInstr *MI = MO.getParent();
955 ++RI;
Eric Christopherede62672011-02-03 06:18:29 +0000956 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +0000957 if (MI->isDebugValue()) {
958 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +0000959 MO.setReg(0);
960 continue;
961 }
Jakob Stoklund Olesenf6e03942011-02-09 21:52:09 +0000962
Jakob Stoklund Olesen56a56eb2011-07-24 20:23:50 +0000963 // <undef> operands don't really read the register, so it doesn't matter
964 // which register we choose. When the use operand is tied to a def, we must
965 // use the same register as the def, so just do that always.
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000966 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen56a56eb2011-07-24 20:23:50 +0000967 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000968 Idx = Idx.getRegSlot(MO.isEarlyClobber());
Eric Christopherede62672011-02-03 06:18:29 +0000969
970 // Rewrite to the mapped register at Idx.
971 unsigned RegIdx = RegAssign.lookup(Idx);
Mark Laceyf9ea8852013-08-14 23:50:04 +0000972 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000973 MO.setReg(LI->reg);
Eric Christopherede62672011-02-03 06:18:29 +0000974 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
975 << Idx << ':' << RegIdx << '\t' << *MI);
976
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +0000977 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen73a9eb92011-07-24 20:33:23 +0000978 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +0000979 continue;
980
981 // Skip instructions that don't read Reg.
982 if (MO.isDef()) {
983 if (!MO.getSubReg() && !MO.isEarlyClobber())
984 continue;
985 // We may wan't to extend a live range for a partial redef, or for a use
986 // tied to an early clobber.
987 Idx = Idx.getPrevSlot();
988 if (!Edit->getParent().liveAt(Idx))
989 continue;
990 } else
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000991 Idx = Idx.getRegSlot(true);
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +0000992
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000993 getLRCalc(RegIdx).extend(*LI, Idx.getNextSlot());
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +0000994 }
995}
996
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +0000997void SplitEditor::deleteRematVictims() {
998 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +0000999 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
Mark Laceyf9ea8852013-08-14 23:50:04 +00001000 LiveInterval *LI = &LIS.getInterval(*I);
Matthias Braun96761952014-12-10 23:07:54 +00001001 for (const LiveRange::Segment &S : LI->segments) {
Jakob Stoklund Olesend8f24052011-11-13 22:42:13 +00001002 // Dead defs end at the dead slot.
Matthias Braun96761952014-12-10 23:07:54 +00001003 if (S.end != S.valno->def.getDeadSlot())
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001004 continue;
Matthias Braun96761952014-12-10 23:07:54 +00001005 MachineInstr *MI = LIS.getInstructionFromIndex(S.valno->def);
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001006 assert(MI && "Missing instruction for dead def");
1007 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001008
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001009 if (!MI->allDefsAreDead())
1010 continue;
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001011
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001012 DEBUG(dbgs() << "All defs dead: " << *MI);
1013 Dead.push_back(MI);
1014 }
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001015 }
1016
1017 if (Dead.empty())
1018 return;
1019
Pete Cooper2bde2f42012-04-02 22:22:53 +00001020 Edit->eliminateDeadDefs(Dead);
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001021}
1022
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001023void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001024 ++NumFinished;
Eric Christopher21933532011-02-03 05:40:54 +00001025
Eric Christopherede62672011-02-03 06:18:29 +00001026 // At this point, the live intervals in Edit contain VNInfos corresponding to
1027 // the inserted copies.
1028
1029 // Add the original defs from the parent interval.
Matthias Braun96761952014-12-10 23:07:54 +00001030 for (const VNInfo *ParentVNI : Edit->getParent().valnos) {
Jakob Stoklund Olesen3295a992011-02-04 00:59:23 +00001031 if (ParentVNI->isUnused())
1032 continue;
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +00001033 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen97e14e02012-07-27 21:11:14 +00001034 defValue(RegIdx, ParentVNI, ParentVNI->def);
Jakob Stoklund Olesen32210de2011-03-15 21:13:22 +00001035
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +00001036 // Force rematted values to be recomputed everywhere.
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001037 // The new live ranges may be truncated.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +00001038 if (Edit->didRematerialize(ParentVNI))
1039 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +00001040 forceRecompute(i, ParentVNI);
Eric Christopherede62672011-02-03 06:18:29 +00001041 }
1042
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001043 // Hoist back-copies to the complement interval when in spill mode.
1044 switch (SpillMode) {
1045 case SM_Partition:
1046 // Leave all back-copies as is.
1047 break;
1048 case SM_Size:
1049 hoistCopiesForSize();
1050 break;
1051 case SM_Speed:
1052 llvm_unreachable("Spill mode 'speed' not implemented yet");
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001053 }
1054
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001055 // Transfer the simply mapped values, check if any are skipped.
1056 bool Skipped = transferValues();
1057 if (Skipped)
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001058 extendPHIKillRanges();
1059 else
1060 ++NumSimple;
Eric Christopherede62672011-02-03 06:18:29 +00001061
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001062 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001063 rewriteAssigned(Skipped);
Eric Christopherede62672011-02-03 06:18:29 +00001064
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001065 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001066 if (Skipped)
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001067 deleteRematVictims();
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +00001068
Jakob Stoklund Olesen0f1677e2010-10-07 23:34:34 +00001069 // Get rid of unused values and set phi-kill flags.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001070 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I) {
1071 LiveInterval &LI = LIS.getInterval(*I);
1072 LI.RenumberValues();
1073 }
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +00001074
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001075 // Provide a reverse mapping from original indices to Edit ranges.
1076 if (LRMap) {
1077 LRMap->clear();
1078 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1079 LRMap->push_back(i);
1080 }
1081
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001082 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +00001083 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +00001084 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001085 // Don't use iterators, they are invalidated by create() below.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001086 LiveInterval *li = &LIS.getInterval(Edit->get(i));
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001087 unsigned NumComp = ConEQ.Classify(li);
1088 if (NumComp <= 1)
1089 continue;
1090 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
1091 SmallVector<LiveInterval*, 8> dups;
1092 dups.push_back(li);
Matt Beaumont-Gay70597d42011-04-21 19:46:23 +00001093 for (unsigned j = 1; j != NumComp; ++j)
Mark Lacey9d8103d2013-08-14 23:50:16 +00001094 dups.push_back(&Edit->createEmptyInterval());
Jakob Stoklund Olesen315b42c2011-03-17 00:23:45 +00001095 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001096 // The new intervals all map back to i.
1097 if (LRMap)
1098 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001099 }
1100
Jakob Stoklund Olesen284c2db2010-08-10 17:07:22 +00001101 // Calculate spill weight and allocation hints for new intervals.
Benjamin Kramere2a1d892013-06-17 19:00:36 +00001102 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), SA.Loops, MBFI);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001103
1104 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +00001105}
1106
1107
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +00001108//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +00001109// Single Block Splitting
1110//===----------------------------------------------------------------------===//
1111
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001112bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
1113 bool SingleInstrs) const {
1114 // Always split for multiple instructions.
1115 if (!BI.isOneInstr())
1116 return true;
1117 // Don't split for single instructions unless explicitly requested.
1118 if (!SingleInstrs)
1119 return false;
1120 // Splitting a live-through range always makes progress.
1121 if (BI.LiveIn && BI.LiveOut)
1122 return true;
1123 // No point in isolating a copy. It has no register class constraints.
1124 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
1125 return false;
1126 // Finally, don't isolate an end point that was created by earlier splits.
1127 return isOriginalEndpoint(BI.FirstInstr);
1128}
1129
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001130void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1131 openIntv();
1132 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001133 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001134 LastSplitPoint));
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001135 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
1136 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001137 } else {
1138 // The last use is after the last valid split point.
1139 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1140 useIntv(SegStart, SegStop);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001141 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001142 }
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001143}
1144
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001145
1146//===----------------------------------------------------------------------===//
1147// Global Live Range Splitting Support
1148//===----------------------------------------------------------------------===//
1149
1150// These methods support a method of global live range splitting that uses a
1151// global algorithm to decide intervals for CFG edges. They will insert split
1152// points and color intervals in basic blocks while avoiding interference.
1153//
1154// Note that splitSingleBlock is also useful for blocks where both CFG edges
1155// are on the stack.
1156
1157void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
1158 unsigned IntvIn, SlotIndex LeaveBefore,
1159 unsigned IntvOut, SlotIndex EnterAfter){
1160 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001161 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001162
1163 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
1164 << ") intf " << LeaveBefore << '-' << EnterAfter
1165 << ", live-through " << IntvIn << " -> " << IntvOut);
1166
1167 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1168
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001169 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
1170 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
1171 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
1172
1173 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
1174
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001175 if (!IntvOut) {
1176 DEBUG(dbgs() << ", spill on entry.\n");
1177 //
1178 // <<<<<<<<< Possible LeaveBefore interference.
1179 // |-----------| Live through.
1180 // -____________ Spill on entry.
1181 //
1182 selectIntv(IntvIn);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001183 SlotIndex Idx = leaveIntvAtTop(*MBB);
1184 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1185 (void)Idx;
1186 return;
1187 }
1188
1189 if (!IntvIn) {
1190 DEBUG(dbgs() << ", reload on exit.\n");
1191 //
1192 // >>>>>>> Possible EnterAfter interference.
1193 // |-----------| Live through.
1194 // ___________-- Reload on exit.
1195 //
1196 selectIntv(IntvOut);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001197 SlotIndex Idx = enterIntvAtEnd(*MBB);
1198 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1199 (void)Idx;
1200 return;
1201 }
1202
1203 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1204 DEBUG(dbgs() << ", straight through.\n");
1205 //
1206 // |-----------| Live through.
1207 // ------------- Straight through, same intv, no interference.
1208 //
1209 selectIntv(IntvOut);
1210 useIntv(Start, Stop);
1211 return;
1212 }
1213
1214 // We cannot legally insert splits after LSP.
1215 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001216 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001217
1218 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1219 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
1220 DEBUG(dbgs() << ", switch avoiding interference.\n");
1221 //
1222 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
1223 // |-----------| Live through.
1224 // ------======= Switch intervals between interference.
1225 //
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001226 selectIntv(IntvOut);
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001227 SlotIndex Idx;
1228 if (LeaveBefore && LeaveBefore < LSP) {
1229 Idx = enterIntvBefore(LeaveBefore);
1230 useIntv(Idx, Stop);
1231 } else {
1232 Idx = enterIntvAtEnd(*MBB);
1233 }
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001234 selectIntv(IntvIn);
1235 useIntv(Start, Idx);
1236 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1237 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1238 return;
1239 }
1240
1241 DEBUG(dbgs() << ", create local intv for interference.\n");
1242 //
1243 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1244 // |-----------| Live through.
1245 // ==---------== Switch intervals before/after interference.
1246 //
1247 assert(LeaveBefore <= EnterAfter && "Missed case");
1248
1249 selectIntv(IntvOut);
1250 SlotIndex Idx = enterIntvAfter(EnterAfter);
1251 useIntv(Idx, Stop);
1252 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1253
1254 selectIntv(IntvIn);
1255 Idx = leaveIntvBefore(LeaveBefore);
1256 useIntv(Start, Idx);
1257 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1258}
1259
1260
1261void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1262 unsigned IntvIn, SlotIndex LeaveBefore) {
1263 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001264 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001265
1266 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001267 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001268 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1269 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1270
1271 assert(IntvIn && "Must have register in");
1272 assert(BI.LiveIn && "Must be live-in");
1273 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1274
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001275 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001276 DEBUG(dbgs() << " before interference.\n");
1277 //
1278 // <<< Interference after kill.
1279 // |---o---x | Killed in block.
1280 // ========= Use IntvIn everywhere.
1281 //
1282 selectIntv(IntvIn);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001283 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001284 return;
1285 }
1286
1287 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1288
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001289 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001290 //
1291 // <<< Possible interference after last use.
1292 // |---o---o---| Live-out on stack.
1293 // =========____ Leave IntvIn after last use.
1294 //
1295 // < Interference after last use.
1296 // |---o---o--o| Live-out on stack, late last use.
1297 // ============ Copy to stack after LSP, overlap IntvIn.
1298 // \_____ Stack interval is live-out.
1299 //
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001300 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001301 DEBUG(dbgs() << ", spill after last use before interference.\n");
1302 selectIntv(IntvIn);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001303 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001304 useIntv(Start, Idx);
1305 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1306 } else {
1307 DEBUG(dbgs() << ", spill before last split point.\n");
1308 selectIntv(IntvIn);
Jakob Stoklund Olesen37e3a132011-07-16 00:13:30 +00001309 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001310 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001311 useIntv(Start, Idx);
1312 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1313 }
1314 return;
1315 }
1316
1317 // The interference is overlapping somewhere we wanted to use IntvIn. That
1318 // means we need to create a local interval that can be allocated a
1319 // different register.
1320 unsigned LocalIntv = openIntv();
Matt Beaumont-Gay26909d82011-07-16 04:18:47 +00001321 (void)LocalIntv;
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001322 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1323
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001324 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001325 //
1326 // <<<<<<< Interference overlapping uses.
1327 // |---o---o---| Live-out on stack.
1328 // =====----____ Leave IntvIn before interference, then spill.
1329 //
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001330 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001331 SlotIndex From = enterIntvBefore(LeaveBefore);
1332 useIntv(From, To);
1333 selectIntv(IntvIn);
1334 useIntv(Start, From);
1335 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1336 return;
1337 }
1338
1339 // <<<<<<< Interference overlapping uses.
1340 // |---o---o--o| Live-out on stack, late last use.
1341 // =====------- Copy to stack before LSP, overlap LocalIntv.
1342 // \_____ Stack interval is live-out.
1343 //
1344 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001345 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001346 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1347 useIntv(From, To);
1348 selectIntv(IntvIn);
1349 useIntv(Start, From);
1350 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1351}
1352
1353void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1354 unsigned IntvOut, SlotIndex EnterAfter) {
1355 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001356 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001357
1358 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001359 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001360 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1361 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1362
1363 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1364
1365 assert(IntvOut && "Must have register out");
1366 assert(BI.LiveOut && "Must be live-out");
1367 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1368
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001369 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001370 DEBUG(dbgs() << " after interference.\n");
1371 //
1372 // >>>> Interference before def.
1373 // | o---o---| Defined in block.
1374 // ========= Use IntvOut everywhere.
1375 //
1376 selectIntv(IntvOut);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001377 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001378 return;
1379 }
1380
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001381 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001382 DEBUG(dbgs() << ", reload after interference.\n");
1383 //
1384 // >>>> Interference before def.
1385 // |---o---o---| Live-through, stack-in.
1386 // ____========= Enter IntvOut before first use.
1387 //
1388 selectIntv(IntvOut);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001389 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001390 useIntv(Idx, Stop);
1391 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1392 return;
1393 }
1394
1395 // The interference is overlapping somewhere we wanted to use IntvOut. That
1396 // means we need to create a local interval that can be allocated a
1397 // different register.
1398 DEBUG(dbgs() << ", interference overlaps uses.\n");
1399 //
1400 // >>>>>>> Interference overlapping uses.
1401 // |---o---o---| Live-through, stack-in.
1402 // ____---====== Create local interval for interference range.
1403 //
1404 selectIntv(IntvOut);
1405 SlotIndex Idx = enterIntvAfter(EnterAfter);
1406 useIntv(Idx, Stop);
1407 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1408
1409 openIntv();
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001410 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001411 useIntv(From, Idx);
1412}