blob: 5be82b85272741724ad5de2e00cf94ed31079aa7 [file] [log] [blame]
Jakob Stoklund Olesen36d12c62010-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 Olesen36d12c62010-07-20 15:41:07 +000015#include "SplitKit.h"
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000016#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000017#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000018#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesene172a8b2010-10-28 20:34:50 +000019#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +000020#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +000021#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000022#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000023#include "llvm/CodeGen/VirtRegMap.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000024#include "llvm/Support/Debug.h"
25#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesened4075c2010-07-20 21:46:58 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000028
29using namespace llvm;
30
Chandler Carruth1b9dde02014-04-22 02:02:50 +000031#define DEBUG_TYPE "regalloc"
32
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000033STATISTIC(NumFinished, "Number of splits finished");
34STATISTIC(NumSimple, "Number of splits that were simple");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000035STATISTIC(NumCopies, "Number of copies inserted for splitting");
36STATISTIC(NumRemats, "Number of rematerialized defs for splitting");
Jakob Stoklund Olesen50215af2011-05-10 17:37:41 +000037STATISTIC(NumRepairs, "Number of invalid live ranges repaired");
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000038
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000039//===----------------------------------------------------------------------===//
40// Split Analysis
41//===----------------------------------------------------------------------===//
42
Eric Christopherd9134482014-08-04 21:25:23 +000043SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
Jakob Stoklund Olesen0fef9dd2010-07-20 23:50:15 +000044 const MachineLoopInfo &mli)
Eric Christopherd9134482014-08-04 21:25:23 +000045 : MF(vrm.getMachineFunction()), VRM(vrm), LIS(lis), Loops(mli),
Eric Christopherfc6de422014-08-05 02:39:49 +000046 TII(*MF.getSubtarget().getInstrInfo()), CurLI(nullptr),
Eric Christopherd9134482014-08-04 21:25:23 +000047 LastSplitPoint(MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000048
49void SplitAnalysis::clear() {
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +000050 UseSlots.clear();
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +000051 UseBlocks.clear();
52 ThroughBlocks.clear();
Craig Topperc0196b12014-04-14 00:51:57 +000053 CurLI = nullptr;
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +000054 DidRepairRange = false;
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000055}
56
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000057SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) {
58 const MachineBasicBlock *MBB = MF.getBlockNumbered(Num);
Reid Klecknered170792015-09-17 17:19:40 +000059 // FIXME: Handle multiple EH pad successors.
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000060 const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor();
61 std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num];
Jakob Stoklund Olesen8b1d0232012-01-11 02:07:05 +000062 SlotIndex MBBEnd = LIS.getMBBEndIdx(MBB);
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000063
64 // Compute split points on the first call. The pair is independent of the
65 // current live interval.
66 if (!LSP.first.isValid()) {
67 MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator();
68 if (FirstTerm == MBB->end())
Jakob Stoklund Olesen8b1d0232012-01-11 02:07:05 +000069 LSP.first = MBBEnd;
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000070 else
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +000071 LSP.first = LIS.getInstructionIndex(*FirstTerm);
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000072
73 // If there is a landing pad successor, also find the call instruction.
74 if (!LPad)
75 return LSP.first;
76 // There may not be a call instruction (?) in which case we ignore LPad.
77 LSP.second = LSP.first;
Jakob Stoklund Olesen040d6592011-06-28 01:18:58 +000078 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
79 I != E;) {
80 --I;
Evan Cheng7f8e5632011-12-07 07:15:52 +000081 if (I->isCall()) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +000082 LSP.second = LIS.getInstructionIndex(*I);
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000083 break;
84 }
Jakob Stoklund Olesen040d6592011-06-28 01:18:58 +000085 }
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000086 }
87
88 // If CurLI is live into a landing pad successor, move the last split point
89 // back to the call that may throw.
Jakob Stoklund Olesen8b1d0232012-01-11 02:07:05 +000090 if (!LPad || !LSP.second || !LIS.isLiveInToMBB(*CurLI, LPad))
Jakob Stoklund Olesen50b2db82011-04-05 04:20:27 +000091 return LSP.first;
Jakob Stoklund Olesen8b1d0232012-01-11 02:07:05 +000092
93 // Find the value leaving MBB.
94 const VNInfo *VNI = CurLI->getVNInfoBefore(MBBEnd);
95 if (!VNI)
96 return LSP.first;
97
98 // If the value leaving MBB was defined after the call in MBB, it can't
99 // really be live-in to the landing pad. This can happen if the landing pad
100 // has a PHI, and this register is undef on the exceptional edge.
101 // <rdar://problem/10664933>
102 if (!SlotIndex::isEarlierInstr(VNI->def, LSP.second) && VNI->def < MBBEnd)
103 return LSP.first;
104
105 // Value is properly live-in to the landing pad.
106 // Only allow splits before the call.
107 return LSP.second;
Jakob Stoklund Olesened4075c2010-07-20 21:46:58 +0000108}
109
Jakob Stoklund Olesen67aec122012-01-11 02:07:00 +0000110MachineBasicBlock::iterator
111SplitAnalysis::getLastSplitPointIter(MachineBasicBlock *MBB) {
112 SlotIndex LSP = getLastSplitPoint(MBB->getNumber());
113 if (LSP == LIS.getMBBEndIdx(MBB))
114 return MBB->end();
115 return LIS.getInstructionFromIndex(LSP);
116}
117
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000118/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenff095502010-07-20 16:12:37 +0000119void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000120 assert(UseSlots.empty() && "Call clear first");
121
122 // First get all the defs from the interval values. This provides the correct
123 // slots for early clobbers.
Matthias Braun96761952014-12-10 23:07:54 +0000124 for (const VNInfo *VNI : CurLI->valnos)
125 if (!VNI->isPHIDef() && !VNI->isUnused())
126 UseSlots.push_back(VNI->def);
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000127
128 // Get use slots form the use-def chain.
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000129 const MachineRegisterInfo &MRI = MF.getRegInfo();
Owen Andersonb36376e2014-03-17 19:36:09 +0000130 for (MachineOperand &MO : MRI.use_nodbg_operands(CurLI->reg))
131 if (!MO.isUndef())
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000132 UseSlots.push_back(LIS.getInstructionIndex(*MO.getParent()).getRegSlot());
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000133
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000134 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000135
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000136 // Remove duplicates, keeping the smaller slot for each instruction.
137 // That is what we want for early clobbers.
138 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
139 SlotIndex::isSameInstr),
140 UseSlots.end());
141
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000142 // Compute per-live block info.
143 if (!calcLiveBlockInfo()) {
144 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola676c4052011-06-26 22:34:10 +0000145 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +0000146 DidRepairRange = true;
Jakob Stoklund Olesen50215af2011-05-10 17:37:41 +0000147 ++NumRepairs;
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000148 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
149 const_cast<LiveIntervals&>(LIS)
150 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000151 UseBlocks.clear();
152 ThroughBlocks.clear();
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000153 bool fixed = calcLiveBlockInfo();
154 (void)fixed;
155 assert(fixed && "Couldn't fix broken live interval");
156 }
157
Jakob Stoklund Olesenbd6b86e2011-03-27 22:49:23 +0000158 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000159 << UseSlots.size() << " instrs in "
160 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000161 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000162}
163
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000164/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
165/// where CurLI is live.
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000166bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000167 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000168 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000169 if (CurLI->empty())
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000170 return true;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000171
172 LiveInterval::const_iterator LVI = CurLI->begin();
173 LiveInterval::const_iterator LVE = CurLI->end();
174
175 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
176 UseI = UseSlots.begin();
177 UseE = UseSlots.end();
178
179 // Loop over basic blocks where CurLI is live.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000180 MachineFunction::iterator MFI =
181 LIS.getMBBFromIndex(LVI->start)->getIterator();
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000182 for (;;) {
183 BlockInfo BI;
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000184 BI.MBB = &*MFI;
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000185 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000186 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000187
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000188 // If the block contains no uses, the range must be live through. At one
Rafael Espindola676c4052011-06-26 22:34:10 +0000189 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000190 // mid-block.
191 if (UseI == UseE || *UseI >= Stop) {
192 ++NumThroughBlocks;
193 ThroughBlocks.set(BI.MBB->getNumber());
194 // The range shouldn't end mid-block if there are no uses. This shouldn't
195 // happen.
196 if (LVI->end < Stop)
197 return false;
198 } else {
199 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000200 BI.FirstInstr = *UseI;
201 assert(BI.FirstInstr >= Start);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000202 do ++UseI;
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000203 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000204 BI.LastInstr = UseI[-1];
205 assert(BI.LastInstr < Stop);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000206
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000207 // LVI is the first live segment overlapping MBB.
208 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000209
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000210 // When not live in, the first use should be a def.
211 if (!BI.LiveIn) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000212 assert(LVI->start == LVI->valno->def && "Dangling Segment start");
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000213 assert(LVI->start == BI.FirstInstr && "First instr should be a def");
214 BI.FirstDef = BI.FirstInstr;
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000215 }
216
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000217 // Look for gaps in the live range.
218 BI.LiveOut = true;
219 while (LVI->end < Stop) {
220 SlotIndex LastStop = LVI->end;
221 if (++LVI == LVE || LVI->start >= Stop) {
222 BI.LiveOut = false;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000223 BI.LastInstr = LastStop;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000224 break;
225 }
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000226
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000227 if (LastStop < LVI->start) {
228 // There is a gap in the live range. Create duplicate entries for the
229 // live-in snippet and the live-out snippet.
230 ++NumGapBlocks;
231
232 // Push the Live-in part.
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000233 BI.LiveOut = false;
234 UseBlocks.push_back(BI);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000235 UseBlocks.back().LastInstr = LastStop;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000236
237 // Set up BI for the live-out part.
238 BI.LiveIn = false;
239 BI.LiveOut = true;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000240 BI.FirstInstr = BI.FirstDef = LVI->start;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000241 }
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000242
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000243 // A Segment that starts in the middle of the block must be a def.
244 assert(LVI->start == LVI->valno->def && "Dangling Segment start");
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000245 if (!BI.FirstDef)
246 BI.FirstDef = LVI->start;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000247 }
248
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000249 UseBlocks.push_back(BI);
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000250
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000251 // LVI is now at LVE or LVI->end >= Stop.
252 if (LVI == LVE)
253 break;
254 }
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000255
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000256 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000257 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000258 break;
259
260 // Pick the next basic block.
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000261 if (LVI->start < Stop)
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000262 ++MFI;
263 else
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000264 MFI = LIS.getMBBFromIndex(LVI->start)->getIterator();
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000265 }
Jakob Stoklund Olesen5cc91b22011-05-28 02:32:57 +0000266
267 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000268 return true;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000269}
270
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +0000271unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
272 if (cli->empty())
273 return 0;
274 LiveInterval *li = const_cast<LiveInterval*>(cli);
275 LiveInterval::iterator LVI = li->begin();
276 LiveInterval::iterator LVE = li->end();
277 unsigned Count = 0;
278
279 // Loop over basic blocks where li is live.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000280 MachineFunction::const_iterator MFI =
281 LIS.getMBBFromIndex(LVI->start)->getIterator();
282 SlotIndex Stop = LIS.getMBBEndIdx(&*MFI);
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +0000283 for (;;) {
284 ++Count;
285 LVI = li->advanceTo(LVI, Stop);
286 if (LVI == LVE)
287 return Count;
288 do {
289 ++MFI;
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000290 Stop = LIS.getMBBEndIdx(&*MFI);
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +0000291 } while (Stop <= LVI->start);
292 }
293}
294
Jakob Stoklund Olesen60a26a62011-02-21 23:09:46 +0000295bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
296 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
297 const LiveInterval &Orig = LIS.getInterval(OrigReg);
298 assert(!Orig.empty() && "Splitting empty interval?");
299 LiveInterval::const_iterator I = Orig.find(Idx);
300
301 // Range containing Idx should begin at Idx.
302 if (I != Orig.end() && I->start <= Idx)
303 return I->start == Idx;
304
305 // Range does not contain Idx, previous must end at Idx.
306 return I != Orig.begin() && (--I)->end == Idx;
307}
308
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000309void SplitAnalysis::analyze(const LiveInterval *li) {
310 clear();
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000311 CurLI = li;
Jakob Stoklund Olesenff095502010-07-20 16:12:37 +0000312 analyzeUses();
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000313}
314
Jakob Stoklund Olesen28e769c2010-12-15 17:49:52 +0000315
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000316//===----------------------------------------------------------------------===//
317// Split Editor
318//===----------------------------------------------------------------------===//
319
320/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Eric Christopherd9134482014-08-04 21:25:23 +0000321SplitEditor::SplitEditor(SplitAnalysis &sa, LiveIntervals &lis, VirtRegMap &vrm,
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000322 MachineDominatorTree &mdt,
323 MachineBlockFrequencyInfo &mbfi)
Eric Christopherd9134482014-08-04 21:25:23 +0000324 : SA(sa), LIS(lis), VRM(vrm), MRI(vrm.getMachineFunction().getRegInfo()),
Eric Christopher60621802014-10-14 07:22:00 +0000325 MDT(mdt), TII(*vrm.getMachineFunction().getSubtarget().getInstrInfo()),
326 TRI(*vrm.getMachineFunction().getSubtarget().getRegisterInfo()),
Eric Christopherd9134482014-08-04 21:25:23 +0000327 MBFI(mbfi), Edit(nullptr), OpenIdx(0), SpillMode(SM_Partition),
328 RegAssign(Allocator) {}
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000329
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +0000330void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
331 Edit = &LRE;
332 SpillMode = SM;
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000333 OpenIdx = 0;
334 RegAssign.clear();
335 Values.clear();
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000336
337 // Reset the LiveRangeCalc instances needed for this spill mode.
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000338 LRCalc[0].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
339 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000340 if (SpillMode)
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000341 LRCalc[1].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
342 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000343
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000344 // We don't need an AliasAnalysis since we will only be performing
345 // cheap-as-a-copy remats anyway.
Craig Topperc0196b12014-04-14 00:51:57 +0000346 Edit->anyRematerializable(nullptr);
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000347}
348
Manman Ren19f49ac2012-09-11 22:23:19 +0000349#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +0000350LLVM_DUMP_METHOD void SplitEditor::dump() const {
Eric Christopherede62672011-02-03 06:18:29 +0000351 if (RegAssign.empty()) {
352 dbgs() << " empty\n";
353 return;
354 }
355
356 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
357 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
358 dbgs() << '\n';
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +0000359}
Manman Ren742534c2012-09-06 19:06:06 +0000360#endif
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +0000361
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000362VNInfo *SplitEditor::defValue(unsigned RegIdx,
363 const VNInfo *ParentVNI,
364 SlotIndex Idx) {
365 assert(ParentVNI && "Mapping NULL value");
366 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000367 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
Mark Laceyf9ea8852013-08-14 23:50:04 +0000368 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000369
370 // Create a new value.
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000371 VNInfo *VNI = LI->getNextValue(Idx, LIS.getVNInfoAllocator());
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000372
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000373 // Use insert for lookup, so we can add missing values with a second lookup.
374 std::pair<ValueMap::iterator, bool> InsP =
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000375 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id),
376 ValueForcePair(VNI, false)));
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000377
378 // This was the first time (RegIdx, ParentVNI) was mapped.
379 // Keep it as a simple def without any liveness.
380 if (InsP.second)
381 return VNI;
382
383 // If the previous value was a simple mapping, add liveness for it now.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000384 if (VNInfo *OldVNI = InsP.first->second.getPointer()) {
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000385 SlotIndex Def = OldVNI->def;
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000386 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), OldVNI));
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000387 // No longer a simple mapping. Switch to a complex, non-forced mapping.
388 InsP.first->second = ValueForcePair();
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000389 }
390
391 // This is a complex mapping, add liveness for VNI
392 SlotIndex Def = VNI->def;
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000393 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000394
395 return VNI;
396}
397
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000398void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI) {
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000399 assert(ParentVNI && "Mapping NULL value");
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000400 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)];
401 VNInfo *VNI = VFP.getPointer();
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000402
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000403 // ParentVNI was either unmapped or already complex mapped. Either way, just
404 // set the force bit.
405 if (!VNI) {
406 VFP.setInt(true);
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000407 return;
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000408 }
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000409
410 // This was previously a single mapping. Make sure the old def is represented
411 // by a trivial live range.
412 SlotIndex Def = VNI->def;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000413 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000414 LI->addSegment(LiveInterval::Segment(Def, Def.getDeadSlot(), VNI));
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000415 // Mark as complex mapped, forced.
Craig Topperc0196b12014-04-14 00:51:57 +0000416 VFP = ValueForcePair(nullptr, true);
Jakob Stoklund Olesen4484f992011-09-13 18:05:29 +0000417}
418
Eric Christopherede62672011-02-03 06:18:29 +0000419VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000420 VNInfo *ParentVNI,
421 SlotIndex UseIdx,
422 MachineBasicBlock &MBB,
423 MachineBasicBlock::iterator I) {
Craig Topperc0196b12014-04-14 00:51:57 +0000424 MachineInstr *CopyMI = nullptr;
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000425 SlotIndex Def;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000426 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000427
Jakob Stoklund Olesen7d406792011-05-02 05:29:58 +0000428 // We may be trying to avoid interference that ends at a deleted instruction,
429 // so always begin RegIdx 0 early and all others late.
430 bool Late = RegIdx != 0;
431
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000432 // Attempt cheap-as-a-copy rematerialization.
433 LiveRangeEdit::Remat RM(ParentVNI);
Wei Mifb5252c2016-04-04 17:45:03 +0000434 if (Edit->canRematerializeAt(RM, UseIdx, true)) {
Pete Cooper2bde2f42012-04-02 22:22:53 +0000435 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, TRI, Late);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000436 ++NumRemats;
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000437 } else {
438 // Can't remat, just insert a copy from parent.
Eric Christopherede62672011-02-03 06:18:29 +0000439 CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000440 .addReg(Edit->getReg());
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000441 Def = LIS.getSlotIndexes()
442 ->insertMachineInstrInMaps(*CopyMI, Late)
443 .getRegSlot();
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000444 ++NumCopies;
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000445 }
446
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000447 // Define the value in Reg.
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000448 return defValue(RegIdx, ParentVNI, Def);
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000449}
450
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000451/// Create a new virtual register and live interval.
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000452unsigned SplitEditor::openIntv() {
Eric Christopherede62672011-02-03 06:18:29 +0000453 // Create the complement as index 0.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000454 if (Edit->empty())
Mark Lacey9d8103d2013-08-14 23:50:16 +0000455 Edit->createEmptyInterval();
Eric Christopherede62672011-02-03 06:18:29 +0000456
457 // Create the open interval.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000458 OpenIdx = Edit->size();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000459 Edit->createEmptyInterval();
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000460 return OpenIdx;
461}
462
463void SplitEditor::selectIntv(unsigned Idx) {
464 assert(Idx != 0 && "Cannot select the complement interval");
465 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000466 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000467 OpenIdx = Idx;
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000468}
469
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000470SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopherede62672011-02-03 06:18:29 +0000471 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000472 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000473 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000474 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000475 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000476 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000477 return Idx;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000478 }
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000479 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000480 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000481 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000482
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000483 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
484 return VNI->def;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000485}
486
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000487SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
488 assert(OpenIdx && "openIntv not called before enterIntvAfter");
489 DEBUG(dbgs() << " enterIntvAfter " << Idx);
490 Idx = Idx.getBoundaryIndex();
491 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
492 if (!ParentVNI) {
493 DEBUG(dbgs() << ": not live\n");
494 return Idx;
495 }
496 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
497 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
498 assert(MI && "enterIntvAfter called with invalid index");
499
500 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000501 std::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000502 return VNI->def;
503}
504
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000505SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopherede62672011-02-03 06:18:29 +0000506 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000507 SlotIndex End = LIS.getMBBEndIdx(&MBB);
508 SlotIndex Last = End.getPrevSlot();
509 DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000510 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000511 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000512 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000513 return End;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000514 }
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000515 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000516 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesen67aec122012-01-11 02:07:00 +0000517 SA.getLastSplitPointIter(&MBB));
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000518 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopherede62672011-02-03 06:18:29 +0000519 DEBUG(dump());
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000520 return VNI->def;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000521}
522
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000523/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000524void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000525 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000526}
527
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000528void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopherede62672011-02-03 06:18:29 +0000529 assert(OpenIdx && "openIntv not called before useIntv");
530 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
531 RegAssign.insert(Start, End, OpenIdx);
532 DEBUG(dump());
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000533}
534
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000535SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopherede62672011-02-03 06:18:29 +0000536 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000537 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000538
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000539 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000540 SlotIndex Boundary = Idx.getBoundaryIndex();
541 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000542 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000543 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000544 return Boundary.getNextSlot();
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000545 }
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000546 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000547 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
Jakob Stoklund Olesen3d11c8e2011-02-08 18:50:18 +0000548 assert(MI && "No instruction at index");
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000549
550 // In spill mode, make live ranges as short as possible by inserting the copy
551 // before MI. This is only possible if that instruction doesn't redefine the
552 // value. The inserted COPY is not a kill, and we don't need to recompute
553 // the source live range. The spiller also won't try to hoist this copy.
554 if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) &&
555 MI->readsVirtualRegister(Edit->getReg())) {
556 forceRecompute(0, ParentVNI);
557 defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
558 return Idx;
559 }
560
561 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000562 std::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000563 return VNI->def;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000564}
565
Jakob Stoklund Olesen7cb57b32011-02-09 23:30:25 +0000566SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
567 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
568 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
569
570 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenc45d38e2011-07-18 18:47:13 +0000571 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000572 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen7cb57b32011-02-09 23:30:25 +0000573 if (!ParentVNI) {
574 DEBUG(dbgs() << ": not live\n");
575 return Idx.getNextSlot();
576 }
577 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
578
579 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
580 assert(MI && "No instruction at index");
581 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
582 return VNI->def;
583}
584
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000585SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopherede62672011-02-03 06:18:29 +0000586 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000587 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000588 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000589
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000590 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000591 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000592 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000593 return Start;
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000594 }
595
Eric Christopherede62672011-02-03 06:18:29 +0000596 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000597 MBB.SkipPHIsAndLabels(MBB.begin()));
Eric Christopherede62672011-02-03 06:18:29 +0000598 RegAssign.insert(Start, VNI->def, OpenIdx);
599 DEBUG(dump());
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000600 return VNI->def;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000601}
602
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000603void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
604 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000605 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesend7bcf432011-11-14 01:39:36 +0000606 assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) &&
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000607 "Parent changes value in extended range");
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000608 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
609 "Range cannot span basic blocks");
610
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000611 // The complement interval will be extended as needed by LRCalc.extend().
Jakob Stoklund Olesen5c482cd2011-04-05 23:43:14 +0000612 if (ParentVNI)
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000613 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000614 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
615 RegAssign.insert(Start, End, OpenIdx);
616 DEBUG(dump());
617}
618
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000619//===----------------------------------------------------------------------===//
620// Spill modes
621//===----------------------------------------------------------------------===//
622
623void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000624 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000625 DEBUG(dbgs() << "Removing " << Copies.size() << " back-copies.\n");
626 RegAssignMap::iterator AssignI;
627 AssignI.setMap(RegAssign);
628
629 for (unsigned i = 0, e = Copies.size(); i != e; ++i) {
Matthias Braun311730a2015-01-21 19:02:30 +0000630 SlotIndex Def = Copies[i]->def;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000631 MachineInstr *MI = LIS.getInstructionFromIndex(Def);
632 assert(MI && "No instruction for back-copy");
633
634 MachineBasicBlock *MBB = MI->getParent();
635 MachineBasicBlock::iterator MBBI(MI);
636 bool AtBegin;
637 do AtBegin = MBBI == MBB->begin();
638 while (!AtBegin && (--MBBI)->isDebugValue());
639
640 DEBUG(dbgs() << "Removing " << Def << '\t' << *MI);
Matthias Braun311730a2015-01-21 19:02:30 +0000641 LIS.removeVRegDefAt(*LI, Def);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000642 LIS.RemoveMachineInstrFromMaps(*MI);
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000643 MI->eraseFromParent();
644
Matthias Braun311730a2015-01-21 19:02:30 +0000645 // Adjust RegAssign if a register assignment is killed at Def. We want to
646 // avoid calculating the live range of the source register if possible.
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +0000647 AssignI.find(Def.getPrevSlot());
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000648 if (!AssignI.valid() || AssignI.start() >= Def)
649 continue;
650 // If MI doesn't kill the assigned register, just leave it.
651 if (AssignI.stop() != Def)
652 continue;
653 unsigned RegIdx = AssignI.value();
654 if (AtBegin || !MBBI->readsVirtualRegister(Edit->getReg())) {
655 DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n');
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000656 forceRecompute(RegIdx, Edit->getParent().getVNInfoAt(Def));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000657 } else {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000658 SlotIndex Kill = LIS.getInstructionIndex(*MBBI).getRegSlot();
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000659 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
660 AssignI.setStop(Kill);
661 }
662 }
663}
664
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000665MachineBasicBlock*
666SplitEditor::findShallowDominator(MachineBasicBlock *MBB,
667 MachineBasicBlock *DefMBB) {
668 if (MBB == DefMBB)
669 return MBB;
670 assert(MDT.dominates(DefMBB, MBB) && "MBB must be dominated by the def.");
671
672 const MachineLoopInfo &Loops = SA.Loops;
673 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
674 MachineDomTreeNode *DefDomNode = MDT[DefMBB];
675
676 // Best candidate so far.
677 MachineBasicBlock *BestMBB = MBB;
678 unsigned BestDepth = UINT_MAX;
679
680 for (;;) {
681 const MachineLoop *Loop = Loops.getLoopFor(MBB);
682
683 // MBB isn't in a loop, it doesn't get any better. All dominators have a
684 // higher frequency by definition.
685 if (!Loop) {
686 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
687 << MBB->getNumber() << " at depth 0\n");
688 return MBB;
689 }
690
691 // We'll never be able to exit the DefLoop.
692 if (Loop == DefLoop) {
693 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
694 << MBB->getNumber() << " in the same loop\n");
695 return MBB;
696 }
697
698 // Least busy dominator seen so far.
699 unsigned Depth = Loop->getLoopDepth();
700 if (Depth < BestDepth) {
701 BestMBB = MBB;
702 BestDepth = Depth;
703 DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#"
704 << MBB->getNumber() << " at depth " << Depth << '\n');
705 }
706
707 // Leave loop by going to the immediate dominator of the loop header.
708 // This is a bigger stride than simply walking up the dominator tree.
709 MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom();
710
711 // Too far up the dominator tree?
712 if (!IDom || !MDT.dominates(DefDomNode, IDom))
713 return BestMBB;
714
715 MBB = IDom->getBlock();
716 }
717}
718
Wei Mifb5252c2016-04-04 17:45:03 +0000719void SplitEditor::hoistCopiesForSize() {
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000720 // Get the complement interval, always RegIdx 0.
Mark Laceyf9ea8852013-08-14 23:50:04 +0000721 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000722 LiveInterval *Parent = &Edit->getParent();
723
724 // Track the nearest common dominator for all back-copies for each ParentVNI,
725 // indexed by ParentVNI->id.
726 typedef std::pair<MachineBasicBlock*, SlotIndex> DomPair;
727 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
728
729 // Find the nearest common dominator for parent values with multiple
730 // back-copies. If a single back-copy dominates, put it in DomPair.second.
Matthias Braun96761952014-12-10 23:07:54 +0000731 for (VNInfo *VNI : LI->valnos) {
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +0000732 if (VNI->isUnused())
733 continue;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000734 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
735 assert(ParentVNI && "Parent not live at complement def");
736
737 // Don't hoist remats. The complement is probably going to disappear
738 // completely anyway.
739 if (Edit->didRematerialize(ParentVNI))
740 continue;
741
742 MachineBasicBlock *ValMBB = LIS.getMBBFromIndex(VNI->def);
743 DomPair &Dom = NearestDom[ParentVNI->id];
744
745 // Keep directly defined parent values. This is either a PHI or an
746 // instruction in the complement range. All other copies of ParentVNI
747 // should be eliminated.
748 if (VNI->def == ParentVNI->def) {
749 DEBUG(dbgs() << "Direct complement def at " << VNI->def << '\n');
750 Dom = DomPair(ValMBB, VNI->def);
751 continue;
752 }
753 // Skip the singly mapped values. There is nothing to gain from hoisting a
754 // single back-copy.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000755 if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) {
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000756 DEBUG(dbgs() << "Single complement def at " << VNI->def << '\n');
757 continue;
758 }
759
760 if (!Dom.first) {
761 // First time we see ParentVNI. VNI dominates itself.
762 Dom = DomPair(ValMBB, VNI->def);
763 } else if (Dom.first == ValMBB) {
764 // Two defs in the same block. Pick the earlier def.
765 if (!Dom.second.isValid() || VNI->def < Dom.second)
766 Dom.second = VNI->def;
767 } else {
768 // Different basic blocks. Check if one dominates.
769 MachineBasicBlock *Near =
770 MDT.findNearestCommonDominator(Dom.first, ValMBB);
771 if (Near == ValMBB)
772 // Def ValMBB dominates.
773 Dom = DomPair(ValMBB, VNI->def);
774 else if (Near != Dom.first)
775 // None dominate. Hoist to common dominator, need new def.
776 Dom = DomPair(Near, SlotIndex());
777 }
778
779 DEBUG(dbgs() << "Multi-mapped complement " << VNI->id << '@' << VNI->def
780 << " for parent " << ParentVNI->id << '@' << ParentVNI->def
781 << " hoist to BB#" << Dom.first->getNumber() << ' '
782 << Dom.second << '\n');
783 }
784
785 // Insert the hoisted copies.
786 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
787 DomPair &Dom = NearestDom[i];
788 if (!Dom.first || Dom.second.isValid())
789 continue;
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000790 // This value needs a hoisted copy inserted at the end of Dom.first.
791 VNInfo *ParentVNI = Parent->getValNumInfo(i);
792 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(ParentVNI->def);
793 // Get a less loopy dominator than Dom.first.
794 Dom.first = findShallowDominator(Dom.first, DefMBB);
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000795 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
796 Dom.second =
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000797 defFromParent(0, ParentVNI, Last, *Dom.first,
Jakob Stoklund Olesen67aec122012-01-11 02:07:00 +0000798 SA.getLastSplitPointIter(Dom.first))->def;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000799 }
800
801 // Remove redundant back-copies that are now known to be dominated by another
802 // def with the same value.
803 SmallVector<VNInfo*, 8> BackCopies;
Matthias Braun96761952014-12-10 23:07:54 +0000804 for (VNInfo *VNI : LI->valnos) {
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +0000805 if (VNI->isUnused())
806 continue;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000807 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
808 const DomPair &Dom = NearestDom[ParentVNI->id];
Wei Mifb5252c2016-04-04 17:45:03 +0000809 if (!Dom.first || Dom.second == VNI->def)
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000810 continue;
811 BackCopies.push_back(VNI);
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000812 forceRecompute(0, ParentVNI);
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000813 }
814 removeBackCopies(BackCopies);
815}
816
817
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000818/// transferValues - Transfer all possible values to the new live ranges.
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000819/// Values that were rematerialized are left alone, they need LRCalc.extend().
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000820bool SplitEditor::transferValues() {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000821 bool Skipped = false;
822 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Matthias Braun96761952014-12-10 23:07:54 +0000823 for (const LiveRange::Segment &S : Edit->getParent()) {
824 DEBUG(dbgs() << " blit " << S << ':');
825 VNInfo *ParentVNI = S.valno;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000826 // RegAssign has holes where RegIdx 0 should be used.
Matthias Braun96761952014-12-10 23:07:54 +0000827 SlotIndex Start = S.start;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000828 AssignI.advanceTo(Start);
829 do {
830 unsigned RegIdx;
Matthias Braun96761952014-12-10 23:07:54 +0000831 SlotIndex End = S.end;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000832 if (!AssignI.valid()) {
833 RegIdx = 0;
834 } else if (AssignI.start() <= Start) {
835 RegIdx = AssignI.value();
836 if (AssignI.stop() < End) {
837 End = AssignI.stop();
838 ++AssignI;
839 }
840 } else {
841 RegIdx = 0;
842 End = std::min(End, AssignI.start());
843 }
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000844
845 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000846 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx);
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000847 LiveRange &LR = LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000848
849 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000850 ValueForcePair VFP = Values.lookup(std::make_pair(RegIdx, ParentVNI->id));
851 if (VNInfo *VNI = VFP.getPointer()) {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000852 DEBUG(dbgs() << ':' << VNI->id);
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000853 LR.addSegment(LiveInterval::Segment(Start, End, VNI));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000854 Start = End;
855 continue;
856 }
857
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000858 // Skip values with forced recomputation.
859 if (VFP.getInt()) {
860 DEBUG(dbgs() << "(recalc)");
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000861 Skipped = true;
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000862 Start = End;
863 continue;
864 }
865
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000866 LiveRangeCalc &LRC = getLRCalc(RegIdx);
867
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000868 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
869 // so the live range is accurate. Add live-in blocks in [Start;End) to the
870 // LiveInBlocks.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000871 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start)->getIterator();
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000872 SlotIndex BlockStart, BlockEnd;
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000873 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(&*MBB);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000874
875 // The first block may be live-in, or it may have its own def.
876 if (Start != BlockStart) {
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000877 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000878 assert(VNI && "Missing def for complex mapped value");
879 DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber());
880 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000881 if (BlockEnd <= End)
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000882 LRC.setLiveOutValue(&*MBB, VNI);
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000883
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000884 // Skip to the next block for live-in.
885 ++MBB;
886 BlockStart = BlockEnd;
887 }
888
889 // Handle the live-in blocks covered by [Start;End).
890 assert(Start <= BlockStart && "Expected live-in block");
891 while (BlockStart < End) {
892 DEBUG(dbgs() << ">BB#" << MBB->getNumber());
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000893 BlockEnd = LIS.getMBBEndIdx(&*MBB);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000894 if (BlockStart == ParentVNI->def) {
895 // This block has the def of a parent PHI, so it isn't live-in.
896 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000897 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000898 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000899 if (End >= BlockEnd)
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000900 LRC.setLiveOutValue(&*MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000901 } else {
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000902 // This block needs a live-in value. The last block covered may not
903 // be live-out.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000904 if (End < BlockEnd)
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000905 LRC.addLiveInBlock(LR, MDT[&*MBB], End);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000906 else {
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +0000907 // Live-through, and we don't know the value.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000908 LRC.addLiveInBlock(LR, MDT[&*MBB]);
909 LRC.setLiveOutValue(&*MBB, nullptr);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000910 }
911 }
912 BlockStart = BlockEnd;
913 ++MBB;
914 }
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000915 Start = End;
Matthias Braun96761952014-12-10 23:07:54 +0000916 } while (Start != S.end);
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000917 DEBUG(dbgs() << '\n');
918 }
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000919
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000920 LRCalc[0].calculateValues();
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000921 if (SpillMode)
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000922 LRCalc[1].calculateValues();
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +0000923
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000924 return Skipped;
925}
926
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000927void SplitEditor::extendPHIKillRanges() {
928 // Extend live ranges to be live-out for successor PHI values.
Matthias Braun96761952014-12-10 23:07:54 +0000929 for (const VNInfo *PHIVNI : Edit->getParent().valnos) {
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000930 if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
931 continue;
932 unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000933 LiveRange &LR = LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000934 LiveRangeCalc &LRC = getLRCalc(RegIdx);
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000935 MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
936 for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
937 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000938 SlotIndex End = LIS.getMBBEndIdx(*PI);
939 SlotIndex LastUse = End.getPrevSlot();
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000940 // The predecessor may not have a live-out value. That is OK, like an
941 // undef PHI operand.
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000942 if (Edit->getParent().liveAt(LastUse)) {
943 assert(RegAssign.lookup(LastUse) == RegIdx &&
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000944 "Different register assignment in phi predecessor");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000945 LRC.extend(LR, End);
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +0000946 }
947 }
948 }
949}
950
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000951/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +0000952void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000953 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000954 RE = MRI.reg_end(); RI != RE;) {
Owen Anderson16c6bf42014-03-13 23:12:04 +0000955 MachineOperand &MO = *RI;
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +0000956 MachineInstr *MI = MO.getParent();
957 ++RI;
Eric Christopherede62672011-02-03 06:18:29 +0000958 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +0000959 if (MI->isDebugValue()) {
960 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +0000961 MO.setReg(0);
962 continue;
963 }
Jakob Stoklund Olesenf6e03942011-02-09 21:52:09 +0000964
Jakob Stoklund Olesen56a56eb2011-07-24 20:23:50 +0000965 // <undef> operands don't really read the register, so it doesn't matter
966 // which register we choose. When the use operand is tied to a def, we must
967 // use the same register as the def, so just do that always.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000968 SlotIndex Idx = LIS.getInstructionIndex(*MI);
Jakob Stoklund Olesen56a56eb2011-07-24 20:23:50 +0000969 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000970 Idx = Idx.getRegSlot(MO.isEarlyClobber());
Eric Christopherede62672011-02-03 06:18:29 +0000971
972 // Rewrite to the mapped register at Idx.
973 unsigned RegIdx = RegAssign.lookup(Idx);
Mark Laceyf9ea8852013-08-14 23:50:04 +0000974 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000975 MO.setReg(LI->reg);
Eric Christopherede62672011-02-03 06:18:29 +0000976 DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
977 << Idx << ':' << RegIdx << '\t' << *MI);
978
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +0000979 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen73a9eb92011-07-24 20:33:23 +0000980 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +0000981 continue;
982
983 // Skip instructions that don't read Reg.
984 if (MO.isDef()) {
985 if (!MO.getSubReg() && !MO.isEarlyClobber())
986 continue;
987 // We may wan't to extend a live range for a partial redef, or for a use
988 // tied to an early clobber.
989 Idx = Idx.getPrevSlot();
990 if (!Edit->getParent().liveAt(Idx))
991 continue;
992 } else
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000993 Idx = Idx.getRegSlot(true);
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +0000994
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000995 getLRCalc(RegIdx).extend(*LI, Idx.getNextSlot());
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +0000996 }
997}
998
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +0000999void SplitEditor::deleteRematVictims() {
1000 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001001 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
Mark Laceyf9ea8852013-08-14 23:50:04 +00001002 LiveInterval *LI = &LIS.getInterval(*I);
Matthias Braun96761952014-12-10 23:07:54 +00001003 for (const LiveRange::Segment &S : LI->segments) {
Jakob Stoklund Olesend8f24052011-11-13 22:42:13 +00001004 // Dead defs end at the dead slot.
Matthias Braun96761952014-12-10 23:07:54 +00001005 if (S.end != S.valno->def.getDeadSlot())
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001006 continue;
Matthias Braun96761952014-12-10 23:07:54 +00001007 MachineInstr *MI = LIS.getInstructionFromIndex(S.valno->def);
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001008 assert(MI && "Missing instruction for dead def");
1009 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001010
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001011 if (!MI->allDefsAreDead())
1012 continue;
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001013
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001014 DEBUG(dbgs() << "All defs dead: " << *MI);
1015 Dead.push_back(MI);
1016 }
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001017 }
1018
1019 if (Dead.empty())
1020 return;
1021
Pete Cooper2bde2f42012-04-02 22:22:53 +00001022 Edit->eliminateDeadDefs(Dead);
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001023}
1024
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001025void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001026 ++NumFinished;
Eric Christopher21933532011-02-03 05:40:54 +00001027
Eric Christopherede62672011-02-03 06:18:29 +00001028 // At this point, the live intervals in Edit contain VNInfos corresponding to
1029 // the inserted copies.
1030
1031 // Add the original defs from the parent interval.
Matthias Braun96761952014-12-10 23:07:54 +00001032 for (const VNInfo *ParentVNI : Edit->getParent().valnos) {
Jakob Stoklund Olesen3295a992011-02-04 00:59:23 +00001033 if (ParentVNI->isUnused())
1034 continue;
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +00001035 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Jakob Stoklund Olesen97e14e02012-07-27 21:11:14 +00001036 defValue(RegIdx, ParentVNI, ParentVNI->def);
Jakob Stoklund Olesen32210de2011-03-15 21:13:22 +00001037
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +00001038 // Force rematted values to be recomputed everywhere.
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001039 // The new live ranges may be truncated.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +00001040 if (Edit->didRematerialize(ParentVNI))
1041 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +00001042 forceRecompute(i, ParentVNI);
Eric Christopherede62672011-02-03 06:18:29 +00001043 }
1044
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001045 // Hoist back-copies to the complement interval when in spill mode.
1046 switch (SpillMode) {
1047 case SM_Partition:
1048 // Leave all back-copies as is.
1049 break;
1050 case SM_Size:
Wei Mifb5252c2016-04-04 17:45:03 +00001051 hoistCopiesForSize();
1052 break;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001053 case SM_Speed:
Wei Mifb5252c2016-04-04 17:45:03 +00001054 llvm_unreachable("Spill mode 'speed' not implemented yet");
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001055 }
1056
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001057 // Transfer the simply mapped values, check if any are skipped.
1058 bool Skipped = transferValues();
1059 if (Skipped)
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001060 extendPHIKillRanges();
1061 else
1062 ++NumSimple;
Eric Christopherede62672011-02-03 06:18:29 +00001063
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001064 // Rewrite virtual registers, possibly extending ranges.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001065 rewriteAssigned(Skipped);
Eric Christopherede62672011-02-03 06:18:29 +00001066
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001067 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001068 if (Skipped)
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001069 deleteRematVictims();
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +00001070
Jakob Stoklund Olesen0f1677e2010-10-07 23:34:34 +00001071 // Get rid of unused values and set phi-kill flags.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001072 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I) {
1073 LiveInterval &LI = LIS.getInterval(*I);
1074 LI.RenumberValues();
1075 }
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +00001076
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001077 // Provide a reverse mapping from original indices to Edit ranges.
1078 if (LRMap) {
1079 LRMap->clear();
1080 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1081 LRMap->push_back(i);
1082 }
1083
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001084 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +00001085 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +00001086 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001087 // Don't use iterators, they are invalidated by create() below.
Matthias Braund3dd1352015-09-22 03:44:41 +00001088 unsigned VReg = Edit->get(i);
1089 LiveInterval &LI = LIS.getInterval(VReg);
1090 SmallVector<LiveInterval*, 8> SplitLIs;
1091 LIS.splitSeparateComponents(LI, SplitLIs);
1092 unsigned Original = VRM.getOriginal(VReg);
1093 for (LiveInterval *SplitLI : SplitLIs)
1094 VRM.setIsSplitFromReg(SplitLI->reg, Original);
1095
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001096 // The new intervals all map back to i.
1097 if (LRMap)
1098 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001099 }
1100
Jakob Stoklund Olesen284c2db2010-08-10 17:07:22 +00001101 // Calculate spill weight and allocation hints for new intervals.
Benjamin Kramere2a1d892013-06-17 19:00:36 +00001102 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), SA.Loops, MBFI);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001103
1104 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +00001105}
1106
1107
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +00001108//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +00001109// Single Block Splitting
1110//===----------------------------------------------------------------------===//
1111
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001112bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
1113 bool SingleInstrs) const {
1114 // Always split for multiple instructions.
1115 if (!BI.isOneInstr())
1116 return true;
1117 // Don't split for single instructions unless explicitly requested.
1118 if (!SingleInstrs)
1119 return false;
1120 // Splitting a live-through range always makes progress.
1121 if (BI.LiveIn && BI.LiveOut)
1122 return true;
1123 // No point in isolating a copy. It has no register class constraints.
1124 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
1125 return false;
1126 // Finally, don't isolate an end point that was created by earlier splits.
1127 return isOriginalEndpoint(BI.FirstInstr);
1128}
1129
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001130void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1131 openIntv();
1132 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001133 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001134 LastSplitPoint));
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001135 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
1136 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001137 } else {
1138 // The last use is after the last valid split point.
1139 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1140 useIntv(SegStart, SegStop);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001141 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001142 }
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001143}
1144
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001145
1146//===----------------------------------------------------------------------===//
1147// Global Live Range Splitting Support
1148//===----------------------------------------------------------------------===//
1149
1150// These methods support a method of global live range splitting that uses a
1151// global algorithm to decide intervals for CFG edges. They will insert split
1152// points and color intervals in basic blocks while avoiding interference.
1153//
1154// Note that splitSingleBlock is also useful for blocks where both CFG edges
1155// are on the stack.
1156
1157void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
1158 unsigned IntvIn, SlotIndex LeaveBefore,
1159 unsigned IntvOut, SlotIndex EnterAfter){
1160 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001161 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001162
1163 DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop
1164 << ") intf " << LeaveBefore << '-' << EnterAfter
1165 << ", live-through " << IntvIn << " -> " << IntvOut);
1166
1167 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1168
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001169 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
1170 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
1171 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
1172
1173 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
1174
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001175 if (!IntvOut) {
1176 DEBUG(dbgs() << ", spill on entry.\n");
1177 //
1178 // <<<<<<<<< Possible LeaveBefore interference.
1179 // |-----------| Live through.
1180 // -____________ Spill on entry.
1181 //
1182 selectIntv(IntvIn);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001183 SlotIndex Idx = leaveIntvAtTop(*MBB);
1184 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1185 (void)Idx;
1186 return;
1187 }
1188
1189 if (!IntvIn) {
1190 DEBUG(dbgs() << ", reload on exit.\n");
1191 //
1192 // >>>>>>> Possible EnterAfter interference.
1193 // |-----------| Live through.
1194 // ___________-- Reload on exit.
1195 //
1196 selectIntv(IntvOut);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001197 SlotIndex Idx = enterIntvAtEnd(*MBB);
1198 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1199 (void)Idx;
1200 return;
1201 }
1202
1203 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1204 DEBUG(dbgs() << ", straight through.\n");
1205 //
1206 // |-----------| Live through.
1207 // ------------- Straight through, same intv, no interference.
1208 //
1209 selectIntv(IntvOut);
1210 useIntv(Start, Stop);
1211 return;
1212 }
1213
1214 // We cannot legally insert splits after LSP.
1215 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001216 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001217
1218 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1219 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
1220 DEBUG(dbgs() << ", switch avoiding interference.\n");
1221 //
1222 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
1223 // |-----------| Live through.
1224 // ------======= Switch intervals between interference.
1225 //
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001226 selectIntv(IntvOut);
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001227 SlotIndex Idx;
1228 if (LeaveBefore && LeaveBefore < LSP) {
1229 Idx = enterIntvBefore(LeaveBefore);
1230 useIntv(Idx, Stop);
1231 } else {
1232 Idx = enterIntvAtEnd(*MBB);
1233 }
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001234 selectIntv(IntvIn);
1235 useIntv(Start, Idx);
1236 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1237 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1238 return;
1239 }
1240
1241 DEBUG(dbgs() << ", create local intv for interference.\n");
1242 //
1243 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1244 // |-----------| Live through.
1245 // ==---------== Switch intervals before/after interference.
1246 //
1247 assert(LeaveBefore <= EnterAfter && "Missed case");
1248
1249 selectIntv(IntvOut);
1250 SlotIndex Idx = enterIntvAfter(EnterAfter);
1251 useIntv(Idx, Stop);
1252 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1253
1254 selectIntv(IntvIn);
1255 Idx = leaveIntvBefore(LeaveBefore);
1256 useIntv(Start, Idx);
1257 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1258}
1259
1260
1261void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1262 unsigned IntvIn, SlotIndex LeaveBefore) {
1263 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001264 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001265
1266 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001267 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001268 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1269 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1270
1271 assert(IntvIn && "Must have register in");
1272 assert(BI.LiveIn && "Must be live-in");
1273 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1274
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001275 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001276 DEBUG(dbgs() << " before interference.\n");
1277 //
1278 // <<< Interference after kill.
1279 // |---o---x | Killed in block.
1280 // ========= Use IntvIn everywhere.
1281 //
1282 selectIntv(IntvIn);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001283 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001284 return;
1285 }
1286
1287 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1288
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001289 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001290 //
1291 // <<< Possible interference after last use.
1292 // |---o---o---| Live-out on stack.
1293 // =========____ Leave IntvIn after last use.
1294 //
1295 // < Interference after last use.
1296 // |---o---o--o| Live-out on stack, late last use.
1297 // ============ Copy to stack after LSP, overlap IntvIn.
1298 // \_____ Stack interval is live-out.
1299 //
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001300 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001301 DEBUG(dbgs() << ", spill after last use before interference.\n");
1302 selectIntv(IntvIn);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001303 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001304 useIntv(Start, Idx);
1305 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1306 } else {
1307 DEBUG(dbgs() << ", spill before last split point.\n");
1308 selectIntv(IntvIn);
Jakob Stoklund Olesen37e3a132011-07-16 00:13:30 +00001309 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001310 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001311 useIntv(Start, Idx);
1312 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1313 }
1314 return;
1315 }
1316
1317 // The interference is overlapping somewhere we wanted to use IntvIn. That
1318 // means we need to create a local interval that can be allocated a
1319 // different register.
1320 unsigned LocalIntv = openIntv();
Matt Beaumont-Gay26909d82011-07-16 04:18:47 +00001321 (void)LocalIntv;
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001322 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1323
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001324 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001325 //
1326 // <<<<<<< Interference overlapping uses.
1327 // |---o---o---| Live-out on stack.
1328 // =====----____ Leave IntvIn before interference, then spill.
1329 //
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001330 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001331 SlotIndex From = enterIntvBefore(LeaveBefore);
1332 useIntv(From, To);
1333 selectIntv(IntvIn);
1334 useIntv(Start, From);
1335 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1336 return;
1337 }
1338
1339 // <<<<<<< Interference overlapping uses.
1340 // |---o---o--o| Live-out on stack, late last use.
1341 // =====------- Copy to stack before LSP, overlap LocalIntv.
1342 // \_____ Stack interval is live-out.
1343 //
1344 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001345 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001346 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1347 useIntv(From, To);
1348 selectIntv(IntvIn);
1349 useIntv(Start, From);
1350 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1351}
1352
1353void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1354 unsigned IntvOut, SlotIndex EnterAfter) {
1355 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001356 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001357
1358 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001359 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001360 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1361 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1362
1363 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1364
1365 assert(IntvOut && "Must have register out");
1366 assert(BI.LiveOut && "Must be live-out");
1367 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1368
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001369 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001370 DEBUG(dbgs() << " after interference.\n");
1371 //
1372 // >>>> Interference before def.
1373 // | o---o---| Defined in block.
1374 // ========= Use IntvOut everywhere.
1375 //
1376 selectIntv(IntvOut);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001377 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001378 return;
1379 }
1380
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001381 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001382 DEBUG(dbgs() << ", reload after interference.\n");
1383 //
1384 // >>>> Interference before def.
1385 // |---o---o---| Live-through, stack-in.
1386 // ____========= Enter IntvOut before first use.
1387 //
1388 selectIntv(IntvOut);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001389 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001390 useIntv(Idx, Stop);
1391 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1392 return;
1393 }
1394
1395 // The interference is overlapping somewhere we wanted to use IntvOut. That
1396 // means we need to create a local interval that can be allocated a
1397 // different register.
1398 DEBUG(dbgs() << ", interference overlaps uses.\n");
1399 //
1400 // >>>>>>> Interference overlapping uses.
1401 // |---o---o---| Live-through, stack-in.
1402 // ____---====== Create local interval for interference range.
1403 //
1404 selectIntv(IntvOut);
1405 SlotIndex Idx = enterIntvAfter(EnterAfter);
1406 useIntv(Idx, Stop);
1407 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1408
1409 openIntv();
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001410 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001411 useIntv(From, Idx);
1412}