blob: 5f7fdccfb6a054c6b8c66c312a24f9fdf33f2947 [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 Olesenc4c63382011-09-14 16:45:39 +000023#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
25#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];
65
66 // Compute split points on the first call. The pair is independent of the
67 // current live interval.
68 if (!LSP.first.isValid()) {
69 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
70 if (FirstTerm == MBB->end())
71 LSP.first = LIS.getMBBEndIdx(MBB);
72 else
73 LSP.first = LIS.getInstructionIndex(FirstTerm);
74
75 // If there is a landing pad successor, also find the call instruction.
76 if (!LPad)
77 return LSP.first;
78 // There may not be a call instruction (?) in which case we ignore LPad.
79 LSP.second = LSP.first;
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000080 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
81 I != E;) {
82 --I;
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000083 if (I->getDesc().isCall()) {
84 LSP.second = LIS.getInstructionIndex(I);
85 break;
86 }
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000087 }
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000088 }
89
90 // If CurLI is live into a landing pad successor, move the last split point
91 // back to the call that may throw.
Jakob Stoklund Olesen71d9e652011-04-05 23:43:16 +000092 if (LPad && LSP.second.isValid() && LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000093 return LSP.second;
94 else
95 return LSP.first;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000096}
97
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000098/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000099void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000100 assert(UseSlots.empty() && "Call clear first");
101
102 // First get all the defs from the interval values. This provides the correct
103 // slots for early clobbers.
104 for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(),
105 E = CurLI->vni_end(); I != E; ++I)
106 if (!(*I)->isPHIDef() && !(*I)->isUnused())
107 UseSlots.push_back((*I)->def);
108
109 // Get use slots form the use-def chain.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000110 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000111 for (MachineRegisterInfo::use_nodbg_iterator
112 I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E;
113 ++I)
114 if (!I.getOperand().isUndef())
115 UseSlots.push_back(LIS.getInstructionIndex(&*I).getDefIndex());
116
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000117 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000118
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000119 // Remove duplicates, keeping the smaller slot for each instruction.
120 // That is what we want for early clobbers.
121 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
122 SlotIndex::isSameInstr),
123 UseSlots.end());
124
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000125 // Compute per-live block info.
126 if (!calcLiveBlockInfo()) {
127 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola5b220212011-06-26 22:34:10 +0000128 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000129 DidRepairRange = true;
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +0000130 ++NumRepairs;
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000131 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
132 const_cast<LiveIntervals&>(LIS)
133 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000134 UseBlocks.clear();
135 ThroughBlocks.clear();
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000136 bool fixed = calcLiveBlockInfo();
137 (void)fixed;
138 assert(fixed && "Couldn't fix broken live interval");
139 }
140
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000141 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000142 << UseSlots.size() << " instrs in "
143 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000144 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000145}
146
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000147/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
148/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000149bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000150 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000151 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000152 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000153 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000154
155 LiveInterval::const_iterator LVI = CurLI->begin();
156 LiveInterval::const_iterator LVE = CurLI->end();
157
158 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
159 UseI = UseSlots.begin();
160 UseE = UseSlots.end();
161
162 // Loop over basic blocks where CurLI is live.
163 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
164 for (;;) {
165 BlockInfo BI;
166 BI.MBB = MFI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000167 SlotIndex Start, Stop;
168 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000169
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000170 // If the block contains no uses, the range must be live through. At one
Rafael Espindola5b220212011-06-26 22:34:10 +0000171 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000172 // mid-block.
173 if (UseI == UseE || *UseI >= Stop) {
174 ++NumThroughBlocks;
175 ThroughBlocks.set(BI.MBB->getNumber());
176 // The range shouldn't end mid-block if there are no uses. This shouldn't
177 // happen.
178 if (LVI->end < Stop)
179 return false;
180 } else {
181 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000182 BI.FirstInstr = *UseI;
183 assert(BI.FirstInstr >= Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000184 do ++UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000185 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000186 BI.LastInstr = UseI[-1];
187 assert(BI.LastInstr < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000188
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000189 // LVI is the first live segment overlapping MBB.
190 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000191
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000192 // When not live in, the first use should be a def.
193 if (!BI.LiveIn) {
194 assert(LVI->start == LVI->valno->def && "Dangling LiveRange start");
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000195 assert(LVI->start == BI.FirstInstr && "First instr should be a def");
196 BI.FirstDef = BI.FirstInstr;
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000197 }
198
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000199 // Look for gaps in the live range.
200 BI.LiveOut = true;
201 while (LVI->end < Stop) {
202 SlotIndex LastStop = LVI->end;
203 if (++LVI == LVE || LVI->start >= Stop) {
204 BI.LiveOut = false;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000205 BI.LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000206 break;
207 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000208
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000209 if (LastStop < LVI->start) {
210 // There is a gap in the live range. Create duplicate entries for the
211 // live-in snippet and the live-out snippet.
212 ++NumGapBlocks;
213
214 // Push the Live-in part.
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000215 BI.LiveOut = false;
216 UseBlocks.push_back(BI);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000217 UseBlocks.back().LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000218
219 // Set up BI for the live-out part.
220 BI.LiveIn = false;
221 BI.LiveOut = true;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000222 BI.FirstInstr = BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000223 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000224
225 // A LiveRange that starts in the middle of the block must be a def.
226 assert(LVI->start == LVI->valno->def && "Dangling LiveRange start");
227 if (!BI.FirstDef)
228 BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000229 }
230
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000231 UseBlocks.push_back(BI);
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000232
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000233 // LVI is now at LVE or LVI->end >= Stop.
234 if (LVI == LVE)
235 break;
236 }
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000237
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000238 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000239 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000240 break;
241
242 // Pick the next basic block.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000243 if (LVI->start < Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000244 ++MFI;
245 else
246 MFI = LIS.getMBBFromIndex(LVI->start);
247 }
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000248
249 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000250 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000251}
252
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000253unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
254 if (cli->empty())
255 return 0;
256 LiveInterval *li = const_cast<LiveInterval*>(cli);
257 LiveInterval::iterator LVI = li->begin();
258 LiveInterval::iterator LVE = li->end();
259 unsigned Count = 0;
260
261 // Loop over basic blocks where li is live.
262 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start);
263 SlotIndex Stop = LIS.getMBBEndIdx(MFI);
264 for (;;) {
265 ++Count;
266 LVI = li->advanceTo(LVI, Stop);
267 if (LVI == LVE)
268 return Count;
269 do {
270 ++MFI;
271 Stop = LIS.getMBBEndIdx(MFI);
272 } while (Stop <= LVI->start);
273 }
274}
275
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000276bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
277 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
278 const LiveInterval &Orig = LIS.getInterval(OrigReg);
279 assert(!Orig.empty() && "Splitting empty interval?");
280 LiveInterval::const_iterator I = Orig.find(Idx);
281
282 // Range containing Idx should begin at Idx.
283 if (I != Orig.end() && I->start <= Idx)
284 return I->start == Idx;
285
286 // Range does not contain Idx, previous must end at Idx.
287 return I != Orig.begin() && (--I)->end == Idx;
288}
289
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000290void SplitAnalysis::analyze(const LiveInterval *li) {
291 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000292 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000293 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000294}
295
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000296
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000297//===----------------------------------------------------------------------===//
298// Split Editor
299//===----------------------------------------------------------------------===//
300
301/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000302SplitEditor::SplitEditor(SplitAnalysis &sa,
303 LiveIntervals &lis,
304 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000305 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000306 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000307 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000308 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000309 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
310 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000311 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000312 OpenIdx(0),
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000313 SpillMode(SM_Partition),
Eric Christopher0f438112011-02-03 06:18:29 +0000314 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000315{}
316
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000317void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
318 Edit = &LRE;
319 SpillMode = SM;
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000320 OpenIdx = 0;
321 RegAssign.clear();
322 Values.clear();
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000323
324 // Reset the LiveRangeCalc instances needed for this spill mode.
325 LRCalc[0].reset(&VRM.getMachineFunction());
326 if (SpillMode)
327 LRCalc[1].reset(&VRM.getMachineFunction());
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000328
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000329 // We don't need an AliasAnalysis since we will only be performing
330 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000331 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000332}
333
Eric Christopher0f438112011-02-03 06:18:29 +0000334void SplitEditor::dump() const {
335 if (RegAssign.empty()) {
336 dbgs() << " empty\n";
337 return;
338 }
339
340 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
341 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
342 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000343}
344
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000345VNInfo *SplitEditor::defValue(unsigned RegIdx,
346 const VNInfo *ParentVNI,
347 SlotIndex Idx) {
348 assert(ParentVNI && "Mapping NULL value");
349 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000350 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
351 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000352
353 // Create a new value.
354 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
355
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000356 // Use insert for lookup, so we can add missing values with a second lookup.
357 std::pair<ValueMap::iterator, bool> InsP =
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000358 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id),
359 ValueForcePair(VNI, false)));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000360
361 // This was the first time (RegIdx, ParentVNI) was mapped.
362 // Keep it as a simple def without any liveness.
363 if (InsP.second)
364 return VNI;
365
366 // If the previous value was a simple mapping, add liveness for it now.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000367 if (VNInfo *OldVNI = InsP.first->second.getPointer()) {
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000368 SlotIndex Def = OldVNI->def;
369 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000370 // No longer a simple mapping. Switch to a complex, non-forced mapping.
371 InsP.first->second = ValueForcePair();
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000372 }
373
374 // This is a complex mapping, add liveness for VNI
375 SlotIndex Def = VNI->def;
376 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
377
378 return VNI;
379}
380
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000381void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI) {
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000382 assert(ParentVNI && "Mapping NULL value");
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000383 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)];
384 VNInfo *VNI = VFP.getPointer();
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000385
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000386 // ParentVNI was either unmapped or already complex mapped. Either way, just
387 // set the force bit.
388 if (!VNI) {
389 VFP.setInt(true);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000390 return;
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000391 }
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000392
393 // This was previously a single mapping. Make sure the old def is represented
394 // by a trivial live range.
395 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000396 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000397 // Mark as complex mapped, forced.
398 VFP = ValueForcePair(0, true);
Jakob Stoklund Olesene5a2e362011-09-13 18:05:29 +0000399}
400
Eric Christopher0f438112011-02-03 06:18:29 +0000401VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000402 VNInfo *ParentVNI,
403 SlotIndex UseIdx,
404 MachineBasicBlock &MBB,
405 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000406 MachineInstr *CopyMI = 0;
407 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000408 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000409
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000410 // We may be trying to avoid interference that ends at a deleted instruction,
411 // so always begin RegIdx 0 early and all others late.
412 bool Late = RegIdx != 0;
413
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000414 // Attempt cheap-as-a-copy rematerialization.
415 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000416 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000417 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI, Late);
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000418 ++NumRemats;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000419 } else {
420 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000421 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000422 .addReg(Edit->getReg());
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000423 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
424 .getDefIndex();
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000425 ++NumCopies;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000426 }
427
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000428 // Define the value in Reg.
429 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
430 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000431 return VNI;
432}
433
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000434/// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000435unsigned SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000436 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000437 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000438 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000439
440 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000441 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000442 Edit->create(LIS, VRM);
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000443 return OpenIdx;
444}
445
446void SplitEditor::selectIntv(unsigned Idx) {
447 assert(Idx != 0 && "Cannot select the complement interval");
448 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000449 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000450 OpenIdx = Idx;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000451}
452
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000453SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000454 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000455 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000456 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000457 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000458 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000459 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000460 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000461 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000462 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000463 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000464 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000465
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000466 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
467 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000468}
469
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000470SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
471 assert(OpenIdx && "openIntv not called before enterIntvAfter");
472 DEBUG(dbgs() << " enterIntvAfter " << Idx);
473 Idx = Idx.getBoundaryIndex();
474 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
475 if (!ParentVNI) {
476 DEBUG(dbgs() << ": not live\n");
477 return Idx;
478 }
479 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
480 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
481 assert(MI && "enterIntvAfter called with invalid index");
482
483 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
484 llvm::next(MachineBasicBlock::iterator(MI)));
485 return VNI->def;
486}
487
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000488SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000489 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000490 SlotIndex End = LIS.getMBBEndIdx(&MBB);
491 SlotIndex Last = End.getPrevSlot();
492 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000493 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000494 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000495 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000496 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000497 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000498 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000499 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000500 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000501 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000502 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000503 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000504}
505
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000506/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000507void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000508 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000509}
510
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000511void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000512 assert(OpenIdx && "openIntv not called before useIntv");
513 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
514 RegAssign.insert(Start, End, OpenIdx);
515 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000516}
517
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000518SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000519 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000520 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000521
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000522 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000523 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000524 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000525 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000526 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000527 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000528 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000529 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000530
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000531 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
532 assert(MI && "No instruction at index");
533 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
534 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000535 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000536}
537
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000538SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
539 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
540 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
541
542 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenfc479332011-07-18 18:47:13 +0000543 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000544 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000545 if (!ParentVNI) {
546 DEBUG(dbgs() << ": not live\n");
547 return Idx.getNextSlot();
548 }
549 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
550
551 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
552 assert(MI && "No instruction at index");
553 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
554 return VNI->def;
555}
556
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000557SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000558 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000559 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000560 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000561
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000562 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000563 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000564 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000565 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000566 }
567
Eric Christopher0f438112011-02-03 06:18:29 +0000568 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000569 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000570 RegAssign.insert(Start, VNI->def, OpenIdx);
571 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000572 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000573}
574
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000575void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
576 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000577 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
578 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000579 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000580 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
581 "Range cannot span basic blocks");
582
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000583 // The complement interval will be extended as needed by LRCalc.extend().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000584 if (ParentVNI)
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000585 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000586 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
587 RegAssign.insert(Start, End, OpenIdx);
588 DEBUG(dump());
589}
590
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000591//===----------------------------------------------------------------------===//
592// Spill modes
593//===----------------------------------------------------------------------===//
594
595void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) {
596 LiveInterval *LI = Edit->get(0);
597 DEBUG(dbgs() << "Removing " << Copies.size() << " back-copies.\n");
598 RegAssignMap::iterator AssignI;
599 AssignI.setMap(RegAssign);
600
601 for (unsigned i = 0, e = Copies.size(); i != e; ++i) {
602 VNInfo *VNI = Copies[i];
603 SlotIndex Def = VNI->def;
604 MachineInstr *MI = LIS.getInstructionFromIndex(Def);
605 assert(MI && "No instruction for back-copy");
606
607 MachineBasicBlock *MBB = MI->getParent();
608 MachineBasicBlock::iterator MBBI(MI);
609 bool AtBegin;
610 do AtBegin = MBBI == MBB->begin();
611 while (!AtBegin && (--MBBI)->isDebugValue());
612
613 DEBUG(dbgs() << "Removing " << Def << '\t' << *MI);
614 LI->removeValNo(VNI);
615 LIS.RemoveMachineInstrFromMaps(MI);
616 MI->eraseFromParent();
617
618 // Adjust RegAssign if a register assignment is killed at VNI->def. We
619 // want to avoid calculating the live range of the source register if
620 // possible.
621 AssignI.find(VNI->def.getPrevSlot());
622 if (!AssignI.valid() || AssignI.start() >= Def)
623 continue;
624 // If MI doesn't kill the assigned register, just leave it.
625 if (AssignI.stop() != Def)
626 continue;
627 unsigned RegIdx = AssignI.value();
628 if (AtBegin || !MBBI->readsVirtualRegister(Edit->getReg())) {
629 DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n');
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000630 forceRecompute(RegIdx, Edit->getParent().getVNInfoAt(Def));
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000631 } else {
632 SlotIndex Kill = LIS.getInstructionIndex(MBBI).getDefIndex();
633 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
634 AssignI.setStop(Kill);
635 }
636 }
637}
638
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000639MachineBasicBlock*
640SplitEditor::findShallowDominator(MachineBasicBlock *MBB,
641 MachineBasicBlock *DefMBB) {
642 if (MBB == DefMBB)
643 return MBB;
644 assert(MDT.dominates(DefMBB, MBB) && "MBB must be dominated by the def.");
645
646 const MachineLoopInfo &Loops = SA.Loops;
647 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
648 MachineDomTreeNode *DefDomNode = MDT[DefMBB];
649
650 // Best candidate so far.
651 MachineBasicBlock *BestMBB = MBB;
652 unsigned BestDepth = UINT_MAX;
653
654 for (;;) {
655 const MachineLoop *Loop = Loops.getLoopFor(MBB);
656
657 // MBB isn't in a loop, it doesn't get any better. All dominators have a
658 // higher frequency by definition.
659 if (!Loop) {
660 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
661 << MBB->getNumber() << " at depth 0\n");
662 return MBB;
663 }
664
665 // We'll never be able to exit the DefLoop.
666 if (Loop == DefLoop) {
667 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
668 << MBB->getNumber() << " in the same loop\n");
669 return MBB;
670 }
671
672 // Least busy dominator seen so far.
673 unsigned Depth = Loop->getLoopDepth();
674 if (Depth < BestDepth) {
675 BestMBB = MBB;
676 BestDepth = Depth;
677 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
678 << MBB->getNumber() << " at depth " << Depth << '\n');
679 }
680
681 // Leave loop by going to the immediate dominator of the loop header.
682 // This is a bigger stride than simply walking up the dominator tree.
683 MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom();
684
685 // Too far up the dominator tree?
686 if (!IDom || !MDT.dominates(DefDomNode, IDom))
687 return BestMBB;
688
689 MBB = IDom->getBlock();
690 }
691}
692
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000693void SplitEditor::hoistCopiesForSize() {
694 // Get the complement interval, always RegIdx 0.
695 LiveInterval *LI = Edit->get(0);
696 LiveInterval *Parent = &Edit->getParent();
697
698 // Track the nearest common dominator for all back-copies for each ParentVNI,
699 // indexed by ParentVNI->id.
700 typedef std::pair<MachineBasicBlock*, SlotIndex> DomPair;
701 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
702
703 // Find the nearest common dominator for parent values with multiple
704 // back-copies. If a single back-copy dominates, put it in DomPair.second.
705 for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end();
706 VI != VE; ++VI) {
707 VNInfo *VNI = *VI;
708 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
709 assert(ParentVNI && "Parent not live at complement def");
710
711 // Don't hoist remats. The complement is probably going to disappear
712 // completely anyway.
713 if (Edit->didRematerialize(ParentVNI))
714 continue;
715
716 MachineBasicBlock *ValMBB = LIS.getMBBFromIndex(VNI->def);
717 DomPair &Dom = NearestDom[ParentVNI->id];
718
719 // Keep directly defined parent values. This is either a PHI or an
720 // instruction in the complement range. All other copies of ParentVNI
721 // should be eliminated.
722 if (VNI->def == ParentVNI->def) {
723 DEBUG(dbgs() << "Direct complement def at " << VNI->def << '\n');
724 Dom = DomPair(ValMBB, VNI->def);
725 continue;
726 }
727 // Skip the singly mapped values. There is nothing to gain from hoisting a
728 // single back-copy.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000729 if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) {
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000730 DEBUG(dbgs() << "Single complement def at " << VNI->def << '\n');
731 continue;
732 }
733
734 if (!Dom.first) {
735 // First time we see ParentVNI. VNI dominates itself.
736 Dom = DomPair(ValMBB, VNI->def);
737 } else if (Dom.first == ValMBB) {
738 // Two defs in the same block. Pick the earlier def.
739 if (!Dom.second.isValid() || VNI->def < Dom.second)
740 Dom.second = VNI->def;
741 } else {
742 // Different basic blocks. Check if one dominates.
743 MachineBasicBlock *Near =
744 MDT.findNearestCommonDominator(Dom.first, ValMBB);
745 if (Near == ValMBB)
746 // Def ValMBB dominates.
747 Dom = DomPair(ValMBB, VNI->def);
748 else if (Near != Dom.first)
749 // None dominate. Hoist to common dominator, need new def.
750 Dom = DomPair(Near, SlotIndex());
751 }
752
753 DEBUG(dbgs() << "Multi-mapped complement " << VNI->id << '@' << VNI->def
754 << " for parent " << ParentVNI->id << '@' << ParentVNI->def
755 << " hoist to BB#" << Dom.first->getNumber() << ' '
756 << Dom.second << '\n');
757 }
758
759 // Insert the hoisted copies.
760 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
761 DomPair &Dom = NearestDom[i];
762 if (!Dom.first || Dom.second.isValid())
763 continue;
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000764 // This value needs a hoisted copy inserted at the end of Dom.first.
765 VNInfo *ParentVNI = Parent->getValNumInfo(i);
766 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(ParentVNI->def);
767 // Get a less loopy dominator than Dom.first.
768 Dom.first = findShallowDominator(Dom.first, DefMBB);
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000769 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
770 Dom.second =
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000771 defFromParent(0, ParentVNI, Last, *Dom.first,
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000772 LIS.getLastSplitPoint(Edit->getParent(), Dom.first))->def;
773 }
774
775 // Remove redundant back-copies that are now known to be dominated by another
776 // def with the same value.
777 SmallVector<VNInfo*, 8> BackCopies;
778 for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end();
779 VI != VE; ++VI) {
780 VNInfo *VNI = *VI;
781 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
782 const DomPair &Dom = NearestDom[ParentVNI->id];
783 if (!Dom.first || Dom.second == VNI->def)
784 continue;
785 BackCopies.push_back(VNI);
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000786 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000787 }
788 removeBackCopies(BackCopies);
789}
790
791
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000792/// transferValues - Transfer all possible values to the new live ranges.
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000793/// Values that were rematerialized are left alone, they need LRCalc.extend().
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000794bool SplitEditor::transferValues() {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000795 bool Skipped = false;
796 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000797 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
798 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000799 DEBUG(dbgs() << " blit " << *ParentI << ':');
800 VNInfo *ParentVNI = ParentI->valno;
801 // RegAssign has holes where RegIdx 0 should be used.
802 SlotIndex Start = ParentI->start;
803 AssignI.advanceTo(Start);
804 do {
805 unsigned RegIdx;
806 SlotIndex End = ParentI->end;
807 if (!AssignI.valid()) {
808 RegIdx = 0;
809 } else if (AssignI.start() <= Start) {
810 RegIdx = AssignI.value();
811 if (AssignI.stop() < End) {
812 End = AssignI.stop();
813 ++AssignI;
814 }
815 } else {
816 RegIdx = 0;
817 End = std::min(End, AssignI.start());
818 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000819
820 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000821 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000822 LiveInterval *LI = Edit->get(RegIdx);
823
824 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000825 ValueForcePair VFP = Values.lookup(std::make_pair(RegIdx, ParentVNI->id));
826 if (VNInfo *VNI = VFP.getPointer()) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000827 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000828 LI->addRange(LiveRange(Start, End, VNI));
829 Start = End;
830 continue;
831 }
832
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000833 // Skip values with forced recomputation.
834 if (VFP.getInt()) {
835 DEBUG(dbgs() << "(recalc)");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000836 Skipped = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000837 Start = End;
838 continue;
839 }
840
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000841 LiveRangeCalc &LRC = getLRCalc(RegIdx);
842
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000843 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
844 // so the live range is accurate. Add live-in blocks in [Start;End) to the
845 // LiveInBlocks.
846 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
847 SlotIndex BlockStart, BlockEnd;
848 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
849
850 // The first block may be live-in, or it may have its own def.
851 if (Start != BlockStart) {
Jakob Stoklund Olesenee5655d2011-09-13 16:47:56 +0000852 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000853 assert(VNI && "Missing def for complex mapped value");
854 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
855 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000856 if (BlockEnd <= End)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000857 LRC.setLiveOutValue(MBB, VNI);
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000858
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000859 // Skip to the next block for live-in.
860 ++MBB;
861 BlockStart = BlockEnd;
862 }
863
864 // Handle the live-in blocks covered by [Start;End).
865 assert(Start <= BlockStart && "Expected live-in block");
866 while (BlockStart < End) {
867 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
868 BlockEnd = LIS.getMBBEndIdx(MBB);
869 if (BlockStart == ParentVNI->def) {
870 // This block has the def of a parent PHI, so it isn't live-in.
871 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
Jakob Stoklund Olesenee5655d2011-09-13 16:47:56 +0000872 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000873 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000874 if (End >= BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000875 LRC.setLiveOutValue(MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000876 } else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000877 // This block needs a live-in value. The last block covered may not
878 // be live-out.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000879 if (End < BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000880 LRC.addLiveInBlock(LI, MDT[MBB], End);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000881 else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000882 // Live-through, and we don't know the value.
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000883 LRC.addLiveInBlock(LI, MDT[MBB]);
884 LRC.setLiveOutValue(MBB, 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
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000895 LRCalc[0].calculateValues(LIS.getSlotIndexes(), &MDT,
896 &LIS.getVNInfoAllocator());
897 if (SpillMode)
898 LRCalc[1].calculateValues(LIS.getSlotIndexes(), &MDT,
899 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000900
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000901 return Skipped;
902}
903
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000904void SplitEditor::extendPHIKillRanges() {
905 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000906 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
907 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000908 const VNInfo *PHIVNI = *I;
909 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
910 continue;
911 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000912 LiveInterval *LI = Edit->get(RegIdx);
913 LiveRangeCalc &LRC = getLRCalc(RegIdx);
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000914 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
915 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
916 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000917 SlotIndex End = LIS.getMBBEndIdx(*PI);
918 SlotIndex LastUse = End.getPrevSlot();
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000919 // The predecessor may not have a live-out value. That is OK, like an
920 // undef PHI operand.
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000921 if (Edit->getParent().liveAt(LastUse)) {
922 assert(RegAssign.lookup(LastUse) == RegIdx &&
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000923 "Different register assignment in phi predecessor");
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000924 LRC.extend(LI, End,
925 LIS.getSlotIndexes(), &MDT, &LIS.getVNInfoAllocator());
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000926 }
927 }
928 }
929}
930
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000931/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000932void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000933 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000934 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000935 MachineOperand &MO = RI.getOperand();
936 MachineInstr *MI = MO.getParent();
937 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000938 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000939 if (MI->isDebugValue()) {
940 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000941 MO.setReg(0);
942 continue;
943 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000944
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000945 // <undef> operands don't really read the register, so it doesn't matter
946 // which register we choose. When the use operand is tied to a def, we must
947 // use the same register as the def, so just do that always.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000948 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000949 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000950 Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000951
952 // Rewrite to the mapped register at Idx.
953 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000954 LiveInterval *LI = Edit->get(RegIdx);
955 MO.setReg(LI->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000956 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
957 << Idx << ':' << RegIdx << '\t' << *MI);
958
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000959 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen81d686e2011-07-24 20:33:23 +0000960 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000961 continue;
962
963 // Skip instructions that don't read Reg.
964 if (MO.isDef()) {
965 if (!MO.getSubReg() && !MO.isEarlyClobber())
966 continue;
967 // We may wan't to extend a live range for a partial redef, or for a use
968 // tied to an early clobber.
969 Idx = Idx.getPrevSlot();
970 if (!Edit->getParent().liveAt(Idx))
971 continue;
972 } else
973 Idx = Idx.getUseIndex();
974
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000975 getLRCalc(RegIdx).extend(LI, Idx.getNextSlot(), LIS.getSlotIndexes(),
976 &MDT, &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000977 }
978}
979
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000980void SplitEditor::deleteRematVictims() {
981 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000982 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
983 LiveInterval *LI = *I;
984 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
985 LII != LIE; ++LII) {
986 // Dead defs end at the store slot.
987 if (LII->end != LII->valno->def.getNextSlot())
988 continue;
989 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
990 assert(MI && "Missing instruction for dead def");
991 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000992
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000993 if (!MI->allDefsAreDead())
994 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000995
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000996 DEBUG(dbgs() << "All defs dead: " << *MI);
997 Dead.push_back(MI);
998 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000999 }
1000
1001 if (Dead.empty())
1002 return;
1003
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +00001004 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001005}
1006
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001007void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001008 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +00001009
Eric Christopher0f438112011-02-03 06:18:29 +00001010 // At this point, the live intervals in Edit contain VNInfos corresponding to
1011 // the inserted copies.
1012
1013 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001014 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
1015 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +00001016 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +00001017 if (ParentVNI->isUnused())
1018 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +00001019 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +00001020 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
1021 VNI->setIsPHIDef(ParentVNI->isPHIDef());
1022 VNI->setCopy(ParentVNI->getCopy());
1023
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +00001024 // Force rematted values to be recomputed everywhere.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001025 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001026 if (Edit->didRematerialize(ParentVNI))
1027 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +00001028 forceRecompute(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +00001029 }
1030
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +00001031 // Hoist back-copies to the complement interval when in spill mode.
1032 switch (SpillMode) {
1033 case SM_Partition:
1034 // Leave all back-copies as is.
1035 break;
1036 case SM_Size:
1037 hoistCopiesForSize();
1038 break;
1039 case SM_Speed:
1040 llvm_unreachable("Spill mode 'speed' not implemented yet");
1041 break;
1042 }
1043
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001044 // Transfer the simply mapped values, check if any are skipped.
1045 bool Skipped = transferValues();
1046 if (Skipped)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001047 extendPHIKillRanges();
1048 else
1049 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +00001050
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001051 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001052 rewriteAssigned(Skipped);
Eric Christopher0f438112011-02-03 06:18:29 +00001053
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001054 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001055 if (Skipped)
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001056 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001057
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +00001058 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001059 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001060 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001061
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001062 // Provide a reverse mapping from original indices to Edit ranges.
1063 if (LRMap) {
1064 LRMap->clear();
1065 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1066 LRMap->push_back(i);
1067 }
1068
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001069 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001070 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001071 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001072 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001073 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001074 unsigned NumComp = ConEQ.Classify(li);
1075 if (NumComp <= 1)
1076 continue;
1077 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
1078 SmallVector<LiveInterval*, 8> dups;
1079 dups.push_back(li);
Matt Beaumont-Gayae5fbee2011-04-21 19:46:23 +00001080 for (unsigned j = 1; j != NumComp; ++j)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +00001081 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +00001082 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001083 // The new intervals all map back to i.
1084 if (LRMap)
1085 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001086 }
1087
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +00001088 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +00001089 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001090
1091 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001092}
1093
1094
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001095//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001096// Single Block Splitting
1097//===----------------------------------------------------------------------===//
1098
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +00001099bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
1100 bool SingleInstrs) const {
1101 // Always split for multiple instructions.
1102 if (!BI.isOneInstr())
1103 return true;
1104 // Don't split for single instructions unless explicitly requested.
1105 if (!SingleInstrs)
1106 return false;
1107 // Splitting a live-through range always makes progress.
1108 if (BI.LiveIn && BI.LiveOut)
1109 return true;
1110 // No point in isolating a copy. It has no register class constraints.
1111 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
1112 return false;
1113 // Finally, don't isolate an end point that was created by earlier splits.
1114 return isOriginalEndpoint(BI.FirstInstr);
1115}
1116
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001117void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1118 openIntv();
1119 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001120 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001121 LastSplitPoint));
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001122 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
1123 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001124 } else {
1125 // The last use is after the last valid split point.
1126 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1127 useIntv(SegStart, SegStop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001128 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001129 }
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001130}
1131
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001132
1133//===----------------------------------------------------------------------===//
1134// Global Live Range Splitting Support
1135//===----------------------------------------------------------------------===//
1136
1137// These methods support a method of global live range splitting that uses a
1138// global algorithm to decide intervals for CFG edges. They will insert split
1139// points and color intervals in basic blocks while avoiding interference.
1140//
1141// Note that splitSingleBlock is also useful for blocks where both CFG edges
1142// are on the stack.
1143
1144void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
1145 unsigned IntvIn, SlotIndex LeaveBefore,
1146 unsigned IntvOut, SlotIndex EnterAfter){
1147 SlotIndex Start, Stop;
1148 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
1149
1150 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
1151 << ") intf " << LeaveBefore << '-' << EnterAfter
1152 << ", live-through " << IntvIn << " -> " << IntvOut);
1153
1154 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1155
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001156 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
1157 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
1158 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
1159
1160 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
1161
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001162 if (!IntvOut) {
1163 DEBUG(dbgs() << ", spill on entry.\n");
1164 //
1165 // <<<<<<<<< Possible LeaveBefore interference.
1166 // |-----------| Live through.
1167 // -____________ Spill on entry.
1168 //
1169 selectIntv(IntvIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001170 SlotIndex Idx = leaveIntvAtTop(*MBB);
1171 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1172 (void)Idx;
1173 return;
1174 }
1175
1176 if (!IntvIn) {
1177 DEBUG(dbgs() << ", reload on exit.\n");
1178 //
1179 // >>>>>>> Possible EnterAfter interference.
1180 // |-----------| Live through.
1181 // ___________-- Reload on exit.
1182 //
1183 selectIntv(IntvOut);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001184 SlotIndex Idx = enterIntvAtEnd(*MBB);
1185 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1186 (void)Idx;
1187 return;
1188 }
1189
1190 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1191 DEBUG(dbgs() << ", straight through.\n");
1192 //
1193 // |-----------| Live through.
1194 // ------------- Straight through, same intv, no interference.
1195 //
1196 selectIntv(IntvOut);
1197 useIntv(Start, Stop);
1198 return;
1199 }
1200
1201 // We cannot legally insert splits after LSP.
1202 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001203 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001204
1205 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1206 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
1207 DEBUG(dbgs() << ", switch avoiding interference.\n");
1208 //
1209 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
1210 // |-----------| Live through.
1211 // ------======= Switch intervals between interference.
1212 //
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001213 selectIntv(IntvOut);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001214 SlotIndex Idx;
1215 if (LeaveBefore && LeaveBefore < LSP) {
1216 Idx = enterIntvBefore(LeaveBefore);
1217 useIntv(Idx, Stop);
1218 } else {
1219 Idx = enterIntvAtEnd(*MBB);
1220 }
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001221 selectIntv(IntvIn);
1222 useIntv(Start, Idx);
1223 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1224 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1225 return;
1226 }
1227
1228 DEBUG(dbgs() << ", create local intv for interference.\n");
1229 //
1230 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1231 // |-----------| Live through.
1232 // ==---------== Switch intervals before/after interference.
1233 //
1234 assert(LeaveBefore <= EnterAfter && "Missed case");
1235
1236 selectIntv(IntvOut);
1237 SlotIndex Idx = enterIntvAfter(EnterAfter);
1238 useIntv(Idx, Stop);
1239 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1240
1241 selectIntv(IntvIn);
1242 Idx = leaveIntvBefore(LeaveBefore);
1243 useIntv(Start, Idx);
1244 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1245}
1246
1247
1248void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1249 unsigned IntvIn, SlotIndex LeaveBefore) {
1250 SlotIndex Start, Stop;
1251 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1252
1253 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001254 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001255 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1256 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1257
1258 assert(IntvIn && "Must have register in");
1259 assert(BI.LiveIn && "Must be live-in");
1260 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1261
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001262 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001263 DEBUG(dbgs() << " before interference.\n");
1264 //
1265 // <<< Interference after kill.
1266 // |---o---x | Killed in block.
1267 // ========= Use IntvIn everywhere.
1268 //
1269 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001270 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001271 return;
1272 }
1273
1274 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1275
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001276 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001277 //
1278 // <<< Possible interference after last use.
1279 // |---o---o---| Live-out on stack.
1280 // =========____ Leave IntvIn after last use.
1281 //
1282 // < Interference after last use.
1283 // |---o---o--o| Live-out on stack, late last use.
1284 // ============ Copy to stack after LSP, overlap IntvIn.
1285 // \_____ Stack interval is live-out.
1286 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001287 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001288 DEBUG(dbgs() << ", spill after last use before interference.\n");
1289 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001290 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001291 useIntv(Start, Idx);
1292 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1293 } else {
1294 DEBUG(dbgs() << ", spill before last split point.\n");
1295 selectIntv(IntvIn);
Jakob Stoklund Olesenaf4e40c2011-07-16 00:13:30 +00001296 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001297 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001298 useIntv(Start, Idx);
1299 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1300 }
1301 return;
1302 }
1303
1304 // The interference is overlapping somewhere we wanted to use IntvIn. That
1305 // means we need to create a local interval that can be allocated a
1306 // different register.
1307 unsigned LocalIntv = openIntv();
Matt Beaumont-Gayf9d7fb62011-07-16 04:18:47 +00001308 (void)LocalIntv;
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001309 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1310
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001311 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001312 //
1313 // <<<<<<< Interference overlapping uses.
1314 // |---o---o---| Live-out on stack.
1315 // =====----____ Leave IntvIn before interference, then spill.
1316 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001317 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001318 SlotIndex From = enterIntvBefore(LeaveBefore);
1319 useIntv(From, To);
1320 selectIntv(IntvIn);
1321 useIntv(Start, From);
1322 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1323 return;
1324 }
1325
1326 // <<<<<<< Interference overlapping uses.
1327 // |---o---o--o| Live-out on stack, late last use.
1328 // =====------- Copy to stack before LSP, overlap LocalIntv.
1329 // \_____ Stack interval is live-out.
1330 //
1331 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001332 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001333 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1334 useIntv(From, To);
1335 selectIntv(IntvIn);
1336 useIntv(Start, From);
1337 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1338}
1339
1340void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1341 unsigned IntvOut, SlotIndex EnterAfter) {
1342 SlotIndex Start, Stop;
1343 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
1344
1345 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001346 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001347 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1348 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1349
1350 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1351
1352 assert(IntvOut && "Must have register out");
1353 assert(BI.LiveOut && "Must be live-out");
1354 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1355
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001356 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001357 DEBUG(dbgs() << " after interference.\n");
1358 //
1359 // >>>> Interference before def.
1360 // | o---o---| Defined in block.
1361 // ========= Use IntvOut everywhere.
1362 //
1363 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001364 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001365 return;
1366 }
1367
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001368 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001369 DEBUG(dbgs() << ", reload after interference.\n");
1370 //
1371 // >>>> Interference before def.
1372 // |---o---o---| Live-through, stack-in.
1373 // ____========= Enter IntvOut before first use.
1374 //
1375 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001376 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001377 useIntv(Idx, Stop);
1378 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1379 return;
1380 }
1381
1382 // The interference is overlapping somewhere we wanted to use IntvOut. That
1383 // means we need to create a local interval that can be allocated a
1384 // different register.
1385 DEBUG(dbgs() << ", interference overlaps uses.\n");
1386 //
1387 // >>>>>>> Interference overlapping uses.
1388 // |---o---o---| Live-through, stack-in.
1389 // ____---====== Create local interval for interference range.
1390 //
1391 selectIntv(IntvOut);
1392 SlotIndex Idx = enterIntvAfter(EnterAfter);
1393 useIntv(Idx, Stop);
1394 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1395
1396 openIntv();
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001397 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001398 useIntv(From, Idx);
1399}