blob: feb3d3481b4f75ba20be728bcb765f2e089d78d6 [file] [log] [blame]
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001//===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the SplitAnalysis class as well as mutator functions for
11// live range splitting.
12//
13//===----------------------------------------------------------------------===//
14
Jakob Stoklund Olesen376dcbd2010-11-03 20:39:23 +000015#define DEBUG_TYPE "regalloc"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000016#include "SplitKit.h"
Jakob Stoklund Olesena17768f2010-10-14 23:49:52 +000017#include "LiveRangeEdit.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000018#include "VirtRegMap.h"
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000019#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000020#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +000021#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000028
29using namespace llvm;
30
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000031STATISTIC(NumFinished, "Number of splits finished");
32STATISTIC(NumSimple, "Number of splits that were simple");
33
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000034//===----------------------------------------------------------------------===//
35// Split Analysis
36//===----------------------------------------------------------------------===//
37
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000038SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000039 const LiveIntervals &lis,
40 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000041 : MF(vrm.getMachineFunction()),
42 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000043 LIS(lis),
44 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000045 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000046 CurLI(0),
47 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000048
49void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000050 UseSlots.clear();
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000051 UseBlocks.clear();
52 ThroughBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000053 CurLI = 0;
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +000054 DidRepairRange = false;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000055}
56
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000057SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
58 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
59 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
60 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
61
62 // Compute split points on the first call. The pair is independent of the
63 // current live interval.
64 if (!LSP.first.isValid()) {
65 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
66 if (FirstTerm == MBB->end())
67 LSP.first = LIS.getMBBEndIdx(MBB);
68 else
69 LSP.first = LIS.getInstructionIndex(FirstTerm);
70
71 // If there is a landing pad successor, also find the call instruction.
72 if (!LPad)
73 return LSP.first;
74 // There may not be a call instruction (?) in which case we ignore LPad.
75 LSP.second = LSP.first;
76 for (MachineBasicBlock::const_iterator I = FirstTerm, E = MBB->begin();
77 I != E; --I)
78 if (I->getDesc().isCall()) {
79 LSP.second = LIS.getInstructionIndex(I);
80 break;
81 }
82 }
83
84 // If CurLI is live into a landing pad successor, move the last split point
85 // back to the call that may throw.
Jakob Stoklund Olesen71d9e652011-04-05 23:43:16 +000086 if (LPad && LSP.second.isValid() && LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000087 return LSP.second;
88 else
89 return LSP.first;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000090}
91
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000092/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +000093void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +000094 assert(UseSlots.empty() && "Call clear first");
95
96 // First get all the defs from the interval values. This provides the correct
97 // slots for early clobbers.
98 for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(),
99 E = CurLI->vni_end(); I != E; ++I)
100 if (!(*I)->isPHIDef() && !(*I)->isUnused())
101 UseSlots.push_back((*I)->def);
102
103 // Get use slots form the use-def chain.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000104 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000105 for (MachineRegisterInfo::use_nodbg_iterator
106 I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E;
107 ++I)
108 if (!I.getOperand().isUndef())
109 UseSlots.push_back(LIS.getInstructionIndex(&*I).getDefIndex());
110
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000111 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000112
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000113 // Remove duplicates, keeping the smaller slot for each instruction.
114 // That is what we want for early clobbers.
115 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
116 SlotIndex::isSameInstr),
117 UseSlots.end());
118
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000119 // Compute per-live block info.
120 if (!calcLiveBlockInfo()) {
121 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
122 // I am looking at you, SimpleRegisterCoalescing!
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000123 DidRepairRange = true;
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000124 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
125 const_cast<LiveIntervals&>(LIS)
126 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000127 UseBlocks.clear();
128 ThroughBlocks.clear();
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000129 bool fixed = calcLiveBlockInfo();
130 (void)fixed;
131 assert(fixed && "Couldn't fix broken live interval");
132 }
133
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000134 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000135 << UseSlots.size() << " instrs in "
136 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000137 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000138}
139
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000140/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
141/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000142bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000143 ThroughBlocks.resize(MF.getNumBlockIDs());
144 NumThroughBlocks = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000145 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000146 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000147
148 LiveInterval::const_iterator LVI = CurLI->begin();
149 LiveInterval::const_iterator LVE = CurLI->end();
150
151 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
152 UseI = UseSlots.begin();
153 UseE = UseSlots.end();
154
155 // Loop over basic blocks where CurLI is live.
156 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
157 for (;;) {
158 BlockInfo BI;
159 BI.MBB = MFI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000160 SlotIndex Start, Stop;
161 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000162
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000163 // LVI is the first live segment overlapping MBB.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000164 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000165 if (!BI.LiveIn)
166 BI.Def = LVI->start;
167
168 // Find the first and last uses in the block.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000169 bool Uses = UseI != UseE && *UseI < Stop;
170 if (Uses) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000171 BI.FirstUse = *UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000172 assert(BI.FirstUse >= Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000173 do ++UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000174 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000175 BI.LastUse = UseI[-1];
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000176 assert(BI.LastUse < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000177 }
178
179 // Look for gaps in the live range.
180 bool hasGap = false;
181 BI.LiveOut = true;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000182 while (LVI->end < Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000183 SlotIndex LastStop = LVI->end;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000184 if (++LVI == LVE || LVI->start >= Stop) {
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000185 BI.Kill = LastStop;
186 BI.LiveOut = false;
187 break;
188 }
189 if (LastStop < LVI->start) {
190 hasGap = true;
191 BI.Kill = LastStop;
192 BI.Def = LVI->start;
193 }
194 }
195
196 // Don't set LiveThrough when the block has a gap.
197 BI.LiveThrough = !hasGap && BI.LiveIn && BI.LiveOut;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000198 if (Uses)
199 UseBlocks.push_back(BI);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000200 else {
201 ++NumThroughBlocks;
202 ThroughBlocks.set(BI.MBB->getNumber());
203 }
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000204 // FIXME: This should never happen. The live range stops or starts without a
205 // corresponding use. An earlier pass did something wrong.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000206 if (!BI.LiveThrough && !Uses)
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000207 return false;
208
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000209 // LVI is now at LVE or LVI->end >= Stop.
210 if (LVI == LVE)
211 break;
212
213 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000214 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000215 break;
216
217 // Pick the next basic block.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000218 if (LVI->start < Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000219 ++MFI;
220 else
221 MFI = LIS.getMBBFromIndex(LVI->start);
222 }
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000223 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000224}
225
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000226unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
227 if (cli->empty())
228 return 0;
229 LiveInterval *li = const_cast<LiveInterval*>(cli);
230 LiveInterval::iterator LVI = li->begin();
231 LiveInterval::iterator LVE = li->end();
232 unsigned Count = 0;
233
234 // Loop over basic blocks where li is live.
235 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start);
236 SlotIndex Stop = LIS.getMBBEndIdx(MFI);
237 for (;;) {
238 ++Count;
239 LVI = li->advanceTo(LVI, Stop);
240 if (LVI == LVE)
241 return Count;
242 do {
243 ++MFI;
244 Stop = LIS.getMBBEndIdx(MFI);
245 } while (Stop <= LVI->start);
246 }
247}
248
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000249bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
250 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
251 const LiveInterval &Orig = LIS.getInterval(OrigReg);
252 assert(!Orig.empty() && "Splitting empty interval?");
253 LiveInterval::const_iterator I = Orig.find(Idx);
254
255 // Range containing Idx should begin at Idx.
256 if (I != Orig.end() && I->start <= Idx)
257 return I->start == Idx;
258
259 // Range does not contain Idx, previous must end at Idx.
260 return I != Orig.begin() && (--I)->end == Idx;
261}
262
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000263void SplitAnalysis::analyze(const LiveInterval *li) {
264 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000265 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000266 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000267}
268
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000269
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000270//===----------------------------------------------------------------------===//
271// Split Editor
272//===----------------------------------------------------------------------===//
273
274/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000275SplitEditor::SplitEditor(SplitAnalysis &sa,
276 LiveIntervals &lis,
277 VirtRegMap &vrm,
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000278 MachineDominatorTree &mdt)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000279 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000280 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000281 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000282 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
283 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000284 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000285 OpenIdx(0),
286 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000287{}
288
289void SplitEditor::reset(LiveRangeEdit &lre) {
290 Edit = &lre;
291 OpenIdx = 0;
292 RegAssign.clear();
293 Values.clear();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000294
295 // We don't need to clear LiveOutCache, only LiveOutSeen entries are read.
296 LiveOutSeen.clear();
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000297
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000298 // We don't need an AliasAnalysis since we will only be performing
299 // cheap-as-a-copy remats anyway.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000300 Edit->anyRematerializable(LIS, TII, 0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000301}
302
Eric Christopher0f438112011-02-03 06:18:29 +0000303void SplitEditor::dump() const {
304 if (RegAssign.empty()) {
305 dbgs() << " empty\n";
306 return;
307 }
308
309 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
310 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
311 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000312}
313
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000314VNInfo *SplitEditor::defValue(unsigned RegIdx,
315 const VNInfo *ParentVNI,
316 SlotIndex Idx) {
317 assert(ParentVNI && "Mapping NULL value");
318 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000319 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
320 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000321
322 // Create a new value.
323 VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
324
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000325 // Use insert for lookup, so we can add missing values with a second lookup.
326 std::pair<ValueMap::iterator, bool> InsP =
327 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
328
329 // This was the first time (RegIdx, ParentVNI) was mapped.
330 // Keep it as a simple def without any liveness.
331 if (InsP.second)
332 return VNI;
333
334 // If the previous value was a simple mapping, add liveness for it now.
335 if (VNInfo *OldVNI = InsP.first->second) {
336 SlotIndex Def = OldVNI->def;
337 LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
338 // No longer a simple mapping.
339 InsP.first->second = 0;
340 }
341
342 // This is a complex mapping, add liveness for VNI
343 SlotIndex Def = VNI->def;
344 LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
345
346 return VNI;
347}
348
349void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
350 assert(ParentVNI && "Mapping NULL value");
351 VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
352
353 // ParentVNI was either unmapped or already complex mapped. Either way.
354 if (!VNI)
355 return;
356
357 // This was previously a single mapping. Make sure the old def is represented
358 // by a trivial live range.
359 SlotIndex Def = VNI->def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000360 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000361 VNI = 0;
362}
363
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000364// extendRange - Extend the live range to reach Idx.
365// Potentially create phi-def values.
366void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) {
367 assert(Idx.isValid() && "Invalid SlotIndex");
368 MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
369 assert(IdxMBB && "No MBB at Idx");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000370 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000371
372 // Is there a def in the same MBB we can extend?
373 if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx))
374 return;
375
376 // Now for the fun part. We know that ParentVNI potentially has multiple defs,
377 // and we may need to create even more phi-defs to preserve VNInfo SSA form.
378 // Perform a search for all predecessor blocks where we know the dominating
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000379 // VNInfo.
380 VNInfo *VNI = findReachingDefs(LI, IdxMBB, Idx.getNextSlot());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000381
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000382 // When there were multiple different values, we may need new PHIs.
383 if (!VNI)
384 return updateSSA();
385
386 // Poor man's SSA update for the single-value case.
387 LiveOutPair LOP(VNI, MDT[LIS.getMBBFromIndex(VNI->def)]);
388 for (SmallVectorImpl<LiveInBlock>::iterator I = LiveInBlocks.begin(),
389 E = LiveInBlocks.end(); I != E; ++I) {
390 MachineBasicBlock *MBB = I->DomNode->getBlock();
391 SlotIndex Start = LIS.getMBBStartIdx(MBB);
392 if (I->Kill.isValid())
393 LI->addRange(LiveRange(Start, I->Kill, VNI));
394 else {
395 LiveOutCache[MBB] = LOP;
396 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
397 }
398 }
399}
400
401/// findReachingDefs - Search the CFG for known live-out values.
402/// Add required live-in blocks to LiveInBlocks.
403VNInfo *SplitEditor::findReachingDefs(LiveInterval *LI,
404 MachineBasicBlock *KillMBB,
405 SlotIndex Kill) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000406 // Initialize the live-out cache the first time it is needed.
407 if (LiveOutSeen.empty()) {
408 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
409 LiveOutSeen.resize(N);
410 LiveOutCache.resize(N);
411 }
412
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000413 // Blocks where LI should be live-in.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000414 SmallVector<MachineBasicBlock*, 16> WorkList(1, KillMBB);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000415
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000416 // Remember if we have seen more than one value.
417 bool UniqueVNI = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000418 VNInfo *TheVNI = 0;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000419
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000420 // Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000421 for (unsigned i = 0; i != WorkList.size(); ++i) {
422 MachineBasicBlock *MBB = WorkList[i];
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000423 assert(!MBB->pred_empty() && "Value live-in to entry block?");
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000424 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
425 PE = MBB->pred_end(); PI != PE; ++PI) {
426 MachineBasicBlock *Pred = *PI;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000427 LiveOutPair &LOP = LiveOutCache[Pred];
428
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000429 // Is this a known live-out block?
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000430 if (LiveOutSeen.test(Pred->getNumber())) {
431 if (VNInfo *VNI = LOP.first) {
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000432 if (TheVNI && TheVNI != VNI)
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000433 UniqueVNI = false;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000434 TheVNI = VNI;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000435 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000436 continue;
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000437 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000438
439 // First time. LOP is garbage and must be cleared below.
440 LiveOutSeen.set(Pred->getNumber());
441
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000442 // Does Pred provide a live-out value?
443 SlotIndex Start, Last;
444 tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred);
445 Last = Last.getPrevSlot();
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000446 VNInfo *VNI = LI->extendInBlock(Start, Last);
447 LOP.first = VNI;
448 if (VNI) {
449 LOP.second = MDT[LIS.getMBBFromIndex(VNI->def)];
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000450 if (TheVNI && TheVNI != VNI)
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000451 UniqueVNI = false;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000452 TheVNI = VNI;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000453 continue;
454 }
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000455 LOP.second = 0;
456
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000457 // No, we need a live-in value for Pred as well
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000458 if (Pred != KillMBB)
459 WorkList.push_back(Pred);
Jakob Stoklund Olesen87017682011-03-03 01:29:10 +0000460 else
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000461 // Loopback to KillMBB, so value is really live through.
462 Kill = SlotIndex();
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000463 }
464 }
465
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000466 // Transfer WorkList to LiveInBlocks in reverse order.
467 // This ordering works best with updateSSA().
468 LiveInBlocks.clear();
469 LiveInBlocks.reserve(WorkList.size());
470 while(!WorkList.empty())
471 LiveInBlocks.push_back(MDT[WorkList.pop_back_val()]);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000472
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000473 // The kill block may not be live-through.
474 assert(LiveInBlocks.back().DomNode->getBlock() == KillMBB);
475 LiveInBlocks.back().Kill = Kill;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000476
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000477 return UniqueVNI ? TheVNI : 0;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000478}
479
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000480void SplitEditor::updateSSA() {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000481 // This is essentially the same iterative algorithm that SSAUpdater uses,
482 // except we already have a dominator tree, so we don't have to recompute it.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000483 unsigned Changes;
484 do {
485 Changes = 0;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000486 // Propagate live-out values down the dominator tree, inserting phi-defs
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000487 // when necessary.
488 for (SmallVectorImpl<LiveInBlock>::iterator I = LiveInBlocks.begin(),
489 E = LiveInBlocks.end(); I != E; ++I) {
490 MachineDomTreeNode *Node = I->DomNode;
491 // Skip block if the live-in value has already been determined.
492 if (!Node)
493 continue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000494 MachineBasicBlock *MBB = Node->getBlock();
495 MachineDomTreeNode *IDom = Node->getIDom();
496 LiveOutPair IDomValue;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000497
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000498 // We need a live-in value to a block with no immediate dominator?
499 // This is probably an unreachable block that has survived somehow.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000500 bool needPHI = !IDom || !LiveOutSeen.test(IDom->getBlock()->getNumber());
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000501
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000502 // IDom dominates all of our predecessors, but it may not be their
503 // immediate dominator. Check if any of them have live-out values that are
504 // properly dominated by IDom. If so, we need a phi-def here.
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000505 if (!needPHI) {
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000506 IDomValue = LiveOutCache[IDom->getBlock()];
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000507 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
508 PE = MBB->pred_end(); PI != PE; ++PI) {
509 LiveOutPair Value = LiveOutCache[*PI];
510 if (!Value.first || Value.first == IDomValue.first)
511 continue;
512 // This predecessor is carrying something other than IDomValue.
513 // It could be because IDomValue hasn't propagated yet, or it could be
514 // because MBB is in the dominance frontier of that value.
515 if (MDT.dominates(IDom, Value.second)) {
516 needPHI = true;
517 break;
518 }
519 }
520 }
521
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000522 // The value may be live-through even if Kill is set, as can happen when
523 // we are called from extendRange. In that case LiveOutSeen is true, and
524 // LiveOutCache indicates a foreign or missing value.
525 LiveOutPair &LOP = LiveOutCache[MBB];
526
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000527 // Create a phi-def if required.
528 if (needPHI) {
529 ++Changes;
530 SlotIndex Start = LIS.getMBBStartIdx(MBB);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000531 unsigned RegIdx = RegAssign.lookup(Start);
532 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000533 VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
534 VNI->setIsPHIDef(true);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000535 I->Value = VNI;
536 // This block is done, we know the final value.
537 I->DomNode = 0;
538 if (I->Kill.isValid())
539 LI->addRange(LiveRange(Start, I->Kill, VNI));
540 else {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000541 LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000542 LOP = LiveOutPair(VNI, Node);
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000543 }
544 } else if (IDomValue.first) {
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000545 // No phi-def here. Remember incoming value.
546 I->Value = IDomValue.first;
547 if (I->Kill.isValid())
548 continue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000549 // Propagate IDomValue if needed:
550 // MBB is live-out and doesn't define its own value.
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000551 if (LOP.second != Node && LOP.first != IDomValue.first) {
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000552 ++Changes;
Jakob Stoklund Olesen13ba2da2011-03-04 00:15:36 +0000553 LOP = IDomValue;
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000554 }
555 }
556 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000557 } while (Changes);
558
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000559 // The values in LiveInBlocks are now accurate. No more phi-defs are needed
560 // for these blocks, so we can color the live ranges.
561 for (SmallVectorImpl<LiveInBlock>::iterator I = LiveInBlocks.begin(),
562 E = LiveInBlocks.end(); I != E; ++I) {
563 if (!I->DomNode)
564 continue;
565 assert(I->Value && "No live-in value found");
566 MachineBasicBlock *MBB = I->DomNode->getBlock();
567 SlotIndex Start = LIS.getMBBStartIdx(MBB);
568 unsigned RegIdx = RegAssign.lookup(Start);
569 LiveInterval *LI = Edit->get(RegIdx);
570 LI->addRange(LiveRange(Start, I->Kill.isValid() ?
571 I->Kill : LIS.getMBBEndIdx(MBB), I->Value));
572 }
Jakob Stoklund Olesen1c38ba62011-03-02 01:59:34 +0000573}
574
Eric Christopher0f438112011-02-03 06:18:29 +0000575VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000576 VNInfo *ParentVNI,
577 SlotIndex UseIdx,
578 MachineBasicBlock &MBB,
579 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000580 MachineInstr *CopyMI = 0;
581 SlotIndex Def;
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000582 LiveInterval *LI = Edit->get(RegIdx);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000583
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000584 // We may be trying to avoid interference that ends at a deleted instruction,
585 // so always begin RegIdx 0 early and all others late.
586 bool Late = RegIdx != 0;
587
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000588 // Attempt cheap-as-a-copy rematerialization.
589 LiveRangeEdit::Remat RM(ParentVNI);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000590 if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) {
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000591 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI, Late);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000592 } else {
593 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000594 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000595 .addReg(Edit->getReg());
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000596 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
597 .getDefIndex();
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000598 }
599
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000600 // Define the value in Reg.
601 VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
602 VNI->setCopy(CopyMI);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000603 return VNI;
604}
605
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000606/// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000607unsigned SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000608 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000609 if (Edit->empty())
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000610 Edit->create(LIS, VRM);
Eric Christopher0f438112011-02-03 06:18:29 +0000611
612 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000613 OpenIdx = Edit->size();
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000614 Edit->create(LIS, VRM);
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000615 return OpenIdx;
616}
617
618void SplitEditor::selectIntv(unsigned Idx) {
619 assert(Idx != 0 && "Cannot select the complement interval");
620 assert(Idx < Edit->size() && "Can only select previously opened interval");
621 OpenIdx = Idx;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000622}
623
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000624SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000625 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000626 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000627 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000628 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000629 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000630 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000631 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000632 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000633 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000634 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000635 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000636
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000637 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
638 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000639}
640
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000641SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000642 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000643 SlotIndex End = LIS.getMBBEndIdx(&MBB);
644 SlotIndex Last = End.getPrevSlot();
645 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000646 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000647 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000648 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000649 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000650 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000651 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000652 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000653 LIS.getLastSplitPoint(Edit->getParent(), &MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000654 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000655 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000656 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000657}
658
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000659/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000660void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000661 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000662}
663
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000664void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000665 assert(OpenIdx && "openIntv not called before useIntv");
666 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
667 RegAssign.insert(Start, End, OpenIdx);
668 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000669}
670
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000671SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000672 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000673 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000674
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000675 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000676 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000677 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000678 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000679 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000680 return Idx.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000681 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000682 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000683
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000684 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
685 assert(MI && "No instruction at index");
686 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
687 llvm::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000688 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000689}
690
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000691SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
692 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
693 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
694
695 // The interval must be live into the instruction at Idx.
696 Idx = Idx.getBoundaryIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000697 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000698 if (!ParentVNI) {
699 DEBUG(dbgs() << ": not live\n");
700 return Idx.getNextSlot();
701 }
702 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
703
704 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
705 assert(MI && "No instruction at index");
706 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
707 return VNI->def;
708}
709
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000710SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000711 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000712 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000713 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000714
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000715 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000716 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000717 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000718 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000719 }
720
Eric Christopher0f438112011-02-03 06:18:29 +0000721 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000722 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000723 RegAssign.insert(Start, VNI->def, OpenIdx);
724 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000725 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000726}
727
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000728void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
729 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000730 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
731 assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000732 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000733 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
734 "Range cannot span basic blocks");
735
Jakob Stoklund Olesend3fdaeb2011-03-02 00:49:28 +0000736 // The complement interval will be extended as needed by extendRange().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000737 if (ParentVNI)
738 markComplexMapped(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000739 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
740 RegAssign.insert(Start, End, OpenIdx);
741 DEBUG(dump());
742}
743
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000744/// transferValues - Transfer all possible values to the new live ranges.
745/// Values that were rematerialized are left alone, they need extendRange().
746bool SplitEditor::transferValues() {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000747 bool Skipped = false;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000748 LiveInBlocks.clear();
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000749 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000750 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
751 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000752 DEBUG(dbgs() << " blit " << *ParentI << ':');
753 VNInfo *ParentVNI = ParentI->valno;
754 // RegAssign has holes where RegIdx 0 should be used.
755 SlotIndex Start = ParentI->start;
756 AssignI.advanceTo(Start);
757 do {
758 unsigned RegIdx;
759 SlotIndex End = ParentI->end;
760 if (!AssignI.valid()) {
761 RegIdx = 0;
762 } else if (AssignI.start() <= Start) {
763 RegIdx = AssignI.value();
764 if (AssignI.stop() < End) {
765 End = AssignI.stop();
766 ++AssignI;
767 }
768 } else {
769 RegIdx = 0;
770 End = std::min(End, AssignI.start());
771 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000772
773 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000774 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000775 LiveInterval *LI = Edit->get(RegIdx);
776
777 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000778 if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) {
779 DEBUG(dbgs() << ':' << VNI->id);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000780 LI->addRange(LiveRange(Start, End, VNI));
781 Start = End;
782 continue;
783 }
784
785 // Skip rematerialized values, we need to use extendRange() and
786 // extendPHIKillRanges() to completely recompute the live ranges.
787 if (Edit->didRematerialize(ParentVNI)) {
788 DEBUG(dbgs() << "(remat)");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000789 Skipped = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000790 Start = End;
791 continue;
792 }
793
794 // Initialize the live-out cache the first time it is needed.
795 if (LiveOutSeen.empty()) {
796 unsigned N = VRM.getMachineFunction().getNumBlockIDs();
797 LiveOutSeen.resize(N);
798 LiveOutCache.resize(N);
799 }
800
801 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
802 // so the live range is accurate. Add live-in blocks in [Start;End) to the
803 // LiveInBlocks.
804 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
805 SlotIndex BlockStart, BlockEnd;
806 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
807
808 // The first block may be live-in, or it may have its own def.
809 if (Start != BlockStart) {
810 VNInfo *VNI = LI->extendInBlock(BlockStart,
811 std::min(BlockEnd, End).getPrevSlot());
812 assert(VNI && "Missing def for complex mapped value");
813 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
814 // MBB has its own def. Is it also live-out?
815 if (BlockEnd <= End) {
816 LiveOutSeen.set(MBB->getNumber());
817 LiveOutCache[MBB] = LiveOutPair(VNI, MDT[MBB]);
818 }
819 // Skip to the next block for live-in.
820 ++MBB;
821 BlockStart = BlockEnd;
822 }
823
824 // Handle the live-in blocks covered by [Start;End).
825 assert(Start <= BlockStart && "Expected live-in block");
826 while (BlockStart < End) {
827 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
828 BlockEnd = LIS.getMBBEndIdx(MBB);
829 if (BlockStart == ParentVNI->def) {
830 // This block has the def of a parent PHI, so it isn't live-in.
831 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
832 VNInfo *VNI = LI->extendInBlock(BlockStart,
833 std::min(BlockEnd, End).getPrevSlot());
834 assert(VNI && "Missing def for complex mapped parent PHI");
835 if (End >= BlockEnd) {
836 // Live-out as well.
837 LiveOutSeen.set(MBB->getNumber());
838 LiveOutCache[MBB] = LiveOutPair(VNI, MDT[MBB]);
839 }
840 } else {
841 // This block needs a live-in value.
842 LiveInBlocks.push_back(MDT[MBB]);
843 // The last block covered may not be live-out.
844 if (End < BlockEnd)
845 LiveInBlocks.back().Kill = End;
846 else {
847 // Live-out, but we need updateSSA to tell us the value.
848 LiveOutSeen.set(MBB->getNumber());
Francois Pichetcbc5f402011-04-16 14:20:39 +0000849 LiveOutCache[MBB] = LiveOutPair((VNInfo*)0,
850 (MachineDomTreeNode*)0);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000851 }
852 }
853 BlockStart = BlockEnd;
854 ++MBB;
855 }
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000856 Start = End;
857 } while (Start != ParentI->end);
858 DEBUG(dbgs() << '\n');
859 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000860
861 if (!LiveInBlocks.empty())
862 updateSSA();
863
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000864 return Skipped;
865}
866
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000867void SplitEditor::extendPHIKillRanges() {
868 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000869 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
870 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000871 const VNInfo *PHIVNI = *I;
872 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
873 continue;
874 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
875 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
876 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
877 PE = MBB->pred_end(); PI != PE; ++PI) {
878 SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
879 // The predecessor may not have a live-out value. That is OK, like an
880 // undef PHI operand.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000881 if (Edit->getParent().liveAt(End)) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000882 assert(RegAssign.lookup(End) == RegIdx &&
883 "Different register assignment in phi predecessor");
884 extendRange(RegIdx, End);
885 }
886 }
887 }
888}
889
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000890/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000891void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000892 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000893 RE = MRI.reg_end(); RI != RE;) {
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000894 MachineOperand &MO = RI.getOperand();
895 MachineInstr *MI = MO.getParent();
896 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000897 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000898 if (MI->isDebugValue()) {
899 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000900 MO.setReg(0);
901 continue;
902 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000903
904 // <undef> operands don't really read the register, so just assign them to
905 // the complement.
906 if (MO.isUse() && MO.isUndef()) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000907 MO.setReg(Edit->get(0)->reg);
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000908 continue;
909 }
910
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000911 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000912 if (MO.isDef())
913 Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex();
Eric Christopher0f438112011-02-03 06:18:29 +0000914
915 // Rewrite to the mapped register at Idx.
916 unsigned RegIdx = RegAssign.lookup(Idx);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000917 MO.setReg(Edit->get(RegIdx)->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000918 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
919 << Idx << ':' << RegIdx << '\t' << *MI);
920
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000921 // Extend liveness to Idx if the instruction reads reg.
922 if (!ExtendRanges)
923 continue;
924
925 // Skip instructions that don't read Reg.
926 if (MO.isDef()) {
927 if (!MO.getSubReg() && !MO.isEarlyClobber())
928 continue;
929 // We may wan't to extend a live range for a partial redef, or for a use
930 // tied to an early clobber.
931 Idx = Idx.getPrevSlot();
932 if (!Edit->getParent().liveAt(Idx))
933 continue;
934 } else
935 Idx = Idx.getUseIndex();
936
937 extendRange(RegIdx, Idx);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000938 }
939}
940
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000941void SplitEditor::deleteRematVictims() {
942 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000943 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
944 LiveInterval *LI = *I;
945 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
946 LII != LIE; ++LII) {
947 // Dead defs end at the store slot.
948 if (LII->end != LII->valno->def.getNextSlot())
949 continue;
950 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
951 assert(MI && "Missing instruction for dead def");
952 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000953
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000954 if (!MI->allDefsAreDead())
955 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000956
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +0000957 DEBUG(dbgs() << "All defs dead: " << *MI);
958 Dead.push_back(MI);
959 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000960 }
961
962 if (Dead.empty())
963 return;
964
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000965 Edit->eliminateDeadDefs(Dead, LIS, VRM, TII);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +0000966}
967
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +0000968void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000969 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +0000970
Eric Christopher0f438112011-02-03 06:18:29 +0000971 // At this point, the live intervals in Edit contain VNInfos corresponding to
972 // the inserted copies.
973
974 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000975 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
976 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +0000977 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +0000978 if (ParentVNI->isUnused())
979 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000980 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +0000981 VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def);
982 VNI->setIsPHIDef(ParentVNI->isPHIDef());
983 VNI->setCopy(ParentVNI->getCopy());
984
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000985 // Mark rematted values as complex everywhere to force liveness computation.
986 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000987 if (Edit->didRematerialize(ParentVNI))
988 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000989 markComplexMapped(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +0000990 }
991
992#ifndef NDEBUG
993 // Every new interval must have a def by now, otherwise the split is bogus.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000994 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Eric Christopher0f438112011-02-03 06:18:29 +0000995 assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
996#endif
997
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000998 // Transfer the simply mapped values, check if any are skipped.
999 bool Skipped = transferValues();
1000 if (Skipped)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001001 extendPHIKillRanges();
1002 else
1003 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +00001004
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001005 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001006 rewriteAssigned(Skipped);
Eric Christopher0f438112011-02-03 06:18:29 +00001007
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001008 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001009 if (Skipped)
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001010 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001011
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +00001012 // Get rid of unused values and set phi-kill flags.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001013 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I)
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001014 (*I)->RenumberValues(LIS);
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001015
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001016 // Provide a reverse mapping from original indices to Edit ranges.
1017 if (LRMap) {
1018 LRMap->clear();
1019 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1020 LRMap->push_back(i);
1021 }
1022
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001023 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001024 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001025 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001026 // Don't use iterators, they are invalidated by create() below.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001027 LiveInterval *li = Edit->get(i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001028 unsigned NumComp = ConEQ.Classify(li);
1029 if (NumComp <= 1)
1030 continue;
1031 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
1032 SmallVector<LiveInterval*, 8> dups;
1033 dups.push_back(li);
Matt Beaumont-Gayae5fbee2011-04-21 19:46:23 +00001034 for (unsigned j = 1; j != NumComp; ++j)
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +00001035 dups.push_back(&Edit->create(LIS, VRM));
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +00001036 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001037 // The new intervals all map back to i.
1038 if (LRMap)
1039 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001040 }
1041
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +00001042 // Calculate spill weight and allocation hints for new intervals.
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +00001043 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), LIS, SA.Loops);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001044
1045 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001046}
1047
1048
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001049//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001050// Single Block Splitting
1051//===----------------------------------------------------------------------===//
1052
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001053/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
1054/// may be an advantage to split CurLI for the duration of the block.
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +00001055bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001056 // If CurLI is local to one block, there is no point to splitting it.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001057 if (UseBlocks.size() <= 1)
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +00001058 return false;
1059 // Add blocks with multiple uses.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001060 for (unsigned i = 0, e = UseBlocks.size(); i != e; ++i) {
1061 const BlockInfo &BI = UseBlocks[i];
1062 if (BI.FirstUse == BI.LastUse)
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +00001063 continue;
1064 Blocks.insert(BI.MBB);
1065 }
Jakob Stoklund Olesen2bfb3242010-10-22 22:48:56 +00001066 return !Blocks.empty();
1067}
1068
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001069void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1070 openIntv();
1071 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
1072 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstUse,
1073 LastSplitPoint));
1074 if (!BI.LiveOut || BI.LastUse < LastSplitPoint) {
1075 useIntv(SegStart, leaveIntvAfter(BI.LastUse));
1076 } else {
1077 // The last use is after the last valid split point.
1078 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1079 useIntv(SegStart, SegStop);
1080 overlapIntv(SegStop, BI.LastUse);
1081 }
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001082}
1083
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001084/// splitSingleBlocks - Split CurLI into a separate live interval inside each
Jakob Stoklund Olesen57d0f2d2010-10-05 22:19:33 +00001085/// basic block in Blocks.
1086void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
Jakob Stoklund Olesene1f543f2010-08-12 18:50:55 +00001087 DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001088 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA.getUseBlocks();
1089 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1090 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001091 if (Blocks.count(BI.MBB))
1092 splitSingleBlock(BI);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001093 }
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001094 finish();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001095}