blob: c47e9c91824bebb202844809dc89cacd249caee7 [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 Olesenf0179002010-07-26 23:44:11 +000017#include "VirtRegMap.h"
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +000018#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000019#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000020#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000021#include "llvm/CodeGen/MachineLoopInfo.h"
22#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000023#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000024#include "llvm/Support/Debug.h"
25#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000028
29using namespace llvm;
30
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000031static cl::opt<bool>
32AllowSplit("spiller-splits-edges",
33 cl::desc("Allow critical edge splitting during spilling"));
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000034
35//===----------------------------------------------------------------------===//
36// Split Analysis
37//===----------------------------------------------------------------------===//
38
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000039SplitAnalysis::SplitAnalysis(const MachineFunction &mf,
40 const LiveIntervals &lis,
41 const MachineLoopInfo &mli)
42 : mf_(mf),
43 lis_(lis),
44 loops_(mli),
45 tii_(*mf.getTarget().getInstrInfo()),
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000046 curli_(0) {}
47
48void SplitAnalysis::clear() {
49 usingInstrs_.clear();
50 usingBlocks_.clear();
51 usingLoops_.clear();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000052 curli_ = 0;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000053}
54
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000055bool SplitAnalysis::canAnalyzeBranch(const MachineBasicBlock *MBB) {
56 MachineBasicBlock *T, *F;
57 SmallVector<MachineOperand, 4> Cond;
58 return !tii_.AnalyzeBranch(const_cast<MachineBasicBlock&>(*MBB), T, F, Cond);
59}
60
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000061/// analyzeUses - Count instructions, basic blocks, and loops using curli.
62void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000063 const MachineRegisterInfo &MRI = mf_.getRegInfo();
64 for (MachineRegisterInfo::reg_iterator I = MRI.reg_begin(curli_->reg);
65 MachineInstr *MI = I.skipInstruction();) {
66 if (MI->isDebugValue() || !usingInstrs_.insert(MI))
67 continue;
68 MachineBasicBlock *MBB = MI->getParent();
69 if (usingBlocks_[MBB]++)
70 continue;
71 if (MachineLoop *Loop = loops_.getLoopFor(MBB))
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +000072 usingLoops_[Loop]++;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000073 }
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000074 DEBUG(dbgs() << " counted "
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000075 << usingInstrs_.size() << " instrs, "
76 << usingBlocks_.size() << " blocks, "
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000077 << usingLoops_.size() << " loops.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000078}
79
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000080// Get three sets of basic blocks surrounding a loop: Blocks inside the loop,
81// predecessor blocks, and exit blocks.
82void SplitAnalysis::getLoopBlocks(const MachineLoop *Loop, LoopBlocks &Blocks) {
83 Blocks.clear();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000084
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000085 // Blocks in the loop.
86 Blocks.Loop.insert(Loop->block_begin(), Loop->block_end());
87
88 // Predecessor blocks.
89 const MachineBasicBlock *Header = Loop->getHeader();
90 for (MachineBasicBlock::const_pred_iterator I = Header->pred_begin(),
91 E = Header->pred_end(); I != E; ++I)
92 if (!Blocks.Loop.count(*I))
93 Blocks.Preds.insert(*I);
94
95 // Exit blocks.
96 for (MachineLoop::block_iterator I = Loop->block_begin(),
97 E = Loop->block_end(); I != E; ++I) {
98 const MachineBasicBlock *MBB = *I;
99 for (MachineBasicBlock::const_succ_iterator SI = MBB->succ_begin(),
100 SE = MBB->succ_end(); SI != SE; ++SI)
101 if (!Blocks.Loop.count(*SI))
102 Blocks.Exits.insert(*SI);
103 }
104}
105
106/// analyzeLoopPeripheralUse - Return an enum describing how curli_ is used in
107/// and around the Loop.
108SplitAnalysis::LoopPeripheralUse SplitAnalysis::
109analyzeLoopPeripheralUse(const SplitAnalysis::LoopBlocks &Blocks) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000110 LoopPeripheralUse use = ContainedInLoop;
111 for (BlockCountMap::iterator I = usingBlocks_.begin(), E = usingBlocks_.end();
112 I != E; ++I) {
113 const MachineBasicBlock *MBB = I->first;
114 // Is this a peripheral block?
115 if (use < MultiPeripheral &&
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000116 (Blocks.Preds.count(MBB) || Blocks.Exits.count(MBB))) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000117 if (I->second > 1) use = MultiPeripheral;
118 else use = SinglePeripheral;
119 continue;
120 }
121 // Is it a loop block?
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000122 if (Blocks.Loop.count(MBB))
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000123 continue;
124 // It must be an unrelated block.
125 return OutsideLoop;
126 }
127 return use;
128}
129
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000130/// getCriticalExits - It may be necessary to partially break critical edges
131/// leaving the loop if an exit block has phi uses of curli. Collect the exit
132/// blocks that need special treatment into CriticalExits.
133void SplitAnalysis::getCriticalExits(const SplitAnalysis::LoopBlocks &Blocks,
134 BlockPtrSet &CriticalExits) {
135 CriticalExits.clear();
136
137 // A critical exit block contains a phi def of curli, and has a predecessor
138 // that is not in the loop nor a loop predecessor.
139 // For such an exit block, the edges carrying the new variable must be moved
140 // to a new pre-exit block.
141 for (BlockPtrSet::iterator I = Blocks.Exits.begin(), E = Blocks.Exits.end();
142 I != E; ++I) {
143 const MachineBasicBlock *Succ = *I;
144 SlotIndex SuccIdx = lis_.getMBBStartIdx(Succ);
145 VNInfo *SuccVNI = curli_->getVNInfoAt(SuccIdx);
146 // This exit may not have curli live in at all. No need to split.
147 if (!SuccVNI)
148 continue;
149 // If this is not a PHI def, it is either using a value from before the
150 // loop, or a value defined inside the loop. Both are safe.
151 if (!SuccVNI->isPHIDef() || SuccVNI->def.getBaseIndex() != SuccIdx)
152 continue;
153 // This exit block does have a PHI. Does it also have a predecessor that is
154 // not a loop block or loop predecessor?
155 for (MachineBasicBlock::const_pred_iterator PI = Succ->pred_begin(),
156 PE = Succ->pred_end(); PI != PE; ++PI) {
157 const MachineBasicBlock *Pred = *PI;
158 if (Blocks.Loop.count(Pred) || Blocks.Preds.count(Pred))
159 continue;
160 // This is a critical exit block, and we need to split the exit edge.
161 CriticalExits.insert(Succ);
162 break;
163 }
164 }
165}
166
167/// canSplitCriticalExits - Return true if it is possible to insert new exit
168/// blocks before the blocks in CriticalExits.
169bool
170SplitAnalysis::canSplitCriticalExits(const SplitAnalysis::LoopBlocks &Blocks,
171 BlockPtrSet &CriticalExits) {
172 // If we don't allow critical edge splitting, require no critical exits.
173 if (!AllowSplit)
174 return CriticalExits.empty();
175
176 for (BlockPtrSet::iterator I = CriticalExits.begin(), E = CriticalExits.end();
177 I != E; ++I) {
178 const MachineBasicBlock *Succ = *I;
179 // We want to insert a new pre-exit MBB before Succ, and change all the
180 // in-loop blocks to branch to the pre-exit instead of Succ.
181 // Check that all the in-loop predecessors can be changed.
182 for (MachineBasicBlock::const_pred_iterator PI = Succ->pred_begin(),
183 PE = Succ->pred_end(); PI != PE; ++PI) {
184 const MachineBasicBlock *Pred = *PI;
185 // The external predecessors won't be altered.
186 if (!Blocks.Loop.count(Pred) && !Blocks.Preds.count(Pred))
187 continue;
188 if (!canAnalyzeBranch(Pred))
189 return false;
190 }
191
192 // If Succ's layout predecessor falls through, that too must be analyzable.
193 // We need to insert the pre-exit block in the gap.
194 MachineFunction::const_iterator MFI = Succ;
195 if (MFI == mf_.begin())
196 continue;
197 if (!canAnalyzeBranch(--MFI))
198 return false;
199 }
200 // No problems found.
201 return true;
202}
203
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000204void SplitAnalysis::analyze(const LiveInterval *li) {
205 clear();
206 curli_ = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000207 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000208}
209
210const MachineLoop *SplitAnalysis::getBestSplitLoop() {
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000211 assert(curli_ && "Call analyze() before getBestSplitLoop");
212 if (usingLoops_.empty())
213 return 0;
214
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000215 LoopPtrSet Loops, SecondLoops;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000216 LoopBlocks Blocks;
217 BlockPtrSet CriticalExits;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000218
219 // Find first-class and second class candidate loops.
220 // We prefer to split around loops where curli is used outside the periphery.
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000221 for (LoopCountMap::const_iterator I = usingLoops_.begin(),
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000222 E = usingLoops_.end(); I != E; ++I) {
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000223 const MachineLoop *Loop = I->first;
224 getLoopBlocks(Loop, Blocks);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000225
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000226 LoopPtrSet *LPS = 0;
227 switch(analyzeLoopPeripheralUse(Blocks)) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000228 case OutsideLoop:
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000229 LPS = &Loops;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000230 break;
231 case MultiPeripheral:
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000232 LPS = &SecondLoops;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000233 break;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000234 case ContainedInLoop:
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000235 DEBUG(dbgs() << " contained in " << *Loop);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000236 continue;
237 case SinglePeripheral:
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000238 DEBUG(dbgs() << " single peripheral use in " << *Loop);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000239 continue;
240 }
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000241 // Will it be possible to split around this loop?
242 getCriticalExits(Blocks, CriticalExits);
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000243 DEBUG(dbgs() << " " << CriticalExits.size() << " critical exits from "
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000244 << *Loop);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000245 if (!canSplitCriticalExits(Blocks, CriticalExits))
246 continue;
247 // This is a possible split.
248 assert(LPS);
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000249 LPS->insert(Loop);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000250 }
251
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000252 DEBUG(dbgs() << " getBestSplitLoop found " << Loops.size() << " + "
253 << SecondLoops.size() << " candidate loops.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000254
255 // If there are no first class loops available, look at second class loops.
256 if (Loops.empty())
257 Loops = SecondLoops;
258
259 if (Loops.empty())
260 return 0;
261
262 // Pick the earliest loop.
263 // FIXME: Are there other heuristics to consider?
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000264 const MachineLoop *Best = 0;
265 SlotIndex BestIdx;
266 for (LoopPtrSet::const_iterator I = Loops.begin(), E = Loops.end(); I != E;
267 ++I) {
268 SlotIndex Idx = lis_.getMBBStartIdx((*I)->getHeader());
269 if (!Best || Idx < BestIdx)
270 Best = *I, BestIdx = Idx;
271 }
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000272 DEBUG(dbgs() << " getBestSplitLoop found " << *Best);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000273 return Best;
274}
275
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000276/// getMultiUseBlocks - if curli has more than one use in a basic block, it
277/// may be an advantage to split curli for the duration of the block.
278bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
279 // If curli is local to one block, there is no point to splitting it.
280 if (usingBlocks_.size() <= 1)
281 return false;
282 // Add blocks with multiple uses.
283 for (BlockCountMap::iterator I = usingBlocks_.begin(), E = usingBlocks_.end();
284 I != E; ++I)
285 switch (I->second) {
286 case 0:
287 case 1:
288 continue;
289 case 2: {
290 // It doesn't pay to split a 2-instr block if it redefines curli.
291 VNInfo *VN1 = curli_->getVNInfoAt(lis_.getMBBStartIdx(I->first));
292 VNInfo *VN2 =
293 curli_->getVNInfoAt(lis_.getMBBEndIdx(I->first).getPrevIndex());
294 // live-in and live-out with a different value.
295 if (VN1 && VN2 && VN1 != VN2)
296 continue;
297 } // Fall through.
298 default:
299 Blocks.insert(I->first);
300 }
301 return !Blocks.empty();
302}
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000303
304//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000305// LiveIntervalMap
306//===----------------------------------------------------------------------===//
307
Jakob Stoklund Olesenb3e96812010-09-13 21:29:45 +0000308// Work around the fact that the std::pair constructors are broken for pointer
309// pairs in some implementations. makeVV(x, 0) works.
310static inline std::pair<const VNInfo*, VNInfo*>
311makeVV(const VNInfo *a, VNInfo *b) {
312 return std::make_pair(a, b);
313}
314
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000315void LiveIntervalMap::reset(LiveInterval *li) {
316 li_ = li;
317 valueMap_.clear();
318}
319
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000320bool LiveIntervalMap::isComplexMapped(const VNInfo *ParentVNI) const {
321 ValueMap::const_iterator i = valueMap_.find(ParentVNI);
322 return i != valueMap_.end() && i->second == 0;
323}
324
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000325// defValue - Introduce a li_ def for ParentVNI that could be later than
326// ParentVNI->def.
327VNInfo *LiveIntervalMap::defValue(const VNInfo *ParentVNI, SlotIndex Idx) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000328 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000329 assert(ParentVNI && "Mapping NULL value");
330 assert(Idx.isValid() && "Invalid SlotIndex");
331 assert(parentli_.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
332
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000333 // Create a new value.
Lang Hames6e2968c2010-09-25 12:04:16 +0000334 VNInfo *VNI = li_->getNextValue(Idx, 0, lis_.getVNInfoAllocator());
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000335
336 // Use insert for lookup, so we can add missing values with a second lookup.
337 std::pair<ValueMap::iterator,bool> InsP =
338 valueMap_.insert(makeVV(ParentVNI, Idx == ParentVNI->def ? VNI : 0));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000339
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000340 // This is now a complex def. Mark with a NULL in valueMap.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000341 if (!InsP.second)
342 InsP.first->second = 0;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000343
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000344 return VNI;
345}
346
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000347
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000348// mapValue - Find the mapped value for ParentVNI at Idx.
349// Potentially create phi-def values.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000350VNInfo *LiveIntervalMap::mapValue(const VNInfo *ParentVNI, SlotIndex Idx,
351 bool *simple) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000352 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000353 assert(ParentVNI && "Mapping NULL value");
354 assert(Idx.isValid() && "Invalid SlotIndex");
355 assert(parentli_.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
356
357 // Use insert for lookup, so we can add missing values with a second lookup.
358 std::pair<ValueMap::iterator,bool> InsP =
Jakob Stoklund Olesenb3e96812010-09-13 21:29:45 +0000359 valueMap_.insert(makeVV(ParentVNI, 0));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000360
361 // This was an unknown value. Create a simple mapping.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000362 if (InsP.second) {
363 if (simple) *simple = true;
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000364 return InsP.first->second = li_->createValueCopy(ParentVNI,
365 lis_.getVNInfoAllocator());
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000366 }
367
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000368 // This was a simple mapped value.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000369 if (InsP.first->second) {
370 if (simple) *simple = true;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000371 return InsP.first->second;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000372 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000373
374 // This is a complex mapped value. There may be multiple defs, and we may need
375 // to create phi-defs.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000376 if (simple) *simple = false;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000377 MachineBasicBlock *IdxMBB = lis_.getMBBFromIndex(Idx);
378 assert(IdxMBB && "No MBB at Idx");
379
380 // Is there a def in the same MBB we can extend?
381 if (VNInfo *VNI = extendTo(IdxMBB, Idx))
382 return VNI;
383
384 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
385 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
386 // Perform a depth-first search for predecessor blocks where we know the
387 // dominating VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
388
389 // Track MBBs where we have created or learned the dominating value.
390 // This may change during the DFS as we create new phi-defs.
391 typedef DenseMap<MachineBasicBlock*, VNInfo*> MBBValueMap;
392 MBBValueMap DomValue;
Jakob Stoklund Olesen984a7fc2010-10-05 20:36:28 +0000393 typedef SplitAnalysis::BlockPtrSet BlockPtrSet;
394 BlockPtrSet Visited;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000395
Jakob Stoklund Olesen984a7fc2010-10-05 20:36:28 +0000396 // Iterate over IdxMBB predecessors in a depth-first order.
397 // Skip begin() since that is always IdxMBB.
398 for (idf_ext_iterator<MachineBasicBlock*, BlockPtrSet>
399 IDFI = llvm::next(idf_ext_begin(IdxMBB, Visited)),
400 IDFE = idf_ext_end(IdxMBB, Visited); IDFI != IDFE;) {
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000401 MachineBasicBlock *MBB = *IDFI;
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000402 SlotIndex End = lis_.getMBBEndIdx(MBB).getPrevSlot();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000403
404 // We are operating on the restricted CFG where ParentVNI is live.
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000405 if (parentli_.getVNInfoAt(End) != ParentVNI) {
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000406 IDFI.skipChildren();
407 continue;
408 }
409
410 // Do we have a dominating value in this block?
411 VNInfo *VNI = extendTo(MBB, End);
412 if (!VNI) {
413 ++IDFI;
414 continue;
415 }
416
Jakob Stoklund Olesen984a7fc2010-10-05 20:36:28 +0000417 // Yes, VNI dominates MBB. Make sure we visit MBB again from other paths.
418 Visited.erase(MBB);
419
420 // Track the path back to IdxMBB, creating phi-defs
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000421 // as needed along the way.
422 for (unsigned PI = IDFI.getPathLength()-1; PI != 0; --PI) {
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000423 // Start from MBB's immediate successor. End at IdxMBB.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000424 MachineBasicBlock *Succ = IDFI.getPath(PI-1);
425 std::pair<MBBValueMap::iterator, bool> InsP =
426 DomValue.insert(MBBValueMap::value_type(Succ, VNI));
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000427
428 // This is the first time we backtrack to Succ.
429 if (InsP.second)
430 continue;
431
432 // We reached Succ again with the same VNI. Nothing is going to change.
433 VNInfo *OVNI = InsP.first->second;
434 if (OVNI == VNI)
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000435 break;
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000436
437 // Succ already has a phi-def. No need to continue.
438 SlotIndex Start = lis_.getMBBStartIdx(Succ);
439 if (OVNI->def == Start)
440 break;
441
442 // We have a collision between the old and new VNI at Succ. That means
443 // neither dominates and we need a new phi-def.
Lang Hames6e2968c2010-09-25 12:04:16 +0000444 VNI = li_->getNextValue(Start, 0, lis_.getVNInfoAllocator());
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000445 VNI->setIsPHIDef(true);
446 InsP.first->second = VNI;
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000447
448 // Replace OVNI with VNI in the remaining path.
449 for (; PI > 1 ; --PI) {
450 MBBValueMap::iterator I = DomValue.find(IDFI.getPath(PI-2));
451 if (I == DomValue.end() || I->second != OVNI)
452 break;
453 I->second = VNI;
454 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000455 }
456
457 // No need to search the children, we found a dominating value.
Jakob Stoklund Olesencf16bea2010-08-18 20:06:05 +0000458 IDFI.skipChildren();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000459 }
460
461 // The search should at least find a dominating value for IdxMBB.
462 assert(!DomValue.empty() && "Couldn't find a reaching definition");
463
464 // Since we went through the trouble of a full DFS visiting all reaching defs,
465 // the values in DomValue are now accurate. No more phi-defs are needed for
466 // these blocks, so we can color the live ranges.
467 // This makes the next mapValue call much faster.
468 VNInfo *IdxVNI = 0;
469 for (MBBValueMap::iterator I = DomValue.begin(), E = DomValue.end(); I != E;
470 ++I) {
471 MachineBasicBlock *MBB = I->first;
472 VNInfo *VNI = I->second;
473 SlotIndex Start = lis_.getMBBStartIdx(MBB);
474 if (MBB == IdxMBB) {
475 // Don't add full liveness to IdxMBB, stop at Idx.
476 if (Start != Idx)
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000477 li_->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000478 // The caller had better add some liveness to IdxVNI, or it leaks.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000479 IdxVNI = VNI;
480 } else
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000481 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000482 }
483
484 assert(IdxVNI && "Didn't find value for Idx");
485 return IdxVNI;
486}
487
488// extendTo - Find the last li_ value defined in MBB at or before Idx. The
489// parentli_ is assumed to be live at Idx. Extend the live range to Idx.
490// Return the found VNInfo, or NULL.
491VNInfo *LiveIntervalMap::extendTo(MachineBasicBlock *MBB, SlotIndex Idx) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000492 assert(li_ && "call reset first");
493 LiveInterval::iterator I = std::upper_bound(li_->begin(), li_->end(), Idx);
494 if (I == li_->begin())
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000495 return 0;
496 --I;
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000497 if (I->end <= lis_.getMBBStartIdx(MBB))
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000498 return 0;
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000499 if (I->end <= Idx)
500 I->end = Idx.getNextSlot();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000501 return I->valno;
502}
503
504// addSimpleRange - Add a simple range from parentli_ to li_.
505// ParentVNI must be live in the [Start;End) interval.
506void LiveIntervalMap::addSimpleRange(SlotIndex Start, SlotIndex End,
507 const VNInfo *ParentVNI) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000508 assert(li_ && "call reset first");
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000509 bool simple;
510 VNInfo *VNI = mapValue(ParentVNI, Start, &simple);
511 // A simple mapping is easy.
512 if (simple) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000513 li_->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000514 return;
515 }
516
517 // ParentVNI is a complex value. We must map per MBB.
518 MachineFunction::iterator MBB = lis_.getMBBFromIndex(Start);
Jakob Stoklund Olesendbc36092010-10-05 22:19:29 +0000519 MachineFunction::iterator MBBE = lis_.getMBBFromIndex(End.getPrevSlot());
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000520
521 if (MBB == MBBE) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000522 li_->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000523 return;
524 }
525
526 // First block.
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000527 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000528
529 // Run sequence of full blocks.
530 for (++MBB; MBB != MBBE; ++MBB) {
531 Start = lis_.getMBBStartIdx(MBB);
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000532 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB),
533 mapValue(ParentVNI, Start)));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000534 }
535
536 // Final block.
537 Start = lis_.getMBBStartIdx(MBB);
538 if (Start != End)
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000539 li_->addRange(LiveRange(Start, End, mapValue(ParentVNI, Start)));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000540}
541
542/// addRange - Add live ranges to li_ where [Start;End) intersects parentli_.
543/// All needed values whose def is not inside [Start;End) must be defined
544/// beforehand so mapValue will work.
545void LiveIntervalMap::addRange(SlotIndex Start, SlotIndex End) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000546 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000547 LiveInterval::const_iterator B = parentli_.begin(), E = parentli_.end();
548 LiveInterval::const_iterator I = std::lower_bound(B, E, Start);
549
550 // Check if --I begins before Start and overlaps.
551 if (I != B) {
552 --I;
553 if (I->end > Start)
554 addSimpleRange(Start, std::min(End, I->end), I->valno);
555 ++I;
556 }
557
558 // The remaining ranges begin after Start.
559 for (;I != E && I->start < End; ++I)
560 addSimpleRange(I->start, std::min(End, I->end), I->valno);
561}
562
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000563VNInfo *LiveIntervalMap::defByCopyFrom(unsigned Reg,
564 const VNInfo *ParentVNI,
565 MachineBasicBlock &MBB,
566 MachineBasicBlock::iterator I) {
567 const TargetInstrDesc &TID = MBB.getParent()->getTarget().getInstrInfo()->
568 get(TargetOpcode::COPY);
569 MachineInstr *MI = BuildMI(MBB, I, DebugLoc(), TID, li_->reg).addReg(Reg);
570 SlotIndex DefIdx = lis_.InsertMachineInstrInMaps(MI).getDefIndex();
571 VNInfo *VNI = defValue(ParentVNI, DefIdx);
572 VNI->setCopy(MI);
573 li_->addRange(LiveRange(DefIdx, DefIdx.getNextSlot(), VNI));
574 return VNI;
575}
576
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000577//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000578// Split Editor
579//===----------------------------------------------------------------------===//
580
581/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000582SplitEditor::SplitEditor(SplitAnalysis &sa, LiveIntervals &lis, VirtRegMap &vrm,
Jakob Stoklund Olesen0a2b2a12010-08-13 22:56:53 +0000583 SmallVectorImpl<LiveInterval*> &intervals)
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000584 : sa_(sa), lis_(lis), vrm_(vrm),
585 mri_(vrm.getMachineFunction().getRegInfo()),
586 tii_(*vrm.getMachineFunction().getTarget().getInstrInfo()),
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000587 curli_(sa_.getCurLI()),
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000588 dupli_(lis_, *curli_),
589 openli_(lis_, *curli_),
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000590 intervals_(intervals),
591 firstInterval(intervals_.size())
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000592{
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000593 assert(curli_ && "SplitEditor created from empty SplitAnalysis");
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000594
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000595 // Make sure curli_ is assigned a stack slot, so all our intervals get the
596 // same slot as curli_.
597 if (vrm_.getStackSlot(curli_->reg) == VirtRegMap::NO_STACK_SLOT)
598 vrm_.assignVirt2StackSlot(curli_->reg);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000599
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000600}
601
602LiveInterval *SplitEditor::createInterval() {
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000603 unsigned Reg = mri_.createVirtualRegister(mri_.getRegClass(curli_->reg));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000604 LiveInterval &Intv = lis_.getOrCreateInterval(Reg);
605 vrm_.grow();
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000606 vrm_.assignVirt2StackSlot(Reg, vrm_.getStackSlot(curli_->reg));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000607 return &Intv;
608}
609
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000610bool SplitEditor::intervalsLiveAt(SlotIndex Idx) const {
611 for (int i = firstInterval, e = intervals_.size(); i != e; ++i)
612 if (intervals_[i]->liveAt(Idx))
613 return true;
614 return false;
615}
616
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000617/// Create a new virtual register and live interval.
618void SplitEditor::openIntv() {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000619 assert(!openli_.getLI() && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000620
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000621 if (!dupli_.getLI())
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000622 dupli_.reset(createInterval());
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000623
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000624 openli_.reset(createInterval());
625 intervals_.push_back(openli_.getLI());
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000626}
627
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000628/// enterIntvBefore - Enter openli before the instruction at Idx. If curli is
629/// not live before Idx, a COPY is not inserted.
630void SplitEditor::enterIntvBefore(SlotIndex Idx) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000631 assert(openli_.getLI() && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000632 VNInfo *ParentVNI = curli_->getVNInfoAt(Idx.getUseIndex());
633 if (!ParentVNI) {
634 DEBUG(dbgs() << " enterIntvBefore " << Idx << ": not live\n");
635 return;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000636 }
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000637 truncatedValues.insert(ParentVNI);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000638 MachineInstr *MI = lis_.getInstructionFromIndex(Idx);
639 assert(MI && "enterIntvBefore called with invalid index");
640 openli_.defByCopyFrom(curli_->reg, ParentVNI, *MI->getParent(), MI);
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000641 DEBUG(dbgs() << " enterIntvBefore " << Idx << ": " << *openli_.getLI()
642 << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000643}
644
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000645/// enterIntvAtEnd - Enter openli at the end of MBB.
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000646void SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000647 assert(openli_.getLI() && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000648 SlotIndex End = lis_.getMBBEndIdx(&MBB);
649 VNInfo *ParentVNI = curli_->getVNInfoAt(End.getPrevSlot());
650 if (!ParentVNI) {
651 DEBUG(dbgs() << " enterIntvAtEnd " << End << ": not live\n");
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000652 return;
653 }
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000654 truncatedValues.insert(ParentVNI);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000655 VNInfo *VNI = openli_.defByCopyFrom(curli_->reg, ParentVNI,
656 MBB, MBB.getFirstTerminator());
657 // Make sure openli is live out of MBB.
658 openli_.getLI()->addRange(LiveRange(VNI->def, End, VNI));
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000659 DEBUG(dbgs() << " enterIntvAtEnd: " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000660}
661
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000662/// useIntv - indicate that all instructions in MBB should use openli.
663void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
664 useIntv(lis_.getMBBStartIdx(&MBB), lis_.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000665}
666
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000667void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000668 assert(openli_.getLI() && "openIntv not called before useIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000669 openli_.addRange(Start, End);
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000670 DEBUG(dbgs() << " use [" << Start << ';' << End << "): "
671 << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000672}
673
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000674/// leaveIntvAfter - Leave openli after the instruction at Idx.
675void SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000676 assert(openli_.getLI() && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000677
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000678 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000679 VNInfo *ParentVNI = curli_->getVNInfoAt(Idx.getBoundaryIndex());
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000680 if (!ParentVNI) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000681 DEBUG(dbgs() << " leaveIntvAfter " << Idx << ": not live\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000682 return;
683 }
684
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000685 MachineBasicBlock::iterator MII = lis_.getInstructionFromIndex(Idx);
686 MachineBasicBlock *MBB = MII->getParent();
687 VNInfo *VNI = dupli_.defByCopyFrom(openli_.getLI()->reg, ParentVNI, *MBB,
688 llvm::next(MII));
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000689
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000690 // Finally we must make sure that openli is properly extended from Idx to the
691 // new copy.
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000692 openli_.addSimpleRange(Idx.getBoundaryIndex(), VNI->def, ParentVNI);
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000693 DEBUG(dbgs() << " leaveIntvAfter " << Idx << ": " << *openli_.getLI()
694 << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000695}
696
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000697/// leaveIntvAtTop - Leave the interval at the top of MBB.
698/// Currently, only one value can leave the interval.
699void SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000700 assert(openli_.getLI() && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000701
702 SlotIndex Start = lis_.getMBBStartIdx(&MBB);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000703 VNInfo *ParentVNI = curli_->getVNInfoAt(Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000704
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000705 // Is curli even live-in to MBB?
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000706 if (!ParentVNI) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000707 DEBUG(dbgs() << " leaveIntvAtTop at " << Start << ": not live\n");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000708 return;
709 }
710
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000711 // We are going to insert a back copy, so we must have a dupli_.
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000712 VNInfo *VNI = dupli_.defByCopyFrom(openli_.getLI()->reg, ParentVNI,
713 MBB, MBB.begin());
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000714
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000715 // Finally we must make sure that openli is properly extended from Start to
716 // the new copy.
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000717 openli_.addSimpleRange(Start, VNI->def, ParentVNI);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000718 DEBUG(dbgs() << " leaveIntvAtTop at " << Start << ": " << *openli_.getLI()
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000719 << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000720}
721
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000722/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000723/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000724void SplitEditor::closeIntv() {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000725 assert(openli_.getLI() && "openIntv not called before closeIntv");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000726
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000727 DEBUG(dbgs() << " closeIntv cleaning up\n");
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000728 DEBUG(dbgs() << " open " << *openli_.getLI() << '\n');
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000729 openli_.reset(0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000730}
731
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000732void
733SplitEditor::addTruncSimpleRange(SlotIndex Start, SlotIndex End, VNInfo *VNI) {
734 SlotIndex sidx = Start;
735
736 // Break [Start;End) into segments that don't overlap any intervals.
737 for (;;) {
738 SlotIndex next = sidx, eidx = End;
739 // Find overlapping intervals.
740 for (int i = firstInterval, e = intervals_.size(); i != e && sidx < eidx;
741 ++i) {
742 LiveInterval::const_iterator I = intervals_[i]->find(sidx);
743 LiveInterval::const_iterator E = intervals_[i]->end();
744 if (I == E)
745 continue;
746 // Interval I is overlapping [sidx;eidx). Trim sidx.
747 if (I->start <= sidx) {
748 sidx = I->end;
749 if (++I == E)
750 continue;
751 }
752 // Trim eidx too if needed.
753 if (I->start >= eidx)
754 continue;
755 eidx = I->start;
756 if (I->end > next)
757 next = I->end;
758 }
759 // Now, [sidx;eidx) doesn't overlap anything in intervals_.
760 if (sidx < eidx)
761 dupli_.addSimpleRange(sidx, eidx, VNI);
762 // If the interval end was truncated, we can try again from next.
763 if (next <= sidx)
764 break;
765 sidx = next;
766 }
767}
768
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000769/// rewrite - after all the new live ranges have been created, rewrite
770/// instructions using curli to use the new intervals.
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000771void SplitEditor::rewrite() {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000772 assert(!openli_.getLI() && "Previous LI not closed before rewrite");
Jakob Stoklund Olesend00f7e02010-10-05 23:10:04 +0000773 assert(dupli_.getLI() && "No dupli for rewrite. Noop spilt?");
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000774
775 // First we need to fill in the live ranges in dupli.
776 // If values were redefined, we need a full recoloring with SSA update.
777 // If values were truncated, we only need to truncate the ranges.
778 // If values were partially rematted, we should shrink to uses.
779 // If values were fully rematted, they should be omitted.
780 // FIXME: If a single value is redefined, just move the def and truncate.
781
782 // Values that are fully contained in the split intervals.
783 SmallPtrSet<const VNInfo*, 8> deadValues;
784
785 // Map all curli values that should have live defs in dupli.
786 for (LiveInterval::const_vni_iterator I = curli_->vni_begin(),
787 E = curli_->vni_end(); I != E; ++I) {
788 const VNInfo *VNI = *I;
789 // Original def is contained in the split intervals.
790 if (intervalsLiveAt(VNI->def)) {
791 // Did this value escape?
792 if (dupli_.isMapped(VNI))
793 truncatedValues.insert(VNI);
794 else
795 deadValues.insert(VNI);
796 continue;
797 }
798 // Add minimal live range at the definition.
799 VNInfo *DVNI = dupli_.defValue(VNI, VNI->def);
800 dupli_.getLI()->addRange(LiveRange(VNI->def, VNI->def.getNextSlot(), DVNI));
801 }
802
803 // Add all ranges to dupli.
804 for (LiveInterval::const_iterator I = curli_->begin(), E = curli_->end();
805 I != E; ++I) {
806 const LiveRange &LR = *I;
807 if (truncatedValues.count(LR.valno)) {
808 // recolor after removing intervals_.
809 addTruncSimpleRange(LR.start, LR.end, LR.valno);
810 } else if (!deadValues.count(LR.valno)) {
811 // recolor without truncation.
812 dupli_.addSimpleRange(LR.start, LR.end, LR.valno);
813 }
814 }
815
816
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000817 const LiveInterval *curli = sa_.getCurLI();
818 for (MachineRegisterInfo::reg_iterator RI = mri_.reg_begin(curli->reg),
819 RE = mri_.reg_end(); RI != RE;) {
820 MachineOperand &MO = RI.getOperand();
821 MachineInstr *MI = MO.getParent();
822 ++RI;
823 if (MI->isDebugValue()) {
824 DEBUG(dbgs() << "Zapping " << *MI);
825 // FIXME: We can do much better with debug values.
826 MO.setReg(0);
827 continue;
828 }
829 SlotIndex Idx = lis_.getInstructionIndex(MI);
830 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000831 LiveInterval *LI = dupli_.getLI();
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000832 for (unsigned i = firstInterval, e = intervals_.size(); i != e; ++i) {
833 LiveInterval *testli = intervals_[i];
834 if (testli->liveAt(Idx)) {
835 LI = testli;
836 break;
837 }
838 }
Jakob Stoklund Olesend00f7e02010-10-05 23:10:04 +0000839 MO.setReg(LI->reg);
Jakob Stoklund Olesend00f7e02010-10-05 23:10:04 +0000840 DEBUG(dbgs() << " rewrite " << Idx << '\t' << *MI);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000841 }
842
843 // dupli_ goes in last, after rewriting.
Jakob Stoklund Olesend00f7e02010-10-05 23:10:04 +0000844 if (dupli_.getLI()->empty()) {
845 DEBUG(dbgs() << " dupli became empty?\n");
846 lis_.removeInterval(dupli_.getLI()->reg);
847 dupli_.reset(0);
848 } else {
849 dupli_.getLI()->RenumberValues(lis_);
850 intervals_.push_back(dupli_.getLI());
Jakob Stoklund Olesen23436592010-08-06 18:46:59 +0000851 }
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000852
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000853 // Calculate spill weight and allocation hints for new intervals.
854 VirtRegAuxInfo vrai(vrm_.getMachineFunction(), lis_, sa_.loops_);
855 for (unsigned i = firstInterval, e = intervals_.size(); i != e; ++i) {
856 LiveInterval &li = *intervals_[i];
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000857 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000858 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000859 DEBUG(dbgs() << " new interval " << mri_.getRegClass(li.reg)->getName()
860 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000861 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000862}
863
864
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000865//===----------------------------------------------------------------------===//
866// Loop Splitting
867//===----------------------------------------------------------------------===//
868
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000869void SplitEditor::splitAroundLoop(const MachineLoop *Loop) {
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000870 SplitAnalysis::LoopBlocks Blocks;
871 sa_.getLoopBlocks(Loop, Blocks);
872
873 // Break critical edges as needed.
874 SplitAnalysis::BlockPtrSet CriticalExits;
875 sa_.getCriticalExits(Blocks, CriticalExits);
876 assert(CriticalExits.empty() && "Cannot break critical exits yet");
877
878 // Create new live interval for the loop.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000879 openIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000880
881 // Insert copies in the predecessors.
882 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Preds.begin(),
883 E = Blocks.Preds.end(); I != E; ++I) {
884 MachineBasicBlock &MBB = const_cast<MachineBasicBlock&>(**I);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000885 enterIntvAtEnd(MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000886 }
887
888 // Switch all loop blocks.
889 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Loop.begin(),
890 E = Blocks.Loop.end(); I != E; ++I)
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000891 useIntv(**I);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000892
893 // Insert back copies in the exit blocks.
894 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Exits.begin(),
895 E = Blocks.Exits.end(); I != E; ++I) {
896 MachineBasicBlock &MBB = const_cast<MachineBasicBlock&>(**I);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000897 leaveIntvAtTop(MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000898 }
899
900 // Done.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000901 closeIntv();
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000902 rewrite();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000903}
904
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000905
906//===----------------------------------------------------------------------===//
907// Single Block Splitting
908//===----------------------------------------------------------------------===//
909
910/// splitSingleBlocks - Split curli into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000911/// basic block in Blocks.
912void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000913 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000914 // Determine the first and last instruction using curli in each block.
915 typedef std::pair<SlotIndex,SlotIndex> IndexPair;
916 typedef DenseMap<const MachineBasicBlock*,IndexPair> IndexPairMap;
917 IndexPairMap MBBRange;
918 for (SplitAnalysis::InstrPtrSet::const_iterator I = sa_.usingInstrs_.begin(),
919 E = sa_.usingInstrs_.end(); I != E; ++I) {
920 const MachineBasicBlock *MBB = (*I)->getParent();
921 if (!Blocks.count(MBB))
922 continue;
923 SlotIndex Idx = lis_.getInstructionIndex(*I);
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000924 DEBUG(dbgs() << " BB#" << MBB->getNumber() << '\t' << Idx << '\t' << **I);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000925 IndexPair &IP = MBBRange[MBB];
926 if (!IP.first.isValid() || Idx < IP.first)
927 IP.first = Idx;
928 if (!IP.second.isValid() || Idx > IP.second)
929 IP.second = Idx;
930 }
931
932 // Create a new interval for each block.
933 for (SplitAnalysis::BlockPtrSet::const_iterator I = Blocks.begin(),
934 E = Blocks.end(); I != E; ++I) {
935 IndexPair &IP = MBBRange[*I];
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000936 DEBUG(dbgs() << " splitting for BB#" << (*I)->getNumber() << ": ["
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000937 << IP.first << ';' << IP.second << ")\n");
938 assert(IP.first.isValid() && IP.second.isValid());
939
940 openIntv();
941 enterIntvBefore(IP.first);
942 useIntv(IP.first.getBaseIndex(), IP.second.getBoundaryIndex());
943 leaveIntvAfter(IP.second);
944 closeIntv();
945 }
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000946 rewrite();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000947}
948
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000949
950//===----------------------------------------------------------------------===//
951// Sub Block Splitting
952//===----------------------------------------------------------------------===//
953
954/// getBlockForInsideSplit - If curli is contained inside a single basic block,
955/// and it wou pay to subdivide the interval inside that block, return it.
956/// Otherwise return NULL. The returned block can be passed to
957/// SplitEditor::splitInsideBlock.
958const MachineBasicBlock *SplitAnalysis::getBlockForInsideSplit() {
959 // The interval must be exclusive to one block.
960 if (usingBlocks_.size() != 1)
961 return 0;
962 // Don't to this for less than 4 instructions. We want to be sure that
963 // splitting actually reduces the instruction count per interval.
964 if (usingInstrs_.size() < 4)
965 return 0;
966 return usingBlocks_.begin()->first;
967}
968
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000969/// splitInsideBlock - Split curli into multiple intervals inside MBB.
970void SplitEditor::splitInsideBlock(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000971 SmallVector<SlotIndex, 32> Uses;
972 Uses.reserve(sa_.usingInstrs_.size());
973 for (SplitAnalysis::InstrPtrSet::const_iterator I = sa_.usingInstrs_.begin(),
974 E = sa_.usingInstrs_.end(); I != E; ++I)
975 if ((*I)->getParent() == MBB)
976 Uses.push_back(lis_.getInstructionIndex(*I));
977 DEBUG(dbgs() << " splitInsideBlock BB#" << MBB->getNumber() << " for "
978 << Uses.size() << " instructions.\n");
979 assert(Uses.size() >= 3 && "Need at least 3 instructions");
980 array_pod_sort(Uses.begin(), Uses.end());
981
982 // Simple algorithm: Find the largest gap between uses as determined by slot
983 // indices. Create new intervals for instructions before the gap and after the
984 // gap.
985 unsigned bestPos = 0;
986 int bestGap = 0;
987 DEBUG(dbgs() << " dist (" << Uses[0]);
988 for (unsigned i = 1, e = Uses.size(); i != e; ++i) {
989 int g = Uses[i-1].distance(Uses[i]);
990 DEBUG(dbgs() << ") -" << g << "- (" << Uses[i]);
991 if (g > bestGap)
992 bestPos = i, bestGap = g;
993 }
994 DEBUG(dbgs() << "), best: -" << bestGap << "-\n");
995
996 // bestPos points to the first use after the best gap.
997 assert(bestPos > 0 && "Invalid gap");
998
999 // FIXME: Don't create intervals for low densities.
1000
1001 // First interval before the gap. Don't create single-instr intervals.
1002 if (bestPos > 1) {
1003 openIntv();
1004 enterIntvBefore(Uses.front());
1005 useIntv(Uses.front().getBaseIndex(), Uses[bestPos-1].getBoundaryIndex());
1006 leaveIntvAfter(Uses[bestPos-1]);
1007 closeIntv();
1008 }
1009
1010 // Second interval after the gap.
1011 if (bestPos < Uses.size()-1) {
1012 openIntv();
1013 enterIntvBefore(Uses[bestPos]);
1014 useIntv(Uses[bestPos].getBaseIndex(), Uses.back().getBoundaryIndex());
1015 leaveIntvAfter(Uses.back());
1016 closeIntv();
1017 }
1018
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +00001019 rewrite();
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001020}