blob: 9dc5c21931719791e5310a9d9a715243f7f83f9c [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 Olesenc4c63382011-09-14 16:45:39 +000023#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000027#include "llvm/Target/TargetInstrInfo.h"
28#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000029
30using namespace llvm;
31
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000032STATISTIC(NumFinished, "Number of splits finished");
33STATISTIC(NumSimple, "Number of splits that were simple");
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +000034STATISTIC(NumCopies, "Number of copies inserted for splitting");
35STATISTIC(NumRemats, "Number of rematerialized defs for splitting");
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +000036STATISTIC(NumRepairs, "Number of invalid live ranges repaired");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000037
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000038//===----------------------------------------------------------------------===//
39// Split Analysis
40//===----------------------------------------------------------------------===//
41
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000042SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000043 const LiveIntervals &lis,
44 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000045 : MF(vrm.getMachineFunction()),
46 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000047 LIS(lis),
48 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000049 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000050 CurLI(0),
51 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000052
53void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000054 UseSlots.clear();
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000055 UseBlocks.clear();
56 ThroughBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000057 CurLI = 0;
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +000058 DidRepairRange = false;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000059}
60
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000061SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
62 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
63 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
64 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
65
66 // Compute split points on the first call. The pair is independent of the
67 // current live interval.
68 if (!LSP.first.isValid()) {
69 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
70 if (FirstTerm == MBB->end())
71 LSP.first = LIS.getMBBEndIdx(MBB);
72 else
73 LSP.first = LIS.getInstructionIndex(FirstTerm);
74
75 // If there is a landing pad successor, also find the call instruction.
76 if (!LPad)
77 return LSP.first;
78 // There may not be a call instruction (?) in which case we ignore LPad.
79 LSP.second = LSP.first;
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000080 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
81 I != E;) {
82 --I;
Evan Cheng5a96b3d2011-12-07 07:15:52 +000083 if (I->isCall()) {
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000084 LSP.second = LIS.getInstructionIndex(I);
85 break;
86 }
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000087 }
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000088 }
89
90 // If CurLI is live into a landing pad successor, move the last split point
91 // back to the call that may throw.
Jakob Stoklund Olesen71d9e652011-04-05 23:43:16 +000092 if (LPad && LSP.second.isValid() && LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000093 return LSP.second;
94 else
95 return LSP.first;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000096}
97
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +000098MachineBasicBlock::iterator
99SplitAnalysis::getLastSplitPointIter(MachineBasicBlock *MBB) {
100 SlotIndex LSP = getLastSplitPoint(MBB->getNumber());
101 if (LSP == LIS.getMBBEndIdx(MBB))
102 return MBB->end();
103 return LIS.getInstructionFromIndex(LSP);
104}
105
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000106/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000107void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000108 assert(UseSlots.empty() && "Call clear first");
109
110 // First get all the defs from the interval values. This provides the correct
111 // slots for early clobbers.
112 for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(),
113 E = CurLI->vni_end(); I != E; ++I)
114 if (!(*I)->isPHIDef() && !(*I)->isUnused())
115 UseSlots.push_back((*I)->def);
116
117 // Get use slots form the use-def chain.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000118 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000119 for (MachineRegisterInfo::use_nodbg_iterator
120 I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E;
121 ++I)
122 if (!I.getOperand().isUndef())
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000123 UseSlots.push_back(LIS.getInstructionIndex(&*I).getRegSlot());
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000124
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000125 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000126
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000127 // Remove duplicates, keeping the smaller slot for each instruction.
128 // That is what we want for early clobbers.
129 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
130 SlotIndex::isSameInstr),
131 UseSlots.end());
132
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000133 // Compute per-live block info.
134 if (!calcLiveBlockInfo()) {
135 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola5b220212011-06-26 22:34:10 +0000136 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000137 DidRepairRange = true;
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +0000138 ++NumRepairs;
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000139 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
140 const_cast<LiveIntervals&>(LIS)
141 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000142 UseBlocks.clear();
143 ThroughBlocks.clear();
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000144 bool fixed = calcLiveBlockInfo();
145 (void)fixed;
146 assert(fixed && "Couldn't fix broken live interval");
147 }
148
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000149 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000150 << UseSlots.size() << " instrs in "
151 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000152 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000153}
154
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000155/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
156/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000157bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000158 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000159 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000160 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000161 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000162
163 LiveInterval::const_iterator LVI = CurLI->begin();
164 LiveInterval::const_iterator LVE = CurLI->end();
165
166 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
167 UseI = UseSlots.begin();
168 UseE = UseSlots.end();
169
170 // Loop over basic blocks where CurLI is live.
171 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
172 for (;;) {
173 BlockInfo BI;
174 BI.MBB = MFI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000175 SlotIndex Start, Stop;
176 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000177
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000178 // If the block contains no uses, the range must be live through. At one
Rafael Espindola5b220212011-06-26 22:34:10 +0000179 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000180 // mid-block.
181 if (UseI == UseE || *UseI >= Stop) {
182 ++NumThroughBlocks;
183 ThroughBlocks.set(BI.MBB->getNumber());
184 // The range shouldn't end mid-block if there are no uses. This shouldn't
185 // happen.
186 if (LVI->end < Stop)
187 return false;
188 } else {
189 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000190 BI.FirstInstr = *UseI;
191 assert(BI.FirstInstr >= Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000192 do ++UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000193 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000194 BI.LastInstr = UseI[-1];
195 assert(BI.LastInstr < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000196
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000197 // LVI is the first live segment overlapping MBB.
198 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000199
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000200 // When not live in, the first use should be a def.
201 if (!BI.LiveIn) {
202 assert(LVI->start == LVI->valno->def && "Dangling LiveRange start");
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000203 assert(LVI->start == BI.FirstInstr && "First instr should be a def");
204 BI.FirstDef = BI.FirstInstr;
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000205 }
206
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000207 // Look for gaps in the live range.
208 BI.LiveOut = true;
209 while (LVI->end < Stop) {
210 SlotIndex LastStop = LVI->end;
211 if (++LVI == LVE || LVI->start >= Stop) {
212 BI.LiveOut = false;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000213 BI.LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000214 break;
215 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000216
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000217 if (LastStop < LVI->start) {
218 // There is a gap in the live range. Create duplicate entries for the
219 // live-in snippet and the live-out snippet.
220 ++NumGapBlocks;
221
222 // Push the Live-in part.
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000223 BI.LiveOut = false;
224 UseBlocks.push_back(BI);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000225 UseBlocks.back().LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000226
227 // Set up BI for the live-out part.
228 BI.LiveIn = false;
229 BI.LiveOut = true;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000230 BI.FirstInstr = BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000231 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000232
233 // A LiveRange that starts in the middle of the block must be a def.
234 assert(LVI->start == LVI->valno->def && "Dangling LiveRange start");
235 if (!BI.FirstDef)
236 BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000237 }
238
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000239 UseBlocks.push_back(BI);
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000240
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000241 // LVI is now at LVE or LVI->end >= Stop.
242 if (LVI == LVE)
243 break;
244 }
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000245
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000246 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000247 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000248 break;
249
250 // Pick the next basic block.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000251 if (LVI->start < Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000252 ++MFI;
253 else
254 MFI = LIS.getMBBFromIndex(LVI->start);
255 }
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000256
257 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000258 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000259}
260
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000261unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
262 if (cli->empty())
263 return 0;
264 LiveInterval *li = const_cast<LiveInterval*>(cli);
265 LiveInterval::iterator LVI = li->begin();
266 LiveInterval::iterator LVE = li->end();
267 unsigned Count = 0;
268
269 // Loop over basic blocks where li is live.
270 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start);
271 SlotIndex Stop = LIS.getMBBEndIdx(MFI);
272 for (;;) {
273 ++Count;
274 LVI = li->advanceTo(LVI, Stop);
275 if (LVI == LVE)
276 return Count;
277 do {
278 ++MFI;
279 Stop = LIS.getMBBEndIdx(MFI);
280 } while (Stop <= LVI->start);
281 }
282}
283
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000284bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
285 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
286 const LiveInterval &Orig = LIS.getInterval(OrigReg);
287 assert(!Orig.empty() && "Splitting empty interval?");
288 LiveInterval::const_iterator I = Orig.find(Idx);
289
290 // Range containing Idx should begin at Idx.
291 if (I != Orig.end() && I->start <= Idx)
292 return I->start == Idx;
293
294 // Range does not contain Idx, previous must end at Idx.
295 return I != Orig.begin() && (--I)->end == Idx;
296}
297
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000298void SplitAnalysis::analyze(const LiveInterval *li) {
299 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000300 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000301 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000302}
303
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000304
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000305//===----------------------------------------------------------------------===//
306// Split Editor
307//===----------------------------------------------------------------------===//
308
309/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000310SplitEditor::SplitEditor(SplitAnalysis &sa,
311 LiveIntervals &lis,
312 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000313 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000314 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000315 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000316 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000317 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
318 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000319 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000320 OpenIdx(0),
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000321 SpillMode(SM_Partition),
Eric Christopher0f438112011-02-03 06:18:29 +0000322 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000323{}
324
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000325void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
326 Edit = &LRE;
327 SpillMode = SM;
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000328 OpenIdx = 0;
329 RegAssign.clear();
330 Values.clear();
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000331
332 // Reset the LiveRangeCalc instances needed for this spill mode.
333 LRCalc[0].reset(&VRM.getMachineFunction());
334 if (SpillMode)
335 LRCalc[1].reset(&VRM.getMachineFunction());
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000336
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000337 // We don't need an AliasAnalysis since we will only be performing
338 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000339 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000340}
341
Eric Christopher0f438112011-02-03 06:18:29 +0000342void SplitEditor::dump() const {
343 if (RegAssign.empty()) {
344 dbgs() << " empty\n";
345 return;
346 }
347
348 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
349 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
350 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000351}
352
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000353VNInfo *SplitEditor::defValue(unsigned RegIdx,
354 const VNInfo *ParentVNI,
355 SlotIndex Idx) {
356 assert(ParentVNI && "Mapping NULL value");
357 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000358 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
359 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000360
361 // Create a new value.
362 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
363
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000364 // Use insert for lookup, so we can add missing values with a second lookup.
365 std::pair<ValueMap::iterator, bool> InsP =
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000366 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id),
367 ValueForcePair(VNI, false)));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000368
369 // This was the first time (RegIdx, ParentVNI) was mapped.
370 // Keep it as a simple def without any liveness.
371 if (InsP.second)
372 return VNI;
373
374 // If the previous value was a simple mapping, add liveness for it now.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000375 if (VNInfo *OldVNI = InsP.first->second.getPointer()) {
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000376 SlotIndex Def = OldVNI->def;
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +0000377 LI->addRange(LiveRange(Def, Def.getDeadSlot(), OldVNI));
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000378 // No longer a simple mapping. Switch to a complex, non-forced mapping.
379 InsP.first->second = ValueForcePair();
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000380 }
381
382 // This is a complex mapping, add liveness for VNI
383 SlotIndex Def = VNI->def;
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +0000384 LI->addRange(LiveRange(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000385
386 return VNI;
387}
388
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000389void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI) {
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000390 assert(ParentVNI && "Mapping NULL value");
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000391 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)];
392 VNInfo *VNI = VFP.getPointer();
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000393
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000394 // ParentVNI was either unmapped or already complex mapped. Either way, just
395 // set the force bit.
396 if (!VNI) {
397 VFP.setInt(true);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000398 return;
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000399 }
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000400
401 // This was previously a single mapping. Make sure the old def is represented
402 // by a trivial live range.
403 SlotIndex Def = VNI->def;
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +0000404 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000405 // Mark as complex mapped, forced.
406 VFP = ValueForcePair(0, true);
Jakob Stoklund Olesene5a2e362011-09-13 18:05:29 +0000407}
408
Eric Christopher0f438112011-02-03 06:18:29 +0000409VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000410 VNInfo *ParentVNI,
411 SlotIndex UseIdx,
412 MachineBasicBlock &MBB,
413 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000414 MachineInstr *CopyMI = 0;
415 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000416 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000417
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000418 // We may be trying to avoid interference that ends at a deleted instruction,
419 // so always begin RegIdx 0 early and all others late.
420 bool Late = RegIdx != 0;
421
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000422 // Attempt cheap-as-a-copy rematerialization.
423 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000424 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000425 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI, Late);
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000426 ++NumRemats;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000427 } else {
428 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000429 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000430 .addReg(Edit->getReg());
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000431 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000432 .getRegSlot();
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000433 ++NumCopies;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000434 }
435
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000436 // Define the value in Reg.
437 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
438 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000439 return VNI;
440}
441
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000442/// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000443unsigned SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000444 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000445 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000446 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000447
448 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000449 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000450 Edit->create(LIS, VRM);
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000451 return OpenIdx;
452}
453
454void SplitEditor::selectIntv(unsigned Idx) {
455 assert(Idx != 0 && "Cannot select the complement interval");
456 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000457 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000458 OpenIdx = Idx;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000459}
460
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000461SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000462 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000463 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000464 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000465 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000466 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000467 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000468 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000469 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000470 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000471 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000472 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000473
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000474 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
475 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000476}
477
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000478SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
479 assert(OpenIdx && "openIntv not called before enterIntvAfter");
480 DEBUG(dbgs() << " enterIntvAfter " << Idx);
481 Idx = Idx.getBoundaryIndex();
482 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
483 if (!ParentVNI) {
484 DEBUG(dbgs() << ": not live\n");
485 return Idx;
486 }
487 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
488 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
489 assert(MI && "enterIntvAfter called with invalid index");
490
491 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
492 llvm::next(MachineBasicBlock::iterator(MI)));
493 return VNI->def;
494}
495
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000496SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000497 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000498 SlotIndex End = LIS.getMBBEndIdx(&MBB);
499 SlotIndex Last = End.getPrevSlot();
500 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000501 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000502 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000503 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000504 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000505 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000506 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000507 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +0000508 SA.getLastSplitPointIter(&MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000509 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000510 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000511 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000512}
513
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000514/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000515void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000516 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000517}
518
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000519void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000520 assert(OpenIdx && "openIntv not called before useIntv");
521 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
522 RegAssign.insert(Start, End, OpenIdx);
523 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000524}
525
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000526SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000527 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000528 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000529
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000530 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000531 SlotIndex Boundary = Idx.getBoundaryIndex();
532 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000533 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000534 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000535 return Boundary.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000536 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000537 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000538 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000539 assert(MI && "No instruction at index");
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000540
541 // In spill mode, make live ranges as short as possible by inserting the copy
542 // before MI. This is only possible if that instruction doesn't redefine the
543 // value. The inserted COPY is not a kill, and we don't need to recompute
544 // the source live range. The spiller also won't try to hoist this copy.
545 if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) &&
546 MI->readsVirtualRegister(Edit->getReg())) {
547 forceRecompute(0, ParentVNI);
548 defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
549 return Idx;
550 }
551
552 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000553 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000554 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000555}
556
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000557SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
558 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
559 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
560
561 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenfc479332011-07-18 18:47:13 +0000562 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000563 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000564 if (!ParentVNI) {
565 DEBUG(dbgs() << ": not live\n");
566 return Idx.getNextSlot();
567 }
568 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
569
570 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
571 assert(MI && "No instruction at index");
572 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
573 return VNI->def;
574}
575
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000576SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000577 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000578 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000579 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000580
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000581 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000582 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000583 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000584 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000585 }
586
Eric Christopher0f438112011-02-03 06:18:29 +0000587 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000588 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000589 RegAssign.insert(Start, VNI->def, OpenIdx);
590 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000591 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000592}
593
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000594void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
595 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000596 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesen194eb712011-11-14 01:39:36 +0000597 assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000598 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000599 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
600 "Range cannot span basic blocks");
601
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000602 // The complement interval will be extended as needed by LRCalc.extend().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000603 if (ParentVNI)
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000604 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000605 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
606 RegAssign.insert(Start, End, OpenIdx);
607 DEBUG(dump());
608}
609
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000610//===----------------------------------------------------------------------===//
611// Spill modes
612//===----------------------------------------------------------------------===//
613
614void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) {
615 LiveInterval *LI = Edit->get(0);
616 DEBUG(dbgs() << "Removing " << Copies.size() << " back-copies.\n");
617 RegAssignMap::iterator AssignI;
618 AssignI.setMap(RegAssign);
619
620 for (unsigned i = 0, e = Copies.size(); i != e; ++i) {
621 VNInfo *VNI = Copies[i];
622 SlotIndex Def = VNI->def;
623 MachineInstr *MI = LIS.getInstructionFromIndex(Def);
624 assert(MI && "No instruction for back-copy");
625
626 MachineBasicBlock *MBB = MI->getParent();
627 MachineBasicBlock::iterator MBBI(MI);
628 bool AtBegin;
629 do AtBegin = MBBI == MBB->begin();
630 while (!AtBegin && (--MBBI)->isDebugValue());
631
632 DEBUG(dbgs() << "Removing " << Def << '\t' << *MI);
633 LI->removeValNo(VNI);
634 LIS.RemoveMachineInstrFromMaps(MI);
635 MI->eraseFromParent();
636
637 // Adjust RegAssign if a register assignment is killed at VNI->def. We
638 // want to avoid calculating the live range of the source register if
639 // possible.
640 AssignI.find(VNI->def.getPrevSlot());
641 if (!AssignI.valid() || AssignI.start() >= Def)
642 continue;
643 // If MI doesn't kill the assigned register, just leave it.
644 if (AssignI.stop() != Def)
645 continue;
646 unsigned RegIdx = AssignI.value();
647 if (AtBegin || !MBBI->readsVirtualRegister(Edit->getReg())) {
648 DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n');
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000649 forceRecompute(RegIdx, Edit->getParent().getVNInfoAt(Def));
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000650 } else {
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000651 SlotIndex Kill = LIS.getInstructionIndex(MBBI).getRegSlot();
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000652 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
653 AssignI.setStop(Kill);
654 }
655 }
656}
657
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000658MachineBasicBlock*
659SplitEditor::findShallowDominator(MachineBasicBlock *MBB,
660 MachineBasicBlock *DefMBB) {
661 if (MBB == DefMBB)
662 return MBB;
663 assert(MDT.dominates(DefMBB, MBB) && "MBB must be dominated by the def.");
664
665 const MachineLoopInfo &Loops = SA.Loops;
666 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
667 MachineDomTreeNode *DefDomNode = MDT[DefMBB];
668
669 // Best candidate so far.
670 MachineBasicBlock *BestMBB = MBB;
671 unsigned BestDepth = UINT_MAX;
672
673 for (;;) {
674 const MachineLoop *Loop = Loops.getLoopFor(MBB);
675
676 // MBB isn't in a loop, it doesn't get any better. All dominators have a
677 // higher frequency by definition.
678 if (!Loop) {
679 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
680 << MBB->getNumber() << " at depth 0\n");
681 return MBB;
682 }
683
684 // We'll never be able to exit the DefLoop.
685 if (Loop == DefLoop) {
686 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
687 << MBB->getNumber() << " in the same loop\n");
688 return MBB;
689 }
690
691 // Least busy dominator seen so far.
692 unsigned Depth = Loop->getLoopDepth();
693 if (Depth < BestDepth) {
694 BestMBB = MBB;
695 BestDepth = Depth;
696 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
697 << MBB->getNumber() << " at depth " << Depth << '\n');
698 }
699
700 // Leave loop by going to the immediate dominator of the loop header.
701 // This is a bigger stride than simply walking up the dominator tree.
702 MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom();
703
704 // Too far up the dominator tree?
705 if (!IDom || !MDT.dominates(DefDomNode, IDom))
706 return BestMBB;
707
708 MBB = IDom->getBlock();
709 }
710}
711
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000712void SplitEditor::hoistCopiesForSize() {
713 // Get the complement interval, always RegIdx 0.
714 LiveInterval *LI = Edit->get(0);
715 LiveInterval *Parent = &Edit->getParent();
716
717 // Track the nearest common dominator for all back-copies for each ParentVNI,
718 // indexed by ParentVNI->id.
719 typedef std::pair<MachineBasicBlock*, SlotIndex> DomPair;
720 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
721
722 // Find the nearest common dominator for parent values with multiple
723 // back-copies. If a single back-copy dominates, put it in DomPair.second.
724 for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end();
725 VI != VE; ++VI) {
726 VNInfo *VNI = *VI;
727 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
728 assert(ParentVNI && "Parent not live at complement def");
729
730 // Don't hoist remats. The complement is probably going to disappear
731 // completely anyway.
732 if (Edit->didRematerialize(ParentVNI))
733 continue;
734
735 MachineBasicBlock *ValMBB = LIS.getMBBFromIndex(VNI->def);
736 DomPair &Dom = NearestDom[ParentVNI->id];
737
738 // Keep directly defined parent values. This is either a PHI or an
739 // instruction in the complement range. All other copies of ParentVNI
740 // should be eliminated.
741 if (VNI->def == ParentVNI->def) {
742 DEBUG(dbgs() << "Direct complement def at " << VNI->def << '\n');
743 Dom = DomPair(ValMBB, VNI->def);
744 continue;
745 }
746 // Skip the singly mapped values. There is nothing to gain from hoisting a
747 // single back-copy.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000748 if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) {
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000749 DEBUG(dbgs() << "Single complement def at " << VNI->def << '\n');
750 continue;
751 }
752
753 if (!Dom.first) {
754 // First time we see ParentVNI. VNI dominates itself.
755 Dom = DomPair(ValMBB, VNI->def);
756 } else if (Dom.first == ValMBB) {
757 // Two defs in the same block. Pick the earlier def.
758 if (!Dom.second.isValid() || VNI->def < Dom.second)
759 Dom.second = VNI->def;
760 } else {
761 // Different basic blocks. Check if one dominates.
762 MachineBasicBlock *Near =
763 MDT.findNearestCommonDominator(Dom.first, ValMBB);
764 if (Near == ValMBB)
765 // Def ValMBB dominates.
766 Dom = DomPair(ValMBB, VNI->def);
767 else if (Near != Dom.first)
768 // None dominate. Hoist to common dominator, need new def.
769 Dom = DomPair(Near, SlotIndex());
770 }
771
772 DEBUG(dbgs() << "Multi-mapped complement " << VNI->id << '@' << VNI->def
773 << " for parent " << ParentVNI->id << '@' << ParentVNI->def
774 << " hoist to BB#" << Dom.first->getNumber() << ' '
775 << Dom.second << '\n');
776 }
777
778 // Insert the hoisted copies.
779 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
780 DomPair &Dom = NearestDom[i];
781 if (!Dom.first || Dom.second.isValid())
782 continue;
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000783 // This value needs a hoisted copy inserted at the end of Dom.first.
784 VNInfo *ParentVNI = Parent->getValNumInfo(i);
785 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(ParentVNI->def);
786 // Get a less loopy dominator than Dom.first.
787 Dom.first = findShallowDominator(Dom.first, DefMBB);
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000788 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
789 Dom.second =
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000790 defFromParent(0, ParentVNI, Last, *Dom.first,
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +0000791 SA.getLastSplitPointIter(Dom.first))->def;
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000792 }
793
794 // Remove redundant back-copies that are now known to be dominated by another
795 // def with the same value.
796 SmallVector<VNInfo*, 8> BackCopies;
797 for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end();
798 VI != VE; ++VI) {
799 VNInfo *VNI = *VI;
800 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
801 const DomPair &Dom = NearestDom[ParentVNI->id];
802 if (!Dom.first || Dom.second == VNI->def)
803 continue;
804 BackCopies.push_back(VNI);
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000805 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000806 }
807 removeBackCopies(BackCopies);
808}
809
810
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000811/// transferValues - Transfer all possible values to the new live ranges.
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000812/// Values that were rematerialized are left alone, they need LRCalc.extend().
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000813bool SplitEditor::transferValues() {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000814 bool Skipped = false;
815 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000816 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
817 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000818 DEBUG(dbgs() << " blit " << *ParentI << ':');
819 VNInfo *ParentVNI = ParentI->valno;
820 // RegAssign has holes where RegIdx 0 should be used.
821 SlotIndex Start = ParentI->start;
822 AssignI.advanceTo(Start);
823 do {
824 unsigned RegIdx;
825 SlotIndex End = ParentI->end;
826 if (!AssignI.valid()) {
827 RegIdx = 0;
828 } else if (AssignI.start() <= Start) {
829 RegIdx = AssignI.value();
830 if (AssignI.stop() < End) {
831 End = AssignI.stop();
832 ++AssignI;
833 }
834 } else {
835 RegIdx = 0;
836 End = std::min(End, AssignI.start());
837 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000838
839 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000840 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000841 LiveInterval *LI = Edit->get(RegIdx);
842
843 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000844 ValueForcePair VFP = Values.lookup(std::make_pair(RegIdx, ParentVNI->id));
845 if (VNInfo *VNI = VFP.getPointer()) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000846 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000847 LI->addRange(LiveRange(Start, End, VNI));
848 Start = End;
849 continue;
850 }
851
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000852 // Skip values with forced recomputation.
853 if (VFP.getInt()) {
854 DEBUG(dbgs() << "(recalc)");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000855 Skipped = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000856 Start = End;
857 continue;
858 }
859
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000860 LiveRangeCalc &LRC = getLRCalc(RegIdx);
861
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000862 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
863 // so the live range is accurate. Add live-in blocks in [Start;End) to the
864 // LiveInBlocks.
865 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
866 SlotIndex BlockStart, BlockEnd;
867 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
868
869 // The first block may be live-in, or it may have its own def.
870 if (Start != BlockStart) {
Jakob Stoklund Olesenee5655d2011-09-13 16:47:56 +0000871 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000872 assert(VNI && "Missing def for complex mapped value");
873 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
874 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000875 if (BlockEnd <= End)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000876 LRC.setLiveOutValue(MBB, VNI);
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000877
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000878 // Skip to the next block for live-in.
879 ++MBB;
880 BlockStart = BlockEnd;
881 }
882
883 // Handle the live-in blocks covered by [Start;End).
884 assert(Start <= BlockStart && "Expected live-in block");
885 while (BlockStart < End) {
886 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
887 BlockEnd = LIS.getMBBEndIdx(MBB);
888 if (BlockStart == ParentVNI->def) {
889 // This block has the def of a parent PHI, so it isn't live-in.
890 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
Jakob Stoklund Olesenee5655d2011-09-13 16:47:56 +0000891 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000892 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000893 if (End >= BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000894 LRC.setLiveOutValue(MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000895 } else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000896 // This block needs a live-in value. The last block covered may not
897 // be live-out.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000898 if (End < BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000899 LRC.addLiveInBlock(LI, MDT[MBB], End);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000900 else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000901 // Live-through, and we don't know the value.
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000902 LRC.addLiveInBlock(LI, MDT[MBB]);
903 LRC.setLiveOutValue(MBB, 0);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000904 }
905 }
906 BlockStart = BlockEnd;
907 ++MBB;
908 }
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000909 Start = End;
910 } while (Start != ParentI->end);
911 DEBUG(dbgs() << '\n');
912 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000913
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000914 LRCalc[0].calculateValues(LIS.getSlotIndexes(), &MDT,
915 &LIS.getVNInfoAllocator());
916 if (SpillMode)
917 LRCalc[1].calculateValues(LIS.getSlotIndexes(), &MDT,
918 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000919
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000920 return Skipped;
921}
922
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000923void SplitEditor::extendPHIKillRanges() {
924 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000925 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
926 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000927 const VNInfo *PHIVNI = *I;
928 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
929 continue;
930 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000931 LiveInterval *LI = Edit->get(RegIdx);
932 LiveRangeCalc &LRC = getLRCalc(RegIdx);
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000933 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
934 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
935 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000936 SlotIndex End = LIS.getMBBEndIdx(*PI);
937 SlotIndex LastUse = End.getPrevSlot();
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000938 // The predecessor may not have a live-out value. That is OK, like an
939 // undef PHI operand.
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000940 if (Edit->getParent().liveAt(LastUse)) {
941 assert(RegAssign.lookup(LastUse) == RegIdx &&
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000942 "Different register assignment in phi predecessor");
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000943 LRC.extend(LI, End,
944 LIS.getSlotIndexes(), &MDT, &LIS.getVNInfoAllocator());
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000945 }
946 }
947 }
948}
949
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000950/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000951void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000952 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000953 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000954 MachineOperand &MO = RI.getOperand();
955 MachineInstr *MI = MO.getParent();
956 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000957 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000958 if (MI->isDebugValue()) {
959 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000960 MO.setReg(0);
961 continue;
962 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000963
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000964 // <undef> operands don't really read the register, so it doesn't matter
965 // which register we choose. When the use operand is tied to a def, we must
966 // use the same register as the def, so just do that always.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000967 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000968 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000969 Idx = Idx.getRegSlot(MO.isEarlyClobber());
Eric Christopher0f438112011-02-03 06:18:29 +0000970
971 // Rewrite to the mapped register at Idx.
972 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000973 LiveInterval *LI = Edit->get(RegIdx);
974 MO.setReg(LI->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000975 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
976 << Idx << ':' << RegIdx << '\t' << *MI);
977
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000978 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen81d686e2011-07-24 20:33:23 +0000979 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000980 continue;
981
982 // Skip instructions that don't read Reg.
983 if (MO.isDef()) {
984 if (!MO.getSubReg() && !MO.isEarlyClobber())
985 continue;
986 // We may wan't to extend a live range for a partial redef, or for a use
987 // tied to an early clobber.
988 Idx = Idx.getPrevSlot();
989 if (!Edit->getParent().liveAt(Idx))
990 continue;
991 } else
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000992 Idx = Idx.getRegSlot(true);
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000993
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000994 getLRCalc(RegIdx).extend(LI, Idx.getNextSlot(), LIS.getSlotIndexes(),
995 &MDT, &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000996 }
997}
998
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000999void SplitEditor::deleteRematVictims() {
1000 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001001 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
1002 LiveInterval *LI = *I;
1003 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
1004 LII != LIE; ++LII) {
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +00001005 // Dead defs end at the dead slot.
1006 if (LII->end != LII->valno->def.getDeadSlot())
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001007 continue;
1008 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
1009 assert(MI && "Missing instruction for dead def");
1010 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001011
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001012 if (!MI->allDefsAreDead())
1013 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001014
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001015 DEBUG(dbgs() << "All defs dead: " << *MI);
1016 Dead.push_back(MI);
1017 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001018 }
1019
1020 if (Dead.empty())
1021 return;
1022
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +00001023 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001024}
1025
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001026void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001027 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +00001028
Eric Christopher0f438112011-02-03 06:18:29 +00001029 // At this point, the live intervals in Edit contain VNInfos corresponding to
1030 // the inserted copies.
1031
1032 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001033 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
1034 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +00001035 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +00001036 if (ParentVNI->isUnused())
1037 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +00001038 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +00001039 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
1040 VNI->setIsPHIDef(ParentVNI->isPHIDef());
1041 VNI->setCopy(ParentVNI->getCopy());
1042
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +00001043 // Force rematted values to be recomputed everywhere.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001044 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001045 if (Edit->didRematerialize(ParentVNI))
1046 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +00001047 forceRecompute(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +00001048 }
1049
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +00001050 // Hoist back-copies to the complement interval when in spill mode.
1051 switch (SpillMode) {
1052 case SM_Partition:
1053 // Leave all back-copies as is.
1054 break;
1055 case SM_Size:
1056 hoistCopiesForSize();
1057 break;
1058 case SM_Speed:
1059 llvm_unreachable("Spill mode 'speed' not implemented yet");
1060 break;
1061 }
1062
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001063 // Transfer the simply mapped values, check if any are skipped.
1064 bool Skipped = transferValues();
1065 if (Skipped)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001066 extendPHIKillRanges();
1067 else
1068 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +00001069
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001070 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001071 rewriteAssigned(Skipped);
Eric Christopher0f438112011-02-03 06:18:29 +00001072
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001073 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001074 if (Skipped)
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001075 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001076
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +00001077 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001078 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001079 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001080
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001081 // Provide a reverse mapping from original indices to Edit ranges.
1082 if (LRMap) {
1083 LRMap->clear();
1084 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1085 LRMap->push_back(i);
1086 }
1087
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001088 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001089 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001090 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001091 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001092 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001093 unsigned NumComp = ConEQ.Classify(li);
1094 if (NumComp <= 1)
1095 continue;
1096 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
1097 SmallVector<LiveInterval*, 8> dups;
1098 dups.push_back(li);
Matt Beaumont-Gayae5fbee2011-04-21 19:46:23 +00001099 for (unsigned j = 1; j != NumComp; ++j)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +00001100 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +00001101 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001102 // The new intervals all map back to i.
1103 if (LRMap)
1104 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001105 }
1106
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +00001107 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +00001108 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001109
1110 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001111}
1112
1113
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001114//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001115// Single Block Splitting
1116//===----------------------------------------------------------------------===//
1117
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +00001118bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
1119 bool SingleInstrs) const {
1120 // Always split for multiple instructions.
1121 if (!BI.isOneInstr())
1122 return true;
1123 // Don't split for single instructions unless explicitly requested.
1124 if (!SingleInstrs)
1125 return false;
1126 // Splitting a live-through range always makes progress.
1127 if (BI.LiveIn && BI.LiveOut)
1128 return true;
1129 // No point in isolating a copy. It has no register class constraints.
1130 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
1131 return false;
1132 // Finally, don't isolate an end point that was created by earlier splits.
1133 return isOriginalEndpoint(BI.FirstInstr);
1134}
1135
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001136void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1137 openIntv();
1138 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001139 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001140 LastSplitPoint));
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001141 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
1142 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001143 } else {
1144 // The last use is after the last valid split point.
1145 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1146 useIntv(SegStart, SegStop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001147 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001148 }
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001149}
1150
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001151
1152//===----------------------------------------------------------------------===//
1153// Global Live Range Splitting Support
1154//===----------------------------------------------------------------------===//
1155
1156// These methods support a method of global live range splitting that uses a
1157// global algorithm to decide intervals for CFG edges. They will insert split
1158// points and color intervals in basic blocks while avoiding interference.
1159//
1160// Note that splitSingleBlock is also useful for blocks where both CFG edges
1161// are on the stack.
1162
1163void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
1164 unsigned IntvIn, SlotIndex LeaveBefore,
1165 unsigned IntvOut, SlotIndex EnterAfter){
1166 SlotIndex Start, Stop;
1167 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
1168
1169 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
1170 << ") intf " << LeaveBefore << '-' << EnterAfter
1171 << ", live-through " << IntvIn << " -> " << IntvOut);
1172
1173 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1174
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001175 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
1176 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
1177 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
1178
1179 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
1180
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001181 if (!IntvOut) {
1182 DEBUG(dbgs() << ", spill on entry.\n");
1183 //
1184 // <<<<<<<<< Possible LeaveBefore interference.
1185 // |-----------| Live through.
1186 // -____________ Spill on entry.
1187 //
1188 selectIntv(IntvIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001189 SlotIndex Idx = leaveIntvAtTop(*MBB);
1190 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1191 (void)Idx;
1192 return;
1193 }
1194
1195 if (!IntvIn) {
1196 DEBUG(dbgs() << ", reload on exit.\n");
1197 //
1198 // >>>>>>> Possible EnterAfter interference.
1199 // |-----------| Live through.
1200 // ___________-- Reload on exit.
1201 //
1202 selectIntv(IntvOut);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001203 SlotIndex Idx = enterIntvAtEnd(*MBB);
1204 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1205 (void)Idx;
1206 return;
1207 }
1208
1209 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1210 DEBUG(dbgs() << ", straight through.\n");
1211 //
1212 // |-----------| Live through.
1213 // ------------- Straight through, same intv, no interference.
1214 //
1215 selectIntv(IntvOut);
1216 useIntv(Start, Stop);
1217 return;
1218 }
1219
1220 // We cannot legally insert splits after LSP.
1221 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001222 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001223
1224 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1225 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
1226 DEBUG(dbgs() << ", switch avoiding interference.\n");
1227 //
1228 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
1229 // |-----------| Live through.
1230 // ------======= Switch intervals between interference.
1231 //
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001232 selectIntv(IntvOut);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001233 SlotIndex Idx;
1234 if (LeaveBefore && LeaveBefore < LSP) {
1235 Idx = enterIntvBefore(LeaveBefore);
1236 useIntv(Idx, Stop);
1237 } else {
1238 Idx = enterIntvAtEnd(*MBB);
1239 }
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001240 selectIntv(IntvIn);
1241 useIntv(Start, Idx);
1242 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1243 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1244 return;
1245 }
1246
1247 DEBUG(dbgs() << ", create local intv for interference.\n");
1248 //
1249 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1250 // |-----------| Live through.
1251 // ==---------== Switch intervals before/after interference.
1252 //
1253 assert(LeaveBefore <= EnterAfter && "Missed case");
1254
1255 selectIntv(IntvOut);
1256 SlotIndex Idx = enterIntvAfter(EnterAfter);
1257 useIntv(Idx, Stop);
1258 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1259
1260 selectIntv(IntvIn);
1261 Idx = leaveIntvBefore(LeaveBefore);
1262 useIntv(Start, Idx);
1263 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1264}
1265
1266
1267void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1268 unsigned IntvIn, SlotIndex LeaveBefore) {
1269 SlotIndex Start, Stop;
1270 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1271
1272 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001273 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001274 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1275 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1276
1277 assert(IntvIn && "Must have register in");
1278 assert(BI.LiveIn && "Must be live-in");
1279 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1280
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001281 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001282 DEBUG(dbgs() << " before interference.\n");
1283 //
1284 // <<< Interference after kill.
1285 // |---o---x | Killed in block.
1286 // ========= Use IntvIn everywhere.
1287 //
1288 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001289 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001290 return;
1291 }
1292
1293 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1294
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001295 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001296 //
1297 // <<< Possible interference after last use.
1298 // |---o---o---| Live-out on stack.
1299 // =========____ Leave IntvIn after last use.
1300 //
1301 // < Interference after last use.
1302 // |---o---o--o| Live-out on stack, late last use.
1303 // ============ Copy to stack after LSP, overlap IntvIn.
1304 // \_____ Stack interval is live-out.
1305 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001306 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001307 DEBUG(dbgs() << ", spill after last use before interference.\n");
1308 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001309 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001310 useIntv(Start, Idx);
1311 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1312 } else {
1313 DEBUG(dbgs() << ", spill before last split point.\n");
1314 selectIntv(IntvIn);
Jakob Stoklund Olesenaf4e40c2011-07-16 00:13:30 +00001315 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001316 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001317 useIntv(Start, Idx);
1318 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1319 }
1320 return;
1321 }
1322
1323 // The interference is overlapping somewhere we wanted to use IntvIn. That
1324 // means we need to create a local interval that can be allocated a
1325 // different register.
1326 unsigned LocalIntv = openIntv();
Matt Beaumont-Gayf9d7fb62011-07-16 04:18:47 +00001327 (void)LocalIntv;
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001328 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1329
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001330 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001331 //
1332 // <<<<<<< Interference overlapping uses.
1333 // |---o---o---| Live-out on stack.
1334 // =====----____ Leave IntvIn before interference, then spill.
1335 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001336 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001337 SlotIndex From = enterIntvBefore(LeaveBefore);
1338 useIntv(From, To);
1339 selectIntv(IntvIn);
1340 useIntv(Start, From);
1341 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1342 return;
1343 }
1344
1345 // <<<<<<< Interference overlapping uses.
1346 // |---o---o--o| Live-out on stack, late last use.
1347 // =====------- Copy to stack before LSP, overlap LocalIntv.
1348 // \_____ Stack interval is live-out.
1349 //
1350 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001351 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001352 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1353 useIntv(From, To);
1354 selectIntv(IntvIn);
1355 useIntv(Start, From);
1356 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1357}
1358
1359void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1360 unsigned IntvOut, SlotIndex EnterAfter) {
1361 SlotIndex Start, Stop;
1362 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1363
1364 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001365 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001366 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1367 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1368
1369 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1370
1371 assert(IntvOut && "Must have register out");
1372 assert(BI.LiveOut && "Must be live-out");
1373 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1374
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001375 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001376 DEBUG(dbgs() << " after interference.\n");
1377 //
1378 // >>>> Interference before def.
1379 // | o---o---| Defined in block.
1380 // ========= Use IntvOut everywhere.
1381 //
1382 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001383 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001384 return;
1385 }
1386
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001387 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001388 DEBUG(dbgs() << ", reload after interference.\n");
1389 //
1390 // >>>> Interference before def.
1391 // |---o---o---| Live-through, stack-in.
1392 // ____========= Enter IntvOut before first use.
1393 //
1394 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001395 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001396 useIntv(Idx, Stop);
1397 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1398 return;
1399 }
1400
1401 // The interference is overlapping somewhere we wanted to use IntvOut. That
1402 // means we need to create a local interval that can be allocated a
1403 // different register.
1404 DEBUG(dbgs() << ", interference overlaps uses.\n");
1405 //
1406 // >>>>>>> Interference overlapping uses.
1407 // |---o---o---| Live-through, stack-in.
1408 // ____---====== Create local interval for interference range.
1409 //
1410 selectIntv(IntvOut);
1411 SlotIndex Idx = enterIntvAfter(EnterAfter);
1412 useIntv(Idx, Stop);
1413 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1414
1415 openIntv();
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001416 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001417 useIntv(From, Idx);
1418}