blob: 446475e6d1dd4a78573ae4bcb28bb9189914e7a8 [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
15#define DEBUG_TYPE "splitter"
16#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 Olesen08e93b12010-08-10 17:07:22 +000019#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000020#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000022#include "llvm/CodeGen/MachineLoopInfo.h"
23#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000024#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000025#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 Olesen6a0dc072010-07-20 21:46:58 +000032static cl::opt<bool>
33AllowSplit("spiller-splits-edges",
34 cl::desc("Allow critical edge splitting during spilling"));
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000035
36//===----------------------------------------------------------------------===//
37// Split Analysis
38//===----------------------------------------------------------------------===//
39
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000040SplitAnalysis::SplitAnalysis(const MachineFunction &mf,
41 const LiveIntervals &lis,
42 const MachineLoopInfo &mli)
43 : mf_(mf),
44 lis_(lis),
45 loops_(mli),
46 tii_(*mf.getTarget().getInstrInfo()),
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000047 curli_(0) {}
48
49void SplitAnalysis::clear() {
50 usingInstrs_.clear();
51 usingBlocks_.clear();
52 usingLoops_.clear();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000053 curli_ = 0;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000054}
55
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000056bool SplitAnalysis::canAnalyzeBranch(const MachineBasicBlock *MBB) {
57 MachineBasicBlock *T, *F;
58 SmallVector<MachineOperand, 4> Cond;
59 return !tii_.AnalyzeBranch(const_cast<MachineBasicBlock&>(*MBB), T, F, Cond);
60}
61
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000062/// analyzeUses - Count instructions, basic blocks, and loops using curli.
63void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000064 const MachineRegisterInfo &MRI = mf_.getRegInfo();
65 for (MachineRegisterInfo::reg_iterator I = MRI.reg_begin(curli_->reg);
66 MachineInstr *MI = I.skipInstruction();) {
67 if (MI->isDebugValue() || !usingInstrs_.insert(MI))
68 continue;
69 MachineBasicBlock *MBB = MI->getParent();
70 if (usingBlocks_[MBB]++)
71 continue;
Jakob Stoklund Olesen9b90d7e2010-10-05 23:10:12 +000072 for (MachineLoop *Loop = loops_.getLoopFor(MBB); Loop;
73 Loop = Loop->getParentLoop())
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +000074 usingLoops_[Loop]++;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000075 }
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000076 DEBUG(dbgs() << " counted "
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000077 << usingInstrs_.size() << " instrs, "
78 << usingBlocks_.size() << " blocks, "
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000079 << usingLoops_.size() << " loops.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000080}
81
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +000082void SplitAnalysis::print(const BlockPtrSet &B, raw_ostream &OS) const {
83 for (BlockPtrSet::const_iterator I = B.begin(), E = B.end(); I != E; ++I) {
84 unsigned count = usingBlocks_.lookup(*I);
85 OS << " BB#" << (*I)->getNumber();
86 if (count)
87 OS << '(' << count << ')';
88 }
89}
90
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000091// Get three sets of basic blocks surrounding a loop: Blocks inside the loop,
92// predecessor blocks, and exit blocks.
93void SplitAnalysis::getLoopBlocks(const MachineLoop *Loop, LoopBlocks &Blocks) {
94 Blocks.clear();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000095
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000096 // Blocks in the loop.
97 Blocks.Loop.insert(Loop->block_begin(), Loop->block_end());
98
99 // Predecessor blocks.
100 const MachineBasicBlock *Header = Loop->getHeader();
101 for (MachineBasicBlock::const_pred_iterator I = Header->pred_begin(),
102 E = Header->pred_end(); I != E; ++I)
103 if (!Blocks.Loop.count(*I))
104 Blocks.Preds.insert(*I);
105
106 // Exit blocks.
107 for (MachineLoop::block_iterator I = Loop->block_begin(),
108 E = Loop->block_end(); I != E; ++I) {
109 const MachineBasicBlock *MBB = *I;
110 for (MachineBasicBlock::const_succ_iterator SI = MBB->succ_begin(),
111 SE = MBB->succ_end(); SI != SE; ++SI)
112 if (!Blocks.Loop.count(*SI))
113 Blocks.Exits.insert(*SI);
114 }
115}
116
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000117void SplitAnalysis::print(const LoopBlocks &B, raw_ostream &OS) const {
118 OS << "Loop:";
119 print(B.Loop, OS);
120 OS << ", preds:";
121 print(B.Preds, OS);
122 OS << ", exits:";
123 print(B.Exits, OS);
124}
125
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000126/// analyzeLoopPeripheralUse - Return an enum describing how curli_ is used in
127/// and around the Loop.
128SplitAnalysis::LoopPeripheralUse SplitAnalysis::
129analyzeLoopPeripheralUse(const SplitAnalysis::LoopBlocks &Blocks) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000130 LoopPeripheralUse use = ContainedInLoop;
131 for (BlockCountMap::iterator I = usingBlocks_.begin(), E = usingBlocks_.end();
132 I != E; ++I) {
133 const MachineBasicBlock *MBB = I->first;
134 // Is this a peripheral block?
135 if (use < MultiPeripheral &&
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000136 (Blocks.Preds.count(MBB) || Blocks.Exits.count(MBB))) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000137 if (I->second > 1) use = MultiPeripheral;
138 else use = SinglePeripheral;
139 continue;
140 }
141 // Is it a loop block?
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000142 if (Blocks.Loop.count(MBB))
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000143 continue;
144 // It must be an unrelated block.
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000145 DEBUG(dbgs() << ", outside: BB#" << MBB->getNumber());
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000146 return OutsideLoop;
147 }
148 return use;
149}
150
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000151/// getCriticalExits - It may be necessary to partially break critical edges
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000152/// leaving the loop if an exit block has predecessors from outside the loop
153/// periphery.
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000154void SplitAnalysis::getCriticalExits(const SplitAnalysis::LoopBlocks &Blocks,
155 BlockPtrSet &CriticalExits) {
156 CriticalExits.clear();
157
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000158 // A critical exit block has curli line-in, and has a predecessor that is not
159 // in the loop nor a loop predecessor. For such an exit block, the edges
160 // carrying the new variable must be moved to a new pre-exit block.
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000161 for (BlockPtrSet::iterator I = Blocks.Exits.begin(), E = Blocks.Exits.end();
162 I != E; ++I) {
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000163 const MachineBasicBlock *Exit = *I;
164 // A single-predecessor exit block is definitely not a critical edge.
165 if (Exit->pred_size() == 1)
166 continue;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000167 // This exit may not have curli live in at all. No need to split.
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000168 if (!lis_.isLiveInToMBB(*curli_, Exit))
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000169 continue;
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000170 // Does this exit block have a predecessor that is not a loop block or loop
171 // predecessor?
172 for (MachineBasicBlock::const_pred_iterator PI = Exit->pred_begin(),
173 PE = Exit->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000174 const MachineBasicBlock *Pred = *PI;
175 if (Blocks.Loop.count(Pred) || Blocks.Preds.count(Pred))
176 continue;
177 // This is a critical exit block, and we need to split the exit edge.
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000178 CriticalExits.insert(Exit);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000179 break;
180 }
181 }
182}
183
184/// canSplitCriticalExits - Return true if it is possible to insert new exit
185/// blocks before the blocks in CriticalExits.
186bool
187SplitAnalysis::canSplitCriticalExits(const SplitAnalysis::LoopBlocks &Blocks,
188 BlockPtrSet &CriticalExits) {
189 // If we don't allow critical edge splitting, require no critical exits.
190 if (!AllowSplit)
191 return CriticalExits.empty();
192
193 for (BlockPtrSet::iterator I = CriticalExits.begin(), E = CriticalExits.end();
194 I != E; ++I) {
195 const MachineBasicBlock *Succ = *I;
196 // We want to insert a new pre-exit MBB before Succ, and change all the
197 // in-loop blocks to branch to the pre-exit instead of Succ.
198 // Check that all the in-loop predecessors can be changed.
199 for (MachineBasicBlock::const_pred_iterator PI = Succ->pred_begin(),
200 PE = Succ->pred_end(); PI != PE; ++PI) {
201 const MachineBasicBlock *Pred = *PI;
202 // The external predecessors won't be altered.
203 if (!Blocks.Loop.count(Pred) && !Blocks.Preds.count(Pred))
204 continue;
205 if (!canAnalyzeBranch(Pred))
206 return false;
207 }
208
209 // If Succ's layout predecessor falls through, that too must be analyzable.
210 // We need to insert the pre-exit block in the gap.
211 MachineFunction::const_iterator MFI = Succ;
212 if (MFI == mf_.begin())
213 continue;
214 if (!canAnalyzeBranch(--MFI))
215 return false;
216 }
217 // No problems found.
218 return true;
219}
220
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000221void SplitAnalysis::analyze(const LiveInterval *li) {
222 clear();
223 curli_ = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000224 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000225}
226
227const MachineLoop *SplitAnalysis::getBestSplitLoop() {
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000228 assert(curli_ && "Call analyze() before getBestSplitLoop");
229 if (usingLoops_.empty())
230 return 0;
231
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000232 LoopPtrSet Loops;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000233 LoopBlocks Blocks;
234 BlockPtrSet CriticalExits;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000235
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000236 // We split around loops where curli is used outside the periphery.
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000237 for (LoopCountMap::const_iterator I = usingLoops_.begin(),
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000238 E = usingLoops_.end(); I != E; ++I) {
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000239 const MachineLoop *Loop = I->first;
240 getLoopBlocks(Loop, Blocks);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000241 DEBUG({ dbgs() << " "; print(Blocks, dbgs()); });
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000242
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000243 switch(analyzeLoopPeripheralUse(Blocks)) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000244 case OutsideLoop:
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000245 break;
246 case MultiPeripheral:
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000247 // FIXME: We could split a live range with multiple uses in a peripheral
248 // block and still make progress. However, it is possible that splitting
249 // another live range will insert copies into a peripheral block, and
250 // there is a small chance we can enter an infinity loop, inserting copies
251 // forever.
252 // For safety, stick to splitting live ranges with uses outside the
253 // periphery.
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000254 DEBUG(dbgs() << ": multiple peripheral uses\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000255 break;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000256 case ContainedInLoop:
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000257 DEBUG(dbgs() << ": fully contained\n");
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000258 continue;
259 case SinglePeripheral:
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000260 DEBUG(dbgs() << ": single peripheral use\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000261 continue;
262 }
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000263 // Will it be possible to split around this loop?
264 getCriticalExits(Blocks, CriticalExits);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000265 DEBUG(dbgs() << ": " << CriticalExits.size() << " critical exits\n");
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000266 if (!canSplitCriticalExits(Blocks, CriticalExits))
267 continue;
268 // This is a possible split.
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000269 Loops.insert(Loop);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000270 }
271
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000272 DEBUG(dbgs() << " getBestSplitLoop found " << Loops.size()
273 << " candidate loops.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000274
275 if (Loops.empty())
276 return 0;
277
278 // Pick the earliest loop.
279 // FIXME: Are there other heuristics to consider?
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000280 const MachineLoop *Best = 0;
281 SlotIndex BestIdx;
282 for (LoopPtrSet::const_iterator I = Loops.begin(), E = Loops.end(); I != E;
283 ++I) {
284 SlotIndex Idx = lis_.getMBBStartIdx((*I)->getHeader());
285 if (!Best || Idx < BestIdx)
286 Best = *I, BestIdx = Idx;
287 }
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000288 DEBUG(dbgs() << " getBestSplitLoop found " << *Best);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000289 return Best;
290}
291
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000292//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000293// LiveIntervalMap
294//===----------------------------------------------------------------------===//
295
Jakob Stoklund Olesenb3e96812010-09-13 21:29:45 +0000296// Work around the fact that the std::pair constructors are broken for pointer
297// pairs in some implementations. makeVV(x, 0) works.
298static inline std::pair<const VNInfo*, VNInfo*>
299makeVV(const VNInfo *a, VNInfo *b) {
300 return std::make_pair(a, b);
301}
302
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000303void LiveIntervalMap::reset(LiveInterval *li) {
304 li_ = li;
305 valueMap_.clear();
306}
307
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000308bool LiveIntervalMap::isComplexMapped(const VNInfo *ParentVNI) const {
309 ValueMap::const_iterator i = valueMap_.find(ParentVNI);
310 return i != valueMap_.end() && i->second == 0;
311}
312
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000313// defValue - Introduce a li_ def for ParentVNI that could be later than
314// ParentVNI->def.
315VNInfo *LiveIntervalMap::defValue(const VNInfo *ParentVNI, SlotIndex Idx) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000316 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000317 assert(ParentVNI && "Mapping NULL value");
318 assert(Idx.isValid() && "Invalid SlotIndex");
319 assert(parentli_.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
320
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000321 // Create a new value.
Lang Hames6e2968c2010-09-25 12:04:16 +0000322 VNInfo *VNI = li_->getNextValue(Idx, 0, lis_.getVNInfoAllocator());
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000323
Jakob Stoklund Olesen79c02622010-10-26 22:36:02 +0000324 // Preserve the PHIDef bit.
325 if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
326 VNI->setIsPHIDef(true);
327
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000328 // Use insert for lookup, so we can add missing values with a second lookup.
329 std::pair<ValueMap::iterator,bool> InsP =
330 valueMap_.insert(makeVV(ParentVNI, Idx == ParentVNI->def ? VNI : 0));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000331
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000332 // This is now a complex def. Mark with a NULL in valueMap.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000333 if (!InsP.second)
334 InsP.first->second = 0;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000335
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000336 return VNI;
337}
338
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000339
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000340// mapValue - Find the mapped value for ParentVNI at Idx.
341// Potentially create phi-def values.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000342VNInfo *LiveIntervalMap::mapValue(const VNInfo *ParentVNI, SlotIndex Idx,
343 bool *simple) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000344 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000345 assert(ParentVNI && "Mapping NULL value");
346 assert(Idx.isValid() && "Invalid SlotIndex");
347 assert(parentli_.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
348
349 // Use insert for lookup, so we can add missing values with a second lookup.
350 std::pair<ValueMap::iterator,bool> InsP =
Jakob Stoklund Olesenb3e96812010-09-13 21:29:45 +0000351 valueMap_.insert(makeVV(ParentVNI, 0));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000352
353 // This was an unknown value. Create a simple mapping.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000354 if (InsP.second) {
355 if (simple) *simple = true;
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000356 return InsP.first->second = li_->createValueCopy(ParentVNI,
357 lis_.getVNInfoAllocator());
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000358 }
359
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000360 // This was a simple mapped value.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000361 if (InsP.first->second) {
362 if (simple) *simple = true;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000363 return InsP.first->second;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000364 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000365
366 // This is a complex mapped value. There may be multiple defs, and we may need
367 // to create phi-defs.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000368 if (simple) *simple = false;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000369 MachineBasicBlock *IdxMBB = lis_.getMBBFromIndex(Idx);
370 assert(IdxMBB && "No MBB at Idx");
371
372 // Is there a def in the same MBB we can extend?
373 if (VNInfo *VNI = extendTo(IdxMBB, Idx))
374 return VNI;
375
376 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
377 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
378 // Perform a depth-first search for predecessor blocks where we know the
379 // dominating VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
380
381 // Track MBBs where we have created or learned the dominating value.
382 // This may change during the DFS as we create new phi-defs.
383 typedef DenseMap<MachineBasicBlock*, VNInfo*> MBBValueMap;
384 MBBValueMap DomValue;
Jakob Stoklund Olesen984a7fc2010-10-05 20:36:28 +0000385 typedef SplitAnalysis::BlockPtrSet BlockPtrSet;
386 BlockPtrSet Visited;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000387
Jakob Stoklund Olesen984a7fc2010-10-05 20:36:28 +0000388 // Iterate over IdxMBB predecessors in a depth-first order.
389 // Skip begin() since that is always IdxMBB.
390 for (idf_ext_iterator<MachineBasicBlock*, BlockPtrSet>
391 IDFI = llvm::next(idf_ext_begin(IdxMBB, Visited)),
392 IDFE = idf_ext_end(IdxMBB, Visited); IDFI != IDFE;) {
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000393 MachineBasicBlock *MBB = *IDFI;
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000394 SlotIndex End = lis_.getMBBEndIdx(MBB).getPrevSlot();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000395
396 // We are operating on the restricted CFG where ParentVNI is live.
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000397 if (parentli_.getVNInfoAt(End) != ParentVNI) {
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000398 IDFI.skipChildren();
399 continue;
400 }
401
402 // Do we have a dominating value in this block?
403 VNInfo *VNI = extendTo(MBB, End);
404 if (!VNI) {
405 ++IDFI;
406 continue;
407 }
408
Jakob Stoklund Olesen984a7fc2010-10-05 20:36:28 +0000409 // Yes, VNI dominates MBB. Make sure we visit MBB again from other paths.
410 Visited.erase(MBB);
411
412 // Track the path back to IdxMBB, creating phi-defs
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000413 // as needed along the way.
414 for (unsigned PI = IDFI.getPathLength()-1; PI != 0; --PI) {
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000415 // Start from MBB's immediate successor. End at IdxMBB.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000416 MachineBasicBlock *Succ = IDFI.getPath(PI-1);
417 std::pair<MBBValueMap::iterator, bool> InsP =
418 DomValue.insert(MBBValueMap::value_type(Succ, VNI));
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000419
420 // This is the first time we backtrack to Succ.
421 if (InsP.second)
422 continue;
423
424 // We reached Succ again with the same VNI. Nothing is going to change.
425 VNInfo *OVNI = InsP.first->second;
426 if (OVNI == VNI)
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000427 break;
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000428
429 // Succ already has a phi-def. No need to continue.
430 SlotIndex Start = lis_.getMBBStartIdx(Succ);
431 if (OVNI->def == Start)
432 break;
433
434 // We have a collision between the old and new VNI at Succ. That means
435 // neither dominates and we need a new phi-def.
Lang Hames6e2968c2010-09-25 12:04:16 +0000436 VNI = li_->getNextValue(Start, 0, lis_.getVNInfoAllocator());
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000437 VNI->setIsPHIDef(true);
438 InsP.first->second = VNI;
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000439
440 // Replace OVNI with VNI in the remaining path.
441 for (; PI > 1 ; --PI) {
442 MBBValueMap::iterator I = DomValue.find(IDFI.getPath(PI-2));
443 if (I == DomValue.end() || I->second != OVNI)
444 break;
445 I->second = VNI;
446 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000447 }
448
449 // No need to search the children, we found a dominating value.
Jakob Stoklund Olesencf16bea2010-08-18 20:06:05 +0000450 IDFI.skipChildren();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000451 }
452
453 // The search should at least find a dominating value for IdxMBB.
454 assert(!DomValue.empty() && "Couldn't find a reaching definition");
455
456 // Since we went through the trouble of a full DFS visiting all reaching defs,
457 // the values in DomValue are now accurate. No more phi-defs are needed for
458 // these blocks, so we can color the live ranges.
459 // This makes the next mapValue call much faster.
460 VNInfo *IdxVNI = 0;
461 for (MBBValueMap::iterator I = DomValue.begin(), E = DomValue.end(); I != E;
462 ++I) {
463 MachineBasicBlock *MBB = I->first;
464 VNInfo *VNI = I->second;
465 SlotIndex Start = lis_.getMBBStartIdx(MBB);
466 if (MBB == IdxMBB) {
467 // Don't add full liveness to IdxMBB, stop at Idx.
468 if (Start != Idx)
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000469 li_->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000470 // The caller had better add some liveness to IdxVNI, or it leaks.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000471 IdxVNI = VNI;
472 } else
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000473 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000474 }
475
476 assert(IdxVNI && "Didn't find value for Idx");
477 return IdxVNI;
478}
479
480// extendTo - Find the last li_ value defined in MBB at or before Idx. The
481// parentli_ is assumed to be live at Idx. Extend the live range to Idx.
482// Return the found VNInfo, or NULL.
483VNInfo *LiveIntervalMap::extendTo(MachineBasicBlock *MBB, SlotIndex Idx) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000484 assert(li_ && "call reset first");
485 LiveInterval::iterator I = std::upper_bound(li_->begin(), li_->end(), Idx);
486 if (I == li_->begin())
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000487 return 0;
488 --I;
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000489 if (I->end <= lis_.getMBBStartIdx(MBB))
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000490 return 0;
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000491 if (I->end <= Idx)
492 I->end = Idx.getNextSlot();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000493 return I->valno;
494}
495
496// addSimpleRange - Add a simple range from parentli_ to li_.
497// ParentVNI must be live in the [Start;End) interval.
498void LiveIntervalMap::addSimpleRange(SlotIndex Start, SlotIndex End,
499 const VNInfo *ParentVNI) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000500 assert(li_ && "call reset first");
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000501 bool simple;
502 VNInfo *VNI = mapValue(ParentVNI, Start, &simple);
503 // A simple mapping is easy.
504 if (simple) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000505 li_->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000506 return;
507 }
508
509 // ParentVNI is a complex value. We must map per MBB.
510 MachineFunction::iterator MBB = lis_.getMBBFromIndex(Start);
Jakob Stoklund Olesendbc36092010-10-05 22:19:29 +0000511 MachineFunction::iterator MBBE = lis_.getMBBFromIndex(End.getPrevSlot());
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000512
513 if (MBB == MBBE) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000514 li_->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000515 return;
516 }
517
518 // First block.
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000519 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000520
521 // Run sequence of full blocks.
522 for (++MBB; MBB != MBBE; ++MBB) {
523 Start = lis_.getMBBStartIdx(MBB);
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000524 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB),
525 mapValue(ParentVNI, Start)));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000526 }
527
528 // Final block.
529 Start = lis_.getMBBStartIdx(MBB);
530 if (Start != End)
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000531 li_->addRange(LiveRange(Start, End, mapValue(ParentVNI, Start)));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000532}
533
534/// addRange - Add live ranges to li_ where [Start;End) intersects parentli_.
535/// All needed values whose def is not inside [Start;End) must be defined
536/// beforehand so mapValue will work.
537void LiveIntervalMap::addRange(SlotIndex Start, SlotIndex End) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000538 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000539 LiveInterval::const_iterator B = parentli_.begin(), E = parentli_.end();
540 LiveInterval::const_iterator I = std::lower_bound(B, E, Start);
541
542 // Check if --I begins before Start and overlaps.
543 if (I != B) {
544 --I;
545 if (I->end > Start)
546 addSimpleRange(Start, std::min(End, I->end), I->valno);
547 ++I;
548 }
549
550 // The remaining ranges begin after Start.
551 for (;I != E && I->start < End; ++I)
552 addSimpleRange(I->start, std::min(End, I->end), I->valno);
553}
554
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000555VNInfo *LiveIntervalMap::defByCopyFrom(unsigned Reg,
556 const VNInfo *ParentVNI,
557 MachineBasicBlock &MBB,
558 MachineBasicBlock::iterator I) {
559 const TargetInstrDesc &TID = MBB.getParent()->getTarget().getInstrInfo()->
560 get(TargetOpcode::COPY);
561 MachineInstr *MI = BuildMI(MBB, I, DebugLoc(), TID, li_->reg).addReg(Reg);
562 SlotIndex DefIdx = lis_.InsertMachineInstrInMaps(MI).getDefIndex();
563 VNInfo *VNI = defValue(ParentVNI, DefIdx);
564 VNI->setCopy(MI);
565 li_->addRange(LiveRange(DefIdx, DefIdx.getNextSlot(), VNI));
566 return VNI;
567}
568
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000569//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000570// Split Editor
571//===----------------------------------------------------------------------===//
572
573/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000574SplitEditor::SplitEditor(SplitAnalysis &sa, LiveIntervals &lis, VirtRegMap &vrm,
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000575 LiveRangeEdit &edit)
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000576 : sa_(sa), lis_(lis), vrm_(vrm),
577 mri_(vrm.getMachineFunction().getRegInfo()),
578 tii_(*vrm.getMachineFunction().getTarget().getInstrInfo()),
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000579 edit_(edit),
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000580 dupli_(lis_, edit.getParent()),
581 openli_(lis_, edit.getParent())
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000582{
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000583}
584
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000585bool SplitEditor::intervalsLiveAt(SlotIndex Idx) const {
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000586 for (LiveRangeEdit::iterator I = edit_.begin(), E = edit_.end(); I != E; ++I)
587 if (*I != dupli_.getLI() && (*I)->liveAt(Idx))
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000588 return true;
589 return false;
590}
591
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000592/// Create a new virtual register and live interval.
593void SplitEditor::openIntv() {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000594 assert(!openli_.getLI() && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000595
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000596 if (!dupli_.getLI())
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000597 dupli_.reset(&edit_.create(mri_, lis_, vrm_));
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000598
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000599 openli_.reset(&edit_.create(mri_, lis_, vrm_));
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000600}
601
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000602/// enterIntvBefore - Enter openli before the instruction at Idx. If curli is
603/// not live before Idx, a COPY is not inserted.
604void SplitEditor::enterIntvBefore(SlotIndex Idx) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000605 assert(openli_.getLI() && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000606 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000607 VNInfo *ParentVNI = edit_.getParent().getVNInfoAt(Idx.getUseIndex());
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000608 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000609 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000610 return;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000611 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000612 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000613 truncatedValues.insert(ParentVNI);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000614 MachineInstr *MI = lis_.getInstructionFromIndex(Idx);
615 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000616 VNInfo *VNI = openli_.defByCopyFrom(edit_.getReg(), ParentVNI,
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000617 *MI->getParent(), MI);
618 openli_.getLI()->addRange(LiveRange(VNI->def, Idx.getDefIndex(), VNI));
619 DEBUG(dbgs() << ": " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000620}
621
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000622/// enterIntvAtEnd - Enter openli at the end of MBB.
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000623void SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000624 assert(openli_.getLI() && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000625 SlotIndex End = lis_.getMBBEndIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000626 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << End);
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000627 VNInfo *ParentVNI = edit_.getParent().getVNInfoAt(End.getPrevSlot());
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000628 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000629 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000630 return;
631 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000632 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000633 truncatedValues.insert(ParentVNI);
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000634 VNInfo *VNI = openli_.defByCopyFrom(edit_.getReg(), ParentVNI,
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000635 MBB, MBB.getFirstTerminator());
636 // Make sure openli is live out of MBB.
637 openli_.getLI()->addRange(LiveRange(VNI->def, End, VNI));
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000638 DEBUG(dbgs() << ": " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000639}
640
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000641/// useIntv - indicate that all instructions in MBB should use openli.
642void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
643 useIntv(lis_.getMBBStartIdx(&MBB), lis_.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000644}
645
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000646void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000647 assert(openli_.getLI() && "openIntv not called before useIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000648 openli_.addRange(Start, End);
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000649 DEBUG(dbgs() << " use [" << Start << ';' << End << "): "
650 << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000651}
652
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000653/// leaveIntvAfter - Leave openli after the instruction at Idx.
654void SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000655 assert(openli_.getLI() && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000656 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000657
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000658 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000659 VNInfo *ParentVNI = edit_.getParent().getVNInfoAt(Idx.getBoundaryIndex());
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000660 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000661 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000662 return;
663 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000664 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000665
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000666 MachineBasicBlock::iterator MII = lis_.getInstructionFromIndex(Idx);
667 MachineBasicBlock *MBB = MII->getParent();
668 VNInfo *VNI = dupli_.defByCopyFrom(openli_.getLI()->reg, ParentVNI, *MBB,
669 llvm::next(MII));
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000670
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000671 // Finally we must make sure that openli is properly extended from Idx to the
672 // new copy.
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000673 openli_.addSimpleRange(Idx.getBoundaryIndex(), VNI->def, ParentVNI);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000674 DEBUG(dbgs() << ": " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000675}
676
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000677/// leaveIntvAtTop - Leave the interval at the top of MBB.
678/// Currently, only one value can leave the interval.
679void SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000680 assert(openli_.getLI() && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000681 SlotIndex Start = lis_.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000682 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000683
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000684 VNInfo *ParentVNI = edit_.getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000685 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000686 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000687 return;
688 }
689
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000690 // We are going to insert a back copy, so we must have a dupli_.
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000691 VNInfo *VNI = dupli_.defByCopyFrom(openli_.getLI()->reg, ParentVNI,
692 MBB, MBB.begin());
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000693
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000694 // Finally we must make sure that openli is properly extended from Start to
695 // the new copy.
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000696 openli_.addSimpleRange(Start, VNI->def, ParentVNI);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000697 DEBUG(dbgs() << ": " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000698}
699
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000700/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000701/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000702void SplitEditor::closeIntv() {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000703 assert(openli_.getLI() && "openIntv not called before closeIntv");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000704
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000705 DEBUG(dbgs() << " closeIntv cleaning up\n");
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000706 DEBUG(dbgs() << " open " << *openli_.getLI() << '\n');
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000707 openli_.reset(0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000708}
709
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000710/// rewrite - Rewrite all uses of reg to use the new registers.
711void SplitEditor::rewrite(unsigned reg) {
712 for (MachineRegisterInfo::reg_iterator RI = mri_.reg_begin(reg),
713 RE = mri_.reg_end(); RI != RE;) {
714 MachineOperand &MO = RI.getOperand();
715 MachineInstr *MI = MO.getParent();
716 ++RI;
717 if (MI->isDebugValue()) {
718 DEBUG(dbgs() << "Zapping " << *MI);
719 // FIXME: We can do much better with debug values.
720 MO.setReg(0);
721 continue;
722 }
723 SlotIndex Idx = lis_.getInstructionIndex(MI);
724 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
725 LiveInterval *LI = 0;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000726 for (LiveRangeEdit::iterator I = edit_.begin(), E = edit_.end(); I != E;
727 ++I) {
728 LiveInterval *testli = *I;
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000729 if (testli->liveAt(Idx)) {
730 LI = testli;
731 break;
732 }
733 }
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000734 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'<< Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000735 assert(LI && "No register was live at use");
736 MO.setReg(LI->reg);
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000737 DEBUG(dbgs() << '\t' << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000738 }
739}
740
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000741void
742SplitEditor::addTruncSimpleRange(SlotIndex Start, SlotIndex End, VNInfo *VNI) {
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000743 // Build vector of iterator pairs from the intervals.
744 typedef std::pair<LiveInterval::const_iterator,
745 LiveInterval::const_iterator> IIPair;
746 SmallVector<IIPair, 8> Iters;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000747 for (LiveRangeEdit::iterator LI = edit_.begin(), LE = edit_.end(); LI != LE;
748 ++LI) {
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000749 if (*LI == dupli_.getLI())
750 continue;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000751 LiveInterval::const_iterator I = (*LI)->find(Start);
752 LiveInterval::const_iterator E = (*LI)->end();
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000753 if (I != E)
754 Iters.push_back(std::make_pair(I, E));
755 }
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000756
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000757 SlotIndex sidx = Start;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000758 // Break [Start;End) into segments that don't overlap any intervals.
759 for (;;) {
760 SlotIndex next = sidx, eidx = End;
761 // Find overlapping intervals.
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000762 for (unsigned i = 0; i != Iters.size() && sidx < eidx; ++i) {
763 LiveInterval::const_iterator I = Iters[i].first;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000764 // Interval I is overlapping [sidx;eidx). Trim sidx.
765 if (I->start <= sidx) {
766 sidx = I->end;
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000767 // Move to the next run, remove iters when all are consumed.
768 I = ++Iters[i].first;
769 if (I == Iters[i].second) {
770 Iters.erase(Iters.begin() + i);
771 --i;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000772 continue;
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000773 }
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000774 }
775 // Trim eidx too if needed.
776 if (I->start >= eidx)
777 continue;
778 eidx = I->start;
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000779 next = I->end;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000780 }
781 // Now, [sidx;eidx) doesn't overlap anything in intervals_.
782 if (sidx < eidx)
783 dupli_.addSimpleRange(sidx, eidx, VNI);
784 // If the interval end was truncated, we can try again from next.
785 if (next <= sidx)
786 break;
787 sidx = next;
788 }
789}
790
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000791void SplitEditor::computeRemainder() {
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000792 // First we need to fill in the live ranges in dupli.
793 // If values were redefined, we need a full recoloring with SSA update.
794 // If values were truncated, we only need to truncate the ranges.
795 // If values were partially rematted, we should shrink to uses.
796 // If values were fully rematted, they should be omitted.
797 // FIXME: If a single value is redefined, just move the def and truncate.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000798 LiveInterval &parent = edit_.getParent();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000799
800 // Values that are fully contained in the split intervals.
801 SmallPtrSet<const VNInfo*, 8> deadValues;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000802 // Map all curli values that should have live defs in dupli.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000803 for (LiveInterval::const_vni_iterator I = parent.vni_begin(),
804 E = parent.vni_end(); I != E; ++I) {
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000805 const VNInfo *VNI = *I;
806 // Original def is contained in the split intervals.
807 if (intervalsLiveAt(VNI->def)) {
808 // Did this value escape?
809 if (dupli_.isMapped(VNI))
810 truncatedValues.insert(VNI);
811 else
812 deadValues.insert(VNI);
813 continue;
814 }
815 // Add minimal live range at the definition.
816 VNInfo *DVNI = dupli_.defValue(VNI, VNI->def);
817 dupli_.getLI()->addRange(LiveRange(VNI->def, VNI->def.getNextSlot(), DVNI));
818 }
819
820 // Add all ranges to dupli.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000821 for (LiveInterval::const_iterator I = parent.begin(), E = parent.end();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000822 I != E; ++I) {
823 const LiveRange &LR = *I;
824 if (truncatedValues.count(LR.valno)) {
825 // recolor after removing intervals_.
826 addTruncSimpleRange(LR.start, LR.end, LR.valno);
827 } else if (!deadValues.count(LR.valno)) {
828 // recolor without truncation.
829 dupli_.addSimpleRange(LR.start, LR.end, LR.valno);
830 }
831 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000832}
833
834void SplitEditor::finish() {
835 assert(!openli_.getLI() && "Previous LI not closed before rewrite");
836 assert(dupli_.getLI() && "No dupli for rewrite. Noop spilt?");
837
838 // Complete dupli liveness.
839 computeRemainder();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000840
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000841 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesenf1354ae2010-10-26 22:36:05 +0000842 for (LiveRangeEdit::iterator I = edit_.begin(), E = edit_.end(); I != E; ++I)
843 (*I)->RenumberValues(lis_);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000844
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000845 // Now check if dupli was separated into multiple connected components.
846 ConnectedVNInfoEqClasses ConEQ(lis_);
847 if (unsigned NumComp = ConEQ.Classify(dupli_.getLI())) {
848 DEBUG(dbgs() << " Remainder has " << NumComp << " connected components: "
849 << *dupli_.getLI() << '\n');
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000850 // Did the remainder break up? Create intervals for all the components.
851 if (NumComp > 1) {
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000852 SmallVector<LiveInterval*, 8> dups;
853 dups.push_back(dupli_.getLI());
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000854 for (unsigned i = 1; i != NumComp; ++i)
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000855 dups.push_back(&edit_.create(mri_, lis_, vrm_));
856 ConEQ.Distribute(&dups[0]);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000857 // Rewrite uses to the new regs.
858 rewrite(dupli_.getLI()->reg);
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000859 }
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000860 }
861
862 // Rewrite instructions.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000863 rewrite(edit_.getReg());
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000864
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000865 // Calculate spill weight and allocation hints for new intervals.
866 VirtRegAuxInfo vrai(vrm_.getMachineFunction(), lis_, sa_.loops_);
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000867 for (LiveRangeEdit::iterator I = edit_.begin(), E = edit_.end(); I != E; ++I){
868 LiveInterval &li = **I;
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000869 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000870 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000871 DEBUG(dbgs() << " new interval " << mri_.getRegClass(li.reg)->getName()
872 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000873 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000874}
875
876
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000877//===----------------------------------------------------------------------===//
878// Loop Splitting
879//===----------------------------------------------------------------------===//
880
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000881void SplitEditor::splitAroundLoop(const MachineLoop *Loop) {
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000882 SplitAnalysis::LoopBlocks Blocks;
883 sa_.getLoopBlocks(Loop, Blocks);
884
Jakob Stoklund Olesen452a9fd2010-10-07 18:47:07 +0000885 DEBUG({
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000886 dbgs() << " splitAround"; sa_.print(Blocks, dbgs()); dbgs() << '\n';
Jakob Stoklund Olesen452a9fd2010-10-07 18:47:07 +0000887 });
888
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000889 // Break critical edges as needed.
890 SplitAnalysis::BlockPtrSet CriticalExits;
891 sa_.getCriticalExits(Blocks, CriticalExits);
892 assert(CriticalExits.empty() && "Cannot break critical exits yet");
893
894 // Create new live interval for the loop.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000895 openIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000896
897 // Insert copies in the predecessors.
898 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Preds.begin(),
899 E = Blocks.Preds.end(); I != E; ++I) {
900 MachineBasicBlock &MBB = const_cast<MachineBasicBlock&>(**I);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000901 enterIntvAtEnd(MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000902 }
903
904 // Switch all loop blocks.
905 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Loop.begin(),
906 E = Blocks.Loop.end(); I != E; ++I)
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000907 useIntv(**I);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000908
909 // Insert back copies in the exit blocks.
910 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Exits.begin(),
911 E = Blocks.Exits.end(); I != E; ++I) {
912 MachineBasicBlock &MBB = const_cast<MachineBasicBlock&>(**I);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000913 leaveIntvAtTop(MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000914 }
915
916 // Done.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000917 closeIntv();
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000918 finish();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000919}
920
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000921
922//===----------------------------------------------------------------------===//
923// Single Block Splitting
924//===----------------------------------------------------------------------===//
925
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000926/// getMultiUseBlocks - if curli has more than one use in a basic block, it
927/// may be an advantage to split curli for the duration of the block.
928bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
929 // If curli is local to one block, there is no point to splitting it.
930 if (usingBlocks_.size() <= 1)
931 return false;
932 // Add blocks with multiple uses.
933 for (BlockCountMap::iterator I = usingBlocks_.begin(), E = usingBlocks_.end();
934 I != E; ++I)
935 switch (I->second) {
936 case 0:
937 case 1:
938 continue;
939 case 2: {
940 // When there are only two uses and curli is both live in and live out,
941 // we don't really win anything by isolating the block since we would be
942 // inserting two copies.
943 // The remaing register would still have two uses in the block. (Unless it
944 // separates into disconnected components).
945 if (lis_.isLiveInToMBB(*curli_, I->first) &&
946 lis_.isLiveOutOfMBB(*curli_, I->first))
947 continue;
948 } // Fall through.
949 default:
950 Blocks.insert(I->first);
951 }
952 return !Blocks.empty();
953}
954
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000955/// splitSingleBlocks - Split curli into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000956/// basic block in Blocks.
957void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000958 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000959 // Determine the first and last instruction using curli in each block.
960 typedef std::pair<SlotIndex,SlotIndex> IndexPair;
961 typedef DenseMap<const MachineBasicBlock*,IndexPair> IndexPairMap;
962 IndexPairMap MBBRange;
963 for (SplitAnalysis::InstrPtrSet::const_iterator I = sa_.usingInstrs_.begin(),
964 E = sa_.usingInstrs_.end(); I != E; ++I) {
965 const MachineBasicBlock *MBB = (*I)->getParent();
966 if (!Blocks.count(MBB))
967 continue;
968 SlotIndex Idx = lis_.getInstructionIndex(*I);
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000969 DEBUG(dbgs() << " BB#" << MBB->getNumber() << '\t' << Idx << '\t' << **I);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000970 IndexPair &IP = MBBRange[MBB];
971 if (!IP.first.isValid() || Idx < IP.first)
972 IP.first = Idx;
973 if (!IP.second.isValid() || Idx > IP.second)
974 IP.second = Idx;
975 }
976
977 // Create a new interval for each block.
978 for (SplitAnalysis::BlockPtrSet::const_iterator I = Blocks.begin(),
979 E = Blocks.end(); I != E; ++I) {
980 IndexPair &IP = MBBRange[*I];
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000981 DEBUG(dbgs() << " splitting for BB#" << (*I)->getNumber() << ": ["
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000982 << IP.first << ';' << IP.second << ")\n");
983 assert(IP.first.isValid() && IP.second.isValid());
984
985 openIntv();
986 enterIntvBefore(IP.first);
987 useIntv(IP.first.getBaseIndex(), IP.second.getBoundaryIndex());
988 leaveIntvAfter(IP.second);
989 closeIntv();
990 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000991 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000992}
993
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000994
995//===----------------------------------------------------------------------===//
996// Sub Block Splitting
997//===----------------------------------------------------------------------===//
998
999/// getBlockForInsideSplit - If curli is contained inside a single basic block,
1000/// and it wou pay to subdivide the interval inside that block, return it.
1001/// Otherwise return NULL. The returned block can be passed to
1002/// SplitEditor::splitInsideBlock.
1003const MachineBasicBlock *SplitAnalysis::getBlockForInsideSplit() {
1004 // The interval must be exclusive to one block.
1005 if (usingBlocks_.size() != 1)
1006 return 0;
1007 // Don't to this for less than 4 instructions. We want to be sure that
1008 // splitting actually reduces the instruction count per interval.
1009 if (usingInstrs_.size() < 4)
1010 return 0;
1011 return usingBlocks_.begin()->first;
1012}
1013
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +00001014/// splitInsideBlock - Split curli into multiple intervals inside MBB.
1015void SplitEditor::splitInsideBlock(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001016 SmallVector<SlotIndex, 32> Uses;
1017 Uses.reserve(sa_.usingInstrs_.size());
1018 for (SplitAnalysis::InstrPtrSet::const_iterator I = sa_.usingInstrs_.begin(),
1019 E = sa_.usingInstrs_.end(); I != E; ++I)
1020 if ((*I)->getParent() == MBB)
1021 Uses.push_back(lis_.getInstructionIndex(*I));
1022 DEBUG(dbgs() << " splitInsideBlock BB#" << MBB->getNumber() << " for "
1023 << Uses.size() << " instructions.\n");
1024 assert(Uses.size() >= 3 && "Need at least 3 instructions");
1025 array_pod_sort(Uses.begin(), Uses.end());
1026
1027 // Simple algorithm: Find the largest gap between uses as determined by slot
1028 // indices. Create new intervals for instructions before the gap and after the
1029 // gap.
1030 unsigned bestPos = 0;
1031 int bestGap = 0;
1032 DEBUG(dbgs() << " dist (" << Uses[0]);
1033 for (unsigned i = 1, e = Uses.size(); i != e; ++i) {
1034 int g = Uses[i-1].distance(Uses[i]);
1035 DEBUG(dbgs() << ") -" << g << "- (" << Uses[i]);
1036 if (g > bestGap)
1037 bestPos = i, bestGap = g;
1038 }
1039 DEBUG(dbgs() << "), best: -" << bestGap << "-\n");
1040
1041 // bestPos points to the first use after the best gap.
1042 assert(bestPos > 0 && "Invalid gap");
1043
1044 // FIXME: Don't create intervals for low densities.
1045
1046 // First interval before the gap. Don't create single-instr intervals.
1047 if (bestPos > 1) {
1048 openIntv();
1049 enterIntvBefore(Uses.front());
1050 useIntv(Uses.front().getBaseIndex(), Uses[bestPos-1].getBoundaryIndex());
1051 leaveIntvAfter(Uses[bestPos-1]);
1052 closeIntv();
1053 }
1054
1055 // Second interval after the gap.
1056 if (bestPos < Uses.size()-1) {
1057 openIntv();
1058 enterIntvBefore(Uses[bestPos]);
1059 useIntv(Uses[bestPos].getBaseIndex(), Uses.back().getBoundaryIndex());
1060 leaveIntvAfter(Uses.back());
1061 closeIntv();
1062 }
1063
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001064 finish();
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001065}