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