blob: 197db777dd2c8cfb85b82b19164170de6425662b [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 Mi8c4136b2016-05-11 22:37:43 +000016#include "SplitKit.h"
Wei Mi9a16d652016-04-13 03:08:27 +000017#include "llvm/ADT/MapVector.h"
Benjamin Kramerbc6666b2013-05-23 15:42:57 +000018#include "llvm/ADT/SetVector.h"
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000019#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesen278bf022011-09-09 18:11:41 +000020#include "llvm/ADT/TinyPtrVector.h"
Jakob Stoklund Olesen868dd4e2010-11-10 23:55:56 +000021#include "llvm/Analysis/AliasAnalysis.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000022#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000023#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesene2c340c2010-10-26 00:11:35 +000024#include "llvm/CodeGen/LiveStackAnalysis.h"
Benjamin Kramere2a1d892013-06-17 19:00:36 +000025#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Manman Renc9355602014-03-21 21:46:24 +000026#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000027#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
29#include "llvm/CodeGen/MachineFunction.h"
David Blaikie0252265b2013-06-16 20:34:15 +000030#include "llvm/CodeGen/MachineInstrBuilder.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/CodeGen/MachineInstrBundle.h"
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +000032#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000034#include "llvm/CodeGen/VirtRegMap.h"
Reid Kleckner28865802016-04-14 18:29:59 +000035#include "llvm/IR/DebugInfo.h"
Jakob Stoklund Olesenbceb9e52011-09-15 21:06:00 +000036#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000037#include "llvm/Support/Debug.h"
38#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000039#include "llvm/Target/TargetInstrInfo.h"
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000040
41using namespace llvm;
42
Chandler Carruth1b9dde02014-04-22 02:02:50 +000043#define DEBUG_TYPE "regalloc"
44
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000045STATISTIC(NumSpilledRanges, "Number of spilled live ranges");
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +000046STATISTIC(NumSnippets, "Number of spilled snippets");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000047STATISTIC(NumSpills, "Number of spills inserted");
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +000048STATISTIC(NumSpillsRemoved, "Number of spills removed");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000049STATISTIC(NumReloads, "Number of reloads inserted");
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +000050STATISTIC(NumReloadsRemoved, "Number of reloads removed");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000051STATISTIC(NumFolded, "Number of folded stack accesses");
52STATISTIC(NumFoldedLoads, "Number of folded loads");
53STATISTIC(NumRemats, "Number of rematerialized defs for spilling");
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +000054
Jakob Stoklund Olesenbceb9e52011-09-15 21:06:00 +000055static cl::opt<bool> DisableHoisting("disable-spill-hoist", cl::Hidden,
56 cl::desc("Disable inline spill hoisting"));
57
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +000058namespace {
Wei Mi963f2df2016-04-15 23:16:44 +000059class HoistSpillHelper : private LiveRangeEdit::Delegate {
60 MachineFunction &MF;
Wei Mi9a16d652016-04-13 03:08:27 +000061 LiveIntervals &LIS;
62 LiveStacks &LSS;
63 AliasAnalysis *AA;
64 MachineDominatorTree &MDT;
65 MachineLoopInfo &Loops;
66 VirtRegMap &VRM;
67 MachineFrameInfo &MFI;
68 MachineRegisterInfo &MRI;
69 const TargetInstrInfo &TII;
70 const TargetRegisterInfo &TRI;
71 const MachineBlockFrequencyInfo &MBFI;
72
Wei Mi8c4136b2016-05-11 22:37:43 +000073 InsertPointAnalysis IPA;
74
Wei Mi9a16d652016-04-13 03:08:27 +000075 // Map from StackSlot to its original register.
76 DenseMap<int, unsigned> StackSlotToReg;
77 // Map from pair of (StackSlot and Original VNI) to a set of spills which
78 // have the same stackslot and have equal values defined by Original VNI.
79 // These spills are mergeable and are hoist candiates.
80 typedef MapVector<std::pair<int, VNInfo *>, SmallPtrSet<MachineInstr *, 16>>
81 MergeableSpillsMap;
82 MergeableSpillsMap MergeableSpills;
83
84 /// This is the map from original register to a set containing all its
85 /// siblings. To hoist a spill to another BB, we need to find out a live
86 /// sibling there and use it as the source of the new spill.
87 DenseMap<unsigned, SmallSetVector<unsigned, 16>> Virt2SiblingsMap;
88
89 bool isSpillCandBB(unsigned OrigReg, VNInfo &OrigVNI, MachineBasicBlock &BB,
90 unsigned &LiveReg);
91
92 void rmRedundantSpills(
93 SmallPtrSet<MachineInstr *, 16> &Spills,
94 SmallVectorImpl<MachineInstr *> &SpillsToRm,
95 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill);
96
97 void getVisitOrders(
98 MachineBasicBlock *Root, SmallPtrSet<MachineInstr *, 16> &Spills,
99 SmallVectorImpl<MachineDomTreeNode *> &Orders,
100 SmallVectorImpl<MachineInstr *> &SpillsToRm,
101 DenseMap<MachineDomTreeNode *, unsigned> &SpillsToKeep,
102 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill);
103
104 void runHoistSpills(unsigned OrigReg, VNInfo &OrigVNI,
105 SmallPtrSet<MachineInstr *, 16> &Spills,
106 SmallVectorImpl<MachineInstr *> &SpillsToRm,
107 DenseMap<MachineBasicBlock *, unsigned> &SpillsToIns);
108
109public:
110 HoistSpillHelper(MachineFunctionPass &pass, MachineFunction &mf,
111 VirtRegMap &vrm)
Wei Mi963f2df2016-04-15 23:16:44 +0000112 : MF(mf), LIS(pass.getAnalysis<LiveIntervals>()),
Wei Mi9a16d652016-04-13 03:08:27 +0000113 LSS(pass.getAnalysis<LiveStacks>()),
114 AA(&pass.getAnalysis<AAResultsWrapperPass>().getAAResults()),
115 MDT(pass.getAnalysis<MachineDominatorTree>()),
116 Loops(pass.getAnalysis<MachineLoopInfo>()), VRM(vrm),
117 MFI(*mf.getFrameInfo()), MRI(mf.getRegInfo()),
118 TII(*mf.getSubtarget().getInstrInfo()),
119 TRI(*mf.getSubtarget().getRegisterInfo()),
Wei Mi8c4136b2016-05-11 22:37:43 +0000120 MBFI(pass.getAnalysis<MachineBlockFrequencyInfo>()),
121 IPA(LIS, mf.getNumBlockIDs()) {}
Wei Mi9a16d652016-04-13 03:08:27 +0000122
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000123 void addToMergeableSpills(MachineInstr &Spill, int StackSlot,
Wei Mi9a16d652016-04-13 03:08:27 +0000124 unsigned Original);
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000125 bool rmFromMergeableSpills(MachineInstr &Spill, int StackSlot);
Wei Mi963f2df2016-04-15 23:16:44 +0000126 void hoistAllSpills();
127 void LRE_DidCloneVirtReg(unsigned, unsigned) override;
Wei Mi9a16d652016-04-13 03:08:27 +0000128};
129
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000130class InlineSpiller : public Spiller {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000131 MachineFunction &MF;
132 LiveIntervals &LIS;
133 LiveStacks &LSS;
134 AliasAnalysis *AA;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000135 MachineDominatorTree &MDT;
136 MachineLoopInfo &Loops;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000137 VirtRegMap &VRM;
138 MachineFrameInfo &MFI;
139 MachineRegisterInfo &MRI;
140 const TargetInstrInfo &TII;
141 const TargetRegisterInfo &TRI;
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000142 const MachineBlockFrequencyInfo &MBFI;
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000143
144 // Variables that are valid during spill(), but used by multiple methods.
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000145 LiveRangeEdit *Edit;
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000146 LiveInterval *StackInt;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000147 int StackSlot;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000148 unsigned Original;
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000149
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000150 // All registers to spill to StackSlot, including the main register.
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000151 SmallVector<unsigned, 8> RegsToSpill;
152
153 // All COPY instructions to/from snippets.
154 // They are ignored since both operands refer to the same stack slot.
155 SmallPtrSet<MachineInstr*, 8> SnippetCopies;
156
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000157 // Values that failed to remat at some point.
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000158 SmallPtrSet<VNInfo*, 8> UsedValues;
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000159
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000160 // Dead defs generated during spilling.
161 SmallVector<MachineInstr*, 8> DeadDefs;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000162
Wei Mi9a16d652016-04-13 03:08:27 +0000163 // Object records spills information and does the hoisting.
164 HoistSpillHelper HSpiller;
165
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000166 ~InlineSpiller() override {}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000167
168public:
Eric Christopherd9134482014-08-04 21:25:23 +0000169 InlineSpiller(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm)
170 : MF(mf), LIS(pass.getAnalysis<LiveIntervals>()),
171 LSS(pass.getAnalysis<LiveStacks>()),
Chandler Carruth7b560d42015-09-09 17:55:00 +0000172 AA(&pass.getAnalysis<AAResultsWrapperPass>().getAAResults()),
Eric Christopherd9134482014-08-04 21:25:23 +0000173 MDT(pass.getAnalysis<MachineDominatorTree>()),
174 Loops(pass.getAnalysis<MachineLoopInfo>()), VRM(vrm),
175 MFI(*mf.getFrameInfo()), MRI(mf.getRegInfo()),
Eric Christopherfc6de422014-08-05 02:39:49 +0000176 TII(*mf.getSubtarget().getInstrInfo()),
177 TRI(*mf.getSubtarget().getRegisterInfo()),
Wei Mi9a16d652016-04-13 03:08:27 +0000178 MBFI(pass.getAnalysis<MachineBlockFrequencyInfo>()),
179 HSpiller(pass, mf, vrm) {}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000180
Craig Topper4584cd52014-03-07 09:26:03 +0000181 void spill(LiveRangeEdit &) override;
Wei Mi9a16d652016-04-13 03:08:27 +0000182 void postOptimization() override;
Jakob Stoklund Olesen72911e42010-10-14 23:49:52 +0000183
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000184private:
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000185 bool isSnippet(const LiveInterval &SnipLI);
186 void collectRegsToSpill();
187
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000188 bool isRegToSpill(unsigned Reg) {
189 return std::find(RegsToSpill.begin(),
190 RegsToSpill.end(), Reg) != RegsToSpill.end();
191 }
192
193 bool isSibling(unsigned Reg);
Wei Mi9a16d652016-04-13 03:08:27 +0000194 bool hoistSpillInsideBB(LiveInterval &SpillLI, MachineInstr &CopyMI);
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000195 void eliminateRedundantSpills(LiveInterval &LI, VNInfo *VNI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000196
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000197 void markValueUsed(LiveInterval*, VNInfo*);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000198 bool reMaterializeFor(LiveInterval &, MachineInstr &MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000199 void reMaterializeAll();
200
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000201 bool coalesceStackAccess(MachineInstr *MI, unsigned Reg);
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000202 bool foldMemoryOperand(ArrayRef<std::pair<MachineInstr*, unsigned> >,
Craig Topperc0196b12014-04-14 00:51:57 +0000203 MachineInstr *LoadMI = nullptr);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000204 void insertReload(unsigned VReg, SlotIndex, MachineBasicBlock::iterator MI);
205 void insertSpill(unsigned VReg, bool isKill, MachineBasicBlock::iterator MI);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000206
207 void spillAroundUses(unsigned Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000208 void spillAll();
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000209};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000210}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000211
212namespace llvm {
Lang Hamescdd90772014-11-06 19:12:38 +0000213
214Spiller::~Spiller() { }
215void Spiller::anchor() { }
216
Jakob Stoklund Olesen0fef9dd2010-07-20 23:50:15 +0000217Spiller *createInlineSpiller(MachineFunctionPass &pass,
218 MachineFunction &mf,
219 VirtRegMap &vrm) {
220 return new InlineSpiller(pass, mf, vrm);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000221}
Lang Hamescdd90772014-11-06 19:12:38 +0000222
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000223}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000224
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000225//===----------------------------------------------------------------------===//
226// Snippets
227//===----------------------------------------------------------------------===//
228
229// When spilling a virtual register, we also spill any snippets it is connected
230// to. The snippets are small live ranges that only have a single real use,
231// leftovers from live range splitting. Spilling them enables memory operand
232// folding or tightens the live range around the single use.
233//
234// This minimizes register pressure and maximizes the store-to-load distance for
235// spill slots which can be important in tight loops.
236
237/// isFullCopyOf - If MI is a COPY to or from Reg, return the other register,
238/// otherwise return 0.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000239static unsigned isFullCopyOf(const MachineInstr &MI, unsigned Reg) {
240 if (!MI.isFullCopy())
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000241 return 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000242 if (MI.getOperand(0).getReg() == Reg)
243 return MI.getOperand(1).getReg();
244 if (MI.getOperand(1).getReg() == Reg)
245 return MI.getOperand(0).getReg();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000246 return 0;
247}
248
249/// isSnippet - Identify if a live interval is a snippet that should be spilled.
250/// It is assumed that SnipLI is a virtual register with the same original as
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000251/// Edit->getReg().
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000252bool InlineSpiller::isSnippet(const LiveInterval &SnipLI) {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000253 unsigned Reg = Edit->getReg();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000254
255 // A snippet is a tiny live range with only a single instruction using it
256 // besides copies to/from Reg or spills/fills. We accept:
257 //
258 // %snip = COPY %Reg / FILL fi#
259 // %snip = USE %snip
260 // %Reg = COPY %snip / SPILL %snip, fi#
261 //
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000262 if (SnipLI.getNumValNums() > 2 || !LIS.intervalIsInOneMBB(SnipLI))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000263 return false;
264
Craig Topperc0196b12014-04-14 00:51:57 +0000265 MachineInstr *UseMI = nullptr;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000266
267 // Check that all uses satisfy our criteria.
Owen Andersonabb90c92014-03-13 06:02:25 +0000268 for (MachineRegisterInfo::reg_instr_nodbg_iterator
269 RI = MRI.reg_instr_nodbg_begin(SnipLI.reg),
270 E = MRI.reg_instr_nodbg_end(); RI != E; ) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000271 MachineInstr &MI = *RI++;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000272
273 // Allow copies to/from Reg.
274 if (isFullCopyOf(MI, Reg))
275 continue;
276
277 // Allow stack slot loads.
278 int FI;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000279 if (SnipLI.reg == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000280 continue;
281
282 // Allow stack slot stores.
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000283 if (SnipLI.reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000284 continue;
285
286 // Allow a single additional instruction.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000287 if (UseMI && &MI != UseMI)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000288 return false;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000289 UseMI = &MI;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000290 }
291 return true;
292}
293
294/// collectRegsToSpill - Collect live range snippets that only have a single
295/// real use.
296void InlineSpiller::collectRegsToSpill() {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000297 unsigned Reg = Edit->getReg();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000298
299 // Main register always spills.
300 RegsToSpill.assign(1, Reg);
301 SnippetCopies.clear();
302
303 // Snippets all have the same original, so there can't be any for an original
304 // register.
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000305 if (Original == Reg)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000306 return;
307
Owen Andersonabb90c92014-03-13 06:02:25 +0000308 for (MachineRegisterInfo::reg_instr_iterator
309 RI = MRI.reg_instr_begin(Reg), E = MRI.reg_instr_end(); RI != E; ) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000310 MachineInstr &MI = *RI++;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000311 unsigned SnipReg = isFullCopyOf(MI, Reg);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000312 if (!isSibling(SnipReg))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000313 continue;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000314 LiveInterval &SnipLI = LIS.getInterval(SnipReg);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000315 if (!isSnippet(SnipLI))
316 continue;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000317 SnippetCopies.insert(&MI);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000318 if (isRegToSpill(SnipReg))
319 continue;
320 RegsToSpill.push_back(SnipReg);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000321 DEBUG(dbgs() << "\talso spill snippet " << SnipLI << '\n');
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000322 ++NumSnippets;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000323 }
324}
325
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000326bool InlineSpiller::isSibling(unsigned Reg) {
327 return TargetRegisterInfo::isVirtualRegister(Reg) &&
328 VRM.getOriginal(Reg) == Original;
329}
330
Wei Mi9a16d652016-04-13 03:08:27 +0000331/// It is beneficial to spill to earlier place in the same BB in case
332/// as follows:
333/// There is an alternative def earlier in the same MBB.
334/// Hoist the spill as far as possible in SpillMBB. This can ease
335/// register pressure:
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000336///
Wei Mi9a16d652016-04-13 03:08:27 +0000337/// x = def
338/// y = use x
339/// s = copy x
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000340///
Wei Mi9a16d652016-04-13 03:08:27 +0000341/// Hoisting the spill of s to immediately after the def removes the
342/// interference between x and y:
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000343///
Wei Mi9a16d652016-04-13 03:08:27 +0000344/// x = def
345/// spill x
346/// y = use x<kill>
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000347///
Wei Mi9a16d652016-04-13 03:08:27 +0000348/// This hoist only helps when the copy kills its source.
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000349///
Wei Mi9a16d652016-04-13 03:08:27 +0000350bool InlineSpiller::hoistSpillInsideBB(LiveInterval &SpillLI,
351 MachineInstr &CopyMI) {
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000352 SlotIndex Idx = LIS.getInstructionIndex(CopyMI);
Wei Mi9a16d652016-04-13 03:08:27 +0000353#ifndef NDEBUG
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000354 VNInfo *VNI = SpillLI.getVNInfoAt(Idx.getRegSlot());
355 assert(VNI && VNI->def == Idx.getRegSlot() && "Not defined by copy");
Wei Mi9a16d652016-04-13 03:08:27 +0000356#endif
Wei Mifb5252c2016-04-04 17:45:03 +0000357
Wei Mi9a16d652016-04-13 03:08:27 +0000358 unsigned SrcReg = CopyMI.getOperand(1).getReg();
359 LiveInterval &SrcLI = LIS.getInterval(SrcReg);
360 VNInfo *SrcVNI = SrcLI.getVNInfoAt(Idx);
361 LiveQueryResult SrcQ = SrcLI.Query(Idx);
362 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(SrcVNI->def);
363 if (DefMBB != CopyMI.getParent() || !SrcQ.isKill())
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000364 return false;
365
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000366 // Conservatively extend the stack slot range to the range of the original
367 // value. We may be able to do better with stack slot coloring by being more
368 // careful here.
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000369 assert(StackInt && "No stack slot assigned yet.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000370 LiveInterval &OrigLI = LIS.getInterval(Original);
371 VNInfo *OrigVNI = OrigLI.getVNInfoAt(Idx);
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000372 StackInt->MergeValueInAsValue(OrigLI, OrigVNI, StackInt->getValNumInfo(0));
Jakob Stoklund Olesen86985072011-03-19 23:02:47 +0000373 DEBUG(dbgs() << "\tmerged orig valno " << OrigVNI->id << ": "
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000374 << *StackInt << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000375
Wei Mi9a16d652016-04-13 03:08:27 +0000376 // We are going to spill SrcVNI immediately after its def, so clear out
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000377 // any later spills of the same value.
Wei Mi9a16d652016-04-13 03:08:27 +0000378 eliminateRedundantSpills(SrcLI, SrcVNI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000379
Wei Mi9a16d652016-04-13 03:08:27 +0000380 MachineBasicBlock *MBB = LIS.getMBBFromIndex(SrcVNI->def);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000381 MachineBasicBlock::iterator MII;
Wei Mi9a16d652016-04-13 03:08:27 +0000382 if (SrcVNI->isPHIDef())
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000383 MII = MBB->SkipPHIsAndLabels(MBB->begin());
384 else {
Wei Mi9a16d652016-04-13 03:08:27 +0000385 MachineInstr *DefMI = LIS.getInstructionFromIndex(SrcVNI->def);
Jakob Stoklund Olesenec9b4a62011-04-30 06:42:21 +0000386 assert(DefMI && "Defining instruction disappeared");
387 MII = DefMI;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000388 ++MII;
389 }
390 // Insert spill without kill flag immediately after def.
Wei Mi9a16d652016-04-13 03:08:27 +0000391 TII.storeRegToStackSlot(*MBB, MII, SrcReg, false, StackSlot,
392 MRI.getRegClass(SrcReg), &TRI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000393 --MII; // Point to store instruction.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000394 LIS.InsertMachineInstrInMaps(*MII);
Wei Mi9a16d652016-04-13 03:08:27 +0000395 DEBUG(dbgs() << "\thoisted: " << SrcVNI->def << '\t' << *MII);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000396
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000397 HSpiller.addToMergeableSpills(*MII, StackSlot, Original);
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000398 ++NumSpills;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000399 return true;
400}
401
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000402/// eliminateRedundantSpills - SLI:VNI is known to be on the stack. Remove any
403/// redundant spills of this value in SLI.reg and sibling copies.
404void InlineSpiller::eliminateRedundantSpills(LiveInterval &SLI, VNInfo *VNI) {
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000405 assert(VNI && "Missing value");
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000406 SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList;
407 WorkList.push_back(std::make_pair(&SLI, VNI));
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000408 assert(StackInt && "No stack slot assigned yet.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000409
410 do {
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000411 LiveInterval *LI;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000412 std::tie(LI, VNI) = WorkList.pop_back_val();
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000413 unsigned Reg = LI->reg;
Jakob Stoklund Olesenec9b4a62011-04-30 06:42:21 +0000414 DEBUG(dbgs() << "Checking redundant spills for "
415 << VNI->id << '@' << VNI->def << " in " << *LI << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000416
417 // Regs to spill are taken care of.
418 if (isRegToSpill(Reg))
419 continue;
420
421 // Add all of VNI's live range to StackInt.
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000422 StackInt->MergeValueInAsValue(*LI, VNI, StackInt->getValNumInfo(0));
423 DEBUG(dbgs() << "Merged to stack int: " << *StackInt << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000424
425 // Find all spills and copies of VNI.
Owen Andersonabb90c92014-03-13 06:02:25 +0000426 for (MachineRegisterInfo::use_instr_nodbg_iterator
427 UI = MRI.use_instr_nodbg_begin(Reg), E = MRI.use_instr_nodbg_end();
428 UI != E; ) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000429 MachineInstr &MI = *UI++;
430 if (!MI.isCopy() && !MI.mayStore())
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000431 continue;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000432 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000433 if (LI->getVNInfoAt(Idx) != VNI)
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000434 continue;
435
436 // Follow sibling copies down the dominator tree.
437 if (unsigned DstReg = isFullCopyOf(MI, Reg)) {
438 if (isSibling(DstReg)) {
439 LiveInterval &DstLI = LIS.getInterval(DstReg);
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000440 VNInfo *DstVNI = DstLI.getVNInfoAt(Idx.getRegSlot());
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000441 assert(DstVNI && "Missing defined value");
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000442 assert(DstVNI->def == Idx.getRegSlot() && "Wrong copy def slot");
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000443 WorkList.push_back(std::make_pair(&DstLI, DstVNI));
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000444 }
445 continue;
446 }
447
448 // Erase spills.
449 int FI;
450 if (Reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000451 DEBUG(dbgs() << "Redundant spill " << Idx << '\t' << MI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000452 // eliminateDeadDefs won't normally remove stores, so switch opcode.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000453 MI.setDesc(TII.get(TargetOpcode::KILL));
454 DeadDefs.push_back(&MI);
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000455 ++NumSpillsRemoved;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000456 if (HSpiller.rmFromMergeableSpills(MI, StackSlot))
Wei Mi9a16d652016-04-13 03:08:27 +0000457 --NumSpills;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000458 }
459 }
460 } while (!WorkList.empty());
461}
462
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000463
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000464//===----------------------------------------------------------------------===//
465// Rematerialization
466//===----------------------------------------------------------------------===//
467
468/// markValueUsed - Remember that VNI failed to rematerialize, so its defining
469/// instruction cannot be eliminated. See through snippet copies
470void InlineSpiller::markValueUsed(LiveInterval *LI, VNInfo *VNI) {
471 SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList;
472 WorkList.push_back(std::make_pair(LI, VNI));
473 do {
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000474 std::tie(LI, VNI) = WorkList.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +0000475 if (!UsedValues.insert(VNI).second)
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000476 continue;
477
478 if (VNI->isPHIDef()) {
479 MachineBasicBlock *MBB = LIS.getMBBFromIndex(VNI->def);
Craig Topper73275a22015-12-24 05:20:40 +0000480 for (MachineBasicBlock *P : MBB->predecessors()) {
481 VNInfo *PVNI = LI->getVNInfoBefore(LIS.getMBBEndIdx(P));
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000482 if (PVNI)
483 WorkList.push_back(std::make_pair(LI, PVNI));
484 }
485 continue;
486 }
487
488 // Follow snippet copies.
489 MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def);
490 if (!SnippetCopies.count(MI))
491 continue;
492 LiveInterval &SnipLI = LIS.getInterval(MI->getOperand(1).getReg());
493 assert(isRegToSpill(SnipLI.reg) && "Unexpected register in copy");
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000494 VNInfo *SnipVNI = SnipLI.getVNInfoAt(VNI->def.getRegSlot(true));
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000495 assert(SnipVNI && "Snippet undefined before copy");
496 WorkList.push_back(std::make_pair(&SnipLI, SnipVNI));
497 } while (!WorkList.empty());
498}
499
500/// reMaterializeFor - Attempt to rematerialize before MI instead of reloading.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000501bool InlineSpiller::reMaterializeFor(LiveInterval &VirtReg, MachineInstr &MI) {
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000502
503 // Analyze instruction
504 SmallVector<std::pair<MachineInstr *, unsigned>, 8> Ops;
505 MIBundleOperands::VirtRegInfo RI =
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000506 MIBundleOperands(MI).analyzeVirtReg(VirtReg.reg, &Ops);
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000507
508 if (!RI.Reads)
509 return false;
510
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000511 SlotIndex UseIdx = LIS.getInstructionIndex(MI).getRegSlot(true);
Jakob Stoklund Olesenc0dd3da2011-07-18 05:31:59 +0000512 VNInfo *ParentVNI = VirtReg.getVNInfoAt(UseIdx.getBaseIndex());
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000513
514 if (!ParentVNI) {
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000515 DEBUG(dbgs() << "\tadding <undef> flags: ");
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000516 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
517 MachineOperand &MO = MI.getOperand(i);
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000518 if (MO.isReg() && MO.isUse() && MO.getReg() == VirtReg.reg)
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000519 MO.setIsUndef();
520 }
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000521 DEBUG(dbgs() << UseIdx << '\t' << MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000522 return true;
523 }
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000524
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000525 if (SnippetCopies.count(&MI))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000526 return false;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000527
Wei Mi9a16d652016-04-13 03:08:27 +0000528 LiveInterval &OrigLI = LIS.getInterval(Original);
529 VNInfo *OrigVNI = OrigLI.getVNInfoAt(UseIdx);
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000530 LiveRangeEdit::Remat RM(ParentVNI);
Wei Mi9a16d652016-04-13 03:08:27 +0000531 RM.OrigMI = LIS.getInstructionFromIndex(OrigVNI->def);
532
533 if (!Edit->canRematerializeAt(RM, OrigVNI, UseIdx, false)) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000534 markValueUsed(&VirtReg, ParentVNI);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000535 DEBUG(dbgs() << "\tcannot remat for " << UseIdx << '\t' << MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000536 return false;
537 }
538
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000539 // If the instruction also writes VirtReg.reg, it had better not require the
540 // same register for uses and defs.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000541 if (RI.Tied) {
542 markValueUsed(&VirtReg, ParentVNI);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000543 DEBUG(dbgs() << "\tcannot remat tied reg: " << UseIdx << '\t' << MI);
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000544 return false;
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000545 }
546
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000547 // Before rematerializing into a register for a single instruction, try to
548 // fold a load into the instruction. That avoids allocating a new register.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000549 if (RM.OrigMI->canFoldAsLoad() &&
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000550 foldMemoryOperand(Ops, RM.OrigMI)) {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000551 Edit->markRematerialized(RM.ParentVNI);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000552 ++NumFoldedLoads;
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000553 return true;
554 }
555
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000556 // Alocate a new register for the remat.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000557 unsigned NewVReg = Edit->createFrom(Original);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000558
559 // Finally we can rematerialize OrigMI before MI.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000560 SlotIndex DefIdx =
561 Edit->rematerializeAt(*MI.getParent(), MI, NewVReg, RM, TRI);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000562 (void)DefIdx;
Jakob Stoklund Olesenc6a20412011-02-08 19:33:55 +0000563 DEBUG(dbgs() << "\tremat: " << DefIdx << '\t'
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000564 << *LIS.getInstructionFromIndex(DefIdx));
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000565
566 // Replace operands
Craig Topper73275a22015-12-24 05:20:40 +0000567 for (const auto &OpPair : Ops) {
568 MachineOperand &MO = OpPair.first->getOperand(OpPair.second);
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000569 if (MO.isReg() && MO.isUse() && MO.getReg() == VirtReg.reg) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000570 MO.setReg(NewVReg);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000571 MO.setIsKill();
572 }
573 }
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000574 DEBUG(dbgs() << "\t " << UseIdx << '\t' << MI << '\n');
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000575
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000576 ++NumRemats;
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000577 return true;
578}
579
Jakob Stoklund Olesen72911e42010-10-14 23:49:52 +0000580/// reMaterializeAll - Try to rematerialize as many uses as possible,
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000581/// and trim the live ranges after.
582void InlineSpiller::reMaterializeAll() {
Pete Cooper2bde2f42012-04-02 22:22:53 +0000583 if (!Edit->anyRematerializable(AA))
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000584 return;
585
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000586 UsedValues.clear();
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000587
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000588 // Try to remat before all uses of snippets.
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000589 bool anyRemat = false;
Craig Topper73275a22015-12-24 05:20:40 +0000590 for (unsigned Reg : RegsToSpill) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000591 LiveInterval &LI = LIS.getInterval(Reg);
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000592 for (MachineRegisterInfo::reg_bundle_iterator
593 RegI = MRI.reg_bundle_begin(Reg), E = MRI.reg_bundle_end();
594 RegI != E; ) {
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000595 MachineInstr &MI = *RegI++;
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000596
597 // Debug values are not allowed to affect codegen.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000598 if (MI.isDebugValue())
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000599 continue;
600
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000601 anyRemat |= reMaterializeFor(LI, MI);
Owen Andersonabb90c92014-03-13 06:02:25 +0000602 }
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000603 }
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000604 if (!anyRemat)
605 return;
606
607 // Remove any values that were completely rematted.
Craig Topper73275a22015-12-24 05:20:40 +0000608 for (unsigned Reg : RegsToSpill) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000609 LiveInterval &LI = LIS.getInterval(Reg);
610 for (LiveInterval::vni_iterator I = LI.vni_begin(), E = LI.vni_end();
611 I != E; ++I) {
612 VNInfo *VNI = *I;
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000613 if (VNI->isUnused() || VNI->isPHIDef() || UsedValues.count(VNI))
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000614 continue;
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000615 MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def);
616 MI->addRegisterDead(Reg, &TRI);
617 if (!MI->allDefsAreDead())
618 continue;
619 DEBUG(dbgs() << "All defs dead: " << *MI);
620 DeadDefs.push_back(MI);
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000621 }
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000622 }
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000623
624 // Eliminate dead code after remat. Note that some snippet copies may be
625 // deleted here.
626 if (DeadDefs.empty())
627 return;
628 DEBUG(dbgs() << "Remat created " << DeadDefs.size() << " dead defs.\n");
Wei Mic0223702016-07-08 21:08:09 +0000629 Edit->eliminateDeadDefs(DeadDefs, RegsToSpill, AA);
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000630
Wei Mia62f0582016-02-05 18:14:24 +0000631 // LiveRangeEdit::eliminateDeadDef is used to remove dead define instructions
632 // after rematerialization. To remove a VNI for a vreg from its LiveInterval,
633 // LiveIntervals::removeVRegDefAt is used. However, after non-PHI VNIs are all
634 // removed, PHI VNI are still left in the LiveInterval.
635 // So to get rid of unused reg, we need to check whether it has non-dbg
636 // reference instead of whether it has non-empty interval.
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000637 unsigned ResultPos = 0;
Craig Topper73275a22015-12-24 05:20:40 +0000638 for (unsigned Reg : RegsToSpill) {
Wei Mia62f0582016-02-05 18:14:24 +0000639 if (MRI.reg_nodbg_empty(Reg)) {
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000640 Edit->eraseVirtReg(Reg);
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000641 continue;
642 }
Wei Mia62f0582016-02-05 18:14:24 +0000643 assert((LIS.hasInterval(Reg) && !LIS.getInterval(Reg).empty()) &&
644 "Reg with empty interval has reference");
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000645 RegsToSpill[ResultPos++] = Reg;
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000646 }
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000647 RegsToSpill.erase(RegsToSpill.begin() + ResultPos, RegsToSpill.end());
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000648 DEBUG(dbgs() << RegsToSpill.size() << " registers to spill after remat.\n");
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000649}
650
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000651
652//===----------------------------------------------------------------------===//
653// Spilling
654//===----------------------------------------------------------------------===//
655
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000656/// If MI is a load or store of StackSlot, it can be removed.
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000657bool InlineSpiller::coalesceStackAccess(MachineInstr *MI, unsigned Reg) {
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000658 int FI = 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000659 unsigned InstrReg = TII.isLoadFromStackSlot(*MI, FI);
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000660 bool IsLoad = InstrReg;
661 if (!IsLoad)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000662 InstrReg = TII.isStoreToStackSlot(*MI, FI);
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000663
664 // We have a stack access. Is it the right register and slot?
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000665 if (InstrReg != Reg || FI != StackSlot)
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000666 return false;
667
Wei Mi9a16d652016-04-13 03:08:27 +0000668 if (!IsLoad)
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000669 HSpiller.rmFromMergeableSpills(*MI, StackSlot);
Wei Mi9a16d652016-04-13 03:08:27 +0000670
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000671 DEBUG(dbgs() << "Coalescing stack access: " << *MI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000672 LIS.RemoveMachineInstrFromMaps(*MI);
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000673 MI->eraseFromParent();
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000674
675 if (IsLoad) {
676 ++NumReloadsRemoved;
677 --NumReloads;
678 } else {
679 ++NumSpillsRemoved;
680 --NumSpills;
681 }
682
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000683 return true;
684}
685
Mark Lacey9d8103d2013-08-14 23:50:16 +0000686#if !defined(NDEBUG)
687// Dump the range of instructions from B to E with their slot indexes.
688static void dumpMachineInstrRangeWithSlotIndex(MachineBasicBlock::iterator B,
689 MachineBasicBlock::iterator E,
690 LiveIntervals const &LIS,
691 const char *const header,
692 unsigned VReg =0) {
693 char NextLine = '\n';
694 char SlotIndent = '\t';
695
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000696 if (std::next(B) == E) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000697 NextLine = ' ';
698 SlotIndent = ' ';
699 }
700
701 dbgs() << '\t' << header << ": " << NextLine;
702
703 for (MachineBasicBlock::iterator I = B; I != E; ++I) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000704 SlotIndex Idx = LIS.getInstructionIndex(*I).getRegSlot();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000705
706 // If a register was passed in and this instruction has it as a
707 // destination that is marked as an early clobber, print the
708 // early-clobber slot index.
709 if (VReg) {
710 MachineOperand *MO = I->findRegisterDefOperand(VReg);
711 if (MO && MO->isEarlyClobber())
712 Idx = Idx.getRegSlot(true);
713 }
714
715 dbgs() << SlotIndent << Idx << '\t' << *I;
716 }
717}
718#endif
719
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000720/// foldMemoryOperand - Try folding stack slot references in Ops into their
721/// instructions.
722///
723/// @param Ops Operand indices from analyzeVirtReg().
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000724/// @param LoadMI Load instruction to use instead of stack slot when non-null.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000725/// @return True on success.
726bool InlineSpiller::
727foldMemoryOperand(ArrayRef<std::pair<MachineInstr*, unsigned> > Ops,
728 MachineInstr *LoadMI) {
729 if (Ops.empty())
730 return false;
731 // Don't attempt folding in bundles.
732 MachineInstr *MI = Ops.front().first;
733 if (Ops.back().first != MI || MI->isBundled())
734 return false;
735
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000736 bool WasCopy = MI->isCopy();
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000737 unsigned ImpReg = 0;
738
Philip Reames0365f1a2014-12-01 22:52:56 +0000739 bool SpillSubRegs = (MI->getOpcode() == TargetOpcode::STATEPOINT ||
740 MI->getOpcode() == TargetOpcode::PATCHPOINT ||
Andrew Trick10d5be42013-11-17 01:36:23 +0000741 MI->getOpcode() == TargetOpcode::STACKMAP);
742
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000743 // TargetInstrInfo::foldMemoryOperand only expects explicit, non-tied
744 // operands.
745 SmallVector<unsigned, 8> FoldOps;
Craig Topper73275a22015-12-24 05:20:40 +0000746 for (const auto &OpPair : Ops) {
747 unsigned Idx = OpPair.second;
748 assert(MI == OpPair.first && "Instruction conflict during operand folding");
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000749 MachineOperand &MO = MI->getOperand(Idx);
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000750 if (MO.isImplicit()) {
751 ImpReg = MO.getReg();
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000752 continue;
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000753 }
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000754 // FIXME: Teach targets to deal with subregs.
Andrew Trick10d5be42013-11-17 01:36:23 +0000755 if (!SpillSubRegs && MO.getSubReg())
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000756 return false;
Jakob Stoklund Olesenc6a20412011-02-08 19:33:55 +0000757 // We cannot fold a load instruction into a def.
758 if (LoadMI && MO.isDef())
759 return false;
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000760 // Tied use operands should not be passed to foldMemoryOperand.
761 if (!MI->isRegTiedToDefOperand(Idx))
762 FoldOps.push_back(Idx);
763 }
764
Mark Lacey9d8103d2013-08-14 23:50:16 +0000765 MachineInstrSpan MIS(MI);
766
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000767 MachineInstr *FoldMI =
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000768 LoadMI ? TII.foldMemoryOperand(*MI, FoldOps, *LoadMI, &LIS)
769 : TII.foldMemoryOperand(*MI, FoldOps, StackSlot, &LIS);
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000770 if (!FoldMI)
771 return false;
Andrew Trick5749b8b2013-06-21 18:33:26 +0000772
773 // Remove LIS for any dead defs in the original MI not in FoldMI.
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000774 for (MIBundleOperands MO(*MI); MO.isValid(); ++MO) {
Andrew Trick5749b8b2013-06-21 18:33:26 +0000775 if (!MO->isReg())
776 continue;
777 unsigned Reg = MO->getReg();
778 if (!Reg || TargetRegisterInfo::isVirtualRegister(Reg) ||
779 MRI.isReserved(Reg)) {
780 continue;
781 }
Andrew Trickdfacda32014-01-07 07:31:10 +0000782 // Skip non-Defs, including undef uses and internal reads.
783 if (MO->isUse())
784 continue;
Andrew Trick5749b8b2013-06-21 18:33:26 +0000785 MIBundleOperands::PhysRegInfo RI =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000786 MIBundleOperands(*FoldMI).analyzePhysReg(Reg, &TRI);
Matthias Braun60d69e22015-12-11 19:42:09 +0000787 if (RI.FullyDefined)
Andrew Trick5749b8b2013-06-21 18:33:26 +0000788 continue;
789 // FoldMI does not define this physreg. Remove the LI segment.
790 assert(MO->isDead() && "Cannot fold physreg def");
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000791 SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
Matthias Brauncfb8ad22015-01-21 18:50:21 +0000792 LIS.removePhysRegDefAt(Reg, Idx);
Andrew Trick5749b8b2013-06-21 18:33:26 +0000793 }
Mark Lacey9d8103d2013-08-14 23:50:16 +0000794
Wei Mi9a16d652016-04-13 03:08:27 +0000795 int FI;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000796 if (TII.isStoreToStackSlot(*MI, FI) &&
797 HSpiller.rmFromMergeableSpills(*MI, FI))
Wei Mi9a16d652016-04-13 03:08:27 +0000798 --NumSpills;
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000799 LIS.ReplaceMachineInstrInMaps(*MI, *FoldMI);
Jakob Stoklund Olesenbd953d12010-07-09 17:29:08 +0000800 MI->eraseFromParent();
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000801
Mark Lacey9d8103d2013-08-14 23:50:16 +0000802 // Insert any new instructions other than FoldMI into the LIS maps.
803 assert(!MIS.empty() && "Unexpected empty span of instructions!");
Craig Topper73275a22015-12-24 05:20:40 +0000804 for (MachineInstr &MI : MIS)
805 if (&MI != FoldMI)
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000806 LIS.InsertMachineInstrInMaps(MI);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000807
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000808 // TII.foldMemoryOperand may have left some implicit operands on the
809 // instruction. Strip them.
810 if (ImpReg)
811 for (unsigned i = FoldMI->getNumOperands(); i; --i) {
812 MachineOperand &MO = FoldMI->getOperand(i - 1);
813 if (!MO.isReg() || !MO.isImplicit())
814 break;
815 if (MO.getReg() == ImpReg)
816 FoldMI->RemoveOperand(i - 1);
817 }
818
Mark Lacey9d8103d2013-08-14 23:50:16 +0000819 DEBUG(dumpMachineInstrRangeWithSlotIndex(MIS.begin(), MIS.end(), LIS,
820 "folded"));
821
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000822 if (!WasCopy)
823 ++NumFolded;
Wei Mi9a16d652016-04-13 03:08:27 +0000824 else if (Ops.front().second == 0) {
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000825 ++NumSpills;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000826 HSpiller.addToMergeableSpills(*FoldMI, StackSlot, Original);
Wei Mi9a16d652016-04-13 03:08:27 +0000827 } else
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000828 ++NumReloads;
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000829 return true;
830}
831
Mark Lacey9d8103d2013-08-14 23:50:16 +0000832void InlineSpiller::insertReload(unsigned NewVReg,
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000833 SlotIndex Idx,
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000834 MachineBasicBlock::iterator MI) {
835 MachineBasicBlock &MBB = *MI->getParent();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000836
837 MachineInstrSpan MIS(MI);
838 TII.loadRegFromStackSlot(MBB, MI, NewVReg, StackSlot,
839 MRI.getRegClass(NewVReg), &TRI);
840
841 LIS.InsertMachineInstrRangeInMaps(MIS.begin(), MI);
842
843 DEBUG(dumpMachineInstrRangeWithSlotIndex(MIS.begin(), MI, LIS, "reload",
844 NewVReg));
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000845 ++NumReloads;
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000846}
847
Mark Lacey9d8103d2013-08-14 23:50:16 +0000848/// insertSpill - Insert a spill of NewVReg after MI.
849void InlineSpiller::insertSpill(unsigned NewVReg, bool isKill,
850 MachineBasicBlock::iterator MI) {
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000851 MachineBasicBlock &MBB = *MI->getParent();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000852
853 MachineInstrSpan MIS(MI);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000854 TII.storeRegToStackSlot(MBB, std::next(MI), NewVReg, isKill, StackSlot,
Mark Lacey9d8103d2013-08-14 23:50:16 +0000855 MRI.getRegClass(NewVReg), &TRI);
856
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000857 LIS.InsertMachineInstrRangeInMaps(std::next(MI), MIS.end());
Mark Lacey9d8103d2013-08-14 23:50:16 +0000858
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000859 DEBUG(dumpMachineInstrRangeWithSlotIndex(std::next(MI), MIS.end(), LIS,
Mark Lacey9d8103d2013-08-14 23:50:16 +0000860 "spill"));
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000861 ++NumSpills;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000862 HSpiller.addToMergeableSpills(*std::next(MI), StackSlot, Original);
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000863}
864
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000865/// spillAroundUses - insert spill code around each use of Reg.
866void InlineSpiller::spillAroundUses(unsigned Reg) {
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +0000867 DEBUG(dbgs() << "spillAroundUses " << PrintReg(Reg) << '\n');
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000868 LiveInterval &OldLI = LIS.getInterval(Reg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000869
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000870 // Iterate over instructions using Reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000871 for (MachineRegisterInfo::reg_bundle_iterator
872 RegI = MRI.reg_bundle_begin(Reg), E = MRI.reg_bundle_end();
873 RegI != E; ) {
Owen Andersonec5d4802014-03-14 05:02:18 +0000874 MachineInstr *MI = &*(RegI++);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000875
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000876 // Debug values are not allowed to affect codegen.
877 if (MI->isDebugValue()) {
878 // Modify DBG_VALUE now that the value is in a spill slot.
Adrian Prantldb3e26d2013-09-16 23:29:03 +0000879 bool IsIndirect = MI->isIndirectDebugValue();
Adrian Prantlc31ec1c2013-07-10 16:56:47 +0000880 uint64_t Offset = IsIndirect ? MI->getOperand(1).getImm() : 0;
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000881 const MDNode *Var = MI->getDebugVariable();
882 const MDNode *Expr = MI->getDebugExpression();
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000883 DebugLoc DL = MI->getDebugLoc();
David Blaikie0252265b2013-06-16 20:34:15 +0000884 DEBUG(dbgs() << "Modifying debug info due to spill:" << "\t" << *MI);
885 MachineBasicBlock *MBB = MI->getParent();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000886 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
Duncan P. N. Exon Smith3bef6a32015-04-03 19:20:26 +0000887 "Expected inlined-at fields to agree");
David Blaikie0252265b2013-06-16 20:34:15 +0000888 BuildMI(*MBB, MBB->erase(MI), DL, TII.get(TargetOpcode::DBG_VALUE))
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000889 .addFrameIndex(StackSlot)
890 .addImm(Offset)
891 .addMetadata(Var)
892 .addMetadata(Expr);
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000893 continue;
894 }
895
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000896 // Ignore copies to/from snippets. We'll delete them.
897 if (SnippetCopies.count(MI))
898 continue;
899
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000900 // Stack slot accesses may coalesce away.
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000901 if (coalesceStackAccess(MI, Reg))
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000902 continue;
903
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000904 // Analyze instruction.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000905 SmallVector<std::pair<MachineInstr*, unsigned>, 8> Ops;
James Molloy381fab92012-09-12 10:03:31 +0000906 MIBundleOperands::VirtRegInfo RI =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000907 MIBundleOperands(*MI).analyzeVirtReg(Reg, &Ops);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000908
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000909 // Find the slot index where this instruction reads and writes OldLI.
910 // This is usually the def slot, except for tied early clobbers.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000911 SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000912 if (VNInfo *VNI = OldLI.getVNInfoAt(Idx.getRegSlot(true)))
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000913 if (SlotIndex::isSameInstr(Idx, VNI->def))
914 Idx = VNI->def;
915
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000916 // Check for a sibling copy.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000917 unsigned SibReg = isFullCopyOf(*MI, Reg);
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000918 if (SibReg && isSibling(SibReg)) {
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +0000919 // This may actually be a copy between snippets.
920 if (isRegToSpill(SibReg)) {
921 DEBUG(dbgs() << "Found new snippet copy: " << *MI);
922 SnippetCopies.insert(MI);
923 continue;
924 }
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000925 if (RI.Writes) {
Wei Mi9a16d652016-04-13 03:08:27 +0000926 if (hoistSpillInsideBB(OldLI, *MI)) {
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000927 // This COPY is now dead, the value is already in the stack slot.
928 MI->getOperand(0).setIsDead();
929 DeadDefs.push_back(MI);
930 continue;
931 }
932 } else {
933 // This is a reload for a sib-reg copy. Drop spills downstream.
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000934 LiveInterval &SibLI = LIS.getInterval(SibReg);
935 eliminateRedundantSpills(SibLI, SibLI.getVNInfoAt(Idx));
936 // The COPY will fold to a reload below.
937 }
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000938 }
939
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000940 // Attempt to fold memory ops.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000941 if (foldMemoryOperand(Ops))
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000942 continue;
943
Mark Lacey9d8103d2013-08-14 23:50:16 +0000944 // Create a new virtual register for spill/fill.
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000945 // FIXME: Infer regclass from instruction alone.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000946 unsigned NewVReg = Edit->createFrom(Reg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000947
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000948 if (RI.Reads)
Mark Lacey9d8103d2013-08-14 23:50:16 +0000949 insertReload(NewVReg, Idx, MI);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000950
951 // Rewrite instruction operands.
952 bool hasLiveDef = false;
Craig Topper73275a22015-12-24 05:20:40 +0000953 for (const auto &OpPair : Ops) {
954 MachineOperand &MO = OpPair.first->getOperand(OpPair.second);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000955 MO.setReg(NewVReg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000956 if (MO.isUse()) {
Craig Topper73275a22015-12-24 05:20:40 +0000957 if (!OpPair.first->isRegTiedToDefOperand(OpPair.second))
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000958 MO.setIsKill();
959 } else {
960 if (!MO.isDead())
961 hasLiveDef = true;
962 }
963 }
Mark Lacey9d8103d2013-08-14 23:50:16 +0000964 DEBUG(dbgs() << "\trewrite: " << Idx << '\t' << *MI << '\n');
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000965
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000966 // FIXME: Use a second vreg if instruction has no tied ops.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000967 if (RI.Writes)
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000968 if (hasLiveDef)
Mark Lacey9d8103d2013-08-14 23:50:16 +0000969 insertSpill(NewVReg, true, MI);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000970 }
971}
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000972
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000973/// spillAll - Spill all registers remaining after rematerialization.
974void InlineSpiller::spillAll() {
975 // Update LiveStacks now that we are committed to spilling.
976 if (StackSlot == VirtRegMap::NO_STACK_SLOT) {
977 StackSlot = VRM.assignVirt2StackSlot(Original);
978 StackInt = &LSS.getOrCreateInterval(StackSlot, MRI.getRegClass(Original));
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000979 StackInt->getNextValue(SlotIndex(), LSS.getVNInfoAllocator());
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000980 } else
981 StackInt = &LSS.getInterval(StackSlot);
982
983 if (Original != Edit->getReg())
984 VRM.assignVirt2StackSlot(Edit->getReg(), StackSlot);
985
986 assert(StackInt->getNumValNums() == 1 && "Bad stack interval values");
Craig Topper73275a22015-12-24 05:20:40 +0000987 for (unsigned Reg : RegsToSpill)
988 StackInt->MergeSegmentsInAsValue(LIS.getInterval(Reg),
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000989 StackInt->getValNumInfo(0));
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000990 DEBUG(dbgs() << "Merged spilled regs: " << *StackInt << '\n');
991
992 // Spill around uses of all RegsToSpill.
Craig Topper73275a22015-12-24 05:20:40 +0000993 for (unsigned Reg : RegsToSpill)
994 spillAroundUses(Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000995
996 // Hoisted spills may cause dead code.
997 if (!DeadDefs.empty()) {
998 DEBUG(dbgs() << "Eliminating " << DeadDefs.size() << " dead defs\n");
Wei Mic0223702016-07-08 21:08:09 +0000999 Edit->eliminateDeadDefs(DeadDefs, RegsToSpill, AA);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001000 }
1001
1002 // Finally delete the SnippetCopies.
Craig Topper73275a22015-12-24 05:20:40 +00001003 for (unsigned Reg : RegsToSpill) {
Owen Andersonabb90c92014-03-13 06:02:25 +00001004 for (MachineRegisterInfo::reg_instr_iterator
Craig Topper73275a22015-12-24 05:20:40 +00001005 RI = MRI.reg_instr_begin(Reg), E = MRI.reg_instr_end();
Owen Andersonabb90c92014-03-13 06:02:25 +00001006 RI != E; ) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001007 MachineInstr &MI = *(RI++);
1008 assert(SnippetCopies.count(&MI) && "Remaining use wasn't a snippet copy");
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001009 // FIXME: Do this with a LiveRangeEdit callback.
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001010 LIS.RemoveMachineInstrFromMaps(MI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001011 MI.eraseFromParent();
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001012 }
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001013 }
1014
1015 // Delete all spilled registers.
Craig Topper73275a22015-12-24 05:20:40 +00001016 for (unsigned Reg : RegsToSpill)
1017 Edit->eraseVirtReg(Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001018}
1019
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001020void InlineSpiller::spill(LiveRangeEdit &edit) {
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +00001021 ++NumSpilledRanges;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +00001022 Edit = &edit;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001023 assert(!TargetRegisterInfo::isStackSlot(edit.getReg())
1024 && "Trying to spill a stack slot.");
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +00001025 // Share a stack slot among all descendants of Original.
1026 Original = VRM.getOriginal(edit.getReg());
1027 StackSlot = VRM.getStackSlot(Original);
Craig Topperc0196b12014-04-14 00:51:57 +00001028 StackInt = nullptr;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +00001029
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001030 DEBUG(dbgs() << "Inline spilling "
Craig Toppercf0444b2014-11-17 05:50:14 +00001031 << TRI.getRegClassName(MRI.getRegClass(edit.getReg()))
Matthias Braunf6fe6bf2013-10-10 21:29:05 +00001032 << ':' << edit.getParent()
Mark Lacey9d8103d2013-08-14 23:50:16 +00001033 << "\nFrom original " << PrintReg(Original) << '\n');
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001034 assert(edit.getParent().isSpillable() &&
1035 "Attempting to spill already spilled value.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +00001036 assert(DeadDefs.empty() && "Previous spill didn't remove dead defs");
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001037
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001038 collectRegsToSpill();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001039 reMaterializeAll();
1040
1041 // Remat may handle everything.
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001042 if (!RegsToSpill.empty())
1043 spillAll();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001044
Benjamin Kramere2a1d892013-06-17 19:00:36 +00001045 Edit->calculateRegClassAndHint(MF, Loops, MBFI);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001046}
Wei Mi9a16d652016-04-13 03:08:27 +00001047
1048/// Optimizations after all the reg selections and spills are done.
1049///
Wei Mi963f2df2016-04-15 23:16:44 +00001050void InlineSpiller::postOptimization() { HSpiller.hoistAllSpills(); }
Wei Mi9a16d652016-04-13 03:08:27 +00001051
1052/// When a spill is inserted, add the spill to MergeableSpills map.
1053///
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001054void HoistSpillHelper::addToMergeableSpills(MachineInstr &Spill, int StackSlot,
Wei Mi9a16d652016-04-13 03:08:27 +00001055 unsigned Original) {
1056 StackSlotToReg[StackSlot] = Original;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001057 SlotIndex Idx = LIS.getInstructionIndex(Spill);
Wei Mi9a16d652016-04-13 03:08:27 +00001058 VNInfo *OrigVNI = LIS.getInterval(Original).getVNInfoAt(Idx.getRegSlot());
1059 std::pair<int, VNInfo *> MIdx = std::make_pair(StackSlot, OrigVNI);
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001060 MergeableSpills[MIdx].insert(&Spill);
Wei Mi9a16d652016-04-13 03:08:27 +00001061}
1062
1063/// When a spill is removed, remove the spill from MergeableSpills map.
1064/// Return true if the spill is removed successfully.
1065///
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001066bool HoistSpillHelper::rmFromMergeableSpills(MachineInstr &Spill,
Wei Mi9a16d652016-04-13 03:08:27 +00001067 int StackSlot) {
1068 int Original = StackSlotToReg[StackSlot];
1069 if (!Original)
1070 return false;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001071 SlotIndex Idx = LIS.getInstructionIndex(Spill);
Wei Mi9a16d652016-04-13 03:08:27 +00001072 VNInfo *OrigVNI = LIS.getInterval(Original).getVNInfoAt(Idx.getRegSlot());
1073 std::pair<int, VNInfo *> MIdx = std::make_pair(StackSlot, OrigVNI);
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001074 return MergeableSpills[MIdx].erase(&Spill);
Wei Mi9a16d652016-04-13 03:08:27 +00001075}
1076
1077/// Check BB to see if it is a possible target BB to place a hoisted spill,
1078/// i.e., there should be a living sibling of OrigReg at the insert point.
1079///
1080bool HoistSpillHelper::isSpillCandBB(unsigned OrigReg, VNInfo &OrigVNI,
1081 MachineBasicBlock &BB, unsigned &LiveReg) {
1082 SlotIndex Idx;
Wei Mif3c8f532016-05-23 19:39:19 +00001083 LiveInterval &OrigLI = LIS.getInterval(OrigReg);
1084 MachineBasicBlock::iterator MI = IPA.getLastInsertPointIter(OrigLI, BB);
Wei Mi9a16d652016-04-13 03:08:27 +00001085 if (MI != BB.end())
1086 Idx = LIS.getInstructionIndex(*MI);
1087 else
1088 Idx = LIS.getMBBEndIdx(&BB).getPrevSlot();
1089 SmallSetVector<unsigned, 16> &Siblings = Virt2SiblingsMap[OrigReg];
1090 assert((LIS.getInterval(OrigReg)).getVNInfoAt(Idx) == &OrigVNI &&
1091 "Unexpected VNI");
1092
1093 for (auto const SibReg : Siblings) {
1094 LiveInterval &LI = LIS.getInterval(SibReg);
1095 VNInfo *VNI = LI.getVNInfoAt(Idx);
1096 if (VNI) {
1097 LiveReg = SibReg;
1098 return true;
1099 }
1100 }
1101 return false;
1102}
1103
Eric Christopher75d661a2016-05-04 21:45:36 +00001104/// Remove redundant spills in the same BB. Save those redundant spills in
Wei Mi9a16d652016-04-13 03:08:27 +00001105/// SpillsToRm, and save the spill to keep and its BB in SpillBBToSpill map.
1106///
1107void HoistSpillHelper::rmRedundantSpills(
1108 SmallPtrSet<MachineInstr *, 16> &Spills,
1109 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1110 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill) {
1111 // For each spill saw, check SpillBBToSpill[] and see if its BB already has
1112 // another spill inside. If a BB contains more than one spill, only keep the
1113 // earlier spill with smaller SlotIndex.
1114 for (const auto CurrentSpill : Spills) {
1115 MachineBasicBlock *Block = CurrentSpill->getParent();
1116 MachineDomTreeNode *Node = MDT.DT->getNode(Block);
1117 MachineInstr *PrevSpill = SpillBBToSpill[Node];
1118 if (PrevSpill) {
1119 SlotIndex PIdx = LIS.getInstructionIndex(*PrevSpill);
1120 SlotIndex CIdx = LIS.getInstructionIndex(*CurrentSpill);
1121 MachineInstr *SpillToRm = (CIdx > PIdx) ? CurrentSpill : PrevSpill;
1122 MachineInstr *SpillToKeep = (CIdx > PIdx) ? PrevSpill : CurrentSpill;
1123 SpillsToRm.push_back(SpillToRm);
1124 SpillBBToSpill[MDT.DT->getNode(Block)] = SpillToKeep;
1125 } else {
1126 SpillBBToSpill[MDT.DT->getNode(Block)] = CurrentSpill;
1127 }
1128 }
1129 for (const auto SpillToRm : SpillsToRm)
1130 Spills.erase(SpillToRm);
1131}
1132
1133/// Starting from \p Root find a top-down traversal order of the dominator
1134/// tree to visit all basic blocks containing the elements of \p Spills.
1135/// Redundant spills will be found and put into \p SpillsToRm at the same
1136/// time. \p SpillBBToSpill will be populated as part of the process and
1137/// maps a basic block to the first store occurring in the basic block.
1138/// \post SpillsToRm.union(Spills\@post) == Spills\@pre
1139///
1140void HoistSpillHelper::getVisitOrders(
1141 MachineBasicBlock *Root, SmallPtrSet<MachineInstr *, 16> &Spills,
1142 SmallVectorImpl<MachineDomTreeNode *> &Orders,
1143 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1144 DenseMap<MachineDomTreeNode *, unsigned> &SpillsToKeep,
1145 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill) {
1146 // The set contains all the possible BB nodes to which we may hoist
1147 // original spills.
1148 SmallPtrSet<MachineDomTreeNode *, 8> WorkSet;
1149 // Save the BB nodes on the path from the first BB node containing
Eric Christopher75d661a2016-05-04 21:45:36 +00001150 // non-redundant spill to the Root node.
Wei Mi9a16d652016-04-13 03:08:27 +00001151 SmallPtrSet<MachineDomTreeNode *, 8> NodesOnPath;
1152 // All the spills to be hoisted must originate from a single def instruction
1153 // to the OrigReg. It means the def instruction should dominate all the spills
1154 // to be hoisted. We choose the BB where the def instruction is located as
1155 // the Root.
1156 MachineDomTreeNode *RootIDomNode = MDT[Root]->getIDom();
1157 // For every node on the dominator tree with spill, walk up on the dominator
1158 // tree towards the Root node until it is reached. If there is other node
1159 // containing spill in the middle of the path, the previous spill saw will
Eric Christopher75d661a2016-05-04 21:45:36 +00001160 // be redundant and the node containing it will be removed. All the nodes on
1161 // the path starting from the first node with non-redundant spill to the Root
Wei Mi9a16d652016-04-13 03:08:27 +00001162 // node will be added to the WorkSet, which will contain all the possible
1163 // locations where spills may be hoisted to after the loop below is done.
1164 for (const auto Spill : Spills) {
1165 MachineBasicBlock *Block = Spill->getParent();
1166 MachineDomTreeNode *Node = MDT[Block];
1167 MachineInstr *SpillToRm = nullptr;
1168 while (Node != RootIDomNode) {
1169 // If Node dominates Block, and it already contains a spill, the spill in
Eric Christopher75d661a2016-05-04 21:45:36 +00001170 // Block will be redundant.
Wei Mi9a16d652016-04-13 03:08:27 +00001171 if (Node != MDT[Block] && SpillBBToSpill[Node]) {
1172 SpillToRm = SpillBBToSpill[MDT[Block]];
1173 break;
1174 /// If we see the Node already in WorkSet, the path from the Node to
1175 /// the Root node must already be traversed by another spill.
1176 /// Then no need to repeat.
1177 } else if (WorkSet.count(Node)) {
1178 break;
1179 } else {
1180 NodesOnPath.insert(Node);
1181 }
1182 Node = Node->getIDom();
1183 }
1184 if (SpillToRm) {
1185 SpillsToRm.push_back(SpillToRm);
1186 } else {
1187 // Add a BB containing the original spills to SpillsToKeep -- i.e.,
1188 // set the initial status before hoisting start. The value of BBs
1189 // containing original spills is set to 0, in order to descriminate
1190 // with BBs containing hoisted spills which will be inserted to
1191 // SpillsToKeep later during hoisting.
1192 SpillsToKeep[MDT[Block]] = 0;
1193 WorkSet.insert(NodesOnPath.begin(), NodesOnPath.end());
1194 }
1195 NodesOnPath.clear();
1196 }
1197
1198 // Sort the nodes in WorkSet in top-down order and save the nodes
1199 // in Orders. Orders will be used for hoisting in runHoistSpills.
1200 unsigned idx = 0;
1201 Orders.push_back(MDT.DT->getNode(Root));
1202 do {
1203 MachineDomTreeNode *Node = Orders[idx++];
1204 const std::vector<MachineDomTreeNode *> &Children = Node->getChildren();
1205 unsigned NumChildren = Children.size();
1206 for (unsigned i = 0; i != NumChildren; ++i) {
1207 MachineDomTreeNode *Child = Children[i];
1208 if (WorkSet.count(Child))
1209 Orders.push_back(Child);
1210 }
1211 } while (idx != Orders.size());
1212 assert(Orders.size() == WorkSet.size() &&
1213 "Orders have different size with WorkSet");
1214
1215#ifndef NDEBUG
1216 DEBUG(dbgs() << "Orders size is " << Orders.size() << "\n");
1217 SmallVector<MachineDomTreeNode *, 32>::reverse_iterator RIt = Orders.rbegin();
1218 for (; RIt != Orders.rend(); RIt++)
1219 DEBUG(dbgs() << "BB" << (*RIt)->getBlock()->getNumber() << ",");
1220 DEBUG(dbgs() << "\n");
1221#endif
1222}
1223
1224/// Try to hoist spills according to BB hotness. The spills to removed will
1225/// be saved in \p SpillsToRm. The spills to be inserted will be saved in
1226/// \p SpillsToIns.
1227///
1228void HoistSpillHelper::runHoistSpills(
1229 unsigned OrigReg, VNInfo &OrigVNI, SmallPtrSet<MachineInstr *, 16> &Spills,
1230 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1231 DenseMap<MachineBasicBlock *, unsigned> &SpillsToIns) {
1232 // Visit order of dominator tree nodes.
1233 SmallVector<MachineDomTreeNode *, 32> Orders;
1234 // SpillsToKeep contains all the nodes where spills are to be inserted
1235 // during hoisting. If the spill to be inserted is an original spill
1236 // (not a hoisted one), the value of the map entry is 0. If the spill
1237 // is a hoisted spill, the value of the map entry is the VReg to be used
1238 // as the source of the spill.
1239 DenseMap<MachineDomTreeNode *, unsigned> SpillsToKeep;
1240 // Map from BB to the first spill inside of it.
1241 DenseMap<MachineDomTreeNode *, MachineInstr *> SpillBBToSpill;
1242
1243 rmRedundantSpills(Spills, SpillsToRm, SpillBBToSpill);
1244
1245 MachineBasicBlock *Root = LIS.getMBBFromIndex(OrigVNI.def);
1246 getVisitOrders(Root, Spills, Orders, SpillsToRm, SpillsToKeep,
1247 SpillBBToSpill);
1248
1249 // SpillsInSubTreeMap keeps the map from a dom tree node to a pair of
1250 // nodes set and the cost of all the spills inside those nodes.
1251 // The nodes set are the locations where spills are to be inserted
1252 // in the subtree of current node.
1253 typedef std::pair<SmallPtrSet<MachineDomTreeNode *, 16>, BlockFrequency>
1254 NodesCostPair;
1255 DenseMap<MachineDomTreeNode *, NodesCostPair> SpillsInSubTreeMap;
1256 // Iterate Orders set in reverse order, which will be a bottom-up order
1257 // in the dominator tree. Once we visit a dom tree node, we know its
1258 // children have already been visited and the spill locations in the
1259 // subtrees of all the children have been determined.
1260 SmallVector<MachineDomTreeNode *, 32>::reverse_iterator RIt = Orders.rbegin();
1261 for (; RIt != Orders.rend(); RIt++) {
1262 MachineBasicBlock *Block = (*RIt)->getBlock();
1263
1264 // If Block contains an original spill, simply continue.
1265 if (SpillsToKeep.find(*RIt) != SpillsToKeep.end() && !SpillsToKeep[*RIt]) {
1266 SpillsInSubTreeMap[*RIt].first.insert(*RIt);
1267 // SpillsInSubTreeMap[*RIt].second contains the cost of spill.
1268 SpillsInSubTreeMap[*RIt].second = MBFI.getBlockFreq(Block);
1269 continue;
1270 }
1271
1272 // Collect spills in subtree of current node (*RIt) to
1273 // SpillsInSubTreeMap[*RIt].first.
1274 const std::vector<MachineDomTreeNode *> &Children = (*RIt)->getChildren();
1275 unsigned NumChildren = Children.size();
1276 for (unsigned i = 0; i != NumChildren; ++i) {
1277 MachineDomTreeNode *Child = Children[i];
1278 if (SpillsInSubTreeMap.find(Child) == SpillsInSubTreeMap.end())
1279 continue;
1280 // The stmt "SpillsInSubTree = SpillsInSubTreeMap[*RIt].first" below
1281 // should be placed before getting the begin and end iterators of
1282 // SpillsInSubTreeMap[Child].first, or else the iterators may be
1283 // invalidated when SpillsInSubTreeMap[*RIt] is seen the first time
1284 // and the map grows and then the original buckets in the map are moved.
1285 SmallPtrSet<MachineDomTreeNode *, 16> &SpillsInSubTree =
1286 SpillsInSubTreeMap[*RIt].first;
1287 BlockFrequency &SubTreeCost = SpillsInSubTreeMap[*RIt].second;
1288 SubTreeCost += SpillsInSubTreeMap[Child].second;
1289 auto BI = SpillsInSubTreeMap[Child].first.begin();
1290 auto EI = SpillsInSubTreeMap[Child].first.end();
1291 SpillsInSubTree.insert(BI, EI);
1292 SpillsInSubTreeMap.erase(Child);
1293 }
1294
1295 SmallPtrSet<MachineDomTreeNode *, 16> &SpillsInSubTree =
1296 SpillsInSubTreeMap[*RIt].first;
1297 BlockFrequency &SubTreeCost = SpillsInSubTreeMap[*RIt].second;
1298 // No spills in subtree, simply continue.
1299 if (SpillsInSubTree.empty())
1300 continue;
1301
1302 // Check whether Block is a possible candidate to insert spill.
1303 unsigned LiveReg = 0;
1304 if (!isSpillCandBB(OrigReg, OrigVNI, *Block, LiveReg))
1305 continue;
1306
1307 // If there are multiple spills that could be merged, bias a little
1308 // to hoist the spill.
1309 BranchProbability MarginProb = (SpillsInSubTree.size() > 1)
1310 ? BranchProbability(9, 10)
1311 : BranchProbability(1, 1);
1312 if (SubTreeCost > MBFI.getBlockFreq(Block) * MarginProb) {
1313 // Hoist: Move spills to current Block.
1314 for (const auto SpillBB : SpillsInSubTree) {
1315 // When SpillBB is a BB contains original spill, insert the spill
1316 // to SpillsToRm.
1317 if (SpillsToKeep.find(SpillBB) != SpillsToKeep.end() &&
1318 !SpillsToKeep[SpillBB]) {
1319 MachineInstr *SpillToRm = SpillBBToSpill[SpillBB];
1320 SpillsToRm.push_back(SpillToRm);
1321 }
1322 // SpillBB will not contain spill anymore, remove it from SpillsToKeep.
1323 SpillsToKeep.erase(SpillBB);
1324 }
1325 // Current Block is the BB containing the new hoisted spill. Add it to
1326 // SpillsToKeep. LiveReg is the source of the new spill.
1327 SpillsToKeep[*RIt] = LiveReg;
1328 DEBUG({
1329 dbgs() << "spills in BB: ";
1330 for (const auto Rspill : SpillsInSubTree)
1331 dbgs() << Rspill->getBlock()->getNumber() << " ";
1332 dbgs() << "were promoted to BB" << (*RIt)->getBlock()->getNumber()
1333 << "\n";
1334 });
1335 SpillsInSubTree.clear();
1336 SpillsInSubTree.insert(*RIt);
1337 SubTreeCost = MBFI.getBlockFreq(Block);
1338 }
1339 }
1340 // For spills in SpillsToKeep with LiveReg set (i.e., not original spill),
1341 // save them to SpillsToIns.
1342 for (const auto Ent : SpillsToKeep) {
1343 if (Ent.second)
1344 SpillsToIns[Ent.first->getBlock()] = Ent.second;
1345 }
1346}
1347
Eric Christopher75d661a2016-05-04 21:45:36 +00001348/// For spills with equal values, remove redundant spills and hoist those left
Wei Mi9a16d652016-04-13 03:08:27 +00001349/// to less hot spots.
1350///
1351/// Spills with equal values will be collected into the same set in
1352/// MergeableSpills when spill is inserted. These equal spills are originated
Eric Christopher75d661a2016-05-04 21:45:36 +00001353/// from the same defining instruction and are dominated by the instruction.
1354/// Before hoisting all the equal spills, redundant spills inside in the same
1355/// BB are first marked to be deleted. Then starting from the spills left, walk
1356/// up on the dominator tree towards the Root node where the define instruction
Wei Mi9a16d652016-04-13 03:08:27 +00001357/// is located, mark the dominated spills to be deleted along the way and
1358/// collect the BB nodes on the path from non-dominated spills to the define
1359/// instruction into a WorkSet. The nodes in WorkSet are the candidate places
Eric Christopher75d661a2016-05-04 21:45:36 +00001360/// where we are considering to hoist the spills. We iterate the WorkSet in
1361/// bottom-up order, and for each node, we will decide whether to hoist spills
1362/// inside its subtree to that node. In this way, we can get benefit locally
1363/// even if hoisting all the equal spills to one cold place is impossible.
Wei Mi9a16d652016-04-13 03:08:27 +00001364///
Wei Mi963f2df2016-04-15 23:16:44 +00001365void HoistSpillHelper::hoistAllSpills() {
1366 SmallVector<unsigned, 4> NewVRegs;
1367 LiveRangeEdit Edit(nullptr, NewVRegs, MF, LIS, &VRM, this);
1368
Wei Mi9a16d652016-04-13 03:08:27 +00001369 // Save the mapping between stackslot and its original reg.
1370 DenseMap<int, unsigned> SlotToOrigReg;
1371 for (unsigned i = 0, e = MRI.getNumVirtRegs(); i != e; ++i) {
1372 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
1373 int Slot = VRM.getStackSlot(Reg);
1374 if (Slot != VirtRegMap::NO_STACK_SLOT)
1375 SlotToOrigReg[Slot] = VRM.getOriginal(Reg);
1376 unsigned Original = VRM.getPreSplitReg(Reg);
1377 if (!MRI.def_empty(Reg))
1378 Virt2SiblingsMap[Original].insert(Reg);
1379 }
1380
1381 // Each entry in MergeableSpills contains a spill set with equal values.
1382 for (auto &Ent : MergeableSpills) {
1383 int Slot = Ent.first.first;
1384 unsigned OrigReg = SlotToOrigReg[Slot];
Wei Mi8c4136b2016-05-11 22:37:43 +00001385 LiveInterval &OrigLI = LIS.getInterval(OrigReg);
Wei Mi9a16d652016-04-13 03:08:27 +00001386 VNInfo *OrigVNI = Ent.first.second;
1387 SmallPtrSet<MachineInstr *, 16> &EqValSpills = Ent.second;
1388 if (Ent.second.empty())
1389 continue;
1390
1391 DEBUG({
1392 dbgs() << "\nFor Slot" << Slot << " and VN" << OrigVNI->id << ":\n"
1393 << "Equal spills in BB: ";
1394 for (const auto spill : EqValSpills)
1395 dbgs() << spill->getParent()->getNumber() << " ";
1396 dbgs() << "\n";
1397 });
1398
1399 // SpillsToRm is the spill set to be removed from EqValSpills.
1400 SmallVector<MachineInstr *, 16> SpillsToRm;
1401 // SpillsToIns is the spill set to be newly inserted after hoisting.
1402 DenseMap<MachineBasicBlock *, unsigned> SpillsToIns;
1403
1404 runHoistSpills(OrigReg, *OrigVNI, EqValSpills, SpillsToRm, SpillsToIns);
1405
1406 DEBUG({
1407 dbgs() << "Finally inserted spills in BB: ";
1408 for (const auto Ispill : SpillsToIns)
1409 dbgs() << Ispill.first->getNumber() << " ";
1410 dbgs() << "\nFinally removed spills in BB: ";
1411 for (const auto Rspill : SpillsToRm)
1412 dbgs() << Rspill->getParent()->getNumber() << " ";
1413 dbgs() << "\n";
1414 });
1415
1416 // Stack live range update.
1417 LiveInterval &StackIntvl = LSS.getInterval(Slot);
Wei Mi8c4136b2016-05-11 22:37:43 +00001418 if (!SpillsToIns.empty() || !SpillsToRm.empty())
Wei Mi9a16d652016-04-13 03:08:27 +00001419 StackIntvl.MergeValueInAsValue(OrigLI, OrigVNI,
1420 StackIntvl.getValNumInfo(0));
Wei Mi9a16d652016-04-13 03:08:27 +00001421
1422 // Insert hoisted spills.
1423 for (auto const Insert : SpillsToIns) {
1424 MachineBasicBlock *BB = Insert.first;
1425 unsigned LiveReg = Insert.second;
Wei Mif3c8f532016-05-23 19:39:19 +00001426 MachineBasicBlock::iterator MI = IPA.getLastInsertPointIter(OrigLI, *BB);
Wei Mi9a16d652016-04-13 03:08:27 +00001427 TII.storeRegToStackSlot(*BB, MI, LiveReg, false, Slot,
1428 MRI.getRegClass(LiveReg), &TRI);
1429 LIS.InsertMachineInstrRangeInMaps(std::prev(MI), MI);
1430 ++NumSpills;
1431 }
1432
Eric Christopher75d661a2016-05-04 21:45:36 +00001433 // Remove redundant spills or change them to dead instructions.
Wei Mi9a16d652016-04-13 03:08:27 +00001434 NumSpills -= SpillsToRm.size();
1435 for (auto const RMEnt : SpillsToRm) {
1436 RMEnt->setDesc(TII.get(TargetOpcode::KILL));
1437 for (unsigned i = RMEnt->getNumOperands(); i; --i) {
1438 MachineOperand &MO = RMEnt->getOperand(i - 1);
1439 if (MO.isReg() && MO.isImplicit() && MO.isDef() && !MO.isDead())
1440 RMEnt->RemoveOperand(i - 1);
1441 }
1442 }
Wei Mic0223702016-07-08 21:08:09 +00001443 Edit.eliminateDeadDefs(SpillsToRm, None, AA);
Wei Mi9a16d652016-04-13 03:08:27 +00001444 }
1445}
Wei Mi963f2df2016-04-15 23:16:44 +00001446
1447/// For VirtReg clone, the \p New register should have the same physreg or
1448/// stackslot as the \p old register.
1449void HoistSpillHelper::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
1450 if (VRM.hasPhys(Old))
1451 VRM.assignVirt2Phys(New, VRM.getPhys(Old));
1452 else if (VRM.getStackSlot(Old) != VirtRegMap::NO_STACK_SLOT)
1453 VRM.assignVirt2StackSlot(New, VRM.getStackSlot(Old));
1454 else
1455 llvm_unreachable("VReg should be assigned either physreg or stackslot");
1456}