blob: 201e9b16cba4e64fb70c9ac950016939bcde059c [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 Olesen8ae02632010-07-20 15:41:07 +000020#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +000021#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000028
29using namespace llvm;
30
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000031STATISTIC(NumFinished, "Number of splits finished");
32STATISTIC(NumSimple, "Number of splits that were simple");
33
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000034//===----------------------------------------------------------------------===//
35// Split Analysis
36//===----------------------------------------------------------------------===//
37
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000038SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000039 const LiveIntervals &lis,
40 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000041 : MF(vrm.getMachineFunction()),
42 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000043 LIS(lis),
44 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000045 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000046 CurLI(0),
47 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000048
49void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000050 UseSlots.clear();
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000051 UseBlocks.clear();
52 ThroughBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000053 CurLI = 0;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000054}
55
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000056SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
57 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
58 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
59 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
60
61 // Compute split points on the first call. The pair is independent of the
62 // current live interval.
63 if (!LSP.first.isValid()) {
64 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
65 if (FirstTerm == MBB->end())
66 LSP.first = LIS.getMBBEndIdx(MBB);
67 else
68 LSP.first = LIS.getInstructionIndex(FirstTerm);
69
70 // If there is a landing pad successor, also find the call instruction.
71 if (!LPad)
72 return LSP.first;
73 // There may not be a call instruction (?) in which case we ignore LPad.
74 LSP.second = LSP.first;
75 for (MachineBasicBlock::const_iterator I = FirstTerm, E = MBB->begin();
76 I != E; --I)
77 if (I->getDesc().isCall()) {
78 LSP.second = LIS.getInstructionIndex(I);
79 break;
80 }
81 }
82
83 // If CurLI is live into a landing pad successor, move the last split point
84 // back to the call that may throw.
Jakob Stoklund Olesen71d9e652011-04-05 23:43:16 +000085 if (LPad && LSP.second.isValid() && LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000086 return LSP.second;
87 else
88 return LSP.first;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000089}
90
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000091/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000092void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +000093 assert(UseSlots.empty() && "Call clear first");
94
95 // First get all the defs from the interval values. This provides the correct
96 // slots for early clobbers.
97 for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(),
98 E = CurLI->vni_end(); I != E; ++I)
99 if (!(*I)->isPHIDef() && !(*I)->isUnused())
100 UseSlots.push_back((*I)->def);
101
102 // Get use slots form the use-def chain.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000103 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000104 for (MachineRegisterInfo::use_nodbg_iterator
105 I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E;
106 ++I)
107 if (!I.getOperand().isUndef())
108 UseSlots.push_back(LIS.getInstructionIndex(&*I).getDefIndex());
109
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000110 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000111
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000112 // Remove duplicates, keeping the smaller slot for each instruction.
113 // That is what we want for early clobbers.
114 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
115 SlotIndex::isSameInstr),
116 UseSlots.end());
117
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000118 // Compute per-live block info.
119 if (!calcLiveBlockInfo()) {
120 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
121 // I am looking at you, SimpleRegisterCoalescing!
122 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
123 const_cast<LiveIntervals&>(LIS)
124 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000125 UseBlocks.clear();
126 ThroughBlocks.clear();
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000127 bool fixed = calcLiveBlockInfo();
128 (void)fixed;
129 assert(fixed && "Couldn't fix broken live interval");
130 }
131
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000132 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000133 << UseSlots.size() << " instrs in "
134 << UseBlocks.size() << " blocks, through "
135 << ThroughBlocks.size() << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000136}
137
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000138/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
139/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000140bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000141 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000142 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000143
144 LiveInterval::const_iterator LVI = CurLI->begin();
145 LiveInterval::const_iterator LVE = CurLI->end();
146
147 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
148 UseI = UseSlots.begin();
149 UseE = UseSlots.end();
150
151 // Loop over basic blocks where CurLI is live.
152 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
153 for (;;) {
154 BlockInfo BI;
155 BI.MBB = MFI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000156 SlotIndex Start, Stop;
157 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000158
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000159 // LVI is the first live segment overlapping MBB.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000160 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000161 if (!BI.LiveIn)
162 BI.Def = LVI->start;
163
164 // Find the first and last uses in the block.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000165 bool Uses = UseI != UseE && *UseI < Stop;
166 if (Uses) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000167 BI.FirstUse = *UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000168 assert(BI.FirstUse >= Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000169 do ++UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000170 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000171 BI.LastUse = UseI[-1];
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000172 assert(BI.LastUse < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000173 }
174
175 // Look for gaps in the live range.
176 bool hasGap = false;
177 BI.LiveOut = true;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000178 while (LVI->end < Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000179 SlotIndex LastStop = LVI->end;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000180 if (++LVI == LVE || LVI->start >= Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000181 BI.Kill = LastStop;
182 BI.LiveOut = false;
183 break;
184 }
185 if (LastStop < LVI->start) {
186 hasGap = true;
187 BI.Kill = LastStop;
188 BI.Def = LVI->start;
189 }
190 }
191
192 // Don't set LiveThrough when the block has a gap.
193 BI.LiveThrough = !hasGap && BI.LiveIn && BI.LiveOut;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000194 if (Uses)
195 UseBlocks.push_back(BI);
196 else
197 ThroughBlocks.push_back(BI.MBB->getNumber());
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000198
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000199 // FIXME: This should never happen. The live range stops or starts without a
200 // corresponding use. An earlier pass did something wrong.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000201 if (!BI.LiveThrough && !Uses)
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000202 return false;
203
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000204 // LVI is now at LVE or LVI->end >= Stop.
205 if (LVI == LVE)
206 break;
207
208 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000209 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000210 break;
211
212 // Pick the next basic block.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000213 if (LVI->start < Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000214 ++MFI;
215 else
216 MFI = LIS.getMBBFromIndex(LVI->start);
217 }
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000218 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000219}
220
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000221bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
222 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
223 const LiveInterval &Orig = LIS.getInterval(OrigReg);
224 assert(!Orig.empty() && "Splitting empty interval?");
225 LiveInterval::const_iterator I = Orig.find(Idx);
226
227 // Range containing Idx should begin at Idx.
228 if (I != Orig.end() && I->start <= Idx)
229 return I->start == Idx;
230
231 // Range does not contain Idx, previous must end at Idx.
232 return I != Orig.begin() && (--I)->end == Idx;
233}
234
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000235void SplitAnalysis::analyze(const LiveInterval *li) {
236 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000237 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000238 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000239}
240
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000241
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000242//===----------------------------------------------------------------------===//
243// Split Editor
244//===----------------------------------------------------------------------===//
245
246/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000247SplitEditor::SplitEditor(SplitAnalysis &sa,
248 LiveIntervals &lis,
249 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000250 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000251 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000252 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000253 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000254 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
255 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000256 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000257 OpenIdx(0),
258 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000259{}
260
261void SplitEditor::reset(LiveRangeEdit &lre) {
262 Edit = &lre;
263 OpenIdx = 0;
264 RegAssign.clear();
265 Values.clear();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000266
267 // We don't need to clear LiveOutCache, only LiveOutSeen entries are read.
268 LiveOutSeen.clear();
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000269
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000270 // We don't need an AliasAnalysis since we will only be performing
271 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000272 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000273}
274
Eric Christopher0f438112011-02-03 06:18:29 +0000275void SplitEditor::dump() const {
276 if (RegAssign.empty()) {
277 dbgs() << " empty\n";
278 return;
279 }
280
281 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
282 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
283 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000284}
285
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000286VNInfo *SplitEditor::defValue(unsigned RegIdx,
287 const VNInfo *ParentVNI,
288 SlotIndex Idx) {
289 assert(ParentVNI && "Mapping NULL value");
290 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000291 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
292 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000293
294 // Create a new value.
295 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
296
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000297 // Use insert for lookup, so we can add missing values with a second lookup.
298 std::pair<ValueMap::iterator, bool> InsP =
299 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
300
301 // This was the first time (RegIdx, ParentVNI) was mapped.
302 // Keep it as a simple def without any liveness.
303 if (InsP.second)
304 return VNI;
305
306 // If the previous value was a simple mapping, add liveness for it now.
307 if (VNInfo *OldVNI = InsP.first->second) {
308 SlotIndex Def = OldVNI->def;
309 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
310 // No longer a simple mapping.
311 InsP.first->second = 0;
312 }
313
314 // This is a complex mapping, add liveness for VNI
315 SlotIndex Def = VNI->def;
316 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
317
318 return VNI;
319}
320
321void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
322 assert(ParentVNI && "Mapping NULL value");
323 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
324
325 // ParentVNI was either unmapped or already complex mapped. Either way.
326 if (!VNI)
327 return;
328
329 // This was previously a single mapping. Make sure the old def is represented
330 // by a trivial live range.
331 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000332 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000333 VNI = 0;
334}
335
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000336// extendRange - Extend the live range to reach Idx.
337// Potentially create phi-def values.
338void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
339 assert(Idx.isValid() && "Invalid SlotIndex");
340 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
341 assert(IdxMBB && "No MBB at Idx");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000342 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000343
344 // Is there a def in the same MBB we can extend?
345 if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx))
346 return;
347
348 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
349 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
350 // Perform a search for all predecessor blocks where we know the dominating
351 // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000352
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000353 // Initialize the live-out cache the first time it is needed.
354 if (LiveOutSeen.empty()) {
355 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
356 LiveOutSeen.resize(N);
357 LiveOutCache.resize(N);
358 }
359
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000360 // Blocks where LI should be live-in.
361 SmallVector<MachineDomTreeNode*, 16> LiveIn;
362 LiveIn.push_back(MDT[IdxMBB]);
363
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000364 // Remember if we have seen more than one value.
365 bool UniqueVNI = true;
366 VNInfo *IdxVNI = 0;
367
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000368 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
369 for (unsigned i = 0; i != LiveIn.size(); ++i) {
370 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000371 assert(!MBB->pred_empty() && "Value live-in to entry block?");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000372 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
373 PE = MBB->pred_end(); PI != PE; ++PI) {
374 MachineBasicBlock *Pred = *PI;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000375 LiveOutPair &LOP = LiveOutCache[Pred];
376
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000377 // Is this a known live-out block?
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000378 if (LiveOutSeen.test(Pred->getNumber())) {
379 if (VNInfo *VNI = LOP.first) {
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000380 if (IdxVNI && IdxVNI != VNI)
381 UniqueVNI = false;
382 IdxVNI = VNI;
383 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000384 continue;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000385 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000386
387 // First time. LOP is garbage and must be cleared below.
388 LiveOutSeen.set(Pred->getNumber());
389
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000390 // Does Pred provide a live-out value?
391 SlotIndex Start, Last;
392 tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred);
393 Last = Last.getPrevSlot();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000394 VNInfo *VNI = LI->extendInBlock(Start, Last);
395 LOP.first = VNI;
396 if (VNI) {
397 LOP.second = MDT[LIS.getMBBFromIndex(VNI->def)];
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000398 if (IdxVNI && IdxVNI != VNI)
399 UniqueVNI = false;
400 IdxVNI = VNI;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000401 continue;
402 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000403 LOP.second = 0;
404
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000405 // No, we need a live-in value for Pred as well
406 if (Pred != IdxMBB)
407 LiveIn.push_back(MDT[Pred]);
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000408 else
409 UniqueVNI = false; // Loopback to IdxMBB, ask updateSSA() for help.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000410 }
411 }
412
413 // We may need to add phi-def values to preserve the SSA form.
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000414 if (UniqueVNI) {
415 LiveOutPair LOP(IdxVNI, MDT[LIS.getMBBFromIndex(IdxVNI->def)]);
416 // Update LiveOutCache, but skip IdxMBB at LiveIn[0].
417 for (unsigned i = 1, e = LiveIn.size(); i != e; ++i)
418 LiveOutCache[LiveIn[i]->getBlock()] = LOP;
419 } else
420 IdxVNI = updateSSA(RegIdx, LiveIn, Idx, IdxMBB);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000421
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000422 // Since we went through the trouble of a full BFS visiting all reaching defs,
423 // the values in LiveIn are now accurate. No more phi-defs are needed
424 // for these blocks, so we can color the live ranges.
425 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
426 MachineBasicBlock *MBB = LiveIn[i]->getBlock();
427 SlotIndex Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000428 VNInfo *VNI = LiveOutCache[MBB].first;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000429
430 // Anything in LiveIn other than IdxMBB is live-through.
431 // In IdxMBB, we should stop at Idx unless the same value is live-out.
432 if (MBB == IdxMBB && IdxVNI != VNI)
433 LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
434 else
435 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
436 }
437}
438
439VNInfo *SplitEditor::updateSSA(unsigned RegIdx,
440 SmallVectorImpl<MachineDomTreeNode*> &LiveIn,
441 SlotIndex Idx,
442 const MachineBasicBlock *IdxMBB) {
443 // This is essentially the same iterative algorithm that SSAUpdater uses,
444 // except we already have a dominator tree, so we don't have to recompute it.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000445 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000446 VNInfo *IdxVNI = 0;
447 unsigned Changes;
448 do {
449 Changes = 0;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000450 // Propagate live-out values down the dominator tree, inserting phi-defs
451 // when necessary. Since LiveIn was created by a BFS, going backwards makes
452 // it more likely for us to visit immediate dominators before their
453 // children.
454 for (unsigned i = LiveIn.size(); i; --i) {
455 MachineDomTreeNode *Node = LiveIn[i-1];
456 MachineBasicBlock *MBB = Node->getBlock();
457 MachineDomTreeNode *IDom = Node->getIDom();
458 LiveOutPair IDomValue;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000459
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000460 // We need a live-in value to a block with no immediate dominator?
461 // This is probably an unreachable block that has survived somehow.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000462 bool needPHI = !IDom || !LiveOutSeen.test(IDom->getBlock()->getNumber());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000463
464 // IDom dominates all of our predecessors, but it may not be the immediate
465 // dominator. Check if any of them have live-out values that are properly
466 // dominated by IDom. If so, we need a phi-def here.
467 if (!needPHI) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000468 IDomValue = LiveOutCache[IDom->getBlock()];
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000469 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
470 PE = MBB->pred_end(); PI != PE; ++PI) {
471 LiveOutPair Value = LiveOutCache[*PI];
472 if (!Value.first || Value.first == IDomValue.first)
473 continue;
474 // This predecessor is carrying something other than IDomValue.
475 // It could be because IDomValue hasn't propagated yet, or it could be
476 // because MBB is in the dominance frontier of that value.
477 if (MDT.dominates(IDom, Value.second)) {
478 needPHI = true;
479 break;
480 }
481 }
482 }
483
484 // Create a phi-def if required.
485 if (needPHI) {
486 ++Changes;
487 SlotIndex Start = LIS.getMBBStartIdx(MBB);
488 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
489 VNI->setIsPHIDef(true);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000490 // We no longer need LI to be live-in.
491 LiveIn.erase(LiveIn.begin()+(i-1));
492 // Blocks in LiveIn are either IdxMBB, or have a value live-through.
493 if (MBB == IdxMBB)
494 IdxVNI = VNI;
495 // Check if we need to update live-out info.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000496 LiveOutPair &LOP = LiveOutCache[MBB];
497 if (LOP.second == Node || !LiveOutSeen.test(MBB->getNumber())) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000498 // We already have a live-out defined in MBB, so this must be IdxMBB.
499 assert(MBB == IdxMBB && "Adding phi-def to known live-out");
500 LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
501 } else {
502 // This phi-def is also live-out, so color the whole block.
503 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000504 LOP = LiveOutPair(VNI, Node);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000505 }
506 } else if (IDomValue.first) {
507 // No phi-def here. Remember incoming value for IdxMBB.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000508 if (MBB == IdxMBB) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000509 IdxVNI = IDomValue.first;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000510 // IdxMBB need not be live-out.
511 if (!LiveOutSeen.test(MBB->getNumber()))
512 continue;
513 }
514 assert(LiveOutSeen.test(MBB->getNumber()) && "Expected live-out block");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000515 // Propagate IDomValue if needed:
516 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000517 LiveOutPair &LOP = LiveOutCache[MBB];
518 if (LOP.second != Node && LOP.first != IDomValue.first) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000519 ++Changes;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000520 LOP = IDomValue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000521 }
522 }
523 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000524 } while (Changes);
525
526 assert(IdxVNI && "Didn't find value for Idx");
527 return IdxVNI;
528}
529
Eric Christopher0f438112011-02-03 06:18:29 +0000530VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000531 VNInfo *ParentVNI,
532 SlotIndex UseIdx,
533 MachineBasicBlock &MBB,
534 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000535 MachineInstr *CopyMI = 0;
536 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000537 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000538
539 // Attempt cheap-as-a-copy rematerialization.
540 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000541 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
542 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000543 } else {
544 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000545 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000546 .addReg(Edit->getReg());
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000547 Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000548 }
549
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000550 // Define the value in Reg.
551 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
552 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000553 return VNI;
554}
555
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000556/// Create a new virtual register and live interval.
557void SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000558 assert(!OpenIdx && "Previous LI not closed before openIntv");
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000559
Eric Christopher0f438112011-02-03 06:18:29 +0000560 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000561 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000562 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000563
564 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000565 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000566 Edit->create(LIS, VRM);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000567}
568
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000569SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000570 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000571 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000572 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000573 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000574 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000575 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000576 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000577 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000578 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000579 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000580 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000581
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000582 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
583 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000584}
585
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000586SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000587 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000588 SlotIndex End = LIS.getMBBEndIdx(&MBB);
589 SlotIndex Last = End.getPrevSlot();
590 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000591 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000592 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000593 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000594 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000595 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000596 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000597 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000598 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000599 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000600 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000601 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000602}
603
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000604/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000605void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000606 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000607}
608
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000609void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000610 assert(OpenIdx && "openIntv not called before useIntv");
611 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
612 RegAssign.insert(Start, End, OpenIdx);
613 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000614}
615
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000616SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000617 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000618 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000619
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000620 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000621 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000622 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000623 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000624 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000625 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000626 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000627 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000628
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000629 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
630 assert(MI && "No instruction at index");
631 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
632 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000633 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000634}
635
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000636SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
637 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
638 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
639
640 // The interval must be live into the instruction at Idx.
641 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000642 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000643 if (!ParentVNI) {
644 DEBUG(dbgs() << ": not live\n");
645 return Idx.getNextSlot();
646 }
647 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
648
649 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
650 assert(MI && "No instruction at index");
651 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
652 return VNI->def;
653}
654
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000655SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000656 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000657 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000658 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000659
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000660 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000661 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000662 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000663 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000664 }
665
Eric Christopher0f438112011-02-03 06:18:29 +0000666 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000667 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000668 RegAssign.insert(Start, VNI->def, OpenIdx);
669 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000670 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000671}
672
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000673void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
674 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000675 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
676 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000677 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000678 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
679 "Range cannot span basic blocks");
680
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000681 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000682 if (ParentVNI)
683 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000684 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
685 RegAssign.insert(Start, End, OpenIdx);
686 DEBUG(dump());
687}
688
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000689/// closeIntv - Indicate that we are done editing the currently open
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000690/// LiveInterval, and ranges can be trimmed.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000691void SplitEditor::closeIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000692 assert(OpenIdx && "openIntv not called before closeIntv");
693 OpenIdx = 0;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000694}
695
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000696/// transferSimpleValues - Transfer all simply defined values to the new live
697/// ranges.
698/// Values that were rematerialized or that have multiple defs are left alone.
699bool SplitEditor::transferSimpleValues() {
700 bool Skipped = false;
701 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000702 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
703 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000704 DEBUG(dbgs() << " blit " << *ParentI << ':');
705 VNInfo *ParentVNI = ParentI->valno;
706 // RegAssign has holes where RegIdx 0 should be used.
707 SlotIndex Start = ParentI->start;
708 AssignI.advanceTo(Start);
709 do {
710 unsigned RegIdx;
711 SlotIndex End = ParentI->end;
712 if (!AssignI.valid()) {
713 RegIdx = 0;
714 } else if (AssignI.start() <= Start) {
715 RegIdx = AssignI.value();
716 if (AssignI.stop() < End) {
717 End = AssignI.stop();
718 ++AssignI;
719 }
720 } else {
721 RegIdx = 0;
722 End = std::min(End, AssignI.start());
723 }
724 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
725 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
726 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000727 Edit->get(RegIdx)->addRange(LiveRange(Start, End, VNI));
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000728 } else
729 Skipped = true;
730 Start = End;
731 } while (Start != ParentI->end);
732 DEBUG(dbgs() << '\n');
733 }
734 return Skipped;
735}
736
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000737void SplitEditor::extendPHIKillRanges() {
738 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000739 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
740 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000741 const VNInfo *PHIVNI = *I;
742 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
743 continue;
744 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
745 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
746 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
747 PE = MBB->pred_end(); PI != PE; ++PI) {
748 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
749 // The predecessor may not have a live-out value. That is OK, like an
750 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000751 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000752 assert(RegAssign.lookup(End) == RegIdx &&
753 "Different register assignment in phi predecessor");
754 extendRange(RegIdx, End);
755 }
756 }
757 }
758}
759
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000760/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000761void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000762 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000763 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000764 MachineOperand &MO = RI.getOperand();
765 MachineInstr *MI = MO.getParent();
766 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000767 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000768 if (MI->isDebugValue()) {
769 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000770 MO.setReg(0);
771 continue;
772 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000773
774 // <undef> operands don't really read the register, so just assign them to
775 // the complement.
776 if (MO.isUse() && MO.isUndef()) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000777 MO.setReg(Edit->get(0)->reg);
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000778 continue;
779 }
780
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000781 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000782 if (MO.isDef())
783 Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000784
785 // Rewrite to the mapped register at Idx.
786 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000787 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000788 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
789 << Idx << ':' << RegIdx << '\t' << *MI);
790
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000791 // Extend liveness to Idx if the instruction reads reg.
792 if (!ExtendRanges)
793 continue;
794
795 // Skip instructions that don't read Reg.
796 if (MO.isDef()) {
797 if (!MO.getSubReg() && !MO.isEarlyClobber())
798 continue;
799 // We may wan't to extend a live range for a partial redef, or for a use
800 // tied to an early clobber.
801 Idx = Idx.getPrevSlot();
802 if (!Edit->getParent().liveAt(Idx))
803 continue;
804 } else
805 Idx = Idx.getUseIndex();
806
807 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000808 }
809}
810
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000811void SplitEditor::deleteRematVictims() {
812 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000813 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
814 LiveInterval *LI = *I;
815 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
816 LII != LIE; ++LII) {
817 // Dead defs end at the store slot.
818 if (LII->end != LII->valno->def.getNextSlot())
819 continue;
820 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
821 assert(MI && "Missing instruction for dead def");
822 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000823
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000824 if (!MI->allDefsAreDead())
825 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000826
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000827 DEBUG(dbgs() << "All defs dead: " << *MI);
828 Dead.push_back(MI);
829 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000830 }
831
832 if (Dead.empty())
833 return;
834
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000835 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000836}
837
Eric Christopher463a2972011-02-03 05:40:54 +0000838void SplitEditor::finish() {
Eric Christopher0f438112011-02-03 06:18:29 +0000839 assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000840 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000841
Eric Christopher0f438112011-02-03 06:18:29 +0000842 // At this point, the live intervals in Edit contain VNInfos corresponding to
843 // the inserted copies.
844
845 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000846 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
847 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +0000848 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000849 if (ParentVNI->isUnused())
850 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000851 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +0000852 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
853 VNI->setIsPHIDef(ParentVNI->isPHIDef());
854 VNI->setCopy(ParentVNI->getCopy());
855
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000856 // Mark rematted values as complex everywhere to force liveness computation.
857 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000858 if (Edit->didRematerialize(ParentVNI))
859 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000860 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000861 }
862
863#ifndef NDEBUG
864 // Every new interval must have a def by now, otherwise the split is bogus.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000865 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Eric Christopher0f438112011-02-03 06:18:29 +0000866 assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
867#endif
868
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000869 // Transfer the simply mapped values, check if any are complex.
870 bool Complex = transferSimpleValues();
871 if (Complex)
872 extendPHIKillRanges();
873 else
874 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +0000875
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000876 // Rewrite virtual registers, possibly extending ranges.
877 rewriteAssigned(Complex);
Eric Christopher0f438112011-02-03 06:18:29 +0000878
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000879 // Delete defs that were rematted everywhere.
880 if (Complex)
881 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000882
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +0000883 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000884 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000885 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000886
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000887 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000888 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000889 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000890 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000891 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000892 unsigned NumComp = ConEQ.Classify(li);
893 if (NumComp <= 1)
894 continue;
895 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
896 SmallVector<LiveInterval*, 8> dups;
897 dups.push_back(li);
898 for (unsigned i = 1; i != NumComp; ++i)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000899 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +0000900 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +0000901 }
902
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +0000903 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000904 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000905}
906
907
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000908//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000909// Single Block Splitting
910//===----------------------------------------------------------------------===//
911
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000912/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
913/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000914bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000915 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000916 if (UseBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000917 return false;
918 // Add blocks with multiple uses.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000919 for (unsigned i = 0, e = UseBlocks.size(); i != e; ++i) {
920 const BlockInfo &BI = UseBlocks[i];
921 if (BI.FirstUse == BI.LastUse)
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000922 continue;
923 Blocks.insert(BI.MBB);
924 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +0000925 return !Blocks.empty();
926}
927
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000928/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +0000929/// basic block in Blocks.
930void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +0000931 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000932 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA.getUseBlocks();
933 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
934 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
935 if (!Blocks.count(BI.MBB))
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000936 continue;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000937
938 openIntv();
Jakob Stoklund Olesen612f7802011-04-05 04:20:29 +0000939 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesenc8ec7652011-03-29 03:12:04 +0000940 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstUse,
Jakob Stoklund Olesen612f7802011-04-05 04:20:29 +0000941 LastSplitPoint));
942 if (!BI.LiveOut || BI.LastUse < LastSplitPoint) {
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000943 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
944 } else {
Jakob Stoklund Olesenc70f6872011-02-23 18:26:31 +0000945 // The last use is after the last valid split point.
Jakob Stoklund Olesen612f7802011-04-05 04:20:29 +0000946 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000947 useIntv(SegStart, SegStop);
948 overlapIntv(SegStop, BI.LastUse);
949 }
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000950 closeIntv();
951 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000952 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000953}