blob: 99d05fa6558778a3304eee553696dda929211102 [file] [log] [blame]
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001//===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the SplitAnalysis class as well as mutator functions for
11// live range splitting.
12//
13//===----------------------------------------------------------------------===//
14
Jakob Stoklund Olesen376dcbd2010-11-03 20:39:23 +000015#define DEBUG_TYPE "regalloc"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000016#include "SplitKit.h"
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000017#include "LiveRangeEdit.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000018#include "VirtRegMap.h"
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000019#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +000020#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000021#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +000022#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000023#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000024#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
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000037STATISTIC(NumFinished, "Number of splits finished");
38STATISTIC(NumSimple, "Number of splits that were simple");
39
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000040//===----------------------------------------------------------------------===//
41// Split Analysis
42//===----------------------------------------------------------------------===//
43
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000044SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000045 const LiveIntervals &lis,
46 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000047 : MF(vrm.getMachineFunction()),
48 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000049 LIS(lis),
50 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000051 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000052 CurLI(0) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000053
54void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000055 UseSlots.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000056 UsingInstrs.clear();
57 UsingBlocks.clear();
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000058 LiveBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000059 CurLI = 0;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000060}
61
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000062bool SplitAnalysis::canAnalyzeBranch(const MachineBasicBlock *MBB) {
63 MachineBasicBlock *T, *F;
64 SmallVector<MachineOperand, 4> Cond;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000065 return !TII.AnalyzeBranch(const_cast<MachineBasicBlock&>(*MBB), T, F, Cond);
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000066}
67
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000068/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000069void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000070 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +000071 for (MachineRegisterInfo::reg_iterator I = MRI.reg_begin(CurLI->reg),
72 E = MRI.reg_end(); I != E; ++I) {
73 MachineOperand &MO = I.getOperand();
74 if (MO.isUse() && MO.isUndef())
75 continue;
76 MachineInstr *MI = MO.getParent();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000077 if (MI->isDebugValue() || !UsingInstrs.insert(MI))
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000078 continue;
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000079 UseSlots.push_back(LIS.getInstructionIndex(MI).getDefIndex());
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000080 MachineBasicBlock *MBB = MI->getParent();
Jakob Stoklund Olesen4f5c9d22011-02-09 23:56:18 +000081 UsingBlocks[MBB]++;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000082 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000083 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +000084
85 // Compute per-live block info.
86 if (!calcLiveBlockInfo()) {
87 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
88 // I am looking at you, SimpleRegisterCoalescing!
89 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
90 const_cast<LiveIntervals&>(LIS)
91 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
92 LiveBlocks.clear();
93 bool fixed = calcLiveBlockInfo();
94 (void)fixed;
95 assert(fixed && "Couldn't fix broken live interval");
96 }
97
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000098 DEBUG(dbgs() << " counted "
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000099 << UsingInstrs.size() << " instrs, "
Jakob Stoklund Olesen4f5c9d22011-02-09 23:56:18 +0000100 << UsingBlocks.size() << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000101}
102
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000103/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
104/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000105bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000106 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000107 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000108
109 LiveInterval::const_iterator LVI = CurLI->begin();
110 LiveInterval::const_iterator LVE = CurLI->end();
111
112 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
113 UseI = UseSlots.begin();
114 UseE = UseSlots.end();
115
116 // Loop over basic blocks where CurLI is live.
117 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
118 for (;;) {
119 BlockInfo BI;
120 BI.MBB = MFI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000121 tie(BI.Start, BI.Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000122
123 // The last split point is the latest possible insertion point that dominates
124 // all successor blocks. If interference reaches LastSplitPoint, it is not
125 // possible to insert a split or reload that makes CurLI live in the
126 // outgoing bundle.
127 MachineBasicBlock::iterator LSP = LIS.getLastSplitPoint(*CurLI, BI.MBB);
128 if (LSP == BI.MBB->end())
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000129 BI.LastSplitPoint = BI.Stop;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000130 else
131 BI.LastSplitPoint = LIS.getInstructionIndex(LSP);
132
133 // LVI is the first live segment overlapping MBB.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000134 BI.LiveIn = LVI->start <= BI.Start;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000135 if (!BI.LiveIn)
136 BI.Def = LVI->start;
137
138 // Find the first and last uses in the block.
139 BI.Uses = hasUses(MFI);
140 if (BI.Uses && UseI != UseE) {
141 BI.FirstUse = *UseI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000142 assert(BI.FirstUse >= BI.Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000143 do ++UseI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000144 while (UseI != UseE && *UseI < BI.Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000145 BI.LastUse = UseI[-1];
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000146 assert(BI.LastUse < BI.Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000147 }
148
149 // Look for gaps in the live range.
150 bool hasGap = false;
151 BI.LiveOut = true;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000152 while (LVI->end < BI.Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000153 SlotIndex LastStop = LVI->end;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000154 if (++LVI == LVE || LVI->start >= BI.Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000155 BI.Kill = LastStop;
156 BI.LiveOut = false;
157 break;
158 }
159 if (LastStop < LVI->start) {
160 hasGap = true;
161 BI.Kill = LastStop;
162 BI.Def = LVI->start;
163 }
164 }
165
166 // Don't set LiveThrough when the block has a gap.
167 BI.LiveThrough = !hasGap && BI.LiveIn && BI.LiveOut;
168 LiveBlocks.push_back(BI);
169
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000170 // FIXME: This should never happen. The live range stops or starts without a
171 // corresponding use. An earlier pass did something wrong.
172 if (!BI.LiveThrough && !BI.Uses)
173 return false;
174
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000175 // LVI is now at LVE or LVI->end >= Stop.
176 if (LVI == LVE)
177 break;
178
179 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000180 if (LVI->end == BI.Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000181 break;
182
183 // Pick the next basic block.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000184 if (LVI->start < BI.Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000185 ++MFI;
186 else
187 MFI = LIS.getMBBFromIndex(LVI->start);
188 }
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000189 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000190}
191
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000192bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
193 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
194 const LiveInterval &Orig = LIS.getInterval(OrigReg);
195 assert(!Orig.empty() && "Splitting empty interval?");
196 LiveInterval::const_iterator I = Orig.find(Idx);
197
198 // Range containing Idx should begin at Idx.
199 if (I != Orig.end() && I->start <= Idx)
200 return I->start == Idx;
201
202 // Range does not contain Idx, previous must end at Idx.
203 return I != Orig.begin() && (--I)->end == Idx;
204}
205
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000206void SplitAnalysis::print(const BlockPtrSet &B, raw_ostream &OS) const {
207 for (BlockPtrSet::const_iterator I = B.begin(), E = B.end(); I != E; ++I) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000208 unsigned count = UsingBlocks.lookup(*I);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000209 OS << " BB#" << (*I)->getNumber();
210 if (count)
211 OS << '(' << count << ')';
212 }
213}
214
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000215void SplitAnalysis::analyze(const LiveInterval *li) {
216 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000217 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000218 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000219}
220
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000221
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000222//===----------------------------------------------------------------------===//
223// Split Editor
224//===----------------------------------------------------------------------===//
225
226/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000227SplitEditor::SplitEditor(SplitAnalysis &sa,
228 LiveIntervals &lis,
229 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000230 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000231 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000232 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000233 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000234 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
235 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000236 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000237 OpenIdx(0),
238 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000239{}
240
241void SplitEditor::reset(LiveRangeEdit &lre) {
242 Edit = &lre;
243 OpenIdx = 0;
244 RegAssign.clear();
245 Values.clear();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000246
247 // We don't need to clear LiveOutCache, only LiveOutSeen entries are read.
248 LiveOutSeen.clear();
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000249
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000250 // We don't need an AliasAnalysis since we will only be performing
251 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000252 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000253}
254
Eric Christopher0f438112011-02-03 06:18:29 +0000255void SplitEditor::dump() const {
256 if (RegAssign.empty()) {
257 dbgs() << " empty\n";
258 return;
259 }
260
261 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
262 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
263 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000264}
265
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000266VNInfo *SplitEditor::defValue(unsigned RegIdx,
267 const VNInfo *ParentVNI,
268 SlotIndex Idx) {
269 assert(ParentVNI && "Mapping NULL value");
270 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000271 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
272 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000273
274 // Create a new value.
275 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
276
277 // Preserve the PHIDef bit.
278 if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
279 VNI->setIsPHIDef(true);
280
281 // Use insert for lookup, so we can add missing values with a second lookup.
282 std::pair<ValueMap::iterator, bool> InsP =
283 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
284
285 // This was the first time (RegIdx, ParentVNI) was mapped.
286 // Keep it as a simple def without any liveness.
287 if (InsP.second)
288 return VNI;
289
290 // If the previous value was a simple mapping, add liveness for it now.
291 if (VNInfo *OldVNI = InsP.first->second) {
292 SlotIndex Def = OldVNI->def;
293 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
294 // No longer a simple mapping.
295 InsP.first->second = 0;
296 }
297
298 // This is a complex mapping, add liveness for VNI
299 SlotIndex Def = VNI->def;
300 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
301
302 return VNI;
303}
304
305void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
306 assert(ParentVNI && "Mapping NULL value");
307 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
308
309 // ParentVNI was either unmapped or already complex mapped. Either way.
310 if (!VNI)
311 return;
312
313 // This was previously a single mapping. Make sure the old def is represented
314 // by a trivial live range.
315 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000316 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000317 VNI = 0;
318}
319
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000320// extendRange - Extend the live range to reach Idx.
321// Potentially create phi-def values.
322void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
323 assert(Idx.isValid() && "Invalid SlotIndex");
324 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
325 assert(IdxMBB && "No MBB at Idx");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000326 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000327
328 // Is there a def in the same MBB we can extend?
329 if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx))
330 return;
331
332 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
333 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
334 // Perform a search for all predecessor blocks where we know the dominating
335 // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000336
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000337 // Initialize the live-out cache the first time it is needed.
338 if (LiveOutSeen.empty()) {
339 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
340 LiveOutSeen.resize(N);
341 LiveOutCache.resize(N);
342 }
343
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000344 // Blocks where LI should be live-in.
345 SmallVector<MachineDomTreeNode*, 16> LiveIn;
346 LiveIn.push_back(MDT[IdxMBB]);
347
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000348 // Remember if we have seen more than one value.
349 bool UniqueVNI = true;
350 VNInfo *IdxVNI = 0;
351
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000352 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
353 for (unsigned i = 0; i != LiveIn.size(); ++i) {
354 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
355 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
356 PE = MBB->pred_end(); PI != PE; ++PI) {
357 MachineBasicBlock *Pred = *PI;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000358 LiveOutPair &LOP = LiveOutCache[Pred];
359
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000360 // Is this a known live-out block?
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000361 if (LiveOutSeen.test(Pred->getNumber())) {
362 if (VNInfo *VNI = LOP.first) {
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000363 if (IdxVNI && IdxVNI != VNI)
364 UniqueVNI = false;
365 IdxVNI = VNI;
366 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000367 continue;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000368 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000369
370 // First time. LOP is garbage and must be cleared below.
371 LiveOutSeen.set(Pred->getNumber());
372
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000373 // Does Pred provide a live-out value?
374 SlotIndex Start, Last;
375 tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred);
376 Last = Last.getPrevSlot();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000377 VNInfo *VNI = LI->extendInBlock(Start, Last);
378 LOP.first = VNI;
379 if (VNI) {
380 LOP.second = MDT[LIS.getMBBFromIndex(VNI->def)];
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000381 if (IdxVNI && IdxVNI != VNI)
382 UniqueVNI = false;
383 IdxVNI = VNI;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000384 continue;
385 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000386 LOP.second = 0;
387
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000388 // No, we need a live-in value for Pred as well
389 if (Pred != IdxMBB)
390 LiveIn.push_back(MDT[Pred]);
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000391 else
392 UniqueVNI = false; // Loopback to IdxMBB, ask updateSSA() for help.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000393 }
394 }
395
396 // We may need to add phi-def values to preserve the SSA form.
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000397 if (UniqueVNI) {
398 LiveOutPair LOP(IdxVNI, MDT[LIS.getMBBFromIndex(IdxVNI->def)]);
399 // Update LiveOutCache, but skip IdxMBB at LiveIn[0].
400 for (unsigned i = 1, e = LiveIn.size(); i != e; ++i)
401 LiveOutCache[LiveIn[i]->getBlock()] = LOP;
402 } else
403 IdxVNI = updateSSA(RegIdx, LiveIn, Idx, IdxMBB);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000404
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000405 // Since we went through the trouble of a full BFS visiting all reaching defs,
406 // the values in LiveIn are now accurate. No more phi-defs are needed
407 // for these blocks, so we can color the live ranges.
408 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
409 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
410 SlotIndex Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000411 VNInfo *VNI = LiveOutCache[MBB].first;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000412
413 // Anything in LiveIn other than IdxMBB is live-through.
414 // In IdxMBB, we should stop at Idx unless the same value is live-out.
415 if (MBB == IdxMBB && IdxVNI != VNI)
416 LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
417 else
418 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
419 }
420}
421
422VNInfo *SplitEditor::updateSSA(unsigned RegIdx,
423 SmallVectorImpl<MachineDomTreeNode*> &LiveIn,
424 SlotIndex Idx,
425 const MachineBasicBlock *IdxMBB) {
426 // This is essentially the same iterative algorithm that SSAUpdater uses,
427 // except we already have a dominator tree, so we don't have to recompute it.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000428 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000429 VNInfo *IdxVNI = 0;
430 unsigned Changes;
431 do {
432 Changes = 0;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000433 // Propagate live-out values down the dominator tree, inserting phi-defs
434 // when necessary. Since LiveIn was created by a BFS, going backwards makes
435 // it more likely for us to visit immediate dominators before their
436 // children.
437 for (unsigned i = LiveIn.size(); i; --i) {
438 MachineDomTreeNode *Node = LiveIn[i-1];
439 MachineBasicBlock *MBB = Node->getBlock();
440 MachineDomTreeNode *IDom = Node->getIDom();
441 LiveOutPair IDomValue;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000442
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000443 // We need a live-in value to a block with no immediate dominator?
444 // This is probably an unreachable block that has survived somehow.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000445 bool needPHI = !IDom || !LiveOutSeen.test(IDom->getBlock()->getNumber());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000446
447 // IDom dominates all of our predecessors, but it may not be the immediate
448 // dominator. Check if any of them have live-out values that are properly
449 // dominated by IDom. If so, we need a phi-def here.
450 if (!needPHI) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000451 IDomValue = LiveOutCache[IDom->getBlock()];
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000452 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
453 PE = MBB->pred_end(); PI != PE; ++PI) {
454 LiveOutPair Value = LiveOutCache[*PI];
455 if (!Value.first || Value.first == IDomValue.first)
456 continue;
457 // This predecessor is carrying something other than IDomValue.
458 // It could be because IDomValue hasn't propagated yet, or it could be
459 // because MBB is in the dominance frontier of that value.
460 if (MDT.dominates(IDom, Value.second)) {
461 needPHI = true;
462 break;
463 }
464 }
465 }
466
467 // Create a phi-def if required.
468 if (needPHI) {
469 ++Changes;
470 SlotIndex Start = LIS.getMBBStartIdx(MBB);
471 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
472 VNI->setIsPHIDef(true);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000473 // We no longer need LI to be live-in.
474 LiveIn.erase(LiveIn.begin()+(i-1));
475 // Blocks in LiveIn are either IdxMBB, or have a value live-through.
476 if (MBB == IdxMBB)
477 IdxVNI = VNI;
478 // Check if we need to update live-out info.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000479 LiveOutPair &LOP = LiveOutCache[MBB];
480 if (LOP.second == Node || !LiveOutSeen.test(MBB->getNumber())) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000481 // We already have a live-out defined in MBB, so this must be IdxMBB.
482 assert(MBB == IdxMBB && "Adding phi-def to known live-out");
483 LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
484 } else {
485 // This phi-def is also live-out, so color the whole block.
486 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000487 LOP = LiveOutPair(VNI, Node);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000488 }
489 } else if (IDomValue.first) {
490 // No phi-def here. Remember incoming value for IdxMBB.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000491 if (MBB == IdxMBB) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000492 IdxVNI = IDomValue.first;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000493 // IdxMBB need not be live-out.
494 if (!LiveOutSeen.test(MBB->getNumber()))
495 continue;
496 }
497 assert(LiveOutSeen.test(MBB->getNumber()) && "Expected live-out block");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000498 // Propagate IDomValue if needed:
499 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000500 LiveOutPair &LOP = LiveOutCache[MBB];
501 if (LOP.second != Node && LOP.first != IDomValue.first) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000502 ++Changes;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000503 LOP = IDomValue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000504 }
505 }
506 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000507 } while (Changes);
508
509 assert(IdxVNI && "Didn't find value for Idx");
510 return IdxVNI;
511}
512
Eric Christopher0f438112011-02-03 06:18:29 +0000513VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000514 VNInfo *ParentVNI,
515 SlotIndex UseIdx,
516 MachineBasicBlock &MBB,
517 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000518 MachineInstr *CopyMI = 0;
519 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000520 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000521
522 // Attempt cheap-as-a-copy rematerialization.
523 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000524 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
525 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000526 } else {
527 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000528 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000529 .addReg(Edit->getReg());
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000530 Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000531 }
532
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000533 // Define the value in Reg.
534 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
535 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000536 return VNI;
537}
538
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000539/// Create a new virtual register and live interval.
540void SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000541 assert(!OpenIdx && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000542
Eric Christopher0f438112011-02-03 06:18:29 +0000543 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000544 if (Edit->empty())
545 Edit->create(MRI, LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000546
547 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000548 OpenIdx = Edit->size();
549 Edit->create(MRI, LIS, VRM);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000550}
551
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000552SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000553 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000554 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000555 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000556 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000557 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000558 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000559 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000560 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000561 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000562 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000563 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000564
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000565 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
566 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000567}
568
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000569SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000570 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000571 SlotIndex End = LIS.getMBBEndIdx(&MBB);
572 SlotIndex Last = End.getPrevSlot();
573 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000574 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000575 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000576 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000577 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000578 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000579 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000580 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000581 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000582 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000583 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000584 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000585}
586
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000587/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000588void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000589 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000590}
591
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000592void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000593 assert(OpenIdx && "openIntv not called before useIntv");
594 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
595 RegAssign.insert(Start, End, OpenIdx);
596 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000597}
598
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000599SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000600 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000601 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000602
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000603 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000604 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000605 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000606 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000607 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000608 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000609 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000610 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000611
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000612 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
613 assert(MI && "No instruction at index");
614 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
615 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000616 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000617}
618
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000619SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
620 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
621 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
622
623 // The interval must be live into the instruction at Idx.
624 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000625 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000626 if (!ParentVNI) {
627 DEBUG(dbgs() << ": not live\n");
628 return Idx.getNextSlot();
629 }
630 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
631
632 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
633 assert(MI && "No instruction at index");
634 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
635 return VNI->def;
636}
637
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000638SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000639 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000640 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000641 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000642
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000643 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
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 Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000647 }
648
Eric Christopher0f438112011-02-03 06:18:29 +0000649 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000650 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000651 RegAssign.insert(Start, VNI->def, OpenIdx);
652 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000653 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000654}
655
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000656void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
657 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000658 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
659 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000660 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000661 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
662 "Range cannot span basic blocks");
663
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000664 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000665 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000666 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
667 RegAssign.insert(Start, End, OpenIdx);
668 DEBUG(dump());
669}
670
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000671/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000672/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000673void SplitEditor::closeIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000674 assert(OpenIdx && "openIntv not called before closeIntv");
675 OpenIdx = 0;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000676}
677
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000678/// transferSimpleValues - Transfer all simply defined values to the new live
679/// ranges.
680/// Values that were rematerialized or that have multiple defs are left alone.
681bool SplitEditor::transferSimpleValues() {
682 bool Skipped = false;
683 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000684 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
685 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000686 DEBUG(dbgs() << " blit " << *ParentI << ':');
687 VNInfo *ParentVNI = ParentI->valno;
688 // RegAssign has holes where RegIdx 0 should be used.
689 SlotIndex Start = ParentI->start;
690 AssignI.advanceTo(Start);
691 do {
692 unsigned RegIdx;
693 SlotIndex End = ParentI->end;
694 if (!AssignI.valid()) {
695 RegIdx = 0;
696 } else if (AssignI.start() <= Start) {
697 RegIdx = AssignI.value();
698 if (AssignI.stop() < End) {
699 End = AssignI.stop();
700 ++AssignI;
701 }
702 } else {
703 RegIdx = 0;
704 End = std::min(End, AssignI.start());
705 }
706 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
707 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
708 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000709 Edit->get(RegIdx)->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000710 } else
711 Skipped = true;
712 Start = End;
713 } while (Start != ParentI->end);
714 DEBUG(dbgs() << '\n');
715 }
716 return Skipped;
717}
718
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000719void SplitEditor::extendPHIKillRanges() {
720 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000721 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
722 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000723 const VNInfo *PHIVNI = *I;
724 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
725 continue;
726 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
727 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
728 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
729 PE = MBB->pred_end(); PI != PE; ++PI) {
730 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
731 // The predecessor may not have a live-out value. That is OK, like an
732 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000733 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000734 assert(RegAssign.lookup(End) == RegIdx &&
735 "Different register assignment in phi predecessor");
736 extendRange(RegIdx, End);
737 }
738 }
739 }
740}
741
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000742/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000743void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000744 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000745 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000746 MachineOperand &MO = RI.getOperand();
747 MachineInstr *MI = MO.getParent();
748 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000749 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000750 if (MI->isDebugValue()) {
751 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000752 MO.setReg(0);
753 continue;
754 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000755
756 // <undef> operands don't really read the register, so just assign them to
757 // the complement.
758 if (MO.isUse() && MO.isUndef()) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000759 MO.setReg(Edit->get(0)->reg);
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000760 continue;
761 }
762
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000763 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000764 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000765
766 // Rewrite to the mapped register at Idx.
767 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000768 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000769 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
770 << Idx << ':' << RegIdx << '\t' << *MI);
771
772 // Extend liveness to Idx.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000773 if (ExtendRanges)
774 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000775 }
776}
777
Eric Christopher0f438112011-02-03 06:18:29 +0000778/// rewriteSplit - Rewrite uses of Intvs[0] according to the ConEQ mapping.
779void SplitEditor::rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
780 const ConnectedVNInfoEqClasses &ConEq) {
781 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Intvs[0]->reg),
782 RE = MRI.reg_end(); RI != RE;) {
783 MachineOperand &MO = RI.getOperand();
784 MachineInstr *MI = MO.getParent();
785 ++RI;
786 if (MO.isUse() && MO.isUndef())
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000787 continue;
Eric Christopher0f438112011-02-03 06:18:29 +0000788 // DBG_VALUE instructions should have been eliminated earlier.
789 SlotIndex Idx = LIS.getInstructionIndex(MI);
790 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
791 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
792 << Idx << ':');
793 const VNInfo *VNI = Intvs[0]->getVNInfoAt(Idx);
794 assert(VNI && "Interval not live at use.");
795 MO.setReg(Intvs[ConEq.getEqClass(VNI)]->reg);
796 DEBUG(dbgs() << VNI->id << '\t' << *MI);
Eric Christopher463a2972011-02-03 05:40:54 +0000797 }
Eric Christopher463a2972011-02-03 05:40:54 +0000798}
Jakob Stoklund Olesen2cd21112011-02-03 00:54:23 +0000799
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000800void SplitEditor::deleteRematVictims() {
801 SmallVector<MachineInstr*, 8> Dead;
802 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
803 E = Edit->getParent().vni_end(); I != E; ++I) {
804 const VNInfo *VNI = *I;
805 // Was VNI rematted anywhere?
806 if (VNI->isUnused() || VNI->isPHIDef() || !Edit->didRematerialize(VNI))
807 continue;
808 unsigned RegIdx = RegAssign.lookup(VNI->def);
809 LiveInterval *LI = Edit->get(RegIdx);
810 LiveInterval::const_iterator LII = LI->FindLiveRangeContaining(VNI->def);
811 assert(LII != LI->end() && "Missing live range for rematted def");
812
813 // Is this a dead def?
814 if (LII->end != VNI->def.getNextSlot())
815 continue;
816
817 MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def);
818 assert(MI && "Missing instruction for dead def");
819 MI->addRegisterDead(LI->reg, &TRI);
820
821 if (!MI->allDefsAreDead())
822 continue;
823
824 DEBUG(dbgs() << "All defs dead: " << *MI);
825 Dead.push_back(MI);
826 }
827
828 if (Dead.empty())
829 return;
830
831 Edit->eliminateDeadDefs(Dead, LIS, TII);
832}
833
Eric Christopher463a2972011-02-03 05:40:54 +0000834void SplitEditor::finish() {
Eric Christopher0f438112011-02-03 06:18:29 +0000835 assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000836 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000837
Eric Christopher0f438112011-02-03 06:18:29 +0000838 // At this point, the live intervals in Edit contain VNInfos corresponding to
839 // the inserted copies.
840
841 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000842 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
843 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +0000844 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000845 if (ParentVNI->isUnused())
846 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000847 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000848 defValue(RegIdx, ParentVNI, ParentVNI->def);
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000849 // Mark rematted values as complex everywhere to force liveness computation.
850 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000851 if (Edit->didRematerialize(ParentVNI))
852 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000853 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000854 }
855
856#ifndef NDEBUG
857 // Every new interval must have a def by now, otherwise the split is bogus.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000858 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Eric Christopher0f438112011-02-03 06:18:29 +0000859 assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
860#endif
861
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000862 // Transfer the simply mapped values, check if any are complex.
863 bool Complex = transferSimpleValues();
864 if (Complex)
865 extendPHIKillRanges();
866 else
867 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +0000868
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000869 // Rewrite virtual registers, possibly extending ranges.
870 rewriteAssigned(Complex);
Eric Christopher0f438112011-02-03 06:18:29 +0000871
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000872 // Delete defs that were rematted everywhere.
873 if (Complex)
874 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000875
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000876 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000877 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000878 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000879
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000880 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000881 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000882 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000883 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000884 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000885 unsigned NumComp = ConEQ.Classify(li);
886 if (NumComp <= 1)
887 continue;
888 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
889 SmallVector<LiveInterval*, 8> dups;
890 dups.push_back(li);
891 for (unsigned i = 1; i != NumComp; ++i)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000892 dups.push_back(&Edit->create(MRI, LIS, VRM));
Eric Christopher0f438112011-02-03 06:18:29 +0000893 rewriteComponents(dups, ConEQ);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000894 ConEQ.Distribute(&dups[0]);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000895 }
896
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000897 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000898 VirtRegAuxInfo vrai(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000899 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000900 LiveInterval &li = **I;
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000901 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000902 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000903 DEBUG(dbgs() << " new interval " << MRI.getRegClass(li.reg)->getName()
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000904 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000905 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000906}
907
908
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000909//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000910// Single Block Splitting
911//===----------------------------------------------------------------------===//
912
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000913/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
914/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000915bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000916 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000917 if (LiveBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000918 return false;
919 // Add blocks with multiple uses.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000920 for (unsigned i = 0, e = LiveBlocks.size(); i != e; ++i) {
921 const BlockInfo &BI = LiveBlocks[i];
922 if (!BI.Uses)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000923 continue;
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000924 unsigned Instrs = UsingBlocks.lookup(BI.MBB);
925 if (Instrs <= 1)
926 continue;
927 if (Instrs == 2 && BI.LiveIn && BI.LiveOut && !BI.LiveThrough)
928 continue;
929 Blocks.insert(BI.MBB);
930 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000931 return !Blocks.empty();
932}
933
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000934/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000935/// basic block in Blocks.
936void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000937 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000938
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000939 for (unsigned i = 0, e = SA.LiveBlocks.size(); i != e; ++i) {
940 const SplitAnalysis::BlockInfo &BI = SA.LiveBlocks[i];
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000941 if (!BI.Uses || !Blocks.count(BI.MBB))
942 continue;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000943
944 openIntv();
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000945 SlotIndex SegStart = enterIntvBefore(BI.FirstUse);
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000946 if (!BI.LiveOut || BI.LastUse < BI.LastSplitPoint) {
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000947 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
948 } else {
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000949 // The last use is after the last valid split point.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000950 SlotIndex SegStop = leaveIntvBefore(BI.LastSplitPoint);
951 useIntv(SegStart, SegStop);
952 overlapIntv(SegStop, BI.LastUse);
953 }
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000954 closeIntv();
955 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000956 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000957}