blob: 16fe9790105f4a0463780b9e9e9eeda29314c801 [file] [log] [blame]
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001//===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the SplitAnalysis class as well as mutator functions for
11// live range splitting.
12//
13//===----------------------------------------------------------------------===//
14
Jakob Stoklund Olesen376dcbd2010-11-03 20:39:23 +000015#define DEBUG_TYPE "regalloc"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000016#include "SplitKit.h"
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000017#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000018#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper789d5d82012-04-02 22:44:18 +000019#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +000020#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +000022#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen1ead68d2012-11-28 19:13:06 +000024#include "llvm/CodeGen/VirtRegMap.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000025#include "llvm/Support/Debug.h"
26#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +000027#include "llvm/Target/TargetInstrInfo.h"
28#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000029
30using namespace llvm;
31
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000032STATISTIC(NumFinished, "Number of splits finished");
33STATISTIC(NumSimple, "Number of splits that were simple");
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +000034STATISTIC(NumCopies, "Number of copies inserted for splitting");
35STATISTIC(NumRemats, "Number of rematerialized defs for splitting");
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +000036STATISTIC(NumRepairs, "Number of invalid live ranges repaired");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +000037
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000038//===----------------------------------------------------------------------===//
39// Split Analysis
40//===----------------------------------------------------------------------===//
41
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000042SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm,
Jakob Stoklund Olesenf2c6e362010-07-20 23:50:15 +000043 const LiveIntervals &lis,
44 const MachineLoopInfo &mli)
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000045 : MF(vrm.getMachineFunction()),
46 VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000047 LIS(lis),
48 Loops(mli),
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +000049 TII(*MF.getTarget().getInstrInfo()),
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000050 CurLI(0),
51 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000052
53void SplitAnalysis::clear() {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000054 UseSlots.clear();
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +000055 UseBlocks.clear();
56 ThroughBlocks.clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +000057 CurLI = 0;
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +000058 DidRepairRange = false;
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +000059}
60
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000061SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
62 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
63 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
64 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
Jakob Stoklund Olesen2aad2f62012-01-11 02:07:05 +000065 SlotIndex MBBEnd = LIS.getMBBEndIdx(MBB);
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000066
67 // Compute split points on the first call. The pair is independent of the
68 // current live interval.
69 if (!LSP.first.isValid()) {
70 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
71 if (FirstTerm == MBB->end())
Jakob Stoklund Olesen2aad2f62012-01-11 02:07:05 +000072 LSP.first = MBBEnd;
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000073 else
74 LSP.first = LIS.getInstructionIndex(FirstTerm);
75
76 // If there is a landing pad successor, also find the call instruction.
77 if (!LPad)
78 return LSP.first;
79 // There may not be a call instruction (?) in which case we ignore LPad.
80 LSP.second = LSP.first;
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000081 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
82 I != E;) {
83 --I;
Evan Cheng5a96b3d2011-12-07 07:15:52 +000084 if (I->isCall()) {
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000085 LSP.second = LIS.getInstructionIndex(I);
86 break;
87 }
Jakob Stoklund Olesen1e0bd632011-06-28 01:18:58 +000088 }
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000089 }
90
91 // If CurLI is live into a landing pad successor, move the last split point
92 // back to the call that may throw.
Jakob Stoklund Olesen2aad2f62012-01-11 02:07:05 +000093 if (!LPad || !LSP.second || !LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen1a774452011-04-05 04:20:27 +000094 return LSP.first;
Jakob Stoklund Olesen2aad2f62012-01-11 02:07:05 +000095
96 // Find the value leaving MBB.
97 const VNInfo *VNI = CurLI->getVNInfoBefore(MBBEnd);
98 if (!VNI)
99 return LSP.first;
100
101 // If the value leaving MBB was defined after the call in MBB, it can't
102 // really be live-in to the landing pad. This can happen if the landing pad
103 // has a PHI, and this register is undef on the exceptional edge.
104 // <rdar://problem/10664933>
105 if (!SlotIndex::isEarlierInstr(VNI->def, LSP.second) && VNI->def < MBBEnd)
106 return LSP.first;
107
108 // Value is properly live-in to the landing pad.
109 // Only allow splits before the call.
110 return LSP.second;
Jakob Stoklund Olesen6a0dc072010-07-20 21:46:58 +0000111}
112
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +0000113MachineBasicBlock::iterator
114SplitAnalysis::getLastSplitPointIter(MachineBasicBlock *MBB) {
115 SlotIndex LSP = getLastSplitPoint(MBB->getNumber());
116 if (LSP == LIS.getMBBEndIdx(MBB))
117 return MBB->end();
118 return LIS.getInstructionFromIndex(LSP);
119}
120
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000121/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000122void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000123 assert(UseSlots.empty() && "Call clear first");
124
125 // First get all the defs from the interval values. This provides the correct
126 // slots for early clobbers.
127 for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(),
128 E = CurLI->vni_end(); I != E; ++I)
129 if (!(*I)->isPHIDef() && !(*I)->isUnused())
130 UseSlots.push_back((*I)->def);
131
132 // Get use slots form the use-def chain.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000133 const MachineRegisterInfo &MRI = MF.getRegInfo();
Stephen Hines36b56882014-04-23 16:57:46 -0700134 for (MachineOperand &MO : MRI.use_nodbg_operands(CurLI->reg))
135 if (!MO.isUndef())
136 UseSlots.push_back(LIS.getInstructionIndex(MO.getParent()).getRegSlot());
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000137
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000138 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000139
Jakob Stoklund Olesena2948ef2011-04-05 15:18:18 +0000140 // Remove duplicates, keeping the smaller slot for each instruction.
141 // That is what we want for early clobbers.
142 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
143 SlotIndex::isSameInstr),
144 UseSlots.end());
145
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000146 // Compute per-live block info.
147 if (!calcLiveBlockInfo()) {
148 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola5b220212011-06-26 22:34:10 +0000149 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +0000150 DidRepairRange = true;
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +0000151 ++NumRepairs;
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000152 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
153 const_cast<LiveIntervals&>(LIS)
154 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000155 UseBlocks.clear();
156 ThroughBlocks.clear();
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000157 bool fixed = calcLiveBlockInfo();
158 (void)fixed;
159 assert(fixed && "Couldn't fix broken live interval");
160 }
161
Jakob Stoklund Olesenef1f5cc2011-03-27 22:49:23 +0000162 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000163 << UseSlots.size() << " instrs in "
164 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000165 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000166}
167
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000168/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
169/// where CurLI is live.
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000170bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000171 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000172 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000173 if (CurLI->empty())
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000174 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000175
176 LiveInterval::const_iterator LVI = CurLI->begin();
177 LiveInterval::const_iterator LVE = CurLI->end();
178
179 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
180 UseI = UseSlots.begin();
181 UseE = UseSlots.end();
182
183 // Loop over basic blocks where CurLI is live.
184 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start);
185 for (;;) {
186 BlockInfo BI;
187 BI.MBB = MFI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000188 SlotIndex Start, Stop;
Stephen Hines36b56882014-04-23 16:57:46 -0700189 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000190
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000191 // If the block contains no uses, the range must be live through. At one
Rafael Espindola5b220212011-06-26 22:34:10 +0000192 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000193 // mid-block.
194 if (UseI == UseE || *UseI >= Stop) {
195 ++NumThroughBlocks;
196 ThroughBlocks.set(BI.MBB->getNumber());
197 // The range shouldn't end mid-block if there are no uses. This shouldn't
198 // happen.
199 if (LVI->end < Stop)
200 return false;
201 } else {
202 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000203 BI.FirstInstr = *UseI;
204 assert(BI.FirstInstr >= Start);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000205 do ++UseI;
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000206 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000207 BI.LastInstr = UseI[-1];
208 assert(BI.LastInstr < Stop);
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000209
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000210 // LVI is the first live segment overlapping MBB.
211 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000212
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000213 // When not live in, the first use should be a def.
214 if (!BI.LiveIn) {
Matthias Braun331de112013-10-10 21:28:43 +0000215 assert(LVI->start == LVI->valno->def && "Dangling Segment start");
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000216 assert(LVI->start == BI.FirstInstr && "First instr should be a def");
217 BI.FirstDef = BI.FirstInstr;
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000218 }
219
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000220 // Look for gaps in the live range.
221 BI.LiveOut = true;
222 while (LVI->end < Stop) {
223 SlotIndex LastStop = LVI->end;
224 if (++LVI == LVE || LVI->start >= Stop) {
225 BI.LiveOut = false;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000226 BI.LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000227 break;
228 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000229
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000230 if (LastStop < LVI->start) {
231 // There is a gap in the live range. Create duplicate entries for the
232 // live-in snippet and the live-out snippet.
233 ++NumGapBlocks;
234
235 // Push the Live-in part.
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000236 BI.LiveOut = false;
237 UseBlocks.push_back(BI);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000238 UseBlocks.back().LastInstr = LastStop;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000239
240 // Set up BI for the live-out part.
241 BI.LiveIn = false;
242 BI.LiveOut = true;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000243 BI.FirstInstr = BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000244 }
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000245
Matthias Braun331de112013-10-10 21:28:43 +0000246 // A Segment that starts in the middle of the block must be a def.
247 assert(LVI->start == LVI->valno->def && "Dangling Segment start");
Jakob Stoklund Olesen77ee1142011-08-02 22:37:22 +0000248 if (!BI.FirstDef)
249 BI.FirstDef = LVI->start;
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000250 }
251
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000252 UseBlocks.push_back(BI);
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000253
Jakob Stoklund Olesena2e79ef2011-05-30 01:33:26 +0000254 // LVI is now at LVE or LVI->end >= Stop.
255 if (LVI == LVE)
256 break;
257 }
Jakob Stoklund Olesen626d6fb2011-05-29 21:24:39 +0000258
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000259 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000260 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000261 break;
262
263 // Pick the next basic block.
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000264 if (LVI->start < Stop)
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000265 ++MFI;
266 else
267 MFI = LIS.getMBBFromIndex(LVI->start);
268 }
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +0000269
270 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen2b0f9e72011-03-05 18:33:49 +0000271 return true;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000272}
273
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +0000274unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
275 if (cli->empty())
276 return 0;
277 LiveInterval *li = const_cast<LiveInterval*>(cli);
278 LiveInterval::iterator LVI = li->begin();
279 LiveInterval::iterator LVE = li->end();
280 unsigned Count = 0;
281
282 // Loop over basic blocks where li is live.
283 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start);
284 SlotIndex Stop = LIS.getMBBEndIdx(MFI);
285 for (;;) {
286 ++Count;
287 LVI = li->advanceTo(LVI, Stop);
288 if (LVI == LVE)
289 return Count;
290 do {
291 ++MFI;
292 Stop = LIS.getMBBEndIdx(MFI);
293 } while (Stop <= LVI->start);
294 }
295}
296
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000297bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
298 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
299 const LiveInterval &Orig = LIS.getInterval(OrigReg);
300 assert(!Orig.empty() && "Splitting empty interval?");
301 LiveInterval::const_iterator I = Orig.find(Idx);
302
303 // Range containing Idx should begin at Idx.
304 if (I != Orig.end() && I->start <= Idx)
305 return I->start == Idx;
306
307 // Range does not contain Idx, previous must end at Idx.
308 return I != Orig.begin() && (--I)->end == Idx;
309}
310
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000311void SplitAnalysis::analyze(const LiveInterval *li) {
312 clear();
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000313 CurLI = li;
Jakob Stoklund Olesenabff2802010-07-20 16:12:37 +0000314 analyzeUses();
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +0000315}
316
Jakob Stoklund Olesen697483a2010-12-15 17:49:52 +0000317
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000318//===----------------------------------------------------------------------===//
319// Split Editor
320//===----------------------------------------------------------------------===//
321
322/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Jakob Stoklund Olesend68f4582010-10-28 20:34:50 +0000323SplitEditor::SplitEditor(SplitAnalysis &sa,
324 LiveIntervals &lis,
325 VirtRegMap &vrm,
Benjamin Kramer4eed7562013-06-17 19:00:36 +0000326 MachineDominatorTree &mdt,
327 MachineBlockFrequencyInfo &mbfi)
Jakob Stoklund Olesen0eeca442011-02-19 00:42:33 +0000328 : SA(sa), LIS(lis), VRM(vrm),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000329 MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher0f438112011-02-03 06:18:29 +0000330 MDT(mdt),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000331 TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
332 TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
Benjamin Kramer4eed7562013-06-17 19:00:36 +0000333 MBFI(mbfi),
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000334 Edit(0),
Eric Christopher0f438112011-02-03 06:18:29 +0000335 OpenIdx(0),
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000336 SpillMode(SM_Partition),
Eric Christopher0f438112011-02-03 06:18:29 +0000337 RegAssign(Allocator)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000338{}
339
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +0000340void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
341 Edit = &LRE;
342 SpillMode = SM;
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000343 OpenIdx = 0;
344 RegAssign.clear();
345 Values.clear();
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000346
347 // Reset the LiveRangeCalc instances needed for this spill mode.
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000348 LRCalc[0].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
349 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000350 if (SpillMode)
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000351 LRCalc[1].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
352 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000353
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000354 // We don't need an AliasAnalysis since we will only be performing
355 // cheap-as-a-copy remats anyway.
Pete Cooper8a06af92012-04-02 22:22:53 +0000356 Edit->anyRematerializable(0);
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000357}
358
Manman Renb720be62012-09-11 22:23:19 +0000359#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Eric Christopher0f438112011-02-03 06:18:29 +0000360void SplitEditor::dump() const {
361 if (RegAssign.empty()) {
362 dbgs() << " empty\n";
363 return;
364 }
365
366 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
367 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
368 dbgs() << '\n';
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000369}
Manman Ren77e300e2012-09-06 19:06:06 +0000370#endif
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +0000371
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000372VNInfo *SplitEditor::defValue(unsigned RegIdx,
373 const VNInfo *ParentVNI,
374 SlotIndex Idx) {
375 assert(ParentVNI && "Mapping NULL value");
376 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000377 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
Mark Lacey1feb5852013-08-14 23:50:04 +0000378 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000379
380 // Create a new value.
Jakob Stoklund Olesen3b1088a2012-02-04 05:20:49 +0000381 VNInfo *VNI = LI->getNextValue(Idx, LIS.getVNInfoAllocator());
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000382
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000383 // Use insert for lookup, so we can add missing values with a second lookup.
384 std::pair<ValueMap::iterator, bool> InsP =
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000385 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id),
386 ValueForcePair(VNI, false)));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000387
388 // This was the first time (RegIdx, ParentVNI) was mapped.
389 // Keep it as a simple def without any liveness.
390 if (InsP.second)
391 return VNI;
392
393 // If the previous value was a simple mapping, add liveness for it now.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000394 if (VNInfo *OldVNI = InsP.first->second.getPointer()) {
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000395 SlotIndex Def = OldVNI->def;
Matthias Braun331de112013-10-10 21:28:43 +0000396 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), OldVNI));
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000397 // No longer a simple mapping. Switch to a complex, non-forced mapping.
398 InsP.first->second = ValueForcePair();
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000399 }
400
401 // This is a complex mapping, add liveness for VNI
402 SlotIndex Def = VNI->def;
Matthias Braun331de112013-10-10 21:28:43 +0000403 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000404
405 return VNI;
406}
407
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000408void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI) {
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000409 assert(ParentVNI && "Mapping NULL value");
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000410 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)];
411 VNInfo *VNI = VFP.getPointer();
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000412
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000413 // ParentVNI was either unmapped or already complex mapped. Either way, just
414 // set the force bit.
415 if (!VNI) {
416 VFP.setInt(true);
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000417 return;
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000418 }
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000419
420 // This was previously a single mapping. Make sure the old def is represented
421 // by a trivial live range.
422 SlotIndex Def = VNI->def;
Mark Lacey1feb5852013-08-14 23:50:04 +0000423 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Matthias Braun331de112013-10-10 21:28:43 +0000424 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000425 // Mark as complex mapped, forced.
426 VFP = ValueForcePair(0, true);
Jakob Stoklund Olesene5a2e362011-09-13 18:05:29 +0000427}
428
Eric Christopher0f438112011-02-03 06:18:29 +0000429VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000430 VNInfo *ParentVNI,
431 SlotIndex UseIdx,
432 MachineBasicBlock &MBB,
433 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000434 MachineInstr *CopyMI = 0;
435 SlotIndex Def;
Mark Lacey1feb5852013-08-14 23:50:04 +0000436 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000437
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000438 // We may be trying to avoid interference that ends at a deleted instruction,
439 // so always begin RegIdx 0 early and all others late.
440 bool Late = RegIdx != 0;
441
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000442 // Attempt cheap-as-a-copy rematerialization.
443 LiveRangeEdit::Remat RM(ParentVNI);
Pete Cooper8a06af92012-04-02 22:22:53 +0000444 if (Edit->canRematerializeAt(RM, UseIdx, true)) {
445 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, TRI, Late);
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000446 ++NumRemats;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000447 } else {
448 // Can't remat, just insert a copy from parent.
Eric Christopher0f438112011-02-03 06:18:29 +0000449 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000450 .addReg(Edit->getReg());
Jakob Stoklund Olesenbb30dd42011-05-02 05:29:58 +0000451 Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late)
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000452 .getRegSlot();
Jakob Stoklund Olesene9bd4ea2011-05-05 17:22:53 +0000453 ++NumCopies;
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000454 }
455
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +0000456 // Define the value in Reg.
Jakob Stoklund Olesen3b1088a2012-02-04 05:20:49 +0000457 return defValue(RegIdx, ParentVNI, Def);
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000458}
459
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000460/// Create a new virtual register and live interval.
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000461unsigned SplitEditor::openIntv() {
Eric Christopher0f438112011-02-03 06:18:29 +0000462 // Create the complement as index 0.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000463 if (Edit->empty())
Mark Laceye742d682013-08-14 23:50:16 +0000464 Edit->createEmptyInterval();
Eric Christopher0f438112011-02-03 06:18:29 +0000465
466 // Create the open interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000467 OpenIdx = Edit->size();
Mark Laceye742d682013-08-14 23:50:16 +0000468 Edit->createEmptyInterval();
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000469 return OpenIdx;
470}
471
472void SplitEditor::selectIntv(unsigned Idx) {
473 assert(Idx != 0 && "Cannot select the complement interval");
474 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000475 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesene1b43c32011-04-12 18:11:31 +0000476 OpenIdx = Idx;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000477}
478
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000479SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000480 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000481 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000482 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000483 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000484 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000485 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000486 return Idx;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000487 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000488 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000489 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000490 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000491
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000492 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
493 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000494}
495
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000496SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
497 assert(OpenIdx && "openIntv not called before enterIntvAfter");
498 DEBUG(dbgs() << " enterIntvAfter " << Idx);
499 Idx = Idx.getBoundaryIndex();
500 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
501 if (!ParentVNI) {
502 DEBUG(dbgs() << ": not live\n");
503 return Idx;
504 }
505 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
506 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
507 assert(MI && "enterIntvAfter called with invalid index");
508
509 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
Stephen Hines36b56882014-04-23 16:57:46 -0700510 std::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000511 return VNI->def;
512}
513
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000514SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000515 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000516 SlotIndex End = LIS.getMBBEndIdx(&MBB);
517 SlotIndex Last = End.getPrevSlot();
518 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000519 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000520 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000521 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000522 return End;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000523 }
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000524 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000525 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +0000526 SA.getLastSplitPointIter(&MBB));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000527 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopher0f438112011-02-03 06:18:29 +0000528 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000529 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000530}
531
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000532/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000533void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000534 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000535}
536
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000537void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopher0f438112011-02-03 06:18:29 +0000538 assert(OpenIdx && "openIntv not called before useIntv");
539 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
540 RegAssign.insert(Start, End, OpenIdx);
541 DEBUG(dump());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000542}
543
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000544SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopher0f438112011-02-03 06:18:29 +0000545 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000546 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000547
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000548 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000549 SlotIndex Boundary = Idx.getBoundaryIndex();
550 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000551 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000552 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000553 return Boundary.getNextSlot();
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000554 }
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000555 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000556 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
Jakob Stoklund Olesen01cb34b2011-02-08 18:50:18 +0000557 assert(MI && "No instruction at index");
Jakob Stoklund Olesenebac0c12011-09-16 00:03:35 +0000558
559 // In spill mode, make live ranges as short as possible by inserting the copy
560 // before MI. This is only possible if that instruction doesn't redefine the
561 // value. The inserted COPY is not a kill, and we don't need to recompute
562 // the source live range. The spiller also won't try to hoist this copy.
563 if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) &&
564 MI->readsVirtualRegister(Edit->getReg())) {
565 forceRecompute(0, ParentVNI);
566 defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
567 return Idx;
568 }
569
570 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
Stephen Hines36b56882014-04-23 16:57:46 -0700571 std::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000572 return VNI->def;
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +0000573}
574
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000575SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
576 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
577 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
578
579 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenfc479332011-07-18 18:47:13 +0000580 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000581 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen9b057772011-02-09 23:30:25 +0000582 if (!ParentVNI) {
583 DEBUG(dbgs() << ": not live\n");
584 return Idx.getNextSlot();
585 }
586 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
587
588 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
589 assert(MI && "No instruction at index");
590 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
591 return VNI->def;
592}
593
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000594SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopher0f438112011-02-03 06:18:29 +0000595 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000596 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000597 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000598
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000599 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesenf6a129a2010-09-16 00:01:36 +0000600 if (!ParentVNI) {
Jakob Stoklund Olesen9b24afe2010-10-07 17:56:35 +0000601 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000602 return Start;
Jakob Stoklund Olesen7536f722010-08-04 22:08:39 +0000603 }
604
Eric Christopher0f438112011-02-03 06:18:29 +0000605 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesencfa71342010-11-10 19:31:50 +0000606 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopher0f438112011-02-03 06:18:29 +0000607 RegAssign.insert(Start, VNI->def, OpenIdx);
608 DEBUG(dump());
Jakob Stoklund Olesen207c8682011-02-03 17:04:16 +0000609 return VNI->def;
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +0000610}
611
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000612void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
613 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000614 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesen194eb712011-11-14 01:39:36 +0000615 assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) &&
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000616 "Parent changes value in extended range");
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000617 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
618 "Range cannot span basic blocks");
619
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000620 // The complement interval will be extended as needed by LRCalc.extend().
Jakob Stoklund Olesenb3dd8262011-04-05 23:43:14 +0000621 if (ParentVNI)
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000622 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000623 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
624 RegAssign.insert(Start, End, OpenIdx);
625 DEBUG(dump());
626}
627
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000628//===----------------------------------------------------------------------===//
629// Spill modes
630//===----------------------------------------------------------------------===//
631
632void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) {
Mark Lacey1feb5852013-08-14 23:50:04 +0000633 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000634 DEBUG(dbgs() << "Removing " << Copies.size() << " back-copies.\n");
635 RegAssignMap::iterator AssignI;
636 AssignI.setMap(RegAssign);
637
638 for (unsigned i = 0, e = Copies.size(); i != e; ++i) {
639 VNInfo *VNI = Copies[i];
640 SlotIndex Def = VNI->def;
641 MachineInstr *MI = LIS.getInstructionFromIndex(Def);
642 assert(MI && "No instruction for back-copy");
643
644 MachineBasicBlock *MBB = MI->getParent();
645 MachineBasicBlock::iterator MBBI(MI);
646 bool AtBegin;
647 do AtBegin = MBBI == MBB->begin();
648 while (!AtBegin && (--MBBI)->isDebugValue());
649
650 DEBUG(dbgs() << "Removing " << Def << '\t' << *MI);
651 LI->removeValNo(VNI);
652 LIS.RemoveMachineInstrFromMaps(MI);
653 MI->eraseFromParent();
654
655 // Adjust RegAssign if a register assignment is killed at VNI->def. We
656 // want to avoid calculating the live range of the source register if
657 // possible.
Jakob Stoklund Olesen1599a642012-08-03 20:59:29 +0000658 AssignI.find(Def.getPrevSlot());
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000659 if (!AssignI.valid() || AssignI.start() >= Def)
660 continue;
661 // If MI doesn't kill the assigned register, just leave it.
662 if (AssignI.stop() != Def)
663 continue;
664 unsigned RegIdx = AssignI.value();
665 if (AtBegin || !MBBI->readsVirtualRegister(Edit->getReg())) {
666 DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n');
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000667 forceRecompute(RegIdx, Edit->getParent().getVNInfoAt(Def));
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000668 } else {
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000669 SlotIndex Kill = LIS.getInstructionIndex(MBBI).getRegSlot();
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000670 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
671 AssignI.setStop(Kill);
672 }
673 }
674}
675
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000676MachineBasicBlock*
677SplitEditor::findShallowDominator(MachineBasicBlock *MBB,
678 MachineBasicBlock *DefMBB) {
679 if (MBB == DefMBB)
680 return MBB;
681 assert(MDT.dominates(DefMBB, MBB) && "MBB must be dominated by the def.");
682
683 const MachineLoopInfo &Loops = SA.Loops;
684 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
685 MachineDomTreeNode *DefDomNode = MDT[DefMBB];
686
687 // Best candidate so far.
688 MachineBasicBlock *BestMBB = MBB;
689 unsigned BestDepth = UINT_MAX;
690
691 for (;;) {
692 const MachineLoop *Loop = Loops.getLoopFor(MBB);
693
694 // MBB isn't in a loop, it doesn't get any better. All dominators have a
695 // higher frequency by definition.
696 if (!Loop) {
697 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
698 << MBB->getNumber() << " at depth 0\n");
699 return MBB;
700 }
701
702 // We'll never be able to exit the DefLoop.
703 if (Loop == DefLoop) {
704 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
705 << MBB->getNumber() << " in the same loop\n");
706 return MBB;
707 }
708
709 // Least busy dominator seen so far.
710 unsigned Depth = Loop->getLoopDepth();
711 if (Depth < BestDepth) {
712 BestMBB = MBB;
713 BestDepth = Depth;
714 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
715 << MBB->getNumber() << " at depth " << Depth << '\n');
716 }
717
718 // Leave loop by going to the immediate dominator of the loop header.
719 // This is a bigger stride than simply walking up the dominator tree.
720 MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom();
721
722 // Too far up the dominator tree?
723 if (!IDom || !MDT.dominates(DefDomNode, IDom))
724 return BestMBB;
725
726 MBB = IDom->getBlock();
727 }
728}
729
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000730void SplitEditor::hoistCopiesForSize() {
731 // Get the complement interval, always RegIdx 0.
Mark Lacey1feb5852013-08-14 23:50:04 +0000732 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000733 LiveInterval *Parent = &Edit->getParent();
734
735 // Track the nearest common dominator for all back-copies for each ParentVNI,
736 // indexed by ParentVNI->id.
737 typedef std::pair<MachineBasicBlock*, SlotIndex> DomPair;
738 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
739
740 // Find the nearest common dominator for parent values with multiple
741 // back-copies. If a single back-copy dominates, put it in DomPair.second.
742 for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end();
743 VI != VE; ++VI) {
744 VNInfo *VNI = *VI;
Jakob Stoklund Olesen1599a642012-08-03 20:59:29 +0000745 if (VNI->isUnused())
746 continue;
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000747 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
748 assert(ParentVNI && "Parent not live at complement def");
749
750 // Don't hoist remats. The complement is probably going to disappear
751 // completely anyway.
752 if (Edit->didRematerialize(ParentVNI))
753 continue;
754
755 MachineBasicBlock *ValMBB = LIS.getMBBFromIndex(VNI->def);
756 DomPair &Dom = NearestDom[ParentVNI->id];
757
758 // Keep directly defined parent values. This is either a PHI or an
759 // instruction in the complement range. All other copies of ParentVNI
760 // should be eliminated.
761 if (VNI->def == ParentVNI->def) {
762 DEBUG(dbgs() << "Direct complement def at " << VNI->def << '\n');
763 Dom = DomPair(ValMBB, VNI->def);
764 continue;
765 }
766 // Skip the singly mapped values. There is nothing to gain from hoisting a
767 // single back-copy.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000768 if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) {
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000769 DEBUG(dbgs() << "Single complement def at " << VNI->def << '\n');
770 continue;
771 }
772
773 if (!Dom.first) {
774 // First time we see ParentVNI. VNI dominates itself.
775 Dom = DomPair(ValMBB, VNI->def);
776 } else if (Dom.first == ValMBB) {
777 // Two defs in the same block. Pick the earlier def.
778 if (!Dom.second.isValid() || VNI->def < Dom.second)
779 Dom.second = VNI->def;
780 } else {
781 // Different basic blocks. Check if one dominates.
782 MachineBasicBlock *Near =
783 MDT.findNearestCommonDominator(Dom.first, ValMBB);
784 if (Near == ValMBB)
785 // Def ValMBB dominates.
786 Dom = DomPair(ValMBB, VNI->def);
787 else if (Near != Dom.first)
788 // None dominate. Hoist to common dominator, need new def.
789 Dom = DomPair(Near, SlotIndex());
790 }
791
792 DEBUG(dbgs() << "Multi-mapped complement " << VNI->id << '@' << VNI->def
793 << " for parent " << ParentVNI->id << '@' << ParentVNI->def
794 << " hoist to BB#" << Dom.first->getNumber() << ' '
795 << Dom.second << '\n');
796 }
797
798 // Insert the hoisted copies.
799 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
800 DomPair &Dom = NearestDom[i];
801 if (!Dom.first || Dom.second.isValid())
802 continue;
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000803 // This value needs a hoisted copy inserted at the end of Dom.first.
804 VNInfo *ParentVNI = Parent->getValNumInfo(i);
805 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(ParentVNI->def);
806 // Get a less loopy dominator than Dom.first.
807 Dom.first = findShallowDominator(Dom.first, DefMBB);
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000808 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
809 Dom.second =
Jakob Stoklund Olesenc4c63382011-09-14 16:45:39 +0000810 defFromParent(0, ParentVNI, Last, *Dom.first,
Jakob Stoklund Olesen74c4f972012-01-11 02:07:00 +0000811 SA.getLastSplitPointIter(Dom.first))->def;
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000812 }
813
814 // Remove redundant back-copies that are now known to be dominated by another
815 // def with the same value.
816 SmallVector<VNInfo*, 8> BackCopies;
817 for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end();
818 VI != VE; ++VI) {
819 VNInfo *VNI = *VI;
Jakob Stoklund Olesen1599a642012-08-03 20:59:29 +0000820 if (VNI->isUnused())
821 continue;
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000822 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
823 const DomPair &Dom = NearestDom[ParentVNI->id];
824 if (!Dom.first || Dom.second == VNI->def)
825 continue;
826 BackCopies.push_back(VNI);
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000827 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +0000828 }
829 removeBackCopies(BackCopies);
830}
831
832
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000833/// transferValues - Transfer all possible values to the new live ranges.
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000834/// Values that were rematerialized are left alone, they need LRCalc.extend().
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000835bool SplitEditor::transferValues() {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000836 bool Skipped = false;
837 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000838 for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(),
839 ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000840 DEBUG(dbgs() << " blit " << *ParentI << ':');
841 VNInfo *ParentVNI = ParentI->valno;
842 // RegAssign has holes where RegIdx 0 should be used.
843 SlotIndex Start = ParentI->start;
844 AssignI.advanceTo(Start);
845 do {
846 unsigned RegIdx;
847 SlotIndex End = ParentI->end;
848 if (!AssignI.valid()) {
849 RegIdx = 0;
850 } else if (AssignI.start() <= Start) {
851 RegIdx = AssignI.value();
852 if (AssignI.stop() < End) {
853 End = AssignI.stop();
854 ++AssignI;
855 }
856 } else {
857 RegIdx = 0;
858 End = std::min(End, AssignI.start());
859 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000860
861 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000862 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Matthias Braune25dde52013-10-10 21:28:57 +0000863 LiveRange &LR = LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000864
865 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000866 ValueForcePair VFP = Values.lookup(std::make_pair(RegIdx, ParentVNI->id));
867 if (VNInfo *VNI = VFP.getPointer()) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000868 DEBUG(dbgs() << ':' << VNI->id);
Matthias Braune25dde52013-10-10 21:28:57 +0000869 LR.addSegment(LiveInterval::Segment(Start, End, VNI));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000870 Start = End;
871 continue;
872 }
873
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +0000874 // Skip values with forced recomputation.
875 if (VFP.getInt()) {
876 DEBUG(dbgs() << "(recalc)");
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000877 Skipped = true;
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000878 Start = End;
879 continue;
880 }
881
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000882 LiveRangeCalc &LRC = getLRCalc(RegIdx);
883
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000884 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
885 // so the live range is accurate. Add live-in blocks in [Start;End) to the
886 // LiveInBlocks.
887 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
888 SlotIndex BlockStart, BlockEnd;
Stephen Hines36b56882014-04-23 16:57:46 -0700889 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000890
891 // The first block may be live-in, or it may have its own def.
892 if (Start != BlockStart) {
Matthias Braune25dde52013-10-10 21:28:57 +0000893 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000894 assert(VNI && "Missing def for complex mapped value");
895 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
896 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000897 if (BlockEnd <= End)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000898 LRC.setLiveOutValue(MBB, VNI);
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000899
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000900 // Skip to the next block for live-in.
901 ++MBB;
902 BlockStart = BlockEnd;
903 }
904
905 // Handle the live-in blocks covered by [Start;End).
906 assert(Start <= BlockStart && "Expected live-in block");
907 while (BlockStart < End) {
908 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
909 BlockEnd = LIS.getMBBEndIdx(MBB);
910 if (BlockStart == ParentVNI->def) {
911 // This block has the def of a parent PHI, so it isn't live-in.
912 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
Matthias Braune25dde52013-10-10 21:28:57 +0000913 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000914 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000915 if (End >= BlockEnd)
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000916 LRC.setLiveOutValue(MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000917 } else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000918 // This block needs a live-in value. The last block covered may not
919 // be live-out.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000920 if (End < BlockEnd)
Matthias Braune25dde52013-10-10 21:28:57 +0000921 LRC.addLiveInBlock(LR, MDT[MBB], End);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000922 else {
Jakob Stoklund Olesenb5a457c2011-09-13 01:34:21 +0000923 // Live-through, and we don't know the value.
Matthias Braune25dde52013-10-10 21:28:57 +0000924 LRC.addLiveInBlock(LR, MDT[MBB]);
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000925 LRC.setLiveOutValue(MBB, 0);
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000926 }
927 }
928 BlockStart = BlockEnd;
929 ++MBB;
930 }
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000931 Start = End;
932 } while (Start != ParentI->end);
933 DEBUG(dbgs() << '\n');
934 }
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000935
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000936 LRCalc[0].calculateValues();
Jakob Stoklund Olesenc1c622e2011-09-13 16:47:53 +0000937 if (SpillMode)
Jakob Stoklund Olesen631390e2012-06-04 18:21:16 +0000938 LRCalc[1].calculateValues();
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +0000939
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000940 return Skipped;
941}
942
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000943void SplitEditor::extendPHIKillRanges() {
944 // Extend live ranges to be live-out for successor PHI values.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000945 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
946 E = Edit->getParent().vni_end(); I != E; ++I) {
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000947 const VNInfo *PHIVNI = *I;
948 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
949 continue;
950 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
Matthias Braune25dde52013-10-10 21:28:57 +0000951 LiveRange &LR = LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000952 LiveRangeCalc &LRC = getLRCalc(RegIdx);
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000953 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
954 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
955 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000956 SlotIndex End = LIS.getMBBEndIdx(*PI);
957 SlotIndex LastUse = End.getPrevSlot();
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000958 // The predecessor may not have a live-out value. That is OK, like an
959 // undef PHI operand.
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000960 if (Edit->getParent().liveAt(LastUse)) {
961 assert(RegAssign.lookup(LastUse) == RegIdx &&
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000962 "Different register assignment in phi predecessor");
Matthias Braune25dde52013-10-10 21:28:57 +0000963 LRC.extend(LR, End);
Jakob Stoklund Olesene2dc0c92011-03-02 23:05:16 +0000964 }
965 }
966 }
967}
968
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000969/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +0000970void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +0000971 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000972 RE = MRI.reg_end(); RI != RE;) {
Stephen Hines36b56882014-04-23 16:57:46 -0700973 MachineOperand &MO = *RI;
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000974 MachineInstr *MI = MO.getParent();
975 ++RI;
Eric Christopher0f438112011-02-03 06:18:29 +0000976 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000977 if (MI->isDebugValue()) {
978 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +0000979 MO.setReg(0);
980 continue;
981 }
Jakob Stoklund Olesena372d162011-02-09 21:52:09 +0000982
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000983 // <undef> operands don't really read the register, so it doesn't matter
984 // which register we choose. When the use operand is tied to a def, we must
985 // use the same register as the def, so just do that always.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +0000986 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesenb09701d2011-07-24 20:23:50 +0000987 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000988 Idx = Idx.getRegSlot(MO.isEarlyClobber());
Eric Christopher0f438112011-02-03 06:18:29 +0000989
990 // Rewrite to the mapped register at Idx.
991 unsigned RegIdx = RegAssign.lookup(Idx);
Mark Lacey1feb5852013-08-14 23:50:04 +0000992 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesenabcc73e2011-09-13 17:38:57 +0000993 MO.setReg(LI->reg);
Eric Christopher0f438112011-02-03 06:18:29 +0000994 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
995 << Idx << ':' << RegIdx << '\t' << *MI);
996
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000997 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen81d686e2011-07-24 20:33:23 +0000998 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +0000999 continue;
1000
1001 // Skip instructions that don't read Reg.
1002 if (MO.isDef()) {
1003 if (!MO.getSubReg() && !MO.isEarlyClobber())
1004 continue;
1005 // We may wan't to extend a live range for a partial redef, or for a use
1006 // tied to an early clobber.
1007 Idx = Idx.getPrevSlot();
1008 if (!Edit->getParent().liveAt(Idx))
1009 continue;
1010 } else
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +00001011 Idx = Idx.getRegSlot(true);
Jakob Stoklund Olesen7cec1792011-03-18 03:06:02 +00001012
Matthias Braune25dde52013-10-10 21:28:57 +00001013 getLRCalc(RegIdx).extend(*LI, Idx.getNextSlot());
Jakob Stoklund Olesen74669272010-10-08 23:42:21 +00001014 }
1015}
1016
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001017void SplitEditor::deleteRematVictims() {
1018 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001019 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
Mark Lacey1feb5852013-08-14 23:50:04 +00001020 LiveInterval *LI = &LIS.getInterval(*I);
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001021 for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end();
1022 LII != LIE; ++LII) {
Jakob Stoklund Olesen1f81e312011-11-13 22:42:13 +00001023 // Dead defs end at the dead slot.
1024 if (LII->end != LII->valno->def.getDeadSlot())
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001025 continue;
1026 MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def);
1027 assert(MI && "Missing instruction for dead def");
1028 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001029
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001030 if (!MI->allDefsAreDead())
1031 continue;
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001032
Jakob Stoklund Olesen2dc455a2011-03-20 19:46:23 +00001033 DEBUG(dbgs() << "All defs dead: " << *MI);
1034 Dead.push_back(MI);
1035 }
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001036 }
1037
1038 if (Dead.empty())
1039 return;
1040
Pete Cooper8a06af92012-04-02 22:22:53 +00001041 Edit->eliminateDeadDefs(Dead);
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001042}
1043
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001044void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001045 ++NumFinished;
Eric Christopher463a2972011-02-03 05:40:54 +00001046
Eric Christopher0f438112011-02-03 06:18:29 +00001047 // At this point, the live intervals in Edit contain VNInfos corresponding to
1048 // the inserted copies.
1049
1050 // Add the original defs from the parent interval.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001051 for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(),
1052 E = Edit->getParent().vni_end(); I != E; ++I) {
Eric Christopher0f438112011-02-03 06:18:29 +00001053 const VNInfo *ParentVNI = *I;
Jakob Stoklund Olesen9ecd1e72011-02-04 00:59:23 +00001054 if (ParentVNI->isUnused())
1055 continue;
Jakob Stoklund Olesen670ccd12011-03-01 23:14:53 +00001056 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesenb18d7792012-07-27 21:11:14 +00001057 defValue(RegIdx, ParentVNI, ParentVNI->def);
Jakob Stoklund Olesen29ef8752011-03-15 21:13:22 +00001058
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +00001059 // Force rematted values to be recomputed everywhere.
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001060 // The new live ranges may be truncated.
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001061 if (Edit->didRematerialize(ParentVNI))
1062 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen393bfcb2011-09-13 23:09:04 +00001063 forceRecompute(i, ParentVNI);
Eric Christopher0f438112011-02-03 06:18:29 +00001064 }
1065
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +00001066 // Hoist back-copies to the complement interval when in spill mode.
1067 switch (SpillMode) {
1068 case SM_Partition:
1069 // Leave all back-copies as is.
1070 break;
1071 case SM_Size:
1072 hoistCopiesForSize();
1073 break;
1074 case SM_Speed:
1075 llvm_unreachable("Spill mode 'speed' not implemented yet");
Jakob Stoklund Olesenb21abfe2011-09-13 22:22:39 +00001076 }
1077
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001078 // Transfer the simply mapped values, check if any are skipped.
1079 bool Skipped = transferValues();
1080 if (Skipped)
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001081 extendPHIKillRanges();
1082 else
1083 ++NumSimple;
Eric Christopher0f438112011-02-03 06:18:29 +00001084
Jakob Stoklund Olesen46703532011-03-02 23:05:19 +00001085 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001086 rewriteAssigned(Skipped);
Eric Christopher0f438112011-02-03 06:18:29 +00001087
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001088 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen44b7ae22011-04-15 17:24:49 +00001089 if (Skipped)
Jakob Stoklund Olesen58817992011-03-08 22:46:11 +00001090 deleteRematVictims();
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001091
Jakob Stoklund Olesen0253df92010-10-07 23:34:34 +00001092 // Get rid of unused values and set phi-kill flags.
Mark Lacey1feb5852013-08-14 23:50:04 +00001093 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I) {
1094 LiveInterval &LI = LIS.getInterval(*I);
1095 LI.RenumberValues();
1096 }
Jakob Stoklund Olesen5fa42a42010-09-21 22:32:21 +00001097
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001098 // Provide a reverse mapping from original indices to Edit ranges.
1099 if (LRMap) {
1100 LRMap->clear();
1101 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1102 LRMap->push_back(i);
1103 }
1104
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001105 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesen07862842011-01-26 00:50:53 +00001106 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesena2cae582011-03-02 23:31:50 +00001107 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001108 // Don't use iterators, they are invalidated by create() below.
Mark Lacey1feb5852013-08-14 23:50:04 +00001109 LiveInterval *li = &LIS.getInterval(Edit->get(i));
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001110 unsigned NumComp = ConEQ.Classify(li);
1111 if (NumComp <= 1)
1112 continue;
1113 DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
1114 SmallVector<LiveInterval*, 8> dups;
1115 dups.push_back(li);
Matt Beaumont-Gayae5fbee2011-04-21 19:46:23 +00001116 for (unsigned j = 1; j != NumComp; ++j)
Mark Laceye742d682013-08-14 23:50:16 +00001117 dups.push_back(&Edit->createEmptyInterval());
Jakob Stoklund Olesen22542272011-03-17 00:23:45 +00001118 ConEQ.Distribute(&dups[0], MRI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001119 // The new intervals all map back to i.
1120 if (LRMap)
1121 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesen3a0e0712010-10-26 22:36:09 +00001122 }
1123
Jakob Stoklund Olesen08e93b12010-08-10 17:07:22 +00001124 // Calculate spill weight and allocation hints for new intervals.
Benjamin Kramer4eed7562013-06-17 19:00:36 +00001125 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), SA.Loops, MBFI);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001126
1127 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenf0179002010-07-26 23:44:11 +00001128}
1129
1130
Jakob Stoklund Olesen8ae02632010-07-20 15:41:07 +00001131//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenf1b05f22010-08-12 17:07:14 +00001132// Single Block Splitting
1133//===----------------------------------------------------------------------===//
1134
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +00001135bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
1136 bool SingleInstrs) const {
1137 // Always split for multiple instructions.
1138 if (!BI.isOneInstr())
1139 return true;
1140 // Don't split for single instructions unless explicitly requested.
1141 if (!SingleInstrs)
1142 return false;
1143 // Splitting a live-through range always makes progress.
1144 if (BI.LiveIn && BI.LiveOut)
1145 return true;
1146 // No point in isolating a copy. It has no register class constraints.
1147 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
1148 return false;
1149 // Finally, don't isolate an end point that was created by earlier splits.
1150 return isOriginalEndpoint(BI.FirstInstr);
1151}
1152
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001153void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1154 openIntv();
1155 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001156 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001157 LastSplitPoint));
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001158 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
1159 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001160 } else {
1161 // The last use is after the last valid split point.
1162 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1163 useIntv(SegStart, SegStop);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001164 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001165 }
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001166}
1167
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001168
1169//===----------------------------------------------------------------------===//
1170// Global Live Range Splitting Support
1171//===----------------------------------------------------------------------===//
1172
1173// These methods support a method of global live range splitting that uses a
1174// global algorithm to decide intervals for CFG edges. They will insert split
1175// points and color intervals in basic blocks while avoiding interference.
1176//
1177// Note that splitSingleBlock is also useful for blocks where both CFG edges
1178// are on the stack.
1179
1180void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
1181 unsigned IntvIn, SlotIndex LeaveBefore,
1182 unsigned IntvOut, SlotIndex EnterAfter){
1183 SlotIndex Start, Stop;
Stephen Hines36b56882014-04-23 16:57:46 -07001184 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001185
1186 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
1187 << ") intf " << LeaveBefore << '-' << EnterAfter
1188 << ", live-through " << IntvIn << " -> " << IntvOut);
1189
1190 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1191
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001192 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
1193 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
1194 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
1195
1196 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
1197
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001198 if (!IntvOut) {
1199 DEBUG(dbgs() << ", spill on entry.\n");
1200 //
1201 // <<<<<<<<< Possible LeaveBefore interference.
1202 // |-----------| Live through.
1203 // -____________ Spill on entry.
1204 //
1205 selectIntv(IntvIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001206 SlotIndex Idx = leaveIntvAtTop(*MBB);
1207 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1208 (void)Idx;
1209 return;
1210 }
1211
1212 if (!IntvIn) {
1213 DEBUG(dbgs() << ", reload on exit.\n");
1214 //
1215 // >>>>>>> Possible EnterAfter interference.
1216 // |-----------| Live through.
1217 // ___________-- Reload on exit.
1218 //
1219 selectIntv(IntvOut);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001220 SlotIndex Idx = enterIntvAtEnd(*MBB);
1221 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1222 (void)Idx;
1223 return;
1224 }
1225
1226 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1227 DEBUG(dbgs() << ", straight through.\n");
1228 //
1229 // |-----------| Live through.
1230 // ------------- Straight through, same intv, no interference.
1231 //
1232 selectIntv(IntvOut);
1233 useIntv(Start, Stop);
1234 return;
1235 }
1236
1237 // We cannot legally insert splits after LSP.
1238 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001239 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001240
1241 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1242 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
1243 DEBUG(dbgs() << ", switch avoiding interference.\n");
1244 //
1245 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
1246 // |-----------| Live through.
1247 // ------======= Switch intervals between interference.
1248 //
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001249 selectIntv(IntvOut);
Jakob Stoklund Olesenfe9b2d12011-07-23 03:32:26 +00001250 SlotIndex Idx;
1251 if (LeaveBefore && LeaveBefore < LSP) {
1252 Idx = enterIntvBefore(LeaveBefore);
1253 useIntv(Idx, Stop);
1254 } else {
1255 Idx = enterIntvAtEnd(*MBB);
1256 }
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001257 selectIntv(IntvIn);
1258 useIntv(Start, Idx);
1259 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1260 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1261 return;
1262 }
1263
1264 DEBUG(dbgs() << ", create local intv for interference.\n");
1265 //
1266 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1267 // |-----------| Live through.
1268 // ==---------== Switch intervals before/after interference.
1269 //
1270 assert(LeaveBefore <= EnterAfter && "Missed case");
1271
1272 selectIntv(IntvOut);
1273 SlotIndex Idx = enterIntvAfter(EnterAfter);
1274 useIntv(Idx, Stop);
1275 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1276
1277 selectIntv(IntvIn);
1278 Idx = leaveIntvBefore(LeaveBefore);
1279 useIntv(Start, Idx);
1280 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1281}
1282
1283
1284void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1285 unsigned IntvIn, SlotIndex LeaveBefore) {
1286 SlotIndex Start, Stop;
Stephen Hines36b56882014-04-23 16:57:46 -07001287 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001288
1289 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001290 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001291 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1292 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1293
1294 assert(IntvIn && "Must have register in");
1295 assert(BI.LiveIn && "Must be live-in");
1296 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1297
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001298 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001299 DEBUG(dbgs() << " before interference.\n");
1300 //
1301 // <<< Interference after kill.
1302 // |---o---x | Killed in block.
1303 // ========= Use IntvIn everywhere.
1304 //
1305 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001306 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001307 return;
1308 }
1309
1310 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1311
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001312 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001313 //
1314 // <<< Possible interference after last use.
1315 // |---o---o---| Live-out on stack.
1316 // =========____ Leave IntvIn after last use.
1317 //
1318 // < Interference after last use.
1319 // |---o---o--o| Live-out on stack, late last use.
1320 // ============ Copy to stack after LSP, overlap IntvIn.
1321 // \_____ Stack interval is live-out.
1322 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001323 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001324 DEBUG(dbgs() << ", spill after last use before interference.\n");
1325 selectIntv(IntvIn);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001326 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001327 useIntv(Start, Idx);
1328 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1329 } else {
1330 DEBUG(dbgs() << ", spill before last split point.\n");
1331 selectIntv(IntvIn);
Jakob Stoklund Olesenaf4e40c2011-07-16 00:13:30 +00001332 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001333 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001334 useIntv(Start, Idx);
1335 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1336 }
1337 return;
1338 }
1339
1340 // The interference is overlapping somewhere we wanted to use IntvIn. That
1341 // means we need to create a local interval that can be allocated a
1342 // different register.
1343 unsigned LocalIntv = openIntv();
Matt Beaumont-Gayf9d7fb62011-07-16 04:18:47 +00001344 (void)LocalIntv;
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001345 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1346
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001347 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001348 //
1349 // <<<<<<< Interference overlapping uses.
1350 // |---o---o---| Live-out on stack.
1351 // =====----____ Leave IntvIn before interference, then spill.
1352 //
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001353 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001354 SlotIndex From = enterIntvBefore(LeaveBefore);
1355 useIntv(From, To);
1356 selectIntv(IntvIn);
1357 useIntv(Start, From);
1358 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1359 return;
1360 }
1361
1362 // <<<<<<< Interference overlapping uses.
1363 // |---o---o--o| Live-out on stack, late last use.
1364 // =====------- Copy to stack before LSP, overlap LocalIntv.
1365 // \_____ Stack interval is live-out.
1366 //
1367 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001368 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001369 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1370 useIntv(From, To);
1371 selectIntv(IntvIn);
1372 useIntv(Start, From);
1373 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1374}
1375
1376void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1377 unsigned IntvOut, SlotIndex EnterAfter) {
1378 SlotIndex Start, Stop;
Stephen Hines36b56882014-04-23 16:57:46 -07001379 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001380
1381 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001382 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001383 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1384 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1385
1386 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1387
1388 assert(IntvOut && "Must have register out");
1389 assert(BI.LiveOut && "Must be live-out");
1390 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1391
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001392 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001393 DEBUG(dbgs() << " after interference.\n");
1394 //
1395 // >>>> Interference before def.
1396 // | o---o---| Defined in block.
1397 // ========= Use IntvOut everywhere.
1398 //
1399 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001400 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001401 return;
1402 }
1403
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001404 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001405 DEBUG(dbgs() << ", reload after interference.\n");
1406 //
1407 // >>>> Interference before def.
1408 // |---o---o---| Live-through, stack-in.
1409 // ____========= Enter IntvOut before first use.
1410 //
1411 selectIntv(IntvOut);
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001412 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001413 useIntv(Idx, Stop);
1414 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1415 return;
1416 }
1417
1418 // The interference is overlapping somewhere we wanted to use IntvOut. That
1419 // means we need to create a local interval that can be allocated a
1420 // different register.
1421 DEBUG(dbgs() << ", interference overlaps uses.\n");
1422 //
1423 // >>>>>>> Interference overlapping uses.
1424 // |---o---o---| Live-through, stack-in.
1425 // ____---====== Create local interval for interference range.
1426 //
1427 selectIntv(IntvOut);
1428 SlotIndex Idx = enterIntvAfter(EnterAfter);
1429 useIntv(Idx, Stop);
1430 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1431
1432 openIntv();
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001433 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001434 useIntv(From, Idx);
1435}