blob: f16d0338b66feaaafbbe5ed005cf937e9bf4c104 [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 Olesenf0ac26c2011-02-09 22:50:26 +000084 calcLiveBlockInfo();
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +000085 DEBUG(dbgs() << " counted "
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000086 << UsingInstrs.size() << " instrs, "
Jakob Stoklund Olesen4f5c9d22011-02-09 23:56:18 +000087 << UsingBlocks.size() << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000088}
89
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +000090/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
91/// where CurLI is live.
92void SplitAnalysis::calcLiveBlockInfo() {
93 if (CurLI->empty())
94 return;
95
96 LiveInterval::const_iterator LVI = CurLI->begin();
97 LiveInterval::const_iterator LVE = CurLI->end();
98
99 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
100 UseI = UseSlots.begin();
101 UseE = UseSlots.end();
102
103 // Loop over basic blocks where CurLI is live.
104 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
105 for (;;) {
106 BlockInfo BI;
107 BI.MBB = MFI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000108 tie(BI.Start, BI.Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000109
110 // The last split point is the latest possible insertion point that dominates
111 // all successor blocks. If interference reaches LastSplitPoint, it is not
112 // possible to insert a split or reload that makes CurLI live in the
113 // outgoing bundle.
114 MachineBasicBlock::iterator LSP = LIS.getLastSplitPoint(*CurLI, BI.MBB);
115 if (LSP == BI.MBB->end())
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000116 BI.LastSplitPoint = BI.Stop;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000117 else
118 BI.LastSplitPoint = LIS.getInstructionIndex(LSP);
119
120 // LVI is the first live segment overlapping MBB.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000121 BI.LiveIn = LVI->start <= BI.Start;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000122 if (!BI.LiveIn)
123 BI.Def = LVI->start;
124
125 // Find the first and last uses in the block.
126 BI.Uses = hasUses(MFI);
127 if (BI.Uses && UseI != UseE) {
128 BI.FirstUse = *UseI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000129 assert(BI.FirstUse >= BI.Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000130 do ++UseI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000131 while (UseI != UseE && *UseI < BI.Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000132 BI.LastUse = UseI[-1];
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000133 assert(BI.LastUse < BI.Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000134 }
135
136 // Look for gaps in the live range.
137 bool hasGap = false;
138 BI.LiveOut = true;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000139 while (LVI->end < BI.Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000140 SlotIndex LastStop = LVI->end;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000141 if (++LVI == LVE || LVI->start >= BI.Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000142 BI.Kill = LastStop;
143 BI.LiveOut = false;
144 break;
145 }
146 if (LastStop < LVI->start) {
147 hasGap = true;
148 BI.Kill = LastStop;
149 BI.Def = LVI->start;
150 }
151 }
152
153 // Don't set LiveThrough when the block has a gap.
154 BI.LiveThrough = !hasGap && BI.LiveIn && BI.LiveOut;
155 LiveBlocks.push_back(BI);
156
157 // LVI is now at LVE or LVI->end >= Stop.
158 if (LVI == LVE)
159 break;
160
161 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000162 if (LVI->end == BI.Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000163 break;
164
165 // Pick the next basic block.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000166 if (LVI->start < BI.Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000167 ++MFI;
168 else
169 MFI = LIS.getMBBFromIndex(LVI->start);
170 }
171}
172
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000173bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
174 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
175 const LiveInterval &Orig = LIS.getInterval(OrigReg);
176 assert(!Orig.empty() && "Splitting empty interval?");
177 LiveInterval::const_iterator I = Orig.find(Idx);
178
179 // Range containing Idx should begin at Idx.
180 if (I != Orig.end() && I->start <= Idx)
181 return I->start == Idx;
182
183 // Range does not contain Idx, previous must end at Idx.
184 return I != Orig.begin() && (--I)->end == Idx;
185}
186
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000187void SplitAnalysis::print(const BlockPtrSet &B, raw_ostream &OS) const {
188 for (BlockPtrSet::const_iterator I = B.begin(), E = B.end(); I != E; ++I) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000189 unsigned count = UsingBlocks.lookup(*I);
Jakob Stoklund Olesen532de3d2010-10-22 20:28:21 +0000190 OS << " BB#" << (*I)->getNumber();
191 if (count)
192 OS << '(' << count << ')';
193 }
194}
195
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000196void SplitAnalysis::analyze(const LiveInterval *li) {
197 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000198 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000199 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000200}
201
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000202
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000203//===----------------------------------------------------------------------===//
204// Split Editor
205//===----------------------------------------------------------------------===//
206
207/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000208SplitEditor::SplitEditor(SplitAnalysis &sa,
209 LiveIntervals &lis,
210 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000211 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000212 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000213 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000214 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000215 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
216 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000217 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000218 OpenIdx(0),
219 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000220{}
221
222void SplitEditor::reset(LiveRangeEdit &lre) {
223 Edit = &lre;
224 OpenIdx = 0;
225 RegAssign.clear();
226 Values.clear();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000227
228 // We don't need to clear LiveOutCache, only LiveOutSeen entries are read.
229 LiveOutSeen.clear();
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000230
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000231 // We don't need an AliasAnalysis since we will only be performing
232 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000233 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000234}
235
Eric Christopher0f438112011-02-03 06:18:29 +0000236void SplitEditor::dump() const {
237 if (RegAssign.empty()) {
238 dbgs() << " empty\n";
239 return;
240 }
241
242 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
243 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
244 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000245}
246
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000247VNInfo *SplitEditor::defValue(unsigned RegIdx,
248 const VNInfo *ParentVNI,
249 SlotIndex Idx) {
250 assert(ParentVNI && "Mapping NULL value");
251 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000252 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
253 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000254
255 // Create a new value.
256 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
257
258 // Preserve the PHIDef bit.
259 if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
260 VNI->setIsPHIDef(true);
261
262 // Use insert for lookup, so we can add missing values with a second lookup.
263 std::pair<ValueMap::iterator, bool> InsP =
264 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
265
266 // This was the first time (RegIdx, ParentVNI) was mapped.
267 // Keep it as a simple def without any liveness.
268 if (InsP.second)
269 return VNI;
270
271 // If the previous value was a simple mapping, add liveness for it now.
272 if (VNInfo *OldVNI = InsP.first->second) {
273 SlotIndex Def = OldVNI->def;
274 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
275 // No longer a simple mapping.
276 InsP.first->second = 0;
277 }
278
279 // This is a complex mapping, add liveness for VNI
280 SlotIndex Def = VNI->def;
281 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
282
283 return VNI;
284}
285
286void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
287 assert(ParentVNI && "Mapping NULL value");
288 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
289
290 // ParentVNI was either unmapped or already complex mapped. Either way.
291 if (!VNI)
292 return;
293
294 // This was previously a single mapping. Make sure the old def is represented
295 // by a trivial live range.
296 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000297 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000298 VNI = 0;
299}
300
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000301// extendRange - Extend the live range to reach Idx.
302// Potentially create phi-def values.
303void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
304 assert(Idx.isValid() && "Invalid SlotIndex");
305 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
306 assert(IdxMBB && "No MBB at Idx");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000307 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000308
309 // Is there a def in the same MBB we can extend?
310 if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx))
311 return;
312
313 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
314 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
315 // Perform a search for all predecessor blocks where we know the dominating
316 // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
317 DEBUG(dbgs() << "\n Reaching defs for BB#" << IdxMBB->getNumber()
318 << " at " << Idx << " in " << *LI << '\n');
319
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000320 // Initialize the live-out cache the first time it is needed.
321 if (LiveOutSeen.empty()) {
322 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
323 LiveOutSeen.resize(N);
324 LiveOutCache.resize(N);
325 }
326
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000327 // Blocks where LI should be live-in.
328 SmallVector<MachineDomTreeNode*, 16> LiveIn;
329 LiveIn.push_back(MDT[IdxMBB]);
330
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000331 // Remember if we have seen more than one value.
332 bool UniqueVNI = true;
333 VNInfo *IdxVNI = 0;
334
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000335 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
336 for (unsigned i = 0; i != LiveIn.size(); ++i) {
337 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
338 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
339 PE = MBB->pred_end(); PI != PE; ++PI) {
340 MachineBasicBlock *Pred = *PI;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000341 LiveOutPair &LOP = LiveOutCache[Pred];
342
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000343 // Is this a known live-out block?
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000344 if (LiveOutSeen.test(Pred->getNumber())) {
345 if (VNInfo *VNI = LOP.first) {
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000346 if (IdxVNI && IdxVNI != VNI)
347 UniqueVNI = false;
348 IdxVNI = VNI;
349 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000350 continue;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000351 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000352
353 // First time. LOP is garbage and must be cleared below.
354 LiveOutSeen.set(Pred->getNumber());
355
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000356 // Does Pred provide a live-out value?
357 SlotIndex Start, Last;
358 tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred);
359 Last = Last.getPrevSlot();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000360 VNInfo *VNI = LI->extendInBlock(Start, Last);
361 LOP.first = VNI;
362 if (VNI) {
363 LOP.second = MDT[LIS.getMBBFromIndex(VNI->def)];
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000364 if (IdxVNI && IdxVNI != VNI)
365 UniqueVNI = false;
366 IdxVNI = VNI;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000367 continue;
368 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000369 LOP.second = 0;
370
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000371 // No, we need a live-in value for Pred as well
372 if (Pred != IdxMBB)
373 LiveIn.push_back(MDT[Pred]);
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000374 else
375 UniqueVNI = false; // Loopback to IdxMBB, ask updateSSA() for help.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000376 }
377 }
378
379 // We may need to add phi-def values to preserve the SSA form.
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000380 if (UniqueVNI) {
381 LiveOutPair LOP(IdxVNI, MDT[LIS.getMBBFromIndex(IdxVNI->def)]);
382 // Update LiveOutCache, but skip IdxMBB at LiveIn[0].
383 for (unsigned i = 1, e = LiveIn.size(); i != e; ++i)
384 LiveOutCache[LiveIn[i]->getBlock()] = LOP;
385 } else
386 IdxVNI = updateSSA(RegIdx, LiveIn, Idx, IdxMBB);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000387
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000388 // Since we went through the trouble of a full BFS visiting all reaching defs,
389 // the values in LiveIn are now accurate. No more phi-defs are needed
390 // for these blocks, so we can color the live ranges.
391 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
392 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
393 SlotIndex Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000394 VNInfo *VNI = LiveOutCache[MBB].first;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000395
396 // Anything in LiveIn other than IdxMBB is live-through.
397 // In IdxMBB, we should stop at Idx unless the same value is live-out.
398 if (MBB == IdxMBB && IdxVNI != VNI)
399 LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
400 else
401 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
402 }
403}
404
405VNInfo *SplitEditor::updateSSA(unsigned RegIdx,
406 SmallVectorImpl<MachineDomTreeNode*> &LiveIn,
407 SlotIndex Idx,
408 const MachineBasicBlock *IdxMBB) {
409 // This is essentially the same iterative algorithm that SSAUpdater uses,
410 // except we already have a dominator tree, so we don't have to recompute it.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000411 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000412 VNInfo *IdxVNI = 0;
413 unsigned Changes;
414 do {
415 Changes = 0;
416 DEBUG(dbgs() << " Iterating over " << LiveIn.size() << " blocks.\n");
417 // Propagate live-out values down the dominator tree, inserting phi-defs
418 // when necessary. Since LiveIn was created by a BFS, going backwards makes
419 // it more likely for us to visit immediate dominators before their
420 // children.
421 for (unsigned i = LiveIn.size(); i; --i) {
422 MachineDomTreeNode *Node = LiveIn[i-1];
423 MachineBasicBlock *MBB = Node->getBlock();
424 MachineDomTreeNode *IDom = Node->getIDom();
425 LiveOutPair IDomValue;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000426
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000427 // We need a live-in value to a block with no immediate dominator?
428 // This is probably an unreachable block that has survived somehow.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000429 bool needPHI = !IDom || !LiveOutSeen.test(IDom->getBlock()->getNumber());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000430
431 // IDom dominates all of our predecessors, but it may not be the immediate
432 // dominator. Check if any of them have live-out values that are properly
433 // dominated by IDom. If so, we need a phi-def here.
434 if (!needPHI) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000435 IDomValue = LiveOutCache[IDom->getBlock()];
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000436 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
437 PE = MBB->pred_end(); PI != PE; ++PI) {
438 LiveOutPair Value = LiveOutCache[*PI];
439 if (!Value.first || Value.first == IDomValue.first)
440 continue;
441 // This predecessor is carrying something other than IDomValue.
442 // It could be because IDomValue hasn't propagated yet, or it could be
443 // because MBB is in the dominance frontier of that value.
444 if (MDT.dominates(IDom, Value.second)) {
445 needPHI = true;
446 break;
447 }
448 }
449 }
450
451 // Create a phi-def if required.
452 if (needPHI) {
453 ++Changes;
454 SlotIndex Start = LIS.getMBBStartIdx(MBB);
455 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
456 VNI->setIsPHIDef(true);
457 DEBUG(dbgs() << " - BB#" << MBB->getNumber()
458 << " phi-def #" << VNI->id << " at " << Start << '\n');
459 // We no longer need LI to be live-in.
460 LiveIn.erase(LiveIn.begin()+(i-1));
461 // Blocks in LiveIn are either IdxMBB, or have a value live-through.
462 if (MBB == IdxMBB)
463 IdxVNI = VNI;
464 // Check if we need to update live-out info.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000465 LiveOutPair &LOP = LiveOutCache[MBB];
466 if (LOP.second == Node || !LiveOutSeen.test(MBB->getNumber())) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000467 // We already have a live-out defined in MBB, so this must be IdxMBB.
468 assert(MBB == IdxMBB && "Adding phi-def to known live-out");
469 LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
470 } else {
471 // This phi-def is also live-out, so color the whole block.
472 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000473 LOP = LiveOutPair(VNI, Node);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000474 }
475 } else if (IDomValue.first) {
476 // No phi-def here. Remember incoming value for IdxMBB.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000477 if (MBB == IdxMBB) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000478 IdxVNI = IDomValue.first;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000479 // IdxMBB need not be live-out.
480 if (!LiveOutSeen.test(MBB->getNumber()))
481 continue;
482 }
483 assert(LiveOutSeen.test(MBB->getNumber()) && "Expected live-out block");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000484 // Propagate IDomValue if needed:
485 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000486 LiveOutPair &LOP = LiveOutCache[MBB];
487 if (LOP.second != Node && LOP.first != IDomValue.first) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000488 ++Changes;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000489 LOP = IDomValue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000490 DEBUG(dbgs() << " - BB#" << MBB->getNumber()
491 << " idom valno #" << IDomValue.first->id
492 << " from BB#" << IDom->getBlock()->getNumber() << '\n');
493 }
494 }
495 }
496 DEBUG(dbgs() << " - made " << Changes << " changes.\n");
497 } while (Changes);
498
499 assert(IdxVNI && "Didn't find value for Idx");
500 return IdxVNI;
501}
502
Eric Christopher0f438112011-02-03 06:18:29 +0000503VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000504 VNInfo *ParentVNI,
505 SlotIndex UseIdx,
506 MachineBasicBlock &MBB,
507 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000508 MachineInstr *CopyMI = 0;
509 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000510 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000511
512 // Attempt cheap-as-a-copy rematerialization.
513 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000514 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
515 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000516 } else {
517 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000518 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000519 .addReg(Edit->getReg());
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000520 Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000521 }
522
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000523 // Define the value in Reg.
524 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
525 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000526 return VNI;
527}
528
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000529/// Create a new virtual register and live interval.
530void SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000531 assert(!OpenIdx && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000532
Eric Christopher0f438112011-02-03 06:18:29 +0000533 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000534 if (Edit->empty())
535 Edit->create(MRI, LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000536
537 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000538 OpenIdx = Edit->size();
539 Edit->create(MRI, LIS, VRM);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000540}
541
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000542SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000543 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000544 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000545 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000546 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000547 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000548 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000549 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000550 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000551 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000552 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000553 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000554
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000555 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
556 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000557}
558
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000559SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000560 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000561 SlotIndex End = LIS.getMBBEndIdx(&MBB);
562 SlotIndex Last = End.getPrevSlot();
563 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000564 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000565 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000566 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000567 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000568 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000569 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000570 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000571 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000572 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000573 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000574 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000575}
576
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000577/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000578void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000579 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000580}
581
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000582void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000583 assert(OpenIdx && "openIntv not called before useIntv");
584 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
585 RegAssign.insert(Start, End, OpenIdx);
586 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000587}
588
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000589SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000590 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000591 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000592
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000593 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000594 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000595 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000596 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000597 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000598 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000599 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000600 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000601
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000602 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
603 assert(MI && "No instruction at index");
604 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
605 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000606 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000607}
608
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000609SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
610 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
611 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
612
613 // The interval must be live into the instruction at Idx.
614 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000615 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000616 if (!ParentVNI) {
617 DEBUG(dbgs() << ": not live\n");
618 return Idx.getNextSlot();
619 }
620 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
621
622 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
623 assert(MI && "No instruction at index");
624 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
625 return VNI->def;
626}
627
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000628SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000629 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000630 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000631 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000632
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000633 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000634 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000635 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000636 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000637 }
638
Eric Christopher0f438112011-02-03 06:18:29 +0000639 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000640 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000641 RegAssign.insert(Start, VNI->def, OpenIdx);
642 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000643 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000644}
645
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000646void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
647 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000648 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
649 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000650 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000651 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
652 "Range cannot span basic blocks");
653
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000654 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000655 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000656 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
657 RegAssign.insert(Start, End, OpenIdx);
658 DEBUG(dump());
659}
660
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000661/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000662/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000663void SplitEditor::closeIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000664 assert(OpenIdx && "openIntv not called before closeIntv");
665 OpenIdx = 0;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000666}
667
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000668/// transferSimpleValues - Transfer all simply defined values to the new live
669/// ranges.
670/// Values that were rematerialized or that have multiple defs are left alone.
671bool SplitEditor::transferSimpleValues() {
672 bool Skipped = false;
673 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000674 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
675 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000676 DEBUG(dbgs() << " blit " << *ParentI << ':');
677 VNInfo *ParentVNI = ParentI->valno;
678 // RegAssign has holes where RegIdx 0 should be used.
679 SlotIndex Start = ParentI->start;
680 AssignI.advanceTo(Start);
681 do {
682 unsigned RegIdx;
683 SlotIndex End = ParentI->end;
684 if (!AssignI.valid()) {
685 RegIdx = 0;
686 } else if (AssignI.start() <= Start) {
687 RegIdx = AssignI.value();
688 if (AssignI.stop() < End) {
689 End = AssignI.stop();
690 ++AssignI;
691 }
692 } else {
693 RegIdx = 0;
694 End = std::min(End, AssignI.start());
695 }
696 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
697 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
698 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000699 Edit->get(RegIdx)->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000700 } else
701 Skipped = true;
702 Start = End;
703 } while (Start != ParentI->end);
704 DEBUG(dbgs() << '\n');
705 }
706 return Skipped;
707}
708
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000709void SplitEditor::extendPHIKillRanges() {
710 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000711 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
712 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000713 const VNInfo *PHIVNI = *I;
714 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
715 continue;
716 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
717 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
718 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
719 PE = MBB->pred_end(); PI != PE; ++PI) {
720 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
721 // The predecessor may not have a live-out value. That is OK, like an
722 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000723 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000724 assert(RegAssign.lookup(End) == RegIdx &&
725 "Different register assignment in phi predecessor");
726 extendRange(RegIdx, End);
727 }
728 }
729 }
730}
731
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000732/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000733void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000734 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000735 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000736 MachineOperand &MO = RI.getOperand();
737 MachineInstr *MI = MO.getParent();
738 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000739 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000740 if (MI->isDebugValue()) {
741 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000742 MO.setReg(0);
743 continue;
744 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000745
746 // <undef> operands don't really read the register, so just assign them to
747 // the complement.
748 if (MO.isUse() && MO.isUndef()) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000749 MO.setReg(Edit->get(0)->reg);
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000750 continue;
751 }
752
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000753 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000754 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000755
756 // Rewrite to the mapped register at Idx.
757 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000758 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000759 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
760 << Idx << ':' << RegIdx << '\t' << *MI);
761
762 // Extend liveness to Idx.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000763 if (ExtendRanges)
764 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000765 }
766}
767
Eric Christopher0f438112011-02-03 06:18:29 +0000768/// rewriteSplit - Rewrite uses of Intvs[0] according to the ConEQ mapping.
769void SplitEditor::rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
770 const ConnectedVNInfoEqClasses &ConEq) {
771 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Intvs[0]->reg),
772 RE = MRI.reg_end(); RI != RE;) {
773 MachineOperand &MO = RI.getOperand();
774 MachineInstr *MI = MO.getParent();
775 ++RI;
776 if (MO.isUse() && MO.isUndef())
Jakob Stoklund Olesen9d999772010-10-21 18:47:08 +0000777 continue;
Eric Christopher0f438112011-02-03 06:18:29 +0000778 // DBG_VALUE instructions should have been eliminated earlier.
779 SlotIndex Idx = LIS.getInstructionIndex(MI);
780 Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
781 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
782 << Idx << ':');
783 const VNInfo *VNI = Intvs[0]->getVNInfoAt(Idx);
784 assert(VNI && "Interval not live at use.");
785 MO.setReg(Intvs[ConEq.getEqClass(VNI)]->reg);
786 DEBUG(dbgs() << VNI->id << '\t' << *MI);
Eric Christopher463a2972011-02-03 05:40:54 +0000787 }
Eric Christopher463a2972011-02-03 05:40:54 +0000788}
Jakob Stoklund Olesen2cd21112011-02-03 00:54:23 +0000789
Eric Christopher463a2972011-02-03 05:40:54 +0000790void SplitEditor::finish() {
Eric Christopher0f438112011-02-03 06:18:29 +0000791 assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000792 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000793
Eric Christopher0f438112011-02-03 06:18:29 +0000794 // At this point, the live intervals in Edit contain VNInfos corresponding to
795 // the inserted copies.
796
797 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000798 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
799 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +0000800 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000801 if (ParentVNI->isUnused())
802 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000803 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000804 defValue(RegIdx, ParentVNI, ParentVNI->def);
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000805 // Mark rematted values as complex everywhere to force liveness computation.
806 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000807 if (Edit->didRematerialize(ParentVNI))
808 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000809 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000810 }
811
812#ifndef NDEBUG
813 // Every new interval must have a def by now, otherwise the split is bogus.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000814 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Eric Christopher0f438112011-02-03 06:18:29 +0000815 assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
816#endif
817
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000818 // Transfer the simply mapped values, check if any are complex.
819 bool Complex = transferSimpleValues();
820 if (Complex)
821 extendPHIKillRanges();
822 else
823 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +0000824
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000825 // Rewrite virtual registers, possibly extending ranges.
826 rewriteAssigned(Complex);
Eric Christopher0f438112011-02-03 06:18:29 +0000827
828 // FIXME: Delete defs that were rematted everywhere.
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000829
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000830 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000831 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000832 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000833
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000834 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000835 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000836 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000837 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000838 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000839 unsigned NumComp = ConEQ.Classify(li);
840 if (NumComp <= 1)
841 continue;
842 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
843 SmallVector<LiveInterval*, 8> dups;
844 dups.push_back(li);
845 for (unsigned i = 1; i != NumComp; ++i)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000846 dups.push_back(&Edit->create(MRI, LIS, VRM));
Eric Christopher0f438112011-02-03 06:18:29 +0000847 rewriteComponents(dups, ConEQ);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000848 ConEQ.Distribute(&dups[0]);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000849 }
850
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000851 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000852 VirtRegAuxInfo vrai(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000853 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +0000854 LiveInterval &li = **I;
Jakob Stoklund Olesen9db3ea42010-08-10 18:37:40 +0000855 vrai.CalculateRegClass(li.reg);
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000856 vrai.CalculateWeightAndHint(li);
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000857 DEBUG(dbgs() << " new interval " << MRI.getRegClass(li.reg)->getName()
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000858 << ":" << li << '\n');
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000859 }
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000860}
861
862
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000863//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000864// Single Block Splitting
865//===----------------------------------------------------------------------===//
866
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000867/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
868/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000869bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000870 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000871 if (LiveBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000872 return false;
873 // Add blocks with multiple uses.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000874 for (unsigned i = 0, e = LiveBlocks.size(); i != e; ++i) {
875 const BlockInfo &BI = LiveBlocks[i];
876 if (!BI.Uses)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000877 continue;
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000878 unsigned Instrs = UsingBlocks.lookup(BI.MBB);
879 if (Instrs <= 1)
880 continue;
881 if (Instrs == 2 && BI.LiveIn && BI.LiveOut && !BI.LiveThrough)
882 continue;
883 Blocks.insert(BI.MBB);
884 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000885 return !Blocks.empty();
886}
887
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000888/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000889/// basic block in Blocks.
890void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000891 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000892
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000893 for (unsigned i = 0, e = SA.LiveBlocks.size(); i != e; ++i) {
894 const SplitAnalysis::BlockInfo &BI = SA.LiveBlocks[i];
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000895 if (!BI.Uses || !Blocks.count(BI.MBB))
896 continue;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000897
898 openIntv();
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000899 SlotIndex SegStart = enterIntvBefore(BI.FirstUse);
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000900 if (!BI.LiveOut || BI.LastUse < BI.LastSplitPoint) {
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000901 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
902 } else {
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000903 // The last use is after the last valid split point.
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000904 SlotIndex SegStop = leaveIntvBefore(BI.LastSplitPoint);
905 useIntv(SegStart, SegStop);
906 overlapIntv(SegStop, BI.LastUse);
907 }
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000908 closeIntv();
909 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000910 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000911}