blob: b5012f313b753fe7d5c3786b2ef2fa5557e9d792 [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 Olesend68f4582010-10-28 20:34:50 +000021#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000023#include "llvm/CodeGen/MachineLoopInfo.h"
24#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000025#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000026#include "llvm/Support/Debug.h"
27#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000028#include "llvm/Target/TargetInstrInfo.h"
29#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000030
31using namespace llvm;
32
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000033static cl::opt<bool>
34AllowSplit("spiller-splits-edges",
35 cl::desc("Allow critical edge splitting during spilling"));
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000036
37//===----------------------------------------------------------------------===//
38// Split Analysis
39//===----------------------------------------------------------------------===//
40
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000041SplitAnalysis::SplitAnalysis(const MachineFunction &mf,
42 const LiveIntervals &lis,
43 const MachineLoopInfo &mli)
44 : mf_(mf),
45 lis_(lis),
46 loops_(mli),
47 tii_(*mf.getTarget().getInstrInfo()),
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000048 curli_(0) {}
49
50void SplitAnalysis::clear() {
51 usingInstrs_.clear();
52 usingBlocks_.clear();
53 usingLoops_.clear();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000054 curli_ = 0;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000055}
56
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000057bool SplitAnalysis::canAnalyzeBranch(const MachineBasicBlock *MBB) {
58 MachineBasicBlock *T, *F;
59 SmallVector<MachineOperand, 4> Cond;
60 return !tii_.AnalyzeBranch(const_cast<MachineBasicBlock&>(*MBB), T, F, Cond);
61}
62
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000063/// analyzeUses - Count instructions, basic blocks, and loops using curli.
64void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000065 const MachineRegisterInfo &MRI = mf_.getRegInfo();
66 for (MachineRegisterInfo::reg_iterator I = MRI.reg_begin(curli_->reg);
67 MachineInstr *MI = I.skipInstruction();) {
68 if (MI->isDebugValue() || !usingInstrs_.insert(MI))
69 continue;
70 MachineBasicBlock *MBB = MI->getParent();
71 if (usingBlocks_[MBB]++)
72 continue;
Jakob Stoklund Olesen9b90d7e2010-10-05 23:10:12 +000073 for (MachineLoop *Loop = loops_.getLoopFor(MBB); Loop;
74 Loop = Loop->getParentLoop())
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +000075 usingLoops_[Loop]++;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000076 }
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000077 DEBUG(dbgs() << " counted "
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000078 << usingInstrs_.size() << " instrs, "
79 << usingBlocks_.size() << " blocks, "
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000080 << usingLoops_.size() << " loops.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000081}
82
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +000083void SplitAnalysis::print(const BlockPtrSet &B, raw_ostream &OS) const {
84 for (BlockPtrSet::const_iterator I = B.begin(), E = B.end(); I != E; ++I) {
85 unsigned count = usingBlocks_.lookup(*I);
86 OS << " BB#" << (*I)->getNumber();
87 if (count)
88 OS << '(' << count << ')';
89 }
90}
91
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000092// Get three sets of basic blocks surrounding a loop: Blocks inside the loop,
93// predecessor blocks, and exit blocks.
94void SplitAnalysis::getLoopBlocks(const MachineLoop *Loop, LoopBlocks &Blocks) {
95 Blocks.clear();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000096
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000097 // Blocks in the loop.
98 Blocks.Loop.insert(Loop->block_begin(), Loop->block_end());
99
100 // Predecessor blocks.
101 const MachineBasicBlock *Header = Loop->getHeader();
102 for (MachineBasicBlock::const_pred_iterator I = Header->pred_begin(),
103 E = Header->pred_end(); I != E; ++I)
104 if (!Blocks.Loop.count(*I))
105 Blocks.Preds.insert(*I);
106
107 // Exit blocks.
108 for (MachineLoop::block_iterator I = Loop->block_begin(),
109 E = Loop->block_end(); I != E; ++I) {
110 const MachineBasicBlock *MBB = *I;
111 for (MachineBasicBlock::const_succ_iterator SI = MBB->succ_begin(),
112 SE = MBB->succ_end(); SI != SE; ++SI)
113 if (!Blocks.Loop.count(*SI))
114 Blocks.Exits.insert(*SI);
115 }
116}
117
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000118void SplitAnalysis::print(const LoopBlocks &B, raw_ostream &OS) const {
119 OS << "Loop:";
120 print(B.Loop, OS);
121 OS << ", preds:";
122 print(B.Preds, OS);
123 OS << ", exits:";
124 print(B.Exits, OS);
125}
126
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000127/// analyzeLoopPeripheralUse - Return an enum describing how curli_ is used in
128/// and around the Loop.
129SplitAnalysis::LoopPeripheralUse SplitAnalysis::
130analyzeLoopPeripheralUse(const SplitAnalysis::LoopBlocks &Blocks) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000131 LoopPeripheralUse use = ContainedInLoop;
132 for (BlockCountMap::iterator I = usingBlocks_.begin(), E = usingBlocks_.end();
133 I != E; ++I) {
134 const MachineBasicBlock *MBB = I->first;
135 // Is this a peripheral block?
136 if (use < MultiPeripheral &&
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000137 (Blocks.Preds.count(MBB) || Blocks.Exits.count(MBB))) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000138 if (I->second > 1) use = MultiPeripheral;
139 else use = SinglePeripheral;
140 continue;
141 }
142 // Is it a loop block?
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000143 if (Blocks.Loop.count(MBB))
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000144 continue;
145 // It must be an unrelated block.
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000146 DEBUG(dbgs() << ", outside: BB#" << MBB->getNumber());
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000147 return OutsideLoop;
148 }
149 return use;
150}
151
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000152/// getCriticalExits - It may be necessary to partially break critical edges
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000153/// leaving the loop if an exit block has predecessors from outside the loop
154/// periphery.
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000155void SplitAnalysis::getCriticalExits(const SplitAnalysis::LoopBlocks &Blocks,
156 BlockPtrSet &CriticalExits) {
157 CriticalExits.clear();
158
Jakob Stoklund Olesen0960a652010-10-27 00:39:05 +0000159 // A critical exit block has curli live-in, and has a predecessor that is not
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000160 // in the loop nor a loop predecessor. For such an exit block, the edges
161 // carrying the new variable must be moved to a new pre-exit block.
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000162 for (BlockPtrSet::iterator I = Blocks.Exits.begin(), E = Blocks.Exits.end();
163 I != E; ++I) {
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000164 const MachineBasicBlock *Exit = *I;
165 // A single-predecessor exit block is definitely not a critical edge.
166 if (Exit->pred_size() == 1)
167 continue;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000168 // This exit may not have curli live in at all. No need to split.
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000169 if (!lis_.isLiveInToMBB(*curli_, Exit))
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000170 continue;
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000171 // Does this exit block have a predecessor that is not a loop block or loop
172 // predecessor?
173 for (MachineBasicBlock::const_pred_iterator PI = Exit->pred_begin(),
174 PE = Exit->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000175 const MachineBasicBlock *Pred = *PI;
176 if (Blocks.Loop.count(Pred) || Blocks.Preds.count(Pred))
177 continue;
178 // This is a critical exit block, and we need to split the exit edge.
Jakob Stoklund Olesen2c1442e2010-10-22 20:28:23 +0000179 CriticalExits.insert(Exit);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000180 break;
181 }
182 }
183}
184
Jakob Stoklund Olesen0960a652010-10-27 00:39:05 +0000185void SplitAnalysis::getCriticalPreds(const SplitAnalysis::LoopBlocks &Blocks,
186 BlockPtrSet &CriticalPreds) {
187 CriticalPreds.clear();
188
189 // A critical predecessor block has curli live-out, and has a successor that
190 // has curli live-in and is not in the loop nor a loop exit block. For such a
191 // predecessor block, we must carry the value in both the 'inside' and
192 // 'outside' registers.
193 for (BlockPtrSet::iterator I = Blocks.Preds.begin(), E = Blocks.Preds.end();
194 I != E; ++I) {
195 const MachineBasicBlock *Pred = *I;
196 // Definitely not a critical edge.
197 if (Pred->succ_size() == 1)
198 continue;
199 // This block may not have curli live out at all if there is a PHI.
200 if (!lis_.isLiveOutOfMBB(*curli_, Pred))
201 continue;
202 // Does this block have a successor outside the loop?
203 for (MachineBasicBlock::const_pred_iterator SI = Pred->succ_begin(),
204 SE = Pred->succ_end(); SI != SE; ++SI) {
205 const MachineBasicBlock *Succ = *SI;
206 if (Blocks.Loop.count(Succ) || Blocks.Exits.count(Succ))
207 continue;
208 if (!lis_.isLiveInToMBB(*curli_, Succ))
209 continue;
210 // This is a critical predecessor block.
211 CriticalPreds.insert(Pred);
212 break;
213 }
214 }
215}
216
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000217/// canSplitCriticalExits - Return true if it is possible to insert new exit
218/// blocks before the blocks in CriticalExits.
219bool
220SplitAnalysis::canSplitCriticalExits(const SplitAnalysis::LoopBlocks &Blocks,
221 BlockPtrSet &CriticalExits) {
222 // If we don't allow critical edge splitting, require no critical exits.
223 if (!AllowSplit)
224 return CriticalExits.empty();
225
226 for (BlockPtrSet::iterator I = CriticalExits.begin(), E = CriticalExits.end();
227 I != E; ++I) {
228 const MachineBasicBlock *Succ = *I;
229 // We want to insert a new pre-exit MBB before Succ, and change all the
230 // in-loop blocks to branch to the pre-exit instead of Succ.
231 // Check that all the in-loop predecessors can be changed.
232 for (MachineBasicBlock::const_pred_iterator PI = Succ->pred_begin(),
233 PE = Succ->pred_end(); PI != PE; ++PI) {
234 const MachineBasicBlock *Pred = *PI;
235 // The external predecessors won't be altered.
236 if (!Blocks.Loop.count(Pred) && !Blocks.Preds.count(Pred))
237 continue;
238 if (!canAnalyzeBranch(Pred))
239 return false;
240 }
241
242 // If Succ's layout predecessor falls through, that too must be analyzable.
243 // We need to insert the pre-exit block in the gap.
244 MachineFunction::const_iterator MFI = Succ;
245 if (MFI == mf_.begin())
246 continue;
247 if (!canAnalyzeBranch(--MFI))
248 return false;
249 }
250 // No problems found.
251 return true;
252}
253
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000254void SplitAnalysis::analyze(const LiveInterval *li) {
255 clear();
256 curli_ = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000257 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000258}
259
260const MachineLoop *SplitAnalysis::getBestSplitLoop() {
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000261 assert(curli_ && "Call analyze() before getBestSplitLoop");
262 if (usingLoops_.empty())
263 return 0;
264
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000265 LoopPtrSet Loops;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000266 LoopBlocks Blocks;
267 BlockPtrSet CriticalExits;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000268
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000269 // We split around loops where curli is used outside the periphery.
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000270 for (LoopCountMap::const_iterator I = usingLoops_.begin(),
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000271 E = usingLoops_.end(); I != E; ++I) {
Jakob Stoklund Olesen2dee7a52010-08-12 23:02:55 +0000272 const MachineLoop *Loop = I->first;
273 getLoopBlocks(Loop, Blocks);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000274 DEBUG({ dbgs() << " "; print(Blocks, dbgs()); });
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000275
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000276 switch(analyzeLoopPeripheralUse(Blocks)) {
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000277 case OutsideLoop:
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000278 break;
279 case MultiPeripheral:
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000280 // FIXME: We could split a live range with multiple uses in a peripheral
281 // block and still make progress. However, it is possible that splitting
282 // another live range will insert copies into a peripheral block, and
283 // there is a small chance we can enter an infinity loop, inserting copies
284 // forever.
285 // For safety, stick to splitting live ranges with uses outside the
286 // periphery.
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000287 DEBUG(dbgs() << ": multiple peripheral uses\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000288 break;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000289 case ContainedInLoop:
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000290 DEBUG(dbgs() << ": fully contained\n");
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000291 continue;
292 case SinglePeripheral:
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000293 DEBUG(dbgs() << ": single peripheral use\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000294 continue;
295 }
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000296 // Will it be possible to split around this loop?
297 getCriticalExits(Blocks, CriticalExits);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000298 DEBUG(dbgs() << ": " << CriticalExits.size() << " critical exits\n");
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000299 if (!canSplitCriticalExits(Blocks, CriticalExits))
300 continue;
301 // This is a possible split.
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000302 Loops.insert(Loop);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000303 }
304
Jakob Stoklund Olesenab00e9f2010-10-14 18:26:45 +0000305 DEBUG(dbgs() << " getBestSplitLoop found " << Loops.size()
306 << " candidate loops.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000307
308 if (Loops.empty())
309 return 0;
310
311 // Pick the earliest loop.
312 // FIXME: Are there other heuristics to consider?
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000313 const MachineLoop *Best = 0;
314 SlotIndex BestIdx;
315 for (LoopPtrSet::const_iterator I = Loops.begin(), E = Loops.end(); I != E;
316 ++I) {
317 SlotIndex Idx = lis_.getMBBStartIdx((*I)->getHeader());
318 if (!Best || Idx < BestIdx)
319 Best = *I, BestIdx = Idx;
320 }
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000321 DEBUG(dbgs() << " getBestSplitLoop found " << *Best);
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000322 return Best;
323}
324
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000325//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000326// LiveIntervalMap
327//===----------------------------------------------------------------------===//
328
Jakob Stoklund Olesenb3e96812010-09-13 21:29:45 +0000329// Work around the fact that the std::pair constructors are broken for pointer
330// pairs in some implementations. makeVV(x, 0) works.
331static inline std::pair<const VNInfo*, VNInfo*>
332makeVV(const VNInfo *a, VNInfo *b) {
333 return std::make_pair(a, b);
334}
335
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000336void LiveIntervalMap::reset(LiveInterval *li) {
337 li_ = li;
338 valueMap_.clear();
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000339 liveOutCache_.clear();
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000340}
341
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000342bool LiveIntervalMap::isComplexMapped(const VNInfo *ParentVNI) const {
343 ValueMap::const_iterator i = valueMap_.find(ParentVNI);
344 return i != valueMap_.end() && i->second == 0;
345}
346
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000347// defValue - Introduce a li_ def for ParentVNI that could be later than
348// ParentVNI->def.
349VNInfo *LiveIntervalMap::defValue(const VNInfo *ParentVNI, SlotIndex Idx) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000350 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000351 assert(ParentVNI && "Mapping NULL value");
352 assert(Idx.isValid() && "Invalid SlotIndex");
353 assert(parentli_.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
354
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000355 // Create a new value.
Lang Hames6e2968c2010-09-25 12:04:16 +0000356 VNInfo *VNI = li_->getNextValue(Idx, 0, lis_.getVNInfoAllocator());
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000357
Jakob Stoklund Olesen79c02622010-10-26 22:36:02 +0000358 // Preserve the PHIDef bit.
359 if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
360 VNI->setIsPHIDef(true);
361
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000362 // Use insert for lookup, so we can add missing values with a second lookup.
363 std::pair<ValueMap::iterator,bool> InsP =
364 valueMap_.insert(makeVV(ParentVNI, Idx == ParentVNI->def ? VNI : 0));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000365
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000366 // This is now a complex def. Mark with a NULL in valueMap.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000367 if (!InsP.second)
368 InsP.first->second = 0;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000369
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000370 return VNI;
371}
372
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000373
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000374// mapValue - Find the mapped value for ParentVNI at Idx.
375// Potentially create phi-def values.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000376VNInfo *LiveIntervalMap::mapValue(const VNInfo *ParentVNI, SlotIndex Idx,
377 bool *simple) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000378 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000379 assert(ParentVNI && "Mapping NULL value");
380 assert(Idx.isValid() && "Invalid SlotIndex");
381 assert(parentli_.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
382
383 // Use insert for lookup, so we can add missing values with a second lookup.
384 std::pair<ValueMap::iterator,bool> InsP =
Jakob Stoklund Olesenb3e96812010-09-13 21:29:45 +0000385 valueMap_.insert(makeVV(ParentVNI, 0));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000386
387 // This was an unknown value. Create a simple mapping.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000388 if (InsP.second) {
389 if (simple) *simple = true;
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000390 return InsP.first->second = li_->createValueCopy(ParentVNI,
391 lis_.getVNInfoAllocator());
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000392 }
393
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000394 // This was a simple mapped value.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000395 if (InsP.first->second) {
396 if (simple) *simple = true;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000397 return InsP.first->second;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000398 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000399
400 // This is a complex mapped value. There may be multiple defs, and we may need
401 // to create phi-defs.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000402 if (simple) *simple = false;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000403 MachineBasicBlock *IdxMBB = lis_.getMBBFromIndex(Idx);
404 assert(IdxMBB && "No MBB at Idx");
405
406 // Is there a def in the same MBB we can extend?
407 if (VNInfo *VNI = extendTo(IdxMBB, Idx))
408 return VNI;
409
410 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
411 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000412 // Perform a search for all predecessor blocks where we know the dominating
413 // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
414 DEBUG(dbgs() << "\n Reaching defs for BB#" << IdxMBB->getNumber()
415 << " at " << Idx << " in " << *li_ << '\n');
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000416
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000417 // Blocks where li_ should be live-in.
418 SmallVector<MachineDomTreeNode*, 16> LiveIn;
419 LiveIn.push_back(mdt_[IdxMBB]);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000420
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000421 // Using liveOutCache_ as a visited set, perform a BFS for all reaching defs.
422 for (unsigned i = 0; i != LiveIn.size(); ++i) {
423 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
424 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
425 PE = MBB->pred_end(); PI != PE; ++PI) {
426 MachineBasicBlock *Pred = *PI;
427 // Is this a known live-out block?
428 std::pair<LiveOutMap::iterator,bool> LOIP =
429 liveOutCache_.insert(std::make_pair(Pred, LiveOutPair()));
430 // Yes, we have been here before.
431 if (!LOIP.second) {
432 if (VNInfo *VNI = LOIP.first->second.first) {
433 DEBUG(dbgs() << " known valno #" << VNI->id
434 << " at BB#" << Pred->getNumber() << '\n');
435 }
436 continue;
437 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000438
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000439 // Does Pred provide a live-out value?
440 SlotIndex Last = lis_.getMBBEndIdx(Pred).getPrevSlot();
441 if (VNInfo *VNI = extendTo(Pred, Last)) {
442 MachineBasicBlock *DefMBB = lis_.getMBBFromIndex(VNI->def);
443 DEBUG(dbgs() << " found valno #" << VNI->id
Jakob Stoklund Olesenc94fcb12010-10-29 17:37:25 +0000444 << " from BB#" << DefMBB->getNumber()
445 << " at BB#" << Pred->getNumber() << '\n');
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000446 LiveOutPair &LOP = LOIP.first->second;
447 LOP.first = VNI;
448 LOP.second = mdt_[lis_.getMBBFromIndex(VNI->def)];
449 continue;
450 }
451 // No, we need a live-in value for Pred as well
452 if (Pred != IdxMBB)
453 LiveIn.push_back(mdt_[Pred]);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000454 }
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000455 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000456
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000457 // We may need to add phi-def values to preserve the SSA form.
458 // This is essentially the same iterative algorithm that SSAUpdater uses,
459 // except we already have a dominator tree, so we don't have to recompute it.
460 VNInfo *IdxVNI = 0;
461 unsigned Changes;
462 do {
463 Changes = 0;
464 DEBUG(dbgs() << " Iterating over " << LiveIn.size() << " blocks.\n");
465 // Propagate live-out values down the dominator tree, inserting phi-defs when
466 // necessary. Since LiveIn was created by a BFS, going backwards makes it more
467 // likely for us to visit immediate dominators before their children.
468 for (unsigned i = LiveIn.size(); i; --i) {
469 MachineDomTreeNode *Node = LiveIn[i-1];
470 MachineBasicBlock *MBB = Node->getBlock();
471 MachineDomTreeNode *IDom = Node->getIDom();
472 LiveOutPair IDomValue;
473 // We need a live-in value to a block with no immediate dominator?
474 // This is probably an unreachable block that has survived somehow.
475 bool needPHI = !IDom;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000476
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000477 // Get the IDom live-out value.
478 if (!needPHI) {
479 LiveOutMap::iterator I = liveOutCache_.find(IDom->getBlock());
480 if (I != liveOutCache_.end())
481 IDomValue = I->second;
482 else
483 // If IDom is outside our set of live-out blocks, there must be new
484 // defs, and we need a phi-def here.
485 needPHI = true;
486 }
Jakob Stoklund Olesen984a7fc2010-10-05 20:36:28 +0000487
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000488 // IDom dominates all of our predecessors, but it may not be the immediate
489 // dominator. Check if any of them have live-out values that are properly
490 // dominated by IDom. If so, we need a phi-def here.
491 if (!needPHI) {
492 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
493 PE = MBB->pred_end(); PI != PE; ++PI) {
494 LiveOutPair Value = liveOutCache_[*PI];
495 if (!Value.first || Value.first == IDomValue.first)
496 continue;
497 // This predecessor is carrying something other than IDomValue.
498 // It could be because IDomValue hasn't propagated yet, or it could be
499 // because MBB is in the dominance frontier of that value.
500 if (mdt_.dominates(IDom, Value.second)) {
501 needPHI = true;
502 break;
503 }
504 }
505 }
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000506
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000507 // Create a phi-def if required.
508 if (needPHI) {
509 ++Changes;
510 SlotIndex Start = lis_.getMBBStartIdx(MBB);
511 VNInfo *VNI = li_->getNextValue(Start, 0, lis_.getVNInfoAllocator());
512 VNI->setIsPHIDef(true);
513 DEBUG(dbgs() << " - BB#" << MBB->getNumber()
514 << " phi-def #" << VNI->id << " at " << Start << '\n');
515 // We no longer need li_ to be live-in.
516 LiveIn.erase(LiveIn.begin()+(i-1));
517 // Blocks in LiveIn are either IdxMBB, or have a value live-through.
518 if (MBB == IdxMBB)
519 IdxVNI = VNI;
520 // Check if we need to update live-out info.
521 LiveOutMap::iterator I = liveOutCache_.find(MBB);
522 if (I == liveOutCache_.end() || I->second.second == Node) {
523 // We already have a live-out defined in MBB, so this must be IdxMBB.
524 assert(MBB == IdxMBB && "Adding phi-def to known live-out");
525 li_->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
526 } else {
527 // This phi-def is also live-out, so color the whole block.
528 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB), VNI));
529 I->second = LiveOutPair(VNI, Node);
530 }
531 } else if (IDomValue.first) {
Jakob Stoklund Olesenc94fcb12010-10-29 17:37:25 +0000532 // No phi-def here. Remember incoming value for IdxMBB.
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000533 if (MBB == IdxMBB)
534 IdxVNI = IDomValue.first;
Jakob Stoklund Olesenc94fcb12010-10-29 17:37:25 +0000535 // Propagate IDomValue if needed:
536 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000537 LiveOutMap::iterator I = liveOutCache_.find(MBB);
Jakob Stoklund Olesenc94fcb12010-10-29 17:37:25 +0000538 if (I != liveOutCache_.end() && I->second.second != Node &&
539 I->second.first != IDomValue.first) {
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000540 ++Changes;
541 I->second = IDomValue;
542 DEBUG(dbgs() << " - BB#" << MBB->getNumber()
543 << " idom valno #" << IDomValue.first->id
544 << " from BB#" << IDom->getBlock()->getNumber() << '\n');
545 }
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000546 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000547 }
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000548 DEBUG(dbgs() << " - made " << Changes << " changes.\n");
549 } while (Changes);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000550
551 assert(IdxVNI && "Didn't find value for Idx");
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000552
553#ifndef NDEBUG
554 // Check the liveOutCache_ invariants.
555 for (LiveOutMap::iterator I = liveOutCache_.begin(), E = liveOutCache_.end();
556 I != E; ++I) {
557 assert(I->first && "Null MBB entry in cache");
558 assert(I->second.first && "Null VNInfo in cache");
559 assert(I->second.second && "Null DomTreeNode in cache");
560 if (I->second.second->getBlock() == I->first)
561 continue;
562 for (MachineBasicBlock::pred_iterator PI = I->first->pred_begin(),
563 PE = I->first->pred_end(); PI != PE; ++PI)
564 assert(liveOutCache_.lookup(*PI) == I->second && "Bad invariant");
565 }
566#endif
567
568 // Since we went through the trouble of a full BFS visiting all reaching defs,
569 // the values in LiveIn are now accurate. No more phi-defs are needed
570 // for these blocks, so we can color the live ranges.
571 // This makes the next mapValue call much faster.
572 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
573 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
574 SlotIndex Start = lis_.getMBBStartIdx(MBB);
575 if (MBB == IdxMBB) {
576 li_->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
577 continue;
578 }
579 // Anything in LiveIn other than IdxMBB is live-through.
580 VNInfo *VNI = liveOutCache_.lookup(MBB).first;
581 assert(VNI && "Missing block value");
582 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB), VNI));
583 }
584
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000585 return IdxVNI;
586}
587
588// extendTo - Find the last li_ value defined in MBB at or before Idx. The
589// parentli_ is assumed to be live at Idx. Extend the live range to Idx.
590// Return the found VNInfo, or NULL.
Jakob Stoklund Olesenc95c1462010-10-27 00:39:07 +0000591VNInfo *LiveIntervalMap::extendTo(const MachineBasicBlock *MBB, SlotIndex Idx) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000592 assert(li_ && "call reset first");
593 LiveInterval::iterator I = std::upper_bound(li_->begin(), li_->end(), Idx);
594 if (I == li_->begin())
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000595 return 0;
596 --I;
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000597 if (I->end <= lis_.getMBBStartIdx(MBB))
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000598 return 0;
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000599 if (I->end <= Idx)
600 I->end = Idx.getNextSlot();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000601 return I->valno;
602}
603
604// addSimpleRange - Add a simple range from parentli_ to li_.
605// ParentVNI must be live in the [Start;End) interval.
606void LiveIntervalMap::addSimpleRange(SlotIndex Start, SlotIndex End,
607 const VNInfo *ParentVNI) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000608 assert(li_ && "call reset first");
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000609 bool simple;
610 VNInfo *VNI = mapValue(ParentVNI, Start, &simple);
611 // A simple mapping is easy.
612 if (simple) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000613 li_->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000614 return;
615 }
616
617 // ParentVNI is a complex value. We must map per MBB.
618 MachineFunction::iterator MBB = lis_.getMBBFromIndex(Start);
Jakob Stoklund Olesendbc36092010-10-05 22:19:29 +0000619 MachineFunction::iterator MBBE = lis_.getMBBFromIndex(End.getPrevSlot());
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000620
621 if (MBB == MBBE) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000622 li_->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000623 return;
624 }
625
626 // First block.
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000627 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000628
629 // Run sequence of full blocks.
630 for (++MBB; MBB != MBBE; ++MBB) {
631 Start = lis_.getMBBStartIdx(MBB);
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000632 li_->addRange(LiveRange(Start, lis_.getMBBEndIdx(MBB),
633 mapValue(ParentVNI, Start)));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000634 }
635
636 // Final block.
637 Start = lis_.getMBBStartIdx(MBB);
638 if (Start != End)
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000639 li_->addRange(LiveRange(Start, End, mapValue(ParentVNI, Start)));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000640}
641
642/// addRange - Add live ranges to li_ where [Start;End) intersects parentli_.
643/// All needed values whose def is not inside [Start;End) must be defined
644/// beforehand so mapValue will work.
645void LiveIntervalMap::addRange(SlotIndex Start, SlotIndex End) {
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000646 assert(li_ && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000647 LiveInterval::const_iterator B = parentli_.begin(), E = parentli_.end();
648 LiveInterval::const_iterator I = std::lower_bound(B, E, Start);
649
650 // Check if --I begins before Start and overlaps.
651 if (I != B) {
652 --I;
653 if (I->end > Start)
654 addSimpleRange(Start, std::min(End, I->end), I->valno);
655 ++I;
656 }
657
658 // The remaining ranges begin after Start.
659 for (;I != E && I->start < End; ++I)
660 addSimpleRange(I->start, std::min(End, I->end), I->valno);
661}
662
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000663VNInfo *LiveIntervalMap::defByCopyFrom(unsigned Reg,
664 const VNInfo *ParentVNI,
665 MachineBasicBlock &MBB,
666 MachineBasicBlock::iterator I) {
667 const TargetInstrDesc &TID = MBB.getParent()->getTarget().getInstrInfo()->
668 get(TargetOpcode::COPY);
669 MachineInstr *MI = BuildMI(MBB, I, DebugLoc(), TID, li_->reg).addReg(Reg);
670 SlotIndex DefIdx = lis_.InsertMachineInstrInMaps(MI).getDefIndex();
671 VNInfo *VNI = defValue(ParentVNI, DefIdx);
672 VNI->setCopy(MI);
673 li_->addRange(LiveRange(DefIdx, DefIdx.getNextSlot(), VNI));
674 return VNI;
675}
676
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000677//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000678// Split Editor
679//===----------------------------------------------------------------------===//
680
681/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000682SplitEditor::SplitEditor(SplitAnalysis &sa,
683 LiveIntervals &lis,
684 VirtRegMap &vrm,
685 MachineDominatorTree &mdt,
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000686 LiveRangeEdit &edit)
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000687 : sa_(sa), lis_(lis), vrm_(vrm),
688 mri_(vrm.getMachineFunction().getRegInfo()),
689 tii_(*vrm.getMachineFunction().getTarget().getInstrInfo()),
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000690 edit_(edit),
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000691 dupli_(lis_, mdt, edit.getParent()),
692 openli_(lis_, mdt, edit.getParent())
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000693{
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000694}
695
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000696bool SplitEditor::intervalsLiveAt(SlotIndex Idx) const {
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000697 for (LiveRangeEdit::iterator I = edit_.begin(), E = edit_.end(); I != E; ++I)
698 if (*I != dupli_.getLI() && (*I)->liveAt(Idx))
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000699 return true;
700 return false;
701}
702
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000703/// Create a new virtual register and live interval.
704void SplitEditor::openIntv() {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000705 assert(!openli_.getLI() && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000706
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000707 if (!dupli_.getLI())
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000708 dupli_.reset(&edit_.create(mri_, lis_, vrm_));
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000709
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000710 openli_.reset(&edit_.create(mri_, lis_, vrm_));
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000711}
712
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000713/// enterIntvBefore - Enter openli before the instruction at Idx. If curli is
714/// not live before Idx, a COPY is not inserted.
715void SplitEditor::enterIntvBefore(SlotIndex Idx) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000716 assert(openli_.getLI() && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000717 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000718 VNInfo *ParentVNI = edit_.getParent().getVNInfoAt(Idx.getUseIndex());
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000719 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000720 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000721 return;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000722 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000723 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000724 truncatedValues.insert(ParentVNI);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000725 MachineInstr *MI = lis_.getInstructionFromIndex(Idx);
726 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000727 VNInfo *VNI = openli_.defByCopyFrom(edit_.getReg(), ParentVNI,
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000728 *MI->getParent(), MI);
729 openli_.getLI()->addRange(LiveRange(VNI->def, Idx.getDefIndex(), VNI));
730 DEBUG(dbgs() << ": " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000731}
732
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000733/// enterIntvAtEnd - Enter openli at the end of MBB.
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000734void SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000735 assert(openli_.getLI() && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000736 SlotIndex End = lis_.getMBBEndIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000737 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << End);
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000738 VNInfo *ParentVNI = edit_.getParent().getVNInfoAt(End.getPrevSlot());
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000739 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000740 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000741 return;
742 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000743 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000744 truncatedValues.insert(ParentVNI);
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000745 VNInfo *VNI = openli_.defByCopyFrom(edit_.getReg(), ParentVNI,
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000746 MBB, MBB.getFirstTerminator());
747 // Make sure openli is live out of MBB.
748 openli_.getLI()->addRange(LiveRange(VNI->def, End, VNI));
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000749 DEBUG(dbgs() << ": " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000750}
751
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000752/// useIntv - indicate that all instructions in MBB should use openli.
753void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
754 useIntv(lis_.getMBBStartIdx(&MBB), lis_.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000755}
756
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000757void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000758 assert(openli_.getLI() && "openIntv not called before useIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000759 openli_.addRange(Start, End);
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000760 DEBUG(dbgs() << " use [" << Start << ';' << End << "): "
761 << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000762}
763
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000764/// leaveIntvAfter - Leave openli after the instruction at Idx.
765void SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000766 assert(openli_.getLI() && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000767 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000768
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000769 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000770 VNInfo *ParentVNI = edit_.getParent().getVNInfoAt(Idx.getBoundaryIndex());
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000771 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000772 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000773 return;
774 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000775 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000776
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000777 MachineBasicBlock::iterator MII = lis_.getInstructionFromIndex(Idx);
778 MachineBasicBlock *MBB = MII->getParent();
779 VNInfo *VNI = dupli_.defByCopyFrom(openli_.getLI()->reg, ParentVNI, *MBB,
780 llvm::next(MII));
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000781
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000782 // Finally we must make sure that openli is properly extended from Idx to the
783 // new copy.
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000784 openli_.addSimpleRange(Idx.getBoundaryIndex(), VNI->def, ParentVNI);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000785 DEBUG(dbgs() << ": " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000786}
787
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000788/// leaveIntvAtTop - Leave the interval at the top of MBB.
789/// Currently, only one value can leave the interval.
790void SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000791 assert(openli_.getLI() && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000792 SlotIndex Start = lis_.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000793 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000794
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000795 VNInfo *ParentVNI = edit_.getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000796 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000797 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000798 return;
799 }
800
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000801 // We are going to insert a back copy, so we must have a dupli_.
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000802 VNInfo *VNI = dupli_.defByCopyFrom(openli_.getLI()->reg, ParentVNI,
803 MBB, MBB.begin());
Jakob Stoklund Olesen5eb308b2010-08-06 22:17:33 +0000804
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000805 // Finally we must make sure that openli is properly extended from Start to
806 // the new copy.
Jakob Stoklund Olesenfc60d772010-10-05 20:36:25 +0000807 openli_.addSimpleRange(Start, VNI->def, ParentVNI);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000808 DEBUG(dbgs() << ": " << *openli_.getLI() << '\n');
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000809}
810
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000811/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000812/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000813void SplitEditor::closeIntv() {
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000814 assert(openli_.getLI() && "openIntv not called before closeIntv");
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000815
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000816 DEBUG(dbgs() << " closeIntv cleaning up\n");
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000817 DEBUG(dbgs() << " open " << *openli_.getLI() << '\n');
Jakob Stoklund Olesendd9f3fd2010-09-13 23:29:11 +0000818 openli_.reset(0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000819}
820
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000821/// rewrite - Rewrite all uses of reg to use the new registers.
822void SplitEditor::rewrite(unsigned reg) {
823 for (MachineRegisterInfo::reg_iterator RI = mri_.reg_begin(reg),
824 RE = mri_.reg_end(); RI != RE;) {
825 MachineOperand &MO = RI.getOperand();
826 MachineInstr *MI = MO.getParent();
827 ++RI;
828 if (MI->isDebugValue()) {
829 DEBUG(dbgs() << "Zapping " << *MI);
830 // FIXME: We can do much better with debug values.
831 MO.setReg(0);
832 continue;
833 }
834 SlotIndex Idx = lis_.getInstructionIndex(MI);
835 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
836 LiveInterval *LI = 0;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000837 for (LiveRangeEdit::iterator I = edit_.begin(), E = edit_.end(); I != E;
838 ++I) {
839 LiveInterval *testli = *I;
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000840 if (testli->liveAt(Idx)) {
841 LI = testli;
842 break;
843 }
844 }
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000845 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'<< Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000846 assert(LI && "No register was live at use");
847 MO.setReg(LI->reg);
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000848 DEBUG(dbgs() << '\t' << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000849 }
850}
851
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000852void
853SplitEditor::addTruncSimpleRange(SlotIndex Start, SlotIndex End, VNInfo *VNI) {
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000854 // Build vector of iterator pairs from the intervals.
855 typedef std::pair<LiveInterval::const_iterator,
856 LiveInterval::const_iterator> IIPair;
857 SmallVector<IIPair, 8> Iters;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000858 for (LiveRangeEdit::iterator LI = edit_.begin(), LE = edit_.end(); LI != LE;
859 ++LI) {
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000860 if (*LI == dupli_.getLI())
861 continue;
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000862 LiveInterval::const_iterator I = (*LI)->find(Start);
863 LiveInterval::const_iterator E = (*LI)->end();
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000864 if (I != E)
865 Iters.push_back(std::make_pair(I, E));
866 }
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000867
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000868 SlotIndex sidx = Start;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000869 // Break [Start;End) into segments that don't overlap any intervals.
870 for (;;) {
871 SlotIndex next = sidx, eidx = End;
872 // Find overlapping intervals.
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000873 for (unsigned i = 0; i != Iters.size() && sidx < eidx; ++i) {
874 LiveInterval::const_iterator I = Iters[i].first;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000875 // Interval I is overlapping [sidx;eidx). Trim sidx.
876 if (I->start <= sidx) {
877 sidx = I->end;
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000878 // Move to the next run, remove iters when all are consumed.
879 I = ++Iters[i].first;
880 if (I == Iters[i].second) {
881 Iters.erase(Iters.begin() + i);
882 --i;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000883 continue;
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000884 }
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000885 }
886 // Trim eidx too if needed.
887 if (I->start >= eidx)
888 continue;
889 eidx = I->start;
Jakob Stoklund Olesen4b3041c2010-10-07 17:56:39 +0000890 next = I->end;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000891 }
892 // Now, [sidx;eidx) doesn't overlap anything in intervals_.
893 if (sidx < eidx)
894 dupli_.addSimpleRange(sidx, eidx, VNI);
895 // If the interval end was truncated, we can try again from next.
896 if (next <= sidx)
897 break;
898 sidx = next;
899 }
900}
901
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000902void SplitEditor::computeRemainder() {
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000903 // First we need to fill in the live ranges in dupli.
904 // If values were redefined, we need a full recoloring with SSA update.
905 // If values were truncated, we only need to truncate the ranges.
906 // If values were partially rematted, we should shrink to uses.
907 // If values were fully rematted, they should be omitted.
908 // FIXME: If a single value is redefined, just move the def and truncate.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000909 LiveInterval &parent = edit_.getParent();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000910
911 // Values that are fully contained in the split intervals.
912 SmallPtrSet<const VNInfo*, 8> deadValues;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000913 // Map all curli values that should have live defs in dupli.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000914 for (LiveInterval::const_vni_iterator I = parent.vni_begin(),
915 E = parent.vni_end(); I != E; ++I) {
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000916 const VNInfo *VNI = *I;
917 // Original def is contained in the split intervals.
918 if (intervalsLiveAt(VNI->def)) {
919 // Did this value escape?
920 if (dupli_.isMapped(VNI))
921 truncatedValues.insert(VNI);
922 else
923 deadValues.insert(VNI);
924 continue;
925 }
926 // Add minimal live range at the definition.
927 VNInfo *DVNI = dupli_.defValue(VNI, VNI->def);
928 dupli_.getLI()->addRange(LiveRange(VNI->def, VNI->def.getNextSlot(), DVNI));
929 }
930
931 // Add all ranges to dupli.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000932 for (LiveInterval::const_iterator I = parent.begin(), E = parent.end();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000933 I != E; ++I) {
934 const LiveRange &LR = *I;
935 if (truncatedValues.count(LR.valno)) {
936 // recolor after removing intervals_.
937 addTruncSimpleRange(LR.start, LR.end, LR.valno);
938 } else if (!deadValues.count(LR.valno)) {
939 // recolor without truncation.
940 dupli_.addSimpleRange(LR.start, LR.end, LR.valno);
941 }
942 }
Jakob Stoklund Olesenc95c1462010-10-27 00:39:07 +0000943
944 // Extend dupli_ to be live out of any critical loop predecessors.
945 // This means we have multiple registers live out of those blocks.
946 // The alternative would be to split the critical edges.
947 if (criticalPreds_.empty())
948 return;
949 for (SplitAnalysis::BlockPtrSet::iterator I = criticalPreds_.begin(),
950 E = criticalPreds_.end(); I != E; ++I)
951 dupli_.extendTo(*I, lis_.getMBBEndIdx(*I).getPrevSlot());
952 criticalPreds_.clear();
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000953}
954
955void SplitEditor::finish() {
956 assert(!openli_.getLI() && "Previous LI not closed before rewrite");
957 assert(dupli_.getLI() && "No dupli for rewrite. Noop spilt?");
958
959 // Complete dupli liveness.
960 computeRemainder();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000961
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000962 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesenf1354ae2010-10-26 22:36:05 +0000963 for (LiveRangeEdit::iterator I = edit_.begin(), E = edit_.end(); I != E; ++I)
964 (*I)->RenumberValues(lis_);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000965
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000966 // Rewrite instructions.
Jakob Stoklund Olesen9d5d48b2010-10-15 00:34:01 +0000967 rewrite(edit_.getReg());
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000968
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000969 // Now check if any registers were separated into multiple components.
970 ConnectedVNInfoEqClasses ConEQ(lis_);
971 for (unsigned i = 0, e = edit_.size(); i != e; ++i) {
972 // Don't use iterators, they are invalidated by create() below.
973 LiveInterval *li = edit_.get(i);
974 unsigned NumComp = ConEQ.Classify(li);
975 if (NumComp <= 1)
976 continue;
977 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
978 SmallVector<LiveInterval*, 8> dups;
979 dups.push_back(li);
980 for (unsigned i = 1; i != NumComp; ++i)
981 dups.push_back(&edit_.create(mri_, lis_, vrm_));
982 ConEQ.Distribute(&dups[0]);
983 // Rewrite uses to the new regs.
984 rewrite(li->reg);
985 }
986
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000987 // Calculate spill weight and allocation hints for new intervals.
988 VirtRegAuxInfo vrai(vrm_.getMachineFunction(), lis_, sa_.loops_);
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000989 for (LiveRangeEdit::iterator I = edit_.begin(), E = edit_.end(); I != E; ++I){
990 LiveInterval &li = **I;
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000991 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000992 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000993 DEBUG(dbgs() << " new interval " << mri_.getRegClass(li.reg)->getName()
994 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000995 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000996}
997
998
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000999//===----------------------------------------------------------------------===//
1000// Loop Splitting
1001//===----------------------------------------------------------------------===//
1002
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +00001003void SplitEditor::splitAroundLoop(const MachineLoop *Loop) {
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001004 SplitAnalysis::LoopBlocks Blocks;
1005 sa_.getLoopBlocks(Loop, Blocks);
1006
Jakob Stoklund Olesen452a9fd2010-10-07 18:47:07 +00001007 DEBUG({
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +00001008 dbgs() << " splitAround"; sa_.print(Blocks, dbgs()); dbgs() << '\n';
Jakob Stoklund Olesen452a9fd2010-10-07 18:47:07 +00001009 });
1010
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001011 // Break critical edges as needed.
1012 SplitAnalysis::BlockPtrSet CriticalExits;
1013 sa_.getCriticalExits(Blocks, CriticalExits);
1014 assert(CriticalExits.empty() && "Cannot break critical exits yet");
1015
Jakob Stoklund Olesenc95c1462010-10-27 00:39:07 +00001016 // Get critical predecessors so computeRemainder can deal with them.
1017 sa_.getCriticalPreds(Blocks, criticalPreds_);
1018
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001019 // Create new live interval for the loop.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +00001020 openIntv();
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001021
1022 // Insert copies in the predecessors.
1023 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Preds.begin(),
1024 E = Blocks.Preds.end(); I != E; ++I) {
1025 MachineBasicBlock &MBB = const_cast<MachineBasicBlock&>(**I);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +00001026 enterIntvAtEnd(MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001027 }
1028
1029 // Switch all loop blocks.
1030 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Loop.begin(),
1031 E = Blocks.Loop.end(); I != E; ++I)
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +00001032 useIntv(**I);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001033
1034 // Insert back copies in the exit blocks.
1035 for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Exits.begin(),
1036 E = Blocks.Exits.end(); I != E; ++I) {
1037 MachineBasicBlock &MBB = const_cast<MachineBasicBlock&>(**I);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +00001038 leaveIntvAtTop(MBB);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001039 }
1040
1041 // Done.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +00001042 closeIntv();
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001043 finish();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001044}
1045
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001046
1047//===----------------------------------------------------------------------===//
1048// Single Block Splitting
1049//===----------------------------------------------------------------------===//
1050
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +00001051/// getMultiUseBlocks - if curli has more than one use in a basic block, it
1052/// may be an advantage to split curli for the duration of the block.
1053bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
1054 // If curli is local to one block, there is no point to splitting it.
1055 if (usingBlocks_.size() <= 1)
1056 return false;
1057 // Add blocks with multiple uses.
1058 for (BlockCountMap::iterator I = usingBlocks_.begin(), E = usingBlocks_.end();
1059 I != E; ++I)
1060 switch (I->second) {
1061 case 0:
1062 case 1:
1063 continue;
1064 case 2: {
1065 // When there are only two uses and curli is both live in and live out,
1066 // we don't really win anything by isolating the block since we would be
1067 // inserting two copies.
1068 // The remaing register would still have two uses in the block. (Unless it
1069 // separates into disconnected components).
1070 if (lis_.isLiveInToMBB(*curli_, I->first) &&
1071 lis_.isLiveOutOfMBB(*curli_, I->first))
1072 continue;
1073 } // Fall through.
1074 default:
1075 Blocks.insert(I->first);
1076 }
1077 return !Blocks.empty();
1078}
1079
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001080/// splitSingleBlocks - Split curli into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +00001081/// basic block in Blocks.
1082void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +00001083 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001084 // Determine the first and last instruction using curli in each block.
1085 typedef std::pair<SlotIndex,SlotIndex> IndexPair;
1086 typedef DenseMap<const MachineBasicBlock*,IndexPair> IndexPairMap;
1087 IndexPairMap MBBRange;
1088 for (SplitAnalysis::InstrPtrSet::const_iterator I = sa_.usingInstrs_.begin(),
1089 E = sa_.usingInstrs_.end(); I != E; ++I) {
1090 const MachineBasicBlock *MBB = (*I)->getParent();
1091 if (!Blocks.count(MBB))
1092 continue;
1093 SlotIndex Idx = lis_.getInstructionIndex(*I);
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +00001094 DEBUG(dbgs() << " BB#" << MBB->getNumber() << '\t' << Idx << '\t' << **I);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001095 IndexPair &IP = MBBRange[MBB];
1096 if (!IP.first.isValid() || Idx < IP.first)
1097 IP.first = Idx;
1098 if (!IP.second.isValid() || Idx > IP.second)
1099 IP.second = Idx;
1100 }
1101
1102 // Create a new interval for each block.
1103 for (SplitAnalysis::BlockPtrSet::const_iterator I = Blocks.begin(),
1104 E = Blocks.end(); I != E; ++I) {
1105 IndexPair &IP = MBBRange[*I];
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +00001106 DEBUG(dbgs() << " splitting for BB#" << (*I)->getNumber() << ": ["
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001107 << IP.first << ';' << IP.second << ")\n");
1108 assert(IP.first.isValid() && IP.second.isValid());
1109
1110 openIntv();
1111 enterIntvBefore(IP.first);
1112 useIntv(IP.first.getBaseIndex(), IP.second.getBoundaryIndex());
1113 leaveIntvAfter(IP.second);
1114 closeIntv();
1115 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001116 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001117}
1118
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001119
1120//===----------------------------------------------------------------------===//
1121// Sub Block Splitting
1122//===----------------------------------------------------------------------===//
1123
1124/// getBlockForInsideSplit - If curli is contained inside a single basic block,
1125/// and it wou pay to subdivide the interval inside that block, return it.
1126/// Otherwise return NULL. The returned block can be passed to
1127/// SplitEditor::splitInsideBlock.
1128const MachineBasicBlock *SplitAnalysis::getBlockForInsideSplit() {
1129 // The interval must be exclusive to one block.
1130 if (usingBlocks_.size() != 1)
1131 return 0;
1132 // Don't to this for less than 4 instructions. We want to be sure that
1133 // splitting actually reduces the instruction count per interval.
1134 if (usingInstrs_.size() < 4)
1135 return 0;
1136 return usingBlocks_.begin()->first;
1137}
1138
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +00001139/// splitInsideBlock - Split curli into multiple intervals inside MBB.
1140void SplitEditor::splitInsideBlock(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001141 SmallVector<SlotIndex, 32> Uses;
1142 Uses.reserve(sa_.usingInstrs_.size());
1143 for (SplitAnalysis::InstrPtrSet::const_iterator I = sa_.usingInstrs_.begin(),
1144 E = sa_.usingInstrs_.end(); I != E; ++I)
1145 if ((*I)->getParent() == MBB)
1146 Uses.push_back(lis_.getInstructionIndex(*I));
1147 DEBUG(dbgs() << " splitInsideBlock BB#" << MBB->getNumber() << " for "
1148 << Uses.size() << " instructions.\n");
1149 assert(Uses.size() >= 3 && "Need at least 3 instructions");
1150 array_pod_sort(Uses.begin(), Uses.end());
1151
1152 // Simple algorithm: Find the largest gap between uses as determined by slot
1153 // indices. Create new intervals for instructions before the gap and after the
1154 // gap.
1155 unsigned bestPos = 0;
1156 int bestGap = 0;
1157 DEBUG(dbgs() << " dist (" << Uses[0]);
1158 for (unsigned i = 1, e = Uses.size(); i != e; ++i) {
1159 int g = Uses[i-1].distance(Uses[i]);
1160 DEBUG(dbgs() << ") -" << g << "- (" << Uses[i]);
1161 if (g > bestGap)
1162 bestPos = i, bestGap = g;
1163 }
1164 DEBUG(dbgs() << "), best: -" << bestGap << "-\n");
1165
1166 // bestPos points to the first use after the best gap.
1167 assert(bestPos > 0 && "Invalid gap");
1168
1169 // FIXME: Don't create intervals for low densities.
1170
1171 // First interval before the gap. Don't create single-instr intervals.
1172 if (bestPos > 1) {
1173 openIntv();
1174 enterIntvBefore(Uses.front());
1175 useIntv(Uses.front().getBaseIndex(), Uses[bestPos-1].getBoundaryIndex());
1176 leaveIntvAfter(Uses[bestPos-1]);
1177 closeIntv();
1178 }
1179
1180 // Second interval after the gap.
1181 if (bestPos < Uses.size()-1) {
1182 openIntv();
1183 enterIntvBefore(Uses[bestPos]);
1184 useIntv(Uses[bestPos].getBaseIndex(), Uses.back().getBoundaryIndex());
1185 leaveIntvAfter(Uses.back());
1186 closeIntv();
1187 }
1188
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001189 finish();
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001190}