blob: b69a3078ac9c8dd7fc17b54dc590563d61cfbe3f [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
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000277 // Use insert for lookup, so we can add missing values with a second lookup.
278 std::pair<ValueMap::iterator, bool> InsP =
279 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
280
281 // This was the first time (RegIdx, ParentVNI) was mapped.
282 // Keep it as a simple def without any liveness.
283 if (InsP.second)
284 return VNI;
285
286 // If the previous value was a simple mapping, add liveness for it now.
287 if (VNInfo *OldVNI = InsP.first->second) {
288 SlotIndex Def = OldVNI->def;
289 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
290 // No longer a simple mapping.
291 InsP.first->second = 0;
292 }
293
294 // This is a complex mapping, add liveness for VNI
295 SlotIndex Def = VNI->def;
296 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
297
298 return VNI;
299}
300
301void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
302 assert(ParentVNI && "Mapping NULL value");
303 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
304
305 // ParentVNI was either unmapped or already complex mapped. Either way.
306 if (!VNI)
307 return;
308
309 // This was previously a single mapping. Make sure the old def is represented
310 // by a trivial live range.
311 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000312 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000313 VNI = 0;
314}
315
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000316// extendRange - Extend the live range to reach Idx.
317// Potentially create phi-def values.
318void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
319 assert(Idx.isValid() && "Invalid SlotIndex");
320 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
321 assert(IdxMBB && "No MBB at Idx");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000322 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000323
324 // Is there a def in the same MBB we can extend?
325 if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx))
326 return;
327
328 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
329 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
330 // Perform a search for all predecessor blocks where we know the dominating
331 // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000332
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000333 // Initialize the live-out cache the first time it is needed.
334 if (LiveOutSeen.empty()) {
335 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
336 LiveOutSeen.resize(N);
337 LiveOutCache.resize(N);
338 }
339
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000340 // Blocks where LI should be live-in.
341 SmallVector<MachineDomTreeNode*, 16> LiveIn;
342 LiveIn.push_back(MDT[IdxMBB]);
343
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000344 // Remember if we have seen more than one value.
345 bool UniqueVNI = true;
346 VNInfo *IdxVNI = 0;
347
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000348 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
349 for (unsigned i = 0; i != LiveIn.size(); ++i) {
350 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000351 assert(!MBB->pred_empty() && "Value live-in to entry block?");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000352 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
353 PE = MBB->pred_end(); PI != PE; ++PI) {
354 MachineBasicBlock *Pred = *PI;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000355 LiveOutPair &LOP = LiveOutCache[Pred];
356
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000357 // Is this a known live-out block?
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000358 if (LiveOutSeen.test(Pred->getNumber())) {
359 if (VNInfo *VNI = LOP.first) {
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000360 if (IdxVNI && IdxVNI != VNI)
361 UniqueVNI = false;
362 IdxVNI = VNI;
363 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000364 continue;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000365 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000366
367 // First time. LOP is garbage and must be cleared below.
368 LiveOutSeen.set(Pred->getNumber());
369
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000370 // Does Pred provide a live-out value?
371 SlotIndex Start, Last;
372 tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred);
373 Last = Last.getPrevSlot();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000374 VNInfo *VNI = LI->extendInBlock(Start, Last);
375 LOP.first = VNI;
376 if (VNI) {
377 LOP.second = MDT[LIS.getMBBFromIndex(VNI->def)];
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000378 if (IdxVNI && IdxVNI != VNI)
379 UniqueVNI = false;
380 IdxVNI = VNI;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000381 continue;
382 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000383 LOP.second = 0;
384
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000385 // No, we need a live-in value for Pred as well
386 if (Pred != IdxMBB)
387 LiveIn.push_back(MDT[Pred]);
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000388 else
389 UniqueVNI = false; // Loopback to IdxMBB, ask updateSSA() for help.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000390 }
391 }
392
393 // We may need to add phi-def values to preserve the SSA form.
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000394 if (UniqueVNI) {
395 LiveOutPair LOP(IdxVNI, MDT[LIS.getMBBFromIndex(IdxVNI->def)]);
396 // Update LiveOutCache, but skip IdxMBB at LiveIn[0].
397 for (unsigned i = 1, e = LiveIn.size(); i != e; ++i)
398 LiveOutCache[LiveIn[i]->getBlock()] = LOP;
399 } else
400 IdxVNI = updateSSA(RegIdx, LiveIn, Idx, IdxMBB);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000401
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000402 // Since we went through the trouble of a full BFS visiting all reaching defs,
403 // the values in LiveIn are now accurate. No more phi-defs are needed
404 // for these blocks, so we can color the live ranges.
405 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
406 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
407 SlotIndex Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000408 VNInfo *VNI = LiveOutCache[MBB].first;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000409
410 // Anything in LiveIn other than IdxMBB is live-through.
411 // In IdxMBB, we should stop at Idx unless the same value is live-out.
412 if (MBB == IdxMBB && IdxVNI != VNI)
413 LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
414 else
415 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
416 }
417}
418
419VNInfo *SplitEditor::updateSSA(unsigned RegIdx,
420 SmallVectorImpl<MachineDomTreeNode*> &LiveIn,
421 SlotIndex Idx,
422 const MachineBasicBlock *IdxMBB) {
423 // This is essentially the same iterative algorithm that SSAUpdater uses,
424 // except we already have a dominator tree, so we don't have to recompute it.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000425 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000426 VNInfo *IdxVNI = 0;
427 unsigned Changes;
428 do {
429 Changes = 0;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000430 // Propagate live-out values down the dominator tree, inserting phi-defs
431 // when necessary. Since LiveIn was created by a BFS, going backwards makes
432 // it more likely for us to visit immediate dominators before their
433 // children.
434 for (unsigned i = LiveIn.size(); i; --i) {
435 MachineDomTreeNode *Node = LiveIn[i-1];
436 MachineBasicBlock *MBB = Node->getBlock();
437 MachineDomTreeNode *IDom = Node->getIDom();
438 LiveOutPair IDomValue;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000439
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000440 // We need a live-in value to a block with no immediate dominator?
441 // This is probably an unreachable block that has survived somehow.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000442 bool needPHI = !IDom || !LiveOutSeen.test(IDom->getBlock()->getNumber());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000443
444 // IDom dominates all of our predecessors, but it may not be the immediate
445 // dominator. Check if any of them have live-out values that are properly
446 // dominated by IDom. If so, we need a phi-def here.
447 if (!needPHI) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000448 IDomValue = LiveOutCache[IDom->getBlock()];
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000449 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
450 PE = MBB->pred_end(); PI != PE; ++PI) {
451 LiveOutPair Value = LiveOutCache[*PI];
452 if (!Value.first || Value.first == IDomValue.first)
453 continue;
454 // This predecessor is carrying something other than IDomValue.
455 // It could be because IDomValue hasn't propagated yet, or it could be
456 // because MBB is in the dominance frontier of that value.
457 if (MDT.dominates(IDom, Value.second)) {
458 needPHI = true;
459 break;
460 }
461 }
462 }
463
464 // Create a phi-def if required.
465 if (needPHI) {
466 ++Changes;
467 SlotIndex Start = LIS.getMBBStartIdx(MBB);
468 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
469 VNI->setIsPHIDef(true);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000470 // We no longer need LI to be live-in.
471 LiveIn.erase(LiveIn.begin()+(i-1));
472 // Blocks in LiveIn are either IdxMBB, or have a value live-through.
473 if (MBB == IdxMBB)
474 IdxVNI = VNI;
475 // Check if we need to update live-out info.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000476 LiveOutPair &LOP = LiveOutCache[MBB];
477 if (LOP.second == Node || !LiveOutSeen.test(MBB->getNumber())) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000478 // We already have a live-out defined in MBB, so this must be IdxMBB.
479 assert(MBB == IdxMBB && "Adding phi-def to known live-out");
480 LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
481 } else {
482 // This phi-def is also live-out, so color the whole block.
483 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000484 LOP = LiveOutPair(VNI, Node);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000485 }
486 } else if (IDomValue.first) {
487 // No phi-def here. Remember incoming value for IdxMBB.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000488 if (MBB == IdxMBB) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000489 IdxVNI = IDomValue.first;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000490 // IdxMBB need not be live-out.
491 if (!LiveOutSeen.test(MBB->getNumber()))
492 continue;
493 }
494 assert(LiveOutSeen.test(MBB->getNumber()) && "Expected live-out block");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000495 // Propagate IDomValue if needed:
496 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000497 LiveOutPair &LOP = LiveOutCache[MBB];
498 if (LOP.second != Node && LOP.first != IDomValue.first) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000499 ++Changes;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000500 LOP = IDomValue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000501 }
502 }
503 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000504 } while (Changes);
505
506 assert(IdxVNI && "Didn't find value for Idx");
507 return IdxVNI;
508}
509
Eric Christopher0f438112011-02-03 06:18:29 +0000510VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000511 VNInfo *ParentVNI,
512 SlotIndex UseIdx,
513 MachineBasicBlock &MBB,
514 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000515 MachineInstr *CopyMI = 0;
516 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000517 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000518
519 // Attempt cheap-as-a-copy rematerialization.
520 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000521 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
522 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000523 } else {
524 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000525 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000526 .addReg(Edit->getReg());
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000527 Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000528 }
529
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000530 // Define the value in Reg.
531 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
532 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000533 return VNI;
534}
535
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000536/// Create a new virtual register and live interval.
537void SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000538 assert(!OpenIdx && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000539
Eric Christopher0f438112011-02-03 06:18:29 +0000540 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000541 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000542 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000543
544 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000545 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000546 Edit->create(LIS, VRM);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000547}
548
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000549SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000550 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000551 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000552 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000553 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000554 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000555 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000556 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000557 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000558 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000559 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000560 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000561
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000562 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
563 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000564}
565
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000566SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000567 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000568 SlotIndex End = LIS.getMBBEndIdx(&MBB);
569 SlotIndex Last = End.getPrevSlot();
570 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000571 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000572 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000573 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000574 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000575 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000576 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000577 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000578 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000579 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000580 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000581 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000582}
583
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000584/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000585void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000586 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000587}
588
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000589void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000590 assert(OpenIdx && "openIntv not called before useIntv");
591 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
592 RegAssign.insert(Start, End, OpenIdx);
593 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000594}
595
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000596SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000597 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000598 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000599
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000600 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000601 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000602 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000603 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000604 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000605 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000606 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000607 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000608
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000609 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
610 assert(MI && "No instruction at index");
611 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
612 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000613 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000614}
615
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000616SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
617 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
618 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
619
620 // The interval must be live into the instruction at Idx.
621 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000622 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000623 if (!ParentVNI) {
624 DEBUG(dbgs() << ": not live\n");
625 return Idx.getNextSlot();
626 }
627 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
628
629 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
630 assert(MI && "No instruction at index");
631 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
632 return VNI->def;
633}
634
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000635SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000636 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000637 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000638 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000639
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000640 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000641 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000642 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000643 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000644 }
645
Eric Christopher0f438112011-02-03 06:18:29 +0000646 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000647 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000648 RegAssign.insert(Start, VNI->def, OpenIdx);
649 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000650 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000651}
652
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000653void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
654 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000655 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
656 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000657 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000658 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
659 "Range cannot span basic blocks");
660
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000661 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000662 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000663 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
664 RegAssign.insert(Start, End, OpenIdx);
665 DEBUG(dump());
666}
667
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000668/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000669/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000670void SplitEditor::closeIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000671 assert(OpenIdx && "openIntv not called before closeIntv");
672 OpenIdx = 0;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000673}
674
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000675/// transferSimpleValues - Transfer all simply defined values to the new live
676/// ranges.
677/// Values that were rematerialized or that have multiple defs are left alone.
678bool SplitEditor::transferSimpleValues() {
679 bool Skipped = false;
680 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000681 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
682 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000683 DEBUG(dbgs() << " blit " << *ParentI << ':');
684 VNInfo *ParentVNI = ParentI->valno;
685 // RegAssign has holes where RegIdx 0 should be used.
686 SlotIndex Start = ParentI->start;
687 AssignI.advanceTo(Start);
688 do {
689 unsigned RegIdx;
690 SlotIndex End = ParentI->end;
691 if (!AssignI.valid()) {
692 RegIdx = 0;
693 } else if (AssignI.start() <= Start) {
694 RegIdx = AssignI.value();
695 if (AssignI.stop() < End) {
696 End = AssignI.stop();
697 ++AssignI;
698 }
699 } else {
700 RegIdx = 0;
701 End = std::min(End, AssignI.start());
702 }
703 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
704 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
705 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000706 Edit->get(RegIdx)->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000707 } else
708 Skipped = true;
709 Start = End;
710 } while (Start != ParentI->end);
711 DEBUG(dbgs() << '\n');
712 }
713 return Skipped;
714}
715
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000716void SplitEditor::extendPHIKillRanges() {
717 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000718 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
719 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000720 const VNInfo *PHIVNI = *I;
721 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
722 continue;
723 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
724 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
725 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
726 PE = MBB->pred_end(); PI != PE; ++PI) {
727 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
728 // The predecessor may not have a live-out value. That is OK, like an
729 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000730 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000731 assert(RegAssign.lookup(End) == RegIdx &&
732 "Different register assignment in phi predecessor");
733 extendRange(RegIdx, End);
734 }
735 }
736 }
737}
738
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000739/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000740void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000741 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000742 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000743 MachineOperand &MO = RI.getOperand();
744 MachineInstr *MI = MO.getParent();
745 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000746 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000747 if (MI->isDebugValue()) {
748 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000749 MO.setReg(0);
750 continue;
751 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000752
753 // <undef> operands don't really read the register, so just assign them to
754 // the complement.
755 if (MO.isUse() && MO.isUndef()) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000756 MO.setReg(Edit->get(0)->reg);
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000757 continue;
758 }
759
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000760 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000761 if (MO.isDef())
762 Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000763
764 // Rewrite to the mapped register at Idx.
765 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000766 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000767 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
768 << Idx << ':' << RegIdx << '\t' << *MI);
769
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000770 // Extend liveness to Idx if the instruction reads reg.
771 if (!ExtendRanges)
772 continue;
773
774 // Skip instructions that don't read Reg.
775 if (MO.isDef()) {
776 if (!MO.getSubReg() && !MO.isEarlyClobber())
777 continue;
778 // We may wan't to extend a live range for a partial redef, or for a use
779 // tied to an early clobber.
780 Idx = Idx.getPrevSlot();
781 if (!Edit->getParent().liveAt(Idx))
782 continue;
783 } else
784 Idx = Idx.getUseIndex();
785
786 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000787 }
788}
789
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000790void SplitEditor::deleteRematVictims() {
791 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000792 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
793 LiveInterval *LI = *I;
794 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
795 LII != LIE; ++LII) {
796 // Dead defs end at the store slot.
797 if (LII->end != LII->valno->def.getNextSlot())
798 continue;
799 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
800 assert(MI && "Missing instruction for dead def");
801 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000802
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000803 if (!MI->allDefsAreDead())
804 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000805
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000806 DEBUG(dbgs() << "All defs dead: " << *MI);
807 Dead.push_back(MI);
808 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000809 }
810
811 if (Dead.empty())
812 return;
813
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000814 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000815}
816
Eric Christopher463a2972011-02-03 05:40:54 +0000817void SplitEditor::finish() {
Eric Christopher0f438112011-02-03 06:18:29 +0000818 assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000819 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000820
Eric Christopher0f438112011-02-03 06:18:29 +0000821 // At this point, the live intervals in Edit contain VNInfos corresponding to
822 // the inserted copies.
823
824 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000825 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
826 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +0000827 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000828 if (ParentVNI->isUnused())
829 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000830 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +0000831 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
832 VNI->setIsPHIDef(ParentVNI->isPHIDef());
833 VNI->setCopy(ParentVNI->getCopy());
834
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000835 // Mark rematted values as complex everywhere to force liveness computation.
836 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000837 if (Edit->didRematerialize(ParentVNI))
838 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000839 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000840 }
841
842#ifndef NDEBUG
843 // Every new interval must have a def by now, otherwise the split is bogus.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000844 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Eric Christopher0f438112011-02-03 06:18:29 +0000845 assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
846#endif
847
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000848 // Transfer the simply mapped values, check if any are complex.
849 bool Complex = transferSimpleValues();
850 if (Complex)
851 extendPHIKillRanges();
852 else
853 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +0000854
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000855 // Rewrite virtual registers, possibly extending ranges.
856 rewriteAssigned(Complex);
Eric Christopher0f438112011-02-03 06:18:29 +0000857
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000858 // Delete defs that were rematted everywhere.
859 if (Complex)
860 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000861
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000862 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000863 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000864 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000865
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000866 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000867 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000868 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000869 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000870 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000871 unsigned NumComp = ConEQ.Classify(li);
872 if (NumComp <= 1)
873 continue;
874 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
875 SmallVector<LiveInterval*, 8> dups;
876 dups.push_back(li);
877 for (unsigned i = 1; i != NumComp; ++i)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000878 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +0000879 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000880 }
881
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000882 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000883 VirtRegAuxInfo vrai(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000884 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000885 LiveInterval &li = **I;
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000886 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000887 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000888 DEBUG(dbgs() << " new interval " << MRI.getRegClass(li.reg)->getName()
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000889 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000890 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000891}
892
893
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000894//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000895// Single Block Splitting
896//===----------------------------------------------------------------------===//
897
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000898/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
899/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000900bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000901 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000902 if (LiveBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000903 return false;
904 // Add blocks with multiple uses.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000905 for (unsigned i = 0, e = LiveBlocks.size(); i != e; ++i) {
906 const BlockInfo &BI = LiveBlocks[i];
907 if (!BI.Uses)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000908 continue;
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000909 unsigned Instrs = UsingBlocks.lookup(BI.MBB);
910 if (Instrs <= 1)
911 continue;
912 if (Instrs == 2 && BI.LiveIn && BI.LiveOut && !BI.LiveThrough)
913 continue;
914 Blocks.insert(BI.MBB);
915 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000916 return !Blocks.empty();
917}
918
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000919/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000920/// basic block in Blocks.
921void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000922 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000923
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000924 for (unsigned i = 0, e = SA.LiveBlocks.size(); i != e; ++i) {
925 const SplitAnalysis::BlockInfo &BI = SA.LiveBlocks[i];
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000926 if (!BI.Uses || !Blocks.count(BI.MBB))
927 continue;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000928
929 openIntv();
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000930 SlotIndex SegStart = enterIntvBefore(BI.FirstUse);
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000931 if (!BI.LiveOut || BI.LastUse < BI.LastSplitPoint) {
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000932 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
933 } else {
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000934 // The last use is after the last valid split point.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000935 SlotIndex SegStop = leaveIntvBefore(BI.LastSplitPoint);
936 useIntv(SegStart, SegStop);
937 overlapIntv(SegStop, BI.LastUse);
938 }
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000939 closeIntv();
940 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000941 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000942}