blob: 32c65a7d83b0047cedce7c6d732b525ce3a15a72 [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 Olesen46703532011-03-02 23:05:19 +000017#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000018#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper789d5d82012-04-02 22:44:18 +000019#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +000020#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +000022#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen1ead68d2012-11-28 19:13:06 +000024#include "llvm/CodeGen/VirtRegMap.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000025#include "llvm/Support/Debug.h"
26#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000027#include "llvm/Target/TargetInstrInfo.h"
28#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000029
30using namespace llvm;
31
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000032STATISTIC(NumFinished, "Number of splits finished");
33STATISTIC(NumSimple, "Number of splits that were simple");
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +000034STATISTIC(NumCopies, "Number of copies inserted for splitting");
35STATISTIC(NumRemats, "Number of rematerialized defs for splitting");
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +000036STATISTIC(NumRepairs, "Number of invalid live ranges repaired");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000037
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000038//===----------------------------------------------------------------------===//
39// Split Analysis
40//===----------------------------------------------------------------------===//
41
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000042SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000043 const LiveIntervals &lis,
44 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000045 : MF(vrm.getMachineFunction()),
46 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000047 LIS(lis),
48 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000049 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000050 CurLI(0),
51 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000052
53void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000054 UseSlots.clear();
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000055 UseBlocks.clear();
56 ThroughBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000057 CurLI = 0;
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +000058 DidRepairRange = false;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000059}
60
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000061SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
62 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
63 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
64 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
Jakob Stoklund Olesen2aad2f62012-01-11 02:07:05 +000065 SlotIndex MBBEnd = LIS.getMBBEndIdx(MBB);
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000066
67 // Compute split points on the first call. The pair is independent of the
68 // current live interval.
69 if (!LSP.first.isValid()) {
70 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
71 if (FirstTerm == MBB->end())
Jakob Stoklund Olesen2aad2f62012-01-11 02:07:05 +000072 LSP.first = MBBEnd;
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000073 else
74 LSP.first = LIS.getInstructionIndex(FirstTerm);
75
76 // If there is a landing pad successor, also find the call instruction.
77 if (!LPad)
78 return LSP.first;
79 // There may not be a call instruction (?) in which case we ignore LPad.
80 LSP.second = LSP.first;
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000081 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
82 I != E;) {
83 --I;
Evan Cheng5a96b3d2011-12-07 07:15:52 +000084 if (I->isCall()) {
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000085 LSP.second = LIS.getInstructionIndex(I);
86 break;
87 }
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000088 }
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000089 }
90
91 // If CurLI is live into a landing pad successor, move the last split point
92 // back to the call that may throw.
Jakob Stoklund Olesen2aad2f62012-01-11 02:07:05 +000093 if (!LPad || !LSP.second || !LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000094 return LSP.first;
Jakob Stoklund Olesen2aad2f62012-01-11 02:07:05 +000095
96 // Find the value leaving MBB.
97 const VNInfo *VNI = CurLI->getVNInfoBefore(MBBEnd);
98 if (!VNI)
99 return LSP.first;
100
101 // If the value leaving MBB was defined after the call in MBB, it can't
102 // really be live-in to the landing pad. This can happen if the landing pad
103 // has a PHI, and this register is undef on the exceptional edge.
104 // <rdar://problem/10664933>
105 if (!SlotIndex::isEarlierInstr(VNI->def, LSP.second) && VNI->def < MBBEnd)
106 return LSP.first;
107
108 // Value is properly live-in to the landing pad.
109 // Only allow splits before the call.
110 return LSP.second;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000111}
112
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +0000113MachineBasicBlock::iterator
114SplitAnalysis::getLastSplitPointIter(MachineBasicBlock *MBB) {
115 SlotIndex LSP = getLastSplitPoint(MBB->getNumber());
116 if (LSP == LIS.getMBBEndIdx(MBB))
117 return MBB->end();
118 return LIS.getInstructionFromIndex(LSP);
119}
120
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000121/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000122void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000123 assert(UseSlots.empty() && "Call clear first");
124
125 // First get all the defs from the interval values. This provides the correct
126 // slots for early clobbers.
127 for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(),
128 E = CurLI->vni_end(); I != E; ++I)
129 if (!(*I)->isPHIDef() && !(*I)->isUnused())
130 UseSlots.push_back((*I)->def);
131
132 // Get use slots form the use-def chain.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000133 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000134 for (MachineRegisterInfo::use_nodbg_iterator
135 I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E;
136 ++I)
137 if (!I.getOperand().isUndef())
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000138 UseSlots.push_back(LIS.getInstructionIndex(&*I).getRegSlot());
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000139
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000140 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000141
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000142 // Remove duplicates, keeping the smaller slot for each instruction.
143 // That is what we want for early clobbers.
144 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
145 SlotIndex::isSameInstr),
146 UseSlots.end());
147
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000148 // Compute per-live block info.
149 if (!calcLiveBlockInfo()) {
150 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola5b220212011-06-26 22:34:10 +0000151 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000152 DidRepairRange = true;
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +0000153 ++NumRepairs;
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000154 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
155 const_cast<LiveIntervals&>(LIS)
156 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000157 UseBlocks.clear();
158 ThroughBlocks.clear();
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000159 bool fixed = calcLiveBlockInfo();
160 (void)fixed;
161 assert(fixed && "Couldn't fix broken live interval");
162 }
163
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000164 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000165 << UseSlots.size() << " instrs in "
166 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000167 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000168}
169
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000170/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
171/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000172bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000173 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000174 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000175 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000176 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000177
178 LiveInterval::const_iterator LVI = CurLI->begin();
179 LiveInterval::const_iterator LVE = CurLI->end();
180
181 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
182 UseI = UseSlots.begin();
183 UseE = UseSlots.end();
184
185 // Loop over basic blocks where CurLI is live.
186 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
187 for (;;) {
188 BlockInfo BI;
189 BI.MBB = MFI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000190 SlotIndex Start, Stop;
191 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000192
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000193 // If the block contains no uses, the range must be live through. At one
Rafael Espindola5b220212011-06-26 22:34:10 +0000194 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000195 // mid-block.
196 if (UseI == UseE || *UseI >= Stop) {
197 ++NumThroughBlocks;
198 ThroughBlocks.set(BI.MBB->getNumber());
199 // The range shouldn't end mid-block if there are no uses. This shouldn't
200 // happen.
201 if (LVI->end < Stop)
202 return false;
203 } else {
204 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000205 BI.FirstInstr = *UseI;
206 assert(BI.FirstInstr >= Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000207 do ++UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000208 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000209 BI.LastInstr = UseI[-1];
210 assert(BI.LastInstr < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000211
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000212 // LVI is the first live segment overlapping MBB.
213 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000214
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000215 // When not live in, the first use should be a def.
216 if (!BI.LiveIn) {
217 assert(LVI->start == LVI->valno->def && "Dangling LiveRange start");
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000218 assert(LVI->start == BI.FirstInstr && "First instr should be a def");
219 BI.FirstDef = BI.FirstInstr;
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000220 }
221
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000222 // Look for gaps in the live range.
223 BI.LiveOut = true;
224 while (LVI->end < Stop) {
225 SlotIndex LastStop = LVI->end;
226 if (++LVI == LVE || LVI->start >= Stop) {
227 BI.LiveOut = false;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000228 BI.LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000229 break;
230 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000231
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000232 if (LastStop < LVI->start) {
233 // There is a gap in the live range. Create duplicate entries for the
234 // live-in snippet and the live-out snippet.
235 ++NumGapBlocks;
236
237 // Push the Live-in part.
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000238 BI.LiveOut = false;
239 UseBlocks.push_back(BI);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000240 UseBlocks.back().LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000241
242 // Set up BI for the live-out part.
243 BI.LiveIn = false;
244 BI.LiveOut = true;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000245 BI.FirstInstr = BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000246 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000247
248 // A LiveRange that starts in the middle of the block must be a def.
249 assert(LVI->start == LVI->valno->def && "Dangling LiveRange start");
250 if (!BI.FirstDef)
251 BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000252 }
253
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000254 UseBlocks.push_back(BI);
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000255
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000256 // LVI is now at LVE or LVI->end >= Stop.
257 if (LVI == LVE)
258 break;
259 }
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000260
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000261 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000262 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000263 break;
264
265 // Pick the next basic block.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000266 if (LVI->start < Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000267 ++MFI;
268 else
269 MFI = LIS.getMBBFromIndex(LVI->start);
270 }
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000271
272 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000273 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000274}
275
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000276unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
277 if (cli->empty())
278 return 0;
279 LiveInterval *li = const_cast<LiveInterval*>(cli);
280 LiveInterval::iterator LVI = li->begin();
281 LiveInterval::iterator LVE = li->end();
282 unsigned Count = 0;
283
284 // Loop over basic blocks where li is live.
285 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start);
286 SlotIndex Stop = LIS.getMBBEndIdx(MFI);
287 for (;;) {
288 ++Count;
289 LVI = li->advanceTo(LVI, Stop);
290 if (LVI == LVE)
291 return Count;
292 do {
293 ++MFI;
294 Stop = LIS.getMBBEndIdx(MFI);
295 } while (Stop <= LVI->start);
296 }
297}
298
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000299bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
300 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
301 const LiveInterval &Orig = LIS.getInterval(OrigReg);
302 assert(!Orig.empty() && "Splitting empty interval?");
303 LiveInterval::const_iterator I = Orig.find(Idx);
304
305 // Range containing Idx should begin at Idx.
306 if (I != Orig.end() && I->start <= Idx)
307 return I->start == Idx;
308
309 // Range does not contain Idx, previous must end at Idx.
310 return I != Orig.begin() && (--I)->end == Idx;
311}
312
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000313void SplitAnalysis::analyze(const LiveInterval *li) {
314 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000315 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000316 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000317}
318
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000319
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000320//===----------------------------------------------------------------------===//
321// Split Editor
322//===----------------------------------------------------------------------===//
323
324/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000325SplitEditor::SplitEditor(SplitAnalysis &sa,
326 LiveIntervals &lis,
327 VirtRegMap &vrm,
Benjamin Kramer4eed7562013-06-17 19:00:36 +0000328 MachineDominatorTree &mdt,
329 MachineBlockFrequencyInfo &mbfi)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000330 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000331 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000332 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000333 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
334 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Benjamin Kramer4eed7562013-06-17 19:00:36 +0000335 MBFI(mbfi),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000336 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000337 OpenIdx(0),
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000338 SpillMode(SM_Partition),
Eric Christopher0f438112011-02-03 06:18:29 +0000339 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000340{}
341
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000342void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
343 Edit = &LRE;
344 SpillMode = SM;
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000345 OpenIdx = 0;
346 RegAssign.clear();
347 Values.clear();
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000348
349 // Reset the LiveRangeCalc instances needed for this spill mode.
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000350 LRCalc[0].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
351 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000352 if (SpillMode)
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000353 LRCalc[1].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
354 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000355
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000356 // We don't need an AliasAnalysis since we will only be performing
357 // cheap-as-a-copy remats anyway.
Pete Cooper8a06af92012-04-02 22:22:53 +0000358 Edit->anyRematerializable(0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000359}
360
Manman Renb720be62012-09-11 22:23:19 +0000361#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Eric Christopher0f438112011-02-03 06:18:29 +0000362void SplitEditor::dump() const {
363 if (RegAssign.empty()) {
364 dbgs() << " empty\n";
365 return;
366 }
367
368 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
369 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
370 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000371}
Manman Ren77e300e2012-09-06 19:06:06 +0000372#endif
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000373
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000374VNInfo *SplitEditor::defValue(unsigned RegIdx,
375 const VNInfo *ParentVNI,
376 SlotIndex Idx) {
377 assert(ParentVNI && "Mapping NULL value");
378 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000379 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
380 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000381
382 // Create a new value.
Jakob Stoklund Olesen3b1088a2012-02-04 05:20:49 +0000383 VNInfo *VNI = LI->getNextValue(Idx, LIS.getVNInfoAllocator());
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000384
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000385 // Use insert for lookup, so we can add missing values with a second lookup.
386 std::pair<ValueMap::iterator, bool> InsP =
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000387 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id),
388 ValueForcePair(VNI, false)));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000389
390 // This was the first time (RegIdx, ParentVNI) was mapped.
391 // Keep it as a simple def without any liveness.
392 if (InsP.second)
393 return VNI;
394
395 // If the previous value was a simple mapping, add liveness for it now.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000396 if (VNInfo *OldVNI = InsP.first->second.getPointer()) {
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000397 SlotIndex Def = OldVNI->def;
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +0000398 LI->addRange(LiveRange(Def, Def.getDeadSlot(), OldVNI));
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000399 // No longer a simple mapping. Switch to a complex, non-forced mapping.
400 InsP.first->second = ValueForcePair();
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000401 }
402
403 // This is a complex mapping, add liveness for VNI
404 SlotIndex Def = VNI->def;
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +0000405 LI->addRange(LiveRange(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000406
407 return VNI;
408}
409
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000410void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI) {
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000411 assert(ParentVNI && "Mapping NULL value");
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000412 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)];
413 VNInfo *VNI = VFP.getPointer();
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000414
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000415 // ParentVNI was either unmapped or already complex mapped. Either way, just
416 // set the force bit.
417 if (!VNI) {
418 VFP.setInt(true);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000419 return;
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000420 }
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000421
422 // This was previously a single mapping. Make sure the old def is represented
423 // by a trivial live range.
424 SlotIndex Def = VNI->def;
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +0000425 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000426 // Mark as complex mapped, forced.
427 VFP = ValueForcePair(0, true);
Jakob Stoklund Olesene5a2e362011-09-13 18:05:29 +0000428}
429
Eric Christopher0f438112011-02-03 06:18:29 +0000430VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000431 VNInfo *ParentVNI,
432 SlotIndex UseIdx,
433 MachineBasicBlock &MBB,
434 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000435 MachineInstr *CopyMI = 0;
436 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000437 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000438
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000439 // We may be trying to avoid interference that ends at a deleted instruction,
440 // so always begin RegIdx 0 early and all others late.
441 bool Late = RegIdx != 0;
442
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000443 // Attempt cheap-as-a-copy rematerialization.
444 LiveRangeEdit::Remat RM(ParentVNI);
Pete Cooper8a06af92012-04-02 22:22:53 +0000445 if (Edit->canRematerializeAt(RM, UseIdx, true)) {
446 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, TRI, Late);
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000447 ++NumRemats;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000448 } else {
449 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000450 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000451 .addReg(Edit->getReg());
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000452 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000453 .getRegSlot();
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000454 ++NumCopies;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000455 }
456
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000457 // Define the value in Reg.
Jakob Stoklund Olesen3b1088a2012-02-04 05:20:49 +0000458 return defValue(RegIdx, ParentVNI, Def);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000459}
460
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000461/// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000462unsigned SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000463 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000464 if (Edit->empty())
Pete Cooper8a06af92012-04-02 22:22:53 +0000465 Edit->create();
Eric Christopher0f438112011-02-03 06:18:29 +0000466
467 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000468 OpenIdx = Edit->size();
Pete Cooper8a06af92012-04-02 22:22:53 +0000469 Edit->create();
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000470 return OpenIdx;
471}
472
473void SplitEditor::selectIntv(unsigned Idx) {
474 assert(Idx != 0 && "Cannot select the complement interval");
475 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000476 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000477 OpenIdx = Idx;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000478}
479
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000480SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000481 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000482 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000483 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000484 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000485 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000486 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000487 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000488 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000489 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000490 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000491 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000492
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000493 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
494 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000495}
496
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000497SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
498 assert(OpenIdx && "openIntv not called before enterIntvAfter");
499 DEBUG(dbgs() << " enterIntvAfter " << Idx);
500 Idx = Idx.getBoundaryIndex();
501 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
502 if (!ParentVNI) {
503 DEBUG(dbgs() << ": not live\n");
504 return Idx;
505 }
506 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
507 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
508 assert(MI && "enterIntvAfter called with invalid index");
509
510 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
511 llvm::next(MachineBasicBlock::iterator(MI)));
512 return VNI->def;
513}
514
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000515SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000516 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000517 SlotIndex End = LIS.getMBBEndIdx(&MBB);
518 SlotIndex Last = End.getPrevSlot();
519 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000520 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000521 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000522 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000523 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000524 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000525 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000526 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +0000527 SA.getLastSplitPointIter(&MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000528 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000529 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000530 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000531}
532
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000533/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000534void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000535 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000536}
537
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000538void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000539 assert(OpenIdx && "openIntv not called before useIntv");
540 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
541 RegAssign.insert(Start, End, OpenIdx);
542 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000543}
544
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000545SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000546 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000547 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000548
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000549 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000550 SlotIndex Boundary = Idx.getBoundaryIndex();
551 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000552 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000553 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000554 return Boundary.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000555 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000556 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000557 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000558 assert(MI && "No instruction at index");
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000559
560 // In spill mode, make live ranges as short as possible by inserting the copy
561 // before MI. This is only possible if that instruction doesn't redefine the
562 // value. The inserted COPY is not a kill, and we don't need to recompute
563 // the source live range. The spiller also won't try to hoist this copy.
564 if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) &&
565 MI->readsVirtualRegister(Edit->getReg())) {
566 forceRecompute(0, ParentVNI);
567 defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
568 return Idx;
569 }
570
571 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000572 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000573 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000574}
575
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000576SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
577 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
578 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
579
580 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenfc479332011-07-18 18:47:13 +0000581 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000582 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000583 if (!ParentVNI) {
584 DEBUG(dbgs() << ": not live\n");
585 return Idx.getNextSlot();
586 }
587 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
588
589 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
590 assert(MI && "No instruction at index");
591 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
592 return VNI->def;
593}
594
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000595SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000596 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000597 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000598 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000599
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000600 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000601 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000602 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000603 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000604 }
605
Eric Christopher0f438112011-02-03 06:18:29 +0000606 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000607 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000608 RegAssign.insert(Start, VNI->def, OpenIdx);
609 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000610 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000611}
612
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000613void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
614 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000615 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesen194eb712011-11-14 01:39:36 +0000616 assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000617 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000618 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
619 "Range cannot span basic blocks");
620
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000621 // The complement interval will be extended as needed by LRCalc.extend().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000622 if (ParentVNI)
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000623 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000624 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
625 RegAssign.insert(Start, End, OpenIdx);
626 DEBUG(dump());
627}
628
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000629//===----------------------------------------------------------------------===//
630// Spill modes
631//===----------------------------------------------------------------------===//
632
633void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) {
634 LiveInterval *LI = Edit->get(0);
635 DEBUG(dbgs() << "Removing " << Copies.size() << " back-copies.\n");
636 RegAssignMap::iterator AssignI;
637 AssignI.setMap(RegAssign);
638
639 for (unsigned i = 0, e = Copies.size(); i != e; ++i) {
640 VNInfo *VNI = Copies[i];
641 SlotIndex Def = VNI->def;
642 MachineInstr *MI = LIS.getInstructionFromIndex(Def);
643 assert(MI && "No instruction for back-copy");
644
645 MachineBasicBlock *MBB = MI->getParent();
646 MachineBasicBlock::iterator MBBI(MI);
647 bool AtBegin;
648 do AtBegin = MBBI == MBB->begin();
649 while (!AtBegin && (--MBBI)->isDebugValue());
650
651 DEBUG(dbgs() << "Removing " << Def << '\t' << *MI);
652 LI->removeValNo(VNI);
653 LIS.RemoveMachineInstrFromMaps(MI);
654 MI->eraseFromParent();
655
656 // Adjust RegAssign if a register assignment is killed at VNI->def. We
657 // want to avoid calculating the live range of the source register if
658 // possible.
Jakob Stoklund Olesen1599a642012-08-03 20:59:29 +0000659 AssignI.find(Def.getPrevSlot());
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000660 if (!AssignI.valid() || AssignI.start() >= Def)
661 continue;
662 // If MI doesn't kill the assigned register, just leave it.
663 if (AssignI.stop() != Def)
664 continue;
665 unsigned RegIdx = AssignI.value();
666 if (AtBegin || !MBBI->readsVirtualRegister(Edit->getReg())) {
667 DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n');
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000668 forceRecompute(RegIdx, Edit->getParent().getVNInfoAt(Def));
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000669 } else {
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000670 SlotIndex Kill = LIS.getInstructionIndex(MBBI).getRegSlot();
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000671 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
672 AssignI.setStop(Kill);
673 }
674 }
675}
676
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000677MachineBasicBlock*
678SplitEditor::findShallowDominator(MachineBasicBlock *MBB,
679 MachineBasicBlock *DefMBB) {
680 if (MBB == DefMBB)
681 return MBB;
682 assert(MDT.dominates(DefMBB, MBB) && "MBB must be dominated by the def.");
683
684 const MachineLoopInfo &Loops = SA.Loops;
685 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
686 MachineDomTreeNode *DefDomNode = MDT[DefMBB];
687
688 // Best candidate so far.
689 MachineBasicBlock *BestMBB = MBB;
690 unsigned BestDepth = UINT_MAX;
691
692 for (;;) {
693 const MachineLoop *Loop = Loops.getLoopFor(MBB);
694
695 // MBB isn't in a loop, it doesn't get any better. All dominators have a
696 // higher frequency by definition.
697 if (!Loop) {
698 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
699 << MBB->getNumber() << " at depth 0\n");
700 return MBB;
701 }
702
703 // We'll never be able to exit the DefLoop.
704 if (Loop == DefLoop) {
705 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
706 << MBB->getNumber() << " in the same loop\n");
707 return MBB;
708 }
709
710 // Least busy dominator seen so far.
711 unsigned Depth = Loop->getLoopDepth();
712 if (Depth < BestDepth) {
713 BestMBB = MBB;
714 BestDepth = Depth;
715 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
716 << MBB->getNumber() << " at depth " << Depth << '\n');
717 }
718
719 // Leave loop by going to the immediate dominator of the loop header.
720 // This is a bigger stride than simply walking up the dominator tree.
721 MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom();
722
723 // Too far up the dominator tree?
724 if (!IDom || !MDT.dominates(DefDomNode, IDom))
725 return BestMBB;
726
727 MBB = IDom->getBlock();
728 }
729}
730
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000731void SplitEditor::hoistCopiesForSize() {
732 // Get the complement interval, always RegIdx 0.
733 LiveInterval *LI = Edit->get(0);
734 LiveInterval *Parent = &Edit->getParent();
735
736 // Track the nearest common dominator for all back-copies for each ParentVNI,
737 // indexed by ParentVNI->id.
738 typedef std::pair<MachineBasicBlock*, SlotIndex> DomPair;
739 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
740
741 // Find the nearest common dominator for parent values with multiple
742 // back-copies. If a single back-copy dominates, put it in DomPair.second.
743 for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end();
744 VI != VE; ++VI) {
745 VNInfo *VNI = *VI;
Jakob Stoklund Olesen1599a642012-08-03 20:59:29 +0000746 if (VNI->isUnused())
747 continue;
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000748 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
749 assert(ParentVNI && "Parent not live at complement def");
750
751 // Don't hoist remats. The complement is probably going to disappear
752 // completely anyway.
753 if (Edit->didRematerialize(ParentVNI))
754 continue;
755
756 MachineBasicBlock *ValMBB = LIS.getMBBFromIndex(VNI->def);
757 DomPair &Dom = NearestDom[ParentVNI->id];
758
759 // Keep directly defined parent values. This is either a PHI or an
760 // instruction in the complement range. All other copies of ParentVNI
761 // should be eliminated.
762 if (VNI->def == ParentVNI->def) {
763 DEBUG(dbgs() << "Direct complement def at " << VNI->def << '\n');
764 Dom = DomPair(ValMBB, VNI->def);
765 continue;
766 }
767 // Skip the singly mapped values. There is nothing to gain from hoisting a
768 // single back-copy.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000769 if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) {
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000770 DEBUG(dbgs() << "Single complement def at " << VNI->def << '\n');
771 continue;
772 }
773
774 if (!Dom.first) {
775 // First time we see ParentVNI. VNI dominates itself.
776 Dom = DomPair(ValMBB, VNI->def);
777 } else if (Dom.first == ValMBB) {
778 // Two defs in the same block. Pick the earlier def.
779 if (!Dom.second.isValid() || VNI->def < Dom.second)
780 Dom.second = VNI->def;
781 } else {
782 // Different basic blocks. Check if one dominates.
783 MachineBasicBlock *Near =
784 MDT.findNearestCommonDominator(Dom.first, ValMBB);
785 if (Near == ValMBB)
786 // Def ValMBB dominates.
787 Dom = DomPair(ValMBB, VNI->def);
788 else if (Near != Dom.first)
789 // None dominate. Hoist to common dominator, need new def.
790 Dom = DomPair(Near, SlotIndex());
791 }
792
793 DEBUG(dbgs() << "Multi-mapped complement " << VNI->id << '@' << VNI->def
794 << " for parent " << ParentVNI->id << '@' << ParentVNI->def
795 << " hoist to BB#" << Dom.first->getNumber() << ' '
796 << Dom.second << '\n');
797 }
798
799 // Insert the hoisted copies.
800 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
801 DomPair &Dom = NearestDom[i];
802 if (!Dom.first || Dom.second.isValid())
803 continue;
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000804 // This value needs a hoisted copy inserted at the end of Dom.first.
805 VNInfo *ParentVNI = Parent->getValNumInfo(i);
806 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(ParentVNI->def);
807 // Get a less loopy dominator than Dom.first.
808 Dom.first = findShallowDominator(Dom.first, DefMBB);
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000809 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
810 Dom.second =
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000811 defFromParent(0, ParentVNI, Last, *Dom.first,
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +0000812 SA.getLastSplitPointIter(Dom.first))->def;
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000813 }
814
815 // Remove redundant back-copies that are now known to be dominated by another
816 // def with the same value.
817 SmallVector<VNInfo*, 8> BackCopies;
818 for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end();
819 VI != VE; ++VI) {
820 VNInfo *VNI = *VI;
Jakob Stoklund Olesen1599a642012-08-03 20:59:29 +0000821 if (VNI->isUnused())
822 continue;
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000823 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
824 const DomPair &Dom = NearestDom[ParentVNI->id];
825 if (!Dom.first || Dom.second == VNI->def)
826 continue;
827 BackCopies.push_back(VNI);
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000828 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000829 }
830 removeBackCopies(BackCopies);
831}
832
833
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000834/// transferValues - Transfer all possible values to the new live ranges.
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000835/// Values that were rematerialized are left alone, they need LRCalc.extend().
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000836bool SplitEditor::transferValues() {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000837 bool Skipped = false;
838 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000839 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
840 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000841 DEBUG(dbgs() << " blit " << *ParentI << ':');
842 VNInfo *ParentVNI = ParentI->valno;
843 // RegAssign has holes where RegIdx 0 should be used.
844 SlotIndex Start = ParentI->start;
845 AssignI.advanceTo(Start);
846 do {
847 unsigned RegIdx;
848 SlotIndex End = ParentI->end;
849 if (!AssignI.valid()) {
850 RegIdx = 0;
851 } else if (AssignI.start() <= Start) {
852 RegIdx = AssignI.value();
853 if (AssignI.stop() < End) {
854 End = AssignI.stop();
855 ++AssignI;
856 }
857 } else {
858 RegIdx = 0;
859 End = std::min(End, AssignI.start());
860 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000861
862 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000863 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000864 LiveInterval *LI = Edit->get(RegIdx);
865
866 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000867 ValueForcePair VFP = Values.lookup(std::make_pair(RegIdx, ParentVNI->id));
868 if (VNInfo *VNI = VFP.getPointer()) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000869 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000870 LI->addRange(LiveRange(Start, End, VNI));
871 Start = End;
872 continue;
873 }
874
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000875 // Skip values with forced recomputation.
876 if (VFP.getInt()) {
877 DEBUG(dbgs() << "(recalc)");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000878 Skipped = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000879 Start = End;
880 continue;
881 }
882
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000883 LiveRangeCalc &LRC = getLRCalc(RegIdx);
884
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000885 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
886 // so the live range is accurate. Add live-in blocks in [Start;End) to the
887 // LiveInBlocks.
888 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
889 SlotIndex BlockStart, BlockEnd;
890 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
891
892 // The first block may be live-in, or it may have its own def.
893 if (Start != BlockStart) {
Jakob Stoklund Olesenee5655d2011-09-13 16:47:56 +0000894 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000895 assert(VNI && "Missing def for complex mapped value");
896 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
897 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000898 if (BlockEnd <= End)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000899 LRC.setLiveOutValue(MBB, VNI);
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000900
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000901 // Skip to the next block for live-in.
902 ++MBB;
903 BlockStart = BlockEnd;
904 }
905
906 // Handle the live-in blocks covered by [Start;End).
907 assert(Start <= BlockStart && "Expected live-in block");
908 while (BlockStart < End) {
909 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
910 BlockEnd = LIS.getMBBEndIdx(MBB);
911 if (BlockStart == ParentVNI->def) {
912 // This block has the def of a parent PHI, so it isn't live-in.
913 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
Jakob Stoklund Olesenee5655d2011-09-13 16:47:56 +0000914 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000915 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000916 if (End >= BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000917 LRC.setLiveOutValue(MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000918 } else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000919 // This block needs a live-in value. The last block covered may not
920 // be live-out.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000921 if (End < BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000922 LRC.addLiveInBlock(LI, MDT[MBB], End);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000923 else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000924 // Live-through, and we don't know the value.
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000925 LRC.addLiveInBlock(LI, MDT[MBB]);
926 LRC.setLiveOutValue(MBB, 0);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000927 }
928 }
929 BlockStart = BlockEnd;
930 ++MBB;
931 }
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000932 Start = End;
933 } while (Start != ParentI->end);
934 DEBUG(dbgs() << '\n');
935 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000936
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000937 LRCalc[0].calculateValues();
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000938 if (SpillMode)
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000939 LRCalc[1].calculateValues();
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000940
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000941 return Skipped;
942}
943
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000944void SplitEditor::extendPHIKillRanges() {
945 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000946 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
947 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000948 const VNInfo *PHIVNI = *I;
949 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
950 continue;
951 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000952 LiveInterval *LI = Edit->get(RegIdx);
953 LiveRangeCalc &LRC = getLRCalc(RegIdx);
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000954 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
955 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
956 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000957 SlotIndex End = LIS.getMBBEndIdx(*PI);
958 SlotIndex LastUse = End.getPrevSlot();
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000959 // The predecessor may not have a live-out value. That is OK, like an
960 // undef PHI operand.
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000961 if (Edit->getParent().liveAt(LastUse)) {
962 assert(RegAssign.lookup(LastUse) == RegIdx &&
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000963 "Different register assignment in phi predecessor");
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000964 LRC.extend(LI, End);
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000965 }
966 }
967 }
968}
969
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000970/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000971void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000972 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000973 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000974 MachineOperand &MO = RI.getOperand();
975 MachineInstr *MI = MO.getParent();
976 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000977 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000978 if (MI->isDebugValue()) {
979 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000980 MO.setReg(0);
981 continue;
982 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000983
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000984 // <undef> operands don't really read the register, so it doesn't matter
985 // which register we choose. When the use operand is tied to a def, we must
986 // use the same register as the def, so just do that always.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000987 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000988 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000989 Idx = Idx.getRegSlot(MO.isEarlyClobber());
Eric Christopher0f438112011-02-03 06:18:29 +0000990
991 // Rewrite to the mapped register at Idx.
992 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000993 LiveInterval *LI = Edit->get(RegIdx);
994 MO.setReg(LI->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000995 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
996 << Idx << ':' << RegIdx << '\t' << *MI);
997
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000998 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen81d686e2011-07-24 20:33:23 +0000999 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +00001000 continue;
1001
1002 // Skip instructions that don't read Reg.
1003 if (MO.isDef()) {
1004 if (!MO.getSubReg() && !MO.isEarlyClobber())
1005 continue;
1006 // We may wan't to extend a live range for a partial redef, or for a use
1007 // tied to an early clobber.
1008 Idx = Idx.getPrevSlot();
1009 if (!Edit->getParent().liveAt(Idx))
1010 continue;
1011 } else
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +00001012 Idx = Idx.getRegSlot(true);
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +00001013
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +00001014 getLRCalc(RegIdx).extend(LI, Idx.getNextSlot());
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001015 }
1016}
1017
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001018void SplitEditor::deleteRematVictims() {
1019 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001020 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
1021 LiveInterval *LI = *I;
1022 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
1023 LII != LIE; ++LII) {
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +00001024 // Dead defs end at the dead slot.
1025 if (LII->end != LII->valno->def.getDeadSlot())
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001026 continue;
1027 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
1028 assert(MI && "Missing instruction for dead def");
1029 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001030
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001031 if (!MI->allDefsAreDead())
1032 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001033
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001034 DEBUG(dbgs() << "All defs dead: " << *MI);
1035 Dead.push_back(MI);
1036 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001037 }
1038
1039 if (Dead.empty())
1040 return;
1041
Pete Cooper8a06af92012-04-02 22:22:53 +00001042 Edit->eliminateDeadDefs(Dead);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001043}
1044
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001045void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001046 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +00001047
Eric Christopher0f438112011-02-03 06:18:29 +00001048 // At this point, the live intervals in Edit contain VNInfos corresponding to
1049 // the inserted copies.
1050
1051 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001052 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
1053 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +00001054 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +00001055 if (ParentVNI->isUnused())
1056 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +00001057 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesenb18d7792012-07-27 21:11:14 +00001058 defValue(RegIdx, ParentVNI, ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +00001059
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +00001060 // Force rematted values to be recomputed everywhere.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001061 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001062 if (Edit->didRematerialize(ParentVNI))
1063 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +00001064 forceRecompute(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +00001065 }
1066
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +00001067 // Hoist back-copies to the complement interval when in spill mode.
1068 switch (SpillMode) {
1069 case SM_Partition:
1070 // Leave all back-copies as is.
1071 break;
1072 case SM_Size:
1073 hoistCopiesForSize();
1074 break;
1075 case SM_Speed:
1076 llvm_unreachable("Spill mode 'speed' not implemented yet");
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +00001077 }
1078
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001079 // Transfer the simply mapped values, check if any are skipped.
1080 bool Skipped = transferValues();
1081 if (Skipped)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001082 extendPHIKillRanges();
1083 else
1084 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +00001085
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001086 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001087 rewriteAssigned(Skipped);
Eric Christopher0f438112011-02-03 06:18:29 +00001088
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001089 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001090 if (Skipped)
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001091 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001092
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +00001093 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001094 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen1c6d3872013-08-14 17:28:52 +00001095 (*I)->RenumberValues();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001096
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001097 // Provide a reverse mapping from original indices to Edit ranges.
1098 if (LRMap) {
1099 LRMap->clear();
1100 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1101 LRMap->push_back(i);
1102 }
1103
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001104 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001105 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001106 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001107 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001108 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001109 unsigned NumComp = ConEQ.Classify(li);
1110 if (NumComp <= 1)
1111 continue;
1112 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
1113 SmallVector<LiveInterval*, 8> dups;
1114 dups.push_back(li);
Matt Beaumont-Gayae5fbee2011-04-21 19:46:23 +00001115 for (unsigned j = 1; j != NumComp; ++j)
Pete Cooper8a06af92012-04-02 22:22:53 +00001116 dups.push_back(&Edit->create());
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +00001117 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001118 // The new intervals all map back to i.
1119 if (LRMap)
1120 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001121 }
1122
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +00001123 // Calculate spill weight and allocation hints for new intervals.
Benjamin Kramer4eed7562013-06-17 19:00:36 +00001124 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), SA.Loops, MBFI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001125
1126 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001127}
1128
1129
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001130//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001131// Single Block Splitting
1132//===----------------------------------------------------------------------===//
1133
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +00001134bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
1135 bool SingleInstrs) const {
1136 // Always split for multiple instructions.
1137 if (!BI.isOneInstr())
1138 return true;
1139 // Don't split for single instructions unless explicitly requested.
1140 if (!SingleInstrs)
1141 return false;
1142 // Splitting a live-through range always makes progress.
1143 if (BI.LiveIn && BI.LiveOut)
1144 return true;
1145 // No point in isolating a copy. It has no register class constraints.
1146 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
1147 return false;
1148 // Finally, don't isolate an end point that was created by earlier splits.
1149 return isOriginalEndpoint(BI.FirstInstr);
1150}
1151
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001152void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1153 openIntv();
1154 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001155 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001156 LastSplitPoint));
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001157 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
1158 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001159 } else {
1160 // The last use is after the last valid split point.
1161 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1162 useIntv(SegStart, SegStop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001163 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001164 }
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001165}
1166
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001167
1168//===----------------------------------------------------------------------===//
1169// Global Live Range Splitting Support
1170//===----------------------------------------------------------------------===//
1171
1172// These methods support a method of global live range splitting that uses a
1173// global algorithm to decide intervals for CFG edges. They will insert split
1174// points and color intervals in basic blocks while avoiding interference.
1175//
1176// Note that splitSingleBlock is also useful for blocks where both CFG edges
1177// are on the stack.
1178
1179void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
1180 unsigned IntvIn, SlotIndex LeaveBefore,
1181 unsigned IntvOut, SlotIndex EnterAfter){
1182 SlotIndex Start, Stop;
1183 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
1184
1185 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
1186 << ") intf " << LeaveBefore << '-' << EnterAfter
1187 << ", live-through " << IntvIn << " -> " << IntvOut);
1188
1189 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1190
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001191 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
1192 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
1193 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
1194
1195 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
1196
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001197 if (!IntvOut) {
1198 DEBUG(dbgs() << ", spill on entry.\n");
1199 //
1200 // <<<<<<<<< Possible LeaveBefore interference.
1201 // |-----------| Live through.
1202 // -____________ Spill on entry.
1203 //
1204 selectIntv(IntvIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001205 SlotIndex Idx = leaveIntvAtTop(*MBB);
1206 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1207 (void)Idx;
1208 return;
1209 }
1210
1211 if (!IntvIn) {
1212 DEBUG(dbgs() << ", reload on exit.\n");
1213 //
1214 // >>>>>>> Possible EnterAfter interference.
1215 // |-----------| Live through.
1216 // ___________-- Reload on exit.
1217 //
1218 selectIntv(IntvOut);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001219 SlotIndex Idx = enterIntvAtEnd(*MBB);
1220 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1221 (void)Idx;
1222 return;
1223 }
1224
1225 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1226 DEBUG(dbgs() << ", straight through.\n");
1227 //
1228 // |-----------| Live through.
1229 // ------------- Straight through, same intv, no interference.
1230 //
1231 selectIntv(IntvOut);
1232 useIntv(Start, Stop);
1233 return;
1234 }
1235
1236 // We cannot legally insert splits after LSP.
1237 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001238 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001239
1240 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1241 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
1242 DEBUG(dbgs() << ", switch avoiding interference.\n");
1243 //
1244 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
1245 // |-----------| Live through.
1246 // ------======= Switch intervals between interference.
1247 //
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001248 selectIntv(IntvOut);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001249 SlotIndex Idx;
1250 if (LeaveBefore && LeaveBefore < LSP) {
1251 Idx = enterIntvBefore(LeaveBefore);
1252 useIntv(Idx, Stop);
1253 } else {
1254 Idx = enterIntvAtEnd(*MBB);
1255 }
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001256 selectIntv(IntvIn);
1257 useIntv(Start, Idx);
1258 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1259 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1260 return;
1261 }
1262
1263 DEBUG(dbgs() << ", create local intv for interference.\n");
1264 //
1265 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1266 // |-----------| Live through.
1267 // ==---------== Switch intervals before/after interference.
1268 //
1269 assert(LeaveBefore <= EnterAfter && "Missed case");
1270
1271 selectIntv(IntvOut);
1272 SlotIndex Idx = enterIntvAfter(EnterAfter);
1273 useIntv(Idx, Stop);
1274 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1275
1276 selectIntv(IntvIn);
1277 Idx = leaveIntvBefore(LeaveBefore);
1278 useIntv(Start, Idx);
1279 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1280}
1281
1282
1283void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1284 unsigned IntvIn, SlotIndex LeaveBefore) {
1285 SlotIndex Start, Stop;
1286 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1287
1288 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001289 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001290 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1291 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1292
1293 assert(IntvIn && "Must have register in");
1294 assert(BI.LiveIn && "Must be live-in");
1295 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1296
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001297 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001298 DEBUG(dbgs() << " before interference.\n");
1299 //
1300 // <<< Interference after kill.
1301 // |---o---x | Killed in block.
1302 // ========= Use IntvIn everywhere.
1303 //
1304 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001305 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001306 return;
1307 }
1308
1309 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1310
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001311 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001312 //
1313 // <<< Possible interference after last use.
1314 // |---o---o---| Live-out on stack.
1315 // =========____ Leave IntvIn after last use.
1316 //
1317 // < Interference after last use.
1318 // |---o---o--o| Live-out on stack, late last use.
1319 // ============ Copy to stack after LSP, overlap IntvIn.
1320 // \_____ Stack interval is live-out.
1321 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001322 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001323 DEBUG(dbgs() << ", spill after last use before interference.\n");
1324 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001325 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001326 useIntv(Start, Idx);
1327 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1328 } else {
1329 DEBUG(dbgs() << ", spill before last split point.\n");
1330 selectIntv(IntvIn);
Jakob Stoklund Olesenaf4e40c2011-07-16 00:13:30 +00001331 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001332 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001333 useIntv(Start, Idx);
1334 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1335 }
1336 return;
1337 }
1338
1339 // The interference is overlapping somewhere we wanted to use IntvIn. That
1340 // means we need to create a local interval that can be allocated a
1341 // different register.
1342 unsigned LocalIntv = openIntv();
Matt Beaumont-Gayf9d7fb62011-07-16 04:18:47 +00001343 (void)LocalIntv;
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001344 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1345
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001346 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001347 //
1348 // <<<<<<< Interference overlapping uses.
1349 // |---o---o---| Live-out on stack.
1350 // =====----____ Leave IntvIn before interference, then spill.
1351 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001352 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001353 SlotIndex From = enterIntvBefore(LeaveBefore);
1354 useIntv(From, To);
1355 selectIntv(IntvIn);
1356 useIntv(Start, From);
1357 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1358 return;
1359 }
1360
1361 // <<<<<<< Interference overlapping uses.
1362 // |---o---o--o| Live-out on stack, late last use.
1363 // =====------- Copy to stack before LSP, overlap LocalIntv.
1364 // \_____ Stack interval is live-out.
1365 //
1366 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001367 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001368 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1369 useIntv(From, To);
1370 selectIntv(IntvIn);
1371 useIntv(Start, From);
1372 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1373}
1374
1375void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1376 unsigned IntvOut, SlotIndex EnterAfter) {
1377 SlotIndex Start, Stop;
1378 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1379
1380 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001381 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001382 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1383 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1384
1385 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1386
1387 assert(IntvOut && "Must have register out");
1388 assert(BI.LiveOut && "Must be live-out");
1389 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1390
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001391 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001392 DEBUG(dbgs() << " after interference.\n");
1393 //
1394 // >>>> Interference before def.
1395 // | o---o---| Defined in block.
1396 // ========= Use IntvOut everywhere.
1397 //
1398 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001399 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001400 return;
1401 }
1402
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001403 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001404 DEBUG(dbgs() << ", reload after interference.\n");
1405 //
1406 // >>>> Interference before def.
1407 // |---o---o---| Live-through, stack-in.
1408 // ____========= Enter IntvOut before first use.
1409 //
1410 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001411 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001412 useIntv(Idx, Stop);
1413 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1414 return;
1415 }
1416
1417 // The interference is overlapping somewhere we wanted to use IntvOut. That
1418 // means we need to create a local interval that can be allocated a
1419 // different register.
1420 DEBUG(dbgs() << ", interference overlaps uses.\n");
1421 //
1422 // >>>>>>> Interference overlapping uses.
1423 // |---o---o---| Live-through, stack-in.
1424 // ____---====== Create local interval for interference range.
1425 //
1426 selectIntv(IntvOut);
1427 SlotIndex Idx = enterIntvAfter(EnterAfter);
1428 useIntv(Idx, Stop);
1429 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1430
1431 openIntv();
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001432 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001433 useIntv(From, Idx);
1434}