blob: 3f20605f215b7e76749f9226b9ee8147bd4ddd35 [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 Olesenc1c622e2011-09-13 16:47:53 +0000322
323 // Reset the LiveRangeCalc instances needed for this spill mode.
324 LRCalc[0].reset(&VRM.getMachineFunction());
325 if (SpillMode)
326 LRCalc[1].reset(&VRM.getMachineFunction());
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000327
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000328 // We don't need an AliasAnalysis since we will only be performing
329 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000330 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000331}
332
Eric Christopher0f438112011-02-03 06:18:29 +0000333void SplitEditor::dump() const {
334 if (RegAssign.empty()) {
335 dbgs() << " empty\n";
336 return;
337 }
338
339 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
340 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
341 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000342}
343
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000344VNInfo *SplitEditor::defValue(unsigned RegIdx,
345 const VNInfo *ParentVNI,
346 SlotIndex Idx) {
347 assert(ParentVNI && "Mapping NULL value");
348 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000349 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
350 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000351
352 // Create a new value.
353 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
354
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000355 // Use insert for lookup, so we can add missing values with a second lookup.
356 std::pair<ValueMap::iterator, bool> InsP =
357 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
358
359 // This was the first time (RegIdx, ParentVNI) was mapped.
360 // Keep it as a simple def without any liveness.
361 if (InsP.second)
362 return VNI;
363
364 // If the previous value was a simple mapping, add liveness for it now.
365 if (VNInfo *OldVNI = InsP.first->second) {
366 SlotIndex Def = OldVNI->def;
367 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
368 // No longer a simple mapping.
369 InsP.first->second = 0;
370 }
371
372 // This is a complex mapping, add liveness for VNI
373 SlotIndex Def = VNI->def;
374 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
375
376 return VNI;
377}
378
379void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
380 assert(ParentVNI && "Mapping NULL value");
381 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
382
383 // ParentVNI was either unmapped or already complex mapped. Either way.
384 if (!VNI)
385 return;
386
387 // This was previously a single mapping. Make sure the old def is represented
388 // by a trivial live range.
389 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000390 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000391 VNI = 0;
392}
393
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000394// extendRange - Extend the live range to reach Idx.
395// Potentially create phi-def values.
396void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000397 getLRCalc(RegIdx).extend(Edit->get(RegIdx), Idx.getNextSlot(),
398 LIS.getSlotIndexes(), &MDT, &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000399}
400
Eric Christopher0f438112011-02-03 06:18:29 +0000401VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000402 VNInfo *ParentVNI,
403 SlotIndex UseIdx,
404 MachineBasicBlock &MBB,
405 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000406 MachineInstr *CopyMI = 0;
407 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000408 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000409
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000410 // We may be trying to avoid interference that ends at a deleted instruction,
411 // so always begin RegIdx 0 early and all others late.
412 bool Late = RegIdx != 0;
413
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000414 // Attempt cheap-as-a-copy rematerialization.
415 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000416 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000417 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI, Late);
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000418 ++NumRemats;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000419 } else {
420 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000421 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000422 .addReg(Edit->getReg());
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000423 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
424 .getDefIndex();
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000425 ++NumCopies;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000426 }
427
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000428 // Define the value in Reg.
429 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
430 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000431 return VNI;
432}
433
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000434/// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000435unsigned SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000436 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000437 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000438 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000439
440 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000441 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000442 Edit->create(LIS, VRM);
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000443 return OpenIdx;
444}
445
446void SplitEditor::selectIntv(unsigned Idx) {
447 assert(Idx != 0 && "Cannot select the complement interval");
448 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000449 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000450 OpenIdx = Idx;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000451}
452
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000453SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000454 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000455 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000456 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000457 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000458 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000459 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000460 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000461 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000462 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000463 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000464 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000465
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000466 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
467 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000468}
469
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000470SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
471 assert(OpenIdx && "openIntv not called before enterIntvAfter");
472 DEBUG(dbgs() << " enterIntvAfter " << Idx);
473 Idx = Idx.getBoundaryIndex();
474 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
475 if (!ParentVNI) {
476 DEBUG(dbgs() << ": not live\n");
477 return Idx;
478 }
479 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
480 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
481 assert(MI && "enterIntvAfter called with invalid index");
482
483 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
484 llvm::next(MachineBasicBlock::iterator(MI)));
485 return VNI->def;
486}
487
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000488SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000489 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000490 SlotIndex End = LIS.getMBBEndIdx(&MBB);
491 SlotIndex Last = End.getPrevSlot();
492 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000493 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000494 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000495 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000496 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000497 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000498 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000499 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000500 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000501 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000502 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000503 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000504}
505
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000506/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000507void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000508 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000509}
510
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000511void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000512 assert(OpenIdx && "openIntv not called before useIntv");
513 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
514 RegAssign.insert(Start, End, OpenIdx);
515 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000516}
517
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000518SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000519 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000520 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000521
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000522 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000523 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000524 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000525 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000526 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000527 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000528 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000529 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000530
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000531 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
532 assert(MI && "No instruction at index");
533 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
534 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000535 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000536}
537
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000538SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
539 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
540 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
541
542 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenfc479332011-07-18 18:47:13 +0000543 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000544 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000545 if (!ParentVNI) {
546 DEBUG(dbgs() << ": not live\n");
547 return Idx.getNextSlot();
548 }
549 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
550
551 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
552 assert(MI && "No instruction at index");
553 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
554 return VNI->def;
555}
556
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000557SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000558 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000559 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000560 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000561
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000562 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000563 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000564 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000565 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000566 }
567
Eric Christopher0f438112011-02-03 06:18:29 +0000568 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000569 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000570 RegAssign.insert(Start, VNI->def, OpenIdx);
571 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000572 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000573}
574
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000575void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
576 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000577 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
578 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000579 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000580 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
581 "Range cannot span basic blocks");
582
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000583 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000584 if (ParentVNI)
585 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000586 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
587 RegAssign.insert(Start, End, OpenIdx);
588 DEBUG(dump());
589}
590
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000591/// transferValues - Transfer all possible values to the new live ranges.
592/// Values that were rematerialized are left alone, they need extendRange().
593bool SplitEditor::transferValues() {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000594 bool Skipped = false;
595 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000596 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
597 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000598 DEBUG(dbgs() << " blit " << *ParentI << ':');
599 VNInfo *ParentVNI = ParentI->valno;
600 // RegAssign has holes where RegIdx 0 should be used.
601 SlotIndex Start = ParentI->start;
602 AssignI.advanceTo(Start);
603 do {
604 unsigned RegIdx;
605 SlotIndex End = ParentI->end;
606 if (!AssignI.valid()) {
607 RegIdx = 0;
608 } else if (AssignI.start() <= Start) {
609 RegIdx = AssignI.value();
610 if (AssignI.stop() < End) {
611 End = AssignI.stop();
612 ++AssignI;
613 }
614 } else {
615 RegIdx = 0;
616 End = std::min(End, AssignI.start());
617 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000618
619 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000620 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000621 LiveInterval *LI = Edit->get(RegIdx);
622
623 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000624 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
625 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000626 LI->addRange(LiveRange(Start, End, VNI));
627 Start = End;
628 continue;
629 }
630
631 // Skip rematerialized values, we need to use extendRange() and
632 // extendPHIKillRanges() to completely recompute the live ranges.
633 if (Edit->didRematerialize(ParentVNI)) {
634 DEBUG(dbgs() << "(remat)");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000635 Skipped = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000636 Start = End;
637 continue;
638 }
639
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000640 LiveRangeCalc &LRC = getLRCalc(RegIdx);
641
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000642 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
643 // so the live range is accurate. Add live-in blocks in [Start;End) to the
644 // LiveInBlocks.
645 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
646 SlotIndex BlockStart, BlockEnd;
647 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
648
649 // The first block may be live-in, or it may have its own def.
650 if (Start != BlockStart) {
Jakob Stoklund Olesenee5655d2011-09-13 16:47:56 +0000651 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000652 assert(VNI && "Missing def for complex mapped value");
653 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
654 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000655 if (BlockEnd <= End)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000656 LRC.setLiveOutValue(MBB, VNI);
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000657
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000658 // Skip to the next block for live-in.
659 ++MBB;
660 BlockStart = BlockEnd;
661 }
662
663 // Handle the live-in blocks covered by [Start;End).
664 assert(Start <= BlockStart && "Expected live-in block");
665 while (BlockStart < End) {
666 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
667 BlockEnd = LIS.getMBBEndIdx(MBB);
668 if (BlockStart == ParentVNI->def) {
669 // This block has the def of a parent PHI, so it isn't live-in.
670 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
Jakob Stoklund Olesenee5655d2011-09-13 16:47:56 +0000671 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000672 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000673 if (End >= BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000674 LRC.setLiveOutValue(MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000675 } else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000676 // This block needs a live-in value. The last block covered may not
677 // be live-out.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000678 if (End < BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000679 LRC.addLiveInBlock(LI, MDT[MBB], End);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000680 else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000681 // Live-through, and we don't know the value.
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000682 LRC.addLiveInBlock(LI, MDT[MBB]);
683 LRC.setLiveOutValue(MBB, 0);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000684 }
685 }
686 BlockStart = BlockEnd;
687 ++MBB;
688 }
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000689 Start = End;
690 } while (Start != ParentI->end);
691 DEBUG(dbgs() << '\n');
692 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000693
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000694 LRCalc[0].calculateValues(LIS.getSlotIndexes(), &MDT,
695 &LIS.getVNInfoAllocator());
696 if (SpillMode)
697 LRCalc[1].calculateValues(LIS.getSlotIndexes(), &MDT,
698 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000699
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000700 return Skipped;
701}
702
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000703void SplitEditor::extendPHIKillRanges() {
704 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000705 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
706 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000707 const VNInfo *PHIVNI = *I;
708 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
709 continue;
710 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
711 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
712 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
713 PE = MBB->pred_end(); PI != PE; ++PI) {
714 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
715 // The predecessor may not have a live-out value. That is OK, like an
716 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000717 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000718 assert(RegAssign.lookup(End) == RegIdx &&
719 "Different register assignment in phi predecessor");
720 extendRange(RegIdx, End);
721 }
722 }
723 }
724}
725
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000726/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000727void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000728 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000729 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000730 MachineOperand &MO = RI.getOperand();
731 MachineInstr *MI = MO.getParent();
732 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000733 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000734 if (MI->isDebugValue()) {
735 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000736 MO.setReg(0);
737 continue;
738 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000739
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000740 // <undef> operands don't really read the register, so it doesn't matter
741 // which register we choose. When the use operand is tied to a def, we must
742 // use the same register as the def, so just do that always.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000743 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000744 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000745 Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000746
747 // Rewrite to the mapped register at Idx.
748 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000749 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000750 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
751 << Idx << ':' << RegIdx << '\t' << *MI);
752
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000753 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen81d686e2011-07-24 20:33:23 +0000754 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000755 continue;
756
757 // Skip instructions that don't read Reg.
758 if (MO.isDef()) {
759 if (!MO.getSubReg() && !MO.isEarlyClobber())
760 continue;
761 // We may wan't to extend a live range for a partial redef, or for a use
762 // tied to an early clobber.
763 Idx = Idx.getPrevSlot();
764 if (!Edit->getParent().liveAt(Idx))
765 continue;
766 } else
767 Idx = Idx.getUseIndex();
768
769 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000770 }
771}
772
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000773void SplitEditor::deleteRematVictims() {
774 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000775 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
776 LiveInterval *LI = *I;
777 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
778 LII != LIE; ++LII) {
779 // Dead defs end at the store slot.
780 if (LII->end != LII->valno->def.getNextSlot())
781 continue;
782 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
783 assert(MI && "Missing instruction for dead def");
784 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000785
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000786 if (!MI->allDefsAreDead())
787 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000788
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000789 DEBUG(dbgs() << "All defs dead: " << *MI);
790 Dead.push_back(MI);
791 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000792 }
793
794 if (Dead.empty())
795 return;
796
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000797 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000798}
799
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000800void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000801 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000802
Eric Christopher0f438112011-02-03 06:18:29 +0000803 // At this point, the live intervals in Edit contain VNInfos corresponding to
804 // the inserted copies.
805
806 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000807 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
808 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +0000809 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000810 if (ParentVNI->isUnused())
811 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000812 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +0000813 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
814 VNI->setIsPHIDef(ParentVNI->isPHIDef());
815 VNI->setCopy(ParentVNI->getCopy());
816
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000817 // Mark rematted values as complex everywhere to force liveness computation.
818 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000819 if (Edit->didRematerialize(ParentVNI))
820 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000821 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000822 }
823
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000824 // Transfer the simply mapped values, check if any are skipped.
825 bool Skipped = transferValues();
826 if (Skipped)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000827 extendPHIKillRanges();
828 else
829 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +0000830
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000831 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000832 rewriteAssigned(Skipped);
Eric Christopher0f438112011-02-03 06:18:29 +0000833
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000834 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000835 if (Skipped)
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000836 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000837
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000838 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000839 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000840 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000841
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000842 // Provide a reverse mapping from original indices to Edit ranges.
843 if (LRMap) {
844 LRMap->clear();
845 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
846 LRMap->push_back(i);
847 }
848
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000849 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000850 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000851 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000852 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000853 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000854 unsigned NumComp = ConEQ.Classify(li);
855 if (NumComp <= 1)
856 continue;
857 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
858 SmallVector<LiveInterval*, 8> dups;
859 dups.push_back(li);
Matt Beaumont-Gayae5fbee2011-04-21 19:46:23 +0000860 for (unsigned j = 1; j != NumComp; ++j)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000861 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +0000862 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000863 // The new intervals all map back to i.
864 if (LRMap)
865 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000866 }
867
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000868 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000869 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000870
871 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000872}
873
874
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000875//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000876// Single Block Splitting
877//===----------------------------------------------------------------------===//
878
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000879bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
880 bool SingleInstrs) const {
881 // Always split for multiple instructions.
882 if (!BI.isOneInstr())
883 return true;
884 // Don't split for single instructions unless explicitly requested.
885 if (!SingleInstrs)
886 return false;
887 // Splitting a live-through range always makes progress.
888 if (BI.LiveIn && BI.LiveOut)
889 return true;
890 // No point in isolating a copy. It has no register class constraints.
891 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
892 return false;
893 // Finally, don't isolate an end point that was created by earlier splits.
894 return isOriginalEndpoint(BI.FirstInstr);
895}
896
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000897void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
898 openIntv();
899 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000900 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000901 LastSplitPoint));
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000902 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
903 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000904 } else {
905 // The last use is after the last valid split point.
906 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
907 useIntv(SegStart, SegStop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000908 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000909 }
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000910}
911
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000912
913//===----------------------------------------------------------------------===//
914// Global Live Range Splitting Support
915//===----------------------------------------------------------------------===//
916
917// These methods support a method of global live range splitting that uses a
918// global algorithm to decide intervals for CFG edges. They will insert split
919// points and color intervals in basic blocks while avoiding interference.
920//
921// Note that splitSingleBlock is also useful for blocks where both CFG edges
922// are on the stack.
923
924void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
925 unsigned IntvIn, SlotIndex LeaveBefore,
926 unsigned IntvOut, SlotIndex EnterAfter){
927 SlotIndex Start, Stop;
928 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
929
930 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
931 << ") intf " << LeaveBefore << '-' << EnterAfter
932 << ", live-through " << IntvIn << " -> " << IntvOut);
933
934 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
935
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +0000936 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
937 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
938 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
939
940 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
941
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000942 if (!IntvOut) {
943 DEBUG(dbgs() << ", spill on entry.\n");
944 //
945 // <<<<<<<<< Possible LeaveBefore interference.
946 // |-----------| Live through.
947 // -____________ Spill on entry.
948 //
949 selectIntv(IntvIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000950 SlotIndex Idx = leaveIntvAtTop(*MBB);
951 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
952 (void)Idx;
953 return;
954 }
955
956 if (!IntvIn) {
957 DEBUG(dbgs() << ", reload on exit.\n");
958 //
959 // >>>>>>> Possible EnterAfter interference.
960 // |-----------| Live through.
961 // ___________-- Reload on exit.
962 //
963 selectIntv(IntvOut);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000964 SlotIndex Idx = enterIntvAtEnd(*MBB);
965 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
966 (void)Idx;
967 return;
968 }
969
970 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
971 DEBUG(dbgs() << ", straight through.\n");
972 //
973 // |-----------| Live through.
974 // ------------- Straight through, same intv, no interference.
975 //
976 selectIntv(IntvOut);
977 useIntv(Start, Stop);
978 return;
979 }
980
981 // We cannot legally insert splits after LSP.
982 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +0000983 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000984
985 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
986 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
987 DEBUG(dbgs() << ", switch avoiding interference.\n");
988 //
989 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
990 // |-----------| Live through.
991 // ------======= Switch intervals between interference.
992 //
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +0000993 selectIntv(IntvOut);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +0000994 SlotIndex Idx;
995 if (LeaveBefore && LeaveBefore < LSP) {
996 Idx = enterIntvBefore(LeaveBefore);
997 useIntv(Idx, Stop);
998 } else {
999 Idx = enterIntvAtEnd(*MBB);
1000 }
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001001 selectIntv(IntvIn);
1002 useIntv(Start, Idx);
1003 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1004 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1005 return;
1006 }
1007
1008 DEBUG(dbgs() << ", create local intv for interference.\n");
1009 //
1010 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1011 // |-----------| Live through.
1012 // ==---------== Switch intervals before/after interference.
1013 //
1014 assert(LeaveBefore <= EnterAfter && "Missed case");
1015
1016 selectIntv(IntvOut);
1017 SlotIndex Idx = enterIntvAfter(EnterAfter);
1018 useIntv(Idx, Stop);
1019 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1020
1021 selectIntv(IntvIn);
1022 Idx = leaveIntvBefore(LeaveBefore);
1023 useIntv(Start, Idx);
1024 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1025}
1026
1027
1028void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1029 unsigned IntvIn, SlotIndex LeaveBefore) {
1030 SlotIndex Start, Stop;
1031 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1032
1033 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001034 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001035 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1036 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1037
1038 assert(IntvIn && "Must have register in");
1039 assert(BI.LiveIn && "Must be live-in");
1040 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1041
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001042 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001043 DEBUG(dbgs() << " before interference.\n");
1044 //
1045 // <<< Interference after kill.
1046 // |---o---x | Killed in block.
1047 // ========= Use IntvIn everywhere.
1048 //
1049 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001050 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001051 return;
1052 }
1053
1054 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1055
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001056 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001057 //
1058 // <<< Possible interference after last use.
1059 // |---o---o---| Live-out on stack.
1060 // =========____ Leave IntvIn after last use.
1061 //
1062 // < Interference after last use.
1063 // |---o---o--o| Live-out on stack, late last use.
1064 // ============ Copy to stack after LSP, overlap IntvIn.
1065 // \_____ Stack interval is live-out.
1066 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001067 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001068 DEBUG(dbgs() << ", spill after last use before interference.\n");
1069 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001070 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001071 useIntv(Start, Idx);
1072 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1073 } else {
1074 DEBUG(dbgs() << ", spill before last split point.\n");
1075 selectIntv(IntvIn);
Jakob Stoklund Olesenaf4e40c2011-07-16 00:13:30 +00001076 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001077 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001078 useIntv(Start, Idx);
1079 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1080 }
1081 return;
1082 }
1083
1084 // The interference is overlapping somewhere we wanted to use IntvIn. That
1085 // means we need to create a local interval that can be allocated a
1086 // different register.
1087 unsigned LocalIntv = openIntv();
Matt Beaumont-Gayf9d7fb62011-07-16 04:18:47 +00001088 (void)LocalIntv;
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001089 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1090
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001091 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001092 //
1093 // <<<<<<< Interference overlapping uses.
1094 // |---o---o---| Live-out on stack.
1095 // =====----____ Leave IntvIn before interference, then spill.
1096 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001097 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001098 SlotIndex From = enterIntvBefore(LeaveBefore);
1099 useIntv(From, To);
1100 selectIntv(IntvIn);
1101 useIntv(Start, From);
1102 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1103 return;
1104 }
1105
1106 // <<<<<<< Interference overlapping uses.
1107 // |---o---o--o| Live-out on stack, late last use.
1108 // =====------- Copy to stack before LSP, overlap LocalIntv.
1109 // \_____ Stack interval is live-out.
1110 //
1111 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001112 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001113 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1114 useIntv(From, To);
1115 selectIntv(IntvIn);
1116 useIntv(Start, From);
1117 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1118}
1119
1120void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1121 unsigned IntvOut, SlotIndex EnterAfter) {
1122 SlotIndex Start, Stop;
1123 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1124
1125 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001126 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001127 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1128 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1129
1130 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1131
1132 assert(IntvOut && "Must have register out");
1133 assert(BI.LiveOut && "Must be live-out");
1134 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1135
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001136 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001137 DEBUG(dbgs() << " after interference.\n");
1138 //
1139 // >>>> Interference before def.
1140 // | o---o---| Defined in block.
1141 // ========= Use IntvOut everywhere.
1142 //
1143 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001144 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001145 return;
1146 }
1147
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001148 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001149 DEBUG(dbgs() << ", reload after interference.\n");
1150 //
1151 // >>>> Interference before def.
1152 // |---o---o---| Live-through, stack-in.
1153 // ____========= Enter IntvOut before first use.
1154 //
1155 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001156 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001157 useIntv(Idx, Stop);
1158 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1159 return;
1160 }
1161
1162 // The interference is overlapping somewhere we wanted to use IntvOut. That
1163 // means we need to create a local interval that can be allocated a
1164 // different register.
1165 DEBUG(dbgs() << ", interference overlaps uses.\n");
1166 //
1167 // >>>>>>> Interference overlapping uses.
1168 // |---o---o---| Live-through, stack-in.
1169 // ____---====== Create local interval for interference range.
1170 //
1171 selectIntv(IntvOut);
1172 SlotIndex Idx = enterIntvAfter(EnterAfter);
1173 useIntv(Idx, Stop);
1174 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1175
1176 openIntv();
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001177 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001178 useIntv(From, Idx);
1179}