blob: eda4f74c78749345ac1011e86b6a9f3c127d6a4c [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),
Matthias Braun941a7052016-07-28 18:40:00 +0000117 MFI(mf.getFrameInfo()), MRI(mf.getRegInfo()),
Wei Mi9a16d652016-04-13 03:08:27 +0000118 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),
Matthias Braun941a7052016-07-28 18:40:00 +0000175 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
David Majnemer42531262016-08-12 03:55:06 +0000188 bool isRegToSpill(unsigned Reg) { return is_contained(RegsToSpill, Reg); }
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000189
190 bool isSibling(unsigned Reg);
Wei Mi9a16d652016-04-13 03:08:27 +0000191 bool hoistSpillInsideBB(LiveInterval &SpillLI, MachineInstr &CopyMI);
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000192 void eliminateRedundantSpills(LiveInterval &LI, VNInfo *VNI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000193
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000194 void markValueUsed(LiveInterval*, VNInfo*);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000195 bool reMaterializeFor(LiveInterval &, MachineInstr &MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000196 void reMaterializeAll();
197
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000198 bool coalesceStackAccess(MachineInstr *MI, unsigned Reg);
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000199 bool foldMemoryOperand(ArrayRef<std::pair<MachineInstr*, unsigned> >,
Craig Topperc0196b12014-04-14 00:51:57 +0000200 MachineInstr *LoadMI = nullptr);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000201 void insertReload(unsigned VReg, SlotIndex, MachineBasicBlock::iterator MI);
202 void insertSpill(unsigned VReg, bool isKill, MachineBasicBlock::iterator MI);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000203
204 void spillAroundUses(unsigned Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000205 void spillAll();
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000206};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000207}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000208
209namespace llvm {
Lang Hamescdd90772014-11-06 19:12:38 +0000210
211Spiller::~Spiller() { }
212void Spiller::anchor() { }
213
Jakob Stoklund Olesen0fef9dd2010-07-20 23:50:15 +0000214Spiller *createInlineSpiller(MachineFunctionPass &pass,
215 MachineFunction &mf,
216 VirtRegMap &vrm) {
217 return new InlineSpiller(pass, mf, vrm);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000218}
Lang Hamescdd90772014-11-06 19:12:38 +0000219
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000220}
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000221
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000222//===----------------------------------------------------------------------===//
223// Snippets
224//===----------------------------------------------------------------------===//
225
226// When spilling a virtual register, we also spill any snippets it is connected
227// to. The snippets are small live ranges that only have a single real use,
228// leftovers from live range splitting. Spilling them enables memory operand
229// folding or tightens the live range around the single use.
230//
231// This minimizes register pressure and maximizes the store-to-load distance for
232// spill slots which can be important in tight loops.
233
234/// isFullCopyOf - If MI is a COPY to or from Reg, return the other register,
235/// otherwise return 0.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000236static unsigned isFullCopyOf(const MachineInstr &MI, unsigned Reg) {
237 if (!MI.isFullCopy())
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000238 return 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000239 if (MI.getOperand(0).getReg() == Reg)
240 return MI.getOperand(1).getReg();
241 if (MI.getOperand(1).getReg() == Reg)
242 return MI.getOperand(0).getReg();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000243 return 0;
244}
245
246/// isSnippet - Identify if a live interval is a snippet that should be spilled.
247/// It is assumed that SnipLI is a virtual register with the same original as
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000248/// Edit->getReg().
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000249bool InlineSpiller::isSnippet(const LiveInterval &SnipLI) {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000250 unsigned Reg = Edit->getReg();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000251
252 // A snippet is a tiny live range with only a single instruction using it
253 // besides copies to/from Reg or spills/fills. We accept:
254 //
255 // %snip = COPY %Reg / FILL fi#
256 // %snip = USE %snip
257 // %Reg = COPY %snip / SPILL %snip, fi#
258 //
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000259 if (SnipLI.getNumValNums() > 2 || !LIS.intervalIsInOneMBB(SnipLI))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000260 return false;
261
Craig Topperc0196b12014-04-14 00:51:57 +0000262 MachineInstr *UseMI = nullptr;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000263
264 // Check that all uses satisfy our criteria.
Owen Andersonabb90c92014-03-13 06:02:25 +0000265 for (MachineRegisterInfo::reg_instr_nodbg_iterator
266 RI = MRI.reg_instr_nodbg_begin(SnipLI.reg),
267 E = MRI.reg_instr_nodbg_end(); RI != E; ) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000268 MachineInstr &MI = *RI++;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000269
270 // Allow copies to/from Reg.
271 if (isFullCopyOf(MI, Reg))
272 continue;
273
274 // Allow stack slot loads.
275 int FI;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000276 if (SnipLI.reg == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000277 continue;
278
279 // Allow stack slot stores.
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000280 if (SnipLI.reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000281 continue;
282
283 // Allow a single additional instruction.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000284 if (UseMI && &MI != UseMI)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000285 return false;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000286 UseMI = &MI;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000287 }
288 return true;
289}
290
291/// collectRegsToSpill - Collect live range snippets that only have a single
292/// real use.
293void InlineSpiller::collectRegsToSpill() {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000294 unsigned Reg = Edit->getReg();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000295
296 // Main register always spills.
297 RegsToSpill.assign(1, Reg);
298 SnippetCopies.clear();
299
300 // Snippets all have the same original, so there can't be any for an original
301 // register.
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +0000302 if (Original == Reg)
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000303 return;
304
Owen Andersonabb90c92014-03-13 06:02:25 +0000305 for (MachineRegisterInfo::reg_instr_iterator
306 RI = MRI.reg_instr_begin(Reg), E = MRI.reg_instr_end(); RI != E; ) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000307 MachineInstr &MI = *RI++;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000308 unsigned SnipReg = isFullCopyOf(MI, Reg);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000309 if (!isSibling(SnipReg))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000310 continue;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000311 LiveInterval &SnipLI = LIS.getInterval(SnipReg);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000312 if (!isSnippet(SnipLI))
313 continue;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000314 SnippetCopies.insert(&MI);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000315 if (isRegToSpill(SnipReg))
316 continue;
317 RegsToSpill.push_back(SnipReg);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000318 DEBUG(dbgs() << "\talso spill snippet " << SnipLI << '\n');
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000319 ++NumSnippets;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000320 }
321}
322
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000323bool InlineSpiller::isSibling(unsigned Reg) {
324 return TargetRegisterInfo::isVirtualRegister(Reg) &&
325 VRM.getOriginal(Reg) == Original;
326}
327
Wei Mi9a16d652016-04-13 03:08:27 +0000328/// It is beneficial to spill to earlier place in the same BB in case
329/// as follows:
330/// There is an alternative def earlier in the same MBB.
331/// Hoist the spill as far as possible in SpillMBB. This can ease
332/// register pressure:
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000333///
Wei Mi9a16d652016-04-13 03:08:27 +0000334/// x = def
335/// y = use x
336/// s = copy x
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000337///
Wei Mi9a16d652016-04-13 03:08:27 +0000338/// Hoisting the spill of s to immediately after the def removes the
339/// interference between x and y:
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000340///
Wei Mi9a16d652016-04-13 03:08:27 +0000341/// x = def
342/// spill x
343/// y = use x<kill>
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000344///
Wei Mi9a16d652016-04-13 03:08:27 +0000345/// This hoist only helps when the copy kills its source.
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000346///
Wei Mi9a16d652016-04-13 03:08:27 +0000347bool InlineSpiller::hoistSpillInsideBB(LiveInterval &SpillLI,
348 MachineInstr &CopyMI) {
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000349 SlotIndex Idx = LIS.getInstructionIndex(CopyMI);
Wei Mi9a16d652016-04-13 03:08:27 +0000350#ifndef NDEBUG
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000351 VNInfo *VNI = SpillLI.getVNInfoAt(Idx.getRegSlot());
352 assert(VNI && VNI->def == Idx.getRegSlot() && "Not defined by copy");
Wei Mi9a16d652016-04-13 03:08:27 +0000353#endif
Wei Mifb5252c2016-04-04 17:45:03 +0000354
Wei Mi9a16d652016-04-13 03:08:27 +0000355 unsigned SrcReg = CopyMI.getOperand(1).getReg();
356 LiveInterval &SrcLI = LIS.getInterval(SrcReg);
357 VNInfo *SrcVNI = SrcLI.getVNInfoAt(Idx);
358 LiveQueryResult SrcQ = SrcLI.Query(Idx);
359 MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(SrcVNI->def);
360 if (DefMBB != CopyMI.getParent() || !SrcQ.isKill())
Hans Wennborg5a7723c2016-04-08 15:17:43 +0000361 return false;
362
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000363 // Conservatively extend the stack slot range to the range of the original
364 // value. We may be able to do better with stack slot coloring by being more
365 // careful here.
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000366 assert(StackInt && "No stack slot assigned yet.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000367 LiveInterval &OrigLI = LIS.getInterval(Original);
368 VNInfo *OrigVNI = OrigLI.getVNInfoAt(Idx);
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000369 StackInt->MergeValueInAsValue(OrigLI, OrigVNI, StackInt->getValNumInfo(0));
Jakob Stoklund Olesen86985072011-03-19 23:02:47 +0000370 DEBUG(dbgs() << "\tmerged orig valno " << OrigVNI->id << ": "
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000371 << *StackInt << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000372
Wei Mi9a16d652016-04-13 03:08:27 +0000373 // We are going to spill SrcVNI immediately after its def, so clear out
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000374 // any later spills of the same value.
Wei Mi9a16d652016-04-13 03:08:27 +0000375 eliminateRedundantSpills(SrcLI, SrcVNI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000376
Wei Mi9a16d652016-04-13 03:08:27 +0000377 MachineBasicBlock *MBB = LIS.getMBBFromIndex(SrcVNI->def);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000378 MachineBasicBlock::iterator MII;
Wei Mi9a16d652016-04-13 03:08:27 +0000379 if (SrcVNI->isPHIDef())
Keith Walker830a8c12016-09-16 14:07:29 +0000380 MII = MBB->SkipPHIsLabelsAndDebug(MBB->begin());
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000381 else {
Wei Mi9a16d652016-04-13 03:08:27 +0000382 MachineInstr *DefMI = LIS.getInstructionFromIndex(SrcVNI->def);
Jakob Stoklund Olesenec9b4a62011-04-30 06:42:21 +0000383 assert(DefMI && "Defining instruction disappeared");
384 MII = DefMI;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000385 ++MII;
386 }
387 // Insert spill without kill flag immediately after def.
Wei Mi9a16d652016-04-13 03:08:27 +0000388 TII.storeRegToStackSlot(*MBB, MII, SrcReg, false, StackSlot,
389 MRI.getRegClass(SrcReg), &TRI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000390 --MII; // Point to store instruction.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000391 LIS.InsertMachineInstrInMaps(*MII);
Wei Mi9a16d652016-04-13 03:08:27 +0000392 DEBUG(dbgs() << "\thoisted: " << SrcVNI->def << '\t' << *MII);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000393
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000394 HSpiller.addToMergeableSpills(*MII, StackSlot, Original);
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000395 ++NumSpills;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000396 return true;
397}
398
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000399/// eliminateRedundantSpills - SLI:VNI is known to be on the stack. Remove any
400/// redundant spills of this value in SLI.reg and sibling copies.
401void InlineSpiller::eliminateRedundantSpills(LiveInterval &SLI, VNInfo *VNI) {
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000402 assert(VNI && "Missing value");
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000403 SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList;
404 WorkList.push_back(std::make_pair(&SLI, VNI));
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000405 assert(StackInt && "No stack slot assigned yet.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000406
407 do {
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000408 LiveInterval *LI;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000409 std::tie(LI, VNI) = WorkList.pop_back_val();
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000410 unsigned Reg = LI->reg;
Jakob Stoklund Olesenec9b4a62011-04-30 06:42:21 +0000411 DEBUG(dbgs() << "Checking redundant spills for "
412 << VNI->id << '@' << VNI->def << " in " << *LI << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000413
414 // Regs to spill are taken care of.
415 if (isRegToSpill(Reg))
416 continue;
417
418 // Add all of VNI's live range to StackInt.
Jakob Stoklund Olesene4663452011-03-26 22:16:41 +0000419 StackInt->MergeValueInAsValue(*LI, VNI, StackInt->getValNumInfo(0));
420 DEBUG(dbgs() << "Merged to stack int: " << *StackInt << '\n');
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000421
422 // Find all spills and copies of VNI.
Owen Andersonabb90c92014-03-13 06:02:25 +0000423 for (MachineRegisterInfo::use_instr_nodbg_iterator
424 UI = MRI.use_instr_nodbg_begin(Reg), E = MRI.use_instr_nodbg_end();
425 UI != E; ) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000426 MachineInstr &MI = *UI++;
427 if (!MI.isCopy() && !MI.mayStore())
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000428 continue;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000429 SlotIndex Idx = LIS.getInstructionIndex(MI);
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000430 if (LI->getVNInfoAt(Idx) != VNI)
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000431 continue;
432
433 // Follow sibling copies down the dominator tree.
434 if (unsigned DstReg = isFullCopyOf(MI, Reg)) {
435 if (isSibling(DstReg)) {
436 LiveInterval &DstLI = LIS.getInterval(DstReg);
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000437 VNInfo *DstVNI = DstLI.getVNInfoAt(Idx.getRegSlot());
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000438 assert(DstVNI && "Missing defined value");
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000439 assert(DstVNI->def == Idx.getRegSlot() && "Wrong copy def slot");
Jakob Stoklund Olesen39488642011-03-20 05:44:55 +0000440 WorkList.push_back(std::make_pair(&DstLI, DstVNI));
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000441 }
442 continue;
443 }
444
445 // Erase spills.
446 int FI;
447 if (Reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000448 DEBUG(dbgs() << "Redundant spill " << Idx << '\t' << MI);
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000449 // eliminateDeadDefs won't normally remove stores, so switch opcode.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000450 MI.setDesc(TII.get(TargetOpcode::KILL));
451 DeadDefs.push_back(&MI);
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000452 ++NumSpillsRemoved;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000453 if (HSpiller.rmFromMergeableSpills(MI, StackSlot))
Wei Mi9a16d652016-04-13 03:08:27 +0000454 --NumSpills;
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000455 }
456 }
457 } while (!WorkList.empty());
458}
459
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000460
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000461//===----------------------------------------------------------------------===//
462// Rematerialization
463//===----------------------------------------------------------------------===//
464
465/// markValueUsed - Remember that VNI failed to rematerialize, so its defining
466/// instruction cannot be eliminated. See through snippet copies
467void InlineSpiller::markValueUsed(LiveInterval *LI, VNInfo *VNI) {
468 SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList;
469 WorkList.push_back(std::make_pair(LI, VNI));
470 do {
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000471 std::tie(LI, VNI) = WorkList.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +0000472 if (!UsedValues.insert(VNI).second)
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000473 continue;
474
475 if (VNI->isPHIDef()) {
476 MachineBasicBlock *MBB = LIS.getMBBFromIndex(VNI->def);
Craig Topper73275a22015-12-24 05:20:40 +0000477 for (MachineBasicBlock *P : MBB->predecessors()) {
478 VNInfo *PVNI = LI->getVNInfoBefore(LIS.getMBBEndIdx(P));
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000479 if (PVNI)
480 WorkList.push_back(std::make_pair(LI, PVNI));
481 }
482 continue;
483 }
484
485 // Follow snippet copies.
486 MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def);
487 if (!SnippetCopies.count(MI))
488 continue;
489 LiveInterval &SnipLI = LIS.getInterval(MI->getOperand(1).getReg());
490 assert(isRegToSpill(SnipLI.reg) && "Unexpected register in copy");
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000491 VNInfo *SnipVNI = SnipLI.getVNInfoAt(VNI->def.getRegSlot(true));
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000492 assert(SnipVNI && "Snippet undefined before copy");
493 WorkList.push_back(std::make_pair(&SnipLI, SnipVNI));
494 } while (!WorkList.empty());
495}
496
497/// reMaterializeFor - Attempt to rematerialize before MI instead of reloading.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000498bool InlineSpiller::reMaterializeFor(LiveInterval &VirtReg, MachineInstr &MI) {
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000499
500 // Analyze instruction
501 SmallVector<std::pair<MachineInstr *, unsigned>, 8> Ops;
502 MIBundleOperands::VirtRegInfo RI =
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000503 MIBundleOperands(MI).analyzeVirtReg(VirtReg.reg, &Ops);
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000504
505 if (!RI.Reads)
506 return false;
507
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000508 SlotIndex UseIdx = LIS.getInstructionIndex(MI).getRegSlot(true);
Jakob Stoklund Olesenc0dd3da2011-07-18 05:31:59 +0000509 VNInfo *ParentVNI = VirtReg.getVNInfoAt(UseIdx.getBaseIndex());
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000510
511 if (!ParentVNI) {
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000512 DEBUG(dbgs() << "\tadding <undef> flags: ");
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000513 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
514 MachineOperand &MO = MI.getOperand(i);
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000515 if (MO.isReg() && MO.isUse() && MO.getReg() == VirtReg.reg)
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000516 MO.setIsUndef();
517 }
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000518 DEBUG(dbgs() << UseIdx << '\t' << MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000519 return true;
520 }
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000521
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000522 if (SnippetCopies.count(&MI))
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000523 return false;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000524
Wei Mi9a16d652016-04-13 03:08:27 +0000525 LiveInterval &OrigLI = LIS.getInterval(Original);
526 VNInfo *OrigVNI = OrigLI.getVNInfoAt(UseIdx);
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000527 LiveRangeEdit::Remat RM(ParentVNI);
Wei Mi9a16d652016-04-13 03:08:27 +0000528 RM.OrigMI = LIS.getInstructionFromIndex(OrigVNI->def);
529
530 if (!Edit->canRematerializeAt(RM, OrigVNI, UseIdx, false)) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000531 markValueUsed(&VirtReg, ParentVNI);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000532 DEBUG(dbgs() << "\tcannot remat for " << UseIdx << '\t' << MI);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000533 return false;
534 }
535
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000536 // If the instruction also writes VirtReg.reg, it had better not require the
537 // same register for uses and defs.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000538 if (RI.Tied) {
539 markValueUsed(&VirtReg, ParentVNI);
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000540 DEBUG(dbgs() << "\tcannot remat tied reg: " << UseIdx << '\t' << MI);
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000541 return false;
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000542 }
543
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000544 // Before rematerializing into a register for a single instruction, try to
545 // fold a load into the instruction. That avoids allocating a new register.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000546 if (RM.OrigMI->canFoldAsLoad() &&
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000547 foldMemoryOperand(Ops, RM.OrigMI)) {
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000548 Edit->markRematerialized(RM.ParentVNI);
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000549 ++NumFoldedLoads;
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000550 return true;
551 }
552
Wolfgang Pieb8df58f42016-08-16 17:12:50 +0000553 // Allocate a new register for the remat.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000554 unsigned NewVReg = Edit->createFrom(Original);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000555
556 // Finally we can rematerialize OrigMI before MI.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000557 SlotIndex DefIdx =
558 Edit->rematerializeAt(*MI.getParent(), MI, NewVReg, RM, TRI);
Wolfgang Pieb8df58f42016-08-16 17:12:50 +0000559
560 // We take the DebugLoc from MI, since OrigMI may be attributed to a
Junmo Park061bec82017-02-25 01:50:45 +0000561 // different source location.
Wolfgang Pieb8df58f42016-08-16 17:12:50 +0000562 auto *NewMI = LIS.getInstructionFromIndex(DefIdx);
563 NewMI->setDebugLoc(MI.getDebugLoc());
564
Mark Lacey9d8103d2013-08-14 23:50:16 +0000565 (void)DefIdx;
Jakob Stoklund Olesenc6a20412011-02-08 19:33:55 +0000566 DEBUG(dbgs() << "\tremat: " << DefIdx << '\t'
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000567 << *LIS.getInstructionFromIndex(DefIdx));
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000568
569 // Replace operands
Craig Topper73275a22015-12-24 05:20:40 +0000570 for (const auto &OpPair : Ops) {
571 MachineOperand &MO = OpPair.first->getOperand(OpPair.second);
Jakob Stoklund Olesen0ed9ebc2011-03-29 17:47:02 +0000572 if (MO.isReg() && MO.isUse() && MO.getReg() == VirtReg.reg) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000573 MO.setReg(NewVReg);
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000574 MO.setIsKill();
575 }
576 }
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000577 DEBUG(dbgs() << "\t " << UseIdx << '\t' << MI << '\n');
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000578
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000579 ++NumRemats;
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000580 return true;
581}
582
Jakob Stoklund Olesen72911e42010-10-14 23:49:52 +0000583/// reMaterializeAll - Try to rematerialize as many uses as possible,
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000584/// and trim the live ranges after.
585void InlineSpiller::reMaterializeAll() {
Pete Cooper2bde2f42012-04-02 22:22:53 +0000586 if (!Edit->anyRematerializable(AA))
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000587 return;
588
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000589 UsedValues.clear();
Jakob Stoklund Olesen2edaa2f2010-10-20 22:00:51 +0000590
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000591 // Try to remat before all uses of snippets.
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000592 bool anyRemat = false;
Craig Topper73275a22015-12-24 05:20:40 +0000593 for (unsigned Reg : RegsToSpill) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000594 LiveInterval &LI = LIS.getInterval(Reg);
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000595 for (MachineRegisterInfo::reg_bundle_iterator
596 RegI = MRI.reg_bundle_begin(Reg), E = MRI.reg_bundle_end();
597 RegI != E; ) {
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000598 MachineInstr &MI = *RegI++;
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000599
600 // Debug values are not allowed to affect codegen.
Duncan P. N. Exon Smithd6ebd072016-02-27 20:23:14 +0000601 if (MI.isDebugValue())
Patrik Hagglund296acbf2014-09-01 11:04:07 +0000602 continue;
603
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000604 anyRemat |= reMaterializeFor(LI, MI);
Owen Andersonabb90c92014-03-13 06:02:25 +0000605 }
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000606 }
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000607 if (!anyRemat)
608 return;
609
610 // Remove any values that were completely rematted.
Craig Topper73275a22015-12-24 05:20:40 +0000611 for (unsigned Reg : RegsToSpill) {
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000612 LiveInterval &LI = LIS.getInterval(Reg);
613 for (LiveInterval::vni_iterator I = LI.vni_begin(), E = LI.vni_end();
614 I != E; ++I) {
615 VNInfo *VNI = *I;
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000616 if (VNI->isUnused() || VNI->isPHIDef() || UsedValues.count(VNI))
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000617 continue;
Jakob Stoklund Olesend8af5292011-03-29 03:12:02 +0000618 MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def);
619 MI->addRegisterDead(Reg, &TRI);
620 if (!MI->allDefsAreDead())
621 continue;
622 DEBUG(dbgs() << "All defs dead: " << *MI);
623 DeadDefs.push_back(MI);
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000624 }
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000625 }
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000626
627 // Eliminate dead code after remat. Note that some snippet copies may be
628 // deleted here.
629 if (DeadDefs.empty())
630 return;
631 DEBUG(dbgs() << "Remat created " << DeadDefs.size() << " dead defs.\n");
Wei Mic0223702016-07-08 21:08:09 +0000632 Edit->eliminateDeadDefs(DeadDefs, RegsToSpill, AA);
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000633
Wei Mia62f0582016-02-05 18:14:24 +0000634 // LiveRangeEdit::eliminateDeadDef is used to remove dead define instructions
635 // after rematerialization. To remove a VNI for a vreg from its LiveInterval,
636 // LiveIntervals::removeVRegDefAt is used. However, after non-PHI VNIs are all
637 // removed, PHI VNI are still left in the LiveInterval.
638 // So to get rid of unused reg, we need to check whether it has non-dbg
639 // reference instead of whether it has non-empty interval.
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000640 unsigned ResultPos = 0;
Craig Topper73275a22015-12-24 05:20:40 +0000641 for (unsigned Reg : RegsToSpill) {
Wei Mia62f0582016-02-05 18:14:24 +0000642 if (MRI.reg_nodbg_empty(Reg)) {
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000643 Edit->eraseVirtReg(Reg);
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000644 continue;
645 }
Matt Arsenaultc5d1e502017-07-22 00:24:01 +0000646
Matt Arsenault5fbc8702017-07-24 18:07:55 +0000647 assert(LIS.hasInterval(Reg) &&
648 (!LIS.getInterval(Reg).empty() || !MRI.reg_nodbg_empty(Reg)) &&
649 "Empty and not used live-range?!");
650
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000651 RegsToSpill[ResultPos++] = Reg;
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000652 }
Benjamin Kramer391f5a62013-05-05 11:29:14 +0000653 RegsToSpill.erase(RegsToSpill.begin() + ResultPos, RegsToSpill.end());
Jakob Stoklund Olesenadd79c62011-03-29 17:47:00 +0000654 DEBUG(dbgs() << RegsToSpill.size() << " registers to spill after remat.\n");
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000655}
656
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +0000657
658//===----------------------------------------------------------------------===//
659// Spilling
660//===----------------------------------------------------------------------===//
661
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000662/// If MI is a load or store of StackSlot, it can be removed.
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000663bool InlineSpiller::coalesceStackAccess(MachineInstr *MI, unsigned Reg) {
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000664 int FI = 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000665 unsigned InstrReg = TII.isLoadFromStackSlot(*MI, FI);
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000666 bool IsLoad = InstrReg;
667 if (!IsLoad)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000668 InstrReg = TII.isStoreToStackSlot(*MI, FI);
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000669
670 // We have a stack access. Is it the right register and slot?
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000671 if (InstrReg != Reg || FI != StackSlot)
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000672 return false;
673
Wei Mi9a16d652016-04-13 03:08:27 +0000674 if (!IsLoad)
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000675 HSpiller.rmFromMergeableSpills(*MI, StackSlot);
Wei Mi9a16d652016-04-13 03:08:27 +0000676
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000677 DEBUG(dbgs() << "Coalescing stack access: " << *MI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000678 LIS.RemoveMachineInstrFromMaps(*MI);
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000679 MI->eraseFromParent();
Jakob Stoklund Olesen37eb6962011-09-15 17:54:28 +0000680
681 if (IsLoad) {
682 ++NumReloadsRemoved;
683 --NumReloads;
684 } else {
685 ++NumSpillsRemoved;
686 --NumSpills;
687 }
688
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000689 return true;
690}
691
Junmo Parkc7479ba2017-03-28 04:14:25 +0000692#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
693LLVM_DUMP_METHOD
Mark Lacey9d8103d2013-08-14 23:50:16 +0000694// Dump the range of instructions from B to E with their slot indexes.
695static void dumpMachineInstrRangeWithSlotIndex(MachineBasicBlock::iterator B,
696 MachineBasicBlock::iterator E,
697 LiveIntervals const &LIS,
698 const char *const header,
699 unsigned VReg =0) {
700 char NextLine = '\n';
701 char SlotIndent = '\t';
702
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000703 if (std::next(B) == E) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000704 NextLine = ' ';
705 SlotIndent = ' ';
706 }
707
708 dbgs() << '\t' << header << ": " << NextLine;
709
710 for (MachineBasicBlock::iterator I = B; I != E; ++I) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000711 SlotIndex Idx = LIS.getInstructionIndex(*I).getRegSlot();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000712
713 // If a register was passed in and this instruction has it as a
714 // destination that is marked as an early clobber, print the
715 // early-clobber slot index.
716 if (VReg) {
717 MachineOperand *MO = I->findRegisterDefOperand(VReg);
718 if (MO && MO->isEarlyClobber())
719 Idx = Idx.getRegSlot(true);
720 }
721
722 dbgs() << SlotIndent << Idx << '\t' << *I;
723 }
724}
725#endif
726
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000727/// foldMemoryOperand - Try folding stack slot references in Ops into their
728/// instructions.
729///
730/// @param Ops Operand indices from analyzeVirtReg().
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000731/// @param LoadMI Load instruction to use instead of stack slot when non-null.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000732/// @return True on success.
733bool InlineSpiller::
734foldMemoryOperand(ArrayRef<std::pair<MachineInstr*, unsigned> > Ops,
735 MachineInstr *LoadMI) {
736 if (Ops.empty())
737 return false;
738 // Don't attempt folding in bundles.
739 MachineInstr *MI = Ops.front().first;
740 if (Ops.back().first != MI || MI->isBundled())
741 return false;
742
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000743 bool WasCopy = MI->isCopy();
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000744 unsigned ImpReg = 0;
745
Michael Kuperstein47eb85a2016-11-23 18:33:49 +0000746 // Spill subregs if the target allows it.
747 // We always want to spill subregs for stackmap/patchpoint pseudos.
748 bool SpillSubRegs = TII.isSubregFoldable() ||
749 MI->getOpcode() == TargetOpcode::STATEPOINT ||
750 MI->getOpcode() == TargetOpcode::PATCHPOINT ||
751 MI->getOpcode() == TargetOpcode::STACKMAP;
Andrew Trick10d5be42013-11-17 01:36:23 +0000752
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000753 // TargetInstrInfo::foldMemoryOperand only expects explicit, non-tied
754 // operands.
755 SmallVector<unsigned, 8> FoldOps;
Craig Topper73275a22015-12-24 05:20:40 +0000756 for (const auto &OpPair : Ops) {
757 unsigned Idx = OpPair.second;
758 assert(MI == OpPair.first && "Instruction conflict during operand folding");
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000759 MachineOperand &MO = MI->getOperand(Idx);
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000760 if (MO.isImplicit()) {
761 ImpReg = MO.getReg();
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000762 continue;
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000763 }
Michael Kuperstein47eb85a2016-11-23 18:33:49 +0000764
Andrew Trick10d5be42013-11-17 01:36:23 +0000765 if (!SpillSubRegs && MO.getSubReg())
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000766 return false;
Jakob Stoklund Olesenc6a20412011-02-08 19:33:55 +0000767 // We cannot fold a load instruction into a def.
768 if (LoadMI && MO.isDef())
769 return false;
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000770 // Tied use operands should not be passed to foldMemoryOperand.
771 if (!MI->isRegTiedToDefOperand(Idx))
772 FoldOps.push_back(Idx);
773 }
774
Quentin Colombetae3168d2016-12-08 00:06:51 +0000775 // If we only have implicit uses, we won't be able to fold that.
776 // Moreover, TargetInstrInfo::foldMemoryOperand will assert if we try!
777 if (FoldOps.empty())
778 return false;
779
Mark Lacey9d8103d2013-08-14 23:50:16 +0000780 MachineInstrSpan MIS(MI);
781
Jakob Stoklund Olesen3b2966d2010-12-18 03:04:14 +0000782 MachineInstr *FoldMI =
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000783 LoadMI ? TII.foldMemoryOperand(*MI, FoldOps, *LoadMI, &LIS)
784 : TII.foldMemoryOperand(*MI, FoldOps, StackSlot, &LIS);
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000785 if (!FoldMI)
786 return false;
Andrew Trick5749b8b2013-06-21 18:33:26 +0000787
788 // Remove LIS for any dead defs in the original MI not in FoldMI.
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000789 for (MIBundleOperands MO(*MI); MO.isValid(); ++MO) {
Andrew Trick5749b8b2013-06-21 18:33:26 +0000790 if (!MO->isReg())
791 continue;
792 unsigned Reg = MO->getReg();
793 if (!Reg || TargetRegisterInfo::isVirtualRegister(Reg) ||
794 MRI.isReserved(Reg)) {
795 continue;
796 }
Andrew Trickdfacda32014-01-07 07:31:10 +0000797 // Skip non-Defs, including undef uses and internal reads.
798 if (MO->isUse())
799 continue;
Andrew Trick5749b8b2013-06-21 18:33:26 +0000800 MIBundleOperands::PhysRegInfo RI =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000801 MIBundleOperands(*FoldMI).analyzePhysReg(Reg, &TRI);
Matthias Braun60d69e22015-12-11 19:42:09 +0000802 if (RI.FullyDefined)
Andrew Trick5749b8b2013-06-21 18:33:26 +0000803 continue;
804 // FoldMI does not define this physreg. Remove the LI segment.
805 assert(MO->isDead() && "Cannot fold physreg def");
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000806 SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
Matthias Brauncfb8ad22015-01-21 18:50:21 +0000807 LIS.removePhysRegDefAt(Reg, Idx);
Andrew Trick5749b8b2013-06-21 18:33:26 +0000808 }
Mark Lacey9d8103d2013-08-14 23:50:16 +0000809
Wei Mi9a16d652016-04-13 03:08:27 +0000810 int FI;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000811 if (TII.isStoreToStackSlot(*MI, FI) &&
812 HSpiller.rmFromMergeableSpills(*MI, FI))
Wei Mi9a16d652016-04-13 03:08:27 +0000813 --NumSpills;
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000814 LIS.ReplaceMachineInstrInMaps(*MI, *FoldMI);
Jakob Stoklund Olesenbd953d12010-07-09 17:29:08 +0000815 MI->eraseFromParent();
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000816
Mark Lacey9d8103d2013-08-14 23:50:16 +0000817 // Insert any new instructions other than FoldMI into the LIS maps.
818 assert(!MIS.empty() && "Unexpected empty span of instructions!");
Craig Topper73275a22015-12-24 05:20:40 +0000819 for (MachineInstr &MI : MIS)
820 if (&MI != FoldMI)
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000821 LIS.InsertMachineInstrInMaps(MI);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000822
Jakob Stoklund Oleseneef48b62011-11-10 00:17:03 +0000823 // TII.foldMemoryOperand may have left some implicit operands on the
824 // instruction. Strip them.
825 if (ImpReg)
826 for (unsigned i = FoldMI->getNumOperands(); i; --i) {
827 MachineOperand &MO = FoldMI->getOperand(i - 1);
828 if (!MO.isReg() || !MO.isImplicit())
829 break;
830 if (MO.getReg() == ImpReg)
831 FoldMI->RemoveOperand(i - 1);
832 }
833
Mark Lacey9d8103d2013-08-14 23:50:16 +0000834 DEBUG(dumpMachineInstrRangeWithSlotIndex(MIS.begin(), MIS.end(), LIS,
835 "folded"));
836
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000837 if (!WasCopy)
838 ++NumFolded;
Wei Mi9a16d652016-04-13 03:08:27 +0000839 else if (Ops.front().second == 0) {
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000840 ++NumSpills;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +0000841 HSpiller.addToMergeableSpills(*FoldMI, StackSlot, Original);
Wei Mi9a16d652016-04-13 03:08:27 +0000842 } else
Jakob Stoklund Olesenc94c9672011-09-15 18:22:52 +0000843 ++NumReloads;
Jakob Stoklund Olesen8656a452010-07-01 00:13:04 +0000844 return true;
845}
846
Mark Lacey9d8103d2013-08-14 23:50:16 +0000847void InlineSpiller::insertReload(unsigned NewVReg,
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000848 SlotIndex Idx,
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000849 MachineBasicBlock::iterator MI) {
850 MachineBasicBlock &MBB = *MI->getParent();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000851
852 MachineInstrSpan MIS(MI);
853 TII.loadRegFromStackSlot(MBB, MI, NewVReg, StackSlot,
854 MRI.getRegClass(NewVReg), &TRI);
855
856 LIS.InsertMachineInstrRangeInMaps(MIS.begin(), MI);
857
858 DEBUG(dumpMachineInstrRangeWithSlotIndex(MIS.begin(), MI, LIS, "reload",
859 NewVReg));
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000860 ++NumReloads;
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000861}
862
Quentin Colombetc6689352017-06-05 23:51:27 +0000863/// Check if \p Def fully defines a VReg with an undefined value.
864/// If that's the case, that means the value of VReg is actually
865/// not relevant.
866static bool isFullUndefDef(const MachineInstr &Def) {
867 if (!Def.isImplicitDef())
868 return false;
869 assert(Def.getNumOperands() == 1 &&
870 "Implicit def with more than one definition");
871 // We can say that the VReg defined by Def is undef, only if it is
872 // fully defined by Def. Otherwise, some of the lanes may not be
873 // undef and the value of the VReg matters.
874 return !Def.getOperand(0).getSubReg();
875}
876
Mark Lacey9d8103d2013-08-14 23:50:16 +0000877/// insertSpill - Insert a spill of NewVReg after MI.
878void InlineSpiller::insertSpill(unsigned NewVReg, bool isKill,
879 MachineBasicBlock::iterator MI) {
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000880 MachineBasicBlock &MBB = *MI->getParent();
Mark Lacey9d8103d2013-08-14 23:50:16 +0000881
882 MachineInstrSpan MIS(MI);
Quentin Colombet9e9d6382017-06-07 00:22:07 +0000883 bool IsRealSpill = true;
884 if (isFullUndefDef(*MI)) {
Quentin Colombetc6689352017-06-05 23:51:27 +0000885 // Don't spill undef value.
886 // Anything works for undef, in particular keeping the memory
887 // uninitialized is a viable option and it saves code size and
888 // run time.
889 BuildMI(MBB, std::next(MI), MI->getDebugLoc(), TII.get(TargetOpcode::KILL))
890 .addReg(NewVReg, getKillRegState(isKill));
Quentin Colombet9e9d6382017-06-07 00:22:07 +0000891 IsRealSpill = false;
892 } else
Quentin Colombetc6689352017-06-05 23:51:27 +0000893 TII.storeRegToStackSlot(MBB, std::next(MI), NewVReg, isKill, StackSlot,
894 MRI.getRegClass(NewVReg), &TRI);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000895
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000896 LIS.InsertMachineInstrRangeInMaps(std::next(MI), MIS.end());
Mark Lacey9d8103d2013-08-14 23:50:16 +0000897
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000898 DEBUG(dumpMachineInstrRangeWithSlotIndex(std::next(MI), MIS.end(), LIS,
Mark Lacey9d8103d2013-08-14 23:50:16 +0000899 "spill"));
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +0000900 ++NumSpills;
Quentin Colombet9e9d6382017-06-07 00:22:07 +0000901 if (IsRealSpill)
902 HSpiller.addToMergeableSpills(*std::next(MI), StackSlot, Original);
Jakob Stoklund Olesenbde96ad2010-06-30 23:03:52 +0000903}
904
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000905/// spillAroundUses - insert spill code around each use of Reg.
906void InlineSpiller::spillAroundUses(unsigned Reg) {
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +0000907 DEBUG(dbgs() << "spillAroundUses " << PrintReg(Reg) << '\n');
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +0000908 LiveInterval &OldLI = LIS.getInterval(Reg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000909
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000910 // Iterate over instructions using Reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000911 for (MachineRegisterInfo::reg_bundle_iterator
912 RegI = MRI.reg_bundle_begin(Reg), E = MRI.reg_bundle_end();
913 RegI != E; ) {
Owen Andersonec5d4802014-03-14 05:02:18 +0000914 MachineInstr *MI = &*(RegI++);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000915
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000916 // Debug values are not allowed to affect codegen.
917 if (MI->isDebugValue()) {
918 // Modify DBG_VALUE now that the value is in a spill slot.
David Blaikie0252265b2013-06-16 20:34:15 +0000919 MachineBasicBlock *MBB = MI->getParent();
Adrian Prantl6825fb62017-04-18 01:21:53 +0000920 DEBUG(dbgs() << "Modifying debug info due to spill:\t" << *MI);
921 buildDbgValueForSpill(*MBB, MI, *MI, StackSlot);
922 MBB->erase(MI);
Jakob Stoklund Olesencf6c5c92010-07-02 19:54:40 +0000923 continue;
924 }
925
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000926 // Ignore copies to/from snippets. We'll delete them.
927 if (SnippetCopies.count(MI))
928 continue;
929
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000930 // Stack slot accesses may coalesce away.
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +0000931 if (coalesceStackAccess(MI, Reg))
Jakob Stoklund Olesen7fd49052010-08-04 22:35:11 +0000932 continue;
933
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000934 // Analyze instruction.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000935 SmallVector<std::pair<MachineInstr*, unsigned>, 8> Ops;
James Molloy381fab92012-09-12 10:03:31 +0000936 MIBundleOperands::VirtRegInfo RI =
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +0000937 MIBundleOperands(*MI).analyzeVirtReg(Reg, &Ops);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000938
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000939 // Find the slot index where this instruction reads and writes OldLI.
940 // This is usually the def slot, except for tied early clobbers.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000941 SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000942 if (VNInfo *VNI = OldLI.getVNInfoAt(Idx.getRegSlot(true)))
Jakob Stoklund Olesen9f294a92011-04-18 20:23:27 +0000943 if (SlotIndex::isSameInstr(Idx, VNI->def))
944 Idx = VNI->def;
945
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000946 // Check for a sibling copy.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000947 unsigned SibReg = isFullCopyOf(*MI, Reg);
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000948 if (SibReg && isSibling(SibReg)) {
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +0000949 // This may actually be a copy between snippets.
950 if (isRegToSpill(SibReg)) {
951 DEBUG(dbgs() << "Found new snippet copy: " << *MI);
952 SnippetCopies.insert(MI);
953 continue;
954 }
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000955 if (RI.Writes) {
Wei Mi9a16d652016-04-13 03:08:27 +0000956 if (hoistSpillInsideBB(OldLI, *MI)) {
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000957 // This COPY is now dead, the value is already in the stack slot.
958 MI->getOperand(0).setIsDead();
959 DeadDefs.push_back(MI);
960 continue;
961 }
962 } else {
963 // This is a reload for a sib-reg copy. Drop spills downstream.
Jakob Stoklund Olesene55003f2011-03-20 05:44:58 +0000964 LiveInterval &SibLI = LIS.getInterval(SibReg);
965 eliminateRedundantSpills(SibLI, SibLI.getVNInfoAt(Idx));
966 // The COPY will fold to a reload below.
967 }
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +0000968 }
969
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000970 // Attempt to fold memory ops.
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000971 if (foldMemoryOperand(Ops))
Jakob Stoklund Olesen96037182010-07-02 17:44:57 +0000972 continue;
973
Mark Lacey9d8103d2013-08-14 23:50:16 +0000974 // Create a new virtual register for spill/fill.
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000975 // FIXME: Infer regclass from instruction alone.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000976 unsigned NewVReg = Edit->createFrom(Reg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000977
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000978 if (RI.Reads)
Mark Lacey9d8103d2013-08-14 23:50:16 +0000979 insertReload(NewVReg, Idx, MI);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000980
981 // Rewrite instruction operands.
982 bool hasLiveDef = false;
Craig Topper73275a22015-12-24 05:20:40 +0000983 for (const auto &OpPair : Ops) {
984 MachineOperand &MO = OpPair.first->getOperand(OpPair.second);
Mark Lacey9d8103d2013-08-14 23:50:16 +0000985 MO.setReg(NewVReg);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000986 if (MO.isUse()) {
Craig Topper73275a22015-12-24 05:20:40 +0000987 if (!OpPair.first->isRegTiedToDefOperand(OpPair.second))
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000988 MO.setIsKill();
989 } else {
990 if (!MO.isDead())
991 hasLiveDef = true;
992 }
993 }
Mark Lacey9d8103d2013-08-14 23:50:16 +0000994 DEBUG(dbgs() << "\trewrite: " << Idx << '\t' << *MI << '\n');
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000995
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +0000996 // FIXME: Use a second vreg if instruction has no tied ops.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000997 if (RI.Writes)
Jakob Stoklund Olesenabe8c092012-03-01 01:43:25 +0000998 if (hasLiveDef)
Mark Lacey9d8103d2013-08-14 23:50:16 +0000999 insertSpill(NewVReg, true, MI);
Jakob Stoklund Olesenf8889112010-06-29 23:58:39 +00001000 }
1001}
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001002
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001003/// spillAll - Spill all registers remaining after rematerialization.
1004void InlineSpiller::spillAll() {
1005 // Update LiveStacks now that we are committed to spilling.
1006 if (StackSlot == VirtRegMap::NO_STACK_SLOT) {
1007 StackSlot = VRM.assignVirt2StackSlot(Original);
1008 StackInt = &LSS.getOrCreateInterval(StackSlot, MRI.getRegClass(Original));
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +00001009 StackInt->getNextValue(SlotIndex(), LSS.getVNInfoAllocator());
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001010 } else
1011 StackInt = &LSS.getInterval(StackSlot);
1012
1013 if (Original != Edit->getReg())
1014 VRM.assignVirt2StackSlot(Edit->getReg(), StackSlot);
1015
1016 assert(StackInt->getNumValNums() == 1 && "Bad stack interval values");
Craig Topper73275a22015-12-24 05:20:40 +00001017 for (unsigned Reg : RegsToSpill)
1018 StackInt->MergeSegmentsInAsValue(LIS.getInterval(Reg),
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001019 StackInt->getValNumInfo(0));
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001020 DEBUG(dbgs() << "Merged spilled regs: " << *StackInt << '\n');
1021
1022 // Spill around uses of all RegsToSpill.
Craig Topper73275a22015-12-24 05:20:40 +00001023 for (unsigned Reg : RegsToSpill)
1024 spillAroundUses(Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001025
1026 // Hoisted spills may cause dead code.
1027 if (!DeadDefs.empty()) {
1028 DEBUG(dbgs() << "Eliminating " << DeadDefs.size() << " dead defs\n");
Wei Mic0223702016-07-08 21:08:09 +00001029 Edit->eliminateDeadDefs(DeadDefs, RegsToSpill, AA);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001030 }
1031
1032 // Finally delete the SnippetCopies.
Craig Topper73275a22015-12-24 05:20:40 +00001033 for (unsigned Reg : RegsToSpill) {
Owen Andersonabb90c92014-03-13 06:02:25 +00001034 for (MachineRegisterInfo::reg_instr_iterator
Craig Topper73275a22015-12-24 05:20:40 +00001035 RI = MRI.reg_instr_begin(Reg), E = MRI.reg_instr_end();
Owen Andersonabb90c92014-03-13 06:02:25 +00001036 RI != E; ) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001037 MachineInstr &MI = *(RI++);
1038 assert(SnippetCopies.count(&MI) && "Remaining use wasn't a snippet copy");
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001039 // FIXME: Do this with a LiveRangeEdit callback.
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001040 LIS.RemoveMachineInstrFromMaps(MI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001041 MI.eraseFromParent();
Jakob Stoklund Olesen31a0b5e2011-05-11 18:25:10 +00001042 }
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001043 }
1044
1045 // Delete all spilled registers.
Craig Topper73275a22015-12-24 05:20:40 +00001046 for (unsigned Reg : RegsToSpill)
1047 Edit->eraseVirtReg(Reg);
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001048}
1049
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001050void InlineSpiller::spill(LiveRangeEdit &edit) {
Jakob Stoklund Olesenc5a8c082011-05-05 17:22:53 +00001051 ++NumSpilledRanges;
Jakob Stoklund Olesena00bab22011-03-14 19:56:43 +00001052 Edit = &edit;
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001053 assert(!TargetRegisterInfo::isStackSlot(edit.getReg())
1054 && "Trying to spill a stack slot.");
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +00001055 // Share a stack slot among all descendants of Original.
1056 Original = VRM.getOriginal(edit.getReg());
1057 StackSlot = VRM.getStackSlot(Original);
Craig Topperc0196b12014-04-14 00:51:57 +00001058 StackInt = nullptr;
Jakob Stoklund Olesena0d5ec12011-03-15 21:13:25 +00001059
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001060 DEBUG(dbgs() << "Inline spilling "
Craig Toppercf0444b2014-11-17 05:50:14 +00001061 << TRI.getRegClassName(MRI.getRegClass(edit.getReg()))
Matthias Braunf6fe6bf2013-10-10 21:29:05 +00001062 << ':' << edit.getParent()
Mark Lacey9d8103d2013-08-14 23:50:16 +00001063 << "\nFrom original " << PrintReg(Original) << '\n');
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001064 assert(edit.getParent().isSpillable() &&
1065 "Attempting to spill already spilled value.");
Jakob Stoklund Olesen27320cb2011-03-18 04:23:06 +00001066 assert(DeadDefs.empty() && "Previous spill didn't remove dead defs");
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001067
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001068 collectRegsToSpill();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001069 reMaterializeAll();
1070
1071 // Remat may handle everything.
Jakob Stoklund Olesene991f722011-03-29 21:20:19 +00001072 if (!RegsToSpill.empty())
1073 spillAll();
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001074
Benjamin Kramere2a1d892013-06-17 19:00:36 +00001075 Edit->calculateRegClassAndHint(MF, Loops, MBFI);
Jakob Stoklund Olesena86595e2011-03-12 04:17:20 +00001076}
Wei Mi9a16d652016-04-13 03:08:27 +00001077
1078/// Optimizations after all the reg selections and spills are done.
1079///
Wei Mi963f2df2016-04-15 23:16:44 +00001080void InlineSpiller::postOptimization() { HSpiller.hoistAllSpills(); }
Wei Mi9a16d652016-04-13 03:08:27 +00001081
1082/// When a spill is inserted, add the spill to MergeableSpills map.
1083///
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001084void HoistSpillHelper::addToMergeableSpills(MachineInstr &Spill, int StackSlot,
Wei Mi9a16d652016-04-13 03:08:27 +00001085 unsigned Original) {
1086 StackSlotToReg[StackSlot] = Original;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001087 SlotIndex Idx = LIS.getInstructionIndex(Spill);
Wei Mi9a16d652016-04-13 03:08:27 +00001088 VNInfo *OrigVNI = LIS.getInterval(Original).getVNInfoAt(Idx.getRegSlot());
1089 std::pair<int, VNInfo *> MIdx = std::make_pair(StackSlot, OrigVNI);
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001090 MergeableSpills[MIdx].insert(&Spill);
Wei Mi9a16d652016-04-13 03:08:27 +00001091}
1092
1093/// When a spill is removed, remove the spill from MergeableSpills map.
1094/// Return true if the spill is removed successfully.
1095///
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001096bool HoistSpillHelper::rmFromMergeableSpills(MachineInstr &Spill,
Wei Mi9a16d652016-04-13 03:08:27 +00001097 int StackSlot) {
1098 int Original = StackSlotToReg[StackSlot];
1099 if (!Original)
1100 return false;
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001101 SlotIndex Idx = LIS.getInstructionIndex(Spill);
Wei Mi9a16d652016-04-13 03:08:27 +00001102 VNInfo *OrigVNI = LIS.getInterval(Original).getVNInfoAt(Idx.getRegSlot());
1103 std::pair<int, VNInfo *> MIdx = std::make_pair(StackSlot, OrigVNI);
Duncan P. N. Exon Smith91298732016-06-30 23:28:15 +00001104 return MergeableSpills[MIdx].erase(&Spill);
Wei Mi9a16d652016-04-13 03:08:27 +00001105}
1106
1107/// Check BB to see if it is a possible target BB to place a hoisted spill,
1108/// i.e., there should be a living sibling of OrigReg at the insert point.
1109///
1110bool HoistSpillHelper::isSpillCandBB(unsigned OrigReg, VNInfo &OrigVNI,
1111 MachineBasicBlock &BB, unsigned &LiveReg) {
1112 SlotIndex Idx;
Wei Mif3c8f532016-05-23 19:39:19 +00001113 LiveInterval &OrigLI = LIS.getInterval(OrigReg);
1114 MachineBasicBlock::iterator MI = IPA.getLastInsertPointIter(OrigLI, BB);
Wei Mi9a16d652016-04-13 03:08:27 +00001115 if (MI != BB.end())
1116 Idx = LIS.getInstructionIndex(*MI);
1117 else
1118 Idx = LIS.getMBBEndIdx(&BB).getPrevSlot();
1119 SmallSetVector<unsigned, 16> &Siblings = Virt2SiblingsMap[OrigReg];
1120 assert((LIS.getInterval(OrigReg)).getVNInfoAt(Idx) == &OrigVNI &&
1121 "Unexpected VNI");
1122
1123 for (auto const SibReg : Siblings) {
1124 LiveInterval &LI = LIS.getInterval(SibReg);
1125 VNInfo *VNI = LI.getVNInfoAt(Idx);
1126 if (VNI) {
1127 LiveReg = SibReg;
1128 return true;
1129 }
1130 }
1131 return false;
1132}
1133
Eric Christopher75d661a2016-05-04 21:45:36 +00001134/// Remove redundant spills in the same BB. Save those redundant spills in
Wei Mi9a16d652016-04-13 03:08:27 +00001135/// SpillsToRm, and save the spill to keep and its BB in SpillBBToSpill map.
1136///
1137void HoistSpillHelper::rmRedundantSpills(
1138 SmallPtrSet<MachineInstr *, 16> &Spills,
1139 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1140 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill) {
1141 // For each spill saw, check SpillBBToSpill[] and see if its BB already has
1142 // another spill inside. If a BB contains more than one spill, only keep the
1143 // earlier spill with smaller SlotIndex.
1144 for (const auto CurrentSpill : Spills) {
1145 MachineBasicBlock *Block = CurrentSpill->getParent();
Bjorn Pettersson3c6ce732017-01-04 09:41:56 +00001146 MachineDomTreeNode *Node = MDT.getBase().getNode(Block);
Wei Mi9a16d652016-04-13 03:08:27 +00001147 MachineInstr *PrevSpill = SpillBBToSpill[Node];
1148 if (PrevSpill) {
1149 SlotIndex PIdx = LIS.getInstructionIndex(*PrevSpill);
1150 SlotIndex CIdx = LIS.getInstructionIndex(*CurrentSpill);
1151 MachineInstr *SpillToRm = (CIdx > PIdx) ? CurrentSpill : PrevSpill;
1152 MachineInstr *SpillToKeep = (CIdx > PIdx) ? PrevSpill : CurrentSpill;
1153 SpillsToRm.push_back(SpillToRm);
Bjorn Pettersson3c6ce732017-01-04 09:41:56 +00001154 SpillBBToSpill[MDT.getBase().getNode(Block)] = SpillToKeep;
Wei Mi9a16d652016-04-13 03:08:27 +00001155 } else {
Bjorn Pettersson3c6ce732017-01-04 09:41:56 +00001156 SpillBBToSpill[MDT.getBase().getNode(Block)] = CurrentSpill;
Wei Mi9a16d652016-04-13 03:08:27 +00001157 }
1158 }
1159 for (const auto SpillToRm : SpillsToRm)
1160 Spills.erase(SpillToRm);
1161}
1162
1163/// Starting from \p Root find a top-down traversal order of the dominator
1164/// tree to visit all basic blocks containing the elements of \p Spills.
1165/// Redundant spills will be found and put into \p SpillsToRm at the same
1166/// time. \p SpillBBToSpill will be populated as part of the process and
1167/// maps a basic block to the first store occurring in the basic block.
1168/// \post SpillsToRm.union(Spills\@post) == Spills\@pre
1169///
1170void HoistSpillHelper::getVisitOrders(
1171 MachineBasicBlock *Root, SmallPtrSet<MachineInstr *, 16> &Spills,
1172 SmallVectorImpl<MachineDomTreeNode *> &Orders,
1173 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1174 DenseMap<MachineDomTreeNode *, unsigned> &SpillsToKeep,
1175 DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill) {
1176 // The set contains all the possible BB nodes to which we may hoist
1177 // original spills.
1178 SmallPtrSet<MachineDomTreeNode *, 8> WorkSet;
1179 // Save the BB nodes on the path from the first BB node containing
Eric Christopher75d661a2016-05-04 21:45:36 +00001180 // non-redundant spill to the Root node.
Wei Mi9a16d652016-04-13 03:08:27 +00001181 SmallPtrSet<MachineDomTreeNode *, 8> NodesOnPath;
1182 // All the spills to be hoisted must originate from a single def instruction
1183 // to the OrigReg. It means the def instruction should dominate all the spills
1184 // to be hoisted. We choose the BB where the def instruction is located as
1185 // the Root.
1186 MachineDomTreeNode *RootIDomNode = MDT[Root]->getIDom();
1187 // For every node on the dominator tree with spill, walk up on the dominator
1188 // tree towards the Root node until it is reached. If there is other node
1189 // containing spill in the middle of the path, the previous spill saw will
Eric Christopher75d661a2016-05-04 21:45:36 +00001190 // be redundant and the node containing it will be removed. All the nodes on
1191 // the path starting from the first node with non-redundant spill to the Root
Wei Mi9a16d652016-04-13 03:08:27 +00001192 // node will be added to the WorkSet, which will contain all the possible
1193 // locations where spills may be hoisted to after the loop below is done.
1194 for (const auto Spill : Spills) {
1195 MachineBasicBlock *Block = Spill->getParent();
1196 MachineDomTreeNode *Node = MDT[Block];
1197 MachineInstr *SpillToRm = nullptr;
1198 while (Node != RootIDomNode) {
1199 // If Node dominates Block, and it already contains a spill, the spill in
Eric Christopher75d661a2016-05-04 21:45:36 +00001200 // Block will be redundant.
Wei Mi9a16d652016-04-13 03:08:27 +00001201 if (Node != MDT[Block] && SpillBBToSpill[Node]) {
1202 SpillToRm = SpillBBToSpill[MDT[Block]];
1203 break;
1204 /// If we see the Node already in WorkSet, the path from the Node to
1205 /// the Root node must already be traversed by another spill.
1206 /// Then no need to repeat.
1207 } else if (WorkSet.count(Node)) {
1208 break;
1209 } else {
1210 NodesOnPath.insert(Node);
1211 }
1212 Node = Node->getIDom();
1213 }
1214 if (SpillToRm) {
1215 SpillsToRm.push_back(SpillToRm);
1216 } else {
1217 // Add a BB containing the original spills to SpillsToKeep -- i.e.,
1218 // set the initial status before hoisting start. The value of BBs
1219 // containing original spills is set to 0, in order to descriminate
1220 // with BBs containing hoisted spills which will be inserted to
1221 // SpillsToKeep later during hoisting.
1222 SpillsToKeep[MDT[Block]] = 0;
1223 WorkSet.insert(NodesOnPath.begin(), NodesOnPath.end());
1224 }
1225 NodesOnPath.clear();
1226 }
1227
1228 // Sort the nodes in WorkSet in top-down order and save the nodes
1229 // in Orders. Orders will be used for hoisting in runHoistSpills.
1230 unsigned idx = 0;
Bjorn Pettersson3c6ce732017-01-04 09:41:56 +00001231 Orders.push_back(MDT.getBase().getNode(Root));
Wei Mi9a16d652016-04-13 03:08:27 +00001232 do {
1233 MachineDomTreeNode *Node = Orders[idx++];
1234 const std::vector<MachineDomTreeNode *> &Children = Node->getChildren();
1235 unsigned NumChildren = Children.size();
1236 for (unsigned i = 0; i != NumChildren; ++i) {
1237 MachineDomTreeNode *Child = Children[i];
1238 if (WorkSet.count(Child))
1239 Orders.push_back(Child);
1240 }
1241 } while (idx != Orders.size());
1242 assert(Orders.size() == WorkSet.size() &&
1243 "Orders have different size with WorkSet");
1244
1245#ifndef NDEBUG
1246 DEBUG(dbgs() << "Orders size is " << Orders.size() << "\n");
1247 SmallVector<MachineDomTreeNode *, 32>::reverse_iterator RIt = Orders.rbegin();
1248 for (; RIt != Orders.rend(); RIt++)
1249 DEBUG(dbgs() << "BB" << (*RIt)->getBlock()->getNumber() << ",");
1250 DEBUG(dbgs() << "\n");
1251#endif
1252}
1253
1254/// Try to hoist spills according to BB hotness. The spills to removed will
1255/// be saved in \p SpillsToRm. The spills to be inserted will be saved in
1256/// \p SpillsToIns.
1257///
1258void HoistSpillHelper::runHoistSpills(
1259 unsigned OrigReg, VNInfo &OrigVNI, SmallPtrSet<MachineInstr *, 16> &Spills,
1260 SmallVectorImpl<MachineInstr *> &SpillsToRm,
1261 DenseMap<MachineBasicBlock *, unsigned> &SpillsToIns) {
1262 // Visit order of dominator tree nodes.
1263 SmallVector<MachineDomTreeNode *, 32> Orders;
1264 // SpillsToKeep contains all the nodes where spills are to be inserted
1265 // during hoisting. If the spill to be inserted is an original spill
1266 // (not a hoisted one), the value of the map entry is 0. If the spill
1267 // is a hoisted spill, the value of the map entry is the VReg to be used
1268 // as the source of the spill.
1269 DenseMap<MachineDomTreeNode *, unsigned> SpillsToKeep;
1270 // Map from BB to the first spill inside of it.
1271 DenseMap<MachineDomTreeNode *, MachineInstr *> SpillBBToSpill;
1272
1273 rmRedundantSpills(Spills, SpillsToRm, SpillBBToSpill);
1274
1275 MachineBasicBlock *Root = LIS.getMBBFromIndex(OrigVNI.def);
1276 getVisitOrders(Root, Spills, Orders, SpillsToRm, SpillsToKeep,
1277 SpillBBToSpill);
1278
1279 // SpillsInSubTreeMap keeps the map from a dom tree node to a pair of
1280 // nodes set and the cost of all the spills inside those nodes.
1281 // The nodes set are the locations where spills are to be inserted
1282 // in the subtree of current node.
1283 typedef std::pair<SmallPtrSet<MachineDomTreeNode *, 16>, BlockFrequency>
1284 NodesCostPair;
1285 DenseMap<MachineDomTreeNode *, NodesCostPair> SpillsInSubTreeMap;
1286 // Iterate Orders set in reverse order, which will be a bottom-up order
1287 // in the dominator tree. Once we visit a dom tree node, we know its
1288 // children have already been visited and the spill locations in the
1289 // subtrees of all the children have been determined.
1290 SmallVector<MachineDomTreeNode *, 32>::reverse_iterator RIt = Orders.rbegin();
1291 for (; RIt != Orders.rend(); RIt++) {
1292 MachineBasicBlock *Block = (*RIt)->getBlock();
1293
1294 // If Block contains an original spill, simply continue.
1295 if (SpillsToKeep.find(*RIt) != SpillsToKeep.end() && !SpillsToKeep[*RIt]) {
1296 SpillsInSubTreeMap[*RIt].first.insert(*RIt);
1297 // SpillsInSubTreeMap[*RIt].second contains the cost of spill.
1298 SpillsInSubTreeMap[*RIt].second = MBFI.getBlockFreq(Block);
1299 continue;
1300 }
1301
1302 // Collect spills in subtree of current node (*RIt) to
1303 // SpillsInSubTreeMap[*RIt].first.
1304 const std::vector<MachineDomTreeNode *> &Children = (*RIt)->getChildren();
1305 unsigned NumChildren = Children.size();
1306 for (unsigned i = 0; i != NumChildren; ++i) {
1307 MachineDomTreeNode *Child = Children[i];
1308 if (SpillsInSubTreeMap.find(Child) == SpillsInSubTreeMap.end())
1309 continue;
1310 // The stmt "SpillsInSubTree = SpillsInSubTreeMap[*RIt].first" below
1311 // should be placed before getting the begin and end iterators of
1312 // SpillsInSubTreeMap[Child].first, or else the iterators may be
1313 // invalidated when SpillsInSubTreeMap[*RIt] is seen the first time
1314 // and the map grows and then the original buckets in the map are moved.
1315 SmallPtrSet<MachineDomTreeNode *, 16> &SpillsInSubTree =
1316 SpillsInSubTreeMap[*RIt].first;
1317 BlockFrequency &SubTreeCost = SpillsInSubTreeMap[*RIt].second;
1318 SubTreeCost += SpillsInSubTreeMap[Child].second;
1319 auto BI = SpillsInSubTreeMap[Child].first.begin();
1320 auto EI = SpillsInSubTreeMap[Child].first.end();
1321 SpillsInSubTree.insert(BI, EI);
1322 SpillsInSubTreeMap.erase(Child);
1323 }
1324
1325 SmallPtrSet<MachineDomTreeNode *, 16> &SpillsInSubTree =
1326 SpillsInSubTreeMap[*RIt].first;
1327 BlockFrequency &SubTreeCost = SpillsInSubTreeMap[*RIt].second;
1328 // No spills in subtree, simply continue.
1329 if (SpillsInSubTree.empty())
1330 continue;
1331
1332 // Check whether Block is a possible candidate to insert spill.
1333 unsigned LiveReg = 0;
1334 if (!isSpillCandBB(OrigReg, OrigVNI, *Block, LiveReg))
1335 continue;
1336
1337 // If there are multiple spills that could be merged, bias a little
1338 // to hoist the spill.
1339 BranchProbability MarginProb = (SpillsInSubTree.size() > 1)
1340 ? BranchProbability(9, 10)
1341 : BranchProbability(1, 1);
1342 if (SubTreeCost > MBFI.getBlockFreq(Block) * MarginProb) {
1343 // Hoist: Move spills to current Block.
1344 for (const auto SpillBB : SpillsInSubTree) {
1345 // When SpillBB is a BB contains original spill, insert the spill
1346 // to SpillsToRm.
1347 if (SpillsToKeep.find(SpillBB) != SpillsToKeep.end() &&
1348 !SpillsToKeep[SpillBB]) {
1349 MachineInstr *SpillToRm = SpillBBToSpill[SpillBB];
1350 SpillsToRm.push_back(SpillToRm);
1351 }
1352 // SpillBB will not contain spill anymore, remove it from SpillsToKeep.
1353 SpillsToKeep.erase(SpillBB);
1354 }
1355 // Current Block is the BB containing the new hoisted spill. Add it to
1356 // SpillsToKeep. LiveReg is the source of the new spill.
1357 SpillsToKeep[*RIt] = LiveReg;
1358 DEBUG({
1359 dbgs() << "spills in BB: ";
1360 for (const auto Rspill : SpillsInSubTree)
1361 dbgs() << Rspill->getBlock()->getNumber() << " ";
1362 dbgs() << "were promoted to BB" << (*RIt)->getBlock()->getNumber()
1363 << "\n";
1364 });
1365 SpillsInSubTree.clear();
1366 SpillsInSubTree.insert(*RIt);
1367 SubTreeCost = MBFI.getBlockFreq(Block);
1368 }
1369 }
1370 // For spills in SpillsToKeep with LiveReg set (i.e., not original spill),
1371 // save them to SpillsToIns.
1372 for (const auto Ent : SpillsToKeep) {
1373 if (Ent.second)
1374 SpillsToIns[Ent.first->getBlock()] = Ent.second;
1375 }
1376}
1377
Eric Christopher75d661a2016-05-04 21:45:36 +00001378/// For spills with equal values, remove redundant spills and hoist those left
Wei Mi9a16d652016-04-13 03:08:27 +00001379/// to less hot spots.
1380///
1381/// Spills with equal values will be collected into the same set in
1382/// MergeableSpills when spill is inserted. These equal spills are originated
Eric Christopher75d661a2016-05-04 21:45:36 +00001383/// from the same defining instruction and are dominated by the instruction.
1384/// Before hoisting all the equal spills, redundant spills inside in the same
1385/// BB are first marked to be deleted. Then starting from the spills left, walk
1386/// up on the dominator tree towards the Root node where the define instruction
Wei Mi9a16d652016-04-13 03:08:27 +00001387/// is located, mark the dominated spills to be deleted along the way and
1388/// collect the BB nodes on the path from non-dominated spills to the define
1389/// instruction into a WorkSet. The nodes in WorkSet are the candidate places
Eric Christopher75d661a2016-05-04 21:45:36 +00001390/// where we are considering to hoist the spills. We iterate the WorkSet in
1391/// bottom-up order, and for each node, we will decide whether to hoist spills
1392/// inside its subtree to that node. In this way, we can get benefit locally
1393/// even if hoisting all the equal spills to one cold place is impossible.
Wei Mi9a16d652016-04-13 03:08:27 +00001394///
Wei Mi963f2df2016-04-15 23:16:44 +00001395void HoistSpillHelper::hoistAllSpills() {
1396 SmallVector<unsigned, 4> NewVRegs;
1397 LiveRangeEdit Edit(nullptr, NewVRegs, MF, LIS, &VRM, this);
1398
Wei Mi9a16d652016-04-13 03:08:27 +00001399 // Save the mapping between stackslot and its original reg.
1400 DenseMap<int, unsigned> SlotToOrigReg;
1401 for (unsigned i = 0, e = MRI.getNumVirtRegs(); i != e; ++i) {
1402 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
1403 int Slot = VRM.getStackSlot(Reg);
1404 if (Slot != VirtRegMap::NO_STACK_SLOT)
1405 SlotToOrigReg[Slot] = VRM.getOriginal(Reg);
1406 unsigned Original = VRM.getPreSplitReg(Reg);
1407 if (!MRI.def_empty(Reg))
1408 Virt2SiblingsMap[Original].insert(Reg);
1409 }
1410
1411 // Each entry in MergeableSpills contains a spill set with equal values.
1412 for (auto &Ent : MergeableSpills) {
1413 int Slot = Ent.first.first;
1414 unsigned OrigReg = SlotToOrigReg[Slot];
Wei Mi8c4136b2016-05-11 22:37:43 +00001415 LiveInterval &OrigLI = LIS.getInterval(OrigReg);
Wei Mi9a16d652016-04-13 03:08:27 +00001416 VNInfo *OrigVNI = Ent.first.second;
1417 SmallPtrSet<MachineInstr *, 16> &EqValSpills = Ent.second;
1418 if (Ent.second.empty())
1419 continue;
1420
1421 DEBUG({
1422 dbgs() << "\nFor Slot" << Slot << " and VN" << OrigVNI->id << ":\n"
1423 << "Equal spills in BB: ";
1424 for (const auto spill : EqValSpills)
1425 dbgs() << spill->getParent()->getNumber() << " ";
1426 dbgs() << "\n";
1427 });
1428
1429 // SpillsToRm is the spill set to be removed from EqValSpills.
1430 SmallVector<MachineInstr *, 16> SpillsToRm;
1431 // SpillsToIns is the spill set to be newly inserted after hoisting.
1432 DenseMap<MachineBasicBlock *, unsigned> SpillsToIns;
1433
1434 runHoistSpills(OrigReg, *OrigVNI, EqValSpills, SpillsToRm, SpillsToIns);
1435
1436 DEBUG({
1437 dbgs() << "Finally inserted spills in BB: ";
1438 for (const auto Ispill : SpillsToIns)
1439 dbgs() << Ispill.first->getNumber() << " ";
1440 dbgs() << "\nFinally removed spills in BB: ";
1441 for (const auto Rspill : SpillsToRm)
1442 dbgs() << Rspill->getParent()->getNumber() << " ";
1443 dbgs() << "\n";
1444 });
1445
1446 // Stack live range update.
1447 LiveInterval &StackIntvl = LSS.getInterval(Slot);
Wei Mi8c4136b2016-05-11 22:37:43 +00001448 if (!SpillsToIns.empty() || !SpillsToRm.empty())
Wei Mi9a16d652016-04-13 03:08:27 +00001449 StackIntvl.MergeValueInAsValue(OrigLI, OrigVNI,
1450 StackIntvl.getValNumInfo(0));
Wei Mi9a16d652016-04-13 03:08:27 +00001451
1452 // Insert hoisted spills.
1453 for (auto const Insert : SpillsToIns) {
1454 MachineBasicBlock *BB = Insert.first;
1455 unsigned LiveReg = Insert.second;
Wei Mif3c8f532016-05-23 19:39:19 +00001456 MachineBasicBlock::iterator MI = IPA.getLastInsertPointIter(OrigLI, *BB);
Wei Mi9a16d652016-04-13 03:08:27 +00001457 TII.storeRegToStackSlot(*BB, MI, LiveReg, false, Slot,
1458 MRI.getRegClass(LiveReg), &TRI);
1459 LIS.InsertMachineInstrRangeInMaps(std::prev(MI), MI);
1460 ++NumSpills;
1461 }
1462
Eric Christopher75d661a2016-05-04 21:45:36 +00001463 // Remove redundant spills or change them to dead instructions.
Wei Mi9a16d652016-04-13 03:08:27 +00001464 NumSpills -= SpillsToRm.size();
1465 for (auto const RMEnt : SpillsToRm) {
1466 RMEnt->setDesc(TII.get(TargetOpcode::KILL));
1467 for (unsigned i = RMEnt->getNumOperands(); i; --i) {
1468 MachineOperand &MO = RMEnt->getOperand(i - 1);
1469 if (MO.isReg() && MO.isImplicit() && MO.isDef() && !MO.isDead())
1470 RMEnt->RemoveOperand(i - 1);
1471 }
1472 }
Wei Mic0223702016-07-08 21:08:09 +00001473 Edit.eliminateDeadDefs(SpillsToRm, None, AA);
Wei Mi9a16d652016-04-13 03:08:27 +00001474 }
1475}
Wei Mi963f2df2016-04-15 23:16:44 +00001476
1477/// For VirtReg clone, the \p New register should have the same physreg or
1478/// stackslot as the \p old register.
1479void HoistSpillHelper::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
1480 if (VRM.hasPhys(Old))
1481 VRM.assignVirt2Phys(New, VRM.getPhys(Old));
1482 else if (VRM.getStackSlot(Old) != VirtRegMap::NO_STACK_SLOT)
1483 VRM.assignVirt2StackSlot(New, VRM.getStackSlot(Old));
1484 else
1485 llvm_unreachable("VReg should be assigned either physreg or stackslot");
1486}