blob: 1628ee28b8a3e2812cf5ca3ce5778cc5a30ac377 [file] [log] [blame]
Eugene Zelenko900b6332017-08-29 22:32:07 +00001//===- SplitKit.cpp - Toolkit for splitting live ranges -------------------===//
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +00002//
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"
Eugene Zelenko900b6332017-08-29 22:32:07 +000016#include "LiveRangeCalc.h"
17#include "llvm/ADT/ArrayRef.h"
18#include "llvm/ADT/DenseSet.h"
19#include "llvm/ADT/None.h"
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/ADT/SmallPtrSet.h"
22#include "llvm/ADT/SmallVector.h"
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000023#include "llvm/ADT/Statistic.h"
Eugene Zelenko900b6332017-08-29 22:32:07 +000024#include "llvm/CodeGen/LiveInterval.h"
Matthias Braunf8422972017-12-13 02:51:04 +000025#include "llvm/CodeGen/LiveIntervals.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000026#include "llvm/CodeGen/LiveRangeEdit.h"
Eugene Zelenko900b6332017-08-29 22:32:07 +000027#include "llvm/CodeGen/MachineBasicBlock.h"
Wei Mi9a16d652016-04-13 03:08:27 +000028#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Jakob Stoklund Olesene172a8b2010-10-28 20:34:50 +000029#include "llvm/CodeGen/MachineDominators.h"
Eugene Zelenko900b6332017-08-29 22:32:07 +000030#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineInstr.h"
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +000033#include "llvm/CodeGen/MachineLoopInfo.h"
Eugene Zelenko900b6332017-08-29 22:32:07 +000034#include "llvm/CodeGen/MachineOperand.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000035#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenko900b6332017-08-29 22:32:07 +000036#include "llvm/CodeGen/SlotIndexes.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000037#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000038#include "llvm/CodeGen/TargetOpcodes.h"
39#include "llvm/CodeGen/TargetRegisterInfo.h"
40#include "llvm/CodeGen/TargetSubtargetInfo.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000041#include "llvm/CodeGen/VirtRegMap.h"
Eugene Zelenko900b6332017-08-29 22:32:07 +000042#include "llvm/IR/DebugLoc.h"
43#include "llvm/MC/LaneBitmask.h"
44#include "llvm/Support/Allocator.h"
45#include "llvm/Support/BlockFrequency.h"
46#include "llvm/Support/Compiler.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000047#include "llvm/Support/Debug.h"
Eugene Zelenko900b6332017-08-29 22:32:07 +000048#include "llvm/Support/ErrorHandling.h"
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000049#include "llvm/Support/raw_ostream.h"
Eugene Zelenko900b6332017-08-29 22:32:07 +000050#include <algorithm>
51#include <cassert>
52#include <iterator>
53#include <limits>
54#include <tuple>
55#include <utility>
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000056
57using namespace llvm;
58
Chandler Carruth1b9dde02014-04-22 02:02:50 +000059#define DEBUG_TYPE "regalloc"
60
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000061STATISTIC(NumFinished, "Number of splits finished");
62STATISTIC(NumSimple, "Number of splits that were simple");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000063STATISTIC(NumCopies, "Number of copies inserted for splitting");
64STATISTIC(NumRemats, "Number of rematerialized defs for splitting");
Jakob Stoklund Olesen50215af2011-05-10 17:37:41 +000065STATISTIC(NumRepairs, "Number of invalid live ranges repaired");
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +000066
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +000067//===----------------------------------------------------------------------===//
Wei Mi35ee9332016-05-11 22:28:29 +000068// Last Insert Point Analysis
69//===----------------------------------------------------------------------===//
70
71InsertPointAnalysis::InsertPointAnalysis(const LiveIntervals &lis,
72 unsigned BBNum)
Wei Mif3c8f532016-05-23 19:39:19 +000073 : LIS(lis), LastInsertPoint(BBNum) {}
Wei Mi35ee9332016-05-11 22:28:29 +000074
75SlotIndex
Wei Mif3c8f532016-05-23 19:39:19 +000076InsertPointAnalysis::computeLastInsertPoint(const LiveInterval &CurLI,
77 const MachineBasicBlock &MBB) {
Wei Mi35ee9332016-05-11 22:28:29 +000078 unsigned Num = MBB.getNumber();
79 std::pair<SlotIndex, SlotIndex> &LIP = LastInsertPoint[Num];
80 SlotIndex MBBEnd = LIS.getMBBEndIdx(&MBB);
81
Hiroshi Inoue713b5ba2017-07-09 05:54:44 +000082 SmallVector<const MachineBasicBlock *, 1> EHPadSuccessors;
Wei Mi35ee9332016-05-11 22:28:29 +000083 for (const MachineBasicBlock *SMBB : MBB.successors())
84 if (SMBB->isEHPad())
Hiroshi Inoue713b5ba2017-07-09 05:54:44 +000085 EHPadSuccessors.push_back(SMBB);
Wei Mi35ee9332016-05-11 22:28:29 +000086
87 // Compute insert points on the first call. The pair is independent of the
88 // current live interval.
89 if (!LIP.first.isValid()) {
90 MachineBasicBlock::const_iterator FirstTerm = MBB.getFirstTerminator();
91 if (FirstTerm == MBB.end())
92 LIP.first = MBBEnd;
93 else
94 LIP.first = LIS.getInstructionIndex(*FirstTerm);
95
96 // If there is a landing pad successor, also find the call instruction.
Hiroshi Inoue713b5ba2017-07-09 05:54:44 +000097 if (EHPadSuccessors.empty())
Wei Mi35ee9332016-05-11 22:28:29 +000098 return LIP.first;
99 // There may not be a call instruction (?) in which case we ignore LPad.
100 LIP.second = LIP.first;
101 for (MachineBasicBlock::const_iterator I = MBB.end(), E = MBB.begin();
102 I != E;) {
103 --I;
104 if (I->isCall()) {
105 LIP.second = LIS.getInstructionIndex(*I);
106 break;
107 }
108 }
109 }
110
111 // If CurLI is live into a landing pad successor, move the last insert point
112 // back to the call that may throw.
113 if (!LIP.second)
114 return LIP.first;
115
Hiroshi Inoue713b5ba2017-07-09 05:54:44 +0000116 if (none_of(EHPadSuccessors, [&](const MachineBasicBlock *EHPad) {
Wei Mif3c8f532016-05-23 19:39:19 +0000117 return LIS.isLiveInToMBB(CurLI, EHPad);
Wei Mi35ee9332016-05-11 22:28:29 +0000118 }))
119 return LIP.first;
120
121 // Find the value leaving MBB.
Wei Mif3c8f532016-05-23 19:39:19 +0000122 const VNInfo *VNI = CurLI.getVNInfoBefore(MBBEnd);
Wei Mi35ee9332016-05-11 22:28:29 +0000123 if (!VNI)
124 return LIP.first;
125
126 // If the value leaving MBB was defined after the call in MBB, it can't
127 // really be live-in to the landing pad. This can happen if the landing pad
128 // has a PHI, and this register is undef on the exceptional edge.
129 // <rdar://problem/10664933>
130 if (!SlotIndex::isEarlierInstr(VNI->def, LIP.second) && VNI->def < MBBEnd)
131 return LIP.first;
132
133 // Value is properly live-in to the landing pad.
134 // Only allow inserts before the call.
135 return LIP.second;
136}
137
138MachineBasicBlock::iterator
Wei Mif3c8f532016-05-23 19:39:19 +0000139InsertPointAnalysis::getLastInsertPointIter(const LiveInterval &CurLI,
140 MachineBasicBlock &MBB) {
141 SlotIndex LIP = getLastInsertPoint(CurLI, MBB);
Wei Mi35ee9332016-05-11 22:28:29 +0000142 if (LIP == LIS.getMBBEndIdx(&MBB))
143 return MBB.end();
144 return LIS.getInstructionFromIndex(LIP);
145}
146
147//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000148// Split Analysis
149//===----------------------------------------------------------------------===//
150
Eric Christopherd9134482014-08-04 21:25:23 +0000151SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
Jakob Stoklund Olesen0fef9dd2010-07-20 23:50:15 +0000152 const MachineLoopInfo &mli)
Eric Christopherd9134482014-08-04 21:25:23 +0000153 : MF(vrm.getMachineFunction()), VRM(vrm), LIS(lis), Loops(mli),
Eugene Zelenko900b6332017-08-29 22:32:07 +0000154 TII(*MF.getSubtarget().getInstrInfo()), IPA(lis, MF.getNumBlockIDs()) {}
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000155
156void SplitAnalysis::clear() {
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000157 UseSlots.clear();
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000158 UseBlocks.clear();
159 ThroughBlocks.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000160 CurLI = nullptr;
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +0000161 DidRepairRange = false;
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000162}
163
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000164/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
Jakob Stoklund Olesenff095502010-07-20 16:12:37 +0000165void SplitAnalysis::analyzeUses() {
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000166 assert(UseSlots.empty() && "Call clear first");
167
168 // First get all the defs from the interval values. This provides the correct
169 // slots for early clobbers.
Matthias Braun96761952014-12-10 23:07:54 +0000170 for (const VNInfo *VNI : CurLI->valnos)
171 if (!VNI->isPHIDef() && !VNI->isUnused())
172 UseSlots.push_back(VNI->def);
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000173
174 // Get use slots form the use-def chain.
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000175 const MachineRegisterInfo &MRI = MF.getRegInfo();
Owen Andersonb36376e2014-03-17 19:36:09 +0000176 for (MachineOperand &MO : MRI.use_nodbg_operands(CurLI->reg))
177 if (!MO.isUndef())
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000178 UseSlots.push_back(LIS.getInstructionIndex(*MO.getParent()).getRegSlot());
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000179
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000180 array_pod_sort(UseSlots.begin(), UseSlots.end());
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000181
Jakob Stoklund Olesenfe6e07f2011-04-05 15:18:18 +0000182 // Remove duplicates, keeping the smaller slot for each instruction.
183 // That is what we want for early clobbers.
184 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
185 SlotIndex::isSameInstr),
186 UseSlots.end());
187
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000188 // Compute per-live block info.
189 if (!calcLiveBlockInfo()) {
190 // FIXME: calcLiveBlockInfo found inconsistencies in the live range.
Rafael Espindola676c4052011-06-26 22:34:10 +0000191 // I am looking at you, RegisterCoalescer!
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +0000192 DidRepairRange = true;
Jakob Stoklund Olesen50215af2011-05-10 17:37:41 +0000193 ++NumRepairs;
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000194 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n");
195 const_cast<LiveIntervals&>(LIS)
196 .shrinkToUses(const_cast<LiveInterval*>(CurLI));
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000197 UseBlocks.clear();
198 ThroughBlocks.clear();
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000199 bool fixed = calcLiveBlockInfo();
200 (void)fixed;
201 assert(fixed && "Couldn't fix broken live interval");
202 }
203
Jakob Stoklund Olesenbd6b86e2011-03-27 22:49:23 +0000204 DEBUG(dbgs() << "Analyze counted "
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000205 << UseSlots.size() << " instrs in "
206 << UseBlocks.size() << " blocks, through "
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000207 << NumThroughBlocks << " blocks.\n");
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000208}
209
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000210/// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks
211/// where CurLI is live.
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000212bool SplitAnalysis::calcLiveBlockInfo() {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000213 ThroughBlocks.resize(MF.getNumBlockIDs());
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000214 NumThroughBlocks = NumGapBlocks = 0;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000215 if (CurLI->empty())
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000216 return true;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000217
218 LiveInterval::const_iterator LVI = CurLI->begin();
219 LiveInterval::const_iterator LVE = CurLI->end();
220
221 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE;
222 UseI = UseSlots.begin();
223 UseE = UseSlots.end();
224
225 // Loop over basic blocks where CurLI is live.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000226 MachineFunction::iterator MFI =
227 LIS.getMBBFromIndex(LVI->start)->getIterator();
Eugene Zelenko900b6332017-08-29 22:32:07 +0000228 while (true) {
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000229 BlockInfo BI;
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000230 BI.MBB = &*MFI;
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000231 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000232 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000233
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000234 // If the block contains no uses, the range must be live through. At one
Rafael Espindola676c4052011-06-26 22:34:10 +0000235 // point, RegisterCoalescer could create dangling ranges that ended
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000236 // mid-block.
237 if (UseI == UseE || *UseI >= Stop) {
238 ++NumThroughBlocks;
239 ThroughBlocks.set(BI.MBB->getNumber());
240 // The range shouldn't end mid-block if there are no uses. This shouldn't
241 // happen.
242 if (LVI->end < Stop)
243 return false;
244 } else {
245 // This block has uses. Find the first and last uses in the block.
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000246 BI.FirstInstr = *UseI;
247 assert(BI.FirstInstr >= Start);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000248 do ++UseI;
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000249 while (UseI != UseE && *UseI < Stop);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000250 BI.LastInstr = UseI[-1];
251 assert(BI.LastInstr < Stop);
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000252
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000253 // LVI is the first live segment overlapping MBB.
254 BI.LiveIn = LVI->start <= Start;
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000255
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000256 // When not live in, the first use should be a def.
257 if (!BI.LiveIn) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000258 assert(LVI->start == LVI->valno->def && "Dangling Segment start");
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000259 assert(LVI->start == BI.FirstInstr && "First instr should be a def");
260 BI.FirstDef = BI.FirstInstr;
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000261 }
262
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000263 // Look for gaps in the live range.
264 BI.LiveOut = true;
265 while (LVI->end < Stop) {
266 SlotIndex LastStop = LVI->end;
267 if (++LVI == LVE || LVI->start >= Stop) {
268 BI.LiveOut = false;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000269 BI.LastInstr = LastStop;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000270 break;
271 }
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000272
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000273 if (LastStop < LVI->start) {
274 // There is a gap in the live range. Create duplicate entries for the
275 // live-in snippet and the live-out snippet.
276 ++NumGapBlocks;
277
278 // Push the Live-in part.
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000279 BI.LiveOut = false;
280 UseBlocks.push_back(BI);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000281 UseBlocks.back().LastInstr = LastStop;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000282
283 // Set up BI for the live-out part.
284 BI.LiveIn = false;
285 BI.LiveOut = true;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000286 BI.FirstInstr = BI.FirstDef = LVI->start;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000287 }
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000288
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000289 // A Segment that starts in the middle of the block must be a def.
290 assert(LVI->start == LVI->valno->def && "Dangling Segment start");
Jakob Stoklund Olesenae8027c2011-08-02 22:37:22 +0000291 if (!BI.FirstDef)
292 BI.FirstDef = LVI->start;
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000293 }
294
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000295 UseBlocks.push_back(BI);
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000296
Jakob Stoklund Olesenec43d5d2011-05-30 01:33:26 +0000297 // LVI is now at LVE or LVI->end >= Stop.
298 if (LVI == LVE)
299 break;
300 }
Jakob Stoklund Olesenca6a4d82011-05-29 21:24:39 +0000301
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000302 // Live segment ends exactly at Stop. Move to the next segment.
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000303 if (LVI->end == Stop && ++LVI == LVE)
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000304 break;
305
306 // Pick the next basic block.
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000307 if (LVI->start < Stop)
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000308 ++MFI;
309 else
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000310 MFI = LIS.getMBBFromIndex(LVI->start)->getIterator();
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000311 }
Jakob Stoklund Olesen5cc91b22011-05-28 02:32:57 +0000312
313 assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count");
Jakob Stoklund Olesen27e0a4a2011-03-05 18:33:49 +0000314 return true;
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000315}
316
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +0000317unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const {
318 if (cli->empty())
319 return 0;
320 LiveInterval *li = const_cast<LiveInterval*>(cli);
321 LiveInterval::iterator LVI = li->begin();
322 LiveInterval::iterator LVE = li->end();
323 unsigned Count = 0;
324
325 // Loop over basic blocks where li is live.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000326 MachineFunction::const_iterator MFI =
327 LIS.getMBBFromIndex(LVI->start)->getIterator();
328 SlotIndex Stop = LIS.getMBBEndIdx(&*MFI);
Eugene Zelenko900b6332017-08-29 22:32:07 +0000329 while (true) {
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +0000330 ++Count;
331 LVI = li->advanceTo(LVI, Stop);
332 if (LVI == LVE)
333 return Count;
334 do {
335 ++MFI;
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000336 Stop = LIS.getMBBEndIdx(&*MFI);
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +0000337 } while (Stop <= LVI->start);
338 }
339}
340
Jakob Stoklund Olesen60a26a62011-02-21 23:09:46 +0000341bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const {
342 unsigned OrigReg = VRM.getOriginal(CurLI->reg);
343 const LiveInterval &Orig = LIS.getInterval(OrigReg);
344 assert(!Orig.empty() && "Splitting empty interval?");
345 LiveInterval::const_iterator I = Orig.find(Idx);
346
347 // Range containing Idx should begin at Idx.
348 if (I != Orig.end() && I->start <= Idx)
349 return I->start == Idx;
350
351 // Range does not contain Idx, previous must end at Idx.
352 return I != Orig.begin() && (--I)->end == Idx;
353}
354
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000355void SplitAnalysis::analyze(const LiveInterval *li) {
356 clear();
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000357 CurLI = li;
Jakob Stoklund Olesenff095502010-07-20 16:12:37 +0000358 analyzeUses();
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +0000359}
360
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000361//===----------------------------------------------------------------------===//
362// Split Editor
363//===----------------------------------------------------------------------===//
364
365/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
Wei Mic0223702016-07-08 21:08:09 +0000366SplitEditor::SplitEditor(SplitAnalysis &sa, AliasAnalysis &aa,
367 LiveIntervals &lis, VirtRegMap &vrm,
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000368 MachineDominatorTree &mdt,
369 MachineBlockFrequencyInfo &mbfi)
Wei Mic0223702016-07-08 21:08:09 +0000370 : SA(sa), AA(aa), LIS(lis), VRM(vrm),
371 MRI(vrm.getMachineFunction().getRegInfo()), MDT(mdt),
372 TII(*vrm.getMachineFunction().getSubtarget().getInstrInfo()),
Eric Christopher60621802014-10-14 07:22:00 +0000373 TRI(*vrm.getMachineFunction().getSubtarget().getRegisterInfo()),
Eugene Zelenko900b6332017-08-29 22:32:07 +0000374 MBFI(mbfi), RegAssign(Allocator) {}
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000375
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +0000376void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
377 Edit = &LRE;
378 SpillMode = SM;
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000379 OpenIdx = 0;
380 RegAssign.clear();
381 Values.clear();
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000382
383 // Reset the LiveRangeCalc instances needed for this spill mode.
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000384 LRCalc[0].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
385 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +0000386 if (SpillMode)
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +0000387 LRCalc[1].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
388 &LIS.getVNInfoAllocator());
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +0000389
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000390 // We don't need an AliasAnalysis since we will only be performing
391 // cheap-as-a-copy remats anyway.
Craig Topperc0196b12014-04-14 00:51:57 +0000392 Edit->anyRematerializable(nullptr);
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000393}
394
Aaron Ballman615eb472017-10-15 14:32:27 +0000395#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +0000396LLVM_DUMP_METHOD void SplitEditor::dump() const {
Eric Christopherede62672011-02-03 06:18:29 +0000397 if (RegAssign.empty()) {
398 dbgs() << " empty\n";
399 return;
400 }
401
402 for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
403 dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
404 dbgs() << '\n';
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +0000405}
Manman Ren742534c2012-09-06 19:06:06 +0000406#endif
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +0000407
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000408LiveInterval::SubRange &SplitEditor::getSubRangeForMask(LaneBitmask LM,
409 LiveInterval &LI) {
410 for (LiveInterval::SubRange &S : LI.subranges())
411 if (S.LaneMask == LM)
412 return S;
413 llvm_unreachable("SubRange for this mask not found");
George Burgess IVb42e0e72016-08-25 02:15:54 +0000414}
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000415
416void SplitEditor::addDeadDef(LiveInterval &LI, VNInfo *VNI, bool Original) {
417 if (!LI.hasSubRanges()) {
418 LI.createDeadDef(VNI);
419 return;
420 }
421
422 SlotIndex Def = VNI->def;
423 if (Original) {
424 // If we are transferring a def from the original interval, make sure
425 // to only update the subranges for which the original subranges had
426 // a def at this location.
427 for (LiveInterval::SubRange &S : LI.subranges()) {
428 auto &PS = getSubRangeForMask(S.LaneMask, Edit->getParent());
429 VNInfo *PV = PS.getVNInfoAt(Def);
430 if (PV != nullptr && PV->def == Def)
431 S.createDeadDef(Def, LIS.getVNInfoAllocator());
432 }
433 } else {
434 // This is a new def: either from rematerialization, or from an inserted
435 // copy. Since rematerialization can regenerate a definition of a sub-
436 // register, we need to check which subranges need to be updated.
437 const MachineInstr *DefMI = LIS.getInstructionFromIndex(Def);
438 assert(DefMI != nullptr);
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000439 LaneBitmask LM;
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000440 for (const MachineOperand &DefOp : DefMI->defs()) {
441 unsigned R = DefOp.getReg();
442 if (R != LI.reg)
443 continue;
444 if (unsigned SR = DefOp.getSubReg())
445 LM |= TRI.getSubRegIndexLaneMask(SR);
446 else {
447 LM = MRI.getMaxLaneMaskForVReg(R);
448 break;
449 }
450 }
451 for (LiveInterval::SubRange &S : LI.subranges())
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +0000452 if ((S.LaneMask & LM).any())
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000453 S.createDeadDef(Def, LIS.getVNInfoAllocator());
454 }
455}
456
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000457VNInfo *SplitEditor::defValue(unsigned RegIdx,
458 const VNInfo *ParentVNI,
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000459 SlotIndex Idx,
460 bool Original) {
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000461 assert(ParentVNI && "Mapping NULL value");
462 assert(Idx.isValid() && "Invalid SlotIndex");
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000463 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
Mark Laceyf9ea8852013-08-14 23:50:04 +0000464 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000465
466 // Create a new value.
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000467 VNInfo *VNI = LI->getNextValue(Idx, LIS.getVNInfoAllocator());
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000468
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000469 bool Force = LI->hasSubRanges();
470 ValueForcePair FP(Force ? nullptr : VNI, Force);
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000471 // Use insert for lookup, so we can add missing values with a second lookup.
472 std::pair<ValueMap::iterator, bool> InsP =
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000473 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), FP));
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000474
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000475 // This was the first time (RegIdx, ParentVNI) was mapped, and it is not
476 // forced. Keep it as a simple def without any liveness.
477 if (!Force && InsP.second)
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000478 return VNI;
479
480 // If the previous value was a simple mapping, add liveness for it now.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000481 if (VNInfo *OldVNI = InsP.first->second.getPointer()) {
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000482 addDeadDef(*LI, OldVNI, Original);
483
484 // No longer a simple mapping. Switch to a complex mapping. If the
485 // interval has subranges, make it a forced mapping.
486 InsP.first->second = ValueForcePair(nullptr, Force);
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000487 }
488
489 // This is a complex mapping, add liveness for VNI
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000490 addDeadDef(*LI, VNI, Original);
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000491 return VNI;
492}
493
Matthias Braunca0abae2018-02-02 00:08:19 +0000494void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo &ParentVNI) {
495 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI.id)];
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000496 VNInfo *VNI = VFP.getPointer();
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000497
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000498 // ParentVNI was either unmapped or already complex mapped. Either way, just
499 // set the force bit.
500 if (!VNI) {
501 VFP.setInt(true);
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000502 return;
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000503 }
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000504
505 // This was previously a single mapping. Make sure the old def is represented
506 // by a trivial live range.
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000507 addDeadDef(LIS.getInterval(Edit->get(RegIdx)), VNI, false);
508
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +0000509 // Mark as complex mapped, forced.
Craig Topperc0196b12014-04-14 00:51:57 +0000510 VFP = ValueForcePair(nullptr, true);
Jakob Stoklund Olesen4484f992011-09-13 18:05:29 +0000511}
512
Matthias Braunf0b68d32017-03-17 00:41:39 +0000513SlotIndex SplitEditor::buildSingleSubRegCopy(unsigned FromReg, unsigned ToReg,
514 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore,
515 unsigned SubIdx, LiveInterval &DestLI, bool Late, SlotIndex Def) {
516 const MCInstrDesc &Desc = TII.get(TargetOpcode::COPY);
517 bool FirstCopy = !Def.isValid();
518 MachineInstr *CopyMI = BuildMI(MBB, InsertBefore, DebugLoc(), Desc)
519 .addReg(ToReg, RegState::Define | getUndefRegState(FirstCopy)
520 | getInternalReadRegState(!FirstCopy), SubIdx)
521 .addReg(FromReg, 0, SubIdx);
522
523 BumpPtrAllocator &Allocator = LIS.getVNInfoAllocator();
524 if (FirstCopy) {
525 SlotIndexes &Indexes = *LIS.getSlotIndexes();
526 Def = Indexes.insertMachineInstrInMaps(*CopyMI, Late).getRegSlot();
Matthias Braunf0b68d32017-03-17 00:41:39 +0000527 } else {
528 CopyMI->bundleWithPred();
529 }
530 LaneBitmask LaneMask = TRI.getSubRegIndexLaneMask(SubIdx);
531 DestLI.refineSubRanges(Allocator, LaneMask,
532 [Def, &Allocator](LiveInterval::SubRange& SR) {
533 SR.createDeadDef(Def, Allocator);
534 });
535 return Def;
536}
537
538SlotIndex SplitEditor::buildCopy(unsigned FromReg, unsigned ToReg,
539 LaneBitmask LaneMask, MachineBasicBlock &MBB,
540 MachineBasicBlock::iterator InsertBefore, bool Late, unsigned RegIdx) {
541 const MCInstrDesc &Desc = TII.get(TargetOpcode::COPY);
542 if (LaneMask.all() || LaneMask == MRI.getMaxLaneMaskForVReg(FromReg)) {
543 // The full vreg is copied.
544 MachineInstr *CopyMI =
545 BuildMI(MBB, InsertBefore, DebugLoc(), Desc, ToReg).addReg(FromReg);
546 SlotIndexes &Indexes = *LIS.getSlotIndexes();
547 return Indexes.insertMachineInstrInMaps(*CopyMI, Late).getRegSlot();
548 }
549
550 // Only a subset of lanes needs to be copied. The following is a simple
551 // heuristic to construct a sequence of COPYs. We could add a target
552 // specific callback if this turns out to be suboptimal.
553 LiveInterval &DestLI = LIS.getInterval(Edit->get(RegIdx));
554
555 // First pass: Try to find a perfectly matching subregister index. If none
556 // exists find the one covering the most lanemask bits.
557 SmallVector<unsigned, 8> PossibleIndexes;
558 unsigned BestIdx = 0;
559 unsigned BestCover = 0;
560 const TargetRegisterClass *RC = MRI.getRegClass(FromReg);
561 assert(RC == MRI.getRegClass(ToReg) && "Should have same reg class");
562 for (unsigned Idx = 1, E = TRI.getNumSubRegIndices(); Idx < E; ++Idx) {
563 // Is this index even compatible with the given class?
564 if (TRI.getSubClassWithSubReg(RC, Idx) != RC)
565 continue;
566 LaneBitmask SubRegMask = TRI.getSubRegIndexLaneMask(Idx);
567 // Early exit if we found a perfect match.
568 if (SubRegMask == LaneMask) {
569 BestIdx = Idx;
570 break;
571 }
572
573 // The index must not cover any lanes outside \p LaneMask.
574 if ((SubRegMask & ~LaneMask).any())
575 continue;
576
Krzysztof Parzyszekf3a778d2017-07-20 19:43:19 +0000577 unsigned PopCount = SubRegMask.getNumLanes();
Matthias Braunf0b68d32017-03-17 00:41:39 +0000578 PossibleIndexes.push_back(Idx);
579 if (PopCount > BestCover) {
580 BestCover = PopCount;
581 BestIdx = Idx;
582 }
583 }
584
585 // Abort if we cannot possibly implement the COPY with the given indexes.
586 if (BestIdx == 0)
587 report_fatal_error("Impossible to implement partial COPY");
588
589 SlotIndex Def = buildSingleSubRegCopy(FromReg, ToReg, MBB, InsertBefore,
590 BestIdx, DestLI, Late, SlotIndex());
591
592 // Greedy heuristic: Keep iterating keeping the best covering subreg index
593 // each time.
Matthias Braun76f06302017-06-12 20:30:52 +0000594 LaneBitmask LanesLeft = LaneMask & ~(TRI.getSubRegIndexLaneMask(BestIdx));
Matthias Braunf0b68d32017-03-17 00:41:39 +0000595 while (LanesLeft.any()) {
596 unsigned BestIdx = 0;
Eugene Zelenko900b6332017-08-29 22:32:07 +0000597 int BestCover = std::numeric_limits<int>::min();
Matthias Braunf0b68d32017-03-17 00:41:39 +0000598 for (unsigned Idx : PossibleIndexes) {
599 LaneBitmask SubRegMask = TRI.getSubRegIndexLaneMask(Idx);
600 // Early exit if we found a perfect match.
601 if (SubRegMask == LanesLeft) {
602 BestIdx = Idx;
603 break;
604 }
605
606 // Try to cover as much of the remaining lanes as possible but
607 // as few of the already covered lanes as possible.
Krzysztof Parzyszekf3a778d2017-07-20 19:43:19 +0000608 int Cover = (SubRegMask & LanesLeft).getNumLanes()
609 - (SubRegMask & ~LanesLeft).getNumLanes();
Matthias Braunf0b68d32017-03-17 00:41:39 +0000610 if (Cover > BestCover) {
611 BestCover = Cover;
612 BestIdx = Idx;
613 }
614 }
615
616 if (BestIdx == 0)
617 report_fatal_error("Impossible to implement partial COPY");
618
619 buildSingleSubRegCopy(FromReg, ToReg, MBB, InsertBefore, BestIdx,
620 DestLI, Late, Def);
621 LanesLeft &= ~TRI.getSubRegIndexLaneMask(BestIdx);
622 }
623
624 return Def;
625}
626
Eric Christopherede62672011-02-03 06:18:29 +0000627VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000628 VNInfo *ParentVNI,
629 SlotIndex UseIdx,
630 MachineBasicBlock &MBB,
631 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000632 SlotIndex Def;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000633 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000634
Jakob Stoklund Olesen7d406792011-05-02 05:29:58 +0000635 // We may be trying to avoid interference that ends at a deleted instruction,
636 // so always begin RegIdx 0 early and all others late.
637 bool Late = RegIdx != 0;
638
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000639 // Attempt cheap-as-a-copy rematerialization.
Wei Mi9a16d652016-04-13 03:08:27 +0000640 unsigned Original = VRM.getOriginal(Edit->get(RegIdx));
641 LiveInterval &OrigLI = LIS.getInterval(Original);
642 VNInfo *OrigVNI = OrigLI.getVNInfoAt(UseIdx);
Wei Mi9a16d652016-04-13 03:08:27 +0000643
Matthias Braunf0b68d32017-03-17 00:41:39 +0000644 unsigned Reg = LI->reg;
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000645 bool DidRemat = false;
646 if (OrigVNI) {
647 LiveRangeEdit::Remat RM(ParentVNI);
648 RM.OrigMI = LIS.getInstructionFromIndex(OrigVNI->def);
649 if (Edit->canRematerializeAt(RM, OrigVNI, UseIdx, true)) {
Matthias Braunf0b68d32017-03-17 00:41:39 +0000650 Def = Edit->rematerializeAt(MBB, I, Reg, RM, TRI, Late);
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000651 ++NumRemats;
652 DidRemat = true;
653 }
654 }
655 if (!DidRemat) {
Matthias Braunf0b68d32017-03-17 00:41:39 +0000656 LaneBitmask LaneMask;
Stanislav Mekhanoshin70c245e2017-02-01 01:18:36 +0000657 if (LI->hasSubRanges()) {
Matthias Braunf0b68d32017-03-17 00:41:39 +0000658 LaneMask = LaneBitmask::getNone();
Stanislav Mekhanoshin70c245e2017-02-01 01:18:36 +0000659 for (LiveInterval::SubRange &S : LI->subranges())
Matthias Braunf0b68d32017-03-17 00:41:39 +0000660 LaneMask |= S.LaneMask;
661 } else {
662 LaneMask = LaneBitmask::getAll();
Stanislav Mekhanoshin70c245e2017-02-01 01:18:36 +0000663 }
Matthias Braunf0b68d32017-03-17 00:41:39 +0000664
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000665 ++NumCopies;
Matthias Braunf0b68d32017-03-17 00:41:39 +0000666 Def = buildCopy(Edit->getReg(), Reg, LaneMask, MBB, I, Late, RegIdx);
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000667 }
668
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +0000669 // Define the value in Reg.
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +0000670 return defValue(RegIdx, ParentVNI, Def, false);
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000671}
672
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000673/// Create a new virtual register and live interval.
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000674unsigned SplitEditor::openIntv() {
Eric Christopherede62672011-02-03 06:18:29 +0000675 // Create the complement as index 0.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000676 if (Edit->empty())
Mark Lacey9d8103d2013-08-14 23:50:16 +0000677 Edit->createEmptyInterval();
Eric Christopherede62672011-02-03 06:18:29 +0000678
679 // Create the open interval.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000680 OpenIdx = Edit->size();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000681 Edit->createEmptyInterval();
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000682 return OpenIdx;
683}
684
685void SplitEditor::selectIntv(unsigned Idx) {
686 assert(Idx != 0 && "Cannot select the complement interval");
687 assert(Idx < Edit->size() && "Can only select previously opened interval");
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000688 DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n');
Jakob Stoklund Olesen0840f502011-04-12 18:11:31 +0000689 OpenIdx = Idx;
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000690}
691
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000692SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
Eric Christopherede62672011-02-03 06:18:29 +0000693 assert(OpenIdx && "openIntv not called before enterIntvBefore");
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000694 DEBUG(dbgs() << " enterIntvBefore " << Idx);
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000695 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000696 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000697 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000698 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000699 return Idx;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000700 }
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000701 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000702 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000703 assert(MI && "enterIntvBefore called with invalid index");
Jakob Stoklund Olesen6ee7d9aa2010-11-10 19:31:50 +0000704
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000705 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
706 return VNI->def;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000707}
708
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000709SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) {
710 assert(OpenIdx && "openIntv not called before enterIntvAfter");
711 DEBUG(dbgs() << " enterIntvAfter " << Idx);
712 Idx = Idx.getBoundaryIndex();
713 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
714 if (!ParentVNI) {
715 DEBUG(dbgs() << ": not live\n");
716 return Idx;
717 }
718 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
719 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
720 assert(MI && "enterIntvAfter called with invalid index");
721
722 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000723 std::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +0000724 return VNI->def;
725}
726
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000727SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
Eric Christopherede62672011-02-03 06:18:29 +0000728 assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000729 SlotIndex End = LIS.getMBBEndIdx(&MBB);
730 SlotIndex Last = End.getPrevSlot();
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000731 DEBUG(dbgs() << " enterIntvAtEnd " << printMBBReference(MBB) << ", "
732 << Last);
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000733 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000734 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000735 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000736 return End;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000737 }
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000738 DEBUG(dbgs() << ": valno " << ParentVNI->id);
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000739 VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
Jakob Stoklund Olesen67aec122012-01-11 02:07:00 +0000740 SA.getLastSplitPointIter(&MBB));
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000741 RegAssign.insert(VNI->def, End, OpenIdx);
Eric Christopherede62672011-02-03 06:18:29 +0000742 DEBUG(dump());
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000743 return VNI->def;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000744}
745
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000746/// useIntv - indicate that all instructions in MBB should use OpenLI.
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000747void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000748 useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000749}
750
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000751void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
Eric Christopherede62672011-02-03 06:18:29 +0000752 assert(OpenIdx && "openIntv not called before useIntv");
753 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
754 RegAssign.insert(Start, End, OpenIdx);
755 DEBUG(dump());
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000756}
757
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000758SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
Eric Christopherede62672011-02-03 06:18:29 +0000759 assert(OpenIdx && "openIntv not called before leaveIntvAfter");
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000760 DEBUG(dbgs() << " leaveIntvAfter " << Idx);
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000761
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000762 // The interval must be live beyond the instruction at Idx.
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000763 SlotIndex Boundary = Idx.getBoundaryIndex();
764 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000765 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000766 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000767 return Boundary.getNextSlot();
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000768 }
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000769 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000770 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
Jakob Stoklund Olesen3d11c8e2011-02-08 18:50:18 +0000771 assert(MI && "No instruction at index");
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000772
773 // In spill mode, make live ranges as short as possible by inserting the copy
774 // before MI. This is only possible if that instruction doesn't redefine the
775 // value. The inserted COPY is not a kill, and we don't need to recompute
776 // the source live range. The spiller also won't try to hoist this copy.
777 if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) &&
778 MI->readsVirtualRegister(Edit->getReg())) {
Matthias Braunca0abae2018-02-02 00:08:19 +0000779 forceRecompute(0, *ParentVNI);
Jakob Stoklund Olesene2c92a32011-09-16 00:03:35 +0000780 defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
781 return Idx;
782 }
783
784 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000785 std::next(MachineBasicBlock::iterator(MI)));
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000786 return VNI->def;
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +0000787}
788
Jakob Stoklund Olesen7cb57b32011-02-09 23:30:25 +0000789SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) {
790 assert(OpenIdx && "openIntv not called before leaveIntvBefore");
791 DEBUG(dbgs() << " leaveIntvBefore " << Idx);
792
793 // The interval must be live into the instruction at Idx.
Jakob Stoklund Olesenc45d38e2011-07-18 18:47:13 +0000794 Idx = Idx.getBaseIndex();
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000795 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx);
Jakob Stoklund Olesen7cb57b32011-02-09 23:30:25 +0000796 if (!ParentVNI) {
797 DEBUG(dbgs() << ": not live\n");
798 return Idx.getNextSlot();
799 }
800 DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
801
802 MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
803 assert(MI && "No instruction at index");
804 VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI);
805 return VNI->def;
806}
807
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000808SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
Eric Christopherede62672011-02-03 06:18:29 +0000809 assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +0000810 SlotIndex Start = LIS.getMBBStartIdx(&MBB);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000811 DEBUG(dbgs() << " leaveIntvAtTop " << printMBBReference(MBB) << ", "
812 << Start);
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000813
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000814 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesen98551092010-09-16 00:01:36 +0000815 if (!ParentVNI) {
Jakob Stoklund Olesen9575af42010-10-07 17:56:35 +0000816 DEBUG(dbgs() << ": not live\n");
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000817 return Start;
Jakob Stoklund Olesendc96e282010-08-04 22:08:39 +0000818 }
819
Eric Christopherede62672011-02-03 06:18:29 +0000820 VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
Keith Walker830a8c12016-09-16 14:07:29 +0000821 MBB.SkipPHIsLabelsAndDebug(MBB.begin()));
Eric Christopherede62672011-02-03 06:18:29 +0000822 RegAssign.insert(Start, VNI->def, OpenIdx);
823 DEBUG(dump());
Jakob Stoklund Olesenf12e1202011-02-03 17:04:16 +0000824 return VNI->def;
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +0000825}
826
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000827void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) {
828 assert(OpenIdx && "openIntv not called before overlapIntv");
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +0000829 const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
Jakob Stoklund Olesend7bcf432011-11-14 01:39:36 +0000830 assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) &&
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000831 "Parent changes value in extended range");
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000832 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) &&
833 "Range cannot span basic blocks");
834
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +0000835 // The complement interval will be extended as needed by LRCalc.extend().
Jakob Stoklund Olesen5c482cd2011-04-05 23:43:14 +0000836 if (ParentVNI)
Matthias Braunca0abae2018-02-02 00:08:19 +0000837 forceRecompute(0, *ParentVNI);
Jakob Stoklund Olesen17499352011-02-08 18:50:21 +0000838 DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):");
839 RegAssign.insert(Start, End, OpenIdx);
840 DEBUG(dump());
841}
842
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000843//===----------------------------------------------------------------------===//
844// Spill modes
845//===----------------------------------------------------------------------===//
846
847void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000848 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000849 DEBUG(dbgs() << "Removing " << Copies.size() << " back-copies.\n");
850 RegAssignMap::iterator AssignI;
851 AssignI.setMap(RegAssign);
852
853 for (unsigned i = 0, e = Copies.size(); i != e; ++i) {
Matthias Braun311730a2015-01-21 19:02:30 +0000854 SlotIndex Def = Copies[i]->def;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000855 MachineInstr *MI = LIS.getInstructionFromIndex(Def);
856 assert(MI && "No instruction for back-copy");
857
858 MachineBasicBlock *MBB = MI->getParent();
859 MachineBasicBlock::iterator MBBI(MI);
860 bool AtBegin;
861 do AtBegin = MBBI == MBB->begin();
862 while (!AtBegin && (--MBBI)->isDebugValue());
863
864 DEBUG(dbgs() << "Removing " << Def << '\t' << *MI);
Matthias Braun311730a2015-01-21 19:02:30 +0000865 LIS.removeVRegDefAt(*LI, Def);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000866 LIS.RemoveMachineInstrFromMaps(*MI);
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000867 MI->eraseFromParent();
868
Matthias Braun311730a2015-01-21 19:02:30 +0000869 // Adjust RegAssign if a register assignment is killed at Def. We want to
870 // avoid calculating the live range of the source register if possible.
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +0000871 AssignI.find(Def.getPrevSlot());
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000872 if (!AssignI.valid() || AssignI.start() >= Def)
873 continue;
874 // If MI doesn't kill the assigned register, just leave it.
875 if (AssignI.stop() != Def)
876 continue;
877 unsigned RegIdx = AssignI.value();
878 if (AtBegin || !MBBI->readsVirtualRegister(Edit->getReg())) {
879 DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n');
Matthias Braunca0abae2018-02-02 00:08:19 +0000880 forceRecompute(RegIdx, *Edit->getParent().getVNInfoAt(Def));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000881 } else {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000882 SlotIndex Kill = LIS.getInstructionIndex(*MBBI).getRegSlot();
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000883 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
884 AssignI.setStop(Kill);
885 }
886 }
887}
888
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000889MachineBasicBlock*
890SplitEditor::findShallowDominator(MachineBasicBlock *MBB,
891 MachineBasicBlock *DefMBB) {
892 if (MBB == DefMBB)
893 return MBB;
894 assert(MDT.dominates(DefMBB, MBB) && "MBB must be dominated by the def.");
895
896 const MachineLoopInfo &Loops = SA.Loops;
897 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
898 MachineDomTreeNode *DefDomNode = MDT[DefMBB];
899
900 // Best candidate so far.
901 MachineBasicBlock *BestMBB = MBB;
Eugene Zelenko900b6332017-08-29 22:32:07 +0000902 unsigned BestDepth = std::numeric_limits<unsigned>::max();
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000903
Eugene Zelenko900b6332017-08-29 22:32:07 +0000904 while (true) {
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000905 const MachineLoop *Loop = Loops.getLoopFor(MBB);
906
907 // MBB isn't in a loop, it doesn't get any better. All dominators have a
908 // higher frequency by definition.
909 if (!Loop) {
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000910 DEBUG(dbgs() << "Def in " << printMBBReference(*DefMBB) << " dominates "
911 << printMBBReference(*MBB) << " at depth 0\n");
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000912 return MBB;
913 }
914
915 // We'll never be able to exit the DefLoop.
916 if (Loop == DefLoop) {
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000917 DEBUG(dbgs() << "Def in " << printMBBReference(*DefMBB) << " dominates "
918 << printMBBReference(*MBB) << " in the same loop\n");
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000919 return MBB;
920 }
921
922 // Least busy dominator seen so far.
923 unsigned Depth = Loop->getLoopDepth();
924 if (Depth < BestDepth) {
925 BestMBB = MBB;
926 BestDepth = Depth;
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000927 DEBUG(dbgs() << "Def in " << printMBBReference(*DefMBB) << " dominates "
928 << printMBBReference(*MBB) << " at depth " << Depth << '\n');
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +0000929 }
930
931 // Leave loop by going to the immediate dominator of the loop header.
932 // This is a bigger stride than simply walking up the dominator tree.
933 MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom();
934
935 // Too far up the dominator tree?
936 if (!IDom || !MDT.dominates(DefDomNode, IDom))
937 return BestMBB;
938
939 MBB = IDom->getBlock();
940 }
941}
942
Wei Mi9a16d652016-04-13 03:08:27 +0000943void SplitEditor::computeRedundantBackCopies(
944 DenseSet<unsigned> &NotToHoistSet, SmallVectorImpl<VNInfo *> &BackCopies) {
945 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
946 LiveInterval *Parent = &Edit->getParent();
947 SmallVector<SmallPtrSet<VNInfo *, 8>, 8> EqualVNs(Parent->getNumValNums());
948 SmallPtrSet<VNInfo *, 8> DominatedVNIs;
949
950 // Aggregate VNIs having the same value as ParentVNI.
951 for (VNInfo *VNI : LI->valnos) {
952 if (VNI->isUnused())
953 continue;
954 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
955 EqualVNs[ParentVNI->id].insert(VNI);
956 }
957
958 // For VNI aggregation of each ParentVNI, collect dominated, i.e.,
959 // redundant VNIs to BackCopies.
960 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
961 VNInfo *ParentVNI = Parent->getValNumInfo(i);
962 if (!NotToHoistSet.count(ParentVNI->id))
963 continue;
964 SmallPtrSetIterator<VNInfo *> It1 = EqualVNs[ParentVNI->id].begin();
965 SmallPtrSetIterator<VNInfo *> It2 = It1;
966 for (; It1 != EqualVNs[ParentVNI->id].end(); ++It1) {
967 It2 = It1;
968 for (++It2; It2 != EqualVNs[ParentVNI->id].end(); ++It2) {
969 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2))
970 continue;
971
972 MachineBasicBlock *MBB1 = LIS.getMBBFromIndex((*It1)->def);
973 MachineBasicBlock *MBB2 = LIS.getMBBFromIndex((*It2)->def);
974 if (MBB1 == MBB2) {
975 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1));
976 } else if (MDT.dominates(MBB1, MBB2)) {
977 DominatedVNIs.insert(*It2);
978 } else if (MDT.dominates(MBB2, MBB1)) {
979 DominatedVNIs.insert(*It1);
980 }
981 }
982 }
983 if (!DominatedVNIs.empty()) {
Matthias Braunca0abae2018-02-02 00:08:19 +0000984 forceRecompute(0, *ParentVNI);
Wei Mi9a16d652016-04-13 03:08:27 +0000985 for (auto VNI : DominatedVNIs) {
986 BackCopies.push_back(VNI);
987 }
988 DominatedVNIs.clear();
989 }
990 }
991}
992
993/// For SM_Size mode, find a common dominator for all the back-copies for
994/// the same ParentVNI and hoist the backcopies to the dominator BB.
995/// For SM_Speed mode, if the common dominator is hot and it is not beneficial
996/// to do the hoisting, simply remove the dominated backcopies for the same
997/// ParentVNI.
998void SplitEditor::hoistCopies() {
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +0000999 // Get the complement interval, always RegIdx 0.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001000 LiveInterval *LI = &LIS.getInterval(Edit->get(0));
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001001 LiveInterval *Parent = &Edit->getParent();
1002
1003 // Track the nearest common dominator for all back-copies for each ParentVNI,
1004 // indexed by ParentVNI->id.
Eugene Zelenko900b6332017-08-29 22:32:07 +00001005 using DomPair = std::pair<MachineBasicBlock *, SlotIndex>;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001006 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
Wei Mi9a16d652016-04-13 03:08:27 +00001007 // The total cost of all the back-copies for each ParentVNI.
1008 SmallVector<BlockFrequency, 8> Costs(Parent->getNumValNums());
1009 // The ParentVNI->id set for which hoisting back-copies are not beneficial
1010 // for Speed.
1011 DenseSet<unsigned> NotToHoistSet;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001012
1013 // Find the nearest common dominator for parent values with multiple
1014 // back-copies. If a single back-copy dominates, put it in DomPair.second.
Matthias Braun96761952014-12-10 23:07:54 +00001015 for (VNInfo *VNI : LI->valnos) {
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +00001016 if (VNI->isUnused())
1017 continue;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001018 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
1019 assert(ParentVNI && "Parent not live at complement def");
1020
1021 // Don't hoist remats. The complement is probably going to disappear
1022 // completely anyway.
1023 if (Edit->didRematerialize(ParentVNI))
1024 continue;
1025
1026 MachineBasicBlock *ValMBB = LIS.getMBBFromIndex(VNI->def);
Wei Mi9a16d652016-04-13 03:08:27 +00001027
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001028 DomPair &Dom = NearestDom[ParentVNI->id];
1029
1030 // Keep directly defined parent values. This is either a PHI or an
1031 // instruction in the complement range. All other copies of ParentVNI
1032 // should be eliminated.
1033 if (VNI->def == ParentVNI->def) {
1034 DEBUG(dbgs() << "Direct complement def at " << VNI->def << '\n');
1035 Dom = DomPair(ValMBB, VNI->def);
1036 continue;
1037 }
1038 // Skip the singly mapped values. There is nothing to gain from hoisting a
1039 // single back-copy.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +00001040 if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) {
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001041 DEBUG(dbgs() << "Single complement def at " << VNI->def << '\n');
1042 continue;
1043 }
1044
1045 if (!Dom.first) {
1046 // First time we see ParentVNI. VNI dominates itself.
1047 Dom = DomPair(ValMBB, VNI->def);
1048 } else if (Dom.first == ValMBB) {
1049 // Two defs in the same block. Pick the earlier def.
1050 if (!Dom.second.isValid() || VNI->def < Dom.second)
1051 Dom.second = VNI->def;
1052 } else {
1053 // Different basic blocks. Check if one dominates.
1054 MachineBasicBlock *Near =
1055 MDT.findNearestCommonDominator(Dom.first, ValMBB);
1056 if (Near == ValMBB)
1057 // Def ValMBB dominates.
1058 Dom = DomPair(ValMBB, VNI->def);
1059 else if (Near != Dom.first)
1060 // None dominate. Hoist to common dominator, need new def.
1061 Dom = DomPair(Near, SlotIndex());
Wei Mi9a16d652016-04-13 03:08:27 +00001062 Costs[ParentVNI->id] += MBFI.getBlockFreq(ValMBB);
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001063 }
1064
1065 DEBUG(dbgs() << "Multi-mapped complement " << VNI->id << '@' << VNI->def
1066 << " for parent " << ParentVNI->id << '@' << ParentVNI->def
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001067 << " hoist to " << printMBBReference(*Dom.first) << ' '
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001068 << Dom.second << '\n');
1069 }
1070
1071 // Insert the hoisted copies.
1072 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
1073 DomPair &Dom = NearestDom[i];
1074 if (!Dom.first || Dom.second.isValid())
1075 continue;
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +00001076 // This value needs a hoisted copy inserted at the end of Dom.first.
1077 VNInfo *ParentVNI = Parent->getValNumInfo(i);
1078 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(ParentVNI->def);
1079 // Get a less loopy dominator than Dom.first.
1080 Dom.first = findShallowDominator(Dom.first, DefMBB);
Wei Mi9a16d652016-04-13 03:08:27 +00001081 if (SpillMode == SM_Speed &&
1082 MBFI.getBlockFreq(Dom.first) > Costs[ParentVNI->id]) {
1083 NotToHoistSet.insert(ParentVNI->id);
1084 continue;
1085 }
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001086 SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot();
1087 Dom.second =
Jakob Stoklund Olesena98af392011-09-14 16:45:39 +00001088 defFromParent(0, ParentVNI, Last, *Dom.first,
Jakob Stoklund Olesen67aec122012-01-11 02:07:00 +00001089 SA.getLastSplitPointIter(Dom.first))->def;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001090 }
1091
1092 // Remove redundant back-copies that are now known to be dominated by another
1093 // def with the same value.
1094 SmallVector<VNInfo*, 8> BackCopies;
Matthias Braun96761952014-12-10 23:07:54 +00001095 for (VNInfo *VNI : LI->valnos) {
Jakob Stoklund Olesen21809382012-08-03 20:59:29 +00001096 if (VNI->isUnused())
1097 continue;
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001098 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def);
1099 const DomPair &Dom = NearestDom[ParentVNI->id];
Wei Mi9a16d652016-04-13 03:08:27 +00001100 if (!Dom.first || Dom.second == VNI->def ||
1101 NotToHoistSet.count(ParentVNI->id))
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001102 continue;
1103 BackCopies.push_back(VNI);
Matthias Braunca0abae2018-02-02 00:08:19 +00001104 forceRecompute(0, *ParentVNI);
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001105 }
Wei Mi9a16d652016-04-13 03:08:27 +00001106
1107 // If it is not beneficial to hoist all the BackCopies, simply remove
1108 // redundant BackCopies in speed mode.
1109 if (SpillMode == SM_Speed && !NotToHoistSet.empty())
1110 computeRedundantBackCopies(NotToHoistSet, BackCopies);
1111
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001112 removeBackCopies(BackCopies);
1113}
1114
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001115/// transferValues - Transfer all possible values to the new live ranges.
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +00001116/// Values that were rematerialized are left alone, they need LRCalc.extend().
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001117bool SplitEditor::transferValues() {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001118 bool Skipped = false;
1119 RegAssignMap::const_iterator AssignI = RegAssign.begin();
Matthias Braun96761952014-12-10 23:07:54 +00001120 for (const LiveRange::Segment &S : Edit->getParent()) {
1121 DEBUG(dbgs() << " blit " << S << ':');
1122 VNInfo *ParentVNI = S.valno;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001123 // RegAssign has holes where RegIdx 0 should be used.
Matthias Braun96761952014-12-10 23:07:54 +00001124 SlotIndex Start = S.start;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001125 AssignI.advanceTo(Start);
1126 do {
1127 unsigned RegIdx;
Matthias Braun96761952014-12-10 23:07:54 +00001128 SlotIndex End = S.end;
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001129 if (!AssignI.valid()) {
1130 RegIdx = 0;
1131 } else if (AssignI.start() <= Start) {
1132 RegIdx = AssignI.value();
1133 if (AssignI.stop() < End) {
1134 End = AssignI.stop();
1135 ++AssignI;
1136 }
1137 } else {
1138 RegIdx = 0;
1139 End = std::min(End, AssignI.start());
1140 }
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001141
1142 // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI.
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001143 DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +00001144 << '(' << printReg(Edit->get(RegIdx)) << ')');
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001145 LiveInterval &LI = LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001146
1147 // Check for a simply defined value that can be blitted directly.
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +00001148 ValueForcePair VFP = Values.lookup(std::make_pair(RegIdx, ParentVNI->id));
1149 if (VNInfo *VNI = VFP.getPointer()) {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001150 DEBUG(dbgs() << ':' << VNI->id);
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001151 LI.addSegment(LiveInterval::Segment(Start, End, VNI));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001152 Start = End;
1153 continue;
1154 }
1155
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +00001156 // Skip values with forced recomputation.
1157 if (VFP.getInt()) {
1158 DEBUG(dbgs() << "(recalc)");
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001159 Skipped = true;
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001160 Start = End;
1161 continue;
1162 }
1163
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +00001164 LiveRangeCalc &LRC = getLRCalc(RegIdx);
1165
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001166 // This value has multiple defs in RegIdx, but it wasn't rematerialized,
1167 // so the live range is accurate. Add live-in blocks in [Start;End) to the
1168 // LiveInBlocks.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +00001169 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start)->getIterator();
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001170 SlotIndex BlockStart, BlockEnd;
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +00001171 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(&*MBB);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001172
1173 // The first block may be live-in, or it may have its own def.
1174 if (Start != BlockStart) {
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001175 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001176 assert(VNI && "Missing def for complex mapped value");
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001177 DEBUG(dbgs() << ':' << VNI->id << "*" << printMBBReference(*MBB));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001178 // MBB has its own def. Is it also live-out?
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +00001179 if (BlockEnd <= End)
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +00001180 LRC.setLiveOutValue(&*MBB, VNI);
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +00001181
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001182 // Skip to the next block for live-in.
1183 ++MBB;
1184 BlockStart = BlockEnd;
1185 }
1186
1187 // Handle the live-in blocks covered by [Start;End).
1188 assert(Start <= BlockStart && "Expected live-in block");
1189 while (BlockStart < End) {
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001190 DEBUG(dbgs() << ">" << printMBBReference(*MBB));
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +00001191 BlockEnd = LIS.getMBBEndIdx(&*MBB);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001192 if (BlockStart == ParentVNI->def) {
1193 // This block has the def of a parent PHI, so it isn't live-in.
1194 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?");
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001195 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End));
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001196 assert(VNI && "Missing def for complex mapped parent PHI");
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +00001197 if (End >= BlockEnd)
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +00001198 LRC.setLiveOutValue(&*MBB, VNI); // Live-out as well.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001199 } else {
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +00001200 // This block needs a live-in value. The last block covered may not
1201 // be live-out.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001202 if (End < BlockEnd)
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001203 LRC.addLiveInBlock(LI, MDT[&*MBB], End);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001204 else {
Jakob Stoklund Olesen487f2a32011-09-13 01:34:21 +00001205 // Live-through, and we don't know the value.
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001206 LRC.addLiveInBlock(LI, MDT[&*MBB]);
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +00001207 LRC.setLiveOutValue(&*MBB, nullptr);
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001208 }
1209 }
1210 BlockStart = BlockEnd;
1211 ++MBB;
1212 }
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001213 Start = End;
Matthias Braun96761952014-12-10 23:07:54 +00001214 } while (Start != S.end);
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001215 DEBUG(dbgs() << '\n');
1216 }
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001217
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +00001218 LRCalc[0].calculateValues();
Jakob Stoklund Olesen054984d2011-09-13 16:47:53 +00001219 if (SpillMode)
Jakob Stoklund Olesen5ef0e0b2012-06-04 18:21:16 +00001220 LRCalc[1].calculateValues();
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001221
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001222 return Skipped;
1223}
1224
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001225static bool removeDeadSegment(SlotIndex Def, LiveRange &LR) {
1226 const LiveRange::Segment *Seg = LR.getSegmentContaining(Def);
1227 if (Seg == nullptr)
1228 return true;
1229 if (Seg->end != Def.getDeadSlot())
1230 return false;
1231 // This is a dead PHI. Remove it.
1232 LR.removeSegment(*Seg, true);
1233 return true;
1234}
1235
1236void SplitEditor::extendPHIRange(MachineBasicBlock &B, LiveRangeCalc &LRC,
Krzysztof Parzyszek73c8a9b2016-11-21 20:24:12 +00001237 LiveRange &LR, LaneBitmask LM,
1238 ArrayRef<SlotIndex> Undefs) {
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001239 for (MachineBasicBlock *P : B.predecessors()) {
1240 SlotIndex End = LIS.getMBBEndIdx(P);
1241 SlotIndex LastUse = End.getPrevSlot();
1242 // The predecessor may not have a live-out value. That is OK, like an
1243 // undef PHI operand.
Krzysztof Parzyszek73c8a9b2016-11-21 20:24:12 +00001244 LiveInterval &PLI = Edit->getParent();
1245 // Need the cast because the inputs to ?: would otherwise be deemed
1246 // "incompatible": SubRange vs LiveInterval.
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001247 LiveRange &PSR = !LM.all() ? getSubRangeForMask(LM, PLI)
1248 : static_cast<LiveRange&>(PLI);
Krzysztof Parzyszek73c8a9b2016-11-21 20:24:12 +00001249 if (PSR.liveAt(LastUse))
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001250 LRC.extend(LR, End, /*PhysReg=*/0, Undefs);
1251 }
1252}
1253
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +00001254void SplitEditor::extendPHIKillRanges() {
Wei Mi9a16d652016-04-13 03:08:27 +00001255 // Extend live ranges to be live-out for successor PHI values.
Wei Mi9a16d652016-04-13 03:08:27 +00001256
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001257 // Visit each PHI def slot in the parent live interval. If the def is dead,
1258 // remove it. Otherwise, extend the live interval to reach the end indexes
1259 // of all predecessor blocks.
Wei Mi9a16d652016-04-13 03:08:27 +00001260
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001261 LiveInterval &ParentLI = Edit->getParent();
1262 for (const VNInfo *V : ParentLI.valnos) {
1263 if (V->isUnused() || !V->isPHIDef())
1264 continue;
1265
1266 unsigned RegIdx = RegAssign.lookup(V->def);
1267 LiveInterval &LI = LIS.getInterval(Edit->get(RegIdx));
Jakob Stoklund Olesen820c8fd02011-09-13 17:38:57 +00001268 LiveRangeCalc &LRC = getLRCalc(RegIdx);
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001269 MachineBasicBlock &B = *LIS.getMBBFromIndex(V->def);
1270 if (!removeDeadSegment(V->def, LI))
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001271 extendPHIRange(B, LRC, LI, LaneBitmask::getAll(), /*Undefs=*/{});
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001272 }
1273
1274 SmallVector<SlotIndex, 4> Undefs;
1275 LiveRangeCalc SubLRC;
1276
1277 for (LiveInterval::SubRange &PS : ParentLI.subranges()) {
1278 for (const VNInfo *V : PS.valnos) {
1279 if (V->isUnused() || !V->isPHIDef())
1280 continue;
1281 unsigned RegIdx = RegAssign.lookup(V->def);
1282 LiveInterval &LI = LIS.getInterval(Edit->get(RegIdx));
1283 LiveInterval::SubRange &S = getSubRangeForMask(PS.LaneMask, LI);
1284 if (removeDeadSegment(V->def, S))
1285 continue;
1286
1287 MachineBasicBlock &B = *LIS.getMBBFromIndex(V->def);
1288 SubLRC.reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
1289 &LIS.getVNInfoAllocator());
1290 Undefs.clear();
1291 LI.computeSubRangeUndefs(Undefs, PS.LaneMask, MRI, *LIS.getSlotIndexes());
Krzysztof Parzyszek73c8a9b2016-11-21 20:24:12 +00001292 extendPHIRange(B, SubLRC, S, PS.LaneMask, Undefs);
Jakob Stoklund Olesen36482632011-03-02 23:05:16 +00001293 }
1294 }
1295}
1296
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +00001297/// rewriteAssigned - Rewrite all uses of Edit->getReg().
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001298void SplitEditor::rewriteAssigned(bool ExtendRanges) {
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001299 struct ExtPoint {
1300 ExtPoint(const MachineOperand &O, unsigned R, SlotIndex N)
1301 : MO(O), RegIdx(R), Next(N) {}
Eugene Zelenko900b6332017-08-29 22:32:07 +00001302
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001303 MachineOperand MO;
1304 unsigned RegIdx;
1305 SlotIndex Next;
1306 };
1307
1308 SmallVector<ExtPoint,4> ExtPoints;
1309
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +00001310 for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()),
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +00001311 RE = MRI.reg_end(); RI != RE;) {
Owen Anderson16c6bf42014-03-13 23:12:04 +00001312 MachineOperand &MO = *RI;
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +00001313 MachineInstr *MI = MO.getParent();
1314 ++RI;
Eric Christopherede62672011-02-03 06:18:29 +00001315 // LiveDebugVariables should have handled all DBG_VALUE instructions.
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +00001316 if (MI->isDebugValue()) {
1317 DEBUG(dbgs() << "Zapping " << *MI);
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +00001318 MO.setReg(0);
1319 continue;
1320 }
Jakob Stoklund Olesenf6e03942011-02-09 21:52:09 +00001321
Jakob Stoklund Olesen56a56eb2011-07-24 20:23:50 +00001322 // <undef> operands don't really read the register, so it doesn't matter
1323 // which register we choose. When the use operand is tied to a def, we must
1324 // use the same register as the def, so just do that always.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001325 SlotIndex Idx = LIS.getInstructionIndex(*MI);
Jakob Stoklund Olesen56a56eb2011-07-24 20:23:50 +00001326 if (MO.isDef() || MO.isUndef())
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +00001327 Idx = Idx.getRegSlot(MO.isEarlyClobber());
Eric Christopherede62672011-02-03 06:18:29 +00001328
1329 // Rewrite to the mapped register at Idx.
1330 unsigned RegIdx = RegAssign.lookup(Idx);
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001331 LiveInterval &LI = LIS.getInterval(Edit->get(RegIdx));
1332 MO.setReg(LI.reg);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001333 DEBUG(dbgs() << " rewr " << printMBBReference(*MI->getParent()) << '\t'
Eric Christopherede62672011-02-03 06:18:29 +00001334 << Idx << ':' << RegIdx << '\t' << *MI);
1335
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +00001336 // Extend liveness to Idx if the instruction reads reg.
Jakob Stoklund Olesen73a9eb92011-07-24 20:33:23 +00001337 if (!ExtendRanges || MO.isUndef())
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +00001338 continue;
1339
1340 // Skip instructions that don't read Reg.
1341 if (MO.isDef()) {
1342 if (!MO.getSubReg() && !MO.isEarlyClobber())
1343 continue;
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001344 // We may want to extend a live range for a partial redef, or for a use
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +00001345 // tied to an early clobber.
1346 Idx = Idx.getPrevSlot();
1347 if (!Edit->getParent().liveAt(Idx))
1348 continue;
1349 } else
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +00001350 Idx = Idx.getRegSlot(true);
Jakob Stoklund Olesenc099dde2011-03-18 03:06:02 +00001351
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001352 SlotIndex Next = Idx.getNextSlot();
1353 if (LI.hasSubRanges()) {
1354 // We have to delay extending subranges until we have seen all operands
1355 // defining the register. This is because a <def,read-undef> operand
1356 // will create an "undef" point, and we cannot extend any subranges
1357 // until all of them have been accounted for.
Krzysztof Parzyszek3bf4aec2016-09-02 19:48:55 +00001358 if (MO.isUse())
1359 ExtPoints.push_back(ExtPoint(MO, RegIdx, Next));
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001360 } else {
1361 LiveRangeCalc &LRC = getLRCalc(RegIdx);
1362 LRC.extend(LI, Next, 0, ArrayRef<SlotIndex>());
1363 }
1364 }
1365
1366 for (ExtPoint &EP : ExtPoints) {
1367 LiveInterval &LI = LIS.getInterval(Edit->get(EP.RegIdx));
1368 assert(LI.hasSubRanges());
1369
1370 LiveRangeCalc SubLRC;
1371 unsigned Reg = EP.MO.getReg(), Sub = EP.MO.getSubReg();
1372 LaneBitmask LM = Sub != 0 ? TRI.getSubRegIndexLaneMask(Sub)
1373 : MRI.getMaxLaneMaskForVReg(Reg);
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001374 for (LiveInterval::SubRange &S : LI.subranges()) {
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001375 if ((S.LaneMask & LM).none())
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001376 continue;
1377 // The problem here can be that the new register may have been created
1378 // for a partially defined original register. For example:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +00001379 // %0:subreg_hireg<def,read-undef> = ...
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001380 // ...
Francis Visoiu Mistriha8a83d12017-12-07 10:40:31 +00001381 // %1 = COPY %0
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001382 if (S.empty())
1383 continue;
1384 SubLRC.reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT,
1385 &LIS.getVNInfoAllocator());
1386 SmallVector<SlotIndex, 4> Undefs;
1387 LI.computeSubRangeUndefs(Undefs, S.LaneMask, MRI, *LIS.getSlotIndexes());
1388 SubLRC.extend(S, EP.Next, 0, Undefs);
1389 }
1390 }
1391
1392 for (unsigned R : *Edit) {
1393 LiveInterval &LI = LIS.getInterval(R);
1394 if (!LI.hasSubRanges())
1395 continue;
1396 LI.clear();
1397 LI.removeEmptySubRanges();
1398 LIS.constructMainRangeFromSubranges(LI);
Jakob Stoklund Olesen959fcc62010-10-08 23:42:21 +00001399 }
1400}
1401
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001402void SplitEditor::deleteRematVictims() {
1403 SmallVector<MachineInstr*, 8> Dead;
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001404 for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){
Mark Laceyf9ea8852013-08-14 23:50:04 +00001405 LiveInterval *LI = &LIS.getInterval(*I);
Matthias Braun96761952014-12-10 23:07:54 +00001406 for (const LiveRange::Segment &S : LI->segments) {
Jakob Stoklund Olesend8f24052011-11-13 22:42:13 +00001407 // Dead defs end at the dead slot.
Matthias Braun96761952014-12-10 23:07:54 +00001408 if (S.end != S.valno->def.getDeadSlot())
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001409 continue;
Wei Mi9a16d652016-04-13 03:08:27 +00001410 if (S.valno->isPHIDef())
1411 continue;
Matthias Braun96761952014-12-10 23:07:54 +00001412 MachineInstr *MI = LIS.getInstructionFromIndex(S.valno->def);
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001413 assert(MI && "Missing instruction for dead def");
1414 MI->addRegisterDead(LI->reg, &TRI);
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001415
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001416 if (!MI->allDefsAreDead())
1417 continue;
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001418
Jakob Stoklund Olesen35502422011-03-20 19:46:23 +00001419 DEBUG(dbgs() << "All defs dead: " << *MI);
1420 Dead.push_back(MI);
1421 }
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001422 }
1423
1424 if (Dead.empty())
1425 return;
1426
Wei Mic0223702016-07-08 21:08:09 +00001427 Edit->eliminateDeadDefs(Dead, None, &AA);
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001428}
1429
Matthias Braunca0abae2018-02-02 00:08:19 +00001430void SplitEditor::forceRecomputeVNI(const VNInfo &ParentVNI) {
1431 // Fast-path for common case.
1432 if (!ParentVNI.isPHIDef()) {
1433 for (unsigned I = 0, E = Edit->size(); I != E; ++I)
1434 forceRecompute(I, ParentVNI);
1435 return;
1436 }
1437
1438 // Trace value through phis.
1439 SmallPtrSet<const VNInfo *, 8> Visited; ///< whether VNI was/is in worklist.
1440 SmallVector<const VNInfo *, 4> WorkList;
1441 Visited.insert(&ParentVNI);
1442 WorkList.push_back(&ParentVNI);
1443
1444 const LiveInterval &ParentLI = Edit->getParent();
1445 const SlotIndexes &Indexes = *LIS.getSlotIndexes();
1446 do {
1447 const VNInfo &VNI = *WorkList.back();
1448 WorkList.pop_back();
1449 for (unsigned I = 0, E = Edit->size(); I != E; ++I)
1450 forceRecompute(I, VNI);
1451 if (!VNI.isPHIDef())
1452 continue;
1453
1454 MachineBasicBlock &MBB = *Indexes.getMBBFromIndex(VNI.def);
1455 for (const MachineBasicBlock *Pred : MBB.predecessors()) {
1456 SlotIndex PredEnd = Indexes.getMBBEndIdx(Pred);
1457 VNInfo *PredVNI = ParentLI.getVNInfoBefore(PredEnd);
1458 assert(PredVNI && "Value available in PhiVNI predecessor");
1459 if (Visited.insert(PredVNI).second)
1460 WorkList.push_back(PredVNI);
1461 }
1462 } while(!WorkList.empty());
1463}
1464
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001465void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) {
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001466 ++NumFinished;
Eric Christopher21933532011-02-03 05:40:54 +00001467
Eric Christopherede62672011-02-03 06:18:29 +00001468 // At this point, the live intervals in Edit contain VNInfos corresponding to
1469 // the inserted copies.
1470
1471 // Add the original defs from the parent interval.
Matthias Braun96761952014-12-10 23:07:54 +00001472 for (const VNInfo *ParentVNI : Edit->getParent().valnos) {
Jakob Stoklund Olesen3295a992011-02-04 00:59:23 +00001473 if (ParentVNI->isUnused())
1474 continue;
Jakob Stoklund Olesen8ef91fc2011-03-01 23:14:53 +00001475 unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001476 defValue(RegIdx, ParentVNI, ParentVNI->def, true);
Jakob Stoklund Olesen32210de2011-03-15 21:13:22 +00001477
Jakob Stoklund Olesen5d4277d2011-09-13 23:09:04 +00001478 // Force rematted values to be recomputed everywhere.
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001479 // The new live ranges may be truncated.
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +00001480 if (Edit->didRematerialize(ParentVNI))
Matthias Braunca0abae2018-02-02 00:08:19 +00001481 forceRecomputeVNI(*ParentVNI);
Eric Christopherede62672011-02-03 06:18:29 +00001482 }
1483
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001484 // Hoist back-copies to the complement interval when in spill mode.
1485 switch (SpillMode) {
1486 case SM_Partition:
1487 // Leave all back-copies as is.
1488 break;
1489 case SM_Size:
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001490 case SM_Speed:
Wei Mi9a16d652016-04-13 03:08:27 +00001491 // hoistCopies will behave differently between size and speed.
1492 hoistCopies();
Jakob Stoklund Olesena25330f2011-09-13 22:22:39 +00001493 }
1494
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001495 // Transfer the simply mapped values, check if any are skipped.
1496 bool Skipped = transferValues();
Wei Mi9a16d652016-04-13 03:08:27 +00001497
1498 // Rewrite virtual registers, possibly extending ranges.
1499 rewriteAssigned(Skipped);
1500
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001501 if (Skipped)
Jakob Stoklund Olesen503b1432011-03-02 23:05:19 +00001502 extendPHIKillRanges();
1503 else
1504 ++NumSimple;
Eric Christopherede62672011-02-03 06:18:29 +00001505
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001506 // Delete defs that were rematted everywhere.
Jakob Stoklund Olesen1af8b4d2011-04-15 17:24:49 +00001507 if (Skipped)
Jakob Stoklund Olesenea5ebfe2011-03-08 22:46:11 +00001508 deleteRematVictims();
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +00001509
Jakob Stoklund Olesen0f1677e2010-10-07 23:34:34 +00001510 // Get rid of unused values and set phi-kill flags.
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001511 for (unsigned Reg : *Edit) {
1512 LiveInterval &LI = LIS.getInterval(Reg);
1513 LI.removeEmptySubRanges();
Mark Laceyf9ea8852013-08-14 23:50:04 +00001514 LI.RenumberValues();
1515 }
Jakob Stoklund Olesen6f8bd422010-09-21 22:32:21 +00001516
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001517 // Provide a reverse mapping from original indices to Edit ranges.
1518 if (LRMap) {
1519 LRMap->clear();
1520 for (unsigned i = 0, e = Edit->size(); i != e; ++i)
1521 LRMap->push_back(i);
1522 }
1523
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001524 // Now check if any registers were separated into multiple components.
Jakob Stoklund Olesenb3089022011-01-26 00:50:53 +00001525 ConnectedVNInfoEqClasses ConEQ(LIS);
Jakob Stoklund Olesen815196c2011-03-02 23:31:50 +00001526 for (unsigned i = 0, e = Edit->size(); i != e; ++i) {
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001527 // Don't use iterators, they are invalidated by create() below.
Matthias Braund3dd1352015-09-22 03:44:41 +00001528 unsigned VReg = Edit->get(i);
1529 LiveInterval &LI = LIS.getInterval(VReg);
1530 SmallVector<LiveInterval*, 8> SplitLIs;
1531 LIS.splitSeparateComponents(LI, SplitLIs);
1532 unsigned Original = VRM.getOriginal(VReg);
1533 for (LiveInterval *SplitLI : SplitLIs)
1534 VRM.setIsSplitFromReg(SplitLI->reg, Original);
1535
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001536 // The new intervals all map back to i.
1537 if (LRMap)
1538 LRMap->resize(Edit->size(), i);
Jakob Stoklund Olesene4f33172010-10-26 22:36:09 +00001539 }
1540
Jakob Stoklund Olesen284c2db2010-08-10 17:07:22 +00001541 // Calculate spill weight and allocation hints for new intervals.
Benjamin Kramere2a1d892013-06-17 19:00:36 +00001542 Edit->calculateRegClassAndHint(VRM.getMachineFunction(), SA.Loops, MBFI);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001543
1544 assert(!LRMap || LRMap->size() == Edit->size());
Jakob Stoklund Olesenc6984172010-07-26 23:44:11 +00001545}
1546
Jakob Stoklund Olesen36d12c62010-07-20 15:41:07 +00001547//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen622848b2010-08-12 17:07:14 +00001548// Single Block Splitting
1549//===----------------------------------------------------------------------===//
1550
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001551bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI,
1552 bool SingleInstrs) const {
1553 // Always split for multiple instructions.
1554 if (!BI.isOneInstr())
1555 return true;
1556 // Don't split for single instructions unless explicitly requested.
1557 if (!SingleInstrs)
1558 return false;
1559 // Splitting a live-through range always makes progress.
1560 if (BI.LiveIn && BI.LiveOut)
1561 return true;
1562 // No point in isolating a copy. It has no register class constraints.
1563 if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike())
1564 return false;
1565 // Finally, don't isolate an end point that was created by earlier splits.
1566 return isOriginalEndpoint(BI.FirstInstr);
1567}
1568
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001569void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) {
1570 openIntv();
1571 SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber());
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001572 SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr,
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001573 LastSplitPoint));
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001574 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) {
1575 useIntv(SegStart, leaveIntvAfter(BI.LastInstr));
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001576 } else {
1577 // The last use is after the last valid split point.
1578 SlotIndex SegStop = leaveIntvBefore(LastSplitPoint);
1579 useIntv(SegStart, SegStop);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001580 overlapIntv(SegStop, BI.LastInstr);
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001581 }
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001582}
1583
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001584//===----------------------------------------------------------------------===//
1585// Global Live Range Splitting Support
1586//===----------------------------------------------------------------------===//
1587
1588// These methods support a method of global live range splitting that uses a
1589// global algorithm to decide intervals for CFG edges. They will insert split
1590// points and color intervals in basic blocks while avoiding interference.
1591//
1592// Note that splitSingleBlock is also useful for blocks where both CFG edges
1593// are on the stack.
1594
1595void SplitEditor::splitLiveThroughBlock(unsigned MBBNum,
1596 unsigned IntvIn, SlotIndex LeaveBefore,
1597 unsigned IntvOut, SlotIndex EnterAfter){
1598 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001599 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001600
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001601 DEBUG(dbgs() << "%bb." << MBBNum << " [" << Start << ';' << Stop << ") intf "
1602 << LeaveBefore << '-' << EnterAfter << ", live-through "
1603 << IntvIn << " -> " << IntvOut);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001604
1605 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1606
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001607 assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block");
1608 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf");
1609 assert((!EnterAfter || EnterAfter >= Start) && "Interference before block");
1610
1611 MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum);
1612
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001613 if (!IntvOut) {
1614 DEBUG(dbgs() << ", spill on entry.\n");
1615 //
1616 // <<<<<<<<< Possible LeaveBefore interference.
1617 // |-----------| Live through.
1618 // -____________ Spill on entry.
1619 //
1620 selectIntv(IntvIn);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001621 SlotIndex Idx = leaveIntvAtTop(*MBB);
1622 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1623 (void)Idx;
1624 return;
1625 }
1626
1627 if (!IntvIn) {
1628 DEBUG(dbgs() << ", reload on exit.\n");
1629 //
1630 // >>>>>>> Possible EnterAfter interference.
1631 // |-----------| Live through.
1632 // ___________-- Reload on exit.
1633 //
1634 selectIntv(IntvOut);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001635 SlotIndex Idx = enterIntvAtEnd(*MBB);
1636 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1637 (void)Idx;
1638 return;
1639 }
1640
1641 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1642 DEBUG(dbgs() << ", straight through.\n");
1643 //
1644 // |-----------| Live through.
1645 // ------------- Straight through, same intv, no interference.
1646 //
1647 selectIntv(IntvOut);
1648 useIntv(Start, Stop);
1649 return;
1650 }
1651
1652 // We cannot legally insert splits after LSP.
1653 SlotIndex LSP = SA.getLastSplitPoint(MBBNum);
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001654 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001655
1656 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1657 LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) {
1658 DEBUG(dbgs() << ", switch avoiding interference.\n");
1659 //
1660 // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference.
1661 // |-----------| Live through.
1662 // ------======= Switch intervals between interference.
1663 //
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001664 selectIntv(IntvOut);
Jakob Stoklund Olesenf500cce2011-07-23 03:32:26 +00001665 SlotIndex Idx;
1666 if (LeaveBefore && LeaveBefore < LSP) {
1667 Idx = enterIntvBefore(LeaveBefore);
1668 useIntv(Idx, Stop);
1669 } else {
1670 Idx = enterIntvAtEnd(*MBB);
1671 }
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001672 selectIntv(IntvIn);
1673 useIntv(Start, Idx);
1674 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1675 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1676 return;
1677 }
1678
1679 DEBUG(dbgs() << ", create local intv for interference.\n");
1680 //
1681 // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference.
1682 // |-----------| Live through.
1683 // ==---------== Switch intervals before/after interference.
1684 //
1685 assert(LeaveBefore <= EnterAfter && "Missed case");
1686
1687 selectIntv(IntvOut);
1688 SlotIndex Idx = enterIntvAfter(EnterAfter);
1689 useIntv(Idx, Stop);
1690 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1691
1692 selectIntv(IntvIn);
1693 Idx = leaveIntvBefore(LeaveBefore);
1694 useIntv(Start, Idx);
1695 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1696}
1697
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001698void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI,
1699 unsigned IntvIn, SlotIndex LeaveBefore) {
1700 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001701 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001702
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001703 DEBUG(dbgs() << printMBBReference(*BI.MBB) << " [" << Start << ';' << Stop
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001704 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001705 << ", reg-in " << IntvIn << ", leave before " << LeaveBefore
1706 << (BI.LiveOut ? ", stack-out" : ", killed in block"));
1707
1708 assert(IntvIn && "Must have register in");
1709 assert(BI.LiveIn && "Must be live-in");
1710 assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference");
1711
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001712 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001713 DEBUG(dbgs() << " before interference.\n");
1714 //
1715 // <<< Interference after kill.
1716 // |---o---x | Killed in block.
1717 // ========= Use IntvIn everywhere.
1718 //
1719 selectIntv(IntvIn);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001720 useIntv(Start, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001721 return;
1722 }
1723
1724 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1725
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001726 if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001727 //
1728 // <<< Possible interference after last use.
1729 // |---o---o---| Live-out on stack.
1730 // =========____ Leave IntvIn after last use.
1731 //
1732 // < Interference after last use.
1733 // |---o---o--o| Live-out on stack, late last use.
1734 // ============ Copy to stack after LSP, overlap IntvIn.
1735 // \_____ Stack interval is live-out.
1736 //
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001737 if (BI.LastInstr < LSP) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001738 DEBUG(dbgs() << ", spill after last use before interference.\n");
1739 selectIntv(IntvIn);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001740 SlotIndex Idx = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001741 useIntv(Start, Idx);
1742 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1743 } else {
1744 DEBUG(dbgs() << ", spill before last split point.\n");
1745 selectIntv(IntvIn);
Jakob Stoklund Olesen37e3a132011-07-16 00:13:30 +00001746 SlotIndex Idx = leaveIntvBefore(LSP);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001747 overlapIntv(Idx, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001748 useIntv(Start, Idx);
1749 assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference");
1750 }
1751 return;
1752 }
1753
1754 // The interference is overlapping somewhere we wanted to use IntvIn. That
1755 // means we need to create a local interval that can be allocated a
1756 // different register.
1757 unsigned LocalIntv = openIntv();
Matt Beaumont-Gay26909d82011-07-16 04:18:47 +00001758 (void)LocalIntv;
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001759 DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n");
1760
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001761 if (!BI.LiveOut || BI.LastInstr < LSP) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001762 //
1763 // <<<<<<< Interference overlapping uses.
1764 // |---o---o---| Live-out on stack.
1765 // =====----____ Leave IntvIn before interference, then spill.
1766 //
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001767 SlotIndex To = leaveIntvAfter(BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001768 SlotIndex From = enterIntvBefore(LeaveBefore);
1769 useIntv(From, To);
1770 selectIntv(IntvIn);
1771 useIntv(Start, From);
1772 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1773 return;
1774 }
1775
1776 // <<<<<<< Interference overlapping uses.
1777 // |---o---o--o| Live-out on stack, late last use.
1778 // =====------- Copy to stack before LSP, overlap LocalIntv.
1779 // \_____ Stack interval is live-out.
1780 //
1781 SlotIndex To = leaveIntvBefore(LSP);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001782 overlapIntv(To, BI.LastInstr);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001783 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1784 useIntv(From, To);
1785 selectIntv(IntvIn);
1786 useIntv(Start, From);
1787 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1788}
1789
1790void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI,
1791 unsigned IntvOut, SlotIndex EnterAfter) {
1792 SlotIndex Start, Stop;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +00001793 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001794
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001795 DEBUG(dbgs() << printMBBReference(*BI.MBB) << " [" << Start << ';' << Stop
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001796 << "), uses " << BI.FirstInstr << '-' << BI.LastInstr
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001797 << ", reg-out " << IntvOut << ", enter after " << EnterAfter
1798 << (BI.LiveIn ? ", stack-in" : ", defined in block"));
1799
1800 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber());
1801
1802 assert(IntvOut && "Must have register out");
1803 assert(BI.LiveOut && "Must be live-out");
1804 assert((!EnterAfter || EnterAfter < LSP) && "Bad interference");
1805
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001806 if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001807 DEBUG(dbgs() << " after interference.\n");
1808 //
1809 // >>>> Interference before def.
1810 // | o---o---| Defined in block.
1811 // ========= Use IntvOut everywhere.
1812 //
1813 selectIntv(IntvOut);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001814 useIntv(BI.FirstInstr, Stop);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001815 return;
1816 }
1817
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001818 if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) {
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001819 DEBUG(dbgs() << ", reload after interference.\n");
1820 //
1821 // >>>> Interference before def.
1822 // |---o---o---| Live-through, stack-in.
1823 // ____========= Enter IntvOut before first use.
1824 //
1825 selectIntv(IntvOut);
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001826 SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr));
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001827 useIntv(Idx, Stop);
1828 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1829 return;
1830 }
1831
1832 // The interference is overlapping somewhere we wanted to use IntvOut. That
1833 // means we need to create a local interval that can be allocated a
1834 // different register.
1835 DEBUG(dbgs() << ", interference overlaps uses.\n");
1836 //
1837 // >>>>>>> Interference overlapping uses.
1838 // |---o---o---| Live-through, stack-in.
1839 // ____---====== Create local interval for interference range.
1840 //
1841 selectIntv(IntvOut);
1842 SlotIndex Idx = enterIntvAfter(EnterAfter);
1843 useIntv(Idx, Stop);
1844 assert((!EnterAfter || Idx >= EnterAfter) && "Interference");
1845
1846 openIntv();
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001847 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr));
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001848 useIntv(From, Idx);
1849}