blob: 0679a619f5c81dd97edb80663cd11472f0da09e8 [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");
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +000033STATISTIC(NumCopies, "Number of copies inserted for splitting");
34STATISTIC(NumRemats, "Number of rematerialized defs for splitting");
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +000035STATISTIC(NumRepairs, "Number of invalid live ranges repaired");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000036
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000037//===----------------------------------------------------------------------===//
38// Split Analysis
39//===----------------------------------------------------------------------===//
40
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000041SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000042 const LiveIntervals &lis,
43 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000044 : MF(vrm.getMachineFunction()),
45 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000046 LIS(lis),
47 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000048 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000049 CurLI(0),
50 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000051
52void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000053 UseSlots.clear();
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000054 UseBlocks.clear();
55 ThroughBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000056 CurLI = 0;
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +000057 DidRepairRange = false;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000058}
59
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000060SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
61 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
62 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
63 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
64
65 // Compute split points on the first call. The pair is independent of the
66 // current live interval.
67 if (!LSP.first.isValid()) {
68 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
69 if (FirstTerm == MBB->end())
70 LSP.first = LIS.getMBBEndIdx(MBB);
71 else
72 LSP.first = LIS.getInstructionIndex(FirstTerm);
73
74 // If there is a landing pad successor, also find the call instruction.
75 if (!LPad)
76 return LSP.first;
77 // There may not be a call instruction (?) in which case we ignore LPad.
78 LSP.second = LSP.first;
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000079 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
80 I != E;) {
81 --I;
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000082 if (I->getDesc().isCall()) {
83 LSP.second = LIS.getInstructionIndex(I);
84 break;
85 }
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000086 }
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000087 }
88
89 // If CurLI is live into a landing pad successor, move the last split point
90 // back to the call that may throw.
Jakob Stoklund Olesen71d9e652011-04-05 23:43:16 +000091 if (LPad && LSP.second.isValid() && LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000092 return LSP.second;
93 else
94 return LSP.first;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000095}
96
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000097/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000098void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +000099 assert(UseSlots.empty() && "Call clear first");
100
101 // First get all the defs from the interval values. This provides the correct
102 // slots for early clobbers.
103 for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(),
104 E = CurLI->vni_end(); I != E; ++I)
105 if (!(*I)->isPHIDef() && !(*I)->isUnused())
106 UseSlots.push_back((*I)->def);
107
108 // Get use slots form the use-def chain.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000109 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000110 for (MachineRegisterInfo::use_nodbg_iterator
111 I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E;
112 ++I)
113 if (!I.getOperand().isUndef())
114 UseSlots.push_back(LIS.getInstructionIndex(&*I).getDefIndex());
115
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000116 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000117
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000118 // Remove duplicates, keeping the smaller slot for each instruction.
119 // That is what we want for early clobbers.
120 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
121 SlotIndex::isSameInstr),
122 UseSlots.end());
123
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000124 // Compute per-live block info.
125 if (!calcLiveBlockInfo()) {
126 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola5b220212011-06-26 22:34:10 +0000127 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000128 DidRepairRange = true;
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +0000129 ++NumRepairs;
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000130 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
131 const_cast<LiveIntervals&>(LIS)
132 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000133 UseBlocks.clear();
134 ThroughBlocks.clear();
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000135 bool fixed = calcLiveBlockInfo();
136 (void)fixed;
137 assert(fixed && "Couldn't fix broken live interval");
138 }
139
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000140 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000141 << UseSlots.size() << " instrs in "
142 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000143 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000144}
145
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000146/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
147/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000148bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000149 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000150 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000151 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000152 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000153
154 LiveInterval::const_iterator LVI = CurLI->begin();
155 LiveInterval::const_iterator LVE = CurLI->end();
156
157 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
158 UseI = UseSlots.begin();
159 UseE = UseSlots.end();
160
161 // Loop over basic blocks where CurLI is live.
162 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
163 for (;;) {
164 BlockInfo BI;
165 BI.MBB = MFI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000166 SlotIndex Start, Stop;
167 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000168
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000169 // If the block contains no uses, the range must be live through. At one
Rafael Espindola5b220212011-06-26 22:34:10 +0000170 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000171 // mid-block.
172 if (UseI == UseE || *UseI >= Stop) {
173 ++NumThroughBlocks;
174 ThroughBlocks.set(BI.MBB->getNumber());
175 // The range shouldn't end mid-block if there are no uses. This shouldn't
176 // happen.
177 if (LVI->end < Stop)
178 return false;
179 } else {
180 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000181 BI.FirstUse = *UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000182 assert(BI.FirstUse >= Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000183 do ++UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000184 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000185 BI.LastUse = UseI[-1];
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000186 assert(BI.LastUse < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000187
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000188 // LVI is the first live segment overlapping MBB.
189 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000190
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000191 // Look for gaps in the live range.
192 BI.LiveOut = true;
193 while (LVI->end < Stop) {
194 SlotIndex LastStop = LVI->end;
195 if (++LVI == LVE || LVI->start >= Stop) {
196 BI.LiveOut = false;
197 BI.LastUse = LastStop;
198 break;
199 }
200 if (LastStop < LVI->start) {
201 // There is a gap in the live range. Create duplicate entries for the
202 // live-in snippet and the live-out snippet.
203 ++NumGapBlocks;
204
205 // Push the Live-in part.
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000206 BI.LiveOut = false;
207 UseBlocks.push_back(BI);
208 UseBlocks.back().LastUse = LastStop;
209
210 // Set up BI for the live-out part.
211 BI.LiveIn = false;
212 BI.LiveOut = true;
213 BI.FirstUse = LVI->start;
214 }
215 }
216
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000217 UseBlocks.push_back(BI);
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000218
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000219 // LVI is now at LVE or LVI->end >= Stop.
220 if (LVI == LVE)
221 break;
222 }
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000223
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000224 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000225 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000226 break;
227
228 // Pick the next basic block.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000229 if (LVI->start < Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000230 ++MFI;
231 else
232 MFI = LIS.getMBBFromIndex(LVI->start);
233 }
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000234
235 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000236 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000237}
238
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000239unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
240 if (cli->empty())
241 return 0;
242 LiveInterval *li = const_cast<LiveInterval*>(cli);
243 LiveInterval::iterator LVI = li->begin();
244 LiveInterval::iterator LVE = li->end();
245 unsigned Count = 0;
246
247 // Loop over basic blocks where li is live.
248 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start);
249 SlotIndex Stop = LIS.getMBBEndIdx(MFI);
250 for (;;) {
251 ++Count;
252 LVI = li->advanceTo(LVI, Stop);
253 if (LVI == LVE)
254 return Count;
255 do {
256 ++MFI;
257 Stop = LIS.getMBBEndIdx(MFI);
258 } while (Stop <= LVI->start);
259 }
260}
261
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000262bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
263 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
264 const LiveInterval &Orig = LIS.getInterval(OrigReg);
265 assert(!Orig.empty() && "Splitting empty interval?");
266 LiveInterval::const_iterator I = Orig.find(Idx);
267
268 // Range containing Idx should begin at Idx.
269 if (I != Orig.end() && I->start <= Idx)
270 return I->start == Idx;
271
272 // Range does not contain Idx, previous must end at Idx.
273 return I != Orig.begin() && (--I)->end == Idx;
274}
275
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000276void SplitAnalysis::analyze(const LiveInterval *li) {
277 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000278 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000279 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000280}
281
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000282
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000283//===----------------------------------------------------------------------===//
284// Split Editor
285//===----------------------------------------------------------------------===//
286
287/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000288SplitEditor::SplitEditor(SplitAnalysis &sa,
289 LiveIntervals &lis,
290 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000291 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000292 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000293 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000294 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000295 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
296 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000297 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000298 OpenIdx(0),
299 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000300{}
301
302void SplitEditor::reset(LiveRangeEdit &lre) {
303 Edit = &lre;
304 OpenIdx = 0;
305 RegAssign.clear();
306 Values.clear();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000307
308 // We don't need to clear LiveOutCache, only LiveOutSeen entries are read.
309 LiveOutSeen.clear();
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000310
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000311 // We don't need an AliasAnalysis since we will only be performing
312 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000313 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000314}
315
Eric Christopher0f438112011-02-03 06:18:29 +0000316void SplitEditor::dump() const {
317 if (RegAssign.empty()) {
318 dbgs() << " empty\n";
319 return;
320 }
321
322 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
323 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
324 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000325}
326
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000327VNInfo *SplitEditor::defValue(unsigned RegIdx,
328 const VNInfo *ParentVNI,
329 SlotIndex Idx) {
330 assert(ParentVNI && "Mapping NULL value");
331 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000332 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
333 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000334
335 // Create a new value.
336 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
337
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000338 // Use insert for lookup, so we can add missing values with a second lookup.
339 std::pair<ValueMap::iterator, bool> InsP =
340 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
341
342 // This was the first time (RegIdx, ParentVNI) was mapped.
343 // Keep it as a simple def without any liveness.
344 if (InsP.second)
345 return VNI;
346
347 // If the previous value was a simple mapping, add liveness for it now.
348 if (VNInfo *OldVNI = InsP.first->second) {
349 SlotIndex Def = OldVNI->def;
350 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
351 // No longer a simple mapping.
352 InsP.first->second = 0;
353 }
354
355 // This is a complex mapping, add liveness for VNI
356 SlotIndex Def = VNI->def;
357 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
358
359 return VNI;
360}
361
362void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
363 assert(ParentVNI && "Mapping NULL value");
364 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
365
366 // ParentVNI was either unmapped or already complex mapped. Either way.
367 if (!VNI)
368 return;
369
370 // This was previously a single mapping. Make sure the old def is represented
371 // by a trivial live range.
372 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000373 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000374 VNI = 0;
375}
376
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000377// extendRange - Extend the live range to reach Idx.
378// Potentially create phi-def values.
379void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
380 assert(Idx.isValid() && "Invalid SlotIndex");
381 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
382 assert(IdxMBB && "No MBB at Idx");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000383 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000384
385 // Is there a def in the same MBB we can extend?
386 if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx))
387 return;
388
389 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
390 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
391 // Perform a search for all predecessor blocks where we know the dominating
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000392 // VNInfo.
393 VNInfo *VNI = findReachingDefs(LI, IdxMBB, Idx.getNextSlot());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000394
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000395 // When there were multiple different values, we may need new PHIs.
396 if (!VNI)
397 return updateSSA();
398
399 // Poor man's SSA update for the single-value case.
400 LiveOutPair LOP(VNI, MDT[LIS.getMBBFromIndex(VNI->def)]);
401 for (SmallVectorImpl<LiveInBlock>::iterator I = LiveInBlocks.begin(),
402 E = LiveInBlocks.end(); I != E; ++I) {
403 MachineBasicBlock *MBB = I->DomNode->getBlock();
404 SlotIndex Start = LIS.getMBBStartIdx(MBB);
405 if (I->Kill.isValid())
406 LI->addRange(LiveRange(Start, I->Kill, VNI));
407 else {
408 LiveOutCache[MBB] = LOP;
409 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
410 }
411 }
412}
413
414/// findReachingDefs - Search the CFG for known live-out values.
415/// Add required live-in blocks to LiveInBlocks.
416VNInfo *SplitEditor::findReachingDefs(LiveInterval *LI,
417 MachineBasicBlock *KillMBB,
418 SlotIndex Kill) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000419 // Initialize the live-out cache the first time it is needed.
420 if (LiveOutSeen.empty()) {
421 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
422 LiveOutSeen.resize(N);
423 LiveOutCache.resize(N);
424 }
425
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000426 // Blocks where LI should be live-in.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000427 SmallVector<MachineBasicBlock*, 16> WorkList(1, KillMBB);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000428
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000429 // Remember if we have seen more than one value.
430 bool UniqueVNI = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000431 VNInfo *TheVNI = 0;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000432
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000433 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000434 for (unsigned i = 0; i != WorkList.size(); ++i) {
435 MachineBasicBlock *MBB = WorkList[i];
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000436 assert(!MBB->pred_empty() && "Value live-in to entry block?");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000437 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
438 PE = MBB->pred_end(); PI != PE; ++PI) {
439 MachineBasicBlock *Pred = *PI;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000440 LiveOutPair &LOP = LiveOutCache[Pred];
441
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000442 // Is this a known live-out block?
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000443 if (LiveOutSeen.test(Pred->getNumber())) {
444 if (VNInfo *VNI = LOP.first) {
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000445 if (TheVNI && TheVNI != VNI)
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000446 UniqueVNI = false;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000447 TheVNI = VNI;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000448 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000449 continue;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000450 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000451
452 // First time. LOP is garbage and must be cleared below.
453 LiveOutSeen.set(Pred->getNumber());
454
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000455 // Does Pred provide a live-out value?
456 SlotIndex Start, Last;
457 tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred);
458 Last = Last.getPrevSlot();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000459 VNInfo *VNI = LI->extendInBlock(Start, Last);
460 LOP.first = VNI;
461 if (VNI) {
462 LOP.second = MDT[LIS.getMBBFromIndex(VNI->def)];
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000463 if (TheVNI && TheVNI != VNI)
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000464 UniqueVNI = false;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000465 TheVNI = VNI;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000466 continue;
467 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000468 LOP.second = 0;
469
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000470 // No, we need a live-in value for Pred as well
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000471 if (Pred != KillMBB)
472 WorkList.push_back(Pred);
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000473 else
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000474 // Loopback to KillMBB, so value is really live through.
475 Kill = SlotIndex();
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000476 }
477 }
478
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000479 // Transfer WorkList to LiveInBlocks in reverse order.
480 // This ordering works best with updateSSA().
481 LiveInBlocks.clear();
482 LiveInBlocks.reserve(WorkList.size());
483 while(!WorkList.empty())
484 LiveInBlocks.push_back(MDT[WorkList.pop_back_val()]);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000485
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000486 // The kill block may not be live-through.
487 assert(LiveInBlocks.back().DomNode->getBlock() == KillMBB);
488 LiveInBlocks.back().Kill = Kill;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000489
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000490 return UniqueVNI ? TheVNI : 0;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000491}
492
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000493void SplitEditor::updateSSA() {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000494 // This is essentially the same iterative algorithm that SSAUpdater uses,
495 // except we already have a dominator tree, so we don't have to recompute it.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000496 unsigned Changes;
497 do {
498 Changes = 0;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000499 // Propagate live-out values down the dominator tree, inserting phi-defs
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000500 // when necessary.
501 for (SmallVectorImpl<LiveInBlock>::iterator I = LiveInBlocks.begin(),
502 E = LiveInBlocks.end(); I != E; ++I) {
503 MachineDomTreeNode *Node = I->DomNode;
504 // Skip block if the live-in value has already been determined.
505 if (!Node)
506 continue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000507 MachineBasicBlock *MBB = Node->getBlock();
508 MachineDomTreeNode *IDom = Node->getIDom();
509 LiveOutPair IDomValue;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000510
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000511 // We need a live-in value to a block with no immediate dominator?
512 // This is probably an unreachable block that has survived somehow.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000513 bool needPHI = !IDom || !LiveOutSeen.test(IDom->getBlock()->getNumber());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000514
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000515 // IDom dominates all of our predecessors, but it may not be their
516 // immediate dominator. Check if any of them have live-out values that are
517 // properly dominated by IDom. If so, we need a phi-def here.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000518 if (!needPHI) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000519 IDomValue = LiveOutCache[IDom->getBlock()];
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000520 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
521 PE = MBB->pred_end(); PI != PE; ++PI) {
522 LiveOutPair Value = LiveOutCache[*PI];
523 if (!Value.first || Value.first == IDomValue.first)
524 continue;
525 // This predecessor is carrying something other than IDomValue.
526 // It could be because IDomValue hasn't propagated yet, or it could be
527 // because MBB is in the dominance frontier of that value.
528 if (MDT.dominates(IDom, Value.second)) {
529 needPHI = true;
530 break;
531 }
532 }
533 }
534
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000535 // The value may be live-through even if Kill is set, as can happen when
536 // we are called from extendRange. In that case LiveOutSeen is true, and
537 // LiveOutCache indicates a foreign or missing value.
538 LiveOutPair &LOP = LiveOutCache[MBB];
539
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000540 // Create a phi-def if required.
541 if (needPHI) {
542 ++Changes;
543 SlotIndex Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000544 unsigned RegIdx = RegAssign.lookup(Start);
545 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000546 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
547 VNI->setIsPHIDef(true);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000548 I->Value = VNI;
549 // This block is done, we know the final value.
550 I->DomNode = 0;
551 if (I->Kill.isValid())
552 LI->addRange(LiveRange(Start, I->Kill, VNI));
553 else {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000554 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000555 LOP = LiveOutPair(VNI, Node);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000556 }
557 } else if (IDomValue.first) {
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000558 // No phi-def here. Remember incoming value.
559 I->Value = IDomValue.first;
560 if (I->Kill.isValid())
561 continue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000562 // Propagate IDomValue if needed:
563 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000564 if (LOP.second != Node && LOP.first != IDomValue.first) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000565 ++Changes;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000566 LOP = IDomValue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000567 }
568 }
569 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000570 } while (Changes);
571
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000572 // The values in LiveInBlocks are now accurate. No more phi-defs are needed
573 // for these blocks, so we can color the live ranges.
574 for (SmallVectorImpl<LiveInBlock>::iterator I = LiveInBlocks.begin(),
575 E = LiveInBlocks.end(); I != E; ++I) {
576 if (!I->DomNode)
577 continue;
578 assert(I->Value && "No live-in value found");
579 MachineBasicBlock *MBB = I->DomNode->getBlock();
580 SlotIndex Start = LIS.getMBBStartIdx(MBB);
581 unsigned RegIdx = RegAssign.lookup(Start);
582 LiveInterval *LI = Edit->get(RegIdx);
583 LI->addRange(LiveRange(Start, I->Kill.isValid() ?
584 I->Kill : LIS.getMBBEndIdx(MBB), I->Value));
585 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000586}
587
Eric Christopher0f438112011-02-03 06:18:29 +0000588VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000589 VNInfo *ParentVNI,
590 SlotIndex UseIdx,
591 MachineBasicBlock &MBB,
592 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000593 MachineInstr *CopyMI = 0;
594 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000595 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000596
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000597 // We may be trying to avoid interference that ends at a deleted instruction,
598 // so always begin RegIdx 0 early and all others late.
599 bool Late = RegIdx != 0;
600
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000601 // Attempt cheap-as-a-copy rematerialization.
602 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000603 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000604 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI, Late);
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000605 ++NumRemats;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000606 } else {
607 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000608 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000609 .addReg(Edit->getReg());
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000610 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
611 .getDefIndex();
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000612 ++NumCopies;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000613 }
614
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000615 // Define the value in Reg.
616 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
617 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000618 return VNI;
619}
620
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000621/// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000622unsigned SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000623 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000624 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000625 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000626
627 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000628 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000629 Edit->create(LIS, VRM);
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000630 return OpenIdx;
631}
632
633void SplitEditor::selectIntv(unsigned Idx) {
634 assert(Idx != 0 && "Cannot select the complement interval");
635 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000636 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000637 OpenIdx = Idx;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000638}
639
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000640SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000641 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000642 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000643 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000644 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000645 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000646 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000647 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000648 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000649 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000650 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000651 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000652
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000653 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
654 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000655}
656
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000657SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
658 assert(OpenIdx && "openIntv not called before enterIntvAfter");
659 DEBUG(dbgs() << " enterIntvAfter " << Idx);
660 Idx = Idx.getBoundaryIndex();
661 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
662 if (!ParentVNI) {
663 DEBUG(dbgs() << ": not live\n");
664 return Idx;
665 }
666 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
667 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
668 assert(MI && "enterIntvAfter called with invalid index");
669
670 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
671 llvm::next(MachineBasicBlock::iterator(MI)));
672 return VNI->def;
673}
674
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000675SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000676 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000677 SlotIndex End = LIS.getMBBEndIdx(&MBB);
678 SlotIndex Last = End.getPrevSlot();
679 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000680 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000681 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000682 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000683 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000684 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000685 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000686 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000687 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000688 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000689 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000690 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000691}
692
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000693/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000694void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000695 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000696}
697
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000698void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000699 assert(OpenIdx && "openIntv not called before useIntv");
700 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
701 RegAssign.insert(Start, End, OpenIdx);
702 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000703}
704
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000705SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000706 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000707 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000708
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000709 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000710 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000711 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000712 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000713 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000714 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000715 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000716 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000717
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000718 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
719 assert(MI && "No instruction at index");
720 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
721 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000722 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000723}
724
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000725SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
726 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
727 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
728
729 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenfc479332011-07-18 18:47:13 +0000730 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000731 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000732 if (!ParentVNI) {
733 DEBUG(dbgs() << ": not live\n");
734 return Idx.getNextSlot();
735 }
736 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
737
738 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
739 assert(MI && "No instruction at index");
740 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
741 return VNI->def;
742}
743
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000744SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000745 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000746 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000747 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000748
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000749 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000750 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000751 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000752 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000753 }
754
Eric Christopher0f438112011-02-03 06:18:29 +0000755 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000756 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000757 RegAssign.insert(Start, VNI->def, OpenIdx);
758 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000759 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000760}
761
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000762void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
763 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000764 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
765 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000766 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000767 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
768 "Range cannot span basic blocks");
769
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000770 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000771 if (ParentVNI)
772 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000773 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
774 RegAssign.insert(Start, End, OpenIdx);
775 DEBUG(dump());
776}
777
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000778/// transferValues - Transfer all possible values to the new live ranges.
779/// Values that were rematerialized are left alone, they need extendRange().
780bool SplitEditor::transferValues() {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000781 bool Skipped = false;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000782 LiveInBlocks.clear();
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000783 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000784 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
785 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000786 DEBUG(dbgs() << " blit " << *ParentI << ':');
787 VNInfo *ParentVNI = ParentI->valno;
788 // RegAssign has holes where RegIdx 0 should be used.
789 SlotIndex Start = ParentI->start;
790 AssignI.advanceTo(Start);
791 do {
792 unsigned RegIdx;
793 SlotIndex End = ParentI->end;
794 if (!AssignI.valid()) {
795 RegIdx = 0;
796 } else if (AssignI.start() <= Start) {
797 RegIdx = AssignI.value();
798 if (AssignI.stop() < End) {
799 End = AssignI.stop();
800 ++AssignI;
801 }
802 } else {
803 RegIdx = 0;
804 End = std::min(End, AssignI.start());
805 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000806
807 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000808 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000809 LiveInterval *LI = Edit->get(RegIdx);
810
811 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000812 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
813 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000814 LI->addRange(LiveRange(Start, End, VNI));
815 Start = End;
816 continue;
817 }
818
819 // Skip rematerialized values, we need to use extendRange() and
820 // extendPHIKillRanges() to completely recompute the live ranges.
821 if (Edit->didRematerialize(ParentVNI)) {
822 DEBUG(dbgs() << "(remat)");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000823 Skipped = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000824 Start = End;
825 continue;
826 }
827
828 // Initialize the live-out cache the first time it is needed.
829 if (LiveOutSeen.empty()) {
830 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
831 LiveOutSeen.resize(N);
832 LiveOutCache.resize(N);
833 }
834
835 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
836 // so the live range is accurate. Add live-in blocks in [Start;End) to the
837 // LiveInBlocks.
838 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
839 SlotIndex BlockStart, BlockEnd;
840 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
841
842 // The first block may be live-in, or it may have its own def.
843 if (Start != BlockStart) {
844 VNInfo *VNI = LI->extendInBlock(BlockStart,
845 std::min(BlockEnd, End).getPrevSlot());
846 assert(VNI && "Missing def for complex mapped value");
847 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
848 // MBB has its own def. Is it also live-out?
849 if (BlockEnd <= End) {
850 LiveOutSeen.set(MBB->getNumber());
851 LiveOutCache[MBB] = LiveOutPair(VNI, MDT[MBB]);
852 }
853 // Skip to the next block for live-in.
854 ++MBB;
855 BlockStart = BlockEnd;
856 }
857
858 // Handle the live-in blocks covered by [Start;End).
859 assert(Start <= BlockStart && "Expected live-in block");
860 while (BlockStart < End) {
861 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
862 BlockEnd = LIS.getMBBEndIdx(MBB);
863 if (BlockStart == ParentVNI->def) {
864 // This block has the def of a parent PHI, so it isn't live-in.
865 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
866 VNInfo *VNI = LI->extendInBlock(BlockStart,
867 std::min(BlockEnd, End).getPrevSlot());
868 assert(VNI && "Missing def for complex mapped parent PHI");
869 if (End >= BlockEnd) {
870 // Live-out as well.
871 LiveOutSeen.set(MBB->getNumber());
872 LiveOutCache[MBB] = LiveOutPair(VNI, MDT[MBB]);
873 }
874 } else {
875 // This block needs a live-in value.
876 LiveInBlocks.push_back(MDT[MBB]);
877 // The last block covered may not be live-out.
878 if (End < BlockEnd)
879 LiveInBlocks.back().Kill = End;
880 else {
881 // Live-out, but we need updateSSA to tell us the value.
882 LiveOutSeen.set(MBB->getNumber());
Francois Pichetcbc5f402011-04-16 14:20:39 +0000883 LiveOutCache[MBB] = LiveOutPair((VNInfo*)0,
884 (MachineDomTreeNode*)0);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000885 }
886 }
887 BlockStart = BlockEnd;
888 ++MBB;
889 }
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000890 Start = End;
891 } while (Start != ParentI->end);
892 DEBUG(dbgs() << '\n');
893 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000894
895 if (!LiveInBlocks.empty())
896 updateSSA();
897
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000898 return Skipped;
899}
900
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000901void SplitEditor::extendPHIKillRanges() {
902 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000903 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
904 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000905 const VNInfo *PHIVNI = *I;
906 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
907 continue;
908 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
909 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
910 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
911 PE = MBB->pred_end(); PI != PE; ++PI) {
912 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
913 // The predecessor may not have a live-out value. That is OK, like an
914 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000915 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000916 assert(RegAssign.lookup(End) == RegIdx &&
917 "Different register assignment in phi predecessor");
918 extendRange(RegIdx, End);
919 }
920 }
921 }
922}
923
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000924/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000925void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000926 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000927 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000928 MachineOperand &MO = RI.getOperand();
929 MachineInstr *MI = MO.getParent();
930 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000931 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000932 if (MI->isDebugValue()) {
933 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000934 MO.setReg(0);
935 continue;
936 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000937
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000938 // <undef> operands don't really read the register, so it doesn't matter
939 // which register we choose. When the use operand is tied to a def, we must
940 // use the same register as the def, so just do that always.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000941 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000942 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000943 Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000944
945 // Rewrite to the mapped register at Idx.
946 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000947 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000948 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
949 << Idx << ':' << RegIdx << '\t' << *MI);
950
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000951 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen81d686e2011-07-24 20:33:23 +0000952 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000953 continue;
954
955 // Skip instructions that don't read Reg.
956 if (MO.isDef()) {
957 if (!MO.getSubReg() && !MO.isEarlyClobber())
958 continue;
959 // We may wan't to extend a live range for a partial redef, or for a use
960 // tied to an early clobber.
961 Idx = Idx.getPrevSlot();
962 if (!Edit->getParent().liveAt(Idx))
963 continue;
964 } else
965 Idx = Idx.getUseIndex();
966
967 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000968 }
969}
970
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000971void SplitEditor::deleteRematVictims() {
972 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000973 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
974 LiveInterval *LI = *I;
975 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
976 LII != LIE; ++LII) {
977 // Dead defs end at the store slot.
978 if (LII->end != LII->valno->def.getNextSlot())
979 continue;
980 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
981 assert(MI && "Missing instruction for dead def");
982 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000983
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000984 if (!MI->allDefsAreDead())
985 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000986
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000987 DEBUG(dbgs() << "All defs dead: " << *MI);
988 Dead.push_back(MI);
989 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000990 }
991
992 if (Dead.empty())
993 return;
994
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000995 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000996}
997
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000998void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000999 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +00001000
Eric Christopher0f438112011-02-03 06:18:29 +00001001 // At this point, the live intervals in Edit contain VNInfos corresponding to
1002 // the inserted copies.
1003
1004 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001005 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
1006 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +00001007 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +00001008 if (ParentVNI->isUnused())
1009 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +00001010 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +00001011 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
1012 VNI->setIsPHIDef(ParentVNI->isPHIDef());
1013 VNI->setCopy(ParentVNI->getCopy());
1014
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001015 // Mark rematted values as complex everywhere to force liveness computation.
1016 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001017 if (Edit->didRematerialize(ParentVNI))
1018 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001019 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +00001020 }
1021
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001022 // Transfer the simply mapped values, check if any are skipped.
1023 bool Skipped = transferValues();
1024 if (Skipped)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001025 extendPHIKillRanges();
1026 else
1027 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +00001028
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001029 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001030 rewriteAssigned(Skipped);
Eric Christopher0f438112011-02-03 06:18:29 +00001031
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001032 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001033 if (Skipped)
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001034 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001035
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +00001036 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001037 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001038 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001039
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001040 // Provide a reverse mapping from original indices to Edit ranges.
1041 if (LRMap) {
1042 LRMap->clear();
1043 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1044 LRMap->push_back(i);
1045 }
1046
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001047 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001048 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001049 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001050 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001051 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001052 unsigned NumComp = ConEQ.Classify(li);
1053 if (NumComp <= 1)
1054 continue;
1055 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
1056 SmallVector<LiveInterval*, 8> dups;
1057 dups.push_back(li);
Matt Beaumont-Gayae5fbee2011-04-21 19:46:23 +00001058 for (unsigned j = 1; j != NumComp; ++j)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +00001059 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +00001060 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001061 // The new intervals all map back to i.
1062 if (LRMap)
1063 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001064 }
1065
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +00001066 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +00001067 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001068
1069 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001070}
1071
1072
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001073//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001074// Single Block Splitting
1075//===----------------------------------------------------------------------===//
1076
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001077/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
1078/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +00001079bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001080 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001081 if (UseBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +00001082 return false;
1083 // Add blocks with multiple uses.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001084 for (unsigned i = 0, e = UseBlocks.size(); i != e; ++i) {
1085 const BlockInfo &BI = UseBlocks[i];
1086 if (BI.FirstUse == BI.LastUse)
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +00001087 continue;
1088 Blocks.insert(BI.MBB);
1089 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +00001090 return !Blocks.empty();
1091}
1092
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001093void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1094 openIntv();
1095 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
1096 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstUse,
1097 LastSplitPoint));
1098 if (!BI.LiveOut || BI.LastUse < LastSplitPoint) {
1099 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
1100 } else {
1101 // The last use is after the last valid split point.
1102 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1103 useIntv(SegStart, SegStop);
1104 overlapIntv(SegStop, BI.LastUse);
1105 }
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001106}
1107
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001108/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +00001109/// basic block in Blocks.
1110void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +00001111 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001112 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA.getUseBlocks();
1113 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1114 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001115 if (Blocks.count(BI.MBB))
1116 splitSingleBlock(BI);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001117 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001118 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001119}
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001120
1121
1122//===----------------------------------------------------------------------===//
1123// Global Live Range Splitting Support
1124//===----------------------------------------------------------------------===//
1125
1126// These methods support a method of global live range splitting that uses a
1127// global algorithm to decide intervals for CFG edges. They will insert split
1128// points and color intervals in basic blocks while avoiding interference.
1129//
1130// Note that splitSingleBlock is also useful for blocks where both CFG edges
1131// are on the stack.
1132
1133void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
1134 unsigned IntvIn, SlotIndex LeaveBefore,
1135 unsigned IntvOut, SlotIndex EnterAfter){
1136 SlotIndex Start, Stop;
1137 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
1138
1139 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
1140 << ") intf " << LeaveBefore << '-' << EnterAfter
1141 << ", live-through " << IntvIn << " -> " << IntvOut);
1142
1143 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1144
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001145 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
1146 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
1147 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
1148
1149 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
1150
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001151 if (!IntvOut) {
1152 DEBUG(dbgs() << ", spill on entry.\n");
1153 //
1154 // <<<<<<<<< Possible LeaveBefore interference.
1155 // |-----------| Live through.
1156 // -____________ Spill on entry.
1157 //
1158 selectIntv(IntvIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001159 SlotIndex Idx = leaveIntvAtTop(*MBB);
1160 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1161 (void)Idx;
1162 return;
1163 }
1164
1165 if (!IntvIn) {
1166 DEBUG(dbgs() << ", reload on exit.\n");
1167 //
1168 // >>>>>>> Possible EnterAfter interference.
1169 // |-----------| Live through.
1170 // ___________-- Reload on exit.
1171 //
1172 selectIntv(IntvOut);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001173 SlotIndex Idx = enterIntvAtEnd(*MBB);
1174 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1175 (void)Idx;
1176 return;
1177 }
1178
1179 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1180 DEBUG(dbgs() << ", straight through.\n");
1181 //
1182 // |-----------| Live through.
1183 // ------------- Straight through, same intv, no interference.
1184 //
1185 selectIntv(IntvOut);
1186 useIntv(Start, Stop);
1187 return;
1188 }
1189
1190 // We cannot legally insert splits after LSP.
1191 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001192 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001193
1194 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1195 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
1196 DEBUG(dbgs() << ", switch avoiding interference.\n");
1197 //
1198 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
1199 // |-----------| Live through.
1200 // ------======= Switch intervals between interference.
1201 //
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001202 selectIntv(IntvOut);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001203 SlotIndex Idx;
1204 if (LeaveBefore && LeaveBefore < LSP) {
1205 Idx = enterIntvBefore(LeaveBefore);
1206 useIntv(Idx, Stop);
1207 } else {
1208 Idx = enterIntvAtEnd(*MBB);
1209 }
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001210 selectIntv(IntvIn);
1211 useIntv(Start, Idx);
1212 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1213 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1214 return;
1215 }
1216
1217 DEBUG(dbgs() << ", create local intv for interference.\n");
1218 //
1219 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1220 // |-----------| Live through.
1221 // ==---------== Switch intervals before/after interference.
1222 //
1223 assert(LeaveBefore <= EnterAfter && "Missed case");
1224
1225 selectIntv(IntvOut);
1226 SlotIndex Idx = enterIntvAfter(EnterAfter);
1227 useIntv(Idx, Stop);
1228 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1229
1230 selectIntv(IntvIn);
1231 Idx = leaveIntvBefore(LeaveBefore);
1232 useIntv(Start, Idx);
1233 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1234}
1235
1236
1237void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1238 unsigned IntvIn, SlotIndex LeaveBefore) {
1239 SlotIndex Start, Stop;
1240 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1241
1242 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
1243 << "), uses " << BI.FirstUse << '-' << BI.LastUse
1244 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1245 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1246
1247 assert(IntvIn && "Must have register in");
1248 assert(BI.LiveIn && "Must be live-in");
1249 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1250
1251 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastUse)) {
1252 DEBUG(dbgs() << " before interference.\n");
1253 //
1254 // <<< Interference after kill.
1255 // |---o---x | Killed in block.
1256 // ========= Use IntvIn everywhere.
1257 //
1258 selectIntv(IntvIn);
1259 useIntv(Start, BI.LastUse);
1260 return;
1261 }
1262
1263 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1264
1265 if (!LeaveBefore || LeaveBefore > BI.LastUse.getBoundaryIndex()) {
1266 //
1267 // <<< Possible interference after last use.
1268 // |---o---o---| Live-out on stack.
1269 // =========____ Leave IntvIn after last use.
1270 //
1271 // < Interference after last use.
1272 // |---o---o--o| Live-out on stack, late last use.
1273 // ============ Copy to stack after LSP, overlap IntvIn.
1274 // \_____ Stack interval is live-out.
1275 //
1276 if (BI.LastUse < LSP) {
1277 DEBUG(dbgs() << ", spill after last use before interference.\n");
1278 selectIntv(IntvIn);
1279 SlotIndex Idx = leaveIntvAfter(BI.LastUse);
1280 useIntv(Start, Idx);
1281 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1282 } else {
1283 DEBUG(dbgs() << ", spill before last split point.\n");
1284 selectIntv(IntvIn);
Jakob Stoklund Olesenaf4e40c2011-07-16 00:13:30 +00001285 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001286 overlapIntv(Idx, BI.LastUse);
1287 useIntv(Start, Idx);
1288 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1289 }
1290 return;
1291 }
1292
1293 // The interference is overlapping somewhere we wanted to use IntvIn. That
1294 // means we need to create a local interval that can be allocated a
1295 // different register.
1296 unsigned LocalIntv = openIntv();
Matt Beaumont-Gayf9d7fb62011-07-16 04:18:47 +00001297 (void)LocalIntv;
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001298 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1299
1300 if (!BI.LiveOut || BI.LastUse < LSP) {
1301 //
1302 // <<<<<<< Interference overlapping uses.
1303 // |---o---o---| Live-out on stack.
1304 // =====----____ Leave IntvIn before interference, then spill.
1305 //
1306 SlotIndex To = leaveIntvAfter(BI.LastUse);
1307 SlotIndex From = enterIntvBefore(LeaveBefore);
1308 useIntv(From, To);
1309 selectIntv(IntvIn);
1310 useIntv(Start, From);
1311 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1312 return;
1313 }
1314
1315 // <<<<<<< Interference overlapping uses.
1316 // |---o---o--o| Live-out on stack, late last use.
1317 // =====------- Copy to stack before LSP, overlap LocalIntv.
1318 // \_____ Stack interval is live-out.
1319 //
1320 SlotIndex To = leaveIntvBefore(LSP);
1321 overlapIntv(To, BI.LastUse);
1322 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1323 useIntv(From, To);
1324 selectIntv(IntvIn);
1325 useIntv(Start, From);
1326 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1327}
1328
1329void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1330 unsigned IntvOut, SlotIndex EnterAfter) {
1331 SlotIndex Start, Stop;
1332 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1333
1334 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
1335 << "), uses " << BI.FirstUse << '-' << BI.LastUse
1336 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1337 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1338
1339 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1340
1341 assert(IntvOut && "Must have register out");
1342 assert(BI.LiveOut && "Must be live-out");
1343 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1344
1345 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstUse)) {
1346 DEBUG(dbgs() << " after interference.\n");
1347 //
1348 // >>>> Interference before def.
1349 // | o---o---| Defined in block.
1350 // ========= Use IntvOut everywhere.
1351 //
1352 selectIntv(IntvOut);
1353 useIntv(BI.FirstUse, Stop);
1354 return;
1355 }
1356
1357 if (!EnterAfter || EnterAfter < BI.FirstUse.getBaseIndex()) {
1358 DEBUG(dbgs() << ", reload after interference.\n");
1359 //
1360 // >>>> Interference before def.
1361 // |---o---o---| Live-through, stack-in.
1362 // ____========= Enter IntvOut before first use.
1363 //
1364 selectIntv(IntvOut);
1365 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstUse));
1366 useIntv(Idx, Stop);
1367 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1368 return;
1369 }
1370
1371 // The interference is overlapping somewhere we wanted to use IntvOut. That
1372 // means we need to create a local interval that can be allocated a
1373 // different register.
1374 DEBUG(dbgs() << ", interference overlaps uses.\n");
1375 //
1376 // >>>>>>> Interference overlapping uses.
1377 // |---o---o---| Live-through, stack-in.
1378 // ____---====== Create local interval for interference range.
1379 //
1380 selectIntv(IntvOut);
1381 SlotIndex Idx = enterIntvAfter(EnterAfter);
1382 useIntv(Idx, Stop);
1383 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1384
1385 openIntv();
1386 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstUse));
1387 useIntv(From, Idx);
1388}