Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 1 | //===-------- 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 Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 15 | #include "Spiller.h" |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/MapVector.h" |
Benjamin Kramer | bc6666b | 2013-05-23 15:42:57 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SetVector.h" |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/Statistic.h" |
Jakob Stoklund Olesen | 278bf02 | 2011-09-09 18:11:41 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/TinyPtrVector.h" |
Jakob Stoklund Olesen | 868dd4e | 2010-11-10 23:55:56 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/AliasAnalysis.h" |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Pete Cooper | 3ca96f9 | 2012-04-02 22:44:18 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/LiveRangeEdit.h" |
Jakob Stoklund Olesen | e2c340c | 2010-10-26 00:11:35 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/LiveStackAnalysis.h" |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
Manman Ren | c935560 | 2014-03-21 21:46:24 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineBranchProbabilityInfo.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineDominators.h" |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 28 | #include "llvm/CodeGen/MachineFunction.h" |
David Blaikie | 0252265b | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineInstrBundle.h" |
Jakob Stoklund Olesen | a0d5ec1 | 2011-03-15 21:13:25 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Jakob Stoklund Olesen | 26c9d70 | 2012-11-28 19:13:06 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/VirtRegMap.h" |
Reid Kleckner | 2886580 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 34 | #include "llvm/IR/DebugInfo.h" |
Jakob Stoklund Olesen | bceb9e5 | 2011-09-15 21:06:00 +0000 | [diff] [blame] | 35 | #include "llvm/Support/CommandLine.h" |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Debug.h" |
| 37 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 38 | #include "llvm/Target/TargetInstrInfo.h" |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 39 | |
| 40 | using namespace llvm; |
| 41 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 42 | #define DEBUG_TYPE "regalloc" |
| 43 | |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 44 | STATISTIC(NumSpilledRanges, "Number of spilled live ranges"); |
Jakob Stoklund Olesen | 37eb696 | 2011-09-15 17:54:28 +0000 | [diff] [blame] | 45 | STATISTIC(NumSnippets, "Number of spilled snippets"); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 46 | STATISTIC(NumSpills, "Number of spills inserted"); |
Jakob Stoklund Olesen | 37eb696 | 2011-09-15 17:54:28 +0000 | [diff] [blame] | 47 | STATISTIC(NumSpillsRemoved, "Number of spills removed"); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 48 | STATISTIC(NumReloads, "Number of reloads inserted"); |
Jakob Stoklund Olesen | 37eb696 | 2011-09-15 17:54:28 +0000 | [diff] [blame] | 49 | STATISTIC(NumReloadsRemoved, "Number of reloads removed"); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 50 | STATISTIC(NumFolded, "Number of folded stack accesses"); |
| 51 | STATISTIC(NumFoldedLoads, "Number of folded loads"); |
| 52 | STATISTIC(NumRemats, "Number of rematerialized defs for spilling"); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 53 | |
Jakob Stoklund Olesen | bceb9e5 | 2011-09-15 21:06:00 +0000 | [diff] [blame] | 54 | static cl::opt<bool> DisableHoisting("disable-spill-hoist", cl::Hidden, |
| 55 | cl::desc("Disable inline spill hoisting")); |
| 56 | |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 57 | namespace { |
Wei Mi | 963f2df | 2016-04-15 23:16:44 +0000 | [diff] [blame^] | 58 | class HoistSpillHelper : private LiveRangeEdit::Delegate { |
| 59 | MachineFunction &MF; |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 60 | LiveIntervals &LIS; |
| 61 | LiveStacks &LSS; |
| 62 | AliasAnalysis *AA; |
| 63 | MachineDominatorTree &MDT; |
| 64 | MachineLoopInfo &Loops; |
| 65 | VirtRegMap &VRM; |
| 66 | MachineFrameInfo &MFI; |
| 67 | MachineRegisterInfo &MRI; |
| 68 | const TargetInstrInfo &TII; |
| 69 | const TargetRegisterInfo &TRI; |
| 70 | const MachineBlockFrequencyInfo &MBFI; |
| 71 | |
| 72 | // Map from StackSlot to its original register. |
| 73 | DenseMap<int, unsigned> StackSlotToReg; |
| 74 | // Map from pair of (StackSlot and Original VNI) to a set of spills which |
| 75 | // have the same stackslot and have equal values defined by Original VNI. |
| 76 | // These spills are mergeable and are hoist candiates. |
| 77 | typedef MapVector<std::pair<int, VNInfo *>, SmallPtrSet<MachineInstr *, 16>> |
| 78 | MergeableSpillsMap; |
| 79 | MergeableSpillsMap MergeableSpills; |
| 80 | |
| 81 | /// This is the map from original register to a set containing all its |
| 82 | /// siblings. To hoist a spill to another BB, we need to find out a live |
| 83 | /// sibling there and use it as the source of the new spill. |
| 84 | DenseMap<unsigned, SmallSetVector<unsigned, 16>> Virt2SiblingsMap; |
| 85 | |
| 86 | bool isSpillCandBB(unsigned OrigReg, VNInfo &OrigVNI, MachineBasicBlock &BB, |
| 87 | unsigned &LiveReg); |
| 88 | |
| 89 | void rmRedundantSpills( |
| 90 | SmallPtrSet<MachineInstr *, 16> &Spills, |
| 91 | SmallVectorImpl<MachineInstr *> &SpillsToRm, |
| 92 | DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill); |
| 93 | |
| 94 | void getVisitOrders( |
| 95 | MachineBasicBlock *Root, SmallPtrSet<MachineInstr *, 16> &Spills, |
| 96 | SmallVectorImpl<MachineDomTreeNode *> &Orders, |
| 97 | SmallVectorImpl<MachineInstr *> &SpillsToRm, |
| 98 | DenseMap<MachineDomTreeNode *, unsigned> &SpillsToKeep, |
| 99 | DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill); |
| 100 | |
| 101 | void runHoistSpills(unsigned OrigReg, VNInfo &OrigVNI, |
| 102 | SmallPtrSet<MachineInstr *, 16> &Spills, |
| 103 | SmallVectorImpl<MachineInstr *> &SpillsToRm, |
| 104 | DenseMap<MachineBasicBlock *, unsigned> &SpillsToIns); |
| 105 | |
| 106 | public: |
| 107 | HoistSpillHelper(MachineFunctionPass &pass, MachineFunction &mf, |
| 108 | VirtRegMap &vrm) |
Wei Mi | 963f2df | 2016-04-15 23:16:44 +0000 | [diff] [blame^] | 109 | : MF(mf), LIS(pass.getAnalysis<LiveIntervals>()), |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 110 | LSS(pass.getAnalysis<LiveStacks>()), |
| 111 | AA(&pass.getAnalysis<AAResultsWrapperPass>().getAAResults()), |
| 112 | MDT(pass.getAnalysis<MachineDominatorTree>()), |
| 113 | Loops(pass.getAnalysis<MachineLoopInfo>()), VRM(vrm), |
| 114 | MFI(*mf.getFrameInfo()), MRI(mf.getRegInfo()), |
| 115 | TII(*mf.getSubtarget().getInstrInfo()), |
| 116 | TRI(*mf.getSubtarget().getRegisterInfo()), |
| 117 | MBFI(pass.getAnalysis<MachineBlockFrequencyInfo>()) {} |
| 118 | |
| 119 | void addToMergeableSpills(MachineInstr *Spill, int StackSlot, |
| 120 | unsigned Original); |
| 121 | bool rmFromMergeableSpills(MachineInstr *Spill, int StackSlot); |
Wei Mi | 963f2df | 2016-04-15 23:16:44 +0000 | [diff] [blame^] | 122 | void hoistAllSpills(); |
| 123 | void LRE_DidCloneVirtReg(unsigned, unsigned) override; |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 124 | }; |
| 125 | |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 126 | class InlineSpiller : public Spiller { |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 127 | MachineFunction &MF; |
| 128 | LiveIntervals &LIS; |
| 129 | LiveStacks &LSS; |
| 130 | AliasAnalysis *AA; |
Jakob Stoklund Olesen | a0d5ec1 | 2011-03-15 21:13:25 +0000 | [diff] [blame] | 131 | MachineDominatorTree &MDT; |
| 132 | MachineLoopInfo &Loops; |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 133 | VirtRegMap &VRM; |
| 134 | MachineFrameInfo &MFI; |
| 135 | MachineRegisterInfo &MRI; |
| 136 | const TargetInstrInfo &TII; |
| 137 | const TargetRegisterInfo &TRI; |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 138 | const MachineBlockFrequencyInfo &MBFI; |
Jakob Stoklund Olesen | bde96ad | 2010-06-30 23:03:52 +0000 | [diff] [blame] | 139 | |
| 140 | // Variables that are valid during spill(), but used by multiple methods. |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 141 | LiveRangeEdit *Edit; |
Jakob Stoklund Olesen | e466345 | 2011-03-26 22:16:41 +0000 | [diff] [blame] | 142 | LiveInterval *StackInt; |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 143 | int StackSlot; |
Jakob Stoklund Olesen | a0d5ec1 | 2011-03-15 21:13:25 +0000 | [diff] [blame] | 144 | unsigned Original; |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 145 | |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 146 | // All registers to spill to StackSlot, including the main register. |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 147 | SmallVector<unsigned, 8> RegsToSpill; |
| 148 | |
| 149 | // All COPY instructions to/from snippets. |
| 150 | // They are ignored since both operands refer to the same stack slot. |
| 151 | SmallPtrSet<MachineInstr*, 8> SnippetCopies; |
| 152 | |
Jakob Stoklund Olesen | 2edaa2f | 2010-10-20 22:00:51 +0000 | [diff] [blame] | 153 | // Values that failed to remat at some point. |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 154 | SmallPtrSet<VNInfo*, 8> UsedValues; |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 155 | |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 156 | // Dead defs generated during spilling. |
| 157 | SmallVector<MachineInstr*, 8> DeadDefs; |
Jakob Stoklund Olesen | a0d5ec1 | 2011-03-15 21:13:25 +0000 | [diff] [blame] | 158 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 159 | // Object records spills information and does the hoisting. |
| 160 | HoistSpillHelper HSpiller; |
| 161 | |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 162 | ~InlineSpiller() override {} |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 163 | |
| 164 | public: |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 165 | InlineSpiller(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm) |
| 166 | : MF(mf), LIS(pass.getAnalysis<LiveIntervals>()), |
| 167 | LSS(pass.getAnalysis<LiveStacks>()), |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 168 | AA(&pass.getAnalysis<AAResultsWrapperPass>().getAAResults()), |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 169 | MDT(pass.getAnalysis<MachineDominatorTree>()), |
| 170 | Loops(pass.getAnalysis<MachineLoopInfo>()), VRM(vrm), |
| 171 | MFI(*mf.getFrameInfo()), MRI(mf.getRegInfo()), |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 172 | TII(*mf.getSubtarget().getInstrInfo()), |
| 173 | TRI(*mf.getSubtarget().getRegisterInfo()), |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 174 | MBFI(pass.getAnalysis<MachineBlockFrequencyInfo>()), |
| 175 | HSpiller(pass, mf, vrm) {} |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 176 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 177 | void spill(LiveRangeEdit &) override; |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 178 | void postOptimization() override; |
Jakob Stoklund Olesen | 72911e4 | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 179 | |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 180 | private: |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 181 | bool isSnippet(const LiveInterval &SnipLI); |
| 182 | void collectRegsToSpill(); |
| 183 | |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 184 | bool isRegToSpill(unsigned Reg) { |
| 185 | return std::find(RegsToSpill.begin(), |
| 186 | RegsToSpill.end(), Reg) != RegsToSpill.end(); |
| 187 | } |
| 188 | |
| 189 | bool isSibling(unsigned Reg); |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 190 | bool hoistSpillInsideBB(LiveInterval &SpillLI, MachineInstr &CopyMI); |
Jakob Stoklund Olesen | 3948864 | 2011-03-20 05:44:55 +0000 | [diff] [blame] | 191 | void eliminateRedundantSpills(LiveInterval &LI, VNInfo *VNI); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 192 | |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 193 | void markValueUsed(LiveInterval*, VNInfo*); |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 194 | bool reMaterializeFor(LiveInterval &, MachineInstr &MI); |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 195 | void reMaterializeAll(); |
| 196 | |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 197 | bool coalesceStackAccess(MachineInstr *MI, unsigned Reg); |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 198 | bool foldMemoryOperand(ArrayRef<std::pair<MachineInstr*, unsigned> >, |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 199 | MachineInstr *LoadMI = nullptr); |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 200 | void insertReload(unsigned VReg, SlotIndex, MachineBasicBlock::iterator MI); |
| 201 | void insertSpill(unsigned VReg, bool isKill, MachineBasicBlock::iterator MI); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 202 | |
| 203 | void spillAroundUses(unsigned Reg); |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 204 | void spillAll(); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 205 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 206 | } |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 207 | |
| 208 | namespace llvm { |
Lang Hames | cdd9077 | 2014-11-06 19:12:38 +0000 | [diff] [blame] | 209 | |
| 210 | Spiller::~Spiller() { } |
| 211 | void Spiller::anchor() { } |
| 212 | |
Jakob Stoklund Olesen | 0fef9dd | 2010-07-20 23:50:15 +0000 | [diff] [blame] | 213 | Spiller *createInlineSpiller(MachineFunctionPass &pass, |
| 214 | MachineFunction &mf, |
| 215 | VirtRegMap &vrm) { |
| 216 | return new InlineSpiller(pass, mf, vrm); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 217 | } |
Lang Hames | cdd9077 | 2014-11-06 19:12:38 +0000 | [diff] [blame] | 218 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 219 | } |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 220 | |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 221 | //===----------------------------------------------------------------------===// |
| 222 | // Snippets |
| 223 | //===----------------------------------------------------------------------===// |
| 224 | |
| 225 | // When spilling a virtual register, we also spill any snippets it is connected |
| 226 | // to. The snippets are small live ranges that only have a single real use, |
| 227 | // leftovers from live range splitting. Spilling them enables memory operand |
| 228 | // folding or tightens the live range around the single use. |
| 229 | // |
| 230 | // This minimizes register pressure and maximizes the store-to-load distance for |
| 231 | // spill slots which can be important in tight loops. |
| 232 | |
| 233 | /// isFullCopyOf - If MI is a COPY to or from Reg, return the other register, |
| 234 | /// otherwise return 0. |
| 235 | static unsigned isFullCopyOf(const MachineInstr *MI, unsigned Reg) { |
Rafael Espindola | 070f96c | 2011-06-30 21:15:52 +0000 | [diff] [blame] | 236 | if (!MI->isFullCopy()) |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 237 | return 0; |
| 238 | if (MI->getOperand(0).getReg() == Reg) |
| 239 | return MI->getOperand(1).getReg(); |
| 240 | if (MI->getOperand(1).getReg() == Reg) |
| 241 | return MI->getOperand(0).getReg(); |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | /// isSnippet - Identify if a live interval is a snippet that should be spilled. |
| 246 | /// It is assumed that SnipLI is a virtual register with the same original as |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 247 | /// Edit->getReg(). |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 248 | bool InlineSpiller::isSnippet(const LiveInterval &SnipLI) { |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 249 | unsigned Reg = Edit->getReg(); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 250 | |
| 251 | // A snippet is a tiny live range with only a single instruction using it |
| 252 | // besides copies to/from Reg or spills/fills. We accept: |
| 253 | // |
| 254 | // %snip = COPY %Reg / FILL fi# |
| 255 | // %snip = USE %snip |
| 256 | // %Reg = COPY %snip / SPILL %snip, fi# |
| 257 | // |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 258 | if (SnipLI.getNumValNums() > 2 || !LIS.intervalIsInOneMBB(SnipLI)) |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 259 | return false; |
| 260 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 261 | MachineInstr *UseMI = nullptr; |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 262 | |
| 263 | // Check that all uses satisfy our criteria. |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 264 | for (MachineRegisterInfo::reg_instr_nodbg_iterator |
| 265 | RI = MRI.reg_instr_nodbg_begin(SnipLI.reg), |
| 266 | E = MRI.reg_instr_nodbg_end(); RI != E; ) { |
| 267 | MachineInstr *MI = &*(RI++); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 268 | |
| 269 | // Allow copies to/from Reg. |
| 270 | if (isFullCopyOf(MI, Reg)) |
| 271 | continue; |
| 272 | |
| 273 | // Allow stack slot loads. |
| 274 | int FI; |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 275 | if (SnipLI.reg == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot) |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 276 | continue; |
| 277 | |
| 278 | // Allow stack slot stores. |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 279 | if (SnipLI.reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot) |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 280 | continue; |
| 281 | |
| 282 | // Allow a single additional instruction. |
| 283 | if (UseMI && MI != UseMI) |
| 284 | return false; |
| 285 | UseMI = MI; |
| 286 | } |
| 287 | return true; |
| 288 | } |
| 289 | |
| 290 | /// collectRegsToSpill - Collect live range snippets that only have a single |
| 291 | /// real use. |
| 292 | void InlineSpiller::collectRegsToSpill() { |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 293 | unsigned Reg = Edit->getReg(); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 294 | |
| 295 | // Main register always spills. |
| 296 | RegsToSpill.assign(1, Reg); |
| 297 | SnippetCopies.clear(); |
| 298 | |
| 299 | // Snippets all have the same original, so there can't be any for an original |
| 300 | // register. |
Jakob Stoklund Olesen | a0d5ec1 | 2011-03-15 21:13:25 +0000 | [diff] [blame] | 301 | if (Original == Reg) |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 302 | return; |
| 303 | |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 304 | for (MachineRegisterInfo::reg_instr_iterator |
| 305 | RI = MRI.reg_instr_begin(Reg), E = MRI.reg_instr_end(); RI != E; ) { |
| 306 | MachineInstr *MI = &*(RI++); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 307 | unsigned SnipReg = isFullCopyOf(MI, Reg); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 308 | if (!isSibling(SnipReg)) |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 309 | continue; |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 310 | LiveInterval &SnipLI = LIS.getInterval(SnipReg); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 311 | if (!isSnippet(SnipLI)) |
| 312 | continue; |
| 313 | SnippetCopies.insert(MI); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 314 | if (isRegToSpill(SnipReg)) |
| 315 | continue; |
| 316 | RegsToSpill.push_back(SnipReg); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 317 | DEBUG(dbgs() << "\talso spill snippet " << SnipLI << '\n'); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 318 | ++NumSnippets; |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 319 | } |
| 320 | } |
| 321 | |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 322 | bool InlineSpiller::isSibling(unsigned Reg) { |
| 323 | return TargetRegisterInfo::isVirtualRegister(Reg) && |
| 324 | VRM.getOriginal(Reg) == Original; |
| 325 | } |
| 326 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 327 | /// It is beneficial to spill to earlier place in the same BB in case |
| 328 | /// as follows: |
| 329 | /// There is an alternative def earlier in the same MBB. |
| 330 | /// Hoist the spill as far as possible in SpillMBB. This can ease |
| 331 | /// register pressure: |
Hans Wennborg | 5a7723c | 2016-04-08 15:17:43 +0000 | [diff] [blame] | 332 | /// |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 333 | /// x = def |
| 334 | /// y = use x |
| 335 | /// s = copy x |
Hans Wennborg | 5a7723c | 2016-04-08 15:17:43 +0000 | [diff] [blame] | 336 | /// |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 337 | /// Hoisting the spill of s to immediately after the def removes the |
| 338 | /// interference between x and y: |
Hans Wennborg | 5a7723c | 2016-04-08 15:17:43 +0000 | [diff] [blame] | 339 | /// |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 340 | /// x = def |
| 341 | /// spill x |
| 342 | /// y = use x<kill> |
Hans Wennborg | 5a7723c | 2016-04-08 15:17:43 +0000 | [diff] [blame] | 343 | /// |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 344 | /// This hoist only helps when the copy kills its source. |
Hans Wennborg | 5a7723c | 2016-04-08 15:17:43 +0000 | [diff] [blame] | 345 | /// |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 346 | bool InlineSpiller::hoistSpillInsideBB(LiveInterval &SpillLI, |
| 347 | MachineInstr &CopyMI) { |
Hans Wennborg | 5a7723c | 2016-04-08 15:17:43 +0000 | [diff] [blame] | 348 | SlotIndex Idx = LIS.getInstructionIndex(CopyMI); |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 349 | #ifndef NDEBUG |
Hans Wennborg | 5a7723c | 2016-04-08 15:17:43 +0000 | [diff] [blame] | 350 | VNInfo *VNI = SpillLI.getVNInfoAt(Idx.getRegSlot()); |
| 351 | assert(VNI && VNI->def == Idx.getRegSlot() && "Not defined by copy"); |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 352 | #endif |
Wei Mi | fb5252c | 2016-04-04 17:45:03 +0000 | [diff] [blame] | 353 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 354 | unsigned SrcReg = CopyMI.getOperand(1).getReg(); |
| 355 | LiveInterval &SrcLI = LIS.getInterval(SrcReg); |
| 356 | VNInfo *SrcVNI = SrcLI.getVNInfoAt(Idx); |
| 357 | LiveQueryResult SrcQ = SrcLI.Query(Idx); |
| 358 | MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(SrcVNI->def); |
| 359 | if (DefMBB != CopyMI.getParent() || !SrcQ.isKill()) |
Hans Wennborg | 5a7723c | 2016-04-08 15:17:43 +0000 | [diff] [blame] | 360 | return false; |
| 361 | |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 362 | // Conservatively extend the stack slot range to the range of the original |
| 363 | // value. We may be able to do better with stack slot coloring by being more |
| 364 | // careful here. |
Jakob Stoklund Olesen | e466345 | 2011-03-26 22:16:41 +0000 | [diff] [blame] | 365 | assert(StackInt && "No stack slot assigned yet."); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 366 | LiveInterval &OrigLI = LIS.getInterval(Original); |
| 367 | VNInfo *OrigVNI = OrigLI.getVNInfoAt(Idx); |
Jakob Stoklund Olesen | e466345 | 2011-03-26 22:16:41 +0000 | [diff] [blame] | 368 | StackInt->MergeValueInAsValue(OrigLI, OrigVNI, StackInt->getValNumInfo(0)); |
Jakob Stoklund Olesen | 8698507 | 2011-03-19 23:02:47 +0000 | [diff] [blame] | 369 | DEBUG(dbgs() << "\tmerged orig valno " << OrigVNI->id << ": " |
Jakob Stoklund Olesen | e466345 | 2011-03-26 22:16:41 +0000 | [diff] [blame] | 370 | << *StackInt << '\n'); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 371 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 372 | // We are going to spill SrcVNI immediately after its def, so clear out |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 373 | // any later spills of the same value. |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 374 | eliminateRedundantSpills(SrcLI, SrcVNI); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 375 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 376 | MachineBasicBlock *MBB = LIS.getMBBFromIndex(SrcVNI->def); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 377 | MachineBasicBlock::iterator MII; |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 378 | if (SrcVNI->isPHIDef()) |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 379 | MII = MBB->SkipPHIsAndLabels(MBB->begin()); |
| 380 | else { |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 381 | MachineInstr *DefMI = LIS.getInstructionFromIndex(SrcVNI->def); |
Jakob Stoklund Olesen | ec9b4a6 | 2011-04-30 06:42:21 +0000 | [diff] [blame] | 382 | assert(DefMI && "Defining instruction disappeared"); |
| 383 | MII = DefMI; |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 384 | ++MII; |
| 385 | } |
| 386 | // Insert spill without kill flag immediately after def. |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 387 | TII.storeRegToStackSlot(*MBB, MII, SrcReg, false, StackSlot, |
| 388 | MRI.getRegClass(SrcReg), &TRI); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 389 | --MII; // Point to store instruction. |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 390 | LIS.InsertMachineInstrInMaps(*MII); |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 391 | DEBUG(dbgs() << "\thoisted: " << SrcVNI->def << '\t' << *MII); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 392 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 393 | HSpiller.addToMergeableSpills(&(*MII), StackSlot, Original); |
Jakob Stoklund Olesen | 37eb696 | 2011-09-15 17:54:28 +0000 | [diff] [blame] | 394 | ++NumSpills; |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 395 | return true; |
| 396 | } |
| 397 | |
Jakob Stoklund Olesen | 3948864 | 2011-03-20 05:44:55 +0000 | [diff] [blame] | 398 | /// eliminateRedundantSpills - SLI:VNI is known to be on the stack. Remove any |
| 399 | /// redundant spills of this value in SLI.reg and sibling copies. |
| 400 | void InlineSpiller::eliminateRedundantSpills(LiveInterval &SLI, VNInfo *VNI) { |
Jakob Stoklund Olesen | e55003f | 2011-03-20 05:44:58 +0000 | [diff] [blame] | 401 | assert(VNI && "Missing value"); |
Jakob Stoklund Olesen | 3948864 | 2011-03-20 05:44:55 +0000 | [diff] [blame] | 402 | SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList; |
| 403 | WorkList.push_back(std::make_pair(&SLI, VNI)); |
Jakob Stoklund Olesen | e466345 | 2011-03-26 22:16:41 +0000 | [diff] [blame] | 404 | assert(StackInt && "No stack slot assigned yet."); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 405 | |
| 406 | do { |
Jakob Stoklund Olesen | 3948864 | 2011-03-20 05:44:55 +0000 | [diff] [blame] | 407 | LiveInterval *LI; |
Benjamin Kramer | d6f1f84 | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 408 | std::tie(LI, VNI) = WorkList.pop_back_val(); |
Jakob Stoklund Olesen | 3948864 | 2011-03-20 05:44:55 +0000 | [diff] [blame] | 409 | unsigned Reg = LI->reg; |
Jakob Stoklund Olesen | ec9b4a6 | 2011-04-30 06:42:21 +0000 | [diff] [blame] | 410 | DEBUG(dbgs() << "Checking redundant spills for " |
| 411 | << VNI->id << '@' << VNI->def << " in " << *LI << '\n'); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 412 | |
| 413 | // Regs to spill are taken care of. |
| 414 | if (isRegToSpill(Reg)) |
| 415 | continue; |
| 416 | |
| 417 | // Add all of VNI's live range to StackInt. |
Jakob Stoklund Olesen | e466345 | 2011-03-26 22:16:41 +0000 | [diff] [blame] | 418 | StackInt->MergeValueInAsValue(*LI, VNI, StackInt->getValNumInfo(0)); |
| 419 | DEBUG(dbgs() << "Merged to stack int: " << *StackInt << '\n'); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 420 | |
| 421 | // Find all spills and copies of VNI. |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 422 | for (MachineRegisterInfo::use_instr_nodbg_iterator |
| 423 | UI = MRI.use_instr_nodbg_begin(Reg), E = MRI.use_instr_nodbg_end(); |
| 424 | UI != E; ) { |
| 425 | MachineInstr *MI = &*(UI++); |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 426 | if (!MI->isCopy() && !MI->mayStore()) |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 427 | continue; |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 428 | SlotIndex Idx = LIS.getInstructionIndex(*MI); |
Jakob Stoklund Olesen | 3948864 | 2011-03-20 05:44:55 +0000 | [diff] [blame] | 429 | if (LI->getVNInfoAt(Idx) != VNI) |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 430 | continue; |
| 431 | |
| 432 | // Follow sibling copies down the dominator tree. |
| 433 | if (unsigned DstReg = isFullCopyOf(MI, Reg)) { |
| 434 | if (isSibling(DstReg)) { |
| 435 | LiveInterval &DstLI = LIS.getInterval(DstReg); |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 436 | VNInfo *DstVNI = DstLI.getVNInfoAt(Idx.getRegSlot()); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 437 | assert(DstVNI && "Missing defined value"); |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 438 | assert(DstVNI->def == Idx.getRegSlot() && "Wrong copy def slot"); |
Jakob Stoklund Olesen | 3948864 | 2011-03-20 05:44:55 +0000 | [diff] [blame] | 439 | WorkList.push_back(std::make_pair(&DstLI, DstVNI)); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 440 | } |
| 441 | continue; |
| 442 | } |
| 443 | |
| 444 | // Erase spills. |
| 445 | int FI; |
| 446 | if (Reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot) { |
| 447 | DEBUG(dbgs() << "Redundant spill " << Idx << '\t' << *MI); |
| 448 | // eliminateDeadDefs won't normally remove stores, so switch opcode. |
| 449 | MI->setDesc(TII.get(TargetOpcode::KILL)); |
| 450 | DeadDefs.push_back(MI); |
Jakob Stoklund Olesen | 37eb696 | 2011-09-15 17:54:28 +0000 | [diff] [blame] | 451 | ++NumSpillsRemoved; |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 452 | if (HSpiller.rmFromMergeableSpills(MI, StackSlot)) |
| 453 | --NumSpills; |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 454 | } |
| 455 | } |
| 456 | } while (!WorkList.empty()); |
| 457 | } |
| 458 | |
Jakob Stoklund Olesen | 2edaa2f | 2010-10-20 22:00:51 +0000 | [diff] [blame] | 459 | |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 460 | //===----------------------------------------------------------------------===// |
| 461 | // Rematerialization |
| 462 | //===----------------------------------------------------------------------===// |
| 463 | |
| 464 | /// markValueUsed - Remember that VNI failed to rematerialize, so its defining |
| 465 | /// instruction cannot be eliminated. See through snippet copies |
| 466 | void InlineSpiller::markValueUsed(LiveInterval *LI, VNInfo *VNI) { |
| 467 | SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList; |
| 468 | WorkList.push_back(std::make_pair(LI, VNI)); |
| 469 | do { |
Benjamin Kramer | d6f1f84 | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 470 | std::tie(LI, VNI) = WorkList.pop_back_val(); |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 471 | if (!UsedValues.insert(VNI).second) |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 472 | continue; |
| 473 | |
| 474 | if (VNI->isPHIDef()) { |
| 475 | MachineBasicBlock *MBB = LIS.getMBBFromIndex(VNI->def); |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 476 | for (MachineBasicBlock *P : MBB->predecessors()) { |
| 477 | VNInfo *PVNI = LI->getVNInfoBefore(LIS.getMBBEndIdx(P)); |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 478 | if (PVNI) |
| 479 | WorkList.push_back(std::make_pair(LI, PVNI)); |
| 480 | } |
| 481 | continue; |
| 482 | } |
| 483 | |
| 484 | // Follow snippet copies. |
| 485 | MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def); |
| 486 | if (!SnippetCopies.count(MI)) |
| 487 | continue; |
| 488 | LiveInterval &SnipLI = LIS.getInterval(MI->getOperand(1).getReg()); |
| 489 | assert(isRegToSpill(SnipLI.reg) && "Unexpected register in copy"); |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 490 | VNInfo *SnipVNI = SnipLI.getVNInfoAt(VNI->def.getRegSlot(true)); |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 491 | assert(SnipVNI && "Snippet undefined before copy"); |
| 492 | WorkList.push_back(std::make_pair(&SnipLI, SnipVNI)); |
| 493 | } while (!WorkList.empty()); |
| 494 | } |
| 495 | |
| 496 | /// reMaterializeFor - Attempt to rematerialize before MI instead of reloading. |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 497 | bool InlineSpiller::reMaterializeFor(LiveInterval &VirtReg, MachineInstr &MI) { |
Patrik Hagglund | 296acbf | 2014-09-01 11:04:07 +0000 | [diff] [blame] | 498 | |
| 499 | // Analyze instruction |
| 500 | SmallVector<std::pair<MachineInstr *, unsigned>, 8> Ops; |
| 501 | MIBundleOperands::VirtRegInfo RI = |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 502 | MIBundleOperands(MI).analyzeVirtReg(VirtReg.reg, &Ops); |
Patrik Hagglund | 296acbf | 2014-09-01 11:04:07 +0000 | [diff] [blame] | 503 | |
| 504 | if (!RI.Reads) |
| 505 | return false; |
| 506 | |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 507 | SlotIndex UseIdx = LIS.getInstructionIndex(MI).getRegSlot(true); |
Jakob Stoklund Olesen | c0dd3da | 2011-07-18 05:31:59 +0000 | [diff] [blame] | 508 | VNInfo *ParentVNI = VirtReg.getVNInfoAt(UseIdx.getBaseIndex()); |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 509 | |
| 510 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 511 | DEBUG(dbgs() << "\tadding <undef> flags: "); |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 512 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 513 | MachineOperand &MO = MI.getOperand(i); |
Jakob Stoklund Olesen | 0ed9ebc | 2011-03-29 17:47:02 +0000 | [diff] [blame] | 514 | if (MO.isReg() && MO.isUse() && MO.getReg() == VirtReg.reg) |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 515 | MO.setIsUndef(); |
| 516 | } |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 517 | DEBUG(dbgs() << UseIdx << '\t' << MI); |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 518 | return true; |
| 519 | } |
Jakob Stoklund Olesen | 2edaa2f | 2010-10-20 22:00:51 +0000 | [diff] [blame] | 520 | |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 521 | if (SnippetCopies.count(&MI)) |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 522 | return false; |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 523 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 524 | LiveInterval &OrigLI = LIS.getInterval(Original); |
| 525 | VNInfo *OrigVNI = OrigLI.getVNInfoAt(UseIdx); |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 526 | LiveRangeEdit::Remat RM(ParentVNI); |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 527 | RM.OrigMI = LIS.getInstructionFromIndex(OrigVNI->def); |
| 528 | |
| 529 | if (!Edit->canRematerializeAt(RM, OrigVNI, UseIdx, false)) { |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 530 | markValueUsed(&VirtReg, ParentVNI); |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 531 | DEBUG(dbgs() << "\tcannot remat for " << UseIdx << '\t' << MI); |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 532 | return false; |
| 533 | } |
| 534 | |
Jakob Stoklund Olesen | 0ed9ebc | 2011-03-29 17:47:02 +0000 | [diff] [blame] | 535 | // If the instruction also writes VirtReg.reg, it had better not require the |
| 536 | // same register for uses and defs. |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 537 | if (RI.Tied) { |
| 538 | markValueUsed(&VirtReg, ParentVNI); |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 539 | DEBUG(dbgs() << "\tcannot remat tied reg: " << UseIdx << '\t' << MI); |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 540 | return false; |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Jakob Stoklund Olesen | 3b2966d | 2010-12-18 03:04:14 +0000 | [diff] [blame] | 543 | // Before rematerializing into a register for a single instruction, try to |
| 544 | // fold a load into the instruction. That avoids allocating a new register. |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 545 | if (RM.OrigMI->canFoldAsLoad() && |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 546 | foldMemoryOperand(Ops, RM.OrigMI)) { |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 547 | Edit->markRematerialized(RM.ParentVNI); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 548 | ++NumFoldedLoads; |
Jakob Stoklund Olesen | 3b2966d | 2010-12-18 03:04:14 +0000 | [diff] [blame] | 549 | return true; |
| 550 | } |
| 551 | |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 552 | // Alocate a new register for the remat. |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 553 | unsigned NewVReg = Edit->createFrom(Original); |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 554 | |
| 555 | // Finally we can rematerialize OrigMI before MI. |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 556 | SlotIndex DefIdx = |
| 557 | Edit->rematerializeAt(*MI.getParent(), MI, NewVReg, RM, TRI); |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 558 | (void)DefIdx; |
Jakob Stoklund Olesen | c6a2041 | 2011-02-08 19:33:55 +0000 | [diff] [blame] | 559 | DEBUG(dbgs() << "\tremat: " << DefIdx << '\t' |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 560 | << *LIS.getInstructionFromIndex(DefIdx)); |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 561 | |
| 562 | // Replace operands |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 563 | for (const auto &OpPair : Ops) { |
| 564 | MachineOperand &MO = OpPair.first->getOperand(OpPair.second); |
Jakob Stoklund Olesen | 0ed9ebc | 2011-03-29 17:47:02 +0000 | [diff] [blame] | 565 | if (MO.isReg() && MO.isUse() && MO.getReg() == VirtReg.reg) { |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 566 | MO.setReg(NewVReg); |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 567 | MO.setIsKill(); |
| 568 | } |
| 569 | } |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 570 | DEBUG(dbgs() << "\t " << UseIdx << '\t' << MI << '\n'); |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 571 | |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 572 | ++NumRemats; |
Jakob Stoklund Olesen | bde96ad | 2010-06-30 23:03:52 +0000 | [diff] [blame] | 573 | return true; |
| 574 | } |
| 575 | |
Jakob Stoklund Olesen | 72911e4 | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 576 | /// reMaterializeAll - Try to rematerialize as many uses as possible, |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 577 | /// and trim the live ranges after. |
| 578 | void InlineSpiller::reMaterializeAll() { |
Pete Cooper | 2bde2f4 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 579 | if (!Edit->anyRematerializable(AA)) |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 580 | return; |
| 581 | |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 582 | UsedValues.clear(); |
Jakob Stoklund Olesen | 2edaa2f | 2010-10-20 22:00:51 +0000 | [diff] [blame] | 583 | |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 584 | // Try to remat before all uses of snippets. |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 585 | bool anyRemat = false; |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 586 | for (unsigned Reg : RegsToSpill) { |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 587 | LiveInterval &LI = LIS.getInterval(Reg); |
Patrik Hagglund | 296acbf | 2014-09-01 11:04:07 +0000 | [diff] [blame] | 588 | for (MachineRegisterInfo::reg_bundle_iterator |
| 589 | RegI = MRI.reg_bundle_begin(Reg), E = MRI.reg_bundle_end(); |
| 590 | RegI != E; ) { |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 591 | MachineInstr &MI = *RegI++; |
Patrik Hagglund | 296acbf | 2014-09-01 11:04:07 +0000 | [diff] [blame] | 592 | |
| 593 | // Debug values are not allowed to affect codegen. |
Duncan P. N. Exon Smith | d6ebd07 | 2016-02-27 20:23:14 +0000 | [diff] [blame] | 594 | if (MI.isDebugValue()) |
Patrik Hagglund | 296acbf | 2014-09-01 11:04:07 +0000 | [diff] [blame] | 595 | continue; |
| 596 | |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 597 | anyRemat |= reMaterializeFor(LI, MI); |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 598 | } |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 599 | } |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 600 | if (!anyRemat) |
| 601 | return; |
| 602 | |
| 603 | // Remove any values that were completely rematted. |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 604 | for (unsigned Reg : RegsToSpill) { |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 605 | LiveInterval &LI = LIS.getInterval(Reg); |
| 606 | for (LiveInterval::vni_iterator I = LI.vni_begin(), E = LI.vni_end(); |
| 607 | I != E; ++I) { |
| 608 | VNInfo *VNI = *I; |
Jakob Stoklund Olesen | add79c6 | 2011-03-29 17:47:00 +0000 | [diff] [blame] | 609 | if (VNI->isUnused() || VNI->isPHIDef() || UsedValues.count(VNI)) |
Jakob Stoklund Olesen | cf6c5c9 | 2010-07-02 19:54:40 +0000 | [diff] [blame] | 610 | continue; |
Jakob Stoklund Olesen | d8af529 | 2011-03-29 03:12:02 +0000 | [diff] [blame] | 611 | MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def); |
| 612 | MI->addRegisterDead(Reg, &TRI); |
| 613 | if (!MI->allDefsAreDead()) |
| 614 | continue; |
| 615 | DEBUG(dbgs() << "All defs dead: " << *MI); |
| 616 | DeadDefs.push_back(MI); |
Jakob Stoklund Olesen | cf6c5c9 | 2010-07-02 19:54:40 +0000 | [diff] [blame] | 617 | } |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 618 | } |
Jakob Stoklund Olesen | add79c6 | 2011-03-29 17:47:00 +0000 | [diff] [blame] | 619 | |
| 620 | // Eliminate dead code after remat. Note that some snippet copies may be |
| 621 | // deleted here. |
| 622 | if (DeadDefs.empty()) |
| 623 | return; |
| 624 | DEBUG(dbgs() << "Remat created " << DeadDefs.size() << " dead defs.\n"); |
Pete Cooper | 2bde2f4 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 625 | Edit->eliminateDeadDefs(DeadDefs, RegsToSpill); |
Jakob Stoklund Olesen | add79c6 | 2011-03-29 17:47:00 +0000 | [diff] [blame] | 626 | |
Wei Mi | a62f058 | 2016-02-05 18:14:24 +0000 | [diff] [blame] | 627 | // LiveRangeEdit::eliminateDeadDef is used to remove dead define instructions |
| 628 | // after rematerialization. To remove a VNI for a vreg from its LiveInterval, |
| 629 | // LiveIntervals::removeVRegDefAt is used. However, after non-PHI VNIs are all |
| 630 | // removed, PHI VNI are still left in the LiveInterval. |
| 631 | // So to get rid of unused reg, we need to check whether it has non-dbg |
| 632 | // reference instead of whether it has non-empty interval. |
Benjamin Kramer | 391f5a6 | 2013-05-05 11:29:14 +0000 | [diff] [blame] | 633 | unsigned ResultPos = 0; |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 634 | for (unsigned Reg : RegsToSpill) { |
Wei Mi | a62f058 | 2016-02-05 18:14:24 +0000 | [diff] [blame] | 635 | if (MRI.reg_nodbg_empty(Reg)) { |
Benjamin Kramer | 391f5a6 | 2013-05-05 11:29:14 +0000 | [diff] [blame] | 636 | Edit->eraseVirtReg(Reg); |
Jakob Stoklund Olesen | add79c6 | 2011-03-29 17:47:00 +0000 | [diff] [blame] | 637 | continue; |
| 638 | } |
Wei Mi | a62f058 | 2016-02-05 18:14:24 +0000 | [diff] [blame] | 639 | assert((LIS.hasInterval(Reg) && !LIS.getInterval(Reg).empty()) && |
| 640 | "Reg with empty interval has reference"); |
Benjamin Kramer | 391f5a6 | 2013-05-05 11:29:14 +0000 | [diff] [blame] | 641 | RegsToSpill[ResultPos++] = Reg; |
Jakob Stoklund Olesen | add79c6 | 2011-03-29 17:47:00 +0000 | [diff] [blame] | 642 | } |
Benjamin Kramer | 391f5a6 | 2013-05-05 11:29:14 +0000 | [diff] [blame] | 643 | RegsToSpill.erase(RegsToSpill.begin() + ResultPos, RegsToSpill.end()); |
Jakob Stoklund Olesen | add79c6 | 2011-03-29 17:47:00 +0000 | [diff] [blame] | 644 | DEBUG(dbgs() << RegsToSpill.size() << " registers to spill after remat.\n"); |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 645 | } |
| 646 | |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 647 | |
| 648 | //===----------------------------------------------------------------------===// |
| 649 | // Spilling |
| 650 | //===----------------------------------------------------------------------===// |
| 651 | |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 652 | /// If MI is a load or store of StackSlot, it can be removed. |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 653 | bool InlineSpiller::coalesceStackAccess(MachineInstr *MI, unsigned Reg) { |
Jakob Stoklund Olesen | 7fd4905 | 2010-08-04 22:35:11 +0000 | [diff] [blame] | 654 | int FI = 0; |
Jakob Stoklund Olesen | 37eb696 | 2011-09-15 17:54:28 +0000 | [diff] [blame] | 655 | unsigned InstrReg = TII.isLoadFromStackSlot(MI, FI); |
| 656 | bool IsLoad = InstrReg; |
| 657 | if (!IsLoad) |
| 658 | InstrReg = TII.isStoreToStackSlot(MI, FI); |
Jakob Stoklund Olesen | 7fd4905 | 2010-08-04 22:35:11 +0000 | [diff] [blame] | 659 | |
| 660 | // We have a stack access. Is it the right register and slot? |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 661 | if (InstrReg != Reg || FI != StackSlot) |
Jakob Stoklund Olesen | 7fd4905 | 2010-08-04 22:35:11 +0000 | [diff] [blame] | 662 | return false; |
| 663 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 664 | if (!IsLoad) |
| 665 | HSpiller.rmFromMergeableSpills(MI, StackSlot); |
| 666 | |
Jakob Stoklund Olesen | 7fd4905 | 2010-08-04 22:35:11 +0000 | [diff] [blame] | 667 | DEBUG(dbgs() << "Coalescing stack access: " << *MI); |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 668 | LIS.RemoveMachineInstrFromMaps(*MI); |
Jakob Stoklund Olesen | 7fd4905 | 2010-08-04 22:35:11 +0000 | [diff] [blame] | 669 | MI->eraseFromParent(); |
Jakob Stoklund Olesen | 37eb696 | 2011-09-15 17:54:28 +0000 | [diff] [blame] | 670 | |
| 671 | if (IsLoad) { |
| 672 | ++NumReloadsRemoved; |
| 673 | --NumReloads; |
| 674 | } else { |
| 675 | ++NumSpillsRemoved; |
| 676 | --NumSpills; |
| 677 | } |
| 678 | |
Jakob Stoklund Olesen | 7fd4905 | 2010-08-04 22:35:11 +0000 | [diff] [blame] | 679 | return true; |
| 680 | } |
| 681 | |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 682 | #if !defined(NDEBUG) |
| 683 | // Dump the range of instructions from B to E with their slot indexes. |
| 684 | static void dumpMachineInstrRangeWithSlotIndex(MachineBasicBlock::iterator B, |
| 685 | MachineBasicBlock::iterator E, |
| 686 | LiveIntervals const &LIS, |
| 687 | const char *const header, |
| 688 | unsigned VReg =0) { |
| 689 | char NextLine = '\n'; |
| 690 | char SlotIndent = '\t'; |
| 691 | |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 692 | if (std::next(B) == E) { |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 693 | NextLine = ' '; |
| 694 | SlotIndent = ' '; |
| 695 | } |
| 696 | |
| 697 | dbgs() << '\t' << header << ": " << NextLine; |
| 698 | |
| 699 | for (MachineBasicBlock::iterator I = B; I != E; ++I) { |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 700 | SlotIndex Idx = LIS.getInstructionIndex(*I).getRegSlot(); |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 701 | |
| 702 | // If a register was passed in and this instruction has it as a |
| 703 | // destination that is marked as an early clobber, print the |
| 704 | // early-clobber slot index. |
| 705 | if (VReg) { |
| 706 | MachineOperand *MO = I->findRegisterDefOperand(VReg); |
| 707 | if (MO && MO->isEarlyClobber()) |
| 708 | Idx = Idx.getRegSlot(true); |
| 709 | } |
| 710 | |
| 711 | dbgs() << SlotIndent << Idx << '\t' << *I; |
| 712 | } |
| 713 | } |
| 714 | #endif |
| 715 | |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 716 | /// foldMemoryOperand - Try folding stack slot references in Ops into their |
| 717 | /// instructions. |
| 718 | /// |
| 719 | /// @param Ops Operand indices from analyzeVirtReg(). |
Jakob Stoklund Olesen | 3b2966d | 2010-12-18 03:04:14 +0000 | [diff] [blame] | 720 | /// @param LoadMI Load instruction to use instead of stack slot when non-null. |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 721 | /// @return True on success. |
| 722 | bool InlineSpiller:: |
| 723 | foldMemoryOperand(ArrayRef<std::pair<MachineInstr*, unsigned> > Ops, |
| 724 | MachineInstr *LoadMI) { |
| 725 | if (Ops.empty()) |
| 726 | return false; |
| 727 | // Don't attempt folding in bundles. |
| 728 | MachineInstr *MI = Ops.front().first; |
| 729 | if (Ops.back().first != MI || MI->isBundled()) |
| 730 | return false; |
| 731 | |
Jakob Stoklund Olesen | c94c967 | 2011-09-15 18:22:52 +0000 | [diff] [blame] | 732 | bool WasCopy = MI->isCopy(); |
Jakob Stoklund Olesen | eef48b6 | 2011-11-10 00:17:03 +0000 | [diff] [blame] | 733 | unsigned ImpReg = 0; |
| 734 | |
Philip Reames | 0365f1a | 2014-12-01 22:52:56 +0000 | [diff] [blame] | 735 | bool SpillSubRegs = (MI->getOpcode() == TargetOpcode::STATEPOINT || |
| 736 | MI->getOpcode() == TargetOpcode::PATCHPOINT || |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 737 | MI->getOpcode() == TargetOpcode::STACKMAP); |
| 738 | |
Jakob Stoklund Olesen | 8656a45 | 2010-07-01 00:13:04 +0000 | [diff] [blame] | 739 | // TargetInstrInfo::foldMemoryOperand only expects explicit, non-tied |
| 740 | // operands. |
| 741 | SmallVector<unsigned, 8> FoldOps; |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 742 | for (const auto &OpPair : Ops) { |
| 743 | unsigned Idx = OpPair.second; |
| 744 | assert(MI == OpPair.first && "Instruction conflict during operand folding"); |
Jakob Stoklund Olesen | 8656a45 | 2010-07-01 00:13:04 +0000 | [diff] [blame] | 745 | MachineOperand &MO = MI->getOperand(Idx); |
Jakob Stoklund Olesen | eef48b6 | 2011-11-10 00:17:03 +0000 | [diff] [blame] | 746 | if (MO.isImplicit()) { |
| 747 | ImpReg = MO.getReg(); |
Jakob Stoklund Olesen | 8656a45 | 2010-07-01 00:13:04 +0000 | [diff] [blame] | 748 | continue; |
Jakob Stoklund Olesen | eef48b6 | 2011-11-10 00:17:03 +0000 | [diff] [blame] | 749 | } |
Jakob Stoklund Olesen | 8656a45 | 2010-07-01 00:13:04 +0000 | [diff] [blame] | 750 | // FIXME: Teach targets to deal with subregs. |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 751 | if (!SpillSubRegs && MO.getSubReg()) |
Jakob Stoklund Olesen | 8656a45 | 2010-07-01 00:13:04 +0000 | [diff] [blame] | 752 | return false; |
Jakob Stoklund Olesen | c6a2041 | 2011-02-08 19:33:55 +0000 | [diff] [blame] | 753 | // We cannot fold a load instruction into a def. |
| 754 | if (LoadMI && MO.isDef()) |
| 755 | return false; |
Jakob Stoklund Olesen | 8656a45 | 2010-07-01 00:13:04 +0000 | [diff] [blame] | 756 | // Tied use operands should not be passed to foldMemoryOperand. |
| 757 | if (!MI->isRegTiedToDefOperand(Idx)) |
| 758 | FoldOps.push_back(Idx); |
| 759 | } |
| 760 | |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 761 | MachineInstrSpan MIS(MI); |
| 762 | |
Jakob Stoklund Olesen | 3b2966d | 2010-12-18 03:04:14 +0000 | [diff] [blame] | 763 | MachineInstr *FoldMI = |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 764 | LoadMI ? TII.foldMemoryOperand(MI, FoldOps, LoadMI) |
| 765 | : TII.foldMemoryOperand(MI, FoldOps, StackSlot); |
Jakob Stoklund Olesen | 8656a45 | 2010-07-01 00:13:04 +0000 | [diff] [blame] | 766 | if (!FoldMI) |
| 767 | return false; |
Andrew Trick | 5749b8b | 2013-06-21 18:33:26 +0000 | [diff] [blame] | 768 | |
| 769 | // Remove LIS for any dead defs in the original MI not in FoldMI. |
Duncan P. N. Exon Smith | f9ab416 | 2016-02-27 17:05:33 +0000 | [diff] [blame] | 770 | for (MIBundleOperands MO(*MI); MO.isValid(); ++MO) { |
Andrew Trick | 5749b8b | 2013-06-21 18:33:26 +0000 | [diff] [blame] | 771 | if (!MO->isReg()) |
| 772 | continue; |
| 773 | unsigned Reg = MO->getReg(); |
| 774 | if (!Reg || TargetRegisterInfo::isVirtualRegister(Reg) || |
| 775 | MRI.isReserved(Reg)) { |
| 776 | continue; |
| 777 | } |
Andrew Trick | dfacda3 | 2014-01-07 07:31:10 +0000 | [diff] [blame] | 778 | // Skip non-Defs, including undef uses and internal reads. |
| 779 | if (MO->isUse()) |
| 780 | continue; |
Andrew Trick | 5749b8b | 2013-06-21 18:33:26 +0000 | [diff] [blame] | 781 | MIBundleOperands::PhysRegInfo RI = |
Duncan P. N. Exon Smith | f9ab416 | 2016-02-27 17:05:33 +0000 | [diff] [blame] | 782 | MIBundleOperands(*FoldMI).analyzePhysReg(Reg, &TRI); |
Matthias Braun | 60d69e2 | 2015-12-11 19:42:09 +0000 | [diff] [blame] | 783 | if (RI.FullyDefined) |
Andrew Trick | 5749b8b | 2013-06-21 18:33:26 +0000 | [diff] [blame] | 784 | continue; |
| 785 | // FoldMI does not define this physreg. Remove the LI segment. |
| 786 | assert(MO->isDead() && "Cannot fold physreg def"); |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 787 | SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot(); |
Matthias Braun | cfb8ad2 | 2015-01-21 18:50:21 +0000 | [diff] [blame] | 788 | LIS.removePhysRegDefAt(Reg, Idx); |
Andrew Trick | 5749b8b | 2013-06-21 18:33:26 +0000 | [diff] [blame] | 789 | } |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 790 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 791 | int FI; |
| 792 | if (TII.isStoreToStackSlot(MI, FI) && HSpiller.rmFromMergeableSpills(MI, FI)) |
| 793 | --NumSpills; |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 794 | LIS.ReplaceMachineInstrInMaps(*MI, *FoldMI); |
Jakob Stoklund Olesen | bd953d1 | 2010-07-09 17:29:08 +0000 | [diff] [blame] | 795 | MI->eraseFromParent(); |
Jakob Stoklund Olesen | eef48b6 | 2011-11-10 00:17:03 +0000 | [diff] [blame] | 796 | |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 797 | // Insert any new instructions other than FoldMI into the LIS maps. |
| 798 | assert(!MIS.empty() && "Unexpected empty span of instructions!"); |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 799 | for (MachineInstr &MI : MIS) |
| 800 | if (&MI != FoldMI) |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 801 | LIS.InsertMachineInstrInMaps(MI); |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 802 | |
Jakob Stoklund Olesen | eef48b6 | 2011-11-10 00:17:03 +0000 | [diff] [blame] | 803 | // TII.foldMemoryOperand may have left some implicit operands on the |
| 804 | // instruction. Strip them. |
| 805 | if (ImpReg) |
| 806 | for (unsigned i = FoldMI->getNumOperands(); i; --i) { |
| 807 | MachineOperand &MO = FoldMI->getOperand(i - 1); |
| 808 | if (!MO.isReg() || !MO.isImplicit()) |
| 809 | break; |
| 810 | if (MO.getReg() == ImpReg) |
| 811 | FoldMI->RemoveOperand(i - 1); |
| 812 | } |
| 813 | |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 814 | DEBUG(dumpMachineInstrRangeWithSlotIndex(MIS.begin(), MIS.end(), LIS, |
| 815 | "folded")); |
| 816 | |
Jakob Stoklund Olesen | c94c967 | 2011-09-15 18:22:52 +0000 | [diff] [blame] | 817 | if (!WasCopy) |
| 818 | ++NumFolded; |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 819 | else if (Ops.front().second == 0) { |
Jakob Stoklund Olesen | c94c967 | 2011-09-15 18:22:52 +0000 | [diff] [blame] | 820 | ++NumSpills; |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 821 | HSpiller.addToMergeableSpills(FoldMI, StackSlot, Original); |
| 822 | } else |
Jakob Stoklund Olesen | c94c967 | 2011-09-15 18:22:52 +0000 | [diff] [blame] | 823 | ++NumReloads; |
Jakob Stoklund Olesen | 8656a45 | 2010-07-01 00:13:04 +0000 | [diff] [blame] | 824 | return true; |
| 825 | } |
| 826 | |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 827 | void InlineSpiller::insertReload(unsigned NewVReg, |
Jakob Stoklund Olesen | 9f294a9 | 2011-04-18 20:23:27 +0000 | [diff] [blame] | 828 | SlotIndex Idx, |
Jakob Stoklund Olesen | bde96ad | 2010-06-30 23:03:52 +0000 | [diff] [blame] | 829 | MachineBasicBlock::iterator MI) { |
| 830 | MachineBasicBlock &MBB = *MI->getParent(); |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 831 | |
| 832 | MachineInstrSpan MIS(MI); |
| 833 | TII.loadRegFromStackSlot(MBB, MI, NewVReg, StackSlot, |
| 834 | MRI.getRegClass(NewVReg), &TRI); |
| 835 | |
| 836 | LIS.InsertMachineInstrRangeInMaps(MIS.begin(), MI); |
| 837 | |
| 838 | DEBUG(dumpMachineInstrRangeWithSlotIndex(MIS.begin(), MI, LIS, "reload", |
| 839 | NewVReg)); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 840 | ++NumReloads; |
Jakob Stoklund Olesen | bde96ad | 2010-06-30 23:03:52 +0000 | [diff] [blame] | 841 | } |
| 842 | |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 843 | /// insertSpill - Insert a spill of NewVReg after MI. |
| 844 | void InlineSpiller::insertSpill(unsigned NewVReg, bool isKill, |
| 845 | MachineBasicBlock::iterator MI) { |
Jakob Stoklund Olesen | bde96ad | 2010-06-30 23:03:52 +0000 | [diff] [blame] | 846 | MachineBasicBlock &MBB = *MI->getParent(); |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 847 | |
| 848 | MachineInstrSpan MIS(MI); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 849 | TII.storeRegToStackSlot(MBB, std::next(MI), NewVReg, isKill, StackSlot, |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 850 | MRI.getRegClass(NewVReg), &TRI); |
| 851 | |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 852 | LIS.InsertMachineInstrRangeInMaps(std::next(MI), MIS.end()); |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 853 | |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 854 | DEBUG(dumpMachineInstrRangeWithSlotIndex(std::next(MI), MIS.end(), LIS, |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 855 | "spill")); |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 856 | ++NumSpills; |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 857 | HSpiller.addToMergeableSpills(std::next(MI), StackSlot, Original); |
Jakob Stoklund Olesen | bde96ad | 2010-06-30 23:03:52 +0000 | [diff] [blame] | 858 | } |
| 859 | |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 860 | /// spillAroundUses - insert spill code around each use of Reg. |
| 861 | void InlineSpiller::spillAroundUses(unsigned Reg) { |
Jakob Stoklund Olesen | 31a0b5e | 2011-05-11 18:25:10 +0000 | [diff] [blame] | 862 | DEBUG(dbgs() << "spillAroundUses " << PrintReg(Reg) << '\n'); |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 863 | LiveInterval &OldLI = LIS.getInterval(Reg); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 864 | |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 865 | // Iterate over instructions using Reg. |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 866 | for (MachineRegisterInfo::reg_bundle_iterator |
| 867 | RegI = MRI.reg_bundle_begin(Reg), E = MRI.reg_bundle_end(); |
| 868 | RegI != E; ) { |
Owen Anderson | ec5d480 | 2014-03-14 05:02:18 +0000 | [diff] [blame] | 869 | MachineInstr *MI = &*(RegI++); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 870 | |
Jakob Stoklund Olesen | cf6c5c9 | 2010-07-02 19:54:40 +0000 | [diff] [blame] | 871 | // Debug values are not allowed to affect codegen. |
| 872 | if (MI->isDebugValue()) { |
| 873 | // Modify DBG_VALUE now that the value is in a spill slot. |
Adrian Prantl | db3e26d | 2013-09-16 23:29:03 +0000 | [diff] [blame] | 874 | bool IsIndirect = MI->isIndirectDebugValue(); |
Adrian Prantl | c31ec1c | 2013-07-10 16:56:47 +0000 | [diff] [blame] | 875 | uint64_t Offset = IsIndirect ? MI->getOperand(1).getImm() : 0; |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 876 | const MDNode *Var = MI->getDebugVariable(); |
| 877 | const MDNode *Expr = MI->getDebugExpression(); |
Jakob Stoklund Olesen | cf6c5c9 | 2010-07-02 19:54:40 +0000 | [diff] [blame] | 878 | DebugLoc DL = MI->getDebugLoc(); |
David Blaikie | 0252265b | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 879 | DEBUG(dbgs() << "Modifying debug info due to spill:" << "\t" << *MI); |
| 880 | MachineBasicBlock *MBB = MI->getParent(); |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 881 | assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && |
Duncan P. N. Exon Smith | 3bef6a3 | 2015-04-03 19:20:26 +0000 | [diff] [blame] | 882 | "Expected inlined-at fields to agree"); |
David Blaikie | 0252265b | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 883 | BuildMI(*MBB, MBB->erase(MI), DL, TII.get(TargetOpcode::DBG_VALUE)) |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 884 | .addFrameIndex(StackSlot) |
| 885 | .addImm(Offset) |
| 886 | .addMetadata(Var) |
| 887 | .addMetadata(Expr); |
Jakob Stoklund Olesen | cf6c5c9 | 2010-07-02 19:54:40 +0000 | [diff] [blame] | 888 | continue; |
| 889 | } |
| 890 | |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 891 | // Ignore copies to/from snippets. We'll delete them. |
| 892 | if (SnippetCopies.count(MI)) |
| 893 | continue; |
| 894 | |
Jakob Stoklund Olesen | 7fd4905 | 2010-08-04 22:35:11 +0000 | [diff] [blame] | 895 | // Stack slot accesses may coalesce away. |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 896 | if (coalesceStackAccess(MI, Reg)) |
Jakob Stoklund Olesen | 7fd4905 | 2010-08-04 22:35:11 +0000 | [diff] [blame] | 897 | continue; |
| 898 | |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 899 | // Analyze instruction. |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 900 | SmallVector<std::pair<MachineInstr*, unsigned>, 8> Ops; |
James Molloy | 381fab9 | 2012-09-12 10:03:31 +0000 | [diff] [blame] | 901 | MIBundleOperands::VirtRegInfo RI = |
Duncan P. N. Exon Smith | f9ab416 | 2016-02-27 17:05:33 +0000 | [diff] [blame] | 902 | MIBundleOperands(*MI).analyzeVirtReg(Reg, &Ops); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 903 | |
Jakob Stoklund Olesen | 9f294a9 | 2011-04-18 20:23:27 +0000 | [diff] [blame] | 904 | // Find the slot index where this instruction reads and writes OldLI. |
| 905 | // This is usually the def slot, except for tied early clobbers. |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 906 | SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot(); |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 907 | if (VNInfo *VNI = OldLI.getVNInfoAt(Idx.getRegSlot(true))) |
Jakob Stoklund Olesen | 9f294a9 | 2011-04-18 20:23:27 +0000 | [diff] [blame] | 908 | if (SlotIndex::isSameInstr(Idx, VNI->def)) |
| 909 | Idx = VNI->def; |
| 910 | |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 911 | // Check for a sibling copy. |
| 912 | unsigned SibReg = isFullCopyOf(MI, Reg); |
Jakob Stoklund Olesen | e55003f | 2011-03-20 05:44:58 +0000 | [diff] [blame] | 913 | if (SibReg && isSibling(SibReg)) { |
Jakob Stoklund Olesen | 31a0b5e | 2011-05-11 18:25:10 +0000 | [diff] [blame] | 914 | // This may actually be a copy between snippets. |
| 915 | if (isRegToSpill(SibReg)) { |
| 916 | DEBUG(dbgs() << "Found new snippet copy: " << *MI); |
| 917 | SnippetCopies.insert(MI); |
| 918 | continue; |
| 919 | } |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 920 | if (RI.Writes) { |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 921 | if (hoistSpillInsideBB(OldLI, *MI)) { |
Jakob Stoklund Olesen | e55003f | 2011-03-20 05:44:58 +0000 | [diff] [blame] | 922 | // This COPY is now dead, the value is already in the stack slot. |
| 923 | MI->getOperand(0).setIsDead(); |
| 924 | DeadDefs.push_back(MI); |
| 925 | continue; |
| 926 | } |
| 927 | } else { |
| 928 | // This is a reload for a sib-reg copy. Drop spills downstream. |
Jakob Stoklund Olesen | e55003f | 2011-03-20 05:44:58 +0000 | [diff] [blame] | 929 | LiveInterval &SibLI = LIS.getInterval(SibReg); |
| 930 | eliminateRedundantSpills(SibLI, SibLI.getVNInfoAt(Idx)); |
| 931 | // The COPY will fold to a reload below. |
| 932 | } |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 933 | } |
| 934 | |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 935 | // Attempt to fold memory ops. |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 936 | if (foldMemoryOperand(Ops)) |
Jakob Stoklund Olesen | 9603718 | 2010-07-02 17:44:57 +0000 | [diff] [blame] | 937 | continue; |
| 938 | |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 939 | // Create a new virtual register for spill/fill. |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 940 | // FIXME: Infer regclass from instruction alone. |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 941 | unsigned NewVReg = Edit->createFrom(Reg); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 942 | |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 943 | if (RI.Reads) |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 944 | insertReload(NewVReg, Idx, MI); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 945 | |
| 946 | // Rewrite instruction operands. |
| 947 | bool hasLiveDef = false; |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 948 | for (const auto &OpPair : Ops) { |
| 949 | MachineOperand &MO = OpPair.first->getOperand(OpPair.second); |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 950 | MO.setReg(NewVReg); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 951 | if (MO.isUse()) { |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 952 | if (!OpPair.first->isRegTiedToDefOperand(OpPair.second)) |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 953 | MO.setIsKill(); |
| 954 | } else { |
| 955 | if (!MO.isDead()) |
| 956 | hasLiveDef = true; |
| 957 | } |
| 958 | } |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 959 | DEBUG(dbgs() << "\trewrite: " << Idx << '\t' << *MI << '\n'); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 960 | |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 961 | // FIXME: Use a second vreg if instruction has no tied ops. |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 962 | if (RI.Writes) |
Jakob Stoklund Olesen | abe8c09 | 2012-03-01 01:43:25 +0000 | [diff] [blame] | 963 | if (hasLiveDef) |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 964 | insertSpill(NewVReg, true, MI); |
Jakob Stoklund Olesen | f888911 | 2010-06-29 23:58:39 +0000 | [diff] [blame] | 965 | } |
| 966 | } |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 967 | |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 968 | /// spillAll - Spill all registers remaining after rematerialization. |
| 969 | void InlineSpiller::spillAll() { |
| 970 | // Update LiveStacks now that we are committed to spilling. |
| 971 | if (StackSlot == VirtRegMap::NO_STACK_SLOT) { |
| 972 | StackSlot = VRM.assignVirt2StackSlot(Original); |
| 973 | StackInt = &LSS.getOrCreateInterval(StackSlot, MRI.getRegClass(Original)); |
Jakob Stoklund Olesen | ad6b22e | 2012-02-04 05:20:49 +0000 | [diff] [blame] | 974 | StackInt->getNextValue(SlotIndex(), LSS.getVNInfoAllocator()); |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 975 | } else |
| 976 | StackInt = &LSS.getInterval(StackSlot); |
| 977 | |
| 978 | if (Original != Edit->getReg()) |
| 979 | VRM.assignVirt2StackSlot(Edit->getReg(), StackSlot); |
| 980 | |
| 981 | assert(StackInt->getNumValNums() == 1 && "Bad stack interval values"); |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 982 | for (unsigned Reg : RegsToSpill) |
| 983 | StackInt->MergeSegmentsInAsValue(LIS.getInterval(Reg), |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 984 | StackInt->getValNumInfo(0)); |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 985 | DEBUG(dbgs() << "Merged spilled regs: " << *StackInt << '\n'); |
| 986 | |
| 987 | // Spill around uses of all RegsToSpill. |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 988 | for (unsigned Reg : RegsToSpill) |
| 989 | spillAroundUses(Reg); |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 990 | |
| 991 | // Hoisted spills may cause dead code. |
| 992 | if (!DeadDefs.empty()) { |
| 993 | DEBUG(dbgs() << "Eliminating " << DeadDefs.size() << " dead defs\n"); |
Pete Cooper | 2bde2f4 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 994 | Edit->eliminateDeadDefs(DeadDefs, RegsToSpill); |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 995 | } |
| 996 | |
| 997 | // Finally delete the SnippetCopies. |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 998 | for (unsigned Reg : RegsToSpill) { |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 999 | for (MachineRegisterInfo::reg_instr_iterator |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 1000 | RI = MRI.reg_instr_begin(Reg), E = MRI.reg_instr_end(); |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 1001 | RI != E; ) { |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1002 | MachineInstr &MI = *(RI++); |
| 1003 | assert(SnippetCopies.count(&MI) && "Remaining use wasn't a snippet copy"); |
Jakob Stoklund Olesen | 31a0b5e | 2011-05-11 18:25:10 +0000 | [diff] [blame] | 1004 | // FIXME: Do this with a LiveRangeEdit callback. |
Jakob Stoklund Olesen | 31a0b5e | 2011-05-11 18:25:10 +0000 | [diff] [blame] | 1005 | LIS.RemoveMachineInstrFromMaps(MI); |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 1006 | MI.eraseFromParent(); |
Jakob Stoklund Olesen | 31a0b5e | 2011-05-11 18:25:10 +0000 | [diff] [blame] | 1007 | } |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 1008 | } |
| 1009 | |
| 1010 | // Delete all spilled registers. |
Craig Topper | 73275a2 | 2015-12-24 05:20:40 +0000 | [diff] [blame] | 1011 | for (unsigned Reg : RegsToSpill) |
| 1012 | Edit->eraseVirtReg(Reg); |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1015 | void InlineSpiller::spill(LiveRangeEdit &edit) { |
Jakob Stoklund Olesen | c5a8c08 | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 1016 | ++NumSpilledRanges; |
Jakob Stoklund Olesen | a00bab2 | 2011-03-14 19:56:43 +0000 | [diff] [blame] | 1017 | Edit = &edit; |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1018 | assert(!TargetRegisterInfo::isStackSlot(edit.getReg()) |
| 1019 | && "Trying to spill a stack slot."); |
Jakob Stoklund Olesen | a0d5ec1 | 2011-03-15 21:13:25 +0000 | [diff] [blame] | 1020 | // Share a stack slot among all descendants of Original. |
| 1021 | Original = VRM.getOriginal(edit.getReg()); |
| 1022 | StackSlot = VRM.getStackSlot(Original); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1023 | StackInt = nullptr; |
Jakob Stoklund Olesen | a0d5ec1 | 2011-03-15 21:13:25 +0000 | [diff] [blame] | 1024 | |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1025 | DEBUG(dbgs() << "Inline spilling " |
Craig Topper | cf0444b | 2014-11-17 05:50:14 +0000 | [diff] [blame] | 1026 | << TRI.getRegClassName(MRI.getRegClass(edit.getReg())) |
Matthias Braun | f6fe6bf | 2013-10-10 21:29:05 +0000 | [diff] [blame] | 1027 | << ':' << edit.getParent() |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 1028 | << "\nFrom original " << PrintReg(Original) << '\n'); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1029 | assert(edit.getParent().isSpillable() && |
| 1030 | "Attempting to spill already spilled value."); |
Jakob Stoklund Olesen | 27320cb | 2011-03-18 04:23:06 +0000 | [diff] [blame] | 1031 | assert(DeadDefs.empty() && "Previous spill didn't remove dead defs"); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1032 | |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1033 | collectRegsToSpill(); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1034 | reMaterializeAll(); |
| 1035 | |
| 1036 | // Remat may handle everything. |
Jakob Stoklund Olesen | e991f72 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 1037 | if (!RegsToSpill.empty()) |
| 1038 | spillAll(); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1039 | |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 1040 | Edit->calculateRegClassAndHint(MF, Loops, MBFI); |
Jakob Stoklund Olesen | a86595e | 2011-03-12 04:17:20 +0000 | [diff] [blame] | 1041 | } |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 1042 | |
| 1043 | /// Optimizations after all the reg selections and spills are done. |
| 1044 | /// |
Wei Mi | 963f2df | 2016-04-15 23:16:44 +0000 | [diff] [blame^] | 1045 | void InlineSpiller::postOptimization() { HSpiller.hoistAllSpills(); } |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 1046 | |
| 1047 | /// When a spill is inserted, add the spill to MergeableSpills map. |
| 1048 | /// |
| 1049 | void HoistSpillHelper::addToMergeableSpills(MachineInstr *Spill, int StackSlot, |
| 1050 | unsigned Original) { |
| 1051 | StackSlotToReg[StackSlot] = Original; |
| 1052 | SlotIndex Idx = LIS.getInstructionIndex(*Spill); |
| 1053 | VNInfo *OrigVNI = LIS.getInterval(Original).getVNInfoAt(Idx.getRegSlot()); |
| 1054 | std::pair<int, VNInfo *> MIdx = std::make_pair(StackSlot, OrigVNI); |
| 1055 | MergeableSpills[MIdx].insert(Spill); |
| 1056 | } |
| 1057 | |
| 1058 | /// When a spill is removed, remove the spill from MergeableSpills map. |
| 1059 | /// Return true if the spill is removed successfully. |
| 1060 | /// |
| 1061 | bool HoistSpillHelper::rmFromMergeableSpills(MachineInstr *Spill, |
| 1062 | int StackSlot) { |
| 1063 | int Original = StackSlotToReg[StackSlot]; |
| 1064 | if (!Original) |
| 1065 | return false; |
| 1066 | SlotIndex Idx = LIS.getInstructionIndex(*Spill); |
| 1067 | VNInfo *OrigVNI = LIS.getInterval(Original).getVNInfoAt(Idx.getRegSlot()); |
| 1068 | std::pair<int, VNInfo *> MIdx = std::make_pair(StackSlot, OrigVNI); |
| 1069 | return MergeableSpills[MIdx].erase(Spill); |
| 1070 | } |
| 1071 | |
| 1072 | /// Check BB to see if it is a possible target BB to place a hoisted spill, |
| 1073 | /// i.e., there should be a living sibling of OrigReg at the insert point. |
| 1074 | /// |
| 1075 | bool HoistSpillHelper::isSpillCandBB(unsigned OrigReg, VNInfo &OrigVNI, |
| 1076 | MachineBasicBlock &BB, unsigned &LiveReg) { |
| 1077 | SlotIndex Idx; |
| 1078 | MachineBasicBlock::iterator MI = BB.getFirstTerminator(); |
| 1079 | if (MI != BB.end()) |
| 1080 | Idx = LIS.getInstructionIndex(*MI); |
| 1081 | else |
| 1082 | Idx = LIS.getMBBEndIdx(&BB).getPrevSlot(); |
| 1083 | SmallSetVector<unsigned, 16> &Siblings = Virt2SiblingsMap[OrigReg]; |
| 1084 | assert((LIS.getInterval(OrigReg)).getVNInfoAt(Idx) == &OrigVNI && |
| 1085 | "Unexpected VNI"); |
| 1086 | |
| 1087 | for (auto const SibReg : Siblings) { |
| 1088 | LiveInterval &LI = LIS.getInterval(SibReg); |
| 1089 | VNInfo *VNI = LI.getVNInfoAt(Idx); |
| 1090 | if (VNI) { |
| 1091 | LiveReg = SibReg; |
| 1092 | return true; |
| 1093 | } |
| 1094 | } |
| 1095 | return false; |
| 1096 | } |
| 1097 | |
| 1098 | /// Remove redundent spills in the same BB. Save those redundent spills in |
| 1099 | /// SpillsToRm, and save the spill to keep and its BB in SpillBBToSpill map. |
| 1100 | /// |
| 1101 | void HoistSpillHelper::rmRedundantSpills( |
| 1102 | SmallPtrSet<MachineInstr *, 16> &Spills, |
| 1103 | SmallVectorImpl<MachineInstr *> &SpillsToRm, |
| 1104 | DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill) { |
| 1105 | // For each spill saw, check SpillBBToSpill[] and see if its BB already has |
| 1106 | // another spill inside. If a BB contains more than one spill, only keep the |
| 1107 | // earlier spill with smaller SlotIndex. |
| 1108 | for (const auto CurrentSpill : Spills) { |
| 1109 | MachineBasicBlock *Block = CurrentSpill->getParent(); |
| 1110 | MachineDomTreeNode *Node = MDT.DT->getNode(Block); |
| 1111 | MachineInstr *PrevSpill = SpillBBToSpill[Node]; |
| 1112 | if (PrevSpill) { |
| 1113 | SlotIndex PIdx = LIS.getInstructionIndex(*PrevSpill); |
| 1114 | SlotIndex CIdx = LIS.getInstructionIndex(*CurrentSpill); |
| 1115 | MachineInstr *SpillToRm = (CIdx > PIdx) ? CurrentSpill : PrevSpill; |
| 1116 | MachineInstr *SpillToKeep = (CIdx > PIdx) ? PrevSpill : CurrentSpill; |
| 1117 | SpillsToRm.push_back(SpillToRm); |
| 1118 | SpillBBToSpill[MDT.DT->getNode(Block)] = SpillToKeep; |
| 1119 | } else { |
| 1120 | SpillBBToSpill[MDT.DT->getNode(Block)] = CurrentSpill; |
| 1121 | } |
| 1122 | } |
| 1123 | for (const auto SpillToRm : SpillsToRm) |
| 1124 | Spills.erase(SpillToRm); |
| 1125 | } |
| 1126 | |
| 1127 | /// Starting from \p Root find a top-down traversal order of the dominator |
| 1128 | /// tree to visit all basic blocks containing the elements of \p Spills. |
| 1129 | /// Redundant spills will be found and put into \p SpillsToRm at the same |
| 1130 | /// time. \p SpillBBToSpill will be populated as part of the process and |
| 1131 | /// maps a basic block to the first store occurring in the basic block. |
| 1132 | /// \post SpillsToRm.union(Spills\@post) == Spills\@pre |
| 1133 | /// |
| 1134 | void HoistSpillHelper::getVisitOrders( |
| 1135 | MachineBasicBlock *Root, SmallPtrSet<MachineInstr *, 16> &Spills, |
| 1136 | SmallVectorImpl<MachineDomTreeNode *> &Orders, |
| 1137 | SmallVectorImpl<MachineInstr *> &SpillsToRm, |
| 1138 | DenseMap<MachineDomTreeNode *, unsigned> &SpillsToKeep, |
| 1139 | DenseMap<MachineDomTreeNode *, MachineInstr *> &SpillBBToSpill) { |
| 1140 | // The set contains all the possible BB nodes to which we may hoist |
| 1141 | // original spills. |
| 1142 | SmallPtrSet<MachineDomTreeNode *, 8> WorkSet; |
| 1143 | // Save the BB nodes on the path from the first BB node containing |
| 1144 | // non-redundent spill to the Root node. |
| 1145 | SmallPtrSet<MachineDomTreeNode *, 8> NodesOnPath; |
| 1146 | // All the spills to be hoisted must originate from a single def instruction |
| 1147 | // to the OrigReg. It means the def instruction should dominate all the spills |
| 1148 | // to be hoisted. We choose the BB where the def instruction is located as |
| 1149 | // the Root. |
| 1150 | MachineDomTreeNode *RootIDomNode = MDT[Root]->getIDom(); |
| 1151 | // For every node on the dominator tree with spill, walk up on the dominator |
| 1152 | // tree towards the Root node until it is reached. If there is other node |
| 1153 | // containing spill in the middle of the path, the previous spill saw will |
| 1154 | // be redundent and the node containing it will be removed. All the nodes on |
| 1155 | // the path starting from the first node with non-redundent spill to the Root |
| 1156 | // node will be added to the WorkSet, which will contain all the possible |
| 1157 | // locations where spills may be hoisted to after the loop below is done. |
| 1158 | for (const auto Spill : Spills) { |
| 1159 | MachineBasicBlock *Block = Spill->getParent(); |
| 1160 | MachineDomTreeNode *Node = MDT[Block]; |
| 1161 | MachineInstr *SpillToRm = nullptr; |
| 1162 | while (Node != RootIDomNode) { |
| 1163 | // If Node dominates Block, and it already contains a spill, the spill in |
| 1164 | // Block will be redundent. |
| 1165 | if (Node != MDT[Block] && SpillBBToSpill[Node]) { |
| 1166 | SpillToRm = SpillBBToSpill[MDT[Block]]; |
| 1167 | break; |
| 1168 | /// If we see the Node already in WorkSet, the path from the Node to |
| 1169 | /// the Root node must already be traversed by another spill. |
| 1170 | /// Then no need to repeat. |
| 1171 | } else if (WorkSet.count(Node)) { |
| 1172 | break; |
| 1173 | } else { |
| 1174 | NodesOnPath.insert(Node); |
| 1175 | } |
| 1176 | Node = Node->getIDom(); |
| 1177 | } |
| 1178 | if (SpillToRm) { |
| 1179 | SpillsToRm.push_back(SpillToRm); |
| 1180 | } else { |
| 1181 | // Add a BB containing the original spills to SpillsToKeep -- i.e., |
| 1182 | // set the initial status before hoisting start. The value of BBs |
| 1183 | // containing original spills is set to 0, in order to descriminate |
| 1184 | // with BBs containing hoisted spills which will be inserted to |
| 1185 | // SpillsToKeep later during hoisting. |
| 1186 | SpillsToKeep[MDT[Block]] = 0; |
| 1187 | WorkSet.insert(NodesOnPath.begin(), NodesOnPath.end()); |
| 1188 | } |
| 1189 | NodesOnPath.clear(); |
| 1190 | } |
| 1191 | |
| 1192 | // Sort the nodes in WorkSet in top-down order and save the nodes |
| 1193 | // in Orders. Orders will be used for hoisting in runHoistSpills. |
| 1194 | unsigned idx = 0; |
| 1195 | Orders.push_back(MDT.DT->getNode(Root)); |
| 1196 | do { |
| 1197 | MachineDomTreeNode *Node = Orders[idx++]; |
| 1198 | const std::vector<MachineDomTreeNode *> &Children = Node->getChildren(); |
| 1199 | unsigned NumChildren = Children.size(); |
| 1200 | for (unsigned i = 0; i != NumChildren; ++i) { |
| 1201 | MachineDomTreeNode *Child = Children[i]; |
| 1202 | if (WorkSet.count(Child)) |
| 1203 | Orders.push_back(Child); |
| 1204 | } |
| 1205 | } while (idx != Orders.size()); |
| 1206 | assert(Orders.size() == WorkSet.size() && |
| 1207 | "Orders have different size with WorkSet"); |
| 1208 | |
| 1209 | #ifndef NDEBUG |
| 1210 | DEBUG(dbgs() << "Orders size is " << Orders.size() << "\n"); |
| 1211 | SmallVector<MachineDomTreeNode *, 32>::reverse_iterator RIt = Orders.rbegin(); |
| 1212 | for (; RIt != Orders.rend(); RIt++) |
| 1213 | DEBUG(dbgs() << "BB" << (*RIt)->getBlock()->getNumber() << ","); |
| 1214 | DEBUG(dbgs() << "\n"); |
| 1215 | #endif |
| 1216 | } |
| 1217 | |
| 1218 | /// Try to hoist spills according to BB hotness. The spills to removed will |
| 1219 | /// be saved in \p SpillsToRm. The spills to be inserted will be saved in |
| 1220 | /// \p SpillsToIns. |
| 1221 | /// |
| 1222 | void HoistSpillHelper::runHoistSpills( |
| 1223 | unsigned OrigReg, VNInfo &OrigVNI, SmallPtrSet<MachineInstr *, 16> &Spills, |
| 1224 | SmallVectorImpl<MachineInstr *> &SpillsToRm, |
| 1225 | DenseMap<MachineBasicBlock *, unsigned> &SpillsToIns) { |
| 1226 | // Visit order of dominator tree nodes. |
| 1227 | SmallVector<MachineDomTreeNode *, 32> Orders; |
| 1228 | // SpillsToKeep contains all the nodes where spills are to be inserted |
| 1229 | // during hoisting. If the spill to be inserted is an original spill |
| 1230 | // (not a hoisted one), the value of the map entry is 0. If the spill |
| 1231 | // is a hoisted spill, the value of the map entry is the VReg to be used |
| 1232 | // as the source of the spill. |
| 1233 | DenseMap<MachineDomTreeNode *, unsigned> SpillsToKeep; |
| 1234 | // Map from BB to the first spill inside of it. |
| 1235 | DenseMap<MachineDomTreeNode *, MachineInstr *> SpillBBToSpill; |
| 1236 | |
| 1237 | rmRedundantSpills(Spills, SpillsToRm, SpillBBToSpill); |
| 1238 | |
| 1239 | MachineBasicBlock *Root = LIS.getMBBFromIndex(OrigVNI.def); |
| 1240 | getVisitOrders(Root, Spills, Orders, SpillsToRm, SpillsToKeep, |
| 1241 | SpillBBToSpill); |
| 1242 | |
| 1243 | // SpillsInSubTreeMap keeps the map from a dom tree node to a pair of |
| 1244 | // nodes set and the cost of all the spills inside those nodes. |
| 1245 | // The nodes set are the locations where spills are to be inserted |
| 1246 | // in the subtree of current node. |
| 1247 | typedef std::pair<SmallPtrSet<MachineDomTreeNode *, 16>, BlockFrequency> |
| 1248 | NodesCostPair; |
| 1249 | DenseMap<MachineDomTreeNode *, NodesCostPair> SpillsInSubTreeMap; |
| 1250 | // Iterate Orders set in reverse order, which will be a bottom-up order |
| 1251 | // in the dominator tree. Once we visit a dom tree node, we know its |
| 1252 | // children have already been visited and the spill locations in the |
| 1253 | // subtrees of all the children have been determined. |
| 1254 | SmallVector<MachineDomTreeNode *, 32>::reverse_iterator RIt = Orders.rbegin(); |
| 1255 | for (; RIt != Orders.rend(); RIt++) { |
| 1256 | MachineBasicBlock *Block = (*RIt)->getBlock(); |
| 1257 | |
| 1258 | // If Block contains an original spill, simply continue. |
| 1259 | if (SpillsToKeep.find(*RIt) != SpillsToKeep.end() && !SpillsToKeep[*RIt]) { |
| 1260 | SpillsInSubTreeMap[*RIt].first.insert(*RIt); |
| 1261 | // SpillsInSubTreeMap[*RIt].second contains the cost of spill. |
| 1262 | SpillsInSubTreeMap[*RIt].second = MBFI.getBlockFreq(Block); |
| 1263 | continue; |
| 1264 | } |
| 1265 | |
| 1266 | // Collect spills in subtree of current node (*RIt) to |
| 1267 | // SpillsInSubTreeMap[*RIt].first. |
| 1268 | const std::vector<MachineDomTreeNode *> &Children = (*RIt)->getChildren(); |
| 1269 | unsigned NumChildren = Children.size(); |
| 1270 | for (unsigned i = 0; i != NumChildren; ++i) { |
| 1271 | MachineDomTreeNode *Child = Children[i]; |
| 1272 | if (SpillsInSubTreeMap.find(Child) == SpillsInSubTreeMap.end()) |
| 1273 | continue; |
| 1274 | // The stmt "SpillsInSubTree = SpillsInSubTreeMap[*RIt].first" below |
| 1275 | // should be placed before getting the begin and end iterators of |
| 1276 | // SpillsInSubTreeMap[Child].first, or else the iterators may be |
| 1277 | // invalidated when SpillsInSubTreeMap[*RIt] is seen the first time |
| 1278 | // and the map grows and then the original buckets in the map are moved. |
| 1279 | SmallPtrSet<MachineDomTreeNode *, 16> &SpillsInSubTree = |
| 1280 | SpillsInSubTreeMap[*RIt].first; |
| 1281 | BlockFrequency &SubTreeCost = SpillsInSubTreeMap[*RIt].second; |
| 1282 | SubTreeCost += SpillsInSubTreeMap[Child].second; |
| 1283 | auto BI = SpillsInSubTreeMap[Child].first.begin(); |
| 1284 | auto EI = SpillsInSubTreeMap[Child].first.end(); |
| 1285 | SpillsInSubTree.insert(BI, EI); |
| 1286 | SpillsInSubTreeMap.erase(Child); |
| 1287 | } |
| 1288 | |
| 1289 | SmallPtrSet<MachineDomTreeNode *, 16> &SpillsInSubTree = |
| 1290 | SpillsInSubTreeMap[*RIt].first; |
| 1291 | BlockFrequency &SubTreeCost = SpillsInSubTreeMap[*RIt].second; |
| 1292 | // No spills in subtree, simply continue. |
| 1293 | if (SpillsInSubTree.empty()) |
| 1294 | continue; |
| 1295 | |
| 1296 | // Check whether Block is a possible candidate to insert spill. |
| 1297 | unsigned LiveReg = 0; |
| 1298 | if (!isSpillCandBB(OrigReg, OrigVNI, *Block, LiveReg)) |
| 1299 | continue; |
| 1300 | |
| 1301 | // If there are multiple spills that could be merged, bias a little |
| 1302 | // to hoist the spill. |
| 1303 | BranchProbability MarginProb = (SpillsInSubTree.size() > 1) |
| 1304 | ? BranchProbability(9, 10) |
| 1305 | : BranchProbability(1, 1); |
| 1306 | if (SubTreeCost > MBFI.getBlockFreq(Block) * MarginProb) { |
| 1307 | // Hoist: Move spills to current Block. |
| 1308 | for (const auto SpillBB : SpillsInSubTree) { |
| 1309 | // When SpillBB is a BB contains original spill, insert the spill |
| 1310 | // to SpillsToRm. |
| 1311 | if (SpillsToKeep.find(SpillBB) != SpillsToKeep.end() && |
| 1312 | !SpillsToKeep[SpillBB]) { |
| 1313 | MachineInstr *SpillToRm = SpillBBToSpill[SpillBB]; |
| 1314 | SpillsToRm.push_back(SpillToRm); |
| 1315 | } |
| 1316 | // SpillBB will not contain spill anymore, remove it from SpillsToKeep. |
| 1317 | SpillsToKeep.erase(SpillBB); |
| 1318 | } |
| 1319 | // Current Block is the BB containing the new hoisted spill. Add it to |
| 1320 | // SpillsToKeep. LiveReg is the source of the new spill. |
| 1321 | SpillsToKeep[*RIt] = LiveReg; |
| 1322 | DEBUG({ |
| 1323 | dbgs() << "spills in BB: "; |
| 1324 | for (const auto Rspill : SpillsInSubTree) |
| 1325 | dbgs() << Rspill->getBlock()->getNumber() << " "; |
| 1326 | dbgs() << "were promoted to BB" << (*RIt)->getBlock()->getNumber() |
| 1327 | << "\n"; |
| 1328 | }); |
| 1329 | SpillsInSubTree.clear(); |
| 1330 | SpillsInSubTree.insert(*RIt); |
| 1331 | SubTreeCost = MBFI.getBlockFreq(Block); |
| 1332 | } |
| 1333 | } |
| 1334 | // For spills in SpillsToKeep with LiveReg set (i.e., not original spill), |
| 1335 | // save them to SpillsToIns. |
| 1336 | for (const auto Ent : SpillsToKeep) { |
| 1337 | if (Ent.second) |
| 1338 | SpillsToIns[Ent.first->getBlock()] = Ent.second; |
| 1339 | } |
| 1340 | } |
| 1341 | |
| 1342 | /// For spills with equal values, remove redundent spills and hoist the left |
| 1343 | /// to less hot spots. |
| 1344 | /// |
| 1345 | /// Spills with equal values will be collected into the same set in |
| 1346 | /// MergeableSpills when spill is inserted. These equal spills are originated |
| 1347 | /// from the same define instruction and are dominated by the instruction. |
| 1348 | /// Before hoisting all the equal spills, redundent spills inside in the same |
| 1349 | /// BB is first marked to be deleted. Then starting from spills left, walk up |
| 1350 | /// on the dominator tree towards the Root node where the define instruction |
| 1351 | /// is located, mark the dominated spills to be deleted along the way and |
| 1352 | /// collect the BB nodes on the path from non-dominated spills to the define |
| 1353 | /// instruction into a WorkSet. The nodes in WorkSet are the candidate places |
| 1354 | /// where we consider to hoist the spills. We iterate the WorkSet in bottom-up |
| 1355 | /// order, and for each node, we will decide whether to hoist spills inside |
| 1356 | /// its subtree to that node. In this way, we can get benefit locally even if |
| 1357 | /// hoisting all the equal spills to one cold place is impossible. |
| 1358 | /// |
Wei Mi | 963f2df | 2016-04-15 23:16:44 +0000 | [diff] [blame^] | 1359 | void HoistSpillHelper::hoistAllSpills() { |
| 1360 | SmallVector<unsigned, 4> NewVRegs; |
| 1361 | LiveRangeEdit Edit(nullptr, NewVRegs, MF, LIS, &VRM, this); |
| 1362 | |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 1363 | // Save the mapping between stackslot and its original reg. |
| 1364 | DenseMap<int, unsigned> SlotToOrigReg; |
| 1365 | for (unsigned i = 0, e = MRI.getNumVirtRegs(); i != e; ++i) { |
| 1366 | unsigned Reg = TargetRegisterInfo::index2VirtReg(i); |
| 1367 | int Slot = VRM.getStackSlot(Reg); |
| 1368 | if (Slot != VirtRegMap::NO_STACK_SLOT) |
| 1369 | SlotToOrigReg[Slot] = VRM.getOriginal(Reg); |
| 1370 | unsigned Original = VRM.getPreSplitReg(Reg); |
| 1371 | if (!MRI.def_empty(Reg)) |
| 1372 | Virt2SiblingsMap[Original].insert(Reg); |
| 1373 | } |
| 1374 | |
| 1375 | // Each entry in MergeableSpills contains a spill set with equal values. |
| 1376 | for (auto &Ent : MergeableSpills) { |
| 1377 | int Slot = Ent.first.first; |
| 1378 | unsigned OrigReg = SlotToOrigReg[Slot]; |
| 1379 | VNInfo *OrigVNI = Ent.first.second; |
| 1380 | SmallPtrSet<MachineInstr *, 16> &EqValSpills = Ent.second; |
| 1381 | if (Ent.second.empty()) |
| 1382 | continue; |
| 1383 | |
| 1384 | DEBUG({ |
| 1385 | dbgs() << "\nFor Slot" << Slot << " and VN" << OrigVNI->id << ":\n" |
| 1386 | << "Equal spills in BB: "; |
| 1387 | for (const auto spill : EqValSpills) |
| 1388 | dbgs() << spill->getParent()->getNumber() << " "; |
| 1389 | dbgs() << "\n"; |
| 1390 | }); |
| 1391 | |
| 1392 | // SpillsToRm is the spill set to be removed from EqValSpills. |
| 1393 | SmallVector<MachineInstr *, 16> SpillsToRm; |
| 1394 | // SpillsToIns is the spill set to be newly inserted after hoisting. |
| 1395 | DenseMap<MachineBasicBlock *, unsigned> SpillsToIns; |
| 1396 | |
| 1397 | runHoistSpills(OrigReg, *OrigVNI, EqValSpills, SpillsToRm, SpillsToIns); |
| 1398 | |
| 1399 | DEBUG({ |
| 1400 | dbgs() << "Finally inserted spills in BB: "; |
| 1401 | for (const auto Ispill : SpillsToIns) |
| 1402 | dbgs() << Ispill.first->getNumber() << " "; |
| 1403 | dbgs() << "\nFinally removed spills in BB: "; |
| 1404 | for (const auto Rspill : SpillsToRm) |
| 1405 | dbgs() << Rspill->getParent()->getNumber() << " "; |
| 1406 | dbgs() << "\n"; |
| 1407 | }); |
| 1408 | |
| 1409 | // Stack live range update. |
| 1410 | LiveInterval &StackIntvl = LSS.getInterval(Slot); |
| 1411 | if (!SpillsToIns.empty() || !SpillsToRm.empty()) { |
| 1412 | LiveInterval &OrigLI = LIS.getInterval(OrigReg); |
| 1413 | StackIntvl.MergeValueInAsValue(OrigLI, OrigVNI, |
| 1414 | StackIntvl.getValNumInfo(0)); |
| 1415 | } |
| 1416 | |
| 1417 | // Insert hoisted spills. |
| 1418 | for (auto const Insert : SpillsToIns) { |
| 1419 | MachineBasicBlock *BB = Insert.first; |
| 1420 | unsigned LiveReg = Insert.second; |
| 1421 | MachineBasicBlock::iterator MI = BB->getFirstTerminator(); |
| 1422 | TII.storeRegToStackSlot(*BB, MI, LiveReg, false, Slot, |
| 1423 | MRI.getRegClass(LiveReg), &TRI); |
| 1424 | LIS.InsertMachineInstrRangeInMaps(std::prev(MI), MI); |
| 1425 | ++NumSpills; |
| 1426 | } |
| 1427 | |
| 1428 | // Remove redundent spills or change them to dead instructions. |
| 1429 | NumSpills -= SpillsToRm.size(); |
| 1430 | for (auto const RMEnt : SpillsToRm) { |
| 1431 | RMEnt->setDesc(TII.get(TargetOpcode::KILL)); |
| 1432 | for (unsigned i = RMEnt->getNumOperands(); i; --i) { |
| 1433 | MachineOperand &MO = RMEnt->getOperand(i - 1); |
| 1434 | if (MO.isReg() && MO.isImplicit() && MO.isDef() && !MO.isDead()) |
| 1435 | RMEnt->RemoveOperand(i - 1); |
| 1436 | } |
| 1437 | } |
Wei Mi | 963f2df | 2016-04-15 23:16:44 +0000 | [diff] [blame^] | 1438 | Edit.eliminateDeadDefs(SpillsToRm, None); |
Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 1439 | } |
| 1440 | } |
Wei Mi | 963f2df | 2016-04-15 23:16:44 +0000 | [diff] [blame^] | 1441 | |
| 1442 | /// For VirtReg clone, the \p New register should have the same physreg or |
| 1443 | /// stackslot as the \p old register. |
| 1444 | void HoistSpillHelper::LRE_DidCloneVirtReg(unsigned New, unsigned Old) { |
| 1445 | if (VRM.hasPhys(Old)) |
| 1446 | VRM.assignVirt2Phys(New, VRM.getPhys(Old)); |
| 1447 | else if (VRM.getStackSlot(Old) != VirtRegMap::NO_STACK_SLOT) |
| 1448 | VRM.assignVirt2StackSlot(New, VRM.getStackSlot(Old)); |
| 1449 | else |
| 1450 | llvm_unreachable("VReg should be assigned either physreg or stackslot"); |
| 1451 | } |