blob: b1416cc17e595594c5ccabe19cdecf8083d5a547 [file] [log] [blame]
Jakob Stoklund Olesen8ae02632010-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 Olesen376dcbd2010-11-03 20:39:23 +000015#define DEBUG_TYPE "regalloc"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000016#include "SplitKit.h"
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000017#include "LiveRangeEdit.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000018#include "VirtRegMap.h"
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000019#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000020#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +000021#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000028
29using namespace llvm;
30
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000031STATISTIC(NumFinished, "Number of splits finished");
32STATISTIC(NumSimple, "Number of splits that were simple");
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +000033STATISTIC(NumCopies, "Number of copies inserted for splitting");
34STATISTIC(NumRemats, "Number of rematerialized defs for splitting");
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +000035STATISTIC(NumRepairs, "Number of invalid live ranges repaired");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000036
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000037//===----------------------------------------------------------------------===//
38// Split Analysis
39//===----------------------------------------------------------------------===//
40
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000041SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000042 const LiveIntervals &lis,
43 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000044 : MF(vrm.getMachineFunction()),
45 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000046 LIS(lis),
47 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000048 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000049 CurLI(0),
50 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000051
52void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000053 UseSlots.clear();
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000054 UseBlocks.clear();
55 ThroughBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000056 CurLI = 0;
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +000057 DidRepairRange = false;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000058}
59
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000060SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
61 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
62 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
63 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
64
65 // Compute split points on the first call. The pair is independent of the
66 // current live interval.
67 if (!LSP.first.isValid()) {
68 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
69 if (FirstTerm == MBB->end())
70 LSP.first = LIS.getMBBEndIdx(MBB);
71 else
72 LSP.first = LIS.getInstructionIndex(FirstTerm);
73
74 // If there is a landing pad successor, also find the call instruction.
75 if (!LPad)
76 return LSP.first;
77 // There may not be a call instruction (?) in which case we ignore LPad.
78 LSP.second = LSP.first;
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000079 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
80 I != E;) {
81 --I;
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000082 if (I->getDesc().isCall()) {
83 LSP.second = LIS.getInstructionIndex(I);
84 break;
85 }
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000086 }
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000087 }
88
89 // If CurLI is live into a landing pad successor, move the last split point
90 // back to the call that may throw.
Jakob Stoklund Olesen71d9e652011-04-05 23:43:16 +000091 if (LPad && LSP.second.isValid() && LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000092 return LSP.second;
93 else
94 return LSP.first;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000095}
96
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000097/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000098void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +000099 assert(UseSlots.empty() && "Call clear first");
100
101 // First get all the defs from the interval values. This provides the correct
102 // slots for early clobbers.
103 for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(),
104 E = CurLI->vni_end(); I != E; ++I)
105 if (!(*I)->isPHIDef() && !(*I)->isUnused())
106 UseSlots.push_back((*I)->def);
107
108 // Get use slots form the use-def chain.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000109 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000110 for (MachineRegisterInfo::use_nodbg_iterator
111 I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E;
112 ++I)
113 if (!I.getOperand().isUndef())
114 UseSlots.push_back(LIS.getInstructionIndex(&*I).getDefIndex());
115
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000116 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000117
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000118 // Remove duplicates, keeping the smaller slot for each instruction.
119 // That is what we want for early clobbers.
120 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
121 SlotIndex::isSameInstr),
122 UseSlots.end());
123
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000124 // Compute per-live block info.
125 if (!calcLiveBlockInfo()) {
126 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola5b220212011-06-26 22:34:10 +0000127 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000128 DidRepairRange = true;
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +0000129 ++NumRepairs;
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000130 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
131 const_cast<LiveIntervals&>(LIS)
132 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000133 UseBlocks.clear();
134 ThroughBlocks.clear();
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000135 bool fixed = calcLiveBlockInfo();
136 (void)fixed;
137 assert(fixed && "Couldn't fix broken live interval");
138 }
139
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000140 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000141 << UseSlots.size() << " instrs in "
142 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000143 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000144}
145
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000146/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
147/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000148bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000149 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000150 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000151 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000152 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000153
154 LiveInterval::const_iterator LVI = CurLI->begin();
155 LiveInterval::const_iterator LVE = CurLI->end();
156
157 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
158 UseI = UseSlots.begin();
159 UseE = UseSlots.end();
160
161 // Loop over basic blocks where CurLI is live.
162 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
163 for (;;) {
164 BlockInfo BI;
165 BI.MBB = MFI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000166 SlotIndex Start, Stop;
167 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000168
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000169 // If the block contains no uses, the range must be live through. At one
Rafael Espindola5b220212011-06-26 22:34:10 +0000170 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000171 // mid-block.
172 if (UseI == UseE || *UseI >= Stop) {
173 ++NumThroughBlocks;
174 ThroughBlocks.set(BI.MBB->getNumber());
175 // The range shouldn't end mid-block if there are no uses. This shouldn't
176 // happen.
177 if (LVI->end < Stop)
178 return false;
179 } else {
180 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000181 BI.FirstInstr = *UseI;
182 assert(BI.FirstInstr >= Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000183 do ++UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000184 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000185 BI.LastInstr = UseI[-1];
186 assert(BI.LastInstr < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000187
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000188 // LVI is the first live segment overlapping MBB.
189 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000190
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000191 // When not live in, the first use should be a def.
192 if (!BI.LiveIn) {
193 assert(LVI->start == LVI->valno->def && "Dangling LiveRange start");
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000194 assert(LVI->start == BI.FirstInstr && "First instr should be a def");
195 BI.FirstDef = BI.FirstInstr;
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000196 }
197
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000198 // Look for gaps in the live range.
199 BI.LiveOut = true;
200 while (LVI->end < Stop) {
201 SlotIndex LastStop = LVI->end;
202 if (++LVI == LVE || LVI->start >= Stop) {
203 BI.LiveOut = false;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000204 BI.LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000205 break;
206 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000207
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000208 if (LastStop < LVI->start) {
209 // There is a gap in the live range. Create duplicate entries for the
210 // live-in snippet and the live-out snippet.
211 ++NumGapBlocks;
212
213 // Push the Live-in part.
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000214 BI.LiveOut = false;
215 UseBlocks.push_back(BI);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000216 UseBlocks.back().LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000217
218 // Set up BI for the live-out part.
219 BI.LiveIn = false;
220 BI.LiveOut = true;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000221 BI.FirstInstr = BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000222 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000223
224 // A LiveRange that starts in the middle of the block must be a def.
225 assert(LVI->start == LVI->valno->def && "Dangling LiveRange start");
226 if (!BI.FirstDef)
227 BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000228 }
229
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000230 UseBlocks.push_back(BI);
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000231
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000232 // LVI is now at LVE or LVI->end >= Stop.
233 if (LVI == LVE)
234 break;
235 }
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000236
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000237 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000238 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000239 break;
240
241 // Pick the next basic block.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000242 if (LVI->start < Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000243 ++MFI;
244 else
245 MFI = LIS.getMBBFromIndex(LVI->start);
246 }
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000247
248 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000249 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000250}
251
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000252unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
253 if (cli->empty())
254 return 0;
255 LiveInterval *li = const_cast<LiveInterval*>(cli);
256 LiveInterval::iterator LVI = li->begin();
257 LiveInterval::iterator LVE = li->end();
258 unsigned Count = 0;
259
260 // Loop over basic blocks where li is live.
261 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start);
262 SlotIndex Stop = LIS.getMBBEndIdx(MFI);
263 for (;;) {
264 ++Count;
265 LVI = li->advanceTo(LVI, Stop);
266 if (LVI == LVE)
267 return Count;
268 do {
269 ++MFI;
270 Stop = LIS.getMBBEndIdx(MFI);
271 } while (Stop <= LVI->start);
272 }
273}
274
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000275bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
276 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
277 const LiveInterval &Orig = LIS.getInterval(OrigReg);
278 assert(!Orig.empty() && "Splitting empty interval?");
279 LiveInterval::const_iterator I = Orig.find(Idx);
280
281 // Range containing Idx should begin at Idx.
282 if (I != Orig.end() && I->start <= Idx)
283 return I->start == Idx;
284
285 // Range does not contain Idx, previous must end at Idx.
286 return I != Orig.begin() && (--I)->end == Idx;
287}
288
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000289void SplitAnalysis::analyze(const LiveInterval *li) {
290 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000291 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000292 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000293}
294
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000295
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000296//===----------------------------------------------------------------------===//
297// Split Editor
298//===----------------------------------------------------------------------===//
299
300/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000301SplitEditor::SplitEditor(SplitAnalysis &sa,
302 LiveIntervals &lis,
303 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000304 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000305 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000306 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000307 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000308 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
309 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000310 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000311 OpenIdx(0),
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000312 SpillMode(SM_Partition),
Eric Christopher0f438112011-02-03 06:18:29 +0000313 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000314{}
315
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000316void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
317 Edit = &LRE;
318 SpillMode = SM;
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000319 OpenIdx = 0;
320 RegAssign.clear();
321 Values.clear();
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000322 LRCalc.reset(&VRM.getMachineFunction());
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000323
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000324 // We don't need an AliasAnalysis since we will only be performing
325 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000326 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000327}
328
Eric Christopher0f438112011-02-03 06:18:29 +0000329void SplitEditor::dump() const {
330 if (RegAssign.empty()) {
331 dbgs() << " empty\n";
332 return;
333 }
334
335 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
336 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
337 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000338}
339
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000340VNInfo *SplitEditor::defValue(unsigned RegIdx,
341 const VNInfo *ParentVNI,
342 SlotIndex Idx) {
343 assert(ParentVNI && "Mapping NULL value");
344 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000345 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
346 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000347
348 // Create a new value.
349 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
350
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000351 // Use insert for lookup, so we can add missing values with a second lookup.
352 std::pair<ValueMap::iterator, bool> InsP =
353 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
354
355 // This was the first time (RegIdx, ParentVNI) was mapped.
356 // Keep it as a simple def without any liveness.
357 if (InsP.second)
358 return VNI;
359
360 // If the previous value was a simple mapping, add liveness for it now.
361 if (VNInfo *OldVNI = InsP.first->second) {
362 SlotIndex Def = OldVNI->def;
363 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
364 // No longer a simple mapping.
365 InsP.first->second = 0;
366 }
367
368 // This is a complex mapping, add liveness for VNI
369 SlotIndex Def = VNI->def;
370 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
371
372 return VNI;
373}
374
375void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
376 assert(ParentVNI && "Mapping NULL value");
377 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
378
379 // ParentVNI was either unmapped or already complex mapped. Either way.
380 if (!VNI)
381 return;
382
383 // This was previously a single mapping. Make sure the old def is represented
384 // by a trivial live range.
385 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000386 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000387 VNI = 0;
388}
389
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000390// extendRange - Extend the live range to reach Idx.
391// Potentially create phi-def values.
392void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000393 LRCalc.extend(Edit->get(RegIdx), Idx.getNextSlot(),
394 LIS.getSlotIndexes(), &MDT, &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000395}
396
Eric Christopher0f438112011-02-03 06:18:29 +0000397VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000398 VNInfo *ParentVNI,
399 SlotIndex UseIdx,
400 MachineBasicBlock &MBB,
401 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000402 MachineInstr *CopyMI = 0;
403 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000404 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000405
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000406 // We may be trying to avoid interference that ends at a deleted instruction,
407 // so always begin RegIdx 0 early and all others late.
408 bool Late = RegIdx != 0;
409
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000410 // Attempt cheap-as-a-copy rematerialization.
411 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000412 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000413 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI, Late);
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000414 ++NumRemats;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000415 } else {
416 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000417 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000418 .addReg(Edit->getReg());
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000419 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
420 .getDefIndex();
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000421 ++NumCopies;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000422 }
423
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000424 // Define the value in Reg.
425 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
426 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000427 return VNI;
428}
429
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000430/// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000431unsigned SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000432 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000433 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000434 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000435
436 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000437 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000438 Edit->create(LIS, VRM);
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000439 return OpenIdx;
440}
441
442void SplitEditor::selectIntv(unsigned Idx) {
443 assert(Idx != 0 && "Cannot select the complement interval");
444 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000445 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000446 OpenIdx = Idx;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000447}
448
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000449SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000450 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000451 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000452 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000453 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000454 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000455 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000456 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000457 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000458 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000459 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000460 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000461
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000462 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
463 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000464}
465
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000466SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
467 assert(OpenIdx && "openIntv not called before enterIntvAfter");
468 DEBUG(dbgs() << " enterIntvAfter " << Idx);
469 Idx = Idx.getBoundaryIndex();
470 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
471 if (!ParentVNI) {
472 DEBUG(dbgs() << ": not live\n");
473 return Idx;
474 }
475 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
476 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
477 assert(MI && "enterIntvAfter called with invalid index");
478
479 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
480 llvm::next(MachineBasicBlock::iterator(MI)));
481 return VNI->def;
482}
483
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000484SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000485 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000486 SlotIndex End = LIS.getMBBEndIdx(&MBB);
487 SlotIndex Last = End.getPrevSlot();
488 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000489 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000490 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000491 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000492 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000493 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000494 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000495 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000496 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000497 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000498 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000499 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000500}
501
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000502/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000503void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000504 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000505}
506
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000507void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000508 assert(OpenIdx && "openIntv not called before useIntv");
509 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
510 RegAssign.insert(Start, End, OpenIdx);
511 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000512}
513
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000514SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000515 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000516 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000517
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000518 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000519 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000520 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000521 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000522 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000523 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000524 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000525 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000526
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000527 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
528 assert(MI && "No instruction at index");
529 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
530 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000531 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000532}
533
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000534SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
535 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
536 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
537
538 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenfc479332011-07-18 18:47:13 +0000539 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000540 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000541 if (!ParentVNI) {
542 DEBUG(dbgs() << ": not live\n");
543 return Idx.getNextSlot();
544 }
545 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
546
547 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
548 assert(MI && "No instruction at index");
549 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
550 return VNI->def;
551}
552
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000553SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000554 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000555 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000556 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000557
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000558 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000559 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000560 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000561 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000562 }
563
Eric Christopher0f438112011-02-03 06:18:29 +0000564 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000565 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000566 RegAssign.insert(Start, VNI->def, OpenIdx);
567 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000568 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000569}
570
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000571void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
572 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000573 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
574 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000575 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000576 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
577 "Range cannot span basic blocks");
578
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000579 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000580 if (ParentVNI)
581 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000582 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
583 RegAssign.insert(Start, End, OpenIdx);
584 DEBUG(dump());
585}
586
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000587/// transferValues - Transfer all possible values to the new live ranges.
588/// Values that were rematerialized are left alone, they need extendRange().
589bool SplitEditor::transferValues() {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000590 bool Skipped = false;
591 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000592 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
593 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000594 DEBUG(dbgs() << " blit " << *ParentI << ':');
595 VNInfo *ParentVNI = ParentI->valno;
596 // RegAssign has holes where RegIdx 0 should be used.
597 SlotIndex Start = ParentI->start;
598 AssignI.advanceTo(Start);
599 do {
600 unsigned RegIdx;
601 SlotIndex End = ParentI->end;
602 if (!AssignI.valid()) {
603 RegIdx = 0;
604 } else if (AssignI.start() <= Start) {
605 RegIdx = AssignI.value();
606 if (AssignI.stop() < End) {
607 End = AssignI.stop();
608 ++AssignI;
609 }
610 } else {
611 RegIdx = 0;
612 End = std::min(End, AssignI.start());
613 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000614
615 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000616 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000617 LiveInterval *LI = Edit->get(RegIdx);
618
619 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000620 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
621 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000622 LI->addRange(LiveRange(Start, End, VNI));
623 Start = End;
624 continue;
625 }
626
627 // Skip rematerialized values, we need to use extendRange() and
628 // extendPHIKillRanges() to completely recompute the live ranges.
629 if (Edit->didRematerialize(ParentVNI)) {
630 DEBUG(dbgs() << "(remat)");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000631 Skipped = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000632 Start = End;
633 continue;
634 }
635
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000636 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
637 // so the live range is accurate. Add live-in blocks in [Start;End) to the
638 // LiveInBlocks.
639 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
640 SlotIndex BlockStart, BlockEnd;
641 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
642
643 // The first block may be live-in, or it may have its own def.
644 if (Start != BlockStart) {
645 VNInfo *VNI = LI->extendInBlock(BlockStart,
646 std::min(BlockEnd, End).getPrevSlot());
647 assert(VNI && "Missing def for complex mapped value");
648 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
649 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000650 if (BlockEnd <= End)
651 LRCalc.setLiveOutValue(MBB, VNI);
652
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000653 // Skip to the next block for live-in.
654 ++MBB;
655 BlockStart = BlockEnd;
656 }
657
658 // Handle the live-in blocks covered by [Start;End).
659 assert(Start <= BlockStart && "Expected live-in block");
660 while (BlockStart < End) {
661 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
662 BlockEnd = LIS.getMBBEndIdx(MBB);
663 if (BlockStart == ParentVNI->def) {
664 // This block has the def of a parent PHI, so it isn't live-in.
665 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
666 VNInfo *VNI = LI->extendInBlock(BlockStart,
667 std::min(BlockEnd, End).getPrevSlot());
668 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000669 if (End >= BlockEnd)
670 LRCalc.setLiveOutValue(MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000671 } else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000672 // This block needs a live-in value. The last block covered may not
673 // be live-out.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000674 if (End < BlockEnd)
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000675 LRCalc.addLiveInBlock(LI, MDT[MBB], End);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000676 else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000677 // Live-through, and we don't know the value.
678 LRCalc.addLiveInBlock(LI, MDT[MBB]);
679 LRCalc.setLiveOutValue(MBB, 0);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000680 }
681 }
682 BlockStart = BlockEnd;
683 ++MBB;
684 }
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000685 Start = End;
686 } while (Start != ParentI->end);
687 DEBUG(dbgs() << '\n');
688 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000689
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000690 LRCalc.calculateValues(LIS.getSlotIndexes(), &MDT, &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000691
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000692 return Skipped;
693}
694
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000695void SplitEditor::extendPHIKillRanges() {
696 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000697 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
698 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000699 const VNInfo *PHIVNI = *I;
700 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
701 continue;
702 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
703 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
704 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
705 PE = MBB->pred_end(); PI != PE; ++PI) {
706 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
707 // The predecessor may not have a live-out value. That is OK, like an
708 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000709 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000710 assert(RegAssign.lookup(End) == RegIdx &&
711 "Different register assignment in phi predecessor");
712 extendRange(RegIdx, End);
713 }
714 }
715 }
716}
717
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000718/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000719void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000720 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000721 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000722 MachineOperand &MO = RI.getOperand();
723 MachineInstr *MI = MO.getParent();
724 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000725 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000726 if (MI->isDebugValue()) {
727 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000728 MO.setReg(0);
729 continue;
730 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000731
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000732 // <undef> operands don't really read the register, so it doesn't matter
733 // which register we choose. When the use operand is tied to a def, we must
734 // use the same register as the def, so just do that always.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000735 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000736 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000737 Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000738
739 // Rewrite to the mapped register at Idx.
740 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000741 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000742 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
743 << Idx << ':' << RegIdx << '\t' << *MI);
744
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000745 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen81d686e2011-07-24 20:33:23 +0000746 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000747 continue;
748
749 // Skip instructions that don't read Reg.
750 if (MO.isDef()) {
751 if (!MO.getSubReg() && !MO.isEarlyClobber())
752 continue;
753 // We may wan't to extend a live range for a partial redef, or for a use
754 // tied to an early clobber.
755 Idx = Idx.getPrevSlot();
756 if (!Edit->getParent().liveAt(Idx))
757 continue;
758 } else
759 Idx = Idx.getUseIndex();
760
761 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000762 }
763}
764
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000765void SplitEditor::deleteRematVictims() {
766 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000767 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
768 LiveInterval *LI = *I;
769 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
770 LII != LIE; ++LII) {
771 // Dead defs end at the store slot.
772 if (LII->end != LII->valno->def.getNextSlot())
773 continue;
774 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
775 assert(MI && "Missing instruction for dead def");
776 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000777
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000778 if (!MI->allDefsAreDead())
779 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000780
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000781 DEBUG(dbgs() << "All defs dead: " << *MI);
782 Dead.push_back(MI);
783 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000784 }
785
786 if (Dead.empty())
787 return;
788
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000789 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000790}
791
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000792void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000793 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000794
Eric Christopher0f438112011-02-03 06:18:29 +0000795 // At this point, the live intervals in Edit contain VNInfos corresponding to
796 // the inserted copies.
797
798 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000799 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
800 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +0000801 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000802 if (ParentVNI->isUnused())
803 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000804 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +0000805 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
806 VNI->setIsPHIDef(ParentVNI->isPHIDef());
807 VNI->setCopy(ParentVNI->getCopy());
808
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000809 // Mark rematted values as complex everywhere to force liveness computation.
810 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000811 if (Edit->didRematerialize(ParentVNI))
812 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000813 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000814 }
815
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000816 // Transfer the simply mapped values, check if any are skipped.
817 bool Skipped = transferValues();
818 if (Skipped)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000819 extendPHIKillRanges();
820 else
821 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +0000822
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000823 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000824 rewriteAssigned(Skipped);
Eric Christopher0f438112011-02-03 06:18:29 +0000825
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000826 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000827 if (Skipped)
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000828 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000829
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000830 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000831 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000832 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000833
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000834 // Provide a reverse mapping from original indices to Edit ranges.
835 if (LRMap) {
836 LRMap->clear();
837 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
838 LRMap->push_back(i);
839 }
840
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000841 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000842 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000843 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000844 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000845 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000846 unsigned NumComp = ConEQ.Classify(li);
847 if (NumComp <= 1)
848 continue;
849 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
850 SmallVector<LiveInterval*, 8> dups;
851 dups.push_back(li);
Matt Beaumont-Gayae5fbee2011-04-21 19:46:23 +0000852 for (unsigned j = 1; j != NumComp; ++j)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000853 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +0000854 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000855 // The new intervals all map back to i.
856 if (LRMap)
857 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000858 }
859
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000860 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000861 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000862
863 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000864}
865
866
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000867//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000868// Single Block Splitting
869//===----------------------------------------------------------------------===//
870
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000871bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
872 bool SingleInstrs) const {
873 // Always split for multiple instructions.
874 if (!BI.isOneInstr())
875 return true;
876 // Don't split for single instructions unless explicitly requested.
877 if (!SingleInstrs)
878 return false;
879 // Splitting a live-through range always makes progress.
880 if (BI.LiveIn && BI.LiveOut)
881 return true;
882 // No point in isolating a copy. It has no register class constraints.
883 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
884 return false;
885 // Finally, don't isolate an end point that was created by earlier splits.
886 return isOriginalEndpoint(BI.FirstInstr);
887}
888
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000889void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
890 openIntv();
891 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000892 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000893 LastSplitPoint));
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000894 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
895 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000896 } else {
897 // The last use is after the last valid split point.
898 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
899 useIntv(SegStart, SegStop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000900 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000901 }
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000902}
903
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000904
905//===----------------------------------------------------------------------===//
906// Global Live Range Splitting Support
907//===----------------------------------------------------------------------===//
908
909// These methods support a method of global live range splitting that uses a
910// global algorithm to decide intervals for CFG edges. They will insert split
911// points and color intervals in basic blocks while avoiding interference.
912//
913// Note that splitSingleBlock is also useful for blocks where both CFG edges
914// are on the stack.
915
916void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
917 unsigned IntvIn, SlotIndex LeaveBefore,
918 unsigned IntvOut, SlotIndex EnterAfter){
919 SlotIndex Start, Stop;
920 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
921
922 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
923 << ") intf " << LeaveBefore << '-' << EnterAfter
924 << ", live-through " << IntvIn << " -> " << IntvOut);
925
926 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
927
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +0000928 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
929 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
930 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
931
932 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
933
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000934 if (!IntvOut) {
935 DEBUG(dbgs() << ", spill on entry.\n");
936 //
937 // <<<<<<<<< Possible LeaveBefore interference.
938 // |-----------| Live through.
939 // -____________ Spill on entry.
940 //
941 selectIntv(IntvIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000942 SlotIndex Idx = leaveIntvAtTop(*MBB);
943 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
944 (void)Idx;
945 return;
946 }
947
948 if (!IntvIn) {
949 DEBUG(dbgs() << ", reload on exit.\n");
950 //
951 // >>>>>>> Possible EnterAfter interference.
952 // |-----------| Live through.
953 // ___________-- Reload on exit.
954 //
955 selectIntv(IntvOut);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000956 SlotIndex Idx = enterIntvAtEnd(*MBB);
957 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
958 (void)Idx;
959 return;
960 }
961
962 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
963 DEBUG(dbgs() << ", straight through.\n");
964 //
965 // |-----------| Live through.
966 // ------------- Straight through, same intv, no interference.
967 //
968 selectIntv(IntvOut);
969 useIntv(Start, Stop);
970 return;
971 }
972
973 // We cannot legally insert splits after LSP.
974 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +0000975 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000976
977 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
978 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
979 DEBUG(dbgs() << ", switch avoiding interference.\n");
980 //
981 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
982 // |-----------| Live through.
983 // ------======= Switch intervals between interference.
984 //
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000985 selectIntv(IntvOut);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +0000986 SlotIndex Idx;
987 if (LeaveBefore && LeaveBefore < LSP) {
988 Idx = enterIntvBefore(LeaveBefore);
989 useIntv(Idx, Stop);
990 } else {
991 Idx = enterIntvAtEnd(*MBB);
992 }
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000993 selectIntv(IntvIn);
994 useIntv(Start, Idx);
995 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
996 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
997 return;
998 }
999
1000 DEBUG(dbgs() << ", create local intv for interference.\n");
1001 //
1002 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1003 // |-----------| Live through.
1004 // ==---------== Switch intervals before/after interference.
1005 //
1006 assert(LeaveBefore <= EnterAfter && "Missed case");
1007
1008 selectIntv(IntvOut);
1009 SlotIndex Idx = enterIntvAfter(EnterAfter);
1010 useIntv(Idx, Stop);
1011 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1012
1013 selectIntv(IntvIn);
1014 Idx = leaveIntvBefore(LeaveBefore);
1015 useIntv(Start, Idx);
1016 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1017}
1018
1019
1020void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1021 unsigned IntvIn, SlotIndex LeaveBefore) {
1022 SlotIndex Start, Stop;
1023 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1024
1025 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001026 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001027 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1028 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1029
1030 assert(IntvIn && "Must have register in");
1031 assert(BI.LiveIn && "Must be live-in");
1032 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1033
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001034 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001035 DEBUG(dbgs() << " before interference.\n");
1036 //
1037 // <<< Interference after kill.
1038 // |---o---x | Killed in block.
1039 // ========= Use IntvIn everywhere.
1040 //
1041 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001042 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001043 return;
1044 }
1045
1046 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1047
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001048 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001049 //
1050 // <<< Possible interference after last use.
1051 // |---o---o---| Live-out on stack.
1052 // =========____ Leave IntvIn after last use.
1053 //
1054 // < Interference after last use.
1055 // |---o---o--o| Live-out on stack, late last use.
1056 // ============ Copy to stack after LSP, overlap IntvIn.
1057 // \_____ Stack interval is live-out.
1058 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001059 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001060 DEBUG(dbgs() << ", spill after last use before interference.\n");
1061 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001062 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001063 useIntv(Start, Idx);
1064 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1065 } else {
1066 DEBUG(dbgs() << ", spill before last split point.\n");
1067 selectIntv(IntvIn);
Jakob Stoklund Olesenaf4e40c2011-07-16 00:13:30 +00001068 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001069 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001070 useIntv(Start, Idx);
1071 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1072 }
1073 return;
1074 }
1075
1076 // The interference is overlapping somewhere we wanted to use IntvIn. That
1077 // means we need to create a local interval that can be allocated a
1078 // different register.
1079 unsigned LocalIntv = openIntv();
Matt Beaumont-Gayf9d7fb62011-07-16 04:18:47 +00001080 (void)LocalIntv;
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001081 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1082
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001083 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001084 //
1085 // <<<<<<< Interference overlapping uses.
1086 // |---o---o---| Live-out on stack.
1087 // =====----____ Leave IntvIn before interference, then spill.
1088 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001089 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001090 SlotIndex From = enterIntvBefore(LeaveBefore);
1091 useIntv(From, To);
1092 selectIntv(IntvIn);
1093 useIntv(Start, From);
1094 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1095 return;
1096 }
1097
1098 // <<<<<<< Interference overlapping uses.
1099 // |---o---o--o| Live-out on stack, late last use.
1100 // =====------- Copy to stack before LSP, overlap LocalIntv.
1101 // \_____ Stack interval is live-out.
1102 //
1103 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001104 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001105 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1106 useIntv(From, To);
1107 selectIntv(IntvIn);
1108 useIntv(Start, From);
1109 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1110}
1111
1112void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1113 unsigned IntvOut, SlotIndex EnterAfter) {
1114 SlotIndex Start, Stop;
1115 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1116
1117 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001118 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001119 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1120 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1121
1122 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1123
1124 assert(IntvOut && "Must have register out");
1125 assert(BI.LiveOut && "Must be live-out");
1126 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1127
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001128 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001129 DEBUG(dbgs() << " after interference.\n");
1130 //
1131 // >>>> Interference before def.
1132 // | o---o---| Defined in block.
1133 // ========= Use IntvOut everywhere.
1134 //
1135 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001136 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001137 return;
1138 }
1139
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001140 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001141 DEBUG(dbgs() << ", reload after interference.\n");
1142 //
1143 // >>>> Interference before def.
1144 // |---o---o---| Live-through, stack-in.
1145 // ____========= Enter IntvOut before first use.
1146 //
1147 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001148 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001149 useIntv(Idx, Stop);
1150 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1151 return;
1152 }
1153
1154 // The interference is overlapping somewhere we wanted to use IntvOut. That
1155 // means we need to create a local interval that can be allocated a
1156 // different register.
1157 DEBUG(dbgs() << ", interference overlaps uses.\n");
1158 //
1159 // >>>>>>> Interference overlapping uses.
1160 // |---o---o---| Live-through, stack-in.
1161 // ____---====== Create local interval for interference range.
1162 //
1163 selectIntv(IntvOut);
1164 SlotIndex Idx = enterIntvAfter(EnterAfter);
1165 useIntv(Idx, Stop);
1166 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1167
1168 openIntv();
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001169 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001170 useIntv(From, Idx);
1171}