blob: 5cdc3979fab70a4739828cedf324332f18102fd5 [file] [log] [blame]
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +00001//===-------- InlineSpiller.cpp - Insert spills and restores inline -------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// The inline spiller modifies the machine function directly instead of
11// inserting spills and restores in VirtRegMap.
12//
13//===----------------------------------------------------------------------===//
14
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000015#include "Spiller.h"
Wei Mi9a16d652016-04-13 03:08:27 +000016#include "llvm/ADT/MapVector.h"
Benjamin Kramerbc6666b2013-05-23 15:42:57 +000017#include "llvm/ADT/SetVector.h"
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000018#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen278bf022011-09-09 18:11:41 +000019#include "llvm/ADT/TinyPtrVector.h"
Jakob Stoklund Olesen868dd4e2010-11-10 23:55:56 +000020#include "llvm/Analysis/AliasAnalysis.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000021#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000022#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesene2c340c2010-10-26 00:11:35 +000023#include "llvm/CodeGen/LiveStackAnalysis.h"
Benjamin Kramere2a1d892013-06-17 19:00:36 +000024#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Manman Renc9355602014-03-21 21:46:24 +000025#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000026#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
28#include "llvm/CodeGen/MachineFunction.h"
David Blaikie0252265b2013-06-16 20:34:15 +000029#include "llvm/CodeGen/MachineInstrBuilder.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000030#include "llvm/CodeGen/MachineInstrBundle.h"
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +000031#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000033#include "llvm/CodeGen/VirtRegMap.h"
Reid Kleckner28865802016-04-14 18:29:59 +000034#include "llvm/IR/DebugInfo.h"
Jakob Stoklund Olesenbceb9e52011-09-15 21:06:00 +000035#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000036#include "llvm/Support/Debug.h"
37#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000038#include "llvm/Target/TargetInstrInfo.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000039
40using namespace llvm;
41
Chandler Carruth1b9dde02014-04-22 02:02:50 +000042#define DEBUG_TYPE "regalloc"
43
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000044STATISTIC(NumSpilledRanges, "Number of spilled live ranges");
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +000045STATISTIC(NumSnippets, "Number of spilled snippets");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000046STATISTIC(NumSpills, "Number of spills inserted");
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +000047STATISTIC(NumSpillsRemoved, "Number of spills removed");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000048STATISTIC(NumReloads, "Number of reloads inserted");
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +000049STATISTIC(NumReloadsRemoved, "Number of reloads removed");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000050STATISTIC(NumFolded, "Number of folded stack accesses");
51STATISTIC(NumFoldedLoads, "Number of folded loads");
52STATISTIC(NumRemats, "Number of rematerialized defs for spilling");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000053
Jakob Stoklund Olesenbceb9e52011-09-15 21:06:00 +000054static cl::opt<bool> DisableHoisting("disable-spill-hoist", cl::Hidden,
55 cl::desc("Disable inline spill hoisting"));
56
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000057namespace {
Wei Mi9a16d652016-04-13 03:08:27 +000058class HoistSpillHelper {
59 LiveIntervals &LIS;
60 LiveStacks &LSS;
61 AliasAnalysis *AA;
62 MachineDominatorTree &MDT;
63 MachineLoopInfo &Loops;
64 VirtRegMap &VRM;
65 MachineFrameInfo &MFI;
66 MachineRegisterInfo &MRI;
67 const TargetInstrInfo &TII;
68 const TargetRegisterInfo &TRI;
69 const MachineBlockFrequencyInfo &MBFI;
70
71 // Map from StackSlot to its original register.
72 DenseMap<int, unsigned> StackSlotToReg;
73 // Map from pair of (StackSlot and Original VNI) to a set of spills which
74 // have the same stackslot and have equal values defined by Original VNI.
75 // These spills are mergeable and are hoist candiates.
76 typedef MapVector<std::pair<int, VNInfo *>, SmallPtrSet<MachineInstr *, 16>>
77 MergeableSpillsMap;
78 MergeableSpillsMap MergeableSpills;
79
80 /// This is the map from original register to a set containing all its
81 /// siblings. To hoist a spill to another BB, we need to find out a live
82 /// sibling there and use it as the source of the new spill.
83 DenseMap<unsigned, SmallSetVector<unsigned, 16>> Virt2SiblingsMap;
84
85 bool isSpillCandBB(unsigned OrigReg, VNInfo &OrigVNI, MachineBasicBlock &BB,
86 unsigned &LiveReg);
87
88 void rmRedundantSpills(
89 SmallPtrSet<MachineInstr *, 16> &Spills,
90 SmallVectorImpl<MachineInstr *> &SpillsToRm,
91 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill);
92
93 void getVisitOrders(
94 MachineBasicBlock *Root, SmallPtrSet<MachineInstr *, 16> &Spills,
95 SmallVectorImpl<MachineDomTreeNode *> &Orders,
96 SmallVectorImpl<MachineInstr *> &SpillsToRm,
97 DenseMap<MachineDomTreeNode *, unsigned> &SpillsToKeep,
98 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill);
99
100 void runHoistSpills(unsigned OrigReg, VNInfo &OrigVNI,
101 SmallPtrSet<MachineInstr *, 16> &Spills,
102 SmallVectorImpl<MachineInstr *> &SpillsToRm,
103 DenseMap<MachineBasicBlock *, unsigned> &SpillsToIns);
104
105public:
106 HoistSpillHelper(MachineFunctionPass &pass, MachineFunction &mf,
107 VirtRegMap &vrm)
108 : LIS(pass.getAnalysis<LiveIntervals>()),
109 LSS(pass.getAnalysis<LiveStacks>()),
110 AA(&pass.getAnalysis<AAResultsWrapperPass>().getAAResults()),
111 MDT(pass.getAnalysis<MachineDominatorTree>()),
112 Loops(pass.getAnalysis<MachineLoopInfo>()), VRM(vrm),
113 MFI(*mf.getFrameInfo()), MRI(mf.getRegInfo()),
114 TII(*mf.getSubtarget().getInstrInfo()),
115 TRI(*mf.getSubtarget().getRegisterInfo()),
116 MBFI(pass.getAnalysis<MachineBlockFrequencyInfo>()) {}
117
118 void addToMergeableSpills(MachineInstr *Spill, int StackSlot,
119 unsigned Original);
120 bool rmFromMergeableSpills(MachineInstr *Spill, int StackSlot);
121 void hoistAllSpills(LiveRangeEdit &Edit);
122};
123
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000124class InlineSpiller : public Spiller {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000125 MachineFunction &MF;
126 LiveIntervals &LIS;
127 LiveStacks &LSS;
128 AliasAnalysis *AA;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000129 MachineDominatorTree &MDT;
130 MachineLoopInfo &Loops;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000131 VirtRegMap &VRM;
132 MachineFrameInfo &MFI;
133 MachineRegisterInfo &MRI;
134 const TargetInstrInfo &TII;
135 const TargetRegisterInfo &TRI;
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000136 const MachineBlockFrequencyInfo &MBFI;
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000137
138 // Variables that are valid during spill(), but used by multiple methods.
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000139 LiveRangeEdit *Edit;
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000140 LiveInterval *StackInt;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000141 int StackSlot;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000142 unsigned Original;
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000143
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000144 // All registers to spill to StackSlot, including the main register.
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000145 SmallVector<unsigned, 8> RegsToSpill;
146
147 // All COPY instructions to/from snippets.
148 // They are ignored since both operands refer to the same stack slot.
149 SmallPtrSet<MachineInstr*, 8> SnippetCopies;
150
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000151 // Values that failed to remat at some point.
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000152 SmallPtrSet<VNInfo*, 8> UsedValues;
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000153
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000154 // Dead defs generated during spilling.
155 SmallVector<MachineInstr*, 8> DeadDefs;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000156
Wei Mi9a16d652016-04-13 03:08:27 +0000157 // Object records spills information and does the hoisting.
158 HoistSpillHelper HSpiller;
159
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000160 ~InlineSpiller() override {}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000161
162public:
Eric Christopherd9134482014-08-04 21:25:23 +0000163 InlineSpiller(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm)
164 : MF(mf), LIS(pass.getAnalysis<LiveIntervals>()),
165 LSS(pass.getAnalysis<LiveStacks>()),
Chandler Carruth7b560d42015-09-09 17:55:00 +0000166 AA(&pass.getAnalysis<AAResultsWrapperPass>().getAAResults()),
Eric Christopherd9134482014-08-04 21:25:23 +0000167 MDT(pass.getAnalysis<MachineDominatorTree>()),
168 Loops(pass.getAnalysis<MachineLoopInfo>()), VRM(vrm),
169 MFI(*mf.getFrameInfo()), MRI(mf.getRegInfo()),
Eric Christopherfc6de422014-08-05 02:39:49 +0000170 TII(*mf.getSubtarget().getInstrInfo()),
171 TRI(*mf.getSubtarget().getRegisterInfo()),
Wei Mi9a16d652016-04-13 03:08:27 +0000172 MBFI(pass.getAnalysis<MachineBlockFrequencyInfo>()),
173 HSpiller(pass, mf, vrm) {}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000174
Craig Topper4584cd52014-03-07 09:26:03 +0000175 void spill(LiveRangeEdit &) override;
Wei Mi9a16d652016-04-13 03:08:27 +0000176 void postOptimization() override;
Jakob Stoklund Olesen72911e42010-10-14 23:49:52 +0000177
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000178private:
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000179 bool isSnippet(const LiveInterval &SnipLI);
180 void collectRegsToSpill();
181
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000182 bool isRegToSpill(unsigned Reg) {
183 return std::find(RegsToSpill.begin(),
184 RegsToSpill.end(), Reg) != RegsToSpill.end();
185 }
186
187 bool isSibling(unsigned Reg);
Wei Mi9a16d652016-04-13 03:08:27 +0000188 bool hoistSpillInsideBB(LiveInterval &SpillLI, MachineInstr &CopyMI);
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000189 void eliminateRedundantSpills(LiveInterval &LI, VNInfo *VNI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000190
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000191 void markValueUsed(LiveInterval*, VNInfo*);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000192 bool reMaterializeFor(LiveInterval &, MachineInstr &MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000193 void reMaterializeAll();
194
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000195 bool coalesceStackAccess(MachineInstr *MI, unsigned Reg);
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000196 bool foldMemoryOperand(ArrayRef<std::pair<MachineInstr*, unsigned> >,
Craig Topperc0196b12014-04-14 00:51:57 +0000197 MachineInstr *LoadMI = nullptr);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000198 void insertReload(unsigned VReg, SlotIndex, MachineBasicBlock::iterator MI);
199 void insertSpill(unsigned VReg, bool isKill, MachineBasicBlock::iterator MI);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000200
201 void spillAroundUses(unsigned Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000202 void spillAll();
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000203};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000204}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000205
206namespace llvm {
Lang Hamescdd90772014-11-06 19:12:38 +0000207
208Spiller::~Spiller() { }
209void Spiller::anchor() { }
210
Jakob Stoklund Olesen0fef9dd2010-07-20 23:50:15 +0000211Spiller *createInlineSpiller(MachineFunctionPass &pass,
212 MachineFunction &mf,
213 VirtRegMap &vrm) {
214 return new InlineSpiller(pass, mf, vrm);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000215}
Lang Hamescdd90772014-11-06 19:12:38 +0000216
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000217}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000218
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000219//===----------------------------------------------------------------------===//
220// Snippets
221//===----------------------------------------------------------------------===//
222
223// When spilling a virtual register, we also spill any snippets it is connected
224// to. The snippets are small live ranges that only have a single real use,
225// leftovers from live range splitting. Spilling them enables memory operand
226// folding or tightens the live range around the single use.
227//
228// This minimizes register pressure and maximizes the store-to-load distance for
229// spill slots which can be important in tight loops.
230
231/// isFullCopyOf - If MI is a COPY to or from Reg, return the other register,
232/// otherwise return 0.
233static unsigned isFullCopyOf(const MachineInstr *MI, unsigned Reg) {
Rafael Espindola070f96c2011-06-30 21:15:52 +0000234 if (!MI->isFullCopy())
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000235 return 0;
236 if (MI->getOperand(0).getReg() == Reg)
237 return MI->getOperand(1).getReg();
238 if (MI->getOperand(1).getReg() == Reg)
239 return MI->getOperand(0).getReg();
240 return 0;
241}
242
243/// isSnippet - Identify if a live interval is a snippet that should be spilled.
244/// It is assumed that SnipLI is a virtual register with the same original as
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000245/// Edit->getReg().
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000246bool InlineSpiller::isSnippet(const LiveInterval &SnipLI) {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000247 unsigned Reg = Edit->getReg();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000248
249 // A snippet is a tiny live range with only a single instruction using it
250 // besides copies to/from Reg or spills/fills. We accept:
251 //
252 // %snip = COPY %Reg / FILL fi#
253 // %snip = USE %snip
254 // %Reg = COPY %snip / SPILL %snip, fi#
255 //
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000256 if (SnipLI.getNumValNums() > 2 || !LIS.intervalIsInOneMBB(SnipLI))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000257 return false;
258
Craig Topperc0196b12014-04-14 00:51:57 +0000259 MachineInstr *UseMI = nullptr;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000260
261 // Check that all uses satisfy our criteria.
Owen Andersonabb90c92014-03-13 06:02:25 +0000262 for (MachineRegisterInfo::reg_instr_nodbg_iterator
263 RI = MRI.reg_instr_nodbg_begin(SnipLI.reg),
264 E = MRI.reg_instr_nodbg_end(); RI != E; ) {
265 MachineInstr *MI = &*(RI++);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000266
267 // Allow copies to/from Reg.
268 if (isFullCopyOf(MI, Reg))
269 continue;
270
271 // Allow stack slot loads.
272 int FI;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000273 if (SnipLI.reg == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000274 continue;
275
276 // Allow stack slot stores.
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000277 if (SnipLI.reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000278 continue;
279
280 // Allow a single additional instruction.
281 if (UseMI && MI != UseMI)
282 return false;
283 UseMI = MI;
284 }
285 return true;
286}
287
288/// collectRegsToSpill - Collect live range snippets that only have a single
289/// real use.
290void InlineSpiller::collectRegsToSpill() {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000291 unsigned Reg = Edit->getReg();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000292
293 // Main register always spills.
294 RegsToSpill.assign(1, Reg);
295 SnippetCopies.clear();
296
297 // Snippets all have the same original, so there can't be any for an original
298 // register.
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000299 if (Original == Reg)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000300 return;
301
Owen Andersonabb90c92014-03-13 06:02:25 +0000302 for (MachineRegisterInfo::reg_instr_iterator
303 RI = MRI.reg_instr_begin(Reg), E = MRI.reg_instr_end(); RI != E; ) {
304 MachineInstr *MI = &*(RI++);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000305 unsigned SnipReg = isFullCopyOf(MI, Reg);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000306 if (!isSibling(SnipReg))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000307 continue;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000308 LiveInterval &SnipLI = LIS.getInterval(SnipReg);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000309 if (!isSnippet(SnipLI))
310 continue;
311 SnippetCopies.insert(MI);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000312 if (isRegToSpill(SnipReg))
313 continue;
314 RegsToSpill.push_back(SnipReg);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000315 DEBUG(dbgs() << "\talso spill snippet " << SnipLI << '\n');
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000316 ++NumSnippets;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000317 }
318}
319
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000320bool InlineSpiller::isSibling(unsigned Reg) {
321 return TargetRegisterInfo::isVirtualRegister(Reg) &&
322 VRM.getOriginal(Reg) == Original;
323}
324
Wei Mi9a16d652016-04-13 03:08:27 +0000325/// It is beneficial to spill to earlier place in the same BB in case
326/// as follows:
327/// There is an alternative def earlier in the same MBB.
328/// Hoist the spill as far as possible in SpillMBB. This can ease
329/// register pressure:
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000330///
Wei Mi9a16d652016-04-13 03:08:27 +0000331/// x = def
332/// y = use x
333/// s = copy x
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000334///
Wei Mi9a16d652016-04-13 03:08:27 +0000335/// Hoisting the spill of s to immediately after the def removes the
336/// interference between x and y:
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000337///
Wei Mi9a16d652016-04-13 03:08:27 +0000338/// x = def
339/// spill x
340/// y = use x<kill>
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000341///
Wei Mi9a16d652016-04-13 03:08:27 +0000342/// This hoist only helps when the copy kills its source.
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000343///
Wei Mi9a16d652016-04-13 03:08:27 +0000344bool InlineSpiller::hoistSpillInsideBB(LiveInterval &SpillLI,
345 MachineInstr &CopyMI) {
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000346 SlotIndex Idx = LIS.getInstructionIndex(CopyMI);
Wei Mi9a16d652016-04-13 03:08:27 +0000347#ifndef NDEBUG
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000348 VNInfo *VNI = SpillLI.getVNInfoAt(Idx.getRegSlot());
349 assert(VNI && VNI->def == Idx.getRegSlot() && "Not defined by copy");
Wei Mi9a16d652016-04-13 03:08:27 +0000350#endif
Wei Mifb5252c2016-04-04 17:45:03 +0000351
Wei Mi9a16d652016-04-13 03:08:27 +0000352 unsigned SrcReg = CopyMI.getOperand(1).getReg();
353 LiveInterval &SrcLI = LIS.getInterval(SrcReg);
354 VNInfo *SrcVNI = SrcLI.getVNInfoAt(Idx);
355 LiveQueryResult SrcQ = SrcLI.Query(Idx);
356 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(SrcVNI->def);
357 if (DefMBB != CopyMI.getParent() || !SrcQ.isKill())
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000358 return false;
359
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000360 // Conservatively extend the stack slot range to the range of the original
361 // value. We may be able to do better with stack slot coloring by being more
362 // careful here.
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000363 assert(StackInt && "No stack slot assigned yet.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000364 LiveInterval &OrigLI = LIS.getInterval(Original);
365 VNInfo *OrigVNI = OrigLI.getVNInfoAt(Idx);
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000366 StackInt->MergeValueInAsValue(OrigLI, OrigVNI, StackInt->getValNumInfo(0));
Jakob Stoklund Olesen86985072011-03-19 23:02:47 +0000367 DEBUG(dbgs() << "\tmerged orig valno " << OrigVNI->id << ": "
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000368 << *StackInt << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000369
Wei Mi9a16d652016-04-13 03:08:27 +0000370 // We are going to spill SrcVNI immediately after its def, so clear out
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000371 // any later spills of the same value.
Wei Mi9a16d652016-04-13 03:08:27 +0000372 eliminateRedundantSpills(SrcLI, SrcVNI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000373
Wei Mi9a16d652016-04-13 03:08:27 +0000374 MachineBasicBlock *MBB = LIS.getMBBFromIndex(SrcVNI->def);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000375 MachineBasicBlock::iterator MII;
Wei Mi9a16d652016-04-13 03:08:27 +0000376 if (SrcVNI->isPHIDef())
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000377 MII = MBB->SkipPHIsAndLabels(MBB->begin());
378 else {
Wei Mi9a16d652016-04-13 03:08:27 +0000379 MachineInstr *DefMI = LIS.getInstructionFromIndex(SrcVNI->def);
Jakob Stoklund Olesenec9b4a62011-04-30 06:42:21 +0000380 assert(DefMI && "Defining instruction disappeared");
381 MII = DefMI;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000382 ++MII;
383 }
384 // Insert spill without kill flag immediately after def.
Wei Mi9a16d652016-04-13 03:08:27 +0000385 TII.storeRegToStackSlot(*MBB, MII, SrcReg, false, StackSlot,
386 MRI.getRegClass(SrcReg), &TRI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000387 --MII; // Point to store instruction.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000388 LIS.InsertMachineInstrInMaps(*MII);
Wei Mi9a16d652016-04-13 03:08:27 +0000389 DEBUG(dbgs() << "\thoisted: " << SrcVNI->def << '\t' << *MII);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000390
Wei Mi9a16d652016-04-13 03:08:27 +0000391 HSpiller.addToMergeableSpills(&(*MII), StackSlot, Original);
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000392 ++NumSpills;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000393 return true;
394}
395
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000396/// eliminateRedundantSpills - SLI:VNI is known to be on the stack. Remove any
397/// redundant spills of this value in SLI.reg and sibling copies.
398void InlineSpiller::eliminateRedundantSpills(LiveInterval &SLI, VNInfo *VNI) {
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000399 assert(VNI && "Missing value");
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000400 SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList;
401 WorkList.push_back(std::make_pair(&SLI, VNI));
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000402 assert(StackInt && "No stack slot assigned yet.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000403
404 do {
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000405 LiveInterval *LI;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000406 std::tie(LI, VNI) = WorkList.pop_back_val();
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000407 unsigned Reg = LI->reg;
Jakob Stoklund Olesenec9b4a62011-04-30 06:42:21 +0000408 DEBUG(dbgs() << "Checking redundant spills for "
409 << VNI->id << '@' << VNI->def << " in " << *LI << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000410
411 // Regs to spill are taken care of.
412 if (isRegToSpill(Reg))
413 continue;
414
415 // Add all of VNI's live range to StackInt.
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000416 StackInt->MergeValueInAsValue(*LI, VNI, StackInt->getValNumInfo(0));
417 DEBUG(dbgs() << "Merged to stack int: " << *StackInt << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000418
419 // Find all spills and copies of VNI.
Owen Andersonabb90c92014-03-13 06:02:25 +0000420 for (MachineRegisterInfo::use_instr_nodbg_iterator
421 UI = MRI.use_instr_nodbg_begin(Reg), E = MRI.use_instr_nodbg_end();
422 UI != E; ) {
423 MachineInstr *MI = &*(UI++);
Evan Cheng7f8e5632011-12-07 07:15:52 +0000424 if (!MI->isCopy() && !MI->mayStore())
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000425 continue;
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000426 SlotIndex Idx = LIS.getInstructionIndex(*MI);
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000427 if (LI->getVNInfoAt(Idx) != VNI)
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000428 continue;
429
430 // Follow sibling copies down the dominator tree.
431 if (unsigned DstReg = isFullCopyOf(MI, Reg)) {
432 if (isSibling(DstReg)) {
433 LiveInterval &DstLI = LIS.getInterval(DstReg);
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000434 VNInfo *DstVNI = DstLI.getVNInfoAt(Idx.getRegSlot());
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000435 assert(DstVNI && "Missing defined value");
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000436 assert(DstVNI->def == Idx.getRegSlot() && "Wrong copy def slot");
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000437 WorkList.push_back(std::make_pair(&DstLI, DstVNI));
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000438 }
439 continue;
440 }
441
442 // Erase spills.
443 int FI;
444 if (Reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot) {
445 DEBUG(dbgs() << "Redundant spill " << Idx << '\t' << *MI);
446 // eliminateDeadDefs won't normally remove stores, so switch opcode.
447 MI->setDesc(TII.get(TargetOpcode::KILL));
448 DeadDefs.push_back(MI);
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000449 ++NumSpillsRemoved;
Wei Mi9a16d652016-04-13 03:08:27 +0000450 if (HSpiller.rmFromMergeableSpills(MI, StackSlot))
451 --NumSpills;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000452 }
453 }
454 } while (!WorkList.empty());
455}
456
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000457
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000458//===----------------------------------------------------------------------===//
459// Rematerialization
460//===----------------------------------------------------------------------===//
461
462/// markValueUsed - Remember that VNI failed to rematerialize, so its defining
463/// instruction cannot be eliminated. See through snippet copies
464void InlineSpiller::markValueUsed(LiveInterval *LI, VNInfo *VNI) {
465 SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList;
466 WorkList.push_back(std::make_pair(LI, VNI));
467 do {
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000468 std::tie(LI, VNI) = WorkList.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +0000469 if (!UsedValues.insert(VNI).second)
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000470 continue;
471
472 if (VNI->isPHIDef()) {
473 MachineBasicBlock *MBB = LIS.getMBBFromIndex(VNI->def);
Craig Topper73275a22015-12-24 05:20:40 +0000474 for (MachineBasicBlock *P : MBB->predecessors()) {
475 VNInfo *PVNI = LI->getVNInfoBefore(LIS.getMBBEndIdx(P));
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000476 if (PVNI)
477 WorkList.push_back(std::make_pair(LI, PVNI));
478 }
479 continue;
480 }
481
482 // Follow snippet copies.
483 MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def);
484 if (!SnippetCopies.count(MI))
485 continue;
486 LiveInterval &SnipLI = LIS.getInterval(MI->getOperand(1).getReg());
487 assert(isRegToSpill(SnipLI.reg) && "Unexpected register in copy");
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000488 VNInfo *SnipVNI = SnipLI.getVNInfoAt(VNI->def.getRegSlot(true));
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000489 assert(SnipVNI && "Snippet undefined before copy");
490 WorkList.push_back(std::make_pair(&SnipLI, SnipVNI));
491 } while (!WorkList.empty());
492}
493
494/// reMaterializeFor - Attempt to rematerialize before MI instead of reloading.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000495bool InlineSpiller::reMaterializeFor(LiveInterval &VirtReg, MachineInstr &MI) {
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000496
497 // Analyze instruction
498 SmallVector<std::pair<MachineInstr *, unsigned>, 8> Ops;
499 MIBundleOperands::VirtRegInfo RI =
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000500 MIBundleOperands(MI).analyzeVirtReg(VirtReg.reg, &Ops);
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000501
502 if (!RI.Reads)
503 return false;
504
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000505 SlotIndex UseIdx = LIS.getInstructionIndex(MI).getRegSlot(true);
Jakob Stoklund Olesenc0dd3da2011-07-18 05:31:59 +0000506 VNInfo *ParentVNI = VirtReg.getVNInfoAt(UseIdx.getBaseIndex());
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000507
508 if (!ParentVNI) {
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000509 DEBUG(dbgs() << "\tadding <undef> flags: ");
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000510 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
511 MachineOperand &MO = MI.getOperand(i);
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000512 if (MO.isReg() && MO.isUse() && MO.getReg() == VirtReg.reg)
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000513 MO.setIsUndef();
514 }
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000515 DEBUG(dbgs() << UseIdx << '\t' << MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000516 return true;
517 }
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000518
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000519 if (SnippetCopies.count(&MI))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000520 return false;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000521
Wei Mi9a16d652016-04-13 03:08:27 +0000522 LiveInterval &OrigLI = LIS.getInterval(Original);
523 VNInfo *OrigVNI = OrigLI.getVNInfoAt(UseIdx);
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000524 LiveRangeEdit::Remat RM(ParentVNI);
Wei Mi9a16d652016-04-13 03:08:27 +0000525 RM.OrigMI = LIS.getInstructionFromIndex(OrigVNI->def);
526
527 if (!Edit->canRematerializeAt(RM, OrigVNI, UseIdx, false)) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000528 markValueUsed(&VirtReg, ParentVNI);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000529 DEBUG(dbgs() << "\tcannot remat for " << UseIdx << '\t' << MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000530 return false;
531 }
532
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000533 // If the instruction also writes VirtReg.reg, it had better not require the
534 // same register for uses and defs.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000535 if (RI.Tied) {
536 markValueUsed(&VirtReg, ParentVNI);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000537 DEBUG(dbgs() << "\tcannot remat tied reg: " << UseIdx << '\t' << MI);
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000538 return false;
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000539 }
540
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000541 // Before rematerializing into a register for a single instruction, try to
542 // fold a load into the instruction. That avoids allocating a new register.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000543 if (RM.OrigMI->canFoldAsLoad() &&
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000544 foldMemoryOperand(Ops, RM.OrigMI)) {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000545 Edit->markRematerialized(RM.ParentVNI);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000546 ++NumFoldedLoads;
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000547 return true;
548 }
549
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000550 // Alocate a new register for the remat.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000551 unsigned NewVReg = Edit->createFrom(Original);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000552
553 // Finally we can rematerialize OrigMI before MI.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000554 SlotIndex DefIdx =
555 Edit->rematerializeAt(*MI.getParent(), MI, NewVReg, RM, TRI);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000556 (void)DefIdx;
Jakob Stoklund Olesenc6a20412011-02-08 19:33:55 +0000557 DEBUG(dbgs() << "\tremat: " << DefIdx << '\t'
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000558 << *LIS.getInstructionFromIndex(DefIdx));
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000559
560 // Replace operands
Craig Topper73275a22015-12-24 05:20:40 +0000561 for (const auto &OpPair : Ops) {
562 MachineOperand &MO = OpPair.first->getOperand(OpPair.second);
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000563 if (MO.isReg() && MO.isUse() && MO.getReg() == VirtReg.reg) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000564 MO.setReg(NewVReg);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000565 MO.setIsKill();
566 }
567 }
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000568 DEBUG(dbgs() << "\t " << UseIdx << '\t' << MI << '\n');
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000569
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000570 ++NumRemats;
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000571 return true;
572}
573
Jakob Stoklund Olesen72911e42010-10-14 23:49:52 +0000574/// reMaterializeAll - Try to rematerialize as many uses as possible,
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000575/// and trim the live ranges after.
576void InlineSpiller::reMaterializeAll() {
Pete Cooper2bde2f42012-04-02 22:22:53 +0000577 if (!Edit->anyRematerializable(AA))
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000578 return;
579
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000580 UsedValues.clear();
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000581
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000582 // Try to remat before all uses of snippets.
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000583 bool anyRemat = false;
Craig Topper73275a22015-12-24 05:20:40 +0000584 for (unsigned Reg : RegsToSpill) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000585 LiveInterval &LI = LIS.getInterval(Reg);
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000586 for (MachineRegisterInfo::reg_bundle_iterator
587 RegI = MRI.reg_bundle_begin(Reg), E = MRI.reg_bundle_end();
588 RegI != E; ) {
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000589 MachineInstr &MI = *RegI++;
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000590
591 // Debug values are not allowed to affect codegen.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000592 if (MI.isDebugValue())
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000593 continue;
594
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000595 anyRemat |= reMaterializeFor(LI, MI);
Owen Andersonabb90c92014-03-13 06:02:25 +0000596 }
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000597 }
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000598 if (!anyRemat)
599 return;
600
601 // Remove any values that were completely rematted.
Craig Topper73275a22015-12-24 05:20:40 +0000602 for (unsigned Reg : RegsToSpill) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000603 LiveInterval &LI = LIS.getInterval(Reg);
604 for (LiveInterval::vni_iterator I = LI.vni_begin(), E = LI.vni_end();
605 I != E; ++I) {
606 VNInfo *VNI = *I;
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000607 if (VNI->isUnused() || VNI->isPHIDef() || UsedValues.count(VNI))
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000608 continue;
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000609 MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def);
610 MI->addRegisterDead(Reg, &TRI);
611 if (!MI->allDefsAreDead())
612 continue;
613 DEBUG(dbgs() << "All defs dead: " << *MI);
614 DeadDefs.push_back(MI);
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000615 }
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000616 }
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000617
618 // Eliminate dead code after remat. Note that some snippet copies may be
619 // deleted here.
620 if (DeadDefs.empty())
621 return;
622 DEBUG(dbgs() << "Remat created " << DeadDefs.size() << " dead defs.\n");
Pete Cooper2bde2f42012-04-02 22:22:53 +0000623 Edit->eliminateDeadDefs(DeadDefs, RegsToSpill);
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000624
Wei Mia62f0582016-02-05 18:14:24 +0000625 // LiveRangeEdit::eliminateDeadDef is used to remove dead define instructions
626 // after rematerialization. To remove a VNI for a vreg from its LiveInterval,
627 // LiveIntervals::removeVRegDefAt is used. However, after non-PHI VNIs are all
628 // removed, PHI VNI are still left in the LiveInterval.
629 // So to get rid of unused reg, we need to check whether it has non-dbg
630 // reference instead of whether it has non-empty interval.
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000631 unsigned ResultPos = 0;
Craig Topper73275a22015-12-24 05:20:40 +0000632 for (unsigned Reg : RegsToSpill) {
Wei Mia62f0582016-02-05 18:14:24 +0000633 if (MRI.reg_nodbg_empty(Reg)) {
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000634 Edit->eraseVirtReg(Reg);
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000635 continue;
636 }
Wei Mia62f0582016-02-05 18:14:24 +0000637 assert((LIS.hasInterval(Reg) && !LIS.getInterval(Reg).empty()) &&
638 "Reg with empty interval has reference");
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000639 RegsToSpill[ResultPos++] = Reg;
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000640 }
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000641 RegsToSpill.erase(RegsToSpill.begin() + ResultPos, RegsToSpill.end());
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000642 DEBUG(dbgs() << RegsToSpill.size() << " registers to spill after remat.\n");
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000643}
644
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000645
646//===----------------------------------------------------------------------===//
647// Spilling
648//===----------------------------------------------------------------------===//
649
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000650/// If MI is a load or store of StackSlot, it can be removed.
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000651bool InlineSpiller::coalesceStackAccess(MachineInstr *MI, unsigned Reg) {
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000652 int FI = 0;
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000653 unsigned InstrReg = TII.isLoadFromStackSlot(MI, FI);
654 bool IsLoad = InstrReg;
655 if (!IsLoad)
656 InstrReg = TII.isStoreToStackSlot(MI, FI);
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000657
658 // We have a stack access. Is it the right register and slot?
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000659 if (InstrReg != Reg || FI != StackSlot)
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000660 return false;
661
Wei Mi9a16d652016-04-13 03:08:27 +0000662 if (!IsLoad)
663 HSpiller.rmFromMergeableSpills(MI, StackSlot);
664
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000665 DEBUG(dbgs() << "Coalescing stack access: " << *MI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000666 LIS.RemoveMachineInstrFromMaps(*MI);
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000667 MI->eraseFromParent();
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000668
669 if (IsLoad) {
670 ++NumReloadsRemoved;
671 --NumReloads;
672 } else {
673 ++NumSpillsRemoved;
674 --NumSpills;
675 }
676
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000677 return true;
678}
679
Mark Lacey9d8103d2013-08-14 23:50:16 +0000680#if !defined(NDEBUG)
681// Dump the range of instructions from B to E with their slot indexes.
682static void dumpMachineInstrRangeWithSlotIndex(MachineBasicBlock::iterator B,
683 MachineBasicBlock::iterator E,
684 LiveIntervals const &LIS,
685 const char *const header,
686 unsigned VReg =0) {
687 char NextLine = '\n';
688 char SlotIndent = '\t';
689
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000690 if (std::next(B) == E) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000691 NextLine = ' ';
692 SlotIndent = ' ';
693 }
694
695 dbgs() << '\t' << header << ": " << NextLine;
696
697 for (MachineBasicBlock::iterator I = B; I != E; ++I) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000698 SlotIndex Idx = LIS.getInstructionIndex(*I).getRegSlot();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000699
700 // If a register was passed in and this instruction has it as a
701 // destination that is marked as an early clobber, print the
702 // early-clobber slot index.
703 if (VReg) {
704 MachineOperand *MO = I->findRegisterDefOperand(VReg);
705 if (MO && MO->isEarlyClobber())
706 Idx = Idx.getRegSlot(true);
707 }
708
709 dbgs() << SlotIndent << Idx << '\t' << *I;
710 }
711}
712#endif
713
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000714/// foldMemoryOperand - Try folding stack slot references in Ops into their
715/// instructions.
716///
717/// @param Ops Operand indices from analyzeVirtReg().
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000718/// @param LoadMI Load instruction to use instead of stack slot when non-null.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000719/// @return True on success.
720bool InlineSpiller::
721foldMemoryOperand(ArrayRef<std::pair<MachineInstr*, unsigned> > Ops,
722 MachineInstr *LoadMI) {
723 if (Ops.empty())
724 return false;
725 // Don't attempt folding in bundles.
726 MachineInstr *MI = Ops.front().first;
727 if (Ops.back().first != MI || MI->isBundled())
728 return false;
729
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000730 bool WasCopy = MI->isCopy();
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000731 unsigned ImpReg = 0;
732
Philip Reames0365f1a2014-12-01 22:52:56 +0000733 bool SpillSubRegs = (MI->getOpcode() == TargetOpcode::STATEPOINT ||
734 MI->getOpcode() == TargetOpcode::PATCHPOINT ||
Andrew Trick10d5be42013-11-17 01:36:23 +0000735 MI->getOpcode() == TargetOpcode::STACKMAP);
736
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000737 // TargetInstrInfo::foldMemoryOperand only expects explicit, non-tied
738 // operands.
739 SmallVector<unsigned, 8> FoldOps;
Craig Topper73275a22015-12-24 05:20:40 +0000740 for (const auto &OpPair : Ops) {
741 unsigned Idx = OpPair.second;
742 assert(MI == OpPair.first && "Instruction conflict during operand folding");
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000743 MachineOperand &MO = MI->getOperand(Idx);
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000744 if (MO.isImplicit()) {
745 ImpReg = MO.getReg();
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000746 continue;
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000747 }
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000748 // FIXME: Teach targets to deal with subregs.
Andrew Trick10d5be42013-11-17 01:36:23 +0000749 if (!SpillSubRegs && MO.getSubReg())
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000750 return false;
Jakob Stoklund Olesenc6a20412011-02-08 19:33:55 +0000751 // We cannot fold a load instruction into a def.
752 if (LoadMI && MO.isDef())
753 return false;
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000754 // Tied use operands should not be passed to foldMemoryOperand.
755 if (!MI->isRegTiedToDefOperand(Idx))
756 FoldOps.push_back(Idx);
757 }
758
Mark Lacey9d8103d2013-08-14 23:50:16 +0000759 MachineInstrSpan MIS(MI);
760
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000761 MachineInstr *FoldMI =
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000762 LoadMI ? TII.foldMemoryOperand(MI, FoldOps, LoadMI)
763 : TII.foldMemoryOperand(MI, FoldOps, StackSlot);
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000764 if (!FoldMI)
765 return false;
Andrew Trick5749b8b2013-06-21 18:33:26 +0000766
767 // Remove LIS for any dead defs in the original MI not in FoldMI.
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000768 for (MIBundleOperands MO(*MI); MO.isValid(); ++MO) {
Andrew Trick5749b8b2013-06-21 18:33:26 +0000769 if (!MO->isReg())
770 continue;
771 unsigned Reg = MO->getReg();
772 if (!Reg || TargetRegisterInfo::isVirtualRegister(Reg) ||
773 MRI.isReserved(Reg)) {
774 continue;
775 }
Andrew Trickdfacda32014-01-07 07:31:10 +0000776 // Skip non-Defs, including undef uses and internal reads.
777 if (MO->isUse())
778 continue;
Andrew Trick5749b8b2013-06-21 18:33:26 +0000779 MIBundleOperands::PhysRegInfo RI =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000780 MIBundleOperands(*FoldMI).analyzePhysReg(Reg, &TRI);
Matthias Braun60d69e22015-12-11 19:42:09 +0000781 if (RI.FullyDefined)
Andrew Trick5749b8b2013-06-21 18:33:26 +0000782 continue;
783 // FoldMI does not define this physreg. Remove the LI segment.
784 assert(MO->isDead() && "Cannot fold physreg def");
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000785 SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
Matthias Brauncfb8ad22015-01-21 18:50:21 +0000786 LIS.removePhysRegDefAt(Reg, Idx);
Andrew Trick5749b8b2013-06-21 18:33:26 +0000787 }
Mark Lacey9d8103d2013-08-14 23:50:16 +0000788
Wei Mi9a16d652016-04-13 03:08:27 +0000789 int FI;
790 if (TII.isStoreToStackSlot(MI, FI) && HSpiller.rmFromMergeableSpills(MI, FI))
791 --NumSpills;
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000792 LIS.ReplaceMachineInstrInMaps(*MI, *FoldMI);
Jakob Stoklund Olesenbd953d12010-07-09 17:29:08 +0000793 MI->eraseFromParent();
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000794
Mark Lacey9d8103d2013-08-14 23:50:16 +0000795 // Insert any new instructions other than FoldMI into the LIS maps.
796 assert(!MIS.empty() && "Unexpected empty span of instructions!");
Craig Topper73275a22015-12-24 05:20:40 +0000797 for (MachineInstr &MI : MIS)
798 if (&MI != FoldMI)
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000799 LIS.InsertMachineInstrInMaps(MI);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000800
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000801 // TII.foldMemoryOperand may have left some implicit operands on the
802 // instruction. Strip them.
803 if (ImpReg)
804 for (unsigned i = FoldMI->getNumOperands(); i; --i) {
805 MachineOperand &MO = FoldMI->getOperand(i - 1);
806 if (!MO.isReg() || !MO.isImplicit())
807 break;
808 if (MO.getReg() == ImpReg)
809 FoldMI->RemoveOperand(i - 1);
810 }
811
Mark Lacey9d8103d2013-08-14 23:50:16 +0000812 DEBUG(dumpMachineInstrRangeWithSlotIndex(MIS.begin(), MIS.end(), LIS,
813 "folded"));
814
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000815 if (!WasCopy)
816 ++NumFolded;
Wei Mi9a16d652016-04-13 03:08:27 +0000817 else if (Ops.front().second == 0) {
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000818 ++NumSpills;
Wei Mi9a16d652016-04-13 03:08:27 +0000819 HSpiller.addToMergeableSpills(FoldMI, StackSlot, Original);
820 } else
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000821 ++NumReloads;
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000822 return true;
823}
824
Mark Lacey9d8103d2013-08-14 23:50:16 +0000825void InlineSpiller::insertReload(unsigned NewVReg,
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000826 SlotIndex Idx,
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000827 MachineBasicBlock::iterator MI) {
828 MachineBasicBlock &MBB = *MI->getParent();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000829
830 MachineInstrSpan MIS(MI);
831 TII.loadRegFromStackSlot(MBB, MI, NewVReg, StackSlot,
832 MRI.getRegClass(NewVReg), &TRI);
833
834 LIS.InsertMachineInstrRangeInMaps(MIS.begin(), MI);
835
836 DEBUG(dumpMachineInstrRangeWithSlotIndex(MIS.begin(), MI, LIS, "reload",
837 NewVReg));
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000838 ++NumReloads;
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000839}
840
Mark Lacey9d8103d2013-08-14 23:50:16 +0000841/// insertSpill - Insert a spill of NewVReg after MI.
842void InlineSpiller::insertSpill(unsigned NewVReg, bool isKill,
843 MachineBasicBlock::iterator MI) {
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000844 MachineBasicBlock &MBB = *MI->getParent();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000845
846 MachineInstrSpan MIS(MI);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000847 TII.storeRegToStackSlot(MBB, std::next(MI), NewVReg, isKill, StackSlot,
Mark Lacey9d8103d2013-08-14 23:50:16 +0000848 MRI.getRegClass(NewVReg), &TRI);
849
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000850 LIS.InsertMachineInstrRangeInMaps(std::next(MI), MIS.end());
Mark Lacey9d8103d2013-08-14 23:50:16 +0000851
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000852 DEBUG(dumpMachineInstrRangeWithSlotIndex(std::next(MI), MIS.end(), LIS,
Mark Lacey9d8103d2013-08-14 23:50:16 +0000853 "spill"));
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000854 ++NumSpills;
Wei Mi9a16d652016-04-13 03:08:27 +0000855 HSpiller.addToMergeableSpills(std::next(MI), StackSlot, Original);
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000856}
857
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000858/// spillAroundUses - insert spill code around each use of Reg.
859void InlineSpiller::spillAroundUses(unsigned Reg) {
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +0000860 DEBUG(dbgs() << "spillAroundUses " << PrintReg(Reg) << '\n');
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000861 LiveInterval &OldLI = LIS.getInterval(Reg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000862
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000863 // Iterate over instructions using Reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000864 for (MachineRegisterInfo::reg_bundle_iterator
865 RegI = MRI.reg_bundle_begin(Reg), E = MRI.reg_bundle_end();
866 RegI != E; ) {
Owen Andersonec5d4802014-03-14 05:02:18 +0000867 MachineInstr *MI = &*(RegI++);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000868
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000869 // Debug values are not allowed to affect codegen.
870 if (MI->isDebugValue()) {
871 // Modify DBG_VALUE now that the value is in a spill slot.
Adrian Prantldb3e26d2013-09-16 23:29:03 +0000872 bool IsIndirect = MI->isIndirectDebugValue();
Adrian Prantlc31ec1c2013-07-10 16:56:47 +0000873 uint64_t Offset = IsIndirect ? MI->getOperand(1).getImm() : 0;
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000874 const MDNode *Var = MI->getDebugVariable();
875 const MDNode *Expr = MI->getDebugExpression();
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000876 DebugLoc DL = MI->getDebugLoc();
David Blaikie0252265b2013-06-16 20:34:15 +0000877 DEBUG(dbgs() << "Modifying debug info due to spill:" << "\t" << *MI);
878 MachineBasicBlock *MBB = MI->getParent();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000879 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
Duncan P. N. Exon Smith3bef6a32015-04-03 19:20:26 +0000880 "Expected inlined-at fields to agree");
David Blaikie0252265b2013-06-16 20:34:15 +0000881 BuildMI(*MBB, MBB->erase(MI), DL, TII.get(TargetOpcode::DBG_VALUE))
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000882 .addFrameIndex(StackSlot)
883 .addImm(Offset)
884 .addMetadata(Var)
885 .addMetadata(Expr);
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000886 continue;
887 }
888
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000889 // Ignore copies to/from snippets. We'll delete them.
890 if (SnippetCopies.count(MI))
891 continue;
892
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000893 // Stack slot accesses may coalesce away.
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000894 if (coalesceStackAccess(MI, Reg))
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000895 continue;
896
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000897 // Analyze instruction.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000898 SmallVector<std::pair<MachineInstr*, unsigned>, 8> Ops;
James Molloy381fab92012-09-12 10:03:31 +0000899 MIBundleOperands::VirtRegInfo RI =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000900 MIBundleOperands(*MI).analyzeVirtReg(Reg, &Ops);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000901
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000902 // Find the slot index where this instruction reads and writes OldLI.
903 // This is usually the def slot, except for tied early clobbers.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000904 SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000905 if (VNInfo *VNI = OldLI.getVNInfoAt(Idx.getRegSlot(true)))
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000906 if (SlotIndex::isSameInstr(Idx, VNI->def))
907 Idx = VNI->def;
908
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000909 // Check for a sibling copy.
910 unsigned SibReg = isFullCopyOf(MI, Reg);
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000911 if (SibReg && isSibling(SibReg)) {
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +0000912 // This may actually be a copy between snippets.
913 if (isRegToSpill(SibReg)) {
914 DEBUG(dbgs() << "Found new snippet copy: " << *MI);
915 SnippetCopies.insert(MI);
916 continue;
917 }
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000918 if (RI.Writes) {
Wei Mi9a16d652016-04-13 03:08:27 +0000919 if (hoistSpillInsideBB(OldLI, *MI)) {
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000920 // This COPY is now dead, the value is already in the stack slot.
921 MI->getOperand(0).setIsDead();
922 DeadDefs.push_back(MI);
923 continue;
924 }
925 } else {
926 // This is a reload for a sib-reg copy. Drop spills downstream.
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000927 LiveInterval &SibLI = LIS.getInterval(SibReg);
928 eliminateRedundantSpills(SibLI, SibLI.getVNInfoAt(Idx));
929 // The COPY will fold to a reload below.
930 }
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000931 }
932
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000933 // Attempt to fold memory ops.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000934 if (foldMemoryOperand(Ops))
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000935 continue;
936
Mark Lacey9d8103d2013-08-14 23:50:16 +0000937 // Create a new virtual register for spill/fill.
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000938 // FIXME: Infer regclass from instruction alone.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000939 unsigned NewVReg = Edit->createFrom(Reg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000940
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000941 if (RI.Reads)
Mark Lacey9d8103d2013-08-14 23:50:16 +0000942 insertReload(NewVReg, Idx, MI);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000943
944 // Rewrite instruction operands.
945 bool hasLiveDef = false;
Craig Topper73275a22015-12-24 05:20:40 +0000946 for (const auto &OpPair : Ops) {
947 MachineOperand &MO = OpPair.first->getOperand(OpPair.second);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000948 MO.setReg(NewVReg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000949 if (MO.isUse()) {
Craig Topper73275a22015-12-24 05:20:40 +0000950 if (!OpPair.first->isRegTiedToDefOperand(OpPair.second))
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000951 MO.setIsKill();
952 } else {
953 if (!MO.isDead())
954 hasLiveDef = true;
955 }
956 }
Mark Lacey9d8103d2013-08-14 23:50:16 +0000957 DEBUG(dbgs() << "\trewrite: " << Idx << '\t' << *MI << '\n');
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000958
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000959 // FIXME: Use a second vreg if instruction has no tied ops.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000960 if (RI.Writes)
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000961 if (hasLiveDef)
Mark Lacey9d8103d2013-08-14 23:50:16 +0000962 insertSpill(NewVReg, true, MI);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000963 }
964}
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000965
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000966/// spillAll - Spill all registers remaining after rematerialization.
967void InlineSpiller::spillAll() {
968 // Update LiveStacks now that we are committed to spilling.
969 if (StackSlot == VirtRegMap::NO_STACK_SLOT) {
970 StackSlot = VRM.assignVirt2StackSlot(Original);
971 StackInt = &LSS.getOrCreateInterval(StackSlot, MRI.getRegClass(Original));
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000972 StackInt->getNextValue(SlotIndex(), LSS.getVNInfoAllocator());
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000973 } else
974 StackInt = &LSS.getInterval(StackSlot);
975
976 if (Original != Edit->getReg())
977 VRM.assignVirt2StackSlot(Edit->getReg(), StackSlot);
978
979 assert(StackInt->getNumValNums() == 1 && "Bad stack interval values");
Craig Topper73275a22015-12-24 05:20:40 +0000980 for (unsigned Reg : RegsToSpill)
981 StackInt->MergeSegmentsInAsValue(LIS.getInterval(Reg),
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000982 StackInt->getValNumInfo(0));
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000983 DEBUG(dbgs() << "Merged spilled regs: " << *StackInt << '\n');
984
985 // Spill around uses of all RegsToSpill.
Craig Topper73275a22015-12-24 05:20:40 +0000986 for (unsigned Reg : RegsToSpill)
987 spillAroundUses(Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000988
989 // Hoisted spills may cause dead code.
990 if (!DeadDefs.empty()) {
991 DEBUG(dbgs() << "Eliminating " << DeadDefs.size() << " dead defs\n");
Pete Cooper2bde2f42012-04-02 22:22:53 +0000992 Edit->eliminateDeadDefs(DeadDefs, RegsToSpill);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000993 }
994
995 // Finally delete the SnippetCopies.
Craig Topper73275a22015-12-24 05:20:40 +0000996 for (unsigned Reg : RegsToSpill) {
Owen Andersonabb90c92014-03-13 06:02:25 +0000997 for (MachineRegisterInfo::reg_instr_iterator
Craig Topper73275a22015-12-24 05:20:40 +0000998 RI = MRI.reg_instr_begin(Reg), E = MRI.reg_instr_end();
Owen Andersonabb90c92014-03-13 06:02:25 +0000999 RI != E; ) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001000 MachineInstr &MI = *(RI++);
1001 assert(SnippetCopies.count(&MI) && "Remaining use wasn't a snippet copy");
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001002 // FIXME: Do this with a LiveRangeEdit callback.
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001003 LIS.RemoveMachineInstrFromMaps(MI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001004 MI.eraseFromParent();
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001005 }
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001006 }
1007
1008 // Delete all spilled registers.
Craig Topper73275a22015-12-24 05:20:40 +00001009 for (unsigned Reg : RegsToSpill)
1010 Edit->eraseVirtReg(Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001011}
1012
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001013void InlineSpiller::spill(LiveRangeEdit &edit) {
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +00001014 ++NumSpilledRanges;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +00001015 Edit = &edit;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001016 assert(!TargetRegisterInfo::isStackSlot(edit.getReg())
1017 && "Trying to spill a stack slot.");
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +00001018 // Share a stack slot among all descendants of Original.
1019 Original = VRM.getOriginal(edit.getReg());
1020 StackSlot = VRM.getStackSlot(Original);
Craig Topperc0196b12014-04-14 00:51:57 +00001021 StackInt = nullptr;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +00001022
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001023 DEBUG(dbgs() << "Inline spilling "
Craig Toppercf0444b2014-11-17 05:50:14 +00001024 << TRI.getRegClassName(MRI.getRegClass(edit.getReg()))
Matthias Braunf6fe6bf2013-10-10 21:29:05 +00001025 << ':' << edit.getParent()
Mark Lacey9d8103d2013-08-14 23:50:16 +00001026 << "\nFrom original " << PrintReg(Original) << '\n');
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001027 assert(edit.getParent().isSpillable() &&
1028 "Attempting to spill already spilled value.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +00001029 assert(DeadDefs.empty() && "Previous spill didn't remove dead defs");
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001030
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001031 collectRegsToSpill();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001032 reMaterializeAll();
1033
1034 // Remat may handle everything.
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001035 if (!RegsToSpill.empty())
1036 spillAll();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001037
Benjamin Kramere2a1d892013-06-17 19:00:36 +00001038 Edit->calculateRegClassAndHint(MF, Loops, MBFI);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001039}
Wei Mi9a16d652016-04-13 03:08:27 +00001040
1041/// Optimizations after all the reg selections and spills are done.
1042///
1043void InlineSpiller::postOptimization() {
1044 SmallVector<unsigned, 4> NewVRegs;
1045 LiveRangeEdit LRE(nullptr, NewVRegs, MF, LIS, &VRM, nullptr);
1046 HSpiller.hoistAllSpills(LRE);
1047 assert(NewVRegs.size() == 0 &&
1048 "No new vregs should be generated in hoistAllSpills");
1049}
1050
1051/// When a spill is inserted, add the spill to MergeableSpills map.
1052///
1053void HoistSpillHelper::addToMergeableSpills(MachineInstr *Spill, int StackSlot,
1054 unsigned Original) {
1055 StackSlotToReg[StackSlot] = Original;
1056 SlotIndex Idx = LIS.getInstructionIndex(*Spill);
1057 VNInfo *OrigVNI = LIS.getInterval(Original).getVNInfoAt(Idx.getRegSlot());
1058 std::pair<int, VNInfo *> MIdx = std::make_pair(StackSlot, OrigVNI);
1059 MergeableSpills[MIdx].insert(Spill);
1060}
1061
1062/// When a spill is removed, remove the spill from MergeableSpills map.
1063/// Return true if the spill is removed successfully.
1064///
1065bool HoistSpillHelper::rmFromMergeableSpills(MachineInstr *Spill,
1066 int StackSlot) {
1067 int Original = StackSlotToReg[StackSlot];
1068 if (!Original)
1069 return false;
1070 SlotIndex Idx = LIS.getInstructionIndex(*Spill);
1071 VNInfo *OrigVNI = LIS.getInterval(Original).getVNInfoAt(Idx.getRegSlot());
1072 std::pair<int, VNInfo *> MIdx = std::make_pair(StackSlot, OrigVNI);
1073 return MergeableSpills[MIdx].erase(Spill);
1074}
1075
1076/// Check BB to see if it is a possible target BB to place a hoisted spill,
1077/// i.e., there should be a living sibling of OrigReg at the insert point.
1078///
1079bool HoistSpillHelper::isSpillCandBB(unsigned OrigReg, VNInfo &OrigVNI,
1080 MachineBasicBlock &BB, unsigned &LiveReg) {
1081 SlotIndex Idx;
1082 MachineBasicBlock::iterator MI = BB.getFirstTerminator();
1083 if (MI != BB.end())
1084 Idx = LIS.getInstructionIndex(*MI);
1085 else
1086 Idx = LIS.getMBBEndIdx(&BB).getPrevSlot();
1087 SmallSetVector<unsigned, 16> &Siblings = Virt2SiblingsMap[OrigReg];
1088 assert((LIS.getInterval(OrigReg)).getVNInfoAt(Idx) == &OrigVNI &&
1089 "Unexpected VNI");
1090
1091 for (auto const SibReg : Siblings) {
1092 LiveInterval &LI = LIS.getInterval(SibReg);
1093 VNInfo *VNI = LI.getVNInfoAt(Idx);
1094 if (VNI) {
1095 LiveReg = SibReg;
1096 return true;
1097 }
1098 }
1099 return false;
1100}
1101
1102/// Remove redundent spills in the same BB. Save those redundent spills in
1103/// SpillsToRm, and save the spill to keep and its BB in SpillBBToSpill map.
1104///
1105void HoistSpillHelper::rmRedundantSpills(
1106 SmallPtrSet<MachineInstr *, 16> &Spills,
1107 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1108 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill) {
1109 // For each spill saw, check SpillBBToSpill[] and see if its BB already has
1110 // another spill inside. If a BB contains more than one spill, only keep the
1111 // earlier spill with smaller SlotIndex.
1112 for (const auto CurrentSpill : Spills) {
1113 MachineBasicBlock *Block = CurrentSpill->getParent();
1114 MachineDomTreeNode *Node = MDT.DT->getNode(Block);
1115 MachineInstr *PrevSpill = SpillBBToSpill[Node];
1116 if (PrevSpill) {
1117 SlotIndex PIdx = LIS.getInstructionIndex(*PrevSpill);
1118 SlotIndex CIdx = LIS.getInstructionIndex(*CurrentSpill);
1119 MachineInstr *SpillToRm = (CIdx > PIdx) ? CurrentSpill : PrevSpill;
1120 MachineInstr *SpillToKeep = (CIdx > PIdx) ? PrevSpill : CurrentSpill;
1121 SpillsToRm.push_back(SpillToRm);
1122 SpillBBToSpill[MDT.DT->getNode(Block)] = SpillToKeep;
1123 } else {
1124 SpillBBToSpill[MDT.DT->getNode(Block)] = CurrentSpill;
1125 }
1126 }
1127 for (const auto SpillToRm : SpillsToRm)
1128 Spills.erase(SpillToRm);
1129}
1130
1131/// Starting from \p Root find a top-down traversal order of the dominator
1132/// tree to visit all basic blocks containing the elements of \p Spills.
1133/// Redundant spills will be found and put into \p SpillsToRm at the same
1134/// time. \p SpillBBToSpill will be populated as part of the process and
1135/// maps a basic block to the first store occurring in the basic block.
1136/// \post SpillsToRm.union(Spills\@post) == Spills\@pre
1137///
1138void HoistSpillHelper::getVisitOrders(
1139 MachineBasicBlock *Root, SmallPtrSet<MachineInstr *, 16> &Spills,
1140 SmallVectorImpl<MachineDomTreeNode *> &Orders,
1141 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1142 DenseMap<MachineDomTreeNode *, unsigned> &SpillsToKeep,
1143 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill) {
1144 // The set contains all the possible BB nodes to which we may hoist
1145 // original spills.
1146 SmallPtrSet<MachineDomTreeNode *, 8> WorkSet;
1147 // Save the BB nodes on the path from the first BB node containing
1148 // non-redundent spill to the Root node.
1149 SmallPtrSet<MachineDomTreeNode *, 8> NodesOnPath;
1150 // All the spills to be hoisted must originate from a single def instruction
1151 // to the OrigReg. It means the def instruction should dominate all the spills
1152 // to be hoisted. We choose the BB where the def instruction is located as
1153 // the Root.
1154 MachineDomTreeNode *RootIDomNode = MDT[Root]->getIDom();
1155 // For every node on the dominator tree with spill, walk up on the dominator
1156 // tree towards the Root node until it is reached. If there is other node
1157 // containing spill in the middle of the path, the previous spill saw will
1158 // be redundent and the node containing it will be removed. All the nodes on
1159 // the path starting from the first node with non-redundent spill to the Root
1160 // node will be added to the WorkSet, which will contain all the possible
1161 // locations where spills may be hoisted to after the loop below is done.
1162 for (const auto Spill : Spills) {
1163 MachineBasicBlock *Block = Spill->getParent();
1164 MachineDomTreeNode *Node = MDT[Block];
1165 MachineInstr *SpillToRm = nullptr;
1166 while (Node != RootIDomNode) {
1167 // If Node dominates Block, and it already contains a spill, the spill in
1168 // Block will be redundent.
1169 if (Node != MDT[Block] && SpillBBToSpill[Node]) {
1170 SpillToRm = SpillBBToSpill[MDT[Block]];
1171 break;
1172 /// If we see the Node already in WorkSet, the path from the Node to
1173 /// the Root node must already be traversed by another spill.
1174 /// Then no need to repeat.
1175 } else if (WorkSet.count(Node)) {
1176 break;
1177 } else {
1178 NodesOnPath.insert(Node);
1179 }
1180 Node = Node->getIDom();
1181 }
1182 if (SpillToRm) {
1183 SpillsToRm.push_back(SpillToRm);
1184 } else {
1185 // Add a BB containing the original spills to SpillsToKeep -- i.e.,
1186 // set the initial status before hoisting start. The value of BBs
1187 // containing original spills is set to 0, in order to descriminate
1188 // with BBs containing hoisted spills which will be inserted to
1189 // SpillsToKeep later during hoisting.
1190 SpillsToKeep[MDT[Block]] = 0;
1191 WorkSet.insert(NodesOnPath.begin(), NodesOnPath.end());
1192 }
1193 NodesOnPath.clear();
1194 }
1195
1196 // Sort the nodes in WorkSet in top-down order and save the nodes
1197 // in Orders. Orders will be used for hoisting in runHoistSpills.
1198 unsigned idx = 0;
1199 Orders.push_back(MDT.DT->getNode(Root));
1200 do {
1201 MachineDomTreeNode *Node = Orders[idx++];
1202 const std::vector<MachineDomTreeNode *> &Children = Node->getChildren();
1203 unsigned NumChildren = Children.size();
1204 for (unsigned i = 0; i != NumChildren; ++i) {
1205 MachineDomTreeNode *Child = Children[i];
1206 if (WorkSet.count(Child))
1207 Orders.push_back(Child);
1208 }
1209 } while (idx != Orders.size());
1210 assert(Orders.size() == WorkSet.size() &&
1211 "Orders have different size with WorkSet");
1212
1213#ifndef NDEBUG
1214 DEBUG(dbgs() << "Orders size is " << Orders.size() << "\n");
1215 SmallVector<MachineDomTreeNode *, 32>::reverse_iterator RIt = Orders.rbegin();
1216 for (; RIt != Orders.rend(); RIt++)
1217 DEBUG(dbgs() << "BB" << (*RIt)->getBlock()->getNumber() << ",");
1218 DEBUG(dbgs() << "\n");
1219#endif
1220}
1221
1222/// Try to hoist spills according to BB hotness. The spills to removed will
1223/// be saved in \p SpillsToRm. The spills to be inserted will be saved in
1224/// \p SpillsToIns.
1225///
1226void HoistSpillHelper::runHoistSpills(
1227 unsigned OrigReg, VNInfo &OrigVNI, SmallPtrSet<MachineInstr *, 16> &Spills,
1228 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1229 DenseMap<MachineBasicBlock *, unsigned> &SpillsToIns) {
1230 // Visit order of dominator tree nodes.
1231 SmallVector<MachineDomTreeNode *, 32> Orders;
1232 // SpillsToKeep contains all the nodes where spills are to be inserted
1233 // during hoisting. If the spill to be inserted is an original spill
1234 // (not a hoisted one), the value of the map entry is 0. If the spill
1235 // is a hoisted spill, the value of the map entry is the VReg to be used
1236 // as the source of the spill.
1237 DenseMap<MachineDomTreeNode *, unsigned> SpillsToKeep;
1238 // Map from BB to the first spill inside of it.
1239 DenseMap<MachineDomTreeNode *, MachineInstr *> SpillBBToSpill;
1240
1241 rmRedundantSpills(Spills, SpillsToRm, SpillBBToSpill);
1242
1243 MachineBasicBlock *Root = LIS.getMBBFromIndex(OrigVNI.def);
1244 getVisitOrders(Root, Spills, Orders, SpillsToRm, SpillsToKeep,
1245 SpillBBToSpill);
1246
1247 // SpillsInSubTreeMap keeps the map from a dom tree node to a pair of
1248 // nodes set and the cost of all the spills inside those nodes.
1249 // The nodes set are the locations where spills are to be inserted
1250 // in the subtree of current node.
1251 typedef std::pair<SmallPtrSet<MachineDomTreeNode *, 16>, BlockFrequency>
1252 NodesCostPair;
1253 DenseMap<MachineDomTreeNode *, NodesCostPair> SpillsInSubTreeMap;
1254 // Iterate Orders set in reverse order, which will be a bottom-up order
1255 // in the dominator tree. Once we visit a dom tree node, we know its
1256 // children have already been visited and the spill locations in the
1257 // subtrees of all the children have been determined.
1258 SmallVector<MachineDomTreeNode *, 32>::reverse_iterator RIt = Orders.rbegin();
1259 for (; RIt != Orders.rend(); RIt++) {
1260 MachineBasicBlock *Block = (*RIt)->getBlock();
1261
1262 // If Block contains an original spill, simply continue.
1263 if (SpillsToKeep.find(*RIt) != SpillsToKeep.end() && !SpillsToKeep[*RIt]) {
1264 SpillsInSubTreeMap[*RIt].first.insert(*RIt);
1265 // SpillsInSubTreeMap[*RIt].second contains the cost of spill.
1266 SpillsInSubTreeMap[*RIt].second = MBFI.getBlockFreq(Block);
1267 continue;
1268 }
1269
1270 // Collect spills in subtree of current node (*RIt) to
1271 // SpillsInSubTreeMap[*RIt].first.
1272 const std::vector<MachineDomTreeNode *> &Children = (*RIt)->getChildren();
1273 unsigned NumChildren = Children.size();
1274 for (unsigned i = 0; i != NumChildren; ++i) {
1275 MachineDomTreeNode *Child = Children[i];
1276 if (SpillsInSubTreeMap.find(Child) == SpillsInSubTreeMap.end())
1277 continue;
1278 // The stmt "SpillsInSubTree = SpillsInSubTreeMap[*RIt].first" below
1279 // should be placed before getting the begin and end iterators of
1280 // SpillsInSubTreeMap[Child].first, or else the iterators may be
1281 // invalidated when SpillsInSubTreeMap[*RIt] is seen the first time
1282 // and the map grows and then the original buckets in the map are moved.
1283 SmallPtrSet<MachineDomTreeNode *, 16> &SpillsInSubTree =
1284 SpillsInSubTreeMap[*RIt].first;
1285 BlockFrequency &SubTreeCost = SpillsInSubTreeMap[*RIt].second;
1286 SubTreeCost += SpillsInSubTreeMap[Child].second;
1287 auto BI = SpillsInSubTreeMap[Child].first.begin();
1288 auto EI = SpillsInSubTreeMap[Child].first.end();
1289 SpillsInSubTree.insert(BI, EI);
1290 SpillsInSubTreeMap.erase(Child);
1291 }
1292
1293 SmallPtrSet<MachineDomTreeNode *, 16> &SpillsInSubTree =
1294 SpillsInSubTreeMap[*RIt].first;
1295 BlockFrequency &SubTreeCost = SpillsInSubTreeMap[*RIt].second;
1296 // No spills in subtree, simply continue.
1297 if (SpillsInSubTree.empty())
1298 continue;
1299
1300 // Check whether Block is a possible candidate to insert spill.
1301 unsigned LiveReg = 0;
1302 if (!isSpillCandBB(OrigReg, OrigVNI, *Block, LiveReg))
1303 continue;
1304
1305 // If there are multiple spills that could be merged, bias a little
1306 // to hoist the spill.
1307 BranchProbability MarginProb = (SpillsInSubTree.size() > 1)
1308 ? BranchProbability(9, 10)
1309 : BranchProbability(1, 1);
1310 if (SubTreeCost > MBFI.getBlockFreq(Block) * MarginProb) {
1311 // Hoist: Move spills to current Block.
1312 for (const auto SpillBB : SpillsInSubTree) {
1313 // When SpillBB is a BB contains original spill, insert the spill
1314 // to SpillsToRm.
1315 if (SpillsToKeep.find(SpillBB) != SpillsToKeep.end() &&
1316 !SpillsToKeep[SpillBB]) {
1317 MachineInstr *SpillToRm = SpillBBToSpill[SpillBB];
1318 SpillsToRm.push_back(SpillToRm);
1319 }
1320 // SpillBB will not contain spill anymore, remove it from SpillsToKeep.
1321 SpillsToKeep.erase(SpillBB);
1322 }
1323 // Current Block is the BB containing the new hoisted spill. Add it to
1324 // SpillsToKeep. LiveReg is the source of the new spill.
1325 SpillsToKeep[*RIt] = LiveReg;
1326 DEBUG({
1327 dbgs() << "spills in BB: ";
1328 for (const auto Rspill : SpillsInSubTree)
1329 dbgs() << Rspill->getBlock()->getNumber() << " ";
1330 dbgs() << "were promoted to BB" << (*RIt)->getBlock()->getNumber()
1331 << "\n";
1332 });
1333 SpillsInSubTree.clear();
1334 SpillsInSubTree.insert(*RIt);
1335 SubTreeCost = MBFI.getBlockFreq(Block);
1336 }
1337 }
1338 // For spills in SpillsToKeep with LiveReg set (i.e., not original spill),
1339 // save them to SpillsToIns.
1340 for (const auto Ent : SpillsToKeep) {
1341 if (Ent.second)
1342 SpillsToIns[Ent.first->getBlock()] = Ent.second;
1343 }
1344}
1345
1346/// For spills with equal values, remove redundent spills and hoist the left
1347/// to less hot spots.
1348///
1349/// Spills with equal values will be collected into the same set in
1350/// MergeableSpills when spill is inserted. These equal spills are originated
1351/// from the same define instruction and are dominated by the instruction.
1352/// Before hoisting all the equal spills, redundent spills inside in the same
1353/// BB is first marked to be deleted. Then starting from spills left, walk up
1354/// on the dominator tree towards the Root node where the define instruction
1355/// is located, mark the dominated spills to be deleted along the way and
1356/// collect the BB nodes on the path from non-dominated spills to the define
1357/// instruction into a WorkSet. The nodes in WorkSet are the candidate places
1358/// where we consider to hoist the spills. We iterate the WorkSet in bottom-up
1359/// order, and for each node, we will decide whether to hoist spills inside
1360/// its subtree to that node. In this way, we can get benefit locally even if
1361/// hoisting all the equal spills to one cold place is impossible.
1362///
1363void HoistSpillHelper::hoistAllSpills(LiveRangeEdit &Edit) {
1364 // Save the mapping between stackslot and its original reg.
1365 DenseMap<int, unsigned> SlotToOrigReg;
1366 for (unsigned i = 0, e = MRI.getNumVirtRegs(); i != e; ++i) {
1367 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
1368 int Slot = VRM.getStackSlot(Reg);
1369 if (Slot != VirtRegMap::NO_STACK_SLOT)
1370 SlotToOrigReg[Slot] = VRM.getOriginal(Reg);
1371 unsigned Original = VRM.getPreSplitReg(Reg);
1372 if (!MRI.def_empty(Reg))
1373 Virt2SiblingsMap[Original].insert(Reg);
1374 }
1375
1376 // Each entry in MergeableSpills contains a spill set with equal values.
1377 for (auto &Ent : MergeableSpills) {
1378 int Slot = Ent.first.first;
1379 unsigned OrigReg = SlotToOrigReg[Slot];
1380 VNInfo *OrigVNI = Ent.first.second;
1381 SmallPtrSet<MachineInstr *, 16> &EqValSpills = Ent.second;
1382 if (Ent.second.empty())
1383 continue;
1384
1385 DEBUG({
1386 dbgs() << "\nFor Slot" << Slot << " and VN" << OrigVNI->id << ":\n"
1387 << "Equal spills in BB: ";
1388 for (const auto spill : EqValSpills)
1389 dbgs() << spill->getParent()->getNumber() << " ";
1390 dbgs() << "\n";
1391 });
1392
1393 // SpillsToRm is the spill set to be removed from EqValSpills.
1394 SmallVector<MachineInstr *, 16> SpillsToRm;
1395 // SpillsToIns is the spill set to be newly inserted after hoisting.
1396 DenseMap<MachineBasicBlock *, unsigned> SpillsToIns;
1397
1398 runHoistSpills(OrigReg, *OrigVNI, EqValSpills, SpillsToRm, SpillsToIns);
1399
1400 DEBUG({
1401 dbgs() << "Finally inserted spills in BB: ";
1402 for (const auto Ispill : SpillsToIns)
1403 dbgs() << Ispill.first->getNumber() << " ";
1404 dbgs() << "\nFinally removed spills in BB: ";
1405 for (const auto Rspill : SpillsToRm)
1406 dbgs() << Rspill->getParent()->getNumber() << " ";
1407 dbgs() << "\n";
1408 });
1409
1410 // Stack live range update.
1411 LiveInterval &StackIntvl = LSS.getInterval(Slot);
1412 if (!SpillsToIns.empty() || !SpillsToRm.empty()) {
1413 LiveInterval &OrigLI = LIS.getInterval(OrigReg);
1414 StackIntvl.MergeValueInAsValue(OrigLI, OrigVNI,
1415 StackIntvl.getValNumInfo(0));
1416 }
1417
1418 // Insert hoisted spills.
1419 for (auto const Insert : SpillsToIns) {
1420 MachineBasicBlock *BB = Insert.first;
1421 unsigned LiveReg = Insert.second;
1422 MachineBasicBlock::iterator MI = BB->getFirstTerminator();
1423 TII.storeRegToStackSlot(*BB, MI, LiveReg, false, Slot,
1424 MRI.getRegClass(LiveReg), &TRI);
1425 LIS.InsertMachineInstrRangeInMaps(std::prev(MI), MI);
1426 ++NumSpills;
1427 }
1428
1429 // Remove redundent spills or change them to dead instructions.
1430 NumSpills -= SpillsToRm.size();
1431 for (auto const RMEnt : SpillsToRm) {
1432 RMEnt->setDesc(TII.get(TargetOpcode::KILL));
1433 for (unsigned i = RMEnt->getNumOperands(); i; --i) {
1434 MachineOperand &MO = RMEnt->getOperand(i - 1);
1435 if (MO.isReg() && MO.isImplicit() && MO.isDef() && !MO.isDead())
1436 RMEnt->RemoveOperand(i - 1);
1437 }
1438 }
1439 Edit.eliminateDeadDefs(SpillsToRm, None, true);
1440 }
1441}