blob: fd5d50b7ecb8d6731d821a9bf26842822a5e412d [file] [log] [blame]
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001//===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the SplitAnalysis class as well as mutator functions for
11// live range splitting.
12//
13//===----------------------------------------------------------------------===//
14
Jakob Stoklund Olesen376dcbd2010-11-03 20:39:23 +000015#define DEBUG_TYPE "regalloc"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000016#include "SplitKit.h"
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000017#include "LiveRangeEdit.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000018#include "VirtRegMap.h"
Jakob Stoklund 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/MachineRegisterInfo.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000024#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000025#include "llvm/Support/Debug.h"
26#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000027#include "llvm/Target/TargetInstrInfo.h"
28#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000029
30using namespace llvm;
31
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000032static cl::opt<bool>
33AllowSplit("spiller-splits-edges",
34 cl::desc("Allow critical edge splitting during spilling"));
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000035
36//===----------------------------------------------------------------------===//
37// Split Analysis
38//===----------------------------------------------------------------------===//
39
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000040SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000041 const LiveIntervals &lis,
42 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000043 : MF(vrm.getMachineFunction()),
44 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000045 LIS(lis),
46 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000047 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000048 CurLI(0) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000049
50void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000051 UseSlots.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000052 UsingInstrs.clear();
53 UsingBlocks.clear();
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000054 LiveBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000055 CurLI = 0;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000056}
57
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000058bool SplitAnalysis::canAnalyzeBranch(const MachineBasicBlock *MBB) {
59 MachineBasicBlock *T, *F;
60 SmallVector<MachineOperand, 4> Cond;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000061 return !TII.AnalyzeBranch(const_cast<MachineBasicBlock&>(*MBB), T, F, Cond);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000062}
63
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000064/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000065void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000066 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +000067 for (MachineRegisterInfo::reg_iterator I = MRI.reg_begin(CurLI->reg),
68 E = MRI.reg_end(); I != E; ++I) {
69 MachineOperand &MO = I.getOperand();
70 if (MO.isUse() && MO.isUndef())
71 continue;
72 MachineInstr *MI = MO.getParent();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000073 if (MI->isDebugValue() || !UsingInstrs.insert(MI))
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000074 continue;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000075 UseSlots.push_back(LIS.getInstructionIndex(MI).getDefIndex());
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000076 MachineBasicBlock *MBB = MI->getParent();
Jakob Stoklund Olesen4f5c9d22011-02-09 23:56:18 +000077 UsingBlocks[MBB]++;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000078 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000079 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000080 calcLiveBlockInfo();
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000081 DEBUG(dbgs() << " counted "
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000082 << UsingInstrs.size() << " instrs, "
Jakob Stoklund Olesen4f5c9d22011-02-09 23:56:18 +000083 << UsingBlocks.size() << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000084}
85
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000086/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
87/// where CurLI is live.
88void SplitAnalysis::calcLiveBlockInfo() {
89 if (CurLI->empty())
90 return;
91
92 LiveInterval::const_iterator LVI = CurLI->begin();
93 LiveInterval::const_iterator LVE = CurLI->end();
94
95 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
96 UseI = UseSlots.begin();
97 UseE = UseSlots.end();
98
99 // Loop over basic blocks where CurLI is live.
100 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
101 for (;;) {
102 BlockInfo BI;
103 BI.MBB = MFI;
104 SlotIndex Start, Stop;
105 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
106
107 // The last split point is the latest possible insertion point that dominates
108 // all successor blocks. If interference reaches LastSplitPoint, it is not
109 // possible to insert a split or reload that makes CurLI live in the
110 // outgoing bundle.
111 MachineBasicBlock::iterator LSP = LIS.getLastSplitPoint(*CurLI, BI.MBB);
112 if (LSP == BI.MBB->end())
113 BI.LastSplitPoint = Stop;
114 else
115 BI.LastSplitPoint = LIS.getInstructionIndex(LSP);
116
117 // LVI is the first live segment overlapping MBB.
118 BI.LiveIn = LVI->start <= Start;
119 if (!BI.LiveIn)
120 BI.Def = LVI->start;
121
122 // Find the first and last uses in the block.
123 BI.Uses = hasUses(MFI);
124 if (BI.Uses && UseI != UseE) {
125 BI.FirstUse = *UseI;
126 assert(BI.FirstUse >= Start);
127 do ++UseI;
128 while (UseI != UseE && *UseI < Stop);
129 BI.LastUse = UseI[-1];
130 assert(BI.LastUse < Stop);
131 }
132
133 // Look for gaps in the live range.
134 bool hasGap = false;
135 BI.LiveOut = true;
136 while (LVI->end < Stop) {
137 SlotIndex LastStop = LVI->end;
138 if (++LVI == LVE || LVI->start >= Stop) {
139 BI.Kill = LastStop;
140 BI.LiveOut = false;
141 break;
142 }
143 if (LastStop < LVI->start) {
144 hasGap = true;
145 BI.Kill = LastStop;
146 BI.Def = LVI->start;
147 }
148 }
149
150 // Don't set LiveThrough when the block has a gap.
151 BI.LiveThrough = !hasGap && BI.LiveIn && BI.LiveOut;
152 LiveBlocks.push_back(BI);
153
154 // LVI is now at LVE or LVI->end >= Stop.
155 if (LVI == LVE)
156 break;
157
158 // Live segment ends exactly at Stop. Move to the next segment.
159 if (LVI->end == Stop && ++LVI == LVE)
160 break;
161
162 // Pick the next basic block.
163 if (LVI->start < Stop)
164 ++MFI;
165 else
166 MFI = LIS.getMBBFromIndex(LVI->start);
167 }
168}
169
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000170bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
171 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
172 const LiveInterval &Orig = LIS.getInterval(OrigReg);
173 assert(!Orig.empty() && "Splitting empty interval?");
174 LiveInterval::const_iterator I = Orig.find(Idx);
175
176 // Range containing Idx should begin at Idx.
177 if (I != Orig.end() && I->start <= Idx)
178 return I->start == Idx;
179
180 // Range does not contain Idx, previous must end at Idx.
181 return I != Orig.begin() && (--I)->end == Idx;
182}
183
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000184void SplitAnalysis::print(const BlockPtrSet &B, raw_ostream &OS) const {
185 for (BlockPtrSet::const_iterator I = B.begin(), E = B.end(); I != E; ++I) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000186 unsigned count = UsingBlocks.lookup(*I);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000187 OS << " BB#" << (*I)->getNumber();
188 if (count)
189 OS << '(' << count << ')';
190 }
191}
192
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000193void SplitAnalysis::analyze(const LiveInterval *li) {
194 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000195 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000196 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000197}
198
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000199
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000200//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000201// LiveIntervalMap
202//===----------------------------------------------------------------------===//
203
Jakob Stoklund Olesenb3e96812010-09-13 21:29:45 +0000204// Work around the fact that the std::pair constructors are broken for pointer
205// pairs in some implementations. makeVV(x, 0) works.
206static inline std::pair<const VNInfo*, VNInfo*>
207makeVV(const VNInfo *a, VNInfo *b) {
208 return std::make_pair(a, b);
209}
210
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000211void LiveIntervalMap::reset(LiveInterval *li) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000212 LI = li;
213 Values.clear();
214 LiveOutCache.clear();
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000215}
216
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000217bool LiveIntervalMap::isComplexMapped(const VNInfo *ParentVNI) const {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000218 ValueMap::const_iterator i = Values.find(ParentVNI);
219 return i != Values.end() && i->second == 0;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000220}
221
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000222// defValue - Introduce a LI def for ParentVNI that could be later than
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000223// ParentVNI->def.
224VNInfo *LiveIntervalMap::defValue(const VNInfo *ParentVNI, SlotIndex Idx) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000225 assert(LI && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000226 assert(ParentVNI && "Mapping NULL value");
227 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000228 assert(ParentLI.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000229
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000230 // Create a new value.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000231 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000232
Jakob Stoklund Olesen79c02622010-10-26 22:36:02 +0000233 // Preserve the PHIDef bit.
234 if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
235 VNI->setIsPHIDef(true);
236
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000237 // Use insert for lookup, so we can add missing values with a second lookup.
238 std::pair<ValueMap::iterator,bool> InsP =
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000239 Values.insert(makeVV(ParentVNI, Idx == ParentVNI->def ? VNI : 0));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000240
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000241 // This is now a complex def. Mark with a NULL in valueMap.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000242 if (!InsP.second)
243 InsP.first->second = 0;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000244
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000245 return VNI;
246}
247
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000248
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000249// mapValue - Find the mapped value for ParentVNI at Idx.
250// Potentially create phi-def values.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000251VNInfo *LiveIntervalMap::mapValue(const VNInfo *ParentVNI, SlotIndex Idx,
252 bool *simple) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000253 assert(LI && "call reset first");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000254 assert(ParentVNI && "Mapping NULL value");
255 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000256 assert(ParentLI.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000257
258 // Use insert for lookup, so we can add missing values with a second lookup.
259 std::pair<ValueMap::iterator,bool> InsP =
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000260 Values.insert(makeVV(ParentVNI, 0));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000261
262 // This was an unknown value. Create a simple mapping.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000263 if (InsP.second) {
264 if (simple) *simple = true;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000265 return InsP.first->second = LI->createValueCopy(ParentVNI,
266 LIS.getVNInfoAllocator());
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000267 }
268
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000269 // This was a simple mapped value.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000270 if (InsP.first->second) {
271 if (simple) *simple = true;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000272 return InsP.first->second;
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000273 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000274
275 // This is a complex mapped value. There may be multiple defs, and we may need
276 // to create phi-defs.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000277 if (simple) *simple = false;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000278 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000279 assert(IdxMBB && "No MBB at Idx");
280
281 // Is there a def in the same MBB we can extend?
282 if (VNInfo *VNI = extendTo(IdxMBB, Idx))
283 return VNI;
284
285 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
286 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000287 // Perform a search for all predecessor blocks where we know the dominating
288 // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
289 DEBUG(dbgs() << "\n Reaching defs for BB#" << IdxMBB->getNumber()
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000290 << " at " << Idx << " in " << *LI << '\n');
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000291
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000292 // Blocks where LI should be live-in.
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000293 SmallVector<MachineDomTreeNode*, 16> LiveIn;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000294 LiveIn.push_back(MDT[IdxMBB]);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000295
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000296 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000297 for (unsigned i = 0; i != LiveIn.size(); ++i) {
298 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
299 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
300 PE = MBB->pred_end(); PI != PE; ++PI) {
301 MachineBasicBlock *Pred = *PI;
302 // Is this a known live-out block?
303 std::pair<LiveOutMap::iterator,bool> LOIP =
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000304 LiveOutCache.insert(std::make_pair(Pred, LiveOutPair()));
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000305 // Yes, we have been here before.
306 if (!LOIP.second) {
Benjamin Kramer8a8e26f2010-10-29 17:40:05 +0000307 DEBUG(if (VNInfo *VNI = LOIP.first->second.first)
308 dbgs() << " known valno #" << VNI->id
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000309 << " at BB#" << Pred->getNumber() << '\n');
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000310 continue;
311 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000312
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000313 // Does Pred provide a live-out value?
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000314 SlotIndex Last = LIS.getMBBEndIdx(Pred).getPrevSlot();
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000315 if (VNInfo *VNI = extendTo(Pred, Last)) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000316 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(VNI->def);
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000317 DEBUG(dbgs() << " found valno #" << VNI->id
Jakob Stoklund Olesenc94fcb12010-10-29 17:37:25 +0000318 << " from BB#" << DefMBB->getNumber()
319 << " at BB#" << Pred->getNumber() << '\n');
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000320 LiveOutPair &LOP = LOIP.first->second;
321 LOP.first = VNI;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000322 LOP.second = MDT[DefMBB];
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000323 continue;
324 }
325 // No, we need a live-in value for Pred as well
326 if (Pred != IdxMBB)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000327 LiveIn.push_back(MDT[Pred]);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000328 }
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000329 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000330
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000331 // We may need to add phi-def values to preserve the SSA form.
332 // This is essentially the same iterative algorithm that SSAUpdater uses,
333 // except we already have a dominator tree, so we don't have to recompute it.
334 VNInfo *IdxVNI = 0;
335 unsigned Changes;
336 do {
337 Changes = 0;
338 DEBUG(dbgs() << " Iterating over " << LiveIn.size() << " blocks.\n");
339 // Propagate live-out values down the dominator tree, inserting phi-defs when
340 // necessary. Since LiveIn was created by a BFS, going backwards makes it more
341 // likely for us to visit immediate dominators before their children.
342 for (unsigned i = LiveIn.size(); i; --i) {
343 MachineDomTreeNode *Node = LiveIn[i-1];
344 MachineBasicBlock *MBB = Node->getBlock();
345 MachineDomTreeNode *IDom = Node->getIDom();
346 LiveOutPair IDomValue;
347 // We need a live-in value to a block with no immediate dominator?
348 // This is probably an unreachable block that has survived somehow.
349 bool needPHI = !IDom;
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000350
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000351 // Get the IDom live-out value.
352 if (!needPHI) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000353 LiveOutMap::iterator I = LiveOutCache.find(IDom->getBlock());
354 if (I != LiveOutCache.end())
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000355 IDomValue = I->second;
356 else
357 // If IDom is outside our set of live-out blocks, there must be new
358 // defs, and we need a phi-def here.
359 needPHI = true;
360 }
Jakob Stoklund Olesen984a7fc2010-10-05 20:36:28 +0000361
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000362 // IDom dominates all of our predecessors, but it may not be the immediate
363 // dominator. Check if any of them have live-out values that are properly
364 // dominated by IDom. If so, we need a phi-def here.
365 if (!needPHI) {
366 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
367 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000368 LiveOutPair Value = LiveOutCache[*PI];
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000369 if (!Value.first || Value.first == IDomValue.first)
370 continue;
371 // This predecessor is carrying something other than IDomValue.
372 // It could be because IDomValue hasn't propagated yet, or it could be
373 // because MBB is in the dominance frontier of that value.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000374 if (MDT.dominates(IDom, Value.second)) {
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000375 needPHI = true;
376 break;
377 }
378 }
379 }
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000380
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000381 // Create a phi-def if required.
382 if (needPHI) {
383 ++Changes;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000384 SlotIndex Start = LIS.getMBBStartIdx(MBB);
385 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000386 VNI->setIsPHIDef(true);
387 DEBUG(dbgs() << " - BB#" << MBB->getNumber()
388 << " phi-def #" << VNI->id << " at " << Start << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000389 // We no longer need LI to be live-in.
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000390 LiveIn.erase(LiveIn.begin()+(i-1));
391 // Blocks in LiveIn are either IdxMBB, or have a value live-through.
392 if (MBB == IdxMBB)
393 IdxVNI = VNI;
394 // Check if we need to update live-out info.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000395 LiveOutMap::iterator I = LiveOutCache.find(MBB);
396 if (I == LiveOutCache.end() || I->second.second == Node) {
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000397 // We already have a live-out defined in MBB, so this must be IdxMBB.
398 assert(MBB == IdxMBB && "Adding phi-def to known live-out");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000399 LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000400 } else {
401 // This phi-def is also live-out, so color the whole block.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000402 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000403 I->second = LiveOutPair(VNI, Node);
404 }
405 } else if (IDomValue.first) {
Jakob Stoklund Olesenc94fcb12010-10-29 17:37:25 +0000406 // No phi-def here. Remember incoming value for IdxMBB.
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000407 if (MBB == IdxMBB)
408 IdxVNI = IDomValue.first;
Jakob Stoklund Olesenc94fcb12010-10-29 17:37:25 +0000409 // Propagate IDomValue if needed:
410 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000411 LiveOutMap::iterator I = LiveOutCache.find(MBB);
412 if (I != LiveOutCache.end() && I->second.second != Node &&
Jakob Stoklund Olesenc94fcb12010-10-29 17:37:25 +0000413 I->second.first != IDomValue.first) {
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000414 ++Changes;
415 I->second = IDomValue;
416 DEBUG(dbgs() << " - BB#" << MBB->getNumber()
417 << " idom valno #" << IDomValue.first->id
418 << " from BB#" << IDom->getBlock()->getNumber() << '\n');
419 }
Jakob Stoklund Olesenff3ae862010-08-18 20:29:53 +0000420 }
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000421 }
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000422 DEBUG(dbgs() << " - made " << Changes << " changes.\n");
423 } while (Changes);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000424
425 assert(IdxVNI && "Didn't find value for Idx");
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000426
427#ifndef NDEBUG
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000428 // Check the LiveOutCache invariants.
429 for (LiveOutMap::iterator I = LiveOutCache.begin(), E = LiveOutCache.end();
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000430 I != E; ++I) {
431 assert(I->first && "Null MBB entry in cache");
432 assert(I->second.first && "Null VNInfo in cache");
433 assert(I->second.second && "Null DomTreeNode in cache");
434 if (I->second.second->getBlock() == I->first)
435 continue;
436 for (MachineBasicBlock::pred_iterator PI = I->first->pred_begin(),
437 PE = I->first->pred_end(); PI != PE; ++PI)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000438 assert(LiveOutCache.lookup(*PI) == I->second && "Bad invariant");
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000439 }
440#endif
441
442 // Since we went through the trouble of a full BFS visiting all reaching defs,
443 // the values in LiveIn are now accurate. No more phi-defs are needed
444 // for these blocks, so we can color the live ranges.
445 // This makes the next mapValue call much faster.
446 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
447 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000448 SlotIndex Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000449 VNInfo *VNI = LiveOutCache.lookup(MBB).first;
Jakob Stoklund Olesen08eb8dd2011-02-03 20:29:36 +0000450
451 // Anything in LiveIn other than IdxMBB is live-through.
452 // In IdxMBB, we should stop at Idx unless the same value is live-out.
453 if (MBB == IdxMBB && IdxVNI != VNI)
454 LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
455 else
456 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesene1dde7b2010-10-28 20:34:52 +0000457 }
458
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000459 return IdxVNI;
460}
461
Jakob Stoklund Olesend7ca5772011-01-20 17:45:20 +0000462#ifndef NDEBUG
463void LiveIntervalMap::dumpCache() {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000464 for (LiveOutMap::iterator I = LiveOutCache.begin(), E = LiveOutCache.end();
Jakob Stoklund Olesend7ca5772011-01-20 17:45:20 +0000465 I != E; ++I) {
466 assert(I->first && "Null MBB entry in cache");
467 assert(I->second.first && "Null VNInfo in cache");
468 assert(I->second.second && "Null DomTreeNode in cache");
469 dbgs() << " cache: BB#" << I->first->getNumber()
470 << " has valno #" << I->second.first->id << " from BB#"
471 << I->second.second->getBlock()->getNumber() << ", preds";
472 for (MachineBasicBlock::pred_iterator PI = I->first->pred_begin(),
473 PE = I->first->pred_end(); PI != PE; ++PI)
474 dbgs() << " BB#" << (*PI)->getNumber();
475 dbgs() << '\n';
476 }
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000477 dbgs() << " cache: " << LiveOutCache.size() << " entries.\n";
Jakob Stoklund Olesend7ca5772011-01-20 17:45:20 +0000478}
479#endif
480
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000481// extendTo - Find the last LI value defined in MBB at or before Idx. The
482// ParentLI is assumed to be live at Idx. Extend the live range to Idx.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000483// Return the found VNInfo, or NULL.
Jakob Stoklund Olesenc95c1462010-10-27 00:39:07 +0000484VNInfo *LiveIntervalMap::extendTo(const MachineBasicBlock *MBB, SlotIndex Idx) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000485 assert(LI && "call reset first");
486 LiveInterval::iterator I = std::upper_bound(LI->begin(), LI->end(), Idx);
487 if (I == LI->begin())
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000488 return 0;
489 --I;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000490 if (I->end <= LIS.getMBBStartIdx(MBB))
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000491 return 0;
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000492 if (I->end <= Idx)
493 I->end = Idx.getNextSlot();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000494 return I->valno;
495}
496
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000497// addSimpleRange - Add a simple range from ParentLI to LI.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000498// ParentVNI must be live in the [Start;End) interval.
499void LiveIntervalMap::addSimpleRange(SlotIndex Start, SlotIndex End,
500 const VNInfo *ParentVNI) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000501 assert(LI && "call reset first");
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000502 bool simple;
503 VNInfo *VNI = mapValue(ParentVNI, Start, &simple);
504 // A simple mapping is easy.
505 if (simple) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000506 LI->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000507 return;
508 }
509
510 // ParentVNI is a complex value. We must map per MBB.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000511 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
512 MachineFunction::iterator MBBE = LIS.getMBBFromIndex(End.getPrevSlot());
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000513
514 if (MBB == MBBE) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000515 LI->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000516 return;
517 }
518
519 // First block.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000520 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000521
522 // Run sequence of full blocks.
523 for (++MBB; MBB != MBBE; ++MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000524 Start = LIS.getMBBStartIdx(MBB);
525 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB),
Jakob Stoklund Olesen9ca2aeb2010-09-13 23:29:09 +0000526 mapValue(ParentVNI, Start)));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000527 }
528
529 // Final block.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000530 Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000531 if (Start != End)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000532 LI->addRange(LiveRange(Start, End, mapValue(ParentVNI, Start)));
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000533}
534
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000535/// addRange - Add live ranges to LI where [Start;End) intersects ParentLI.
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000536/// All needed values whose def is not inside [Start;End) must be defined
537/// beforehand so mapValue will work.
538void LiveIntervalMap::addRange(SlotIndex Start, SlotIndex End) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000539 assert(LI && "call reset first");
540 LiveInterval::const_iterator B = ParentLI.begin(), E = ParentLI.end();
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000541 LiveInterval::const_iterator I = std::lower_bound(B, E, Start);
542
543 // Check if --I begins before Start and overlaps.
544 if (I != B) {
545 --I;
546 if (I->end > Start)
547 addSimpleRange(Start, std::min(End, I->end), I->valno);
548 ++I;
549 }
550
551 // The remaining ranges begin after Start.
552 for (;I != E && I->start < End; ++I)
553 addSimpleRange(I->start, std::min(End, I->end), I->valno);
554}
555
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000556
Jakob Stoklund Olesen1407c842010-08-18 19:00:08 +0000557//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000558// Split Editor
559//===----------------------------------------------------------------------===//
560
561/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000562SplitEditor::SplitEditor(SplitAnalysis &sa,
563 LiveIntervals &lis,
564 VirtRegMap &vrm,
565 MachineDominatorTree &mdt,
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000566 LiveRangeEdit &edit)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000567 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000568 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000569 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000570 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
571 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
572 Edit(edit),
Eric Christopher0f438112011-02-03 06:18:29 +0000573 OpenIdx(0),
574 RegAssign(Allocator)
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000575{
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000576 // We don't need an AliasAnalysis since we will only be performing
577 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000578 Edit.anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000579}
580
Eric Christopher0f438112011-02-03 06:18:29 +0000581void SplitEditor::dump() const {
582 if (RegAssign.empty()) {
583 dbgs() << " empty\n";
584 return;
585 }
586
587 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
588 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
589 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000590}
591
Eric Christopher0f438112011-02-03 06:18:29 +0000592VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000593 VNInfo *ParentVNI,
594 SlotIndex UseIdx,
595 MachineBasicBlock &MBB,
596 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000597 MachineInstr *CopyMI = 0;
598 SlotIndex Def;
Eric Christopher0f438112011-02-03 06:18:29 +0000599 LiveInterval *LI = Edit.get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000600
601 // Attempt cheap-as-a-copy rematerialization.
602 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000603 if (Edit.canRematerializeAt(RM, UseIdx, true, LIS)) {
Eric Christopher0f438112011-02-03 06:18:29 +0000604 Def = Edit.rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000605 } else {
606 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000607 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
608 .addReg(Edit.getReg());
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000609 Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000610 }
611
612 // Define the value in Reg.
Eric Christopher0f438112011-02-03 06:18:29 +0000613 VNInfo *VNI = LIMappers[RegIdx].defValue(ParentVNI, Def);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000614 VNI->setCopy(CopyMI);
615
616 // Add minimal liveness for the new value.
Eric Christopher0f438112011-02-03 06:18:29 +0000617 Edit.get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000618 return VNI;
619}
620
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000621/// Create a new virtual register and live interval.
622void SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000623 assert(!OpenIdx && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000624
Eric Christopher0f438112011-02-03 06:18:29 +0000625 // Create the complement as index 0.
626 if (Edit.empty()) {
627 Edit.create(MRI, LIS, VRM);
628 LIMappers.push_back(LiveIntervalMap(LIS, MDT, Edit.getParent()));
629 LIMappers.back().reset(Edit.get(0));
630 }
631
632 // Create the open interval.
633 OpenIdx = Edit.size();
634 Edit.create(MRI, LIS, VRM);
635 LIMappers.push_back(LiveIntervalMap(LIS, MDT, Edit.getParent()));
636 LIMappers[OpenIdx].reset(Edit.get(OpenIdx));
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000637}
638
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000639SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000640 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000641 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000642 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000643 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000644 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000645 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000646 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000647 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000648 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000649 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000650 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000651
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000652 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
653 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000654}
655
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000656SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000657 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000658 SlotIndex End = LIS.getMBBEndIdx(&MBB);
659 SlotIndex Last = End.getPrevSlot();
660 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
661 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000662 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000663 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000664 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000665 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000666 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000667 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesencb640472011-02-04 19:33:11 +0000668 LIS.getLastSplitPoint(Edit.getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000669 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000670 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000671 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000672}
673
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000674/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000675void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000676 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000677}
678
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000679void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000680 assert(OpenIdx && "openIntv not called before useIntv");
681 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
682 RegAssign.insert(Start, End, OpenIdx);
683 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000684}
685
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000686SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000687 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000688 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000689
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000690 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000691 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000692 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000693 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000694 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000695 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000696 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000697 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000698
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000699 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
700 assert(MI && "No instruction at index");
701 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
702 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000703 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000704}
705
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000706SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
707 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
708 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
709
710 // The interval must be live into the instruction at Idx.
711 Idx = Idx.getBoundaryIndex();
712 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
713 if (!ParentVNI) {
714 DEBUG(dbgs() << ": not live\n");
715 return Idx.getNextSlot();
716 }
717 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
718
719 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
720 assert(MI && "No instruction at index");
721 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
722 return VNI->def;
723}
724
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000725SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000726 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000727 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000728 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000729
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000730 VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000731 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000732 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000733 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000734 }
735
Eric Christopher0f438112011-02-03 06:18:29 +0000736 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000737 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000738 RegAssign.insert(Start, VNI->def, OpenIdx);
739 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000740 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000741}
742
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000743void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
744 assert(OpenIdx && "openIntv not called before overlapIntv");
745 assert(Edit.getParent().getVNInfoAt(Start) ==
746 Edit.getParent().getVNInfoAt(End.getPrevSlot()) &&
747 "Parent changes value in extended range");
748 assert(Edit.get(0)->getVNInfoAt(Start) && "Start must come from leaveIntv*");
749 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
750 "Range cannot span basic blocks");
751
752 // Treat this as useIntv() for now. The complement interval will be extended
753 // as needed by mapValue().
754 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
755 RegAssign.insert(Start, End, OpenIdx);
756 DEBUG(dump());
757}
758
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000759/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000760/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000761void SplitEditor::closeIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000762 assert(OpenIdx && "openIntv not called before closeIntv");
763 OpenIdx = 0;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000764}
765
Eric Christopher0f438112011-02-03 06:18:29 +0000766/// rewriteAssigned - Rewrite all uses of Edit.getReg().
767void SplitEditor::rewriteAssigned() {
768 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit.getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000769 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000770 MachineOperand &MO = RI.getOperand();
771 MachineInstr *MI = MO.getParent();
772 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000773 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000774 if (MI->isDebugValue()) {
775 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000776 MO.setReg(0);
777 continue;
778 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000779
780 // <undef> operands don't really read the register, so just assign them to
781 // the complement.
782 if (MO.isUse() && MO.isUndef()) {
783 MO.setReg(Edit.get(0)->reg);
784 continue;
785 }
786
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000787 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000788 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000789
790 // Rewrite to the mapped register at Idx.
791 unsigned RegIdx = RegAssign.lookup(Idx);
792 MO.setReg(Edit.get(RegIdx)->reg);
793 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
794 << Idx << ':' << RegIdx << '\t' << *MI);
795
796 // Extend liveness to Idx.
797 const VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
798 LIMappers[RegIdx].mapValue(ParentVNI, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000799 }
800}
801
Eric Christopher0f438112011-02-03 06:18:29 +0000802/// rewriteSplit - Rewrite uses of Intvs[0] according to the ConEQ mapping.
803void SplitEditor::rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
804 const ConnectedVNInfoEqClasses &ConEq) {
805 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Intvs[0]->reg),
806 RE = MRI.reg_end(); RI != RE;) {
807 MachineOperand &MO = RI.getOperand();
808 MachineInstr *MI = MO.getParent();
809 ++RI;
810 if (MO.isUse() && MO.isUndef())
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000811 continue;
Eric Christopher0f438112011-02-03 06:18:29 +0000812 // DBG_VALUE instructions should have been eliminated earlier.
813 SlotIndex Idx = LIS.getInstructionIndex(MI);
814 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
815 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
816 << Idx << ':');
817 const VNInfo *VNI = Intvs[0]->getVNInfoAt(Idx);
818 assert(VNI && "Interval not live at use.");
819 MO.setReg(Intvs[ConEq.getEqClass(VNI)]->reg);
820 DEBUG(dbgs() << VNI->id << '\t' << *MI);
Eric Christopher463a2972011-02-03 05:40:54 +0000821 }
Eric Christopher463a2972011-02-03 05:40:54 +0000822}
Jakob Stoklund Olesen2cd21112011-02-03 00:54:23 +0000823
Eric Christopher463a2972011-02-03 05:40:54 +0000824void SplitEditor::finish() {
Eric Christopher0f438112011-02-03 06:18:29 +0000825 assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
Eric Christopher463a2972011-02-03 05:40:54 +0000826
Eric Christopher0f438112011-02-03 06:18:29 +0000827 // At this point, the live intervals in Edit contain VNInfos corresponding to
828 // the inserted copies.
829
830 // Add the original defs from the parent interval.
831 for (LiveInterval::const_vni_iterator I = Edit.getParent().vni_begin(),
832 E = Edit.getParent().vni_end(); I != E; ++I) {
833 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000834 if (ParentVNI->isUnused())
835 continue;
Eric Christopher0f438112011-02-03 06:18:29 +0000836 LiveIntervalMap &LIM = LIMappers[RegAssign.lookup(ParentVNI->def)];
837 VNInfo *VNI = LIM.defValue(ParentVNI, ParentVNI->def);
838 LIM.getLI()->addRange(LiveRange(ParentVNI->def,
839 ParentVNI->def.getNextSlot(), VNI));
840 // Mark all values as complex to force liveness computation.
841 // This should really only be necessary for remat victims, but we are lazy.
842 LIM.markComplexMapped(ParentVNI);
843 }
844
845#ifndef NDEBUG
846 // Every new interval must have a def by now, otherwise the split is bogus.
847 for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I)
848 assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
849#endif
850
851 // FIXME: Don't recompute the liveness of all values, infer it from the
852 // overlaps between the parent live interval and RegAssign.
853 // The mapValue algorithm is only necessary when:
854 // - The parent value maps to multiple defs, and new phis are needed, or
855 // - The value has been rematerialized before some uses, and we want to
856 // minimize the live range so it only reaches the remaining uses.
857 // All other values have simple liveness that can be computed from RegAssign
858 // and the parent live interval.
859
860 // Extend live ranges to be live-out for successor PHI values.
861 for (LiveInterval::const_vni_iterator I = Edit.getParent().vni_begin(),
862 E = Edit.getParent().vni_end(); I != E; ++I) {
863 const VNInfo *PHIVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000864 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
Eric Christopher0f438112011-02-03 06:18:29 +0000865 continue;
Jakob Stoklund Olesenc50f0772011-02-03 20:29:39 +0000866 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
867 LiveIntervalMap &LIM = LIMappers[RegIdx];
Eric Christopher0f438112011-02-03 06:18:29 +0000868 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
Jakob Stoklund Olesenc50f0772011-02-03 20:29:39 +0000869 DEBUG(dbgs() << " map phi in BB#" << MBB->getNumber() << '@' << PHIVNI->def
870 << " -> " << RegIdx << '\n');
Eric Christopher0f438112011-02-03 06:18:29 +0000871 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
872 PE = MBB->pred_end(); PI != PE; ++PI) {
873 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
Jakob Stoklund Olesenc50f0772011-02-03 20:29:39 +0000874 DEBUG(dbgs() << " pred BB#" << (*PI)->getNumber() << '@' << End);
Eric Christopher0f438112011-02-03 06:18:29 +0000875 // The predecessor may not have a live-out value. That is OK, like an
876 // undef PHI operand.
Jakob Stoklund Olesenc50f0772011-02-03 20:29:39 +0000877 if (VNInfo *VNI = Edit.getParent().getVNInfoAt(End)) {
878 DEBUG(dbgs() << " has parent valno #" << VNI->id << " live out\n");
879 assert(RegAssign.lookup(End) == RegIdx &&
880 "Different register assignment in phi predecessor");
Eric Christopher0f438112011-02-03 06:18:29 +0000881 LIM.mapValue(VNI, End);
Jakob Stoklund Olesenc50f0772011-02-03 20:29:39 +0000882 }
883 else
884 DEBUG(dbgs() << " is not live-out\n");
Eric Christopher0f438112011-02-03 06:18:29 +0000885 }
Jakob Stoklund Olesenc50f0772011-02-03 20:29:39 +0000886 DEBUG(dbgs() << " " << *LIM.getLI() << '\n');
Eric Christopher0f438112011-02-03 06:18:29 +0000887 }
888
889 // Rewrite instructions.
890 rewriteAssigned();
891
892 // FIXME: Delete defs that were rematted everywhere.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000893
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000894 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000895 for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I)
896 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000897
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000898 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000899 ConnectedVNInfoEqClasses ConEQ(LIS);
900 for (unsigned i = 0, e = Edit.size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000901 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000902 LiveInterval *li = Edit.get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000903 unsigned NumComp = ConEQ.Classify(li);
904 if (NumComp <= 1)
905 continue;
906 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
907 SmallVector<LiveInterval*, 8> dups;
908 dups.push_back(li);
909 for (unsigned i = 1; i != NumComp; ++i)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000910 dups.push_back(&Edit.create(MRI, LIS, VRM));
Eric Christopher0f438112011-02-03 06:18:29 +0000911 rewriteComponents(dups, ConEQ);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000912 ConEQ.Distribute(&dups[0]);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000913 }
914
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000915 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000916 VirtRegAuxInfo vrai(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000917 for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I){
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000918 LiveInterval &li = **I;
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000919 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000920 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000921 DEBUG(dbgs() << " new interval " << MRI.getRegClass(li.reg)->getName()
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000922 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000923 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000924}
925
926
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000927//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000928// Single Block Splitting
929//===----------------------------------------------------------------------===//
930
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000931/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
932/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000933bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000934 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000935 if (LiveBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000936 return false;
937 // Add blocks with multiple uses.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000938 for (unsigned i = 0, e = LiveBlocks.size(); i != e; ++i) {
939 const BlockInfo &BI = LiveBlocks[i];
940 if (!BI.Uses)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000941 continue;
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000942 unsigned Instrs = UsingBlocks.lookup(BI.MBB);
943 if (Instrs <= 1)
944 continue;
945 if (Instrs == 2 && BI.LiveIn && BI.LiveOut && !BI.LiveThrough)
946 continue;
947 Blocks.insert(BI.MBB);
948 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000949 return !Blocks.empty();
950}
951
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000952/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000953/// basic block in Blocks.
954void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000955 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000956
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000957 for (unsigned i = 0, e = SA.LiveBlocks.size(); i != e; ++i) {
958 const SplitAnalysis::BlockInfo &BI = SA.LiveBlocks[i];
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000959 if (!BI.Uses || !Blocks.count(BI.MBB))
960 continue;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000961
962 openIntv();
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000963 SlotIndex SegStart = enterIntvBefore(BI.FirstUse);
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000964 if (!BI.LiveOut || BI.LastUse < BI.LastSplitPoint) {
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000965 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
966 } else {
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000967 // The last use is after the last valid split point.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000968 SlotIndex SegStop = leaveIntvBefore(BI.LastSplitPoint);
969 useIntv(SegStart, SegStop);
970 overlapIntv(SegStop, BI.LastUse);
971 }
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000972 closeIntv();
973 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000974 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000975}
976
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000977
978//===----------------------------------------------------------------------===//
979// Sub Block Splitting
980//===----------------------------------------------------------------------===//
981
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000982/// getBlockForInsideSplit - If CurLI is contained inside a single basic block,
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000983/// and it wou pay to subdivide the interval inside that block, return it.
984/// Otherwise return NULL. The returned block can be passed to
985/// SplitEditor::splitInsideBlock.
986const MachineBasicBlock *SplitAnalysis::getBlockForInsideSplit() {
987 // The interval must be exclusive to one block.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000988 if (UsingBlocks.size() != 1)
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000989 return 0;
990 // Don't to this for less than 4 instructions. We want to be sure that
991 // splitting actually reduces the instruction count per interval.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000992 if (UsingInstrs.size() < 4)
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000993 return 0;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000994 return UsingBlocks.begin()->first;
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000995}
996
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000997/// splitInsideBlock - Split CurLI into multiple intervals inside MBB.
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000998void SplitEditor::splitInsideBlock(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +0000999 SmallVector<SlotIndex, 32> Uses;
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +00001000 Uses.reserve(SA.UsingInstrs.size());
1001 for (SplitAnalysis::InstrPtrSet::const_iterator I = SA.UsingInstrs.begin(),
1002 E = SA.UsingInstrs.end(); I != E; ++I)
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001003 if ((*I)->getParent() == MBB)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001004 Uses.push_back(LIS.getInstructionIndex(*I));
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001005 DEBUG(dbgs() << " splitInsideBlock BB#" << MBB->getNumber() << " for "
1006 << Uses.size() << " instructions.\n");
1007 assert(Uses.size() >= 3 && "Need at least 3 instructions");
1008 array_pod_sort(Uses.begin(), Uses.end());
1009
1010 // Simple algorithm: Find the largest gap between uses as determined by slot
1011 // indices. Create new intervals for instructions before the gap and after the
1012 // gap.
1013 unsigned bestPos = 0;
1014 int bestGap = 0;
1015 DEBUG(dbgs() << " dist (" << Uses[0]);
1016 for (unsigned i = 1, e = Uses.size(); i != e; ++i) {
1017 int g = Uses[i-1].distance(Uses[i]);
1018 DEBUG(dbgs() << ") -" << g << "- (" << Uses[i]);
1019 if (g > bestGap)
1020 bestPos = i, bestGap = g;
1021 }
1022 DEBUG(dbgs() << "), best: -" << bestGap << "-\n");
1023
1024 // bestPos points to the first use after the best gap.
1025 assert(bestPos > 0 && "Invalid gap");
1026
1027 // FIXME: Don't create intervals for low densities.
1028
1029 // First interval before the gap. Don't create single-instr intervals.
1030 if (bestPos > 1) {
1031 openIntv();
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +00001032 useIntv(enterIntvBefore(Uses.front()), leaveIntvAfter(Uses[bestPos-1]));
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001033 closeIntv();
1034 }
1035
1036 // Second interval after the gap.
1037 if (bestPos < Uses.size()-1) {
1038 openIntv();
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +00001039 useIntv(enterIntvBefore(Uses[bestPos]), leaveIntvAfter(Uses.back()));
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001040 closeIntv();
1041 }
1042
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001043 finish();
Jakob Stoklund Olesenfc412d82010-08-13 21:18:48 +00001044}