Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 1 | //===-- RegAllocGreedy.cpp - greedy register allocator --------------------===// |
| 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 | // This file defines the RAGreedy function pass for register allocation in |
| 11 | // optimized builds. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #define DEBUG_TYPE "regalloc" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/Passes.h" |
Jakob Stoklund Olesen | 4d7432e | 2010-12-10 22:21:05 +0000 | [diff] [blame] | 17 | #include "AllocationOrder.h" |
Jakob Stoklund Olesen | 91cbcaf | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 18 | #include "InterferenceCache.h" |
Jakob Stoklund Olesen | 6aa0fbf | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 19 | #include "LiveDebugVariables.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 20 | #include "RegAllocBase.h" |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 21 | #include "SpillPlacement.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 22 | #include "Spiller.h" |
Jakob Stoklund Olesen | e7601e9 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 23 | #include "SplitKit.h" |
Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/Statistic.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/AliasAnalysis.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/CalcSpillWeights.h" |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/EdgeBundles.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Pete Cooper | 3ca96f9 | 2012-04-02 22:44:18 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/LiveRangeEdit.h" |
Jakob Stoklund Olesen | 26c9d70 | 2012-11-28 19:13:06 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/LiveRegMatrix.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/LiveStackAnalysis.h" |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/MachineDominators.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/MachineLoopInfo.h" |
| 36 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/RegAllocRegistry.h" |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/RegisterClassInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/VirtRegMap.h" |
| 40 | #include "llvm/PassAnalysisSupport.h" |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 41 | #include "llvm/Support/CommandLine.h" |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 42 | #include "llvm/Support/Debug.h" |
| 43 | #include "llvm/Support/ErrorHandling.h" |
Jakob Stoklund Olesen | 92da705 | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 44 | #include "llvm/Support/Timer.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 45 | #include "llvm/Support/raw_ostream.h" |
Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 46 | #include <queue> |
| 47 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 48 | using namespace llvm; |
| 49 | |
Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 50 | STATISTIC(NumGlobalSplits, "Number of split global live ranges"); |
| 51 | STATISTIC(NumLocalSplits, "Number of split local live ranges"); |
Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 52 | STATISTIC(NumEvicted, "Number of interferences evicted"); |
| 53 | |
Jakob Stoklund Olesen | eecb2fb | 2011-09-12 16:49:21 +0000 | [diff] [blame] | 54 | static cl::opt<SplitEditor::ComplementSpillMode> |
| 55 | SplitSpillMode("split-spill-mode", cl::Hidden, |
| 56 | cl::desc("Spill mode for splitting live ranges"), |
| 57 | cl::values(clEnumValN(SplitEditor::SM_Partition, "default", "Default"), |
| 58 | clEnumValN(SplitEditor::SM_Size, "size", "Optimize for size"), |
| 59 | clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed"), |
| 60 | clEnumValEnd), |
| 61 | cl::init(SplitEditor::SM_Partition)); |
| 62 | |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 63 | static cl::opt<unsigned> |
| 64 | LastChanceRecoloringMaxDepth("lcr-max-depth", cl::Hidden, |
| 65 | cl::desc("Last chance recoloring max depth"), |
| 66 | cl::init(5)); |
| 67 | |
| 68 | static cl::opt<unsigned> LastChanceRecoloringMaxInterference( |
| 69 | "lcr-max-interf", cl::Hidden, |
| 70 | cl::desc("Last chance recoloring maximum number of considered" |
| 71 | " interference at a time"), |
| 72 | cl::init(8)); |
| 73 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 74 | static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator", |
| 75 | createGreedyRegisterAllocator); |
| 76 | |
| 77 | namespace { |
Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 78 | class RAGreedy : public MachineFunctionPass, |
| 79 | public RegAllocBase, |
| 80 | private LiveRangeEdit::Delegate { |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 81 | // Convenient shortcuts. |
| 82 | typedef std::priority_queue<std::pair<unsigned, unsigned> > PQueue; |
| 83 | typedef SmallPtrSet<LiveInterval *, 4> SmallLISet; |
| 84 | typedef SmallSet<unsigned, 16> SmallVirtRegSet; |
Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 85 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 86 | // context |
| 87 | MachineFunction *MF; |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 88 | |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 89 | // Shortcuts to some useful interface. |
| 90 | const TargetInstrInfo *TII; |
| 91 | const TargetRegisterInfo *TRI; |
| 92 | RegisterClassInfo RCI; |
| 93 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 94 | // analyses |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 95 | SlotIndexes *Indexes; |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 96 | MachineBlockFrequencyInfo *MBFI; |
Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 97 | MachineDominatorTree *DomTree; |
Jakob Stoklund Olesen | e7601e9 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 98 | MachineLoopInfo *Loops; |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 99 | EdgeBundles *Bundles; |
| 100 | SpillPlacement *SpillPlacer; |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 101 | LiveDebugVariables *DebugVars; |
Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 102 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 103 | // state |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 104 | std::unique_ptr<Spiller> SpillerInstance; |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 105 | PQueue Queue; |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 106 | unsigned NextCascade; |
Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 107 | |
| 108 | // Live ranges pass through a number of stages as we try to allocate them. |
| 109 | // Some of the stages may also create new live ranges: |
| 110 | // |
| 111 | // - Region splitting. |
| 112 | // - Per-block splitting. |
| 113 | // - Local splitting. |
| 114 | // - Spilling. |
| 115 | // |
| 116 | // Ranges produced by one of the stages skip the previous stages when they are |
| 117 | // dequeued. This improves performance because we can skip interference checks |
| 118 | // that are unlikely to give any results. It also guarantees that the live |
| 119 | // range splitting algorithm terminates, something that is otherwise hard to |
| 120 | // ensure. |
| 121 | enum LiveRangeStage { |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 122 | /// Newly created live range that has never been queued. |
| 123 | RS_New, |
| 124 | |
| 125 | /// Only attempt assignment and eviction. Then requeue as RS_Split. |
| 126 | RS_Assign, |
| 127 | |
| 128 | /// Attempt live range splitting if assignment is impossible. |
| 129 | RS_Split, |
| 130 | |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 131 | /// Attempt more aggressive live range splitting that is guaranteed to make |
| 132 | /// progress. This is used for split products that may not be making |
| 133 | /// progress. |
| 134 | RS_Split2, |
| 135 | |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 136 | /// Live range will be spilled. No more splitting will be attempted. |
| 137 | RS_Spill, |
| 138 | |
| 139 | /// There is nothing more we can do to this live range. Abort compilation |
| 140 | /// if it can't be assigned. |
| 141 | RS_Done |
Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 142 | }; |
| 143 | |
Eli Friedman | 78bffa5 | 2013-09-10 23:18:14 +0000 | [diff] [blame] | 144 | #ifndef NDEBUG |
Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 145 | static const char *const StageName[]; |
Eli Friedman | 78bffa5 | 2013-09-10 23:18:14 +0000 | [diff] [blame] | 146 | #endif |
Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 147 | |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 148 | // RegInfo - Keep additional information about each live range. |
| 149 | struct RegInfo { |
| 150 | LiveRangeStage Stage; |
| 151 | |
| 152 | // Cascade - Eviction loop prevention. See canEvictInterference(). |
| 153 | unsigned Cascade; |
| 154 | |
| 155 | RegInfo() : Stage(RS_New), Cascade(0) {} |
| 156 | }; |
| 157 | |
| 158 | IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo; |
Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 159 | |
| 160 | LiveRangeStage getStage(const LiveInterval &VirtReg) const { |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 161 | return ExtraRegInfo[VirtReg.reg].Stage; |
| 162 | } |
| 163 | |
| 164 | void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) { |
| 165 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 166 | ExtraRegInfo[VirtReg.reg].Stage = Stage; |
Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | template<typename Iterator> |
| 170 | void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) { |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 171 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 172 | for (;Begin != End; ++Begin) { |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 173 | unsigned Reg = *Begin; |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 174 | if (ExtraRegInfo[Reg].Stage == RS_New) |
| 175 | ExtraRegInfo[Reg].Stage = NewStage; |
Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 176 | } |
Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 177 | } |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 178 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 179 | /// Cost of evicting interference. |
| 180 | struct EvictionCost { |
| 181 | unsigned BrokenHints; ///< Total number of broken hints. |
| 182 | float MaxWeight; ///< Maximum spill weight evicted. |
| 183 | |
Andrew Trick | 3621b8a | 2013-11-22 19:07:38 +0000 | [diff] [blame] | 184 | EvictionCost(): BrokenHints(0), MaxWeight(0) {} |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 185 | |
Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 186 | bool isMax() const { return BrokenHints == ~0u; } |
| 187 | |
Andrew Trick | 3621b8a | 2013-11-22 19:07:38 +0000 | [diff] [blame] | 188 | void setMax() { BrokenHints = ~0u; } |
| 189 | |
| 190 | void setBrokenHints(unsigned NHints) { BrokenHints = NHints; } |
| 191 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 192 | bool operator<(const EvictionCost &O) const { |
Benjamin Kramer | b2f034b | 2014-03-03 19:58:30 +0000 | [diff] [blame] | 193 | return std::tie(BrokenHints, MaxWeight) < |
| 194 | std::tie(O.BrokenHints, O.MaxWeight); |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 195 | } |
| 196 | }; |
| 197 | |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 198 | // splitting state. |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 199 | std::unique_ptr<SplitAnalysis> SA; |
| 200 | std::unique_ptr<SplitEditor> SE; |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 201 | |
Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 202 | /// Cached per-block interference maps |
| 203 | InterferenceCache IntfCache; |
| 204 | |
Jakob Stoklund Olesen | 6d2bbc1 | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 205 | /// All basic blocks where the current register has uses. |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 206 | SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints; |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 207 | |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 208 | /// Global live range splitting candidate info. |
| 209 | struct GlobalSplitCandidate { |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 210 | // Register intended for assignment, or 0. |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 211 | unsigned PhysReg; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 212 | |
| 213 | // SplitKit interval index for this candidate. |
| 214 | unsigned IntvIdx; |
| 215 | |
| 216 | // Interference for PhysReg. |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 217 | InterferenceCache::Cursor Intf; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 218 | |
| 219 | // Bundles where this candidate should be live. |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 220 | BitVector LiveBundles; |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 221 | SmallVector<unsigned, 8> ActiveBlocks; |
| 222 | |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 223 | void reset(InterferenceCache &Cache, unsigned Reg) { |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 224 | PhysReg = Reg; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 225 | IntvIdx = 0; |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 226 | Intf.setPhysReg(Cache, Reg); |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 227 | LiveBundles.clear(); |
| 228 | ActiveBlocks.clear(); |
| 229 | } |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 230 | |
| 231 | // Set B[i] = C for every live bundle where B[i] was NoCand. |
| 232 | unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) { |
| 233 | unsigned Count = 0; |
| 234 | for (int i = LiveBundles.find_first(); i >= 0; |
| 235 | i = LiveBundles.find_next(i)) |
| 236 | if (B[i] == NoCand) { |
| 237 | B[i] = C; |
| 238 | Count++; |
| 239 | } |
| 240 | return Count; |
| 241 | } |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 242 | }; |
| 243 | |
Aditya Nandakumar | c1fd0dd | 2013-11-19 23:51:32 +0000 | [diff] [blame] | 244 | /// Candidate info for each PhysReg in AllocationOrder. |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 245 | /// This vector never shrinks, but grows to the size of the largest register |
| 246 | /// class. |
| 247 | SmallVector<GlobalSplitCandidate, 32> GlobalCand; |
| 248 | |
Alp Toker | 61007d8 | 2014-03-02 03:20:38 +0000 | [diff] [blame] | 249 | enum : unsigned { NoCand = ~0u }; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 250 | |
| 251 | /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to |
| 252 | /// NoCand which indicates the stack interval. |
| 253 | SmallVector<unsigned, 32> BundleCand; |
| 254 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 255 | public: |
| 256 | RAGreedy(); |
| 257 | |
| 258 | /// Return the pass name. |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame^] | 259 | const char* getPassName() const override { |
Jakob Stoklund Olesen | 92da705 | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 260 | return "Greedy Register Allocator"; |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | /// RAGreedy analysis usage. |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame^] | 264 | void getAnalysisUsage(AnalysisUsage &AU) const override; |
| 265 | void releaseMemory() override; |
| 266 | Spiller &spiller() override { return *SpillerInstance; } |
| 267 | void enqueue(LiveInterval *LI) override; |
| 268 | LiveInterval *dequeue() override; |
| 269 | unsigned selectOrSplit(LiveInterval&, SmallVectorImpl<unsigned>&) override; |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 270 | |
| 271 | /// Perform register allocation. |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame^] | 272 | bool runOnMachineFunction(MachineFunction &mf) override; |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 273 | |
| 274 | static char ID; |
Andrew Trick | ccef098 | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 275 | |
| 276 | private: |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 277 | unsigned selectOrSplitImpl(LiveInterval &, SmallVectorImpl<unsigned> &, |
| 278 | SmallVirtRegSet &, unsigned = 0); |
| 279 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame^] | 280 | bool LRE_CanEraseVirtReg(unsigned) override; |
| 281 | void LRE_WillShrinkVirtReg(unsigned) override; |
| 282 | void LRE_DidCloneVirtReg(unsigned, unsigned) override; |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 283 | void enqueue(PQueue &CurQueue, LiveInterval *LI); |
| 284 | LiveInterval *dequeue(PQueue &CurQueue); |
Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 285 | |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 286 | BlockFrequency calcSpillCost(); |
| 287 | bool addSplitConstraints(InterferenceCache::Cursor, BlockFrequency&); |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 288 | void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>); |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 289 | void growRegion(GlobalSplitCandidate &Cand); |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 290 | BlockFrequency calcGlobalSplitCost(GlobalSplitCandidate&); |
Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 291 | bool calcCompactRegion(GlobalSplitCandidate&); |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 292 | void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 293 | void calcGapWeights(unsigned, SmallVectorImpl<float>&); |
Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 294 | unsigned canReassign(LiveInterval &VirtReg, unsigned PhysReg); |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 295 | bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool); |
| 296 | bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&); |
| 297 | void evictInterference(LiveInterval&, unsigned, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 298 | SmallVectorImpl<unsigned>&); |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 299 | bool mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg, |
| 300 | SmallLISet &RecoloringCandidates, |
| 301 | const SmallVirtRegSet &FixedRegisters); |
Jakob Stoklund Olesen | 3d7b806 | 2010-12-14 00:37:44 +0000 | [diff] [blame] | 302 | |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 303 | unsigned tryAssign(LiveInterval&, AllocationOrder&, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 304 | SmallVectorImpl<unsigned>&); |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 305 | unsigned tryEvict(LiveInterval&, AllocationOrder&, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 306 | SmallVectorImpl<unsigned>&, unsigned = ~0u); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 307 | unsigned tryRegionSplit(LiveInterval&, AllocationOrder&, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 308 | SmallVectorImpl<unsigned>&); |
Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 309 | unsigned tryBlockSplit(LiveInterval&, AllocationOrder&, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 310 | SmallVectorImpl<unsigned>&); |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 311 | unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 312 | SmallVectorImpl<unsigned>&); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 313 | unsigned tryLocalSplit(LiveInterval&, AllocationOrder&, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 314 | SmallVectorImpl<unsigned>&); |
Jakob Stoklund Olesen | 3d7b806 | 2010-12-14 00:37:44 +0000 | [diff] [blame] | 315 | unsigned trySplit(LiveInterval&, AllocationOrder&, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 316 | SmallVectorImpl<unsigned>&); |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 317 | unsigned tryLastChanceRecoloring(LiveInterval &, AllocationOrder &, |
| 318 | SmallVectorImpl<unsigned> &, |
| 319 | SmallVirtRegSet &, unsigned); |
| 320 | bool tryRecoloringCandidates(PQueue &, SmallVectorImpl<unsigned> &, |
| 321 | SmallVirtRegSet &, unsigned); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 322 | }; |
| 323 | } // end anonymous namespace |
| 324 | |
| 325 | char RAGreedy::ID = 0; |
| 326 | |
Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 327 | #ifndef NDEBUG |
| 328 | const char *const RAGreedy::StageName[] = { |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 329 | "RS_New", |
| 330 | "RS_Assign", |
| 331 | "RS_Split", |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 332 | "RS_Split2", |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 333 | "RS_Spill", |
| 334 | "RS_Done" |
Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 335 | }; |
| 336 | #endif |
| 337 | |
Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 338 | // Hysteresis to use when comparing floats. |
| 339 | // This helps stabilize decisions based on float comparisons. |
NAKAMURA Takumi | a71003a | 2014-02-04 06:29:38 +0000 | [diff] [blame] | 340 | const float Hysteresis = (2007 / 2048.0f); // 0.97998046875 |
Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 341 | |
| 342 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 343 | FunctionPass* llvm::createGreedyRegisterAllocator() { |
| 344 | return new RAGreedy(); |
| 345 | } |
| 346 | |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 347 | RAGreedy::RAGreedy(): MachineFunctionPass(ID) { |
Jakob Stoklund Olesen | 6aa0fbf | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 348 | initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 349 | initializeSlotIndexesPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 350 | initializeLiveIntervalsPass(*PassRegistry::getPassRegistry()); |
| 351 | initializeSlotIndexesPass(*PassRegistry::getPassRegistry()); |
Rafael Espindola | 676c405 | 2011-06-26 22:34:10 +0000 | [diff] [blame] | 352 | initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry()); |
Andrew Trick | e1c034f | 2012-01-17 06:55:03 +0000 | [diff] [blame] | 353 | initializeMachineSchedulerPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 354 | initializeLiveStacksPass(*PassRegistry::getPassRegistry()); |
| 355 | initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry()); |
| 356 | initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry()); |
| 357 | initializeVirtRegMapPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 358 | initializeLiveRegMatrixPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 359 | initializeEdgeBundlesPass(*PassRegistry::getPassRegistry()); |
| 360 | initializeSpillPlacementPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const { |
| 364 | AU.setPreservesCFG(); |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 365 | AU.addRequired<MachineBlockFrequencyInfo>(); |
| 366 | AU.addPreserved<MachineBlockFrequencyInfo>(); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 367 | AU.addRequired<AliasAnalysis>(); |
| 368 | AU.addPreserved<AliasAnalysis>(); |
| 369 | AU.addRequired<LiveIntervals>(); |
Jakob Stoklund Olesen | 1224312 | 2012-06-08 23:44:45 +0000 | [diff] [blame] | 370 | AU.addPreserved<LiveIntervals>(); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 371 | AU.addRequired<SlotIndexes>(); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 372 | AU.addPreserved<SlotIndexes>(); |
Jakob Stoklund Olesen | 6aa0fbf | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 373 | AU.addRequired<LiveDebugVariables>(); |
| 374 | AU.addPreserved<LiveDebugVariables>(); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 375 | AU.addRequired<LiveStacks>(); |
| 376 | AU.addPreserved<LiveStacks>(); |
Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 377 | AU.addRequired<MachineDominatorTree>(); |
| 378 | AU.addPreserved<MachineDominatorTree>(); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 379 | AU.addRequired<MachineLoopInfo>(); |
| 380 | AU.addPreserved<MachineLoopInfo>(); |
| 381 | AU.addRequired<VirtRegMap>(); |
| 382 | AU.addPreserved<VirtRegMap>(); |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 383 | AU.addRequired<LiveRegMatrix>(); |
| 384 | AU.addPreserved<LiveRegMatrix>(); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 385 | AU.addRequired<EdgeBundles>(); |
| 386 | AU.addRequired<SpillPlacement>(); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 387 | MachineFunctionPass::getAnalysisUsage(AU); |
| 388 | } |
| 389 | |
Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 390 | |
| 391 | //===----------------------------------------------------------------------===// |
| 392 | // LiveRangeEdit delegate methods |
| 393 | //===----------------------------------------------------------------------===// |
| 394 | |
Jakob Stoklund Olesen | 43a8750 | 2011-03-13 01:23:11 +0000 | [diff] [blame] | 395 | bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) { |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 396 | if (VRM->hasPhys(VirtReg)) { |
| 397 | Matrix->unassign(LIS->getInterval(VirtReg)); |
Jakob Stoklund Olesen | 43a8750 | 2011-03-13 01:23:11 +0000 | [diff] [blame] | 398 | return true; |
| 399 | } |
| 400 | // Unassigned virtreg is probably in the priority queue. |
| 401 | // RegAllocBase will erase it after dequeueing. |
| 402 | return false; |
| 403 | } |
Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 404 | |
Jakob Stoklund Olesen | e14b2b2 | 2011-03-16 22:56:16 +0000 | [diff] [blame] | 405 | void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) { |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 406 | if (!VRM->hasPhys(VirtReg)) |
Jakob Stoklund Olesen | e14b2b2 | 2011-03-16 22:56:16 +0000 | [diff] [blame] | 407 | return; |
| 408 | |
| 409 | // Register is assigned, put it back on the queue for reassignment. |
| 410 | LiveInterval &LI = LIS->getInterval(VirtReg); |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 411 | Matrix->unassign(LI); |
Jakob Stoklund Olesen | e14b2b2 | 2011-03-16 22:56:16 +0000 | [diff] [blame] | 412 | enqueue(&LI); |
| 413 | } |
| 414 | |
Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 415 | void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) { |
Jakob Stoklund Olesen | 811b9c4 | 2011-09-14 17:34:37 +0000 | [diff] [blame] | 416 | // Cloning a register we haven't even heard about yet? Just ignore it. |
| 417 | if (!ExtraRegInfo.inBounds(Old)) |
| 418 | return; |
| 419 | |
Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 420 | // LRE may clone a virtual register because dead code elimination causes it to |
Jakob Stoklund Olesen | 5387bd3 | 2011-07-26 00:54:56 +0000 | [diff] [blame] | 421 | // be split into connected components. The new components are much smaller |
| 422 | // than the original, so they should get a new chance at being assigned. |
Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 423 | // same stage as the parent. |
Jakob Stoklund Olesen | 5387bd3 | 2011-07-26 00:54:56 +0000 | [diff] [blame] | 424 | ExtraRegInfo[Old].Stage = RS_Assign; |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 425 | ExtraRegInfo.grow(New); |
| 426 | ExtraRegInfo[New] = ExtraRegInfo[Old]; |
Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 429 | void RAGreedy::releaseMemory() { |
| 430 | SpillerInstance.reset(0); |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 431 | ExtraRegInfo.clear(); |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 432 | GlobalCand.clear(); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 433 | } |
| 434 | |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 435 | void RAGreedy::enqueue(LiveInterval *LI) { enqueue(Queue, LI); } |
| 436 | |
| 437 | void RAGreedy::enqueue(PQueue &CurQueue, LiveInterval *LI) { |
Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 438 | // Prioritize live ranges by size, assigning larger ranges first. |
| 439 | // The queue holds (size, reg) pairs. |
Jakob Stoklund Olesen | e68a27e | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 440 | const unsigned Size = LI->getSize(); |
| 441 | const unsigned Reg = LI->reg; |
Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 442 | assert(TargetRegisterInfo::isVirtualRegister(Reg) && |
| 443 | "Can only enqueue virtual registers"); |
Jakob Stoklund Olesen | e68a27e | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 444 | unsigned Prio; |
Jakob Stoklund Olesen | eaa650a | 2010-12-08 22:57:16 +0000 | [diff] [blame] | 445 | |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 446 | ExtraRegInfo.grow(Reg); |
| 447 | if (ExtraRegInfo[Reg].Stage == RS_New) |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 448 | ExtraRegInfo[Reg].Stage = RS_Assign; |
Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 449 | |
Jakob Stoklund Olesen | cad845f | 2011-07-28 20:48:23 +0000 | [diff] [blame] | 450 | if (ExtraRegInfo[Reg].Stage == RS_Split) { |
Jakob Stoklund Olesen | 28d79cd | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 451 | // Unsplit ranges that couldn't be allocated immediately are deferred until |
Jakob Stoklund Olesen | 45df7e0 | 2011-09-12 16:54:42 +0000 | [diff] [blame] | 452 | // everything else has been allocated. |
| 453 | Prio = Size; |
Jakob Stoklund Olesen | cad845f | 2011-07-28 20:48:23 +0000 | [diff] [blame] | 454 | } else { |
Andrew Trick | 52a0093 | 2014-02-26 22:07:26 +0000 | [diff] [blame] | 455 | // Giant live ranges fall back to the global assignment heuristic, which |
| 456 | // prevents excessive spilling in pathological cases. |
| 457 | bool ReverseLocal = TRI->reverseLocalAssignment(); |
Andrew Trick | b1531e5 | 2014-02-27 21:37:33 +0000 | [diff] [blame] | 458 | bool ForceGlobal = !ReverseLocal && TRI->mayOverrideLocalAssignment() && |
Andrew Trick | 52a0093 | 2014-02-26 22:07:26 +0000 | [diff] [blame] | 459 | (Size / SlotIndex::InstrDist) > (2 * MRI->getRegClass(Reg)->getNumRegs()); |
| 460 | |
| 461 | if (ExtraRegInfo[Reg].Stage == RS_Assign && !ForceGlobal && !LI->empty() && |
Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 462 | LIS->intervalIsInOneMBB(*LI)) { |
| 463 | // Allocate original local ranges in linear instruction order. Since they |
| 464 | // are singly defined, this produces optimal coloring in the absence of |
| 465 | // global interference and other constraints. |
Andrew Trick | 52a0093 | 2014-02-26 22:07:26 +0000 | [diff] [blame] | 466 | if (!ReverseLocal) |
Andrew Trick | 2d8826a | 2013-12-11 03:40:15 +0000 | [diff] [blame] | 467 | Prio = LI->beginIndex().getInstrDistance(Indexes->getLastIndex()); |
| 468 | else { |
| 469 | // Allocating bottom up may allow many short LRGs to be assigned first |
| 470 | // to one of the cheap registers. This could be much faster for very |
| 471 | // large blocks on targets with many physical registers. |
| 472 | Prio = Indexes->getZeroIndex().getInstrDistance(LI->beginIndex()); |
| 473 | } |
Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 474 | } |
| 475 | else { |
| 476 | // Allocate global and split ranges in long->short order. Long ranges that |
| 477 | // don't fit should be spilled (or split) ASAP so they don't create |
| 478 | // interference. Mark a bit to prioritize global above local ranges. |
| 479 | Prio = (1u << 29) + Size; |
| 480 | } |
| 481 | // Mark a higher bit to prioritize global and local above RS_Split. |
| 482 | Prio |= (1u << 31); |
Jakob Stoklund Olesen | b51f65c | 2011-02-23 00:56:56 +0000 | [diff] [blame] | 483 | |
Jakob Stoklund Olesen | 28d79cd | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 484 | // Boost ranges that have a physical register hint. |
Jakob Stoklund Olesen | 74052b0 | 2012-12-03 23:23:50 +0000 | [diff] [blame] | 485 | if (VRM->hasKnownPreference(Reg)) |
Jakob Stoklund Olesen | 28d79cd | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 486 | Prio |= (1u << 30); |
| 487 | } |
Andrew Trick | f4b1ee3 | 2013-07-25 18:35:22 +0000 | [diff] [blame] | 488 | // The virtual register number is a tie breaker for same-sized ranges. |
| 489 | // Give lower vreg numbers higher priority to assign them first. |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 490 | CurQueue.push(std::make_pair(Prio, ~Reg)); |
Jakob Stoklund Olesen | eaa650a | 2010-12-08 22:57:16 +0000 | [diff] [blame] | 491 | } |
| 492 | |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 493 | LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); } |
| 494 | |
| 495 | LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) { |
| 496 | if (CurQueue.empty()) |
Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 497 | return 0; |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 498 | LiveInterval *LI = &LIS->getInterval(~CurQueue.top().second); |
| 499 | CurQueue.pop(); |
Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 500 | return LI; |
| 501 | } |
Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 502 | |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 503 | |
| 504 | //===----------------------------------------------------------------------===// |
| 505 | // Direct Assignment |
| 506 | //===----------------------------------------------------------------------===// |
| 507 | |
| 508 | /// tryAssign - Try to assign VirtReg to an available register. |
| 509 | unsigned RAGreedy::tryAssign(LiveInterval &VirtReg, |
| 510 | AllocationOrder &Order, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 511 | SmallVectorImpl<unsigned> &NewVRegs) { |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 512 | Order.rewind(); |
| 513 | unsigned PhysReg; |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 514 | while ((PhysReg = Order.next())) |
| 515 | if (!Matrix->checkInterference(VirtReg, PhysReg)) |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 516 | break; |
Jakob Stoklund Olesen | 3cb2cb8 | 2012-12-04 22:25:16 +0000 | [diff] [blame] | 517 | if (!PhysReg || Order.isHint()) |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 518 | return PhysReg; |
| 519 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 520 | // PhysReg is available, but there may be a better choice. |
| 521 | |
| 522 | // If we missed a simple hint, try to cheaply evict interference from the |
| 523 | // preferred register. |
| 524 | if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg)) |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 525 | if (Order.isHint(Hint)) { |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 526 | DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n'); |
Andrew Trick | 3621b8a | 2013-11-22 19:07:38 +0000 | [diff] [blame] | 527 | EvictionCost MaxCost; |
| 528 | MaxCost.setBrokenHints(1); |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 529 | if (canEvictInterference(VirtReg, Hint, true, MaxCost)) { |
| 530 | evictInterference(VirtReg, Hint, NewVRegs); |
| 531 | return Hint; |
| 532 | } |
| 533 | } |
| 534 | |
| 535 | // Try to evict interference from a cheaper alternative. |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 536 | unsigned Cost = TRI->getCostPerUse(PhysReg); |
| 537 | |
| 538 | // Most registers have 0 additional cost. |
| 539 | if (!Cost) |
| 540 | return PhysReg; |
| 541 | |
| 542 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost |
| 543 | << '\n'); |
| 544 | unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost); |
| 545 | return CheapReg ? CheapReg : PhysReg; |
| 546 | } |
| 547 | |
| 548 | |
Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 549 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 550 | // Interference eviction |
| 551 | //===----------------------------------------------------------------------===// |
| 552 | |
Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 553 | unsigned RAGreedy::canReassign(LiveInterval &VirtReg, unsigned PrevReg) { |
| 554 | AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo); |
| 555 | unsigned PhysReg; |
| 556 | while ((PhysReg = Order.next())) { |
| 557 | if (PhysReg == PrevReg) |
| 558 | continue; |
| 559 | |
| 560 | MCRegUnitIterator Units(PhysReg, TRI); |
| 561 | for (; Units.isValid(); ++Units) { |
| 562 | // Instantiate a "subquery", not to be confused with the Queries array. |
| 563 | LiveIntervalUnion::Query subQ(&VirtReg, &Matrix->getLiveUnions()[*Units]); |
| 564 | if (subQ.checkInterference()) |
| 565 | break; |
| 566 | } |
| 567 | // If no units have interference, break out with the current PhysReg. |
| 568 | if (!Units.isValid()) |
| 569 | break; |
| 570 | } |
| 571 | if (PhysReg) |
| 572 | DEBUG(dbgs() << "can reassign: " << VirtReg << " from " |
| 573 | << PrintReg(PrevReg, TRI) << " to " << PrintReg(PhysReg, TRI) |
| 574 | << '\n'); |
| 575 | return PhysReg; |
| 576 | } |
| 577 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 578 | /// shouldEvict - determine if A should evict the assigned live range B. The |
| 579 | /// eviction policy defined by this function together with the allocation order |
| 580 | /// defined by enqueue() decides which registers ultimately end up being split |
| 581 | /// and spilled. |
Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 582 | /// |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 583 | /// Cascade numbers are used to prevent infinite loops if this function is a |
| 584 | /// cyclic relation. |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 585 | /// |
| 586 | /// @param A The live range to be assigned. |
| 587 | /// @param IsHint True when A is about to be assigned to its preferred |
| 588 | /// register. |
| 589 | /// @param B The live range to be evicted. |
| 590 | /// @param BreaksHint True when B is already assigned to its preferred register. |
| 591 | bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint, |
| 592 | LiveInterval &B, bool BreaksHint) { |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 593 | bool CanSplit = getStage(B) < RS_Spill; |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 594 | |
| 595 | // Be fairly aggressive about following hints as long as the evictee can be |
| 596 | // split. |
| 597 | if (CanSplit && IsHint && !BreaksHint) |
| 598 | return true; |
| 599 | |
Andrew Trick | 059e800 | 2013-11-22 19:07:42 +0000 | [diff] [blame] | 600 | if (A.weight > B.weight) { |
| 601 | DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight << '\n'); |
| 602 | return true; |
| 603 | } |
| 604 | return false; |
Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 605 | } |
| 606 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 607 | /// canEvictInterference - Return true if all interferences between VirtReg and |
Manman Ren | fa32ca1 | 2014-02-25 19:47:15 +0000 | [diff] [blame] | 608 | /// PhysReg can be evicted. |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 609 | /// |
| 610 | /// @param VirtReg Live range that is about to be assigned. |
| 611 | /// @param PhysReg Desired register for assignment. |
Dmitri Gribenko | 881929c | 2012-09-12 16:59:47 +0000 | [diff] [blame] | 612 | /// @param IsHint True when PhysReg is VirtReg's preferred register. |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 613 | /// @param MaxCost Only look for cheaper candidates and update with new cost |
| 614 | /// when returning true. |
| 615 | /// @returns True when interference can be evicted cheaper than MaxCost. |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 616 | bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg, |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 617 | bool IsHint, EvictionCost &MaxCost) { |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 618 | // It is only possible to evict virtual register interference. |
| 619 | if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg) |
| 620 | return false; |
| 621 | |
Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 622 | bool IsLocal = LIS->intervalIsInOneMBB(VirtReg); |
| 623 | |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 624 | // Find VirtReg's cascade number. This will be unassigned if VirtReg was never |
| 625 | // involved in an eviction before. If a cascade number was assigned, deny |
| 626 | // evicting anything with the same or a newer cascade number. This prevents |
| 627 | // infinite eviction loops. |
| 628 | // |
| 629 | // This works out so a register without a cascade number is allowed to evict |
| 630 | // anything, and it can be evicted by anything. |
| 631 | unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade; |
| 632 | if (!Cascade) |
| 633 | Cascade = NextCascade; |
| 634 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 635 | EvictionCost Cost; |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 636 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 637 | LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units); |
Jakob Stoklund Olesen | 0f175eb | 2011-04-11 21:47:01 +0000 | [diff] [blame] | 638 | // If there is 10 or more interferences, chances are one is heavier. |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 639 | if (Q.collectInterferingVRegs(10) >= 10) |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 640 | return false; |
| 641 | |
Jakob Stoklund Olesen | 0f175eb | 2011-04-11 21:47:01 +0000 | [diff] [blame] | 642 | // Check if any interfering live range is heavier than MaxWeight. |
| 643 | for (unsigned i = Q.interferingVRegs().size(); i; --i) { |
| 644 | LiveInterval *Intf = Q.interferingVRegs()[i - 1]; |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 645 | assert(TargetRegisterInfo::isVirtualRegister(Intf->reg) && |
| 646 | "Only expecting virtual register interference from query"); |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 647 | // Never evict spill products. They cannot split or spill. |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 648 | if (getStage(*Intf) == RS_Done) |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 649 | return false; |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 650 | // Once a live range becomes small enough, it is urgent that we find a |
| 651 | // register for it. This is indicated by an infinite spill weight. These |
| 652 | // urgent live ranges get to evict almost anything. |
Jakob Stoklund Olesen | 05e2245 | 2012-05-30 21:46:58 +0000 | [diff] [blame] | 653 | // |
| 654 | // Also allow urgent evictions of unspillable ranges from a strictly |
| 655 | // larger allocation order. |
| 656 | bool Urgent = !VirtReg.isSpillable() && |
| 657 | (Intf->isSpillable() || |
| 658 | RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(VirtReg.reg)) < |
| 659 | RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(Intf->reg))); |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 660 | // Only evict older cascades or live ranges without a cascade. |
| 661 | unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade; |
| 662 | if (Cascade <= IntfCascade) { |
| 663 | if (!Urgent) |
| 664 | return false; |
| 665 | // We permit breaking cascades for urgent evictions. It should be the |
| 666 | // last resort, though, so make it really expensive. |
| 667 | Cost.BrokenHints += 10; |
| 668 | } |
| 669 | // Would this break a satisfied hint? |
| 670 | bool BreaksHint = VRM->hasPreferredPhys(Intf->reg); |
| 671 | // Update eviction cost. |
| 672 | Cost.BrokenHints += BreaksHint; |
| 673 | Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight); |
| 674 | // Abort if this would be too expensive. |
| 675 | if (!(Cost < MaxCost)) |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 676 | return false; |
Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 677 | if (Urgent) |
| 678 | continue; |
Andrew Trick | c2ab53a | 2013-11-29 23:49:38 +0000 | [diff] [blame] | 679 | // Apply the eviction policy for non-urgent evictions. |
| 680 | if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint)) |
| 681 | return false; |
Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 682 | // If !MaxCost.isMax(), then we're just looking for a cheap register. |
| 683 | // Evicting another local live range in this case could lead to suboptimal |
| 684 | // coloring. |
Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 685 | if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) && |
| 686 | !canReassign(*Intf, PhysReg)) { |
Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 687 | return false; |
Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 688 | } |
Jakob Stoklund Olesen | 1305bc0 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 689 | } |
| 690 | } |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 691 | MaxCost = Cost; |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 692 | return true; |
| 693 | } |
Jakob Stoklund Olesen | 1305bc0 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 694 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 695 | /// evictInterference - Evict any interferring registers that prevent VirtReg |
| 696 | /// from being assigned to Physreg. This assumes that canEvictInterference |
| 697 | /// returned true. |
| 698 | void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 699 | SmallVectorImpl<unsigned> &NewVRegs) { |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 700 | // Make sure that VirtReg has a cascade number, and assign that cascade |
| 701 | // number to every evicted register. These live ranges than then only be |
| 702 | // evicted by a newer cascade, preventing infinite loops. |
| 703 | unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade; |
| 704 | if (!Cascade) |
| 705 | Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++; |
| 706 | |
| 707 | DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI) |
| 708 | << " interference: Cascade " << Cascade << '\n'); |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 709 | |
| 710 | // Collect all interfering virtregs first. |
| 711 | SmallVector<LiveInterval*, 8> Intfs; |
| 712 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 713 | LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units); |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 714 | assert(Q.seenAllInterferences() && "Didn't check all interfererences."); |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 715 | ArrayRef<LiveInterval*> IVR = Q.interferingVRegs(); |
| 716 | Intfs.append(IVR.begin(), IVR.end()); |
| 717 | } |
| 718 | |
| 719 | // Evict them second. This will invalidate the queries. |
| 720 | for (unsigned i = 0, e = Intfs.size(); i != e; ++i) { |
| 721 | LiveInterval *Intf = Intfs[i]; |
| 722 | // The same VirtReg may be present in multiple RegUnits. Skip duplicates. |
| 723 | if (!VRM->hasPhys(Intf->reg)) |
| 724 | continue; |
| 725 | Matrix->unassign(*Intf); |
| 726 | assert((ExtraRegInfo[Intf->reg].Cascade < Cascade || |
| 727 | VirtReg.isSpillable() < Intf->isSpillable()) && |
| 728 | "Cannot decrease cascade number, illegal eviction"); |
| 729 | ExtraRegInfo[Intf->reg].Cascade = Cascade; |
| 730 | ++NumEvicted; |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 731 | NewVRegs.push_back(Intf->reg); |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 732 | } |
| 733 | } |
| 734 | |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 735 | /// tryEvict - Try to evict all interferences for a physreg. |
Jakob Stoklund Olesen | e9cc8e9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 736 | /// @param VirtReg Currently unassigned virtual register. |
| 737 | /// @param Order Physregs to try. |
| 738 | /// @return Physreg to assign VirtReg, or 0. |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 739 | unsigned RAGreedy::tryEvict(LiveInterval &VirtReg, |
| 740 | AllocationOrder &Order, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 741 | SmallVectorImpl<unsigned> &NewVRegs, |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 742 | unsigned CostPerUseLimit) { |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 743 | NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled); |
| 744 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 745 | // Keep track of the cheapest interference seen so far. |
Andrew Trick | 3621b8a | 2013-11-22 19:07:38 +0000 | [diff] [blame] | 746 | EvictionCost BestCost; |
| 747 | BestCost.setMax(); |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 748 | unsigned BestPhys = 0; |
Jakob Stoklund Olesen | 3dd236c | 2013-01-12 00:57:44 +0000 | [diff] [blame] | 749 | unsigned OrderLimit = Order.getOrder().size(); |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 750 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 751 | // When we are just looking for a reduced cost per use, don't break any |
| 752 | // hints, and only evict smaller spill weights. |
| 753 | if (CostPerUseLimit < ~0u) { |
| 754 | BestCost.BrokenHints = 0; |
| 755 | BestCost.MaxWeight = VirtReg.weight; |
Jakob Stoklund Olesen | 3dd236c | 2013-01-12 00:57:44 +0000 | [diff] [blame] | 756 | |
| 757 | // Check of any registers in RC are below CostPerUseLimit. |
| 758 | const TargetRegisterClass *RC = MRI->getRegClass(VirtReg.reg); |
| 759 | unsigned MinCost = RegClassInfo.getMinCost(RC); |
| 760 | if (MinCost >= CostPerUseLimit) { |
| 761 | DEBUG(dbgs() << RC->getName() << " minimum cost = " << MinCost |
| 762 | << ", no cheaper registers to be found.\n"); |
| 763 | return 0; |
| 764 | } |
| 765 | |
| 766 | // It is normal for register classes to have a long tail of registers with |
| 767 | // the same cost. We don't need to look at them if they're too expensive. |
| 768 | if (TRI->getCostPerUse(Order.getOrder().back()) >= CostPerUseLimit) { |
| 769 | OrderLimit = RegClassInfo.getLastCostChange(RC); |
| 770 | DEBUG(dbgs() << "Only trying the first " << OrderLimit << " regs.\n"); |
| 771 | } |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 772 | } |
| 773 | |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 774 | Order.rewind(); |
Aditya Nandakumar | 73f3d33 | 2013-12-05 21:18:40 +0000 | [diff] [blame] | 775 | while (unsigned PhysReg = Order.next(OrderLimit)) { |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 776 | if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit) |
| 777 | continue; |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 778 | // The first use of a callee-saved register in a function has cost 1. |
| 779 | // Don't start using a CSR when the CostPerUseLimit is low. |
| 780 | if (CostPerUseLimit == 1) |
| 781 | if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg)) |
| 782 | if (!MRI->isPhysRegUsed(CSR)) { |
| 783 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR " |
| 784 | << PrintReg(CSR, TRI) << '\n'); |
| 785 | continue; |
| 786 | } |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 787 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 788 | if (!canEvictInterference(VirtReg, PhysReg, false, BestCost)) |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 789 | continue; |
| 790 | |
| 791 | // Best so far. |
| 792 | BestPhys = PhysReg; |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 793 | |
Jakob Stoklund Olesen | 9918b33 | 2011-02-25 01:04:22 +0000 | [diff] [blame] | 794 | // Stop if the hint can be used. |
Jakob Stoklund Olesen | 3cb2cb8 | 2012-12-04 22:25:16 +0000 | [diff] [blame] | 795 | if (Order.isHint()) |
Jakob Stoklund Olesen | 9918b33 | 2011-02-25 01:04:22 +0000 | [diff] [blame] | 796 | break; |
Jakob Stoklund Olesen | 1305bc0 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 797 | } |
| 798 | |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 799 | if (!BestPhys) |
| 800 | return 0; |
| 801 | |
Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 802 | evictInterference(VirtReg, BestPhys, NewVRegs); |
Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 803 | return BestPhys; |
Andrew Trick | ccef098 | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 804 | } |
| 805 | |
Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 806 | |
| 807 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 808 | // Region Splitting |
| 809 | //===----------------------------------------------------------------------===// |
| 810 | |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 811 | /// addSplitConstraints - Fill out the SplitConstraints vector based on the |
| 812 | /// interference pattern in Physreg and its aliases. Add the constraints to |
| 813 | /// SpillPlacement and return the static cost of this split in Cost, assuming |
| 814 | /// that all preferences in SplitConstraints are met. |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 815 | /// Return false if there are no bundles with positive bias. |
| 816 | bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf, |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 817 | BlockFrequency &Cost) { |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 818 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 819 | |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 820 | // Reset interference dependent info. |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 821 | SplitConstraints.resize(UseBlocks.size()); |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 822 | BlockFrequency StaticCost = 0; |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 823 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 824 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 825 | SpillPlacement::BlockConstraint &BC = SplitConstraints[i]; |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 826 | |
Jakob Stoklund Olesen | b1b76ad | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 827 | BC.Number = BI.MBB->getNumber(); |
Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 828 | Intf.moveToBlock(BC.Number); |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 829 | BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare; |
| 830 | BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare; |
David Blaikie | 041f1aa | 2013-05-15 07:36:59 +0000 | [diff] [blame] | 831 | BC.ChangesValue = BI.FirstDef.isValid(); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 832 | |
Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 833 | if (!Intf.hasInterference()) |
| 834 | continue; |
| 835 | |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 836 | // Number of spill code instructions to insert. |
| 837 | unsigned Ins = 0; |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 838 | |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 839 | // Interference for the live-in value. |
Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 840 | if (BI.LiveIn) { |
Jakob Stoklund Olesen | 8933907 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 841 | if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number)) |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 842 | BC.Entry = SpillPlacement::MustSpill, ++Ins; |
Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 843 | else if (Intf.first() < BI.FirstInstr) |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 844 | BC.Entry = SpillPlacement::PrefSpill, ++Ins; |
Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 845 | else if (Intf.first() < BI.LastInstr) |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 846 | ++Ins; |
Jakob Stoklund Olesen | f248b20 | 2011-02-08 23:02:58 +0000 | [diff] [blame] | 847 | } |
| 848 | |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 849 | // Interference for the live-out value. |
Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 850 | if (BI.LiveOut) { |
Jakob Stoklund Olesen | d93b0e3 | 2011-04-05 04:20:29 +0000 | [diff] [blame] | 851 | if (Intf.last() >= SA->getLastSplitPoint(BC.Number)) |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 852 | BC.Exit = SpillPlacement::MustSpill, ++Ins; |
Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 853 | else if (Intf.last() > BI.LastInstr) |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 854 | BC.Exit = SpillPlacement::PrefSpill, ++Ins; |
Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 855 | else if (Intf.last() > BI.FirstInstr) |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 856 | ++Ins; |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 857 | } |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 858 | |
| 859 | // Accumulate the total frequency of inserted spill code. |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 860 | while (Ins--) |
| 861 | StaticCost += SpillPlacer->getBlockFrequency(BC.Number); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 862 | } |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 863 | Cost = StaticCost; |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 864 | |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 865 | // Add constraints for use-blocks. Note that these are the only constraints |
| 866 | // that may add a positive bias, it is downhill from here. |
| 867 | SpillPlacer->addConstraints(SplitConstraints); |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 868 | return SpillPlacer->scanActiveBundles(); |
| 869 | } |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 870 | |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 871 | |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 872 | /// addThroughConstraints - Add constraints and links to SpillPlacer from the |
| 873 | /// live-through blocks in Blocks. |
| 874 | void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf, |
| 875 | ArrayRef<unsigned> Blocks) { |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 876 | const unsigned GroupSize = 8; |
| 877 | SpillPlacement::BlockConstraint BCS[GroupSize]; |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 878 | unsigned TBS[GroupSize]; |
| 879 | unsigned B = 0, T = 0; |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 880 | |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 881 | for (unsigned i = 0; i != Blocks.size(); ++i) { |
| 882 | unsigned Number = Blocks[i]; |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 883 | Intf.moveToBlock(Number); |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 884 | |
Jakob Stoklund Olesen | 6d2bbc1 | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 885 | if (!Intf.hasInterference()) { |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 886 | assert(T < GroupSize && "Array overflow"); |
| 887 | TBS[T] = Number; |
| 888 | if (++T == GroupSize) { |
Frits van Bommel | 717d7ed | 2011-07-18 12:00:32 +0000 | [diff] [blame] | 889 | SpillPlacer->addLinks(makeArrayRef(TBS, T)); |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 890 | T = 0; |
| 891 | } |
Jakob Stoklund Olesen | 6d2bbc1 | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 892 | continue; |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 893 | } |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 894 | |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 895 | assert(B < GroupSize && "Array overflow"); |
| 896 | BCS[B].Number = Number; |
| 897 | |
Jakob Stoklund Olesen | 6d2bbc1 | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 898 | // Interference for the live-in value. |
| 899 | if (Intf.first() <= Indexes->getMBBStartIdx(Number)) |
| 900 | BCS[B].Entry = SpillPlacement::MustSpill; |
| 901 | else |
| 902 | BCS[B].Entry = SpillPlacement::PrefSpill; |
| 903 | |
| 904 | // Interference for the live-out value. |
| 905 | if (Intf.last() >= SA->getLastSplitPoint(Number)) |
| 906 | BCS[B].Exit = SpillPlacement::MustSpill; |
| 907 | else |
| 908 | BCS[B].Exit = SpillPlacement::PrefSpill; |
| 909 | |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 910 | if (++B == GroupSize) { |
| 911 | ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B); |
| 912 | SpillPlacer->addConstraints(Array); |
| 913 | B = 0; |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 914 | } |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 915 | } |
| 916 | |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 917 | ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B); |
| 918 | SpillPlacer->addConstraints(Array); |
Frits van Bommel | 717d7ed | 2011-07-18 12:00:32 +0000 | [diff] [blame] | 919 | SpillPlacer->addLinks(makeArrayRef(TBS, T)); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 920 | } |
| 921 | |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 922 | void RAGreedy::growRegion(GlobalSplitCandidate &Cand) { |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 923 | // Keep track of through blocks that have not been added to SpillPlacer. |
| 924 | BitVector Todo = SA->getThroughBlocks(); |
| 925 | SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks; |
| 926 | unsigned AddedTo = 0; |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 927 | #ifndef NDEBUG |
| 928 | unsigned Visited = 0; |
| 929 | #endif |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 930 | |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 931 | for (;;) { |
| 932 | ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive(); |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 933 | // Find new through blocks in the periphery of PrefRegBundles. |
| 934 | for (int i = 0, e = NewBundles.size(); i != e; ++i) { |
| 935 | unsigned Bundle = NewBundles[i]; |
| 936 | // Look at all blocks connected to Bundle in the full graph. |
| 937 | ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle); |
| 938 | for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end(); |
| 939 | I != E; ++I) { |
| 940 | unsigned Block = *I; |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 941 | if (!Todo.test(Block)) |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 942 | continue; |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 943 | Todo.reset(Block); |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 944 | // This is a new through block. Add it to SpillPlacer later. |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 945 | ActiveBlocks.push_back(Block); |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 946 | #ifndef NDEBUG |
| 947 | ++Visited; |
| 948 | #endif |
| 949 | } |
| 950 | } |
| 951 | // Any new blocks to add? |
Jakob Stoklund Olesen | 91f3a30 | 2011-07-05 18:46:42 +0000 | [diff] [blame] | 952 | if (ActiveBlocks.size() == AddedTo) |
| 953 | break; |
Jakob Stoklund Olesen | a953bf1 | 2011-07-23 03:22:33 +0000 | [diff] [blame] | 954 | |
| 955 | // Compute through constraints from the interference, or assume that all |
| 956 | // through blocks prefer spilling when forming compact regions. |
| 957 | ArrayRef<unsigned> NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo); |
| 958 | if (Cand.PhysReg) |
| 959 | addThroughConstraints(Cand.Intf, NewBlocks); |
| 960 | else |
Jakob Stoklund Olesen | 8695452 | 2011-08-03 23:09:38 +0000 | [diff] [blame] | 961 | // Provide a strong negative bias on through blocks to prevent unwanted |
| 962 | // liveness on loop backedges. |
| 963 | SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true); |
Jakob Stoklund Olesen | 91f3a30 | 2011-07-05 18:46:42 +0000 | [diff] [blame] | 964 | AddedTo = ActiveBlocks.size(); |
| 965 | |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 966 | // Perhaps iterating can enable more bundles? |
| 967 | SpillPlacer->iterate(); |
| 968 | } |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 969 | DEBUG(dbgs() << ", v=" << Visited); |
| 970 | } |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 971 | |
Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 972 | /// calcCompactRegion - Compute the set of edge bundles that should be live |
| 973 | /// when splitting the current live range into compact regions. Compact |
| 974 | /// regions can be computed without looking at interference. They are the |
| 975 | /// regions formed by removing all the live-through blocks from the live range. |
| 976 | /// |
| 977 | /// Returns false if the current live range is already compact, or if the |
| 978 | /// compact regions would form single block regions anyway. |
| 979 | bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) { |
| 980 | // Without any through blocks, the live range is already compact. |
| 981 | if (!SA->getNumThroughBlocks()) |
| 982 | return false; |
| 983 | |
| 984 | // Compact regions don't correspond to any physreg. |
| 985 | Cand.reset(IntfCache, 0); |
| 986 | |
| 987 | DEBUG(dbgs() << "Compact region bundles"); |
| 988 | |
| 989 | // Use the spill placer to determine the live bundles. GrowRegion pretends |
| 990 | // that all the through blocks have interference when PhysReg is unset. |
| 991 | SpillPlacer->prepare(Cand.LiveBundles); |
| 992 | |
| 993 | // The static split cost will be zero since Cand.Intf reports no interference. |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 994 | BlockFrequency Cost; |
Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 995 | if (!addSplitConstraints(Cand.Intf, Cost)) { |
| 996 | DEBUG(dbgs() << ", none.\n"); |
| 997 | return false; |
| 998 | } |
| 999 | |
| 1000 | growRegion(Cand); |
| 1001 | SpillPlacer->finish(); |
| 1002 | |
| 1003 | if (!Cand.LiveBundles.any()) { |
| 1004 | DEBUG(dbgs() << ", none.\n"); |
| 1005 | return false; |
| 1006 | } |
| 1007 | |
| 1008 | DEBUG({ |
| 1009 | for (int i = Cand.LiveBundles.find_first(); i>=0; |
| 1010 | i = Cand.LiveBundles.find_next(i)) |
| 1011 | dbgs() << " EB#" << i; |
| 1012 | dbgs() << ".\n"; |
| 1013 | }); |
| 1014 | return true; |
| 1015 | } |
| 1016 | |
Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1017 | /// calcSpillCost - Compute how expensive it would be to split the live range in |
| 1018 | /// SA around all use blocks instead of forming bundle regions. |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1019 | BlockFrequency RAGreedy::calcSpillCost() { |
| 1020 | BlockFrequency Cost = 0; |
Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1021 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1022 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1023 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| 1024 | unsigned Number = BI.MBB->getNumber(); |
| 1025 | // We normally only need one spill instruction - a load or a store. |
| 1026 | Cost += SpillPlacer->getBlockFrequency(Number); |
| 1027 | |
| 1028 | // Unless the value is redefined in the block. |
Jakob Stoklund Olesen | 3c14505 | 2011-08-02 23:04:08 +0000 | [diff] [blame] | 1029 | if (BI.LiveIn && BI.LiveOut && BI.FirstDef) |
| 1030 | Cost += SpillPlacer->getBlockFrequency(Number); |
Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1031 | } |
| 1032 | return Cost; |
| 1033 | } |
| 1034 | |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1035 | /// calcGlobalSplitCost - Return the global split cost of following the split |
| 1036 | /// pattern in LiveBundles. This cost should be added to the local cost of the |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1037 | /// interference pattern in SplitConstraints. |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1038 | /// |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1039 | BlockFrequency RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) { |
| 1040 | BlockFrequency GlobalCost = 0; |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1041 | const BitVector &LiveBundles = Cand.LiveBundles; |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1042 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1043 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1044 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1045 | SpillPlacement::BlockConstraint &BC = SplitConstraints[i]; |
Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1046 | bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)]; |
| 1047 | bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)]; |
| 1048 | unsigned Ins = 0; |
| 1049 | |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1050 | if (BI.LiveIn) |
| 1051 | Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg); |
| 1052 | if (BI.LiveOut) |
| 1053 | Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg); |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1054 | while (Ins--) |
| 1055 | GlobalCost += SpillPlacer->getBlockFrequency(BC.Number); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1056 | } |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1057 | |
Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1058 | for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) { |
| 1059 | unsigned Number = Cand.ActiveBlocks[i]; |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1060 | bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)]; |
| 1061 | bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)]; |
Jakob Stoklund Olesen | 8ce2f43 | 2011-04-06 21:32:41 +0000 | [diff] [blame] | 1062 | if (!RegIn && !RegOut) |
| 1063 | continue; |
| 1064 | if (RegIn && RegOut) { |
| 1065 | // We need double spill code if this block has interference. |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1066 | Cand.Intf.moveToBlock(Number); |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1067 | if (Cand.Intf.hasInterference()) { |
| 1068 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
| 1069 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
| 1070 | } |
Jakob Stoklund Olesen | 8ce2f43 | 2011-04-06 21:32:41 +0000 | [diff] [blame] | 1071 | continue; |
| 1072 | } |
| 1073 | // live-in / stack-out or stack-in live-out. |
| 1074 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1075 | } |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1076 | return GlobalCost; |
| 1077 | } |
| 1078 | |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1079 | /// splitAroundRegion - Split the current live range around the regions |
| 1080 | /// determined by BundleCand and GlobalCand. |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1081 | /// |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1082 | /// Before calling this function, GlobalCand and BundleCand must be initialized |
| 1083 | /// so each bundle is assigned to a valid candidate, or NoCand for the |
| 1084 | /// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor |
| 1085 | /// objects must be initialized for the current live range, and intervals |
| 1086 | /// created for the used candidates. |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1087 | /// |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1088 | /// @param LREdit The LiveRangeEdit object handling the current split. |
| 1089 | /// @param UsedCands List of used GlobalCand entries. Every BundleCand value |
| 1090 | /// must appear in this list. |
| 1091 | void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit, |
| 1092 | ArrayRef<unsigned> UsedCands) { |
| 1093 | // These are the intervals created for new global ranges. We may create more |
| 1094 | // intervals for local ranges. |
| 1095 | const unsigned NumGlobalIntvs = LREdit.size(); |
| 1096 | DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n"); |
| 1097 | assert(NumGlobalIntvs && "No global intervals configured"); |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1098 | |
Jakob Stoklund Olesen | 8627ea9 | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 1099 | // Isolate even single instructions when dealing with a proper sub-class. |
Jakob Stoklund Olesen | 22f37a1 | 2011-08-06 18:20:24 +0000 | [diff] [blame] | 1100 | // That guarantees register class inflation for the stack interval because it |
Jakob Stoklund Olesen | 8627ea9 | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 1101 | // is all copies. |
| 1102 | unsigned Reg = SA->getParent().reg; |
| 1103 | bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg)); |
| 1104 | |
Jakob Stoklund Olesen | adc6a4c | 2011-06-30 01:30:39 +0000 | [diff] [blame] | 1105 | // First handle all the blocks with uses. |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1106 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1107 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1108 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1109 | unsigned Number = BI.MBB->getNumber(); |
| 1110 | unsigned IntvIn = 0, IntvOut = 0; |
| 1111 | SlotIndex IntfIn, IntfOut; |
| 1112 | if (BI.LiveIn) { |
| 1113 | unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)]; |
| 1114 | if (CandIn != NoCand) { |
| 1115 | GlobalSplitCandidate &Cand = GlobalCand[CandIn]; |
| 1116 | IntvIn = Cand.IntvIdx; |
| 1117 | Cand.Intf.moveToBlock(Number); |
| 1118 | IntfIn = Cand.Intf.first(); |
| 1119 | } |
| 1120 | } |
| 1121 | if (BI.LiveOut) { |
| 1122 | unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)]; |
| 1123 | if (CandOut != NoCand) { |
| 1124 | GlobalSplitCandidate &Cand = GlobalCand[CandOut]; |
| 1125 | IntvOut = Cand.IntvIdx; |
| 1126 | Cand.Intf.moveToBlock(Number); |
| 1127 | IntfOut = Cand.Intf.last(); |
| 1128 | } |
| 1129 | } |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1130 | |
Jakob Stoklund Olesen | c70b697 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1131 | // Create separate intervals for isolated blocks with multiple uses. |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1132 | if (!IntvIn && !IntvOut) { |
Jakob Stoklund Olesen | c70b697 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1133 | DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n"); |
Jakob Stoklund Olesen | 8627ea9 | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 1134 | if (SA->shouldSplitSingleBlock(BI, SingleInstrs)) |
Jakob Stoklund Olesen | adc6a4c | 2011-06-30 01:30:39 +0000 | [diff] [blame] | 1135 | SE->splitSingleBlock(BI); |
Jakob Stoklund Olesen | c70b697 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1136 | continue; |
| 1137 | } |
| 1138 | |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1139 | if (IntvIn && IntvOut) |
| 1140 | SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); |
| 1141 | else if (IntvIn) |
| 1142 | SE->splitRegInBlock(BI, IntvIn, IntfIn); |
Jakob Stoklund Olesen | 795da1c | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1143 | else |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1144 | SE->splitRegOutBlock(BI, IntvOut, IntfOut); |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1147 | // Handle live-through blocks. The relevant live-through blocks are stored in |
| 1148 | // the ActiveBlocks list with each candidate. We need to filter out |
| 1149 | // duplicates. |
| 1150 | BitVector Todo = SA->getThroughBlocks(); |
| 1151 | for (unsigned c = 0; c != UsedCands.size(); ++c) { |
| 1152 | ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks; |
| 1153 | for (unsigned i = 0, e = Blocks.size(); i != e; ++i) { |
| 1154 | unsigned Number = Blocks[i]; |
| 1155 | if (!Todo.test(Number)) |
| 1156 | continue; |
| 1157 | Todo.reset(Number); |
| 1158 | |
| 1159 | unsigned IntvIn = 0, IntvOut = 0; |
| 1160 | SlotIndex IntfIn, IntfOut; |
| 1161 | |
| 1162 | unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)]; |
| 1163 | if (CandIn != NoCand) { |
| 1164 | GlobalSplitCandidate &Cand = GlobalCand[CandIn]; |
| 1165 | IntvIn = Cand.IntvIdx; |
| 1166 | Cand.Intf.moveToBlock(Number); |
| 1167 | IntfIn = Cand.Intf.first(); |
| 1168 | } |
| 1169 | |
| 1170 | unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)]; |
| 1171 | if (CandOut != NoCand) { |
| 1172 | GlobalSplitCandidate &Cand = GlobalCand[CandOut]; |
| 1173 | IntvOut = Cand.IntvIdx; |
| 1174 | Cand.Intf.moveToBlock(Number); |
| 1175 | IntfOut = Cand.Intf.last(); |
| 1176 | } |
| 1177 | if (!IntvIn && !IntvOut) |
| 1178 | continue; |
| 1179 | SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); |
| 1180 | } |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1181 | } |
| 1182 | |
Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 1183 | ++NumGlobalSplits; |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1184 | |
Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1185 | SmallVector<unsigned, 8> IntvMap; |
| 1186 | SE->finish(&IntvMap); |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1187 | DebugVars->splitRegister(Reg, LREdit.regs(), *LIS); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1188 | |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1189 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
Jakob Stoklund Olesen | 5cc91b2 | 2011-05-28 02:32:57 +0000 | [diff] [blame] | 1190 | unsigned OrigBlocks = SA->getNumLiveBlocks(); |
Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1191 | |
| 1192 | // Sort out the new intervals created by splitting. We get four kinds: |
| 1193 | // - Remainder intervals should not be split again. |
| 1194 | // - Candidate intervals can be assigned to Cand.PhysReg. |
| 1195 | // - Block-local splits are candidates for local splitting. |
| 1196 | // - DCE leftovers should go back on the queue. |
| 1197 | for (unsigned i = 0, e = LREdit.size(); i != e; ++i) { |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1198 | LiveInterval &Reg = LIS->getInterval(LREdit.get(i)); |
Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1199 | |
| 1200 | // Ignore old intervals from DCE. |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1201 | if (getStage(Reg) != RS_New) |
Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1202 | continue; |
| 1203 | |
| 1204 | // Remainder interval. Don't try splitting again, spill if it doesn't |
| 1205 | // allocate. |
| 1206 | if (IntvMap[i] == 0) { |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1207 | setStage(Reg, RS_Spill); |
Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1208 | continue; |
| 1209 | } |
| 1210 | |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1211 | // Global intervals. Allow repeated splitting as long as the number of live |
| 1212 | // blocks is strictly decreasing. |
| 1213 | if (IntvMap[i] < NumGlobalIntvs) { |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1214 | if (SA->countLiveBlocks(&Reg) >= OrigBlocks) { |
Jakob Stoklund Olesen | eef2327 | 2011-04-26 22:33:12 +0000 | [diff] [blame] | 1215 | DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks |
| 1216 | << " blocks as original.\n"); |
| 1217 | // Don't allow repeated splitting as a safe guard against looping. |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1218 | setStage(Reg, RS_Split2); |
Jakob Stoklund Olesen | eef2327 | 2011-04-26 22:33:12 +0000 | [diff] [blame] | 1219 | } |
| 1220 | continue; |
| 1221 | } |
| 1222 | |
| 1223 | // Other intervals are treated as new. This includes local intervals created |
| 1224 | // for blocks with multiple uses, and anything created by DCE. |
Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1225 | } |
| 1226 | |
Jakob Stoklund Olesen | 28d79cd | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 1227 | if (VerifyEnabled) |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1228 | MF->verify(this, "After splitting live range around region"); |
| 1229 | } |
| 1230 | |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1231 | unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1232 | SmallVectorImpl<unsigned> &NewVRegs) { |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1233 | unsigned NumCands = 0; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1234 | unsigned BestCand = NoCand; |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1235 | BlockFrequency BestCost; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1236 | SmallVector<unsigned, 8> UsedCands; |
| 1237 | |
| 1238 | // Check if we can split this live range around a compact region. |
Jakob Stoklund Olesen | 45df7e0 | 2011-09-12 16:54:42 +0000 | [diff] [blame] | 1239 | bool HasCompact = calcCompactRegion(GlobalCand.front()); |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1240 | if (HasCompact) { |
| 1241 | // Yes, keep GlobalCand[0] as the compact region candidate. |
| 1242 | NumCands = 1; |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1243 | BestCost = BlockFrequency::getMaxFrequency(); |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1244 | } else { |
| 1245 | // No benefit from the compact region, our fallback will be per-block |
| 1246 | // splitting. Make sure we find a solution that is cheaper than spilling. |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1247 | BestCost = calcSpillCost(); |
Michael Gottesman | b78dec8 | 2013-12-14 00:25:45 +0000 | [diff] [blame] | 1248 | DEBUG(dbgs() << "Cost of isolating all blocks = "; |
| 1249 | MBFI->printBlockFreq(dbgs(), BestCost) << '\n'); |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1250 | } |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1251 | |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1252 | Order.rewind(); |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1253 | while (unsigned PhysReg = Order.next()) { |
Jakob Stoklund Olesen | a153ca5 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1254 | // Discard bad candidates before we run out of interference cache cursors. |
| 1255 | // This will only affect register classes with a lot of registers (>32). |
| 1256 | if (NumCands == IntfCache.getMaxCursors()) { |
| 1257 | unsigned WorstCount = ~0u; |
| 1258 | unsigned Worst = 0; |
| 1259 | for (unsigned i = 0; i != NumCands; ++i) { |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1260 | if (i == BestCand || !GlobalCand[i].PhysReg) |
Jakob Stoklund Olesen | a153ca5 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1261 | continue; |
| 1262 | unsigned Count = GlobalCand[i].LiveBundles.count(); |
| 1263 | if (Count < WorstCount) |
| 1264 | Worst = i, WorstCount = Count; |
| 1265 | } |
| 1266 | --NumCands; |
| 1267 | GlobalCand[Worst] = GlobalCand[NumCands]; |
Jakob Stoklund Olesen | 559d4dc | 2011-11-01 00:02:31 +0000 | [diff] [blame] | 1268 | if (BestCand == NumCands) |
| 1269 | BestCand = Worst; |
Jakob Stoklund Olesen | a153ca5 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1270 | } |
| 1271 | |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1272 | if (GlobalCand.size() <= NumCands) |
| 1273 | GlobalCand.resize(NumCands+1); |
| 1274 | GlobalSplitCandidate &Cand = GlobalCand[NumCands]; |
| 1275 | Cand.reset(IntfCache, PhysReg); |
Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1276 | |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1277 | SpillPlacer->prepare(Cand.LiveBundles); |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1278 | BlockFrequency Cost; |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1279 | if (!addSplitConstraints(Cand.Intf, Cost)) { |
Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1280 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n"); |
Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1281 | continue; |
| 1282 | } |
Michael Gottesman | b78dec8 | 2013-12-14 00:25:45 +0000 | [diff] [blame] | 1283 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = "; |
| 1284 | MBFI->printBlockFreq(dbgs(), Cost)); |
Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1285 | if (Cost >= BestCost) { |
| 1286 | DEBUG({ |
| 1287 | if (BestCand == NoCand) |
| 1288 | dbgs() << " worse than no bundles\n"; |
| 1289 | else |
| 1290 | dbgs() << " worse than " |
| 1291 | << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n'; |
| 1292 | }); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1293 | continue; |
Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1294 | } |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1295 | growRegion(Cand); |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1296 | |
Jakob Stoklund Olesen | 36b5d8a | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 1297 | SpillPlacer->finish(); |
| 1298 | |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1299 | // No live bundles, defer to splitSingleBlocks(). |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1300 | if (!Cand.LiveBundles.any()) { |
Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1301 | DEBUG(dbgs() << " no bundles.\n"); |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1302 | continue; |
Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1303 | } |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1304 | |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1305 | Cost += calcGlobalSplitCost(Cand); |
Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1306 | DEBUG({ |
Michael Gottesman | b78dec8 | 2013-12-14 00:25:45 +0000 | [diff] [blame] | 1307 | dbgs() << ", total = "; MBFI->printBlockFreq(dbgs(), Cost) |
| 1308 | << " with bundles"; |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1309 | for (int i = Cand.LiveBundles.find_first(); i>=0; |
| 1310 | i = Cand.LiveBundles.find_next(i)) |
Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1311 | dbgs() << " EB#" << i; |
| 1312 | dbgs() << ".\n"; |
| 1313 | }); |
Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1314 | if (Cost < BestCost) { |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1315 | BestCand = NumCands; |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1316 | BestCost = Cost; |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1317 | } |
Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1318 | ++NumCands; |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1319 | } |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1320 | |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1321 | // No solutions found, fall back to single block splitting. |
| 1322 | if (!HasCompact && BestCand == NoCand) |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1323 | return 0; |
| 1324 | |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1325 | // Prepare split editor. |
Jakob Stoklund Olesen | e5bbe37 | 2012-05-19 05:25:46 +0000 | [diff] [blame] | 1326 | LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this); |
Jakob Stoklund Olesen | eecb2fb | 2011-09-12 16:49:21 +0000 | [diff] [blame] | 1327 | SE->reset(LREdit, SplitSpillMode); |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1328 | |
| 1329 | // Assign all edge bundles to the preferred candidate, or NoCand. |
| 1330 | BundleCand.assign(Bundles->getNumBundles(), NoCand); |
| 1331 | |
| 1332 | // Assign bundles for the best candidate region. |
| 1333 | if (BestCand != NoCand) { |
| 1334 | GlobalSplitCandidate &Cand = GlobalCand[BestCand]; |
| 1335 | if (unsigned B = Cand.getBundles(BundleCand, BestCand)) { |
| 1336 | UsedCands.push_back(BestCand); |
| 1337 | Cand.IntvIdx = SE->openIntv(); |
| 1338 | DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in " |
| 1339 | << B << " bundles, intv " << Cand.IntvIdx << ".\n"); |
Chandler Carruth | 77eb5a0 | 2011-08-03 23:07:27 +0000 | [diff] [blame] | 1340 | (void)B; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1341 | } |
| 1342 | } |
| 1343 | |
| 1344 | // Assign bundles for the compact region. |
| 1345 | if (HasCompact) { |
| 1346 | GlobalSplitCandidate &Cand = GlobalCand.front(); |
| 1347 | assert(!Cand.PhysReg && "Compact region has no physreg"); |
| 1348 | if (unsigned B = Cand.getBundles(BundleCand, 0)) { |
| 1349 | UsedCands.push_back(0); |
| 1350 | Cand.IntvIdx = SE->openIntv(); |
| 1351 | DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv " |
| 1352 | << Cand.IntvIdx << ".\n"); |
Chandler Carruth | 77eb5a0 | 2011-08-03 23:07:27 +0000 | [diff] [blame] | 1353 | (void)B; |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1354 | } |
| 1355 | } |
| 1356 | |
| 1357 | splitAroundRegion(LREdit, UsedCands); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1358 | return 0; |
| 1359 | } |
| 1360 | |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1361 | |
| 1362 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1363 | // Per-Block Splitting |
| 1364 | //===----------------------------------------------------------------------===// |
| 1365 | |
| 1366 | /// tryBlockSplit - Split a global live range around every block with uses. This |
| 1367 | /// creates a lot of local live ranges, that will be split by tryLocalSplit if |
| 1368 | /// they don't allocate. |
| 1369 | unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1370 | SmallVectorImpl<unsigned> &NewVRegs) { |
Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1371 | assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed"); |
| 1372 | unsigned Reg = VirtReg.reg; |
| 1373 | bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg)); |
Jakob Stoklund Olesen | e5bbe37 | 2012-05-19 05:25:46 +0000 | [diff] [blame] | 1374 | LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this); |
Jakob Stoklund Olesen | eecb2fb | 2011-09-12 16:49:21 +0000 | [diff] [blame] | 1375 | SE->reset(LREdit, SplitSpillMode); |
Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1376 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1377 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1378 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| 1379 | if (SA->shouldSplitSingleBlock(BI, SingleInstrs)) |
| 1380 | SE->splitSingleBlock(BI); |
| 1381 | } |
| 1382 | // No blocks were split. |
| 1383 | if (LREdit.empty()) |
| 1384 | return 0; |
| 1385 | |
| 1386 | // We did split for some blocks. |
Jakob Stoklund Olesen | 02cf10b | 2011-08-05 23:50:31 +0000 | [diff] [blame] | 1387 | SmallVector<unsigned, 8> IntvMap; |
| 1388 | SE->finish(&IntvMap); |
Jakob Stoklund Olesen | 0de95ef | 2011-08-05 23:10:40 +0000 | [diff] [blame] | 1389 | |
| 1390 | // Tell LiveDebugVariables about the new ranges. |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1391 | DebugVars->splitRegister(Reg, LREdit.regs(), *LIS); |
Jakob Stoklund Olesen | 0de95ef | 2011-08-05 23:10:40 +0000 | [diff] [blame] | 1392 | |
Jakob Stoklund Olesen | 02cf10b | 2011-08-05 23:50:31 +0000 | [diff] [blame] | 1393 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 1394 | |
| 1395 | // Sort out the new intervals created by splitting. The remainder interval |
| 1396 | // goes straight to spilling, the new local ranges get to stay RS_New. |
| 1397 | for (unsigned i = 0, e = LREdit.size(); i != e; ++i) { |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1398 | LiveInterval &LI = LIS->getInterval(LREdit.get(i)); |
Jakob Stoklund Olesen | 02cf10b | 2011-08-05 23:50:31 +0000 | [diff] [blame] | 1399 | if (getStage(LI) == RS_New && IntvMap[i] == 0) |
| 1400 | setStage(LI, RS_Spill); |
| 1401 | } |
| 1402 | |
Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1403 | if (VerifyEnabled) |
| 1404 | MF->verify(this, "After splitting live range around basic blocks"); |
| 1405 | return 0; |
| 1406 | } |
| 1407 | |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1408 | |
| 1409 | //===----------------------------------------------------------------------===// |
| 1410 | // Per-Instruction Splitting |
| 1411 | //===----------------------------------------------------------------------===// |
| 1412 | |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 1413 | /// Get the number of allocatable registers that match the constraints of \p Reg |
| 1414 | /// on \p MI and that are also in \p SuperRC. |
| 1415 | static unsigned getNumAllocatableRegsForConstraints( |
| 1416 | const MachineInstr *MI, unsigned Reg, const TargetRegisterClass *SuperRC, |
| 1417 | const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, |
| 1418 | const RegisterClassInfo &RCI) { |
| 1419 | assert(SuperRC && "Invalid register class"); |
| 1420 | |
| 1421 | const TargetRegisterClass *ConstrainedRC = |
| 1422 | MI->getRegClassConstraintEffectForVReg(Reg, SuperRC, TII, TRI, |
| 1423 | /* ExploreBundle */ true); |
| 1424 | if (!ConstrainedRC) |
| 1425 | return 0; |
| 1426 | return RCI.getNumAllocatableRegs(ConstrainedRC); |
| 1427 | } |
| 1428 | |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1429 | /// tryInstructionSplit - Split a live range around individual instructions. |
| 1430 | /// This is normally not worthwhile since the spiller is doing essentially the |
| 1431 | /// same thing. However, when the live range is in a constrained register |
| 1432 | /// class, it may help to insert copies such that parts of the live range can |
| 1433 | /// be moved to a larger register class. |
| 1434 | /// |
| 1435 | /// This is similar to spilling to a larger register class. |
| 1436 | unsigned |
| 1437 | RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1438 | SmallVectorImpl<unsigned> &NewVRegs) { |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 1439 | const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg); |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1440 | // There is no point to this if there are no larger sub-classes. |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 1441 | if (!RegClassInfo.isProperSubClass(CurRC)) |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1442 | return 0; |
| 1443 | |
| 1444 | // Always enable split spill mode, since we're effectively spilling to a |
| 1445 | // register. |
| 1446 | LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this); |
| 1447 | SE->reset(LREdit, SplitEditor::SM_Size); |
| 1448 | |
| 1449 | ArrayRef<SlotIndex> Uses = SA->getUseSlots(); |
| 1450 | if (Uses.size() <= 1) |
| 1451 | return 0; |
| 1452 | |
| 1453 | DEBUG(dbgs() << "Split around " << Uses.size() << " individual instrs.\n"); |
| 1454 | |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 1455 | const TargetRegisterClass *SuperRC = TRI->getLargestLegalSuperClass(CurRC); |
| 1456 | unsigned SuperRCNumAllocatableRegs = RCI.getNumAllocatableRegs(SuperRC); |
| 1457 | // Split around every non-copy instruction if this split will relax |
| 1458 | // the constraints on the virtual register. |
| 1459 | // Otherwise, splitting just inserts uncoalescable copies that do not help |
| 1460 | // the allocation. |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1461 | for (unsigned i = 0; i != Uses.size(); ++i) { |
| 1462 | if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i])) |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 1463 | if (MI->isFullCopy() || |
| 1464 | SuperRCNumAllocatableRegs == |
| 1465 | getNumAllocatableRegsForConstraints(MI, VirtReg.reg, SuperRC, TII, |
| 1466 | TRI, RCI)) { |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1467 | DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI); |
| 1468 | continue; |
| 1469 | } |
| 1470 | SE->openIntv(); |
| 1471 | SlotIndex SegStart = SE->enterIntvBefore(Uses[i]); |
| 1472 | SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]); |
| 1473 | SE->useIntv(SegStart, SegStop); |
| 1474 | } |
| 1475 | |
| 1476 | if (LREdit.empty()) { |
| 1477 | DEBUG(dbgs() << "All uses were copies.\n"); |
| 1478 | return 0; |
| 1479 | } |
| 1480 | |
| 1481 | SmallVector<unsigned, 8> IntvMap; |
| 1482 | SE->finish(&IntvMap); |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1483 | DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS); |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1484 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 1485 | |
| 1486 | // Assign all new registers to RS_Spill. This was the last chance. |
| 1487 | setStage(LREdit.begin(), LREdit.end(), RS_Spill); |
| 1488 | return 0; |
| 1489 | } |
| 1490 | |
| 1491 | |
Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1492 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1493 | // Local Splitting |
| 1494 | //===----------------------------------------------------------------------===// |
| 1495 | |
| 1496 | |
| 1497 | /// calcGapWeights - Compute the maximum spill weight that needs to be evicted |
| 1498 | /// in order to use PhysReg between two entries in SA->UseSlots. |
| 1499 | /// |
| 1500 | /// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1]. |
| 1501 | /// |
| 1502 | void RAGreedy::calcGapWeights(unsigned PhysReg, |
| 1503 | SmallVectorImpl<float> &GapWeight) { |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1504 | assert(SA->getUseBlocks().size() == 1 && "Not a local interval"); |
| 1505 | const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front(); |
Jakob Stoklund Olesen | 994fed6 | 2012-01-12 17:53:44 +0000 | [diff] [blame] | 1506 | ArrayRef<SlotIndex> Uses = SA->getUseSlots(); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1507 | const unsigned NumGaps = Uses.size()-1; |
| 1508 | |
| 1509 | // Start and end points for the interference check. |
Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1510 | SlotIndex StartIdx = |
| 1511 | BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr; |
| 1512 | SlotIndex StopIdx = |
| 1513 | BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1514 | |
| 1515 | GapWeight.assign(NumGaps, 0.0f); |
| 1516 | |
| 1517 | // Add interference from each overlapping register. |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1518 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 1519 | if (!Matrix->query(const_cast<LiveInterval&>(SA->getParent()), *Units) |
| 1520 | .checkInterference()) |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1521 | continue; |
| 1522 | |
Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1523 | // We know that VirtReg is a continuous interval from FirstInstr to |
| 1524 | // LastInstr, so we don't need InterferenceQuery. |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1525 | // |
| 1526 | // Interference that overlaps an instruction is counted in both gaps |
| 1527 | // surrounding the instruction. The exception is interference before |
| 1528 | // StartIdx and after StopIdx. |
| 1529 | // |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1530 | LiveIntervalUnion::SegmentIter IntI = |
| 1531 | Matrix->getLiveUnions()[*Units] .find(StartIdx); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1532 | for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) { |
| 1533 | // Skip the gaps before IntI. |
| 1534 | while (Uses[Gap+1].getBoundaryIndex() < IntI.start()) |
| 1535 | if (++Gap == NumGaps) |
| 1536 | break; |
| 1537 | if (Gap == NumGaps) |
| 1538 | break; |
| 1539 | |
| 1540 | // Update the gaps covered by IntI. |
| 1541 | const float weight = IntI.value()->weight; |
| 1542 | for (; Gap != NumGaps; ++Gap) { |
| 1543 | GapWeight[Gap] = std::max(GapWeight[Gap], weight); |
| 1544 | if (Uses[Gap+1].getBaseIndex() >= IntI.stop()) |
| 1545 | break; |
| 1546 | } |
| 1547 | if (Gap == NumGaps) |
| 1548 | break; |
| 1549 | } |
| 1550 | } |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1551 | |
| 1552 | // Add fixed interference. |
| 1553 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1554 | const LiveRange &LR = LIS->getRegUnit(*Units); |
| 1555 | LiveRange::const_iterator I = LR.find(StartIdx); |
| 1556 | LiveRange::const_iterator E = LR.end(); |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1557 | |
| 1558 | // Same loop as above. Mark any overlapped gaps as HUGE_VALF. |
| 1559 | for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) { |
| 1560 | while (Uses[Gap+1].getBoundaryIndex() < I->start) |
| 1561 | if (++Gap == NumGaps) |
| 1562 | break; |
| 1563 | if (Gap == NumGaps) |
| 1564 | break; |
| 1565 | |
| 1566 | for (; Gap != NumGaps; ++Gap) { |
Aaron Ballman | 0499904 | 2013-11-13 00:15:44 +0000 | [diff] [blame] | 1567 | GapWeight[Gap] = llvm::huge_valf; |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1568 | if (Uses[Gap+1].getBaseIndex() >= I->end) |
| 1569 | break; |
| 1570 | } |
| 1571 | if (Gap == NumGaps) |
| 1572 | break; |
| 1573 | } |
| 1574 | } |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1575 | } |
| 1576 | |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1577 | /// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only |
| 1578 | /// basic block. |
| 1579 | /// |
| 1580 | unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1581 | SmallVectorImpl<unsigned> &NewVRegs) { |
Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1582 | assert(SA->getUseBlocks().size() == 1 && "Not a local interval"); |
| 1583 | const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front(); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1584 | |
| 1585 | // Note that it is possible to have an interval that is live-in or live-out |
| 1586 | // while only covering a single block - A phi-def can use undef values from |
| 1587 | // predecessors, and the block could be a single-block loop. |
| 1588 | // We don't bother doing anything clever about such a case, we simply assume |
Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1589 | // that the interval is continuous from FirstInstr to LastInstr. We should |
| 1590 | // make sure that we don't do anything illegal to such an interval, though. |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1591 | |
Jakob Stoklund Olesen | 994fed6 | 2012-01-12 17:53:44 +0000 | [diff] [blame] | 1592 | ArrayRef<SlotIndex> Uses = SA->getUseSlots(); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1593 | if (Uses.size() <= 2) |
| 1594 | return 0; |
| 1595 | const unsigned NumGaps = Uses.size()-1; |
| 1596 | |
| 1597 | DEBUG({ |
| 1598 | dbgs() << "tryLocalSplit: "; |
| 1599 | for (unsigned i = 0, e = Uses.size(); i != e; ++i) |
Jakob Stoklund Olesen | 994fed6 | 2012-01-12 17:53:44 +0000 | [diff] [blame] | 1600 | dbgs() << ' ' << Uses[i]; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1601 | dbgs() << '\n'; |
| 1602 | }); |
| 1603 | |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1604 | // If VirtReg is live across any register mask operands, compute a list of |
| 1605 | // gaps with register masks. |
| 1606 | SmallVector<unsigned, 8> RegMaskGaps; |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1607 | if (Matrix->checkRegMaskInterference(VirtReg)) { |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1608 | // Get regmask slots for the whole block. |
| 1609 | ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber()); |
Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 1610 | DEBUG(dbgs() << RMS.size() << " regmasks in block:"); |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1611 | // Constrain to VirtReg's live range. |
Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 1612 | unsigned ri = std::lower_bound(RMS.begin(), RMS.end(), |
| 1613 | Uses.front().getRegSlot()) - RMS.begin(); |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1614 | unsigned re = RMS.size(); |
| 1615 | for (unsigned i = 0; i != NumGaps && ri != re; ++i) { |
Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 1616 | // Look for Uses[i] <= RMS <= Uses[i+1]. |
| 1617 | assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i])); |
| 1618 | if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri])) |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1619 | continue; |
Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 1620 | // Skip a regmask on the same instruction as the last use. It doesn't |
| 1621 | // overlap the live range. |
| 1622 | if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps) |
| 1623 | break; |
| 1624 | DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]); |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1625 | RegMaskGaps.push_back(i); |
Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 1626 | // Advance ri to the next gap. A regmask on one of the uses counts in |
| 1627 | // both gaps. |
| 1628 | while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1])) |
| 1629 | ++ri; |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1630 | } |
Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 1631 | DEBUG(dbgs() << '\n'); |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1632 | } |
| 1633 | |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1634 | // Since we allow local split results to be split again, there is a risk of |
| 1635 | // creating infinite loops. It is tempting to require that the new live |
| 1636 | // ranges have less instructions than the original. That would guarantee |
| 1637 | // convergence, but it is too strict. A live range with 3 instructions can be |
| 1638 | // split 2+3 (including the COPY), and we want to allow that. |
| 1639 | // |
| 1640 | // Instead we use these rules: |
| 1641 | // |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1642 | // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1643 | // noop split, of course). |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1644 | // 2. Require progress be made for ranges with getStage() == RS_Split2. All |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1645 | // the new ranges must have fewer instructions than before the split. |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1646 | // 3. New ranges with the same number of instructions are marked RS_Split2, |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1647 | // smaller ranges are marked RS_New. |
| 1648 | // |
| 1649 | // These rules allow a 3 -> 2+3 split once, which we need. They also prevent |
| 1650 | // excessive splitting and infinite loops. |
| 1651 | // |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1652 | bool ProgressRequired = getStage(VirtReg) >= RS_Split2; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1653 | |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1654 | // Best split candidate. |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1655 | unsigned BestBefore = NumGaps; |
| 1656 | unsigned BestAfter = 0; |
| 1657 | float BestDiff = 0; |
| 1658 | |
Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1659 | const float blockFreq = |
| 1660 | SpillPlacer->getBlockFrequency(BI.MBB->getNumber()).getFrequency() * |
Michael Gottesman | 5e985ee | 2013-12-14 02:37:38 +0000 | [diff] [blame] | 1661 | (1.0f / MBFI->getEntryFreq()); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1662 | SmallVector<float, 8> GapWeight; |
| 1663 | |
| 1664 | Order.rewind(); |
| 1665 | while (unsigned PhysReg = Order.next()) { |
| 1666 | // Keep track of the largest spill weight that would need to be evicted in |
| 1667 | // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1]. |
| 1668 | calcGapWeights(PhysReg, GapWeight); |
| 1669 | |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1670 | // Remove any gaps with regmask clobbers. |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1671 | if (Matrix->checkRegMaskInterference(VirtReg, PhysReg)) |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1672 | for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i) |
Aaron Ballman | 0499904 | 2013-11-13 00:15:44 +0000 | [diff] [blame] | 1673 | GapWeight[RegMaskGaps[i]] = llvm::huge_valf; |
Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 1674 | |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1675 | // Try to find the best sequence of gaps to close. |
| 1676 | // The new spill weight must be larger than any gap interference. |
| 1677 | |
| 1678 | // We will split before Uses[SplitBefore] and after Uses[SplitAfter]. |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1679 | unsigned SplitBefore = 0, SplitAfter = 1; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1680 | |
| 1681 | // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]). |
| 1682 | // It is the spill weight that needs to be evicted. |
| 1683 | float MaxGap = GapWeight[0]; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1684 | |
| 1685 | for (;;) { |
| 1686 | // Live before/after split? |
| 1687 | const bool LiveBefore = SplitBefore != 0 || BI.LiveIn; |
| 1688 | const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut; |
| 1689 | |
| 1690 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' ' |
| 1691 | << Uses[SplitBefore] << '-' << Uses[SplitAfter] |
| 1692 | << " i=" << MaxGap); |
| 1693 | |
| 1694 | // Stop before the interval gets so big we wouldn't be making progress. |
| 1695 | if (!LiveBefore && !LiveAfter) { |
| 1696 | DEBUG(dbgs() << " all\n"); |
| 1697 | break; |
| 1698 | } |
| 1699 | // Should the interval be extended or shrunk? |
| 1700 | bool Shrink = true; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1701 | |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1702 | // How many gaps would the new range have? |
| 1703 | unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter; |
| 1704 | |
| 1705 | // Legally, without causing looping? |
| 1706 | bool Legal = !ProgressRequired || NewGaps < NumGaps; |
| 1707 | |
Aaron Ballman | 0499904 | 2013-11-13 00:15:44 +0000 | [diff] [blame] | 1708 | if (Legal && MaxGap < llvm::huge_valf) { |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1709 | // Estimate the new spill weight. Each instruction reads or writes the |
| 1710 | // register. Conservatively assume there are no read-modify-write |
| 1711 | // instructions. |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1712 | // |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1713 | // Try to guess the size of the new interval. |
| 1714 | const float EstWeight = normalizeSpillWeight(blockFreq * (NewGaps + 1), |
| 1715 | Uses[SplitBefore].distance(Uses[SplitAfter]) + |
| 1716 | (LiveBefore + LiveAfter)*SlotIndex::InstrDist); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1717 | // Would this split be possible to allocate? |
| 1718 | // Never allocate all gaps, we wouldn't be making progress. |
Jakob Stoklund Olesen | 357dd36 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 1719 | DEBUG(dbgs() << " w=" << EstWeight); |
| 1720 | if (EstWeight * Hysteresis >= MaxGap) { |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1721 | Shrink = false; |
Jakob Stoklund Olesen | 357dd36 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 1722 | float Diff = EstWeight - MaxGap; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1723 | if (Diff > BestDiff) { |
| 1724 | DEBUG(dbgs() << " (best)"); |
Jakob Stoklund Olesen | 357dd36 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 1725 | BestDiff = Hysteresis * Diff; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1726 | BestBefore = SplitBefore; |
| 1727 | BestAfter = SplitAfter; |
| 1728 | } |
| 1729 | } |
| 1730 | } |
| 1731 | |
| 1732 | // Try to shrink. |
| 1733 | if (Shrink) { |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1734 | if (++SplitBefore < SplitAfter) { |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1735 | DEBUG(dbgs() << " shrink\n"); |
| 1736 | // Recompute the max when necessary. |
| 1737 | if (GapWeight[SplitBefore - 1] >= MaxGap) { |
| 1738 | MaxGap = GapWeight[SplitBefore]; |
| 1739 | for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i) |
| 1740 | MaxGap = std::max(MaxGap, GapWeight[i]); |
| 1741 | } |
| 1742 | continue; |
| 1743 | } |
| 1744 | MaxGap = 0; |
| 1745 | } |
| 1746 | |
| 1747 | // Try to extend the interval. |
| 1748 | if (SplitAfter >= NumGaps) { |
| 1749 | DEBUG(dbgs() << " end\n"); |
| 1750 | break; |
| 1751 | } |
| 1752 | |
| 1753 | DEBUG(dbgs() << " extend\n"); |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1754 | MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1755 | } |
| 1756 | } |
| 1757 | |
| 1758 | // Didn't find any candidates? |
| 1759 | if (BestBefore == NumGaps) |
| 1760 | return 0; |
| 1761 | |
| 1762 | DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore] |
| 1763 | << '-' << Uses[BestAfter] << ", " << BestDiff |
| 1764 | << ", " << (BestAfter - BestBefore + 1) << " instrs\n"); |
| 1765 | |
Jakob Stoklund Olesen | e5bbe37 | 2012-05-19 05:25:46 +0000 | [diff] [blame] | 1766 | LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this); |
Jakob Stoklund Olesen | c960198 | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 1767 | SE->reset(LREdit); |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1768 | |
Jakob Stoklund Olesen | c960198 | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 1769 | SE->openIntv(); |
| 1770 | SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]); |
| 1771 | SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]); |
| 1772 | SE->useIntv(SegStart, SegStop); |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1773 | SmallVector<unsigned, 8> IntvMap; |
| 1774 | SE->finish(&IntvMap); |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1775 | DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS); |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1776 | |
| 1777 | // If the new range has the same number of instructions as before, mark it as |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1778 | // RS_Split2 so the next split will be forced to make progress. Otherwise, |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1779 | // leave the new intervals as RS_New so they can compete. |
| 1780 | bool LiveBefore = BestBefore != 0 || BI.LiveIn; |
| 1781 | bool LiveAfter = BestAfter != NumGaps || BI.LiveOut; |
| 1782 | unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter; |
| 1783 | if (NewGaps >= NumGaps) { |
| 1784 | DEBUG(dbgs() << "Tagging non-progress ranges: "); |
| 1785 | assert(!ProgressRequired && "Didn't make progress when it was required."); |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1786 | for (unsigned i = 0, e = IntvMap.size(); i != e; ++i) |
| 1787 | if (IntvMap[i] == 1) { |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1788 | setStage(LIS->getInterval(LREdit.get(i)), RS_Split2); |
| 1789 | DEBUG(dbgs() << PrintReg(LREdit.get(i))); |
Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1790 | } |
| 1791 | DEBUG(dbgs() << '\n'); |
| 1792 | } |
Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 1793 | ++NumLocalSplits; |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1794 | |
| 1795 | return 0; |
| 1796 | } |
| 1797 | |
| 1798 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1799 | // Live Range Splitting |
| 1800 | //===----------------------------------------------------------------------===// |
| 1801 | |
| 1802 | /// trySplit - Try to split VirtReg or one of its interferences, making it |
| 1803 | /// assignable. |
| 1804 | /// @return Physreg when VirtReg may be assigned and/or new NewVRegs. |
| 1805 | unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1806 | SmallVectorImpl<unsigned>&NewVRegs) { |
Jakob Stoklund Olesen | d4bb1d4 | 2011-08-05 23:50:33 +0000 | [diff] [blame] | 1807 | // Ranges must be Split2 or less. |
| 1808 | if (getStage(VirtReg) >= RS_Spill) |
| 1809 | return 0; |
| 1810 | |
Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1811 | // Local intervals are handled separately. |
Jakob Stoklund Olesen | 609bc44 | 2011-02-19 00:38:40 +0000 | [diff] [blame] | 1812 | if (LIS->intervalIsInOneMBB(VirtReg)) { |
| 1813 | NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 1814 | SA->analyze(&VirtReg); |
Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1815 | unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs); |
| 1816 | if (PhysReg || !NewVRegs.empty()) |
| 1817 | return PhysReg; |
| 1818 | return tryInstructionSplit(VirtReg, Order, NewVRegs); |
Jakob Stoklund Olesen | 609bc44 | 2011-02-19 00:38:40 +0000 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1822 | |
Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 1823 | SA->analyze(&VirtReg); |
| 1824 | |
Jakob Stoklund Olesen | eaa6ed1 | 2011-05-03 20:42:13 +0000 | [diff] [blame] | 1825 | // FIXME: SplitAnalysis may repair broken live ranges coming from the |
| 1826 | // coalescer. That may cause the range to become allocatable which means that |
| 1827 | // tryRegionSplit won't be making progress. This check should be replaced with |
| 1828 | // an assertion when the coalescer is fixed. |
| 1829 | if (SA->didRepairRange()) { |
| 1830 | // VirtReg has changed, so all cached queries are invalid. |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1831 | Matrix->invalidateVirtRegs(); |
Jakob Stoklund Olesen | eaa6ed1 | 2011-05-03 20:42:13 +0000 | [diff] [blame] | 1832 | if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) |
| 1833 | return PhysReg; |
| 1834 | } |
| 1835 | |
Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1836 | // First try to split around a region spanning multiple blocks. RS_Split2 |
| 1837 | // ranges already made dubious progress with region splitting, so they go |
| 1838 | // straight to single block splitting. |
| 1839 | if (getStage(VirtReg) < RS_Split2) { |
| 1840 | unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs); |
| 1841 | if (PhysReg || !NewVRegs.empty()) |
| 1842 | return PhysReg; |
| 1843 | } |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1844 | |
Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1845 | // Then isolate blocks. |
| 1846 | return tryBlockSplit(VirtReg, Order, NewVRegs); |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1847 | } |
| 1848 | |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 1849 | //===----------------------------------------------------------------------===// |
| 1850 | // Last Chance Recoloring |
| 1851 | //===----------------------------------------------------------------------===// |
| 1852 | |
| 1853 | /// mayRecolorAllInterferences - Check if the virtual registers that |
| 1854 | /// interfere with \p VirtReg on \p PhysReg (or one of its aliases) may be |
| 1855 | /// recolored to free \p PhysReg. |
| 1856 | /// When true is returned, \p RecoloringCandidates has been augmented with all |
| 1857 | /// the live intervals that need to be recolored in order to free \p PhysReg |
| 1858 | /// for \p VirtReg. |
| 1859 | /// \p FixedRegisters contains all the virtual registers that cannot be |
| 1860 | /// recolored. |
| 1861 | bool |
| 1862 | RAGreedy::mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg, |
| 1863 | SmallLISet &RecoloringCandidates, |
| 1864 | const SmallVirtRegSet &FixedRegisters) { |
| 1865 | const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg); |
| 1866 | |
| 1867 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 1868 | LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units); |
| 1869 | // If there is LastChanceRecoloringMaxInterference or more interferences, |
| 1870 | // chances are one would not be recolorable. |
| 1871 | if (Q.collectInterferingVRegs(LastChanceRecoloringMaxInterference) >= |
| 1872 | LastChanceRecoloringMaxInterference) { |
| 1873 | DEBUG(dbgs() << "Early abort: too many interferences.\n"); |
| 1874 | return false; |
| 1875 | } |
| 1876 | for (unsigned i = Q.interferingVRegs().size(); i; --i) { |
| 1877 | LiveInterval *Intf = Q.interferingVRegs()[i - 1]; |
| 1878 | // If Intf is done and sit on the same register class as VirtReg, |
| 1879 | // it would not be recolorable as it is in the same state as VirtReg. |
| 1880 | if ((getStage(*Intf) == RS_Done && |
| 1881 | MRI->getRegClass(Intf->reg) == CurRC) || |
| 1882 | FixedRegisters.count(Intf->reg)) { |
| 1883 | DEBUG(dbgs() << "Early abort: the inteference is not recolorable.\n"); |
| 1884 | return false; |
| 1885 | } |
| 1886 | RecoloringCandidates.insert(Intf); |
| 1887 | } |
| 1888 | } |
| 1889 | return true; |
| 1890 | } |
| 1891 | |
| 1892 | /// tryLastChanceRecoloring - Try to assign a color to \p VirtReg by recoloring |
| 1893 | /// its interferences. |
| 1894 | /// Last chance recoloring chooses a color for \p VirtReg and recolors every |
| 1895 | /// virtual register that was using it. The recoloring process may recursively |
| 1896 | /// use the last chance recoloring. Therefore, when a virtual register has been |
| 1897 | /// assigned a color by this mechanism, it is marked as Fixed, i.e., it cannot |
| 1898 | /// be last-chance-recolored again during this recoloring "session". |
| 1899 | /// E.g., |
| 1900 | /// Let |
| 1901 | /// vA can use {R1, R2 } |
| 1902 | /// vB can use { R2, R3} |
| 1903 | /// vC can use {R1 } |
| 1904 | /// Where vA, vB, and vC cannot be split anymore (they are reloads for |
| 1905 | /// instance) and they all interfere. |
| 1906 | /// |
| 1907 | /// vA is assigned R1 |
| 1908 | /// vB is assigned R2 |
| 1909 | /// vC tries to evict vA but vA is already done. |
| 1910 | /// Regular register allocation fails. |
| 1911 | /// |
| 1912 | /// Last chance recoloring kicks in: |
| 1913 | /// vC does as if vA was evicted => vC uses R1. |
| 1914 | /// vC is marked as fixed. |
| 1915 | /// vA needs to find a color. |
| 1916 | /// None are available. |
| 1917 | /// vA cannot evict vC: vC is a fixed virtual register now. |
| 1918 | /// vA does as if vB was evicted => vA uses R2. |
| 1919 | /// vB needs to find a color. |
| 1920 | /// R3 is available. |
| 1921 | /// Recoloring => vC = R1, vA = R2, vB = R3 |
| 1922 | /// |
Alp Toker | 70b3699 | 2014-02-25 04:21:15 +0000 | [diff] [blame] | 1923 | /// \p Order defines the preferred allocation order for \p VirtReg. |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 1924 | /// \p NewRegs will contain any new virtual register that have been created |
| 1925 | /// (split, spill) during the process and that must be assigned. |
| 1926 | /// \p FixedRegisters contains all the virtual registers that cannot be |
| 1927 | /// recolored. |
| 1928 | /// \p Depth gives the current depth of the last chance recoloring. |
| 1929 | /// \return a physical register that can be used for VirtReg or ~0u if none |
| 1930 | /// exists. |
| 1931 | unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg, |
| 1932 | AllocationOrder &Order, |
| 1933 | SmallVectorImpl<unsigned> &NewVRegs, |
| 1934 | SmallVirtRegSet &FixedRegisters, |
| 1935 | unsigned Depth) { |
| 1936 | DEBUG(dbgs() << "Try last chance recoloring for " << VirtReg << '\n'); |
| 1937 | // Ranges must be Done. |
Quentin Colombet | 0e3b5e0 | 2014-02-13 05:17:37 +0000 | [diff] [blame] | 1938 | assert((getStage(VirtReg) >= RS_Done || !VirtReg.isSpillable()) && |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 1939 | "Last chance recoloring should really be last chance"); |
| 1940 | // Set the max depth to LastChanceRecoloringMaxDepth. |
| 1941 | // We may want to reconsider that if we end up with a too large search space |
| 1942 | // for target with hundreds of registers. |
| 1943 | // Indeed, in that case we may want to cut the search space earlier. |
| 1944 | if (Depth >= LastChanceRecoloringMaxDepth) { |
| 1945 | DEBUG(dbgs() << "Abort because max depth has been reached.\n"); |
| 1946 | return ~0u; |
| 1947 | } |
| 1948 | |
| 1949 | // Set of Live intervals that will need to be recolored. |
| 1950 | SmallLISet RecoloringCandidates; |
| 1951 | // Record the original mapping virtual register to physical register in case |
| 1952 | // the recoloring fails. |
| 1953 | DenseMap<unsigned, unsigned> VirtRegToPhysReg; |
| 1954 | // Mark VirtReg as fixed, i.e., it will not be recolored pass this point in |
| 1955 | // this recoloring "session". |
| 1956 | FixedRegisters.insert(VirtReg.reg); |
| 1957 | |
| 1958 | Order.rewind(); |
| 1959 | while (unsigned PhysReg = Order.next()) { |
| 1960 | DEBUG(dbgs() << "Try to assign: " << VirtReg << " to " |
| 1961 | << PrintReg(PhysReg, TRI) << '\n'); |
| 1962 | RecoloringCandidates.clear(); |
| 1963 | VirtRegToPhysReg.clear(); |
| 1964 | |
| 1965 | // It is only possible to recolor virtual register interference. |
| 1966 | if (Matrix->checkInterference(VirtReg, PhysReg) > |
| 1967 | LiveRegMatrix::IK_VirtReg) { |
| 1968 | DEBUG(dbgs() << "Some inteferences are not with virtual registers.\n"); |
| 1969 | |
| 1970 | continue; |
| 1971 | } |
| 1972 | |
| 1973 | // Early give up on this PhysReg if it is obvious we cannot recolor all |
| 1974 | // the interferences. |
| 1975 | if (!mayRecolorAllInterferences(PhysReg, VirtReg, RecoloringCandidates, |
| 1976 | FixedRegisters)) { |
| 1977 | DEBUG(dbgs() << "Some inteferences cannot be recolored.\n"); |
| 1978 | continue; |
| 1979 | } |
| 1980 | |
| 1981 | // RecoloringCandidates contains all the virtual registers that interfer |
| 1982 | // with VirtReg on PhysReg (or one of its aliases). |
| 1983 | // Enqueue them for recoloring and perform the actual recoloring. |
| 1984 | PQueue RecoloringQueue; |
| 1985 | for (SmallLISet::iterator It = RecoloringCandidates.begin(), |
| 1986 | EndIt = RecoloringCandidates.end(); |
| 1987 | It != EndIt; ++It) { |
| 1988 | unsigned ItVirtReg = (*It)->reg; |
| 1989 | enqueue(RecoloringQueue, *It); |
| 1990 | assert(VRM->hasPhys(ItVirtReg) && |
| 1991 | "Interferences are supposed to be with allocated vairables"); |
| 1992 | |
| 1993 | // Record the current allocation. |
| 1994 | VirtRegToPhysReg[ItVirtReg] = VRM->getPhys(ItVirtReg); |
| 1995 | // unset the related struct. |
| 1996 | Matrix->unassign(**It); |
| 1997 | } |
| 1998 | |
| 1999 | // Do as if VirtReg was assigned to PhysReg so that the underlying |
| 2000 | // recoloring has the right information about the interferes and |
| 2001 | // available colors. |
| 2002 | Matrix->assign(VirtReg, PhysReg); |
| 2003 | |
| 2004 | // Save the current recoloring state. |
| 2005 | // If we cannot recolor all the interferences, we will have to start again |
| 2006 | // at this point for the next physical register. |
| 2007 | SmallVirtRegSet SaveFixedRegisters(FixedRegisters); |
| 2008 | if (tryRecoloringCandidates(RecoloringQueue, NewVRegs, FixedRegisters, |
| 2009 | Depth)) { |
| 2010 | // Do not mess up with the global assignment process. |
| 2011 | // I.e., VirtReg must be unassigned. |
| 2012 | Matrix->unassign(VirtReg); |
| 2013 | return PhysReg; |
| 2014 | } |
| 2015 | |
| 2016 | DEBUG(dbgs() << "Fail to assign: " << VirtReg << " to " |
| 2017 | << PrintReg(PhysReg, TRI) << '\n'); |
| 2018 | |
| 2019 | // The recoloring attempt failed, undo the changes. |
| 2020 | FixedRegisters = SaveFixedRegisters; |
| 2021 | Matrix->unassign(VirtReg); |
| 2022 | |
| 2023 | for (SmallLISet::iterator It = RecoloringCandidates.begin(), |
| 2024 | EndIt = RecoloringCandidates.end(); |
| 2025 | It != EndIt; ++It) { |
| 2026 | unsigned ItVirtReg = (*It)->reg; |
| 2027 | if (VRM->hasPhys(ItVirtReg)) |
| 2028 | Matrix->unassign(**It); |
| 2029 | Matrix->assign(**It, VirtRegToPhysReg[ItVirtReg]); |
| 2030 | } |
| 2031 | } |
| 2032 | |
| 2033 | // Last chance recoloring did not worked either, give up. |
| 2034 | return ~0u; |
| 2035 | } |
| 2036 | |
| 2037 | /// tryRecoloringCandidates - Try to assign a new color to every register |
| 2038 | /// in \RecoloringQueue. |
| 2039 | /// \p NewRegs will contain any new virtual register created during the |
| 2040 | /// recoloring process. |
| 2041 | /// \p FixedRegisters[in/out] contains all the registers that have been |
| 2042 | /// recolored. |
| 2043 | /// \return true if all virtual registers in RecoloringQueue were successfully |
| 2044 | /// recolored, false otherwise. |
| 2045 | bool RAGreedy::tryRecoloringCandidates(PQueue &RecoloringQueue, |
| 2046 | SmallVectorImpl<unsigned> &NewVRegs, |
| 2047 | SmallVirtRegSet &FixedRegisters, |
| 2048 | unsigned Depth) { |
| 2049 | while (!RecoloringQueue.empty()) { |
| 2050 | LiveInterval *LI = dequeue(RecoloringQueue); |
| 2051 | DEBUG(dbgs() << "Try to recolor: " << *LI << '\n'); |
| 2052 | unsigned PhysReg; |
| 2053 | PhysReg = selectOrSplitImpl(*LI, NewVRegs, FixedRegisters, Depth + 1); |
| 2054 | if (PhysReg == ~0u || !PhysReg) |
| 2055 | return false; |
| 2056 | DEBUG(dbgs() << "Recoloring of " << *LI |
| 2057 | << " succeeded with: " << PrintReg(PhysReg, TRI) << '\n'); |
| 2058 | Matrix->assign(*LI, PhysReg); |
| 2059 | FixedRegisters.insert(LI->reg); |
| 2060 | } |
| 2061 | return true; |
| 2062 | } |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 2063 | |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 2064 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 2065 | // Main Entry Point |
| 2066 | //===----------------------------------------------------------------------===// |
| 2067 | |
| 2068 | unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2069 | SmallVectorImpl<unsigned> &NewVRegs) { |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2070 | SmallVirtRegSet FixedRegisters; |
| 2071 | return selectOrSplitImpl(VirtReg, NewVRegs, FixedRegisters); |
| 2072 | } |
| 2073 | |
| 2074 | unsigned RAGreedy::selectOrSplitImpl(LiveInterval &VirtReg, |
| 2075 | SmallVectorImpl<unsigned> &NewVRegs, |
| 2076 | SmallVirtRegSet &FixedRegisters, |
| 2077 | unsigned Depth) { |
Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 2078 | // First try assigning a free register. |
Jakob Stoklund Olesen | b8bf3c0 | 2011-06-03 20:34:53 +0000 | [diff] [blame] | 2079 | AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo); |
Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 2080 | if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) |
| 2081 | return PhysReg; |
Andrew Trick | ccef098 | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 2082 | |
Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 2083 | LiveRangeStage Stage = getStage(VirtReg); |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 2084 | DEBUG(dbgs() << StageName[Stage] |
| 2085 | << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n'); |
Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 2086 | |
Jakob Stoklund Olesen | e9cc8e9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 2087 | // Try to evict a less worthy live range, but only for ranges from the primary |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 2088 | // queue. The RS_Split ranges already failed to do this, and they should not |
Jakob Stoklund Olesen | e9cc8e9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 2089 | // get a second chance until they have been split. |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 2090 | if (Stage != RS_Split) |
Jakob Stoklund Olesen | e9cc8e9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 2091 | if (unsigned PhysReg = tryEvict(VirtReg, Order, NewVRegs)) |
| 2092 | return PhysReg; |
Andrew Trick | ccef098 | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 2093 | |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 2094 | assert(NewVRegs.empty() && "Cannot append to existing NewVRegs"); |
| 2095 | |
Jakob Stoklund Olesen | e68a27e | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 2096 | // The first time we see a live range, don't try to split or spill. |
| 2097 | // Wait until the second time, when all smaller ranges have been allocated. |
| 2098 | // This gives a better picture of the interference to split around. |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 2099 | if (Stage < RS_Split) { |
| 2100 | setStage(VirtReg, RS_Split); |
Jakob Stoklund Olesen | 8698507 | 2011-03-19 23:02:47 +0000 | [diff] [blame] | 2101 | DEBUG(dbgs() << "wait for second round\n"); |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2102 | NewVRegs.push_back(VirtReg.reg); |
Jakob Stoklund Olesen | e68a27e | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 2103 | return 0; |
| 2104 | } |
| 2105 | |
Jakob Stoklund Olesen | a5c8899 | 2011-05-06 21:58:30 +0000 | [diff] [blame] | 2106 | // If we couldn't allocate a register from spilling, there is probably some |
| 2107 | // invalid inline assembly. The base class wil report it. |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 2108 | if (Stage >= RS_Done || !VirtReg.isSpillable()) |
Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2109 | return tryLastChanceRecoloring(VirtReg, Order, NewVRegs, FixedRegisters, |
| 2110 | Depth); |
Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 2111 | |
Jakob Stoklund Olesen | 903b6d3 | 2010-12-14 00:37:49 +0000 | [diff] [blame] | 2112 | // Try splitting VirtReg or interferences. |
Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 2113 | unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs); |
| 2114 | if (PhysReg || !NewVRegs.empty()) |
Jakob Stoklund Olesen | 3d7b806 | 2010-12-14 00:37:44 +0000 | [diff] [blame] | 2115 | return PhysReg; |
| 2116 | |
Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 2117 | // Finally spill VirtReg itself. |
Jakob Stoklund Olesen | 92da705 | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 2118 | NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | e5bbe37 | 2012-05-19 05:25:46 +0000 | [diff] [blame] | 2119 | LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this); |
Jakob Stoklund Olesen | 4d6eafa | 2011-03-10 01:51:42 +0000 | [diff] [blame] | 2120 | spiller().spill(LRE); |
Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 2121 | setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 2122 | |
Jakob Stoklund Olesen | 557a82c | 2011-03-16 22:56:08 +0000 | [diff] [blame] | 2123 | if (VerifyEnabled) |
| 2124 | MF->verify(this, "After spilling"); |
| 2125 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 2126 | // The live virtual register requesting allocation was spilled, so tell |
| 2127 | // the caller not to allocate anything during this round. |
| 2128 | return 0; |
| 2129 | } |
| 2130 | |
| 2131 | bool RAGreedy::runOnMachineFunction(MachineFunction &mf) { |
| 2132 | DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n" |
David Blaikie | c8c2920 | 2012-08-22 17:18:53 +0000 | [diff] [blame] | 2133 | << "********** Function: " << mf.getName() << '\n'); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 2134 | |
| 2135 | MF = &mf; |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 2136 | TRI = MF->getTarget().getRegisterInfo(); |
| 2137 | TII = MF->getTarget().getInstrInfo(); |
| 2138 | RCI.runOnMachineFunction(mf); |
Jakob Stoklund Olesen | 2e98ee3 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 2139 | if (VerifyEnabled) |
Jakob Stoklund Olesen | bf4550e | 2010-12-18 00:06:56 +0000 | [diff] [blame] | 2140 | MF->verify(this, "Before greedy register allocator"); |
Jakob Stoklund Olesen | 2e98ee3 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 2141 | |
Jakob Stoklund Olesen | 2d2dec9 | 2012-06-20 22:52:29 +0000 | [diff] [blame] | 2142 | RegAllocBase::init(getAnalysis<VirtRegMap>(), |
| 2143 | getAnalysis<LiveIntervals>(), |
| 2144 | getAnalysis<LiveRegMatrix>()); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 2145 | Indexes = &getAnalysis<SlotIndexes>(); |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 2146 | MBFI = &getAnalysis<MachineBlockFrequencyInfo>(); |
Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 2147 | DomTree = &getAnalysis<MachineDominatorTree>(); |
Jakob Stoklund Olesen | adecb5e | 2010-12-10 22:54:44 +0000 | [diff] [blame] | 2148 | SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM)); |
Jakob Stoklund Olesen | e7601e9 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 2149 | Loops = &getAnalysis<MachineLoopInfo>(); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 2150 | Bundles = &getAnalysis<EdgeBundles>(); |
| 2151 | SpillPlacer = &getAnalysis<SpillPlacement>(); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 2152 | DebugVars = &getAnalysis<LiveDebugVariables>(); |
Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 2153 | |
Arnaud A. de Grandmaison | ea3ac16 | 2013-11-11 19:04:45 +0000 | [diff] [blame] | 2154 | calculateSpillWeightsAndHints(*LIS, mf, *Loops, *MBFI); |
Arnaud A. de Grandmaison | 760c1e0 | 2013-11-10 17:46:31 +0000 | [diff] [blame] | 2155 | |
Andrew Trick | 9706496 | 2013-07-25 07:26:26 +0000 | [diff] [blame] | 2156 | DEBUG(LIS->dump()); |
| 2157 | |
Jakob Stoklund Olesen | f1a60a6 | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 2158 | SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops)); |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 2159 | SE.reset(new SplitEditor(*SA, *LIS, *VRM, *DomTree, *MBFI)); |
Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 2160 | ExtraRegInfo.clear(); |
| 2161 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 2162 | NextCascade = 1; |
Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2163 | IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI); |
Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 2164 | GlobalCand.resize(32); // This will grow as needed. |
Jakob Stoklund Olesen | e7601e9 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 2165 | |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 2166 | allocatePhysRegs(); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 2167 | releaseMemory(); |
Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 2168 | return true; |
| 2169 | } |