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