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