blob: b89ff0c4fc8a4c35b7c40f8bd37fa02d9a81221b [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 Olesenef1f5cc2011-03-27 22:49:23 +000098 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000099 << UsingInstrs.size() << " instrs, "
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000100 << UsingBlocks.size() << " blocks, "
101 << LiveBlocks.size() << " spanned.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000102}
103
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000104/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
105/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000106bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000107 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000108 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000109
110 LiveInterval::const_iterator LVI = CurLI->begin();
111 LiveInterval::const_iterator LVE = CurLI->end();
112
113 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
114 UseI = UseSlots.begin();
115 UseE = UseSlots.end();
116
117 // Loop over basic blocks where CurLI is live.
118 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
119 for (;;) {
120 BlockInfo BI;
121 BI.MBB = MFI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000122 tie(BI.Start, BI.Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000123
124 // The last split point is the latest possible insertion point that dominates
125 // all successor blocks. If interference reaches LastSplitPoint, it is not
126 // possible to insert a split or reload that makes CurLI live in the
127 // outgoing bundle.
128 MachineBasicBlock::iterator LSP = LIS.getLastSplitPoint(*CurLI, BI.MBB);
129 if (LSP == BI.MBB->end())
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000130 BI.LastSplitPoint = BI.Stop;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000131 else
132 BI.LastSplitPoint = LIS.getInstructionIndex(LSP);
133
134 // LVI is the first live segment overlapping MBB.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000135 BI.LiveIn = LVI->start <= BI.Start;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000136 if (!BI.LiveIn)
137 BI.Def = LVI->start;
138
139 // Find the first and last uses in the block.
140 BI.Uses = hasUses(MFI);
141 if (BI.Uses && UseI != UseE) {
142 BI.FirstUse = *UseI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000143 assert(BI.FirstUse >= BI.Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000144 do ++UseI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000145 while (UseI != UseE && *UseI < BI.Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000146 BI.LastUse = UseI[-1];
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000147 assert(BI.LastUse < BI.Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000148 }
149
150 // Look for gaps in the live range.
151 bool hasGap = false;
152 BI.LiveOut = true;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000153 while (LVI->end < BI.Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000154 SlotIndex LastStop = LVI->end;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000155 if (++LVI == LVE || LVI->start >= BI.Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000156 BI.Kill = LastStop;
157 BI.LiveOut = false;
158 break;
159 }
160 if (LastStop < LVI->start) {
161 hasGap = true;
162 BI.Kill = LastStop;
163 BI.Def = LVI->start;
164 }
165 }
166
167 // Don't set LiveThrough when the block has a gap.
168 BI.LiveThrough = !hasGap && BI.LiveIn && BI.LiveOut;
169 LiveBlocks.push_back(BI);
170
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000171 // FIXME: This should never happen. The live range stops or starts without a
172 // corresponding use. An earlier pass did something wrong.
173 if (!BI.LiveThrough && !BI.Uses)
174 return false;
175
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000176 // LVI is now at LVE or LVI->end >= Stop.
177 if (LVI == LVE)
178 break;
179
180 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000181 if (LVI->end == BI.Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000182 break;
183
184 // Pick the next basic block.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000185 if (LVI->start < BI.Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000186 ++MFI;
187 else
188 MFI = LIS.getMBBFromIndex(LVI->start);
189 }
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000190 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000191}
192
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000193bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
194 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
195 const LiveInterval &Orig = LIS.getInterval(OrigReg);
196 assert(!Orig.empty() && "Splitting empty interval?");
197 LiveInterval::const_iterator I = Orig.find(Idx);
198
199 // Range containing Idx should begin at Idx.
200 if (I != Orig.end() && I->start <= Idx)
201 return I->start == Idx;
202
203 // Range does not contain Idx, previous must end at Idx.
204 return I != Orig.begin() && (--I)->end == Idx;
205}
206
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000207void SplitAnalysis::print(const BlockPtrSet &B, raw_ostream &OS) const {
208 for (BlockPtrSet::const_iterator I = B.begin(), E = B.end(); I != E; ++I) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000209 unsigned count = UsingBlocks.lookup(*I);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000210 OS << " BB#" << (*I)->getNumber();
211 if (count)
212 OS << '(' << count << ')';
213 }
214}
215
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000216void SplitAnalysis::analyze(const LiveInterval *li) {
217 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000218 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000219 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000220}
221
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000222
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000223//===----------------------------------------------------------------------===//
224// Split Editor
225//===----------------------------------------------------------------------===//
226
227/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000228SplitEditor::SplitEditor(SplitAnalysis &sa,
229 LiveIntervals &lis,
230 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000231 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000232 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000233 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000234 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000235 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
236 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000237 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000238 OpenIdx(0),
239 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000240{}
241
242void SplitEditor::reset(LiveRangeEdit &lre) {
243 Edit = &lre;
244 OpenIdx = 0;
245 RegAssign.clear();
246 Values.clear();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000247
248 // We don't need to clear LiveOutCache, only LiveOutSeen entries are read.
249 LiveOutSeen.clear();
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000250
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000251 // We don't need an AliasAnalysis since we will only be performing
252 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000253 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000254}
255
Eric Christopher0f438112011-02-03 06:18:29 +0000256void SplitEditor::dump() const {
257 if (RegAssign.empty()) {
258 dbgs() << " empty\n";
259 return;
260 }
261
262 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
263 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
264 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000265}
266
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000267VNInfo *SplitEditor::defValue(unsigned RegIdx,
268 const VNInfo *ParentVNI,
269 SlotIndex Idx) {
270 assert(ParentVNI && "Mapping NULL value");
271 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000272 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
273 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000274
275 // Create a new value.
276 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
277
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000278 // Use insert for lookup, so we can add missing values with a second lookup.
279 std::pair<ValueMap::iterator, bool> InsP =
280 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
281
282 // This was the first time (RegIdx, ParentVNI) was mapped.
283 // Keep it as a simple def without any liveness.
284 if (InsP.second)
285 return VNI;
286
287 // If the previous value was a simple mapping, add liveness for it now.
288 if (VNInfo *OldVNI = InsP.first->second) {
289 SlotIndex Def = OldVNI->def;
290 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
291 // No longer a simple mapping.
292 InsP.first->second = 0;
293 }
294
295 // This is a complex mapping, add liveness for VNI
296 SlotIndex Def = VNI->def;
297 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
298
299 return VNI;
300}
301
302void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
303 assert(ParentVNI && "Mapping NULL value");
304 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
305
306 // ParentVNI was either unmapped or already complex mapped. Either way.
307 if (!VNI)
308 return;
309
310 // This was previously a single mapping. Make sure the old def is represented
311 // by a trivial live range.
312 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000313 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000314 VNI = 0;
315}
316
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000317// extendRange - Extend the live range to reach Idx.
318// Potentially create phi-def values.
319void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
320 assert(Idx.isValid() && "Invalid SlotIndex");
321 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
322 assert(IdxMBB && "No MBB at Idx");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000323 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000324
325 // Is there a def in the same MBB we can extend?
326 if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx))
327 return;
328
329 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
330 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
331 // Perform a search for all predecessor blocks where we know the dominating
332 // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000333
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000334 // Initialize the live-out cache the first time it is needed.
335 if (LiveOutSeen.empty()) {
336 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
337 LiveOutSeen.resize(N);
338 LiveOutCache.resize(N);
339 }
340
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000341 // Blocks where LI should be live-in.
342 SmallVector<MachineDomTreeNode*, 16> LiveIn;
343 LiveIn.push_back(MDT[IdxMBB]);
344
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000345 // Remember if we have seen more than one value.
346 bool UniqueVNI = true;
347 VNInfo *IdxVNI = 0;
348
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000349 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
350 for (unsigned i = 0; i != LiveIn.size(); ++i) {
351 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000352 assert(!MBB->pred_empty() && "Value live-in to entry block?");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000353 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
354 PE = MBB->pred_end(); PI != PE; ++PI) {
355 MachineBasicBlock *Pred = *PI;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000356 LiveOutPair &LOP = LiveOutCache[Pred];
357
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000358 // Is this a known live-out block?
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000359 if (LiveOutSeen.test(Pred->getNumber())) {
360 if (VNInfo *VNI = LOP.first) {
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000361 if (IdxVNI && IdxVNI != VNI)
362 UniqueVNI = false;
363 IdxVNI = VNI;
364 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000365 continue;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000366 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000367
368 // First time. LOP is garbage and must be cleared below.
369 LiveOutSeen.set(Pred->getNumber());
370
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000371 // Does Pred provide a live-out value?
372 SlotIndex Start, Last;
373 tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred);
374 Last = Last.getPrevSlot();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000375 VNInfo *VNI = LI->extendInBlock(Start, Last);
376 LOP.first = VNI;
377 if (VNI) {
378 LOP.second = MDT[LIS.getMBBFromIndex(VNI->def)];
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000379 if (IdxVNI && IdxVNI != VNI)
380 UniqueVNI = false;
381 IdxVNI = VNI;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000382 continue;
383 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000384 LOP.second = 0;
385
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000386 // No, we need a live-in value for Pred as well
387 if (Pred != IdxMBB)
388 LiveIn.push_back(MDT[Pred]);
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000389 else
390 UniqueVNI = false; // Loopback to IdxMBB, ask updateSSA() for help.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000391 }
392 }
393
394 // We may need to add phi-def values to preserve the SSA form.
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000395 if (UniqueVNI) {
396 LiveOutPair LOP(IdxVNI, MDT[LIS.getMBBFromIndex(IdxVNI->def)]);
397 // Update LiveOutCache, but skip IdxMBB at LiveIn[0].
398 for (unsigned i = 1, e = LiveIn.size(); i != e; ++i)
399 LiveOutCache[LiveIn[i]->getBlock()] = LOP;
400 } else
401 IdxVNI = updateSSA(RegIdx, LiveIn, Idx, IdxMBB);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000402
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000403 // Since we went through the trouble of a full BFS visiting all reaching defs,
404 // the values in LiveIn are now accurate. No more phi-defs are needed
405 // for these blocks, so we can color the live ranges.
406 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
407 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
408 SlotIndex Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000409 VNInfo *VNI = LiveOutCache[MBB].first;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000410
411 // Anything in LiveIn other than IdxMBB is live-through.
412 // In IdxMBB, we should stop at Idx unless the same value is live-out.
413 if (MBB == IdxMBB && IdxVNI != VNI)
414 LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
415 else
416 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
417 }
418}
419
420VNInfo *SplitEditor::updateSSA(unsigned RegIdx,
421 SmallVectorImpl<MachineDomTreeNode*> &LiveIn,
422 SlotIndex Idx,
423 const MachineBasicBlock *IdxMBB) {
424 // This is essentially the same iterative algorithm that SSAUpdater uses,
425 // except we already have a dominator tree, so we don't have to recompute it.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000426 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000427 VNInfo *IdxVNI = 0;
428 unsigned Changes;
429 do {
430 Changes = 0;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000431 // Propagate live-out values down the dominator tree, inserting phi-defs
432 // when necessary. Since LiveIn was created by a BFS, going backwards makes
433 // it more likely for us to visit immediate dominators before their
434 // children.
435 for (unsigned i = LiveIn.size(); i; --i) {
436 MachineDomTreeNode *Node = LiveIn[i-1];
437 MachineBasicBlock *MBB = Node->getBlock();
438 MachineDomTreeNode *IDom = Node->getIDom();
439 LiveOutPair IDomValue;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000440
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000441 // We need a live-in value to a block with no immediate dominator?
442 // This is probably an unreachable block that has survived somehow.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000443 bool needPHI = !IDom || !LiveOutSeen.test(IDom->getBlock()->getNumber());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000444
445 // IDom dominates all of our predecessors, but it may not be the immediate
446 // dominator. Check if any of them have live-out values that are properly
447 // dominated by IDom. If so, we need a phi-def here.
448 if (!needPHI) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000449 IDomValue = LiveOutCache[IDom->getBlock()];
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000450 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
451 PE = MBB->pred_end(); PI != PE; ++PI) {
452 LiveOutPair Value = LiveOutCache[*PI];
453 if (!Value.first || Value.first == IDomValue.first)
454 continue;
455 // This predecessor is carrying something other than IDomValue.
456 // It could be because IDomValue hasn't propagated yet, or it could be
457 // because MBB is in the dominance frontier of that value.
458 if (MDT.dominates(IDom, Value.second)) {
459 needPHI = true;
460 break;
461 }
462 }
463 }
464
465 // Create a phi-def if required.
466 if (needPHI) {
467 ++Changes;
468 SlotIndex Start = LIS.getMBBStartIdx(MBB);
469 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
470 VNI->setIsPHIDef(true);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000471 // We no longer need LI to be live-in.
472 LiveIn.erase(LiveIn.begin()+(i-1));
473 // Blocks in LiveIn are either IdxMBB, or have a value live-through.
474 if (MBB == IdxMBB)
475 IdxVNI = VNI;
476 // Check if we need to update live-out info.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000477 LiveOutPair &LOP = LiveOutCache[MBB];
478 if (LOP.second == Node || !LiveOutSeen.test(MBB->getNumber())) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000479 // We already have a live-out defined in MBB, so this must be IdxMBB.
480 assert(MBB == IdxMBB && "Adding phi-def to known live-out");
481 LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
482 } else {
483 // This phi-def is also live-out, so color the whole block.
484 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000485 LOP = LiveOutPair(VNI, Node);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000486 }
487 } else if (IDomValue.first) {
488 // No phi-def here. Remember incoming value for IdxMBB.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000489 if (MBB == IdxMBB) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000490 IdxVNI = IDomValue.first;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000491 // IdxMBB need not be live-out.
492 if (!LiveOutSeen.test(MBB->getNumber()))
493 continue;
494 }
495 assert(LiveOutSeen.test(MBB->getNumber()) && "Expected live-out block");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000496 // Propagate IDomValue if needed:
497 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000498 LiveOutPair &LOP = LiveOutCache[MBB];
499 if (LOP.second != Node && LOP.first != IDomValue.first) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000500 ++Changes;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000501 LOP = IDomValue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000502 }
503 }
504 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000505 } while (Changes);
506
507 assert(IdxVNI && "Didn't find value for Idx");
508 return IdxVNI;
509}
510
Eric Christopher0f438112011-02-03 06:18:29 +0000511VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000512 VNInfo *ParentVNI,
513 SlotIndex UseIdx,
514 MachineBasicBlock &MBB,
515 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000516 MachineInstr *CopyMI = 0;
517 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000518 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000519
520 // Attempt cheap-as-a-copy rematerialization.
521 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000522 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
523 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000524 } else {
525 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000526 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000527 .addReg(Edit->getReg());
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000528 Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000529 }
530
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000531 // Define the value in Reg.
532 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
533 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000534 return VNI;
535}
536
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000537/// Create a new virtual register and live interval.
538void SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000539 assert(!OpenIdx && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000540
Eric Christopher0f438112011-02-03 06:18:29 +0000541 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000542 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000543 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000544
545 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000546 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000547 Edit->create(LIS, VRM);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000548}
549
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000550SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000551 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000552 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000553 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000554 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000555 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000556 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000557 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000558 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000559 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000560 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000561 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000562
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000563 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
564 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000565}
566
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000567SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000568 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000569 SlotIndex End = LIS.getMBBEndIdx(&MBB);
570 SlotIndex Last = End.getPrevSlot();
571 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000572 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000573 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000574 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000575 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000576 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000577 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000578 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000579 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000580 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000581 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000582 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000583}
584
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000585/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000586void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000587 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000588}
589
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000590void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000591 assert(OpenIdx && "openIntv not called before useIntv");
592 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
593 RegAssign.insert(Start, End, OpenIdx);
594 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000595}
596
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000597SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000598 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000599 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000600
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000601 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000602 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000603 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000604 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000605 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000606 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000607 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000608 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000609
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000610 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
611 assert(MI && "No instruction at index");
612 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
613 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000614 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000615}
616
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000617SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
618 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
619 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
620
621 // The interval must be live into the instruction at Idx.
622 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000623 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000624 if (!ParentVNI) {
625 DEBUG(dbgs() << ": not live\n");
626 return Idx.getNextSlot();
627 }
628 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
629
630 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
631 assert(MI && "No instruction at index");
632 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
633 return VNI->def;
634}
635
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000636SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000637 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000638 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000639 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000640
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000641 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000642 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000643 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000644 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000645 }
646
Eric Christopher0f438112011-02-03 06:18:29 +0000647 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000648 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000649 RegAssign.insert(Start, VNI->def, OpenIdx);
650 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000651 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000652}
653
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000654void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
655 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000656 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
657 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000658 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000659 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
660 "Range cannot span basic blocks");
661
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000662 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000663 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000664 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
665 RegAssign.insert(Start, End, OpenIdx);
666 DEBUG(dump());
667}
668
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000669/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000670/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000671void SplitEditor::closeIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000672 assert(OpenIdx && "openIntv not called before closeIntv");
673 OpenIdx = 0;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000674}
675
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000676/// transferSimpleValues - Transfer all simply defined values to the new live
677/// ranges.
678/// Values that were rematerialized or that have multiple defs are left alone.
679bool SplitEditor::transferSimpleValues() {
680 bool Skipped = false;
681 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000682 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
683 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000684 DEBUG(dbgs() << " blit " << *ParentI << ':');
685 VNInfo *ParentVNI = ParentI->valno;
686 // RegAssign has holes where RegIdx 0 should be used.
687 SlotIndex Start = ParentI->start;
688 AssignI.advanceTo(Start);
689 do {
690 unsigned RegIdx;
691 SlotIndex End = ParentI->end;
692 if (!AssignI.valid()) {
693 RegIdx = 0;
694 } else if (AssignI.start() <= Start) {
695 RegIdx = AssignI.value();
696 if (AssignI.stop() < End) {
697 End = AssignI.stop();
698 ++AssignI;
699 }
700 } else {
701 RegIdx = 0;
702 End = std::min(End, AssignI.start());
703 }
704 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
705 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
706 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000707 Edit->get(RegIdx)->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000708 } else
709 Skipped = true;
710 Start = End;
711 } while (Start != ParentI->end);
712 DEBUG(dbgs() << '\n');
713 }
714 return Skipped;
715}
716
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000717void SplitEditor::extendPHIKillRanges() {
718 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000719 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
720 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000721 const VNInfo *PHIVNI = *I;
722 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
723 continue;
724 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
725 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
726 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
727 PE = MBB->pred_end(); PI != PE; ++PI) {
728 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
729 // The predecessor may not have a live-out value. That is OK, like an
730 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000731 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000732 assert(RegAssign.lookup(End) == RegIdx &&
733 "Different register assignment in phi predecessor");
734 extendRange(RegIdx, End);
735 }
736 }
737 }
738}
739
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000740/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000741void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000742 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000743 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000744 MachineOperand &MO = RI.getOperand();
745 MachineInstr *MI = MO.getParent();
746 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000747 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000748 if (MI->isDebugValue()) {
749 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000750 MO.setReg(0);
751 continue;
752 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000753
754 // <undef> operands don't really read the register, so just assign them to
755 // the complement.
756 if (MO.isUse() && MO.isUndef()) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000757 MO.setReg(Edit->get(0)->reg);
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000758 continue;
759 }
760
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000761 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000762 if (MO.isDef())
763 Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000764
765 // Rewrite to the mapped register at Idx.
766 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000767 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000768 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
769 << Idx << ':' << RegIdx << '\t' << *MI);
770
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000771 // Extend liveness to Idx if the instruction reads reg.
772 if (!ExtendRanges)
773 continue;
774
775 // Skip instructions that don't read Reg.
776 if (MO.isDef()) {
777 if (!MO.getSubReg() && !MO.isEarlyClobber())
778 continue;
779 // We may wan't to extend a live range for a partial redef, or for a use
780 // tied to an early clobber.
781 Idx = Idx.getPrevSlot();
782 if (!Edit->getParent().liveAt(Idx))
783 continue;
784 } else
785 Idx = Idx.getUseIndex();
786
787 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000788 }
789}
790
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000791void SplitEditor::deleteRematVictims() {
792 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000793 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
794 LiveInterval *LI = *I;
795 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
796 LII != LIE; ++LII) {
797 // Dead defs end at the store slot.
798 if (LII->end != LII->valno->def.getNextSlot())
799 continue;
800 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
801 assert(MI && "Missing instruction for dead def");
802 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000803
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000804 if (!MI->allDefsAreDead())
805 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000806
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000807 DEBUG(dbgs() << "All defs dead: " << *MI);
808 Dead.push_back(MI);
809 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000810 }
811
812 if (Dead.empty())
813 return;
814
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000815 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000816}
817
Eric Christopher463a2972011-02-03 05:40:54 +0000818void SplitEditor::finish() {
Eric Christopher0f438112011-02-03 06:18:29 +0000819 assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000820 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000821
Eric Christopher0f438112011-02-03 06:18:29 +0000822 // At this point, the live intervals in Edit contain VNInfos corresponding to
823 // the inserted copies.
824
825 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000826 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
827 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +0000828 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000829 if (ParentVNI->isUnused())
830 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000831 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +0000832 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
833 VNI->setIsPHIDef(ParentVNI->isPHIDef());
834 VNI->setCopy(ParentVNI->getCopy());
835
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000836 // Mark rematted values as complex everywhere to force liveness computation.
837 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000838 if (Edit->didRematerialize(ParentVNI))
839 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000840 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000841 }
842
843#ifndef NDEBUG
844 // Every new interval must have a def by now, otherwise the split is bogus.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000845 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Eric Christopher0f438112011-02-03 06:18:29 +0000846 assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
847#endif
848
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000849 // Transfer the simply mapped values, check if any are complex.
850 bool Complex = transferSimpleValues();
851 if (Complex)
852 extendPHIKillRanges();
853 else
854 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +0000855
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000856 // Rewrite virtual registers, possibly extending ranges.
857 rewriteAssigned(Complex);
Eric Christopher0f438112011-02-03 06:18:29 +0000858
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000859 // Delete defs that were rematted everywhere.
860 if (Complex)
861 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000862
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000863 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000864 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000865 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000866
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000867 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000868 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000869 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000870 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000871 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000872 unsigned NumComp = ConEQ.Classify(li);
873 if (NumComp <= 1)
874 continue;
875 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
876 SmallVector<LiveInterval*, 8> dups;
877 dups.push_back(li);
878 for (unsigned i = 1; i != NumComp; ++i)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000879 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +0000880 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000881 }
882
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000883 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000884 VirtRegAuxInfo vrai(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000885 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000886 LiveInterval &li = **I;
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000887 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000888 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000889 DEBUG(dbgs() << " new interval " << MRI.getRegClass(li.reg)->getName()
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000890 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000891 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000892}
893
894
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000895//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000896// Single Block Splitting
897//===----------------------------------------------------------------------===//
898
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000899/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
900/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000901bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000902 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000903 if (LiveBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000904 return false;
905 // Add blocks with multiple uses.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000906 for (unsigned i = 0, e = LiveBlocks.size(); i != e; ++i) {
907 const BlockInfo &BI = LiveBlocks[i];
908 if (!BI.Uses)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000909 continue;
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000910 unsigned Instrs = UsingBlocks.lookup(BI.MBB);
911 if (Instrs <= 1)
912 continue;
913 if (Instrs == 2 && BI.LiveIn && BI.LiveOut && !BI.LiveThrough)
914 continue;
915 Blocks.insert(BI.MBB);
916 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000917 return !Blocks.empty();
918}
919
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000920/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000921/// basic block in Blocks.
922void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000923 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000924
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000925 for (unsigned i = 0, e = SA.LiveBlocks.size(); i != e; ++i) {
926 const SplitAnalysis::BlockInfo &BI = SA.LiveBlocks[i];
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000927 if (!BI.Uses || !Blocks.count(BI.MBB))
928 continue;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000929
930 openIntv();
Jakob Stoklund Olesenc8ec7652011-03-29 03:12:04 +0000931 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstUse,
932 BI.LastSplitPoint));
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000933 if (!BI.LiveOut || BI.LastUse < BI.LastSplitPoint) {
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000934 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
935 } else {
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000936 // The last use is after the last valid split point.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000937 SlotIndex SegStop = leaveIntvBefore(BI.LastSplitPoint);
938 useIntv(SegStart, SegStop);
939 overlapIntv(SegStop, BI.LastUse);
940 }
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000941 closeIntv();
942 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000943 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000944}