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