Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 1 | //===-- RegAllocGreedy.cpp - greedy register allocator --------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the RAGreedy function pass for register allocation in |
| 11 | // optimized builds. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #define DEBUG_TYPE "regalloc" |
Jakob Stoklund Olesen | dd479e9 | 2010-12-10 22:21:05 +0000 | [diff] [blame] | 16 | #include "AllocationOrder.h" |
Jakob Stoklund Olesen | 5907d86 | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 17 | #include "InterferenceCache.h" |
Jakob Stoklund Olesen | cfafc54 | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 18 | #include "LiveDebugVariables.h" |
Jakob Stoklund Olesen | f428eb6 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 19 | #include "LiveRangeEdit.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 20 | #include "RegAllocBase.h" |
| 21 | #include "Spiller.h" |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 22 | #include "SpillPlacement.h" |
Jakob Stoklund Olesen | d0bb5e2 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 23 | #include "SplitKit.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 24 | #include "VirtRegMap.h" |
Rafael Espindola | fdf16ca | 2011-06-26 21:41:06 +0000 | [diff] [blame] | 25 | #include "RegisterCoalescer.h" |
Jakob Stoklund Olesen | 0db841f | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/Statistic.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/AliasAnalysis.h" |
| 28 | #include "llvm/Function.h" |
| 29 | #include "llvm/PassAnalysisSupport.h" |
| 30 | #include "llvm/CodeGen/CalcSpillWeights.h" |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/EdgeBundles.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
| 33 | #include "llvm/CodeGen/LiveStackAnalysis.h" |
Jakob Stoklund Olesen | f428eb6 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineDominators.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/MachineLoopInfo.h" |
| 37 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 38 | #include "llvm/CodeGen/Passes.h" |
| 39 | #include "llvm/CodeGen/RegAllocRegistry.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 40 | #include "llvm/Target/TargetOptions.h" |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 41 | #include "llvm/Support/CommandLine.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 42 | #include "llvm/Support/Debug.h" |
| 43 | #include "llvm/Support/ErrorHandling.h" |
| 44 | #include "llvm/Support/raw_ostream.h" |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 45 | #include "llvm/Support/Timer.h" |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 46 | |
Jakob Stoklund Olesen | 98d9648 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 47 | #include <queue> |
| 48 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 49 | using namespace llvm; |
| 50 | |
Jakob Stoklund Olesen | 0db841f | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 51 | STATISTIC(NumGlobalSplits, "Number of split global live ranges"); |
| 52 | STATISTIC(NumLocalSplits, "Number of split local live ranges"); |
Jakob Stoklund Olesen | 0db841f | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 53 | STATISTIC(NumEvicted, "Number of interferences evicted"); |
| 54 | |
Jakob Stoklund Olesen | a92afc1 | 2011-08-03 23:16:09 +0000 | [diff] [blame] | 55 | cl::opt<bool> CompactRegions("compact-regions", cl::init(true)); |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 56 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 57 | static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator", |
| 58 | createGreedyRegisterAllocator); |
| 59 | |
| 60 | namespace { |
Jakob Stoklund Olesen | 92a55f4 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 61 | class RAGreedy : public MachineFunctionPass, |
| 62 | public RegAllocBase, |
| 63 | private LiveRangeEdit::Delegate { |
| 64 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 65 | // context |
| 66 | MachineFunction *MF; |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 67 | |
| 68 | // analyses |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 69 | SlotIndexes *Indexes; |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 70 | LiveStacks *LS; |
Jakob Stoklund Olesen | f428eb6 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 71 | MachineDominatorTree *DomTree; |
Jakob Stoklund Olesen | d0bb5e2 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 72 | MachineLoopInfo *Loops; |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 73 | EdgeBundles *Bundles; |
| 74 | SpillPlacement *SpillPlacer; |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 75 | LiveDebugVariables *DebugVars; |
Jakob Stoklund Olesen | f428eb6 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 76 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 77 | // state |
| 78 | std::auto_ptr<Spiller> SpillerInstance; |
Jakob Stoklund Olesen | 98d9648 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 79 | std::priority_queue<std::pair<unsigned, unsigned> > Queue; |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 80 | unsigned NextCascade; |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 81 | |
| 82 | // Live ranges pass through a number of stages as we try to allocate them. |
| 83 | // Some of the stages may also create new live ranges: |
| 84 | // |
| 85 | // - Region splitting. |
| 86 | // - Per-block splitting. |
| 87 | // - Local splitting. |
| 88 | // - Spilling. |
| 89 | // |
| 90 | // Ranges produced by one of the stages skip the previous stages when they are |
| 91 | // dequeued. This improves performance because we can skip interference checks |
| 92 | // that are unlikely to give any results. It also guarantees that the live |
| 93 | // range splitting algorithm terminates, something that is otherwise hard to |
| 94 | // ensure. |
| 95 | enum LiveRangeStage { |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 96 | /// Newly created live range that has never been queued. |
| 97 | RS_New, |
| 98 | |
| 99 | /// Only attempt assignment and eviction. Then requeue as RS_Split. |
| 100 | RS_Assign, |
| 101 | |
| 102 | /// Attempt live range splitting if assignment is impossible. |
| 103 | RS_Split, |
| 104 | |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 105 | /// Attempt more aggressive live range splitting that is guaranteed to make |
| 106 | /// progress. This is used for split products that may not be making |
| 107 | /// progress. |
| 108 | RS_Split2, |
| 109 | |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 110 | /// Live range will be spilled. No more splitting will be attempted. |
| 111 | RS_Spill, |
| 112 | |
| 113 | /// There is nothing more we can do to this live range. Abort compilation |
| 114 | /// if it can't be assigned. |
| 115 | RS_Done |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 116 | }; |
| 117 | |
Jakob Stoklund Olesen | b8d936b | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 118 | static const char *const StageName[]; |
| 119 | |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 120 | // RegInfo - Keep additional information about each live range. |
| 121 | struct RegInfo { |
| 122 | LiveRangeStage Stage; |
| 123 | |
| 124 | // Cascade - Eviction loop prevention. See canEvictInterference(). |
| 125 | unsigned Cascade; |
| 126 | |
| 127 | RegInfo() : Stage(RS_New), Cascade(0) {} |
| 128 | }; |
| 129 | |
| 130 | IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo; |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 131 | |
| 132 | LiveRangeStage getStage(const LiveInterval &VirtReg) const { |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 133 | return ExtraRegInfo[VirtReg.reg].Stage; |
| 134 | } |
| 135 | |
| 136 | void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) { |
| 137 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 138 | ExtraRegInfo[VirtReg.reg].Stage = Stage; |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | template<typename Iterator> |
| 142 | void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) { |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 143 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
Jakob Stoklund Olesen | f22ca3f | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 144 | for (;Begin != End; ++Begin) { |
| 145 | unsigned Reg = (*Begin)->reg; |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 146 | if (ExtraRegInfo[Reg].Stage == RS_New) |
| 147 | ExtraRegInfo[Reg].Stage = NewStage; |
Jakob Stoklund Olesen | f22ca3f | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 148 | } |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 149 | } |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 150 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 151 | /// Cost of evicting interference. |
| 152 | struct EvictionCost { |
| 153 | unsigned BrokenHints; ///< Total number of broken hints. |
| 154 | float MaxWeight; ///< Maximum spill weight evicted. |
| 155 | |
| 156 | EvictionCost(unsigned B = 0) : BrokenHints(B), MaxWeight(0) {} |
| 157 | |
| 158 | bool operator<(const EvictionCost &O) const { |
| 159 | if (BrokenHints != O.BrokenHints) |
| 160 | return BrokenHints < O.BrokenHints; |
| 161 | return MaxWeight < O.MaxWeight; |
| 162 | } |
| 163 | }; |
| 164 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 165 | // splitting state. |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 166 | std::auto_ptr<SplitAnalysis> SA; |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 167 | std::auto_ptr<SplitEditor> SE; |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 168 | |
Jakob Stoklund Olesen | eda0fe8 | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 169 | /// Cached per-block interference maps |
| 170 | InterferenceCache IntfCache; |
| 171 | |
Jakob Stoklund Olesen | 7b41fbe | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 172 | /// All basic blocks where the current register has uses. |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 173 | SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints; |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 174 | |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 175 | /// Global live range splitting candidate info. |
| 176 | struct GlobalSplitCandidate { |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 177 | // Register intended for assignment, or 0. |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 178 | unsigned PhysReg; |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 179 | |
| 180 | // SplitKit interval index for this candidate. |
| 181 | unsigned IntvIdx; |
| 182 | |
| 183 | // Interference for PhysReg. |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 184 | InterferenceCache::Cursor Intf; |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 185 | |
| 186 | // Bundles where this candidate should be live. |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 187 | BitVector LiveBundles; |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 188 | SmallVector<unsigned, 8> ActiveBlocks; |
| 189 | |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 190 | void reset(InterferenceCache &Cache, unsigned Reg) { |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 191 | PhysReg = Reg; |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 192 | IntvIdx = 0; |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 193 | Intf.setPhysReg(Cache, Reg); |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 194 | LiveBundles.clear(); |
| 195 | ActiveBlocks.clear(); |
| 196 | } |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 197 | |
| 198 | // Set B[i] = C for every live bundle where B[i] was NoCand. |
| 199 | unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) { |
| 200 | unsigned Count = 0; |
| 201 | for (int i = LiveBundles.find_first(); i >= 0; |
| 202 | i = LiveBundles.find_next(i)) |
| 203 | if (B[i] == NoCand) { |
| 204 | B[i] = C; |
| 205 | Count++; |
| 206 | } |
| 207 | return Count; |
| 208 | } |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 209 | }; |
| 210 | |
| 211 | /// Candidate info for for each PhysReg in AllocationOrder. |
| 212 | /// This vector never shrinks, but grows to the size of the largest register |
| 213 | /// class. |
| 214 | SmallVector<GlobalSplitCandidate, 32> GlobalCand; |
| 215 | |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 216 | enum { NoCand = ~0u }; |
| 217 | |
| 218 | /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to |
| 219 | /// NoCand which indicates the stack interval. |
| 220 | SmallVector<unsigned, 32> BundleCand; |
| 221 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 222 | public: |
| 223 | RAGreedy(); |
| 224 | |
| 225 | /// Return the pass name. |
| 226 | virtual const char* getPassName() const { |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 227 | return "Greedy Register Allocator"; |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | /// RAGreedy analysis usage. |
| 231 | virtual void getAnalysisUsage(AnalysisUsage &AU) const; |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 232 | virtual void releaseMemory(); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 233 | virtual Spiller &spiller() { return *SpillerInstance; } |
Jakob Stoklund Olesen | 98d9648 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 234 | virtual void enqueue(LiveInterval *LI); |
| 235 | virtual LiveInterval *dequeue(); |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 236 | virtual unsigned selectOrSplit(LiveInterval&, |
| 237 | SmallVectorImpl<LiveInterval*>&); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 238 | |
| 239 | /// Perform register allocation. |
| 240 | virtual bool runOnMachineFunction(MachineFunction &mf); |
| 241 | |
| 242 | static char ID; |
Andrew Trick | b853e6c | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 243 | |
| 244 | private: |
Jakob Stoklund Olesen | 92a55f4 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 245 | void LRE_WillEraseInstruction(MachineInstr*); |
Jakob Stoklund Olesen | 7792e98 | 2011-03-13 01:23:11 +0000 | [diff] [blame] | 246 | bool LRE_CanEraseVirtReg(unsigned); |
Jakob Stoklund Olesen | 1d5b845 | 2011-03-16 22:56:16 +0000 | [diff] [blame] | 247 | void LRE_WillShrinkVirtReg(unsigned); |
Jakob Stoklund Olesen | f22ca3f | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 248 | void LRE_DidCloneVirtReg(unsigned, unsigned); |
Jakob Stoklund Olesen | 92a55f4 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 249 | |
Jakob Stoklund Olesen | 2007298 | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 250 | float calcSpillCost(); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 251 | bool addSplitConstraints(InterferenceCache::Cursor, float&); |
| 252 | void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>); |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 253 | void growRegion(GlobalSplitCandidate &Cand); |
| 254 | float calcGlobalSplitCost(GlobalSplitCandidate&); |
Jakob Stoklund Olesen | 87972fa | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 255 | bool calcCompactRegion(GlobalSplitCandidate&); |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 256 | void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 257 | void calcGapWeights(unsigned, SmallVectorImpl<float>&); |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 258 | bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool); |
| 259 | bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&); |
| 260 | void evictInterference(LiveInterval&, unsigned, |
| 261 | SmallVectorImpl<LiveInterval*>&); |
Jakob Stoklund Olesen | b64d92e | 2010-12-14 00:37:44 +0000 | [diff] [blame] | 262 | |
Jakob Stoklund Olesen | 6bfba2e | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 263 | unsigned tryAssign(LiveInterval&, AllocationOrder&, |
| 264 | SmallVectorImpl<LiveInterval*>&); |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 265 | unsigned tryEvict(LiveInterval&, AllocationOrder&, |
Jakob Stoklund Olesen | 6bfba2e | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 266 | SmallVectorImpl<LiveInterval*>&, unsigned = ~0u); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 267 | unsigned tryRegionSplit(LiveInterval&, AllocationOrder&, |
| 268 | SmallVectorImpl<LiveInterval*>&); |
Jakob Stoklund Olesen | dab35d3 | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 269 | unsigned tryBlockSplit(LiveInterval&, AllocationOrder&, |
| 270 | SmallVectorImpl<LiveInterval*>&); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 271 | unsigned tryLocalSplit(LiveInterval&, AllocationOrder&, |
| 272 | SmallVectorImpl<LiveInterval*>&); |
Jakob Stoklund Olesen | b64d92e | 2010-12-14 00:37:44 +0000 | [diff] [blame] | 273 | unsigned trySplit(LiveInterval&, AllocationOrder&, |
| 274 | SmallVectorImpl<LiveInterval*>&); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 275 | }; |
| 276 | } // end anonymous namespace |
| 277 | |
| 278 | char RAGreedy::ID = 0; |
| 279 | |
Jakob Stoklund Olesen | b8d936b | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 280 | #ifndef NDEBUG |
| 281 | const char *const RAGreedy::StageName[] = { |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 282 | "RS_New", |
| 283 | "RS_Assign", |
| 284 | "RS_Split", |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 285 | "RS_Split2", |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 286 | "RS_Spill", |
| 287 | "RS_Done" |
Jakob Stoklund Olesen | b8d936b | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 288 | }; |
| 289 | #endif |
| 290 | |
Jakob Stoklund Olesen | 2007298 | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 291 | // Hysteresis to use when comparing floats. |
| 292 | // This helps stabilize decisions based on float comparisons. |
| 293 | const float Hysteresis = 0.98f; |
| 294 | |
| 295 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 296 | FunctionPass* llvm::createGreedyRegisterAllocator() { |
| 297 | return new RAGreedy(); |
| 298 | } |
| 299 | |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 300 | RAGreedy::RAGreedy(): MachineFunctionPass(ID) { |
Jakob Stoklund Olesen | cfafc54 | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 301 | initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 302 | initializeSlotIndexesPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 303 | initializeLiveIntervalsPass(*PassRegistry::getPassRegistry()); |
| 304 | initializeSlotIndexesPass(*PassRegistry::getPassRegistry()); |
| 305 | initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry()); |
Rafael Espindola | 5b22021 | 2011-06-26 22:34:10 +0000 | [diff] [blame] | 306 | initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 307 | initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry()); |
| 308 | initializeLiveStacksPass(*PassRegistry::getPassRegistry()); |
| 309 | initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry()); |
| 310 | initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry()); |
| 311 | initializeVirtRegMapPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 312 | initializeEdgeBundlesPass(*PassRegistry::getPassRegistry()); |
| 313 | initializeSpillPlacementPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const { |
| 317 | AU.setPreservesCFG(); |
| 318 | AU.addRequired<AliasAnalysis>(); |
| 319 | AU.addPreserved<AliasAnalysis>(); |
| 320 | AU.addRequired<LiveIntervals>(); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 321 | AU.addRequired<SlotIndexes>(); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 322 | AU.addPreserved<SlotIndexes>(); |
Jakob Stoklund Olesen | cfafc54 | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 323 | AU.addRequired<LiveDebugVariables>(); |
| 324 | AU.addPreserved<LiveDebugVariables>(); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 325 | if (StrongPHIElim) |
| 326 | AU.addRequiredID(StrongPHIEliminationID); |
| 327 | AU.addRequiredTransitive<RegisterCoalescer>(); |
| 328 | AU.addRequired<CalculateSpillWeights>(); |
| 329 | AU.addRequired<LiveStacks>(); |
| 330 | AU.addPreserved<LiveStacks>(); |
Jakob Stoklund Olesen | f428eb6 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 331 | AU.addRequired<MachineDominatorTree>(); |
| 332 | AU.addPreserved<MachineDominatorTree>(); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 333 | AU.addRequired<MachineLoopInfo>(); |
| 334 | AU.addPreserved<MachineLoopInfo>(); |
| 335 | AU.addRequired<VirtRegMap>(); |
| 336 | AU.addPreserved<VirtRegMap>(); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 337 | AU.addRequired<EdgeBundles>(); |
| 338 | AU.addRequired<SpillPlacement>(); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 339 | MachineFunctionPass::getAnalysisUsage(AU); |
| 340 | } |
| 341 | |
Jakob Stoklund Olesen | 92a55f4 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 342 | |
| 343 | //===----------------------------------------------------------------------===// |
| 344 | // LiveRangeEdit delegate methods |
| 345 | //===----------------------------------------------------------------------===// |
| 346 | |
| 347 | void RAGreedy::LRE_WillEraseInstruction(MachineInstr *MI) { |
| 348 | // LRE itself will remove from SlotIndexes and parent basic block. |
| 349 | VRM->RemoveMachineInstrFromMaps(MI); |
| 350 | } |
| 351 | |
Jakob Stoklund Olesen | 7792e98 | 2011-03-13 01:23:11 +0000 | [diff] [blame] | 352 | bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) { |
| 353 | if (unsigned PhysReg = VRM->getPhys(VirtReg)) { |
| 354 | unassign(LIS->getInterval(VirtReg), PhysReg); |
| 355 | return true; |
| 356 | } |
| 357 | // Unassigned virtreg is probably in the priority queue. |
| 358 | // RegAllocBase will erase it after dequeueing. |
| 359 | return false; |
| 360 | } |
Jakob Stoklund Olesen | 92a55f4 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 361 | |
Jakob Stoklund Olesen | 1d5b845 | 2011-03-16 22:56:16 +0000 | [diff] [blame] | 362 | void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) { |
| 363 | unsigned PhysReg = VRM->getPhys(VirtReg); |
| 364 | if (!PhysReg) |
| 365 | return; |
| 366 | |
| 367 | // Register is assigned, put it back on the queue for reassignment. |
| 368 | LiveInterval &LI = LIS->getInterval(VirtReg); |
| 369 | unassign(LI, PhysReg); |
| 370 | enqueue(&LI); |
| 371 | } |
| 372 | |
Jakob Stoklund Olesen | f22ca3f | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 373 | void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) { |
| 374 | // LRE may clone a virtual register because dead code elimination causes it to |
Jakob Stoklund Olesen | 165e231 | 2011-07-26 00:54:56 +0000 | [diff] [blame] | 375 | // be split into connected components. The new components are much smaller |
| 376 | // than the original, so they should get a new chance at being assigned. |
Jakob Stoklund Olesen | f22ca3f | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 377 | // same stage as the parent. |
Jakob Stoklund Olesen | 165e231 | 2011-07-26 00:54:56 +0000 | [diff] [blame] | 378 | ExtraRegInfo[Old].Stage = RS_Assign; |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 379 | ExtraRegInfo.grow(New); |
| 380 | ExtraRegInfo[New] = ExtraRegInfo[Old]; |
Jakob Stoklund Olesen | f22ca3f | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 381 | } |
| 382 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 383 | void RAGreedy::releaseMemory() { |
| 384 | SpillerInstance.reset(0); |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 385 | ExtraRegInfo.clear(); |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 386 | GlobalCand.clear(); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 387 | RegAllocBase::releaseMemory(); |
| 388 | } |
| 389 | |
Jakob Stoklund Olesen | 98d9648 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 390 | void RAGreedy::enqueue(LiveInterval *LI) { |
| 391 | // Prioritize live ranges by size, assigning larger ranges first. |
| 392 | // The queue holds (size, reg) pairs. |
Jakob Stoklund Olesen | 107d366 | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 393 | const unsigned Size = LI->getSize(); |
| 394 | const unsigned Reg = LI->reg; |
Jakob Stoklund Olesen | 98d9648 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 395 | assert(TargetRegisterInfo::isVirtualRegister(Reg) && |
| 396 | "Can only enqueue virtual registers"); |
Jakob Stoklund Olesen | 107d366 | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 397 | unsigned Prio; |
Jakob Stoklund Olesen | 90c1d7d | 2010-12-08 22:57:16 +0000 | [diff] [blame] | 398 | |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 399 | ExtraRegInfo.grow(Reg); |
| 400 | if (ExtraRegInfo[Reg].Stage == RS_New) |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 401 | ExtraRegInfo[Reg].Stage = RS_Assign; |
Jakob Stoklund Olesen | f22ca3f | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 402 | |
Jakob Stoklund Olesen | cc07e04 | 2011-07-28 20:48:23 +0000 | [diff] [blame] | 403 | if (ExtraRegInfo[Reg].Stage == RS_Split) { |
Jakob Stoklund Olesen | eb29157 | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 404 | // Unsplit ranges that couldn't be allocated immediately are deferred until |
| 405 | // everything else has been allocated. Long ranges are allocated last so |
| 406 | // they are split against realistic interference. |
Jakob Stoklund Olesen | cc07e04 | 2011-07-28 20:48:23 +0000 | [diff] [blame] | 407 | if (CompactRegions) |
| 408 | Prio = Size; |
| 409 | else |
| 410 | Prio = (1u << 31) - Size; |
| 411 | } else { |
Jakob Stoklund Olesen | eb29157 | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 412 | // Everything else is allocated in long->short order. Long ranges that don't |
| 413 | // fit should be spilled ASAP so they don't create interference. |
Jakob Stoklund Olesen | 107d366 | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 414 | Prio = (1u << 31) + Size; |
Jakob Stoklund Olesen | d2a5073 | 2011-02-23 00:56:56 +0000 | [diff] [blame] | 415 | |
Jakob Stoklund Olesen | eb29157 | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 416 | // Boost ranges that have a physical register hint. |
| 417 | if (TargetRegisterInfo::isPhysicalRegister(VRM->getRegAllocPref(Reg))) |
| 418 | Prio |= (1u << 30); |
| 419 | } |
Jakob Stoklund Olesen | 107d366 | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 420 | |
| 421 | Queue.push(std::make_pair(Prio, Reg)); |
Jakob Stoklund Olesen | 90c1d7d | 2010-12-08 22:57:16 +0000 | [diff] [blame] | 422 | } |
| 423 | |
Jakob Stoklund Olesen | 98d9648 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 424 | LiveInterval *RAGreedy::dequeue() { |
| 425 | if (Queue.empty()) |
| 426 | return 0; |
| 427 | LiveInterval *LI = &LIS->getInterval(Queue.top().second); |
| 428 | Queue.pop(); |
| 429 | return LI; |
| 430 | } |
Jakob Stoklund Olesen | 770d42d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 431 | |
Jakob Stoklund Olesen | 6bfba2e | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 432 | |
| 433 | //===----------------------------------------------------------------------===// |
| 434 | // Direct Assignment |
| 435 | //===----------------------------------------------------------------------===// |
| 436 | |
| 437 | /// tryAssign - Try to assign VirtReg to an available register. |
| 438 | unsigned RAGreedy::tryAssign(LiveInterval &VirtReg, |
| 439 | AllocationOrder &Order, |
| 440 | SmallVectorImpl<LiveInterval*> &NewVRegs) { |
| 441 | Order.rewind(); |
| 442 | unsigned PhysReg; |
| 443 | while ((PhysReg = Order.next())) |
| 444 | if (!checkPhysRegInterference(VirtReg, PhysReg)) |
| 445 | break; |
| 446 | if (!PhysReg || Order.isHint(PhysReg)) |
| 447 | return PhysReg; |
| 448 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 449 | // PhysReg is available, but there may be a better choice. |
| 450 | |
| 451 | // If we missed a simple hint, try to cheaply evict interference from the |
| 452 | // preferred register. |
| 453 | if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg)) |
| 454 | if (Order.isHint(Hint)) { |
| 455 | DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n'); |
| 456 | EvictionCost MaxCost(1); |
| 457 | if (canEvictInterference(VirtReg, Hint, true, MaxCost)) { |
| 458 | evictInterference(VirtReg, Hint, NewVRegs); |
| 459 | return Hint; |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | // Try to evict interference from a cheaper alternative. |
Jakob Stoklund Olesen | 6bfba2e | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 464 | unsigned Cost = TRI->getCostPerUse(PhysReg); |
| 465 | |
| 466 | // Most registers have 0 additional cost. |
| 467 | if (!Cost) |
| 468 | return PhysReg; |
| 469 | |
| 470 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost |
| 471 | << '\n'); |
| 472 | unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost); |
| 473 | return CheapReg ? CheapReg : PhysReg; |
| 474 | } |
| 475 | |
| 476 | |
Jakob Stoklund Olesen | 770d42d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 477 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 478 | // Interference eviction |
| 479 | //===----------------------------------------------------------------------===// |
| 480 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 481 | /// shouldEvict - determine if A should evict the assigned live range B. The |
| 482 | /// eviction policy defined by this function together with the allocation order |
| 483 | /// defined by enqueue() decides which registers ultimately end up being split |
| 484 | /// and spilled. |
Jakob Stoklund Olesen | b8d936b | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 485 | /// |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 486 | /// Cascade numbers are used to prevent infinite loops if this function is a |
| 487 | /// cyclic relation. |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 488 | /// |
| 489 | /// @param A The live range to be assigned. |
| 490 | /// @param IsHint True when A is about to be assigned to its preferred |
| 491 | /// register. |
| 492 | /// @param B The live range to be evicted. |
| 493 | /// @param BreaksHint True when B is already assigned to its preferred register. |
| 494 | bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint, |
| 495 | LiveInterval &B, bool BreaksHint) { |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 496 | bool CanSplit = getStage(B) < RS_Spill; |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 497 | |
| 498 | // Be fairly aggressive about following hints as long as the evictee can be |
| 499 | // split. |
| 500 | if (CanSplit && IsHint && !BreaksHint) |
| 501 | return true; |
| 502 | |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 503 | return A.weight > B.weight; |
Jakob Stoklund Olesen | b8d936b | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 504 | } |
| 505 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 506 | /// canEvictInterference - Return true if all interferences between VirtReg and |
| 507 | /// PhysReg can be evicted. When OnlyCheap is set, don't do anything |
| 508 | /// |
| 509 | /// @param VirtReg Live range that is about to be assigned. |
| 510 | /// @param PhysReg Desired register for assignment. |
| 511 | /// @prarm IsHint True when PhysReg is VirtReg's preferred register. |
| 512 | /// @param MaxCost Only look for cheaper candidates and update with new cost |
| 513 | /// when returning true. |
| 514 | /// @returns True when interference can be evicted cheaper than MaxCost. |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 515 | bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg, |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 516 | bool IsHint, EvictionCost &MaxCost) { |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 517 | // Find VirtReg's cascade number. This will be unassigned if VirtReg was never |
| 518 | // involved in an eviction before. If a cascade number was assigned, deny |
| 519 | // evicting anything with the same or a newer cascade number. This prevents |
| 520 | // infinite eviction loops. |
| 521 | // |
| 522 | // This works out so a register without a cascade number is allowed to evict |
| 523 | // anything, and it can be evicted by anything. |
| 524 | unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade; |
| 525 | if (!Cascade) |
| 526 | Cascade = NextCascade; |
| 527 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 528 | EvictionCost Cost; |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 529 | for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) { |
| 530 | LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI); |
Jakob Stoklund Olesen | 3f5bedf | 2011-04-11 21:47:01 +0000 | [diff] [blame] | 531 | // If there is 10 or more interferences, chances are one is heavier. |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 532 | if (Q.collectInterferingVRegs(10) >= 10) |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 533 | return false; |
| 534 | |
Jakob Stoklund Olesen | 3f5bedf | 2011-04-11 21:47:01 +0000 | [diff] [blame] | 535 | // Check if any interfering live range is heavier than MaxWeight. |
| 536 | for (unsigned i = Q.interferingVRegs().size(); i; --i) { |
| 537 | LiveInterval *Intf = Q.interferingVRegs()[i - 1]; |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 538 | if (TargetRegisterInfo::isPhysicalRegister(Intf->reg)) |
| 539 | return false; |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 540 | // Never evict spill products. They cannot split or spill. |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 541 | if (getStage(*Intf) == RS_Done) |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 542 | return false; |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 543 | // Once a live range becomes small enough, it is urgent that we find a |
| 544 | // register for it. This is indicated by an infinite spill weight. These |
| 545 | // urgent live ranges get to evict almost anything. |
| 546 | bool Urgent = !VirtReg.isSpillable() && Intf->isSpillable(); |
| 547 | // Only evict older cascades or live ranges without a cascade. |
| 548 | unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade; |
| 549 | if (Cascade <= IntfCascade) { |
| 550 | if (!Urgent) |
| 551 | return false; |
| 552 | // We permit breaking cascades for urgent evictions. It should be the |
| 553 | // last resort, though, so make it really expensive. |
| 554 | Cost.BrokenHints += 10; |
| 555 | } |
| 556 | // Would this break a satisfied hint? |
| 557 | bool BreaksHint = VRM->hasPreferredPhys(Intf->reg); |
| 558 | // Update eviction cost. |
| 559 | Cost.BrokenHints += BreaksHint; |
| 560 | Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight); |
| 561 | // Abort if this would be too expensive. |
| 562 | if (!(Cost < MaxCost)) |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 563 | return false; |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 564 | // Finally, apply the eviction policy for non-urgent evictions. |
| 565 | if (!Urgent && !shouldEvict(VirtReg, IsHint, *Intf, BreaksHint)) |
Jakob Stoklund Olesen | d2056e5 | 2011-05-31 21:02:44 +0000 | [diff] [blame] | 566 | return false; |
Jakob Stoklund Olesen | 2710638 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 567 | } |
| 568 | } |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 569 | MaxCost = Cost; |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 570 | return true; |
| 571 | } |
Jakob Stoklund Olesen | 2710638 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 572 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 573 | /// evictInterference - Evict any interferring registers that prevent VirtReg |
| 574 | /// from being assigned to Physreg. This assumes that canEvictInterference |
| 575 | /// returned true. |
| 576 | void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg, |
| 577 | SmallVectorImpl<LiveInterval*> &NewVRegs) { |
| 578 | // Make sure that VirtReg has a cascade number, and assign that cascade |
| 579 | // number to every evicted register. These live ranges than then only be |
| 580 | // evicted by a newer cascade, preventing infinite loops. |
| 581 | unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade; |
| 582 | if (!Cascade) |
| 583 | Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++; |
| 584 | |
| 585 | DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI) |
| 586 | << " interference: Cascade " << Cascade << '\n'); |
| 587 | for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) { |
| 588 | LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI); |
| 589 | assert(Q.seenAllInterferences() && "Didn't check all interfererences."); |
| 590 | for (unsigned i = 0, e = Q.interferingVRegs().size(); i != e; ++i) { |
| 591 | LiveInterval *Intf = Q.interferingVRegs()[i]; |
| 592 | unassign(*Intf, VRM->getPhys(Intf->reg)); |
| 593 | assert((ExtraRegInfo[Intf->reg].Cascade < Cascade || |
| 594 | VirtReg.isSpillable() < Intf->isSpillable()) && |
| 595 | "Cannot decrease cascade number, illegal eviction"); |
| 596 | ExtraRegInfo[Intf->reg].Cascade = Cascade; |
| 597 | ++NumEvicted; |
| 598 | NewVRegs.push_back(Intf); |
| 599 | } |
| 600 | } |
| 601 | } |
| 602 | |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 603 | /// tryEvict - Try to evict all interferences for a physreg. |
Jakob Stoklund Olesen | 76395c9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 604 | /// @param VirtReg Currently unassigned virtual register. |
| 605 | /// @param Order Physregs to try. |
| 606 | /// @return Physreg to assign VirtReg, or 0. |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 607 | unsigned RAGreedy::tryEvict(LiveInterval &VirtReg, |
| 608 | AllocationOrder &Order, |
Jakob Stoklund Olesen | 6bfba2e | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 609 | SmallVectorImpl<LiveInterval*> &NewVRegs, |
| 610 | unsigned CostPerUseLimit) { |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 611 | NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled); |
| 612 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 613 | // Keep track of the cheapest interference seen so far. |
| 614 | EvictionCost BestCost(~0u); |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 615 | unsigned BestPhys = 0; |
| 616 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 617 | // When we are just looking for a reduced cost per use, don't break any |
| 618 | // hints, and only evict smaller spill weights. |
| 619 | if (CostPerUseLimit < ~0u) { |
| 620 | BestCost.BrokenHints = 0; |
| 621 | BestCost.MaxWeight = VirtReg.weight; |
| 622 | } |
| 623 | |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 624 | Order.rewind(); |
| 625 | while (unsigned PhysReg = Order.next()) { |
Jakob Stoklund Olesen | 6bfba2e | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 626 | if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit) |
| 627 | continue; |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 628 | // The first use of a callee-saved register in a function has cost 1. |
| 629 | // Don't start using a CSR when the CostPerUseLimit is low. |
| 630 | if (CostPerUseLimit == 1) |
| 631 | if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg)) |
| 632 | if (!MRI->isPhysRegUsed(CSR)) { |
| 633 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR " |
| 634 | << PrintReg(CSR, TRI) << '\n'); |
| 635 | continue; |
| 636 | } |
Jakob Stoklund Olesen | 6bfba2e | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 637 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 638 | if (!canEvictInterference(VirtReg, PhysReg, false, BestCost)) |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 639 | continue; |
| 640 | |
| 641 | // Best so far. |
| 642 | BestPhys = PhysReg; |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 643 | |
Jakob Stoklund Olesen | 57f1e2c | 2011-02-25 01:04:22 +0000 | [diff] [blame] | 644 | // Stop if the hint can be used. |
| 645 | if (Order.isHint(PhysReg)) |
| 646 | break; |
Jakob Stoklund Olesen | 2710638 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 647 | } |
| 648 | |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 649 | if (!BestPhys) |
| 650 | return 0; |
| 651 | |
Jakob Stoklund Olesen | 51458ed | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 652 | evictInterference(VirtReg, BestPhys, NewVRegs); |
Jakob Stoklund Olesen | 98c8141 | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 653 | return BestPhys; |
Andrew Trick | b853e6c | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 654 | } |
| 655 | |
Jakob Stoklund Olesen | 770d42d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 656 | |
| 657 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 658 | // Region Splitting |
| 659 | //===----------------------------------------------------------------------===// |
| 660 | |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 661 | /// addSplitConstraints - Fill out the SplitConstraints vector based on the |
| 662 | /// interference pattern in Physreg and its aliases. Add the constraints to |
| 663 | /// SpillPlacement and return the static cost of this split in Cost, assuming |
| 664 | /// that all preferences in SplitConstraints are met. |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 665 | /// Return false if there are no bundles with positive bias. |
| 666 | bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf, |
| 667 | float &Cost) { |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 668 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
Jakob Stoklund Olesen | eda0fe8 | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 669 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 670 | // Reset interference dependent info. |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 671 | SplitConstraints.resize(UseBlocks.size()); |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 672 | float StaticCost = 0; |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 673 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 674 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 675 | SpillPlacement::BlockConstraint &BC = SplitConstraints[i]; |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 676 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 677 | BC.Number = BI.MBB->getNumber(); |
Jakob Stoklund Olesen | eda0fe8 | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 678 | Intf.moveToBlock(BC.Number); |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 679 | BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare; |
| 680 | BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare; |
Jakob Stoklund Olesen | 5ebca79 | 2011-08-02 23:04:06 +0000 | [diff] [blame] | 681 | BC.ChangesValue = BI.FirstDef; |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 682 | |
Jakob Stoklund Olesen | eda0fe8 | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 683 | if (!Intf.hasInterference()) |
| 684 | continue; |
| 685 | |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 686 | // Number of spill code instructions to insert. |
| 687 | unsigned Ins = 0; |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 688 | |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 689 | // Interference for the live-in value. |
Jakob Stoklund Olesen | eda0fe8 | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 690 | if (BI.LiveIn) { |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 691 | if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number)) |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 692 | BC.Entry = SpillPlacement::MustSpill, ++Ins; |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 693 | else if (Intf.first() < BI.FirstInstr) |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 694 | BC.Entry = SpillPlacement::PrefSpill, ++Ins; |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 695 | else if (Intf.first() < BI.LastInstr) |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 696 | ++Ins; |
Jakob Stoklund Olesen | a50c539 | 2011-02-08 23:02:58 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 699 | // Interference for the live-out value. |
Jakob Stoklund Olesen | eda0fe8 | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 700 | if (BI.LiveOut) { |
Jakob Stoklund Olesen | 612f780 | 2011-04-05 04:20:29 +0000 | [diff] [blame] | 701 | if (Intf.last() >= SA->getLastSplitPoint(BC.Number)) |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 702 | BC.Exit = SpillPlacement::MustSpill, ++Ins; |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 703 | else if (Intf.last() > BI.LastInstr) |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 704 | BC.Exit = SpillPlacement::PrefSpill, ++Ins; |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 705 | else if (Intf.last() > BI.FirstInstr) |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 706 | ++Ins; |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 707 | } |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 708 | |
| 709 | // Accumulate the total frequency of inserted spill code. |
| 710 | if (Ins) |
| 711 | StaticCost += Ins * SpillPlacer->getBlockFrequency(BC.Number); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 712 | } |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 713 | Cost = StaticCost; |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 714 | |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 715 | // Add constraints for use-blocks. Note that these are the only constraints |
| 716 | // that may add a positive bias, it is downhill from here. |
| 717 | SpillPlacer->addConstraints(SplitConstraints); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 718 | return SpillPlacer->scanActiveBundles(); |
| 719 | } |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 720 | |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 721 | |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 722 | /// addThroughConstraints - Add constraints and links to SpillPlacer from the |
| 723 | /// live-through blocks in Blocks. |
| 724 | void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf, |
| 725 | ArrayRef<unsigned> Blocks) { |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 726 | const unsigned GroupSize = 8; |
| 727 | SpillPlacement::BlockConstraint BCS[GroupSize]; |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 728 | unsigned TBS[GroupSize]; |
| 729 | unsigned B = 0, T = 0; |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 730 | |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 731 | for (unsigned i = 0; i != Blocks.size(); ++i) { |
| 732 | unsigned Number = Blocks[i]; |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 733 | Intf.moveToBlock(Number); |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 734 | |
Jakob Stoklund Olesen | 7b41fbe | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 735 | if (!Intf.hasInterference()) { |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 736 | assert(T < GroupSize && "Array overflow"); |
| 737 | TBS[T] = Number; |
| 738 | if (++T == GroupSize) { |
Frits van Bommel | 39b5abf | 2011-07-18 12:00:32 +0000 | [diff] [blame] | 739 | SpillPlacer->addLinks(makeArrayRef(TBS, T)); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 740 | T = 0; |
| 741 | } |
Jakob Stoklund Olesen | 7b41fbe | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 742 | continue; |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 743 | } |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 744 | |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 745 | assert(B < GroupSize && "Array overflow"); |
| 746 | BCS[B].Number = Number; |
| 747 | |
Jakob Stoklund Olesen | 7b41fbe | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 748 | // Interference for the live-in value. |
| 749 | if (Intf.first() <= Indexes->getMBBStartIdx(Number)) |
| 750 | BCS[B].Entry = SpillPlacement::MustSpill; |
| 751 | else |
| 752 | BCS[B].Entry = SpillPlacement::PrefSpill; |
| 753 | |
| 754 | // Interference for the live-out value. |
| 755 | if (Intf.last() >= SA->getLastSplitPoint(Number)) |
| 756 | BCS[B].Exit = SpillPlacement::MustSpill; |
| 757 | else |
| 758 | BCS[B].Exit = SpillPlacement::PrefSpill; |
| 759 | |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 760 | if (++B == GroupSize) { |
| 761 | ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B); |
| 762 | SpillPlacer->addConstraints(Array); |
| 763 | B = 0; |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 764 | } |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 765 | } |
| 766 | |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 767 | ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B); |
| 768 | SpillPlacer->addConstraints(Array); |
Frits van Bommel | 39b5abf | 2011-07-18 12:00:32 +0000 | [diff] [blame] | 769 | SpillPlacer->addLinks(makeArrayRef(TBS, T)); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 770 | } |
| 771 | |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 772 | void RAGreedy::growRegion(GlobalSplitCandidate &Cand) { |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 773 | // Keep track of through blocks that have not been added to SpillPlacer. |
| 774 | BitVector Todo = SA->getThroughBlocks(); |
| 775 | SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks; |
| 776 | unsigned AddedTo = 0; |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 777 | #ifndef NDEBUG |
| 778 | unsigned Visited = 0; |
| 779 | #endif |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 780 | |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 781 | for (;;) { |
| 782 | ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive(); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 783 | // Find new through blocks in the periphery of PrefRegBundles. |
| 784 | for (int i = 0, e = NewBundles.size(); i != e; ++i) { |
| 785 | unsigned Bundle = NewBundles[i]; |
| 786 | // Look at all blocks connected to Bundle in the full graph. |
| 787 | ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle); |
| 788 | for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end(); |
| 789 | I != E; ++I) { |
| 790 | unsigned Block = *I; |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 791 | if (!Todo.test(Block)) |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 792 | continue; |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 793 | Todo.reset(Block); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 794 | // This is a new through block. Add it to SpillPlacer later. |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 795 | ActiveBlocks.push_back(Block); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 796 | #ifndef NDEBUG |
| 797 | ++Visited; |
| 798 | #endif |
| 799 | } |
| 800 | } |
| 801 | // Any new blocks to add? |
Jakob Stoklund Olesen | 5490197 | 2011-07-05 18:46:42 +0000 | [diff] [blame] | 802 | if (ActiveBlocks.size() == AddedTo) |
| 803 | break; |
Jakob Stoklund Olesen | b466636 | 2011-07-23 03:22:33 +0000 | [diff] [blame] | 804 | |
| 805 | // Compute through constraints from the interference, or assume that all |
| 806 | // through blocks prefer spilling when forming compact regions. |
| 807 | ArrayRef<unsigned> NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo); |
| 808 | if (Cand.PhysReg) |
| 809 | addThroughConstraints(Cand.Intf, NewBlocks); |
| 810 | else |
Jakob Stoklund Olesen | b87f91b | 2011-08-03 23:09:38 +0000 | [diff] [blame] | 811 | // Provide a strong negative bias on through blocks to prevent unwanted |
| 812 | // liveness on loop backedges. |
| 813 | SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true); |
Jakob Stoklund Olesen | 5490197 | 2011-07-05 18:46:42 +0000 | [diff] [blame] | 814 | AddedTo = ActiveBlocks.size(); |
| 815 | |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 816 | // Perhaps iterating can enable more bundles? |
| 817 | SpillPlacer->iterate(); |
| 818 | } |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 819 | DEBUG(dbgs() << ", v=" << Visited); |
| 820 | } |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 821 | |
Jakob Stoklund Olesen | 87972fa | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 822 | /// calcCompactRegion - Compute the set of edge bundles that should be live |
| 823 | /// when splitting the current live range into compact regions. Compact |
| 824 | /// regions can be computed without looking at interference. They are the |
| 825 | /// regions formed by removing all the live-through blocks from the live range. |
| 826 | /// |
| 827 | /// Returns false if the current live range is already compact, or if the |
| 828 | /// compact regions would form single block regions anyway. |
| 829 | bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) { |
| 830 | // Without any through blocks, the live range is already compact. |
| 831 | if (!SA->getNumThroughBlocks()) |
| 832 | return false; |
| 833 | |
| 834 | // Compact regions don't correspond to any physreg. |
| 835 | Cand.reset(IntfCache, 0); |
| 836 | |
| 837 | DEBUG(dbgs() << "Compact region bundles"); |
| 838 | |
| 839 | // Use the spill placer to determine the live bundles. GrowRegion pretends |
| 840 | // that all the through blocks have interference when PhysReg is unset. |
| 841 | SpillPlacer->prepare(Cand.LiveBundles); |
| 842 | |
| 843 | // The static split cost will be zero since Cand.Intf reports no interference. |
| 844 | float Cost; |
| 845 | if (!addSplitConstraints(Cand.Intf, Cost)) { |
| 846 | DEBUG(dbgs() << ", none.\n"); |
| 847 | return false; |
| 848 | } |
| 849 | |
| 850 | growRegion(Cand); |
| 851 | SpillPlacer->finish(); |
| 852 | |
| 853 | if (!Cand.LiveBundles.any()) { |
| 854 | DEBUG(dbgs() << ", none.\n"); |
| 855 | return false; |
| 856 | } |
| 857 | |
| 858 | DEBUG({ |
| 859 | for (int i = Cand.LiveBundles.find_first(); i>=0; |
| 860 | i = Cand.LiveBundles.find_next(i)) |
| 861 | dbgs() << " EB#" << i; |
| 862 | dbgs() << ".\n"; |
| 863 | }); |
| 864 | return true; |
| 865 | } |
| 866 | |
Jakob Stoklund Olesen | 2007298 | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 867 | /// calcSpillCost - Compute how expensive it would be to split the live range in |
| 868 | /// SA around all use blocks instead of forming bundle regions. |
| 869 | float RAGreedy::calcSpillCost() { |
| 870 | float Cost = 0; |
Jakob Stoklund Olesen | 2007298 | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 871 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 872 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 873 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| 874 | unsigned Number = BI.MBB->getNumber(); |
| 875 | // We normally only need one spill instruction - a load or a store. |
| 876 | Cost += SpillPlacer->getBlockFrequency(Number); |
| 877 | |
| 878 | // Unless the value is redefined in the block. |
Jakob Stoklund Olesen | 3f5beed | 2011-08-02 23:04:08 +0000 | [diff] [blame] | 879 | if (BI.LiveIn && BI.LiveOut && BI.FirstDef) |
| 880 | Cost += SpillPlacer->getBlockFrequency(Number); |
Jakob Stoklund Olesen | 2007298 | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 881 | } |
| 882 | return Cost; |
| 883 | } |
| 884 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 885 | /// calcGlobalSplitCost - Return the global split cost of following the split |
| 886 | /// pattern in LiveBundles. This cost should be added to the local cost of the |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 887 | /// interference pattern in SplitConstraints. |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 888 | /// |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 889 | float RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) { |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 890 | float GlobalCost = 0; |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 891 | const BitVector &LiveBundles = Cand.LiveBundles; |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 892 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 893 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 894 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 895 | SpillPlacement::BlockConstraint &BC = SplitConstraints[i]; |
Jakob Stoklund Olesen | 874be74 | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 896 | bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)]; |
| 897 | bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)]; |
| 898 | unsigned Ins = 0; |
| 899 | |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 900 | if (BI.LiveIn) |
| 901 | Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg); |
| 902 | if (BI.LiveOut) |
| 903 | Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg); |
Jakob Stoklund Olesen | 874be74 | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 904 | if (Ins) |
| 905 | GlobalCost += Ins * SpillPlacer->getBlockFrequency(BC.Number); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 906 | } |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 907 | |
Jakob Stoklund Olesen | 5db4289 | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 908 | for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) { |
| 909 | unsigned Number = Cand.ActiveBlocks[i]; |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 910 | bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)]; |
| 911 | bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)]; |
Jakob Stoklund Olesen | 9a54352 | 2011-04-06 21:32:41 +0000 | [diff] [blame] | 912 | if (!RegIn && !RegOut) |
| 913 | continue; |
| 914 | if (RegIn && RegOut) { |
| 915 | // We need double spill code if this block has interference. |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 916 | Cand.Intf.moveToBlock(Number); |
| 917 | if (Cand.Intf.hasInterference()) |
Jakob Stoklund Olesen | 9a54352 | 2011-04-06 21:32:41 +0000 | [diff] [blame] | 918 | GlobalCost += 2*SpillPlacer->getBlockFrequency(Number); |
| 919 | continue; |
| 920 | } |
| 921 | // live-in / stack-out or stack-in live-out. |
| 922 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 923 | } |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 924 | return GlobalCost; |
| 925 | } |
| 926 | |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 927 | /// splitAroundRegion - Split the current live range around the regions |
| 928 | /// determined by BundleCand and GlobalCand. |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 929 | /// |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 930 | /// Before calling this function, GlobalCand and BundleCand must be initialized |
| 931 | /// so each bundle is assigned to a valid candidate, or NoCand for the |
| 932 | /// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor |
| 933 | /// objects must be initialized for the current live range, and intervals |
| 934 | /// created for the used candidates. |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 935 | /// |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 936 | /// @param LREdit The LiveRangeEdit object handling the current split. |
| 937 | /// @param UsedCands List of used GlobalCand entries. Every BundleCand value |
| 938 | /// must appear in this list. |
| 939 | void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit, |
| 940 | ArrayRef<unsigned> UsedCands) { |
| 941 | // These are the intervals created for new global ranges. We may create more |
| 942 | // intervals for local ranges. |
| 943 | const unsigned NumGlobalIntvs = LREdit.size(); |
| 944 | DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n"); |
| 945 | assert(NumGlobalIntvs && "No global intervals configured"); |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 946 | |
Jakob Stoklund Olesen | 2d6d86b | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 947 | // Isolate even single instructions when dealing with a proper sub-class. |
| 948 | // That giarantees register class inflation for the stack interval because it |
| 949 | // is all copies. |
| 950 | unsigned Reg = SA->getParent().reg; |
| 951 | bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg)); |
| 952 | |
Jakob Stoklund Olesen | 87360f7 | 2011-06-30 01:30:39 +0000 | [diff] [blame] | 953 | // First handle all the blocks with uses. |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 954 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 955 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 956 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 957 | unsigned Number = BI.MBB->getNumber(); |
| 958 | unsigned IntvIn = 0, IntvOut = 0; |
| 959 | SlotIndex IntfIn, IntfOut; |
| 960 | if (BI.LiveIn) { |
| 961 | unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)]; |
| 962 | if (CandIn != NoCand) { |
| 963 | GlobalSplitCandidate &Cand = GlobalCand[CandIn]; |
| 964 | IntvIn = Cand.IntvIdx; |
| 965 | Cand.Intf.moveToBlock(Number); |
| 966 | IntfIn = Cand.Intf.first(); |
| 967 | } |
| 968 | } |
| 969 | if (BI.LiveOut) { |
| 970 | unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)]; |
| 971 | if (CandOut != NoCand) { |
| 972 | GlobalSplitCandidate &Cand = GlobalCand[CandOut]; |
| 973 | IntvOut = Cand.IntvIdx; |
| 974 | Cand.Intf.moveToBlock(Number); |
| 975 | IntfOut = Cand.Intf.last(); |
| 976 | } |
| 977 | } |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 978 | |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 979 | // Create separate intervals for isolated blocks with multiple uses. |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 980 | if (!IntvIn && !IntvOut) { |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 981 | DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n"); |
Jakob Stoklund Olesen | 2d6d86b | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 982 | if (SA->shouldSplitSingleBlock(BI, SingleInstrs)) |
Jakob Stoklund Olesen | 87360f7 | 2011-06-30 01:30:39 +0000 | [diff] [blame] | 983 | SE->splitSingleBlock(BI); |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 984 | continue; |
| 985 | } |
| 986 | |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 987 | if (IntvIn && IntvOut) |
| 988 | SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); |
| 989 | else if (IntvIn) |
| 990 | SE->splitRegInBlock(BI, IntvIn, IntfIn); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 991 | else |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 992 | SE->splitRegOutBlock(BI, IntvOut, IntfOut); |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 993 | } |
| 994 | |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 995 | // Handle live-through blocks. The relevant live-through blocks are stored in |
| 996 | // the ActiveBlocks list with each candidate. We need to filter out |
| 997 | // duplicates. |
| 998 | BitVector Todo = SA->getThroughBlocks(); |
| 999 | for (unsigned c = 0; c != UsedCands.size(); ++c) { |
| 1000 | ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks; |
| 1001 | for (unsigned i = 0, e = Blocks.size(); i != e; ++i) { |
| 1002 | unsigned Number = Blocks[i]; |
| 1003 | if (!Todo.test(Number)) |
| 1004 | continue; |
| 1005 | Todo.reset(Number); |
| 1006 | |
| 1007 | unsigned IntvIn = 0, IntvOut = 0; |
| 1008 | SlotIndex IntfIn, IntfOut; |
| 1009 | |
| 1010 | unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)]; |
| 1011 | if (CandIn != NoCand) { |
| 1012 | GlobalSplitCandidate &Cand = GlobalCand[CandIn]; |
| 1013 | IntvIn = Cand.IntvIdx; |
| 1014 | Cand.Intf.moveToBlock(Number); |
| 1015 | IntfIn = Cand.Intf.first(); |
| 1016 | } |
| 1017 | |
| 1018 | unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)]; |
| 1019 | if (CandOut != NoCand) { |
| 1020 | GlobalSplitCandidate &Cand = GlobalCand[CandOut]; |
| 1021 | IntvOut = Cand.IntvIdx; |
| 1022 | Cand.Intf.moveToBlock(Number); |
| 1023 | IntfOut = Cand.Intf.last(); |
| 1024 | } |
| 1025 | if (!IntvIn && !IntvOut) |
| 1026 | continue; |
| 1027 | SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); |
| 1028 | } |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1029 | } |
| 1030 | |
Jakob Stoklund Olesen | 0db841f | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 1031 | ++NumGlobalSplits; |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1032 | |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1033 | SmallVector<unsigned, 8> IntvMap; |
| 1034 | SE->finish(&IntvMap); |
Jakob Stoklund Olesen | 1f88042 | 2011-08-05 23:10:40 +0000 | [diff] [blame] | 1035 | DebugVars->splitRegister(Reg, LREdit.regs()); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1036 | |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1037 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
Jakob Stoklund Olesen | b2abfa0 | 2011-05-28 02:32:57 +0000 | [diff] [blame] | 1038 | unsigned OrigBlocks = SA->getNumLiveBlocks(); |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1039 | |
| 1040 | // Sort out the new intervals created by splitting. We get four kinds: |
| 1041 | // - Remainder intervals should not be split again. |
| 1042 | // - Candidate intervals can be assigned to Cand.PhysReg. |
| 1043 | // - Block-local splits are candidates for local splitting. |
| 1044 | // - DCE leftovers should go back on the queue. |
| 1045 | for (unsigned i = 0, e = LREdit.size(); i != e; ++i) { |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1046 | LiveInterval &Reg = *LREdit.get(i); |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1047 | |
| 1048 | // Ignore old intervals from DCE. |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1049 | if (getStage(Reg) != RS_New) |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1050 | continue; |
| 1051 | |
| 1052 | // Remainder interval. Don't try splitting again, spill if it doesn't |
| 1053 | // allocate. |
| 1054 | if (IntvMap[i] == 0) { |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1055 | setStage(Reg, RS_Spill); |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1056 | continue; |
| 1057 | } |
| 1058 | |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1059 | // Global intervals. Allow repeated splitting as long as the number of live |
| 1060 | // blocks is strictly decreasing. |
| 1061 | if (IntvMap[i] < NumGlobalIntvs) { |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1062 | if (SA->countLiveBlocks(&Reg) >= OrigBlocks) { |
Jakob Stoklund Olesen | 9f4b893 | 2011-04-26 22:33:12 +0000 | [diff] [blame] | 1063 | DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks |
| 1064 | << " blocks as original.\n"); |
| 1065 | // Don't allow repeated splitting as a safe guard against looping. |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1066 | setStage(Reg, RS_Split2); |
Jakob Stoklund Olesen | 9f4b893 | 2011-04-26 22:33:12 +0000 | [diff] [blame] | 1067 | } |
| 1068 | continue; |
| 1069 | } |
| 1070 | |
| 1071 | // Other intervals are treated as new. This includes local intervals created |
| 1072 | // for blocks with multiple uses, and anything created by DCE. |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1073 | } |
| 1074 | |
Jakob Stoklund Olesen | eb29157 | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 1075 | if (VerifyEnabled) |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1076 | MF->verify(this, "After splitting live range around region"); |
| 1077 | } |
| 1078 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1079 | unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| 1080 | SmallVectorImpl<LiveInterval*> &NewVRegs) { |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1081 | unsigned NumCands = 0; |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1082 | unsigned BestCand = NoCand; |
| 1083 | float BestCost; |
| 1084 | SmallVector<unsigned, 8> UsedCands; |
| 1085 | |
| 1086 | // Check if we can split this live range around a compact region. |
| 1087 | bool HasCompact = CompactRegions && calcCompactRegion(GlobalCand.front()); |
| 1088 | if (HasCompact) { |
| 1089 | // Yes, keep GlobalCand[0] as the compact region candidate. |
| 1090 | NumCands = 1; |
| 1091 | BestCost = HUGE_VALF; |
| 1092 | } else { |
| 1093 | // No benefit from the compact region, our fallback will be per-block |
| 1094 | // splitting. Make sure we find a solution that is cheaper than spilling. |
| 1095 | BestCost = Hysteresis * calcSpillCost(); |
| 1096 | DEBUG(dbgs() << "Cost of isolating all blocks = " << BestCost << '\n'); |
| 1097 | } |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1098 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1099 | Order.rewind(); |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1100 | while (unsigned PhysReg = Order.next()) { |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1101 | // Discard bad candidates before we run out of interference cache cursors. |
| 1102 | // This will only affect register classes with a lot of registers (>32). |
| 1103 | if (NumCands == IntfCache.getMaxCursors()) { |
| 1104 | unsigned WorstCount = ~0u; |
| 1105 | unsigned Worst = 0; |
| 1106 | for (unsigned i = 0; i != NumCands; ++i) { |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1107 | if (i == BestCand || !GlobalCand[i].PhysReg) |
Jakob Stoklund Olesen | f1c7098 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1108 | continue; |
| 1109 | unsigned Count = GlobalCand[i].LiveBundles.count(); |
| 1110 | if (Count < WorstCount) |
| 1111 | Worst = i, WorstCount = Count; |
| 1112 | } |
| 1113 | --NumCands; |
| 1114 | GlobalCand[Worst] = GlobalCand[NumCands]; |
| 1115 | } |
| 1116 | |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1117 | if (GlobalCand.size() <= NumCands) |
| 1118 | GlobalCand.resize(NumCands+1); |
| 1119 | GlobalSplitCandidate &Cand = GlobalCand[NumCands]; |
| 1120 | Cand.reset(IntfCache, PhysReg); |
Jakob Stoklund Olesen | 96dcd95 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1121 | |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1122 | SpillPlacer->prepare(Cand.LiveBundles); |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1123 | float Cost; |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1124 | if (!addSplitConstraints(Cand.Intf, Cost)) { |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1125 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n"); |
Jakob Stoklund Olesen | 1b400e8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1126 | continue; |
| 1127 | } |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1128 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = " << Cost); |
Jakob Stoklund Olesen | 2007298 | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1129 | if (Cost >= BestCost) { |
| 1130 | DEBUG({ |
| 1131 | if (BestCand == NoCand) |
| 1132 | dbgs() << " worse than no bundles\n"; |
| 1133 | else |
| 1134 | dbgs() << " worse than " |
| 1135 | << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n'; |
| 1136 | }); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1137 | continue; |
Jakob Stoklund Olesen | 874be74 | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1138 | } |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1139 | growRegion(Cand); |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1140 | |
Jakob Stoklund Olesen | 9efa2a2 | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 1141 | SpillPlacer->finish(); |
| 1142 | |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1143 | // No live bundles, defer to splitSingleBlocks(). |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1144 | if (!Cand.LiveBundles.any()) { |
Jakob Stoklund Olesen | 874be74 | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1145 | DEBUG(dbgs() << " no bundles.\n"); |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1146 | continue; |
Jakob Stoklund Olesen | 874be74 | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1147 | } |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1148 | |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1149 | Cost += calcGlobalSplitCost(Cand); |
Jakob Stoklund Olesen | 874be74 | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1150 | DEBUG({ |
| 1151 | dbgs() << ", total = " << Cost << " with bundles"; |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1152 | for (int i = Cand.LiveBundles.find_first(); i>=0; |
| 1153 | i = Cand.LiveBundles.find_next(i)) |
Jakob Stoklund Olesen | 874be74 | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1154 | dbgs() << " EB#" << i; |
| 1155 | dbgs() << ".\n"; |
| 1156 | }); |
Jakob Stoklund Olesen | 2007298 | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1157 | if (Cost < BestCost) { |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1158 | BestCand = NumCands; |
Jakob Stoklund Olesen | 2007298 | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1159 | BestCost = Hysteresis * Cost; // Prevent rounding effects. |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1160 | } |
Jakob Stoklund Olesen | c66a37d | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1161 | ++NumCands; |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1162 | } |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1163 | |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1164 | // No solutions found, fall back to single block splitting. |
| 1165 | if (!HasCompact && BestCand == NoCand) |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1166 | return 0; |
| 1167 | |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1168 | // Prepare split editor. |
| 1169 | LiveRangeEdit LREdit(VirtReg, NewVRegs, this); |
| 1170 | SE->reset(LREdit); |
| 1171 | |
| 1172 | // Assign all edge bundles to the preferred candidate, or NoCand. |
| 1173 | BundleCand.assign(Bundles->getNumBundles(), NoCand); |
| 1174 | |
| 1175 | // Assign bundles for the best candidate region. |
| 1176 | if (BestCand != NoCand) { |
| 1177 | GlobalSplitCandidate &Cand = GlobalCand[BestCand]; |
| 1178 | if (unsigned B = Cand.getBundles(BundleCand, BestCand)) { |
| 1179 | UsedCands.push_back(BestCand); |
| 1180 | Cand.IntvIdx = SE->openIntv(); |
| 1181 | DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in " |
| 1182 | << B << " bundles, intv " << Cand.IntvIdx << ".\n"); |
Chandler Carruth | 32668ea | 2011-08-03 23:07:27 +0000 | [diff] [blame] | 1183 | (void)B; |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1184 | } |
| 1185 | } |
| 1186 | |
| 1187 | // Assign bundles for the compact region. |
| 1188 | if (HasCompact) { |
| 1189 | GlobalSplitCandidate &Cand = GlobalCand.front(); |
| 1190 | assert(!Cand.PhysReg && "Compact region has no physreg"); |
| 1191 | if (unsigned B = Cand.getBundles(BundleCand, 0)) { |
| 1192 | UsedCands.push_back(0); |
| 1193 | Cand.IntvIdx = SE->openIntv(); |
| 1194 | DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv " |
| 1195 | << Cand.IntvIdx << ".\n"); |
Chandler Carruth | 32668ea | 2011-08-03 23:07:27 +0000 | [diff] [blame] | 1196 | (void)B; |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1197 | } |
| 1198 | } |
| 1199 | |
| 1200 | splitAroundRegion(LREdit, UsedCands); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1201 | return 0; |
| 1202 | } |
| 1203 | |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1204 | |
| 1205 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | dab35d3 | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1206 | // Per-Block Splitting |
| 1207 | //===----------------------------------------------------------------------===// |
| 1208 | |
| 1209 | /// tryBlockSplit - Split a global live range around every block with uses. This |
| 1210 | /// creates a lot of local live ranges, that will be split by tryLocalSplit if |
| 1211 | /// they don't allocate. |
| 1212 | unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| 1213 | SmallVectorImpl<LiveInterval*> &NewVRegs) { |
| 1214 | assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed"); |
| 1215 | unsigned Reg = VirtReg.reg; |
| 1216 | bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg)); |
| 1217 | LiveRangeEdit LREdit(VirtReg, NewVRegs, this); |
| 1218 | SE->reset(LREdit); |
| 1219 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1220 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1221 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| 1222 | if (SA->shouldSplitSingleBlock(BI, SingleInstrs)) |
| 1223 | SE->splitSingleBlock(BI); |
| 1224 | } |
| 1225 | // No blocks were split. |
| 1226 | if (LREdit.empty()) |
| 1227 | return 0; |
| 1228 | |
| 1229 | // We did split for some blocks. |
Jakob Stoklund Olesen | a9c41d3 | 2011-08-05 23:50:31 +0000 | [diff] [blame^] | 1230 | SmallVector<unsigned, 8> IntvMap; |
| 1231 | SE->finish(&IntvMap); |
Jakob Stoklund Olesen | 1f88042 | 2011-08-05 23:10:40 +0000 | [diff] [blame] | 1232 | |
| 1233 | // Tell LiveDebugVariables about the new ranges. |
| 1234 | DebugVars->splitRegister(Reg, LREdit.regs()); |
| 1235 | |
Jakob Stoklund Olesen | a9c41d3 | 2011-08-05 23:50:31 +0000 | [diff] [blame^] | 1236 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 1237 | |
| 1238 | // Sort out the new intervals created by splitting. The remainder interval |
| 1239 | // goes straight to spilling, the new local ranges get to stay RS_New. |
| 1240 | for (unsigned i = 0, e = LREdit.size(); i != e; ++i) { |
| 1241 | LiveInterval &LI = *LREdit.get(i); |
| 1242 | if (getStage(LI) == RS_New && IntvMap[i] == 0) |
| 1243 | setStage(LI, RS_Spill); |
| 1244 | } |
| 1245 | |
Jakob Stoklund Olesen | dab35d3 | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1246 | if (VerifyEnabled) |
| 1247 | MF->verify(this, "After splitting live range around basic blocks"); |
| 1248 | return 0; |
| 1249 | } |
| 1250 | |
| 1251 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1252 | // Local Splitting |
| 1253 | //===----------------------------------------------------------------------===// |
| 1254 | |
| 1255 | |
| 1256 | /// calcGapWeights - Compute the maximum spill weight that needs to be evicted |
| 1257 | /// in order to use PhysReg between two entries in SA->UseSlots. |
| 1258 | /// |
| 1259 | /// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1]. |
| 1260 | /// |
| 1261 | void RAGreedy::calcGapWeights(unsigned PhysReg, |
| 1262 | SmallVectorImpl<float> &GapWeight) { |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1263 | assert(SA->getUseBlocks().size() == 1 && "Not a local interval"); |
| 1264 | const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front(); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1265 | const SmallVectorImpl<SlotIndex> &Uses = SA->UseSlots; |
| 1266 | const unsigned NumGaps = Uses.size()-1; |
| 1267 | |
| 1268 | // Start and end points for the interference check. |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1269 | SlotIndex StartIdx = |
| 1270 | BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr; |
| 1271 | SlotIndex StopIdx = |
| 1272 | BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr; |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1273 | |
| 1274 | GapWeight.assign(NumGaps, 0.0f); |
| 1275 | |
| 1276 | // Add interference from each overlapping register. |
| 1277 | for (const unsigned *AI = TRI->getOverlaps(PhysReg); *AI; ++AI) { |
| 1278 | if (!query(const_cast<LiveInterval&>(SA->getParent()), *AI) |
| 1279 | .checkInterference()) |
| 1280 | continue; |
| 1281 | |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1282 | // We know that VirtReg is a continuous interval from FirstInstr to |
| 1283 | // LastInstr, so we don't need InterferenceQuery. |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1284 | // |
| 1285 | // Interference that overlaps an instruction is counted in both gaps |
| 1286 | // surrounding the instruction. The exception is interference before |
| 1287 | // StartIdx and after StopIdx. |
| 1288 | // |
| 1289 | LiveIntervalUnion::SegmentIter IntI = PhysReg2LiveUnion[*AI].find(StartIdx); |
| 1290 | for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) { |
| 1291 | // Skip the gaps before IntI. |
| 1292 | while (Uses[Gap+1].getBoundaryIndex() < IntI.start()) |
| 1293 | if (++Gap == NumGaps) |
| 1294 | break; |
| 1295 | if (Gap == NumGaps) |
| 1296 | break; |
| 1297 | |
| 1298 | // Update the gaps covered by IntI. |
| 1299 | const float weight = IntI.value()->weight; |
| 1300 | for (; Gap != NumGaps; ++Gap) { |
| 1301 | GapWeight[Gap] = std::max(GapWeight[Gap], weight); |
| 1302 | if (Uses[Gap+1].getBaseIndex() >= IntI.stop()) |
| 1303 | break; |
| 1304 | } |
| 1305 | if (Gap == NumGaps) |
| 1306 | break; |
| 1307 | } |
| 1308 | } |
| 1309 | } |
| 1310 | |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1311 | /// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only |
| 1312 | /// basic block. |
| 1313 | /// |
| 1314 | unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| 1315 | SmallVectorImpl<LiveInterval*> &NewVRegs) { |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1316 | assert(SA->getUseBlocks().size() == 1 && "Not a local interval"); |
| 1317 | const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front(); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1318 | |
| 1319 | // Note that it is possible to have an interval that is live-in or live-out |
| 1320 | // while only covering a single block - A phi-def can use undef values from |
| 1321 | // predecessors, and the block could be a single-block loop. |
| 1322 | // We don't bother doing anything clever about such a case, we simply assume |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1323 | // that the interval is continuous from FirstInstr to LastInstr. We should |
| 1324 | // make sure that we don't do anything illegal to such an interval, though. |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1325 | |
| 1326 | const SmallVectorImpl<SlotIndex> &Uses = SA->UseSlots; |
| 1327 | if (Uses.size() <= 2) |
| 1328 | return 0; |
| 1329 | const unsigned NumGaps = Uses.size()-1; |
| 1330 | |
| 1331 | DEBUG({ |
| 1332 | dbgs() << "tryLocalSplit: "; |
| 1333 | for (unsigned i = 0, e = Uses.size(); i != e; ++i) |
| 1334 | dbgs() << ' ' << SA->UseSlots[i]; |
| 1335 | dbgs() << '\n'; |
| 1336 | }); |
| 1337 | |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1338 | // Since we allow local split results to be split again, there is a risk of |
| 1339 | // creating infinite loops. It is tempting to require that the new live |
| 1340 | // ranges have less instructions than the original. That would guarantee |
| 1341 | // convergence, but it is too strict. A live range with 3 instructions can be |
| 1342 | // split 2+3 (including the COPY), and we want to allow that. |
| 1343 | // |
| 1344 | // Instead we use these rules: |
| 1345 | // |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1346 | // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1347 | // noop split, of course). |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1348 | // 2. Require progress be made for ranges with getStage() == RS_Split2. All |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1349 | // the new ranges must have fewer instructions than before the split. |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1350 | // 3. New ranges with the same number of instructions are marked RS_Split2, |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1351 | // smaller ranges are marked RS_New. |
| 1352 | // |
| 1353 | // These rules allow a 3 -> 2+3 split once, which we need. They also prevent |
| 1354 | // excessive splitting and infinite loops. |
| 1355 | // |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1356 | bool ProgressRequired = getStage(VirtReg) >= RS_Split2; |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1357 | |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1358 | // Best split candidate. |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1359 | unsigned BestBefore = NumGaps; |
| 1360 | unsigned BestAfter = 0; |
| 1361 | float BestDiff = 0; |
| 1362 | |
Jakob Stoklund Olesen | 40a42a2 | 2011-03-04 00:58:40 +0000 | [diff] [blame] | 1363 | const float blockFreq = SpillPlacer->getBlockFrequency(BI.MBB->getNumber()); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1364 | SmallVector<float, 8> GapWeight; |
| 1365 | |
| 1366 | Order.rewind(); |
| 1367 | while (unsigned PhysReg = Order.next()) { |
| 1368 | // Keep track of the largest spill weight that would need to be evicted in |
| 1369 | // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1]. |
| 1370 | calcGapWeights(PhysReg, GapWeight); |
| 1371 | |
| 1372 | // Try to find the best sequence of gaps to close. |
| 1373 | // The new spill weight must be larger than any gap interference. |
| 1374 | |
| 1375 | // We will split before Uses[SplitBefore] and after Uses[SplitAfter]. |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1376 | unsigned SplitBefore = 0, SplitAfter = 1; |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1377 | |
| 1378 | // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]). |
| 1379 | // It is the spill weight that needs to be evicted. |
| 1380 | float MaxGap = GapWeight[0]; |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1381 | |
| 1382 | for (;;) { |
| 1383 | // Live before/after split? |
| 1384 | const bool LiveBefore = SplitBefore != 0 || BI.LiveIn; |
| 1385 | const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut; |
| 1386 | |
| 1387 | DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' ' |
| 1388 | << Uses[SplitBefore] << '-' << Uses[SplitAfter] |
| 1389 | << " i=" << MaxGap); |
| 1390 | |
| 1391 | // Stop before the interval gets so big we wouldn't be making progress. |
| 1392 | if (!LiveBefore && !LiveAfter) { |
| 1393 | DEBUG(dbgs() << " all\n"); |
| 1394 | break; |
| 1395 | } |
| 1396 | // Should the interval be extended or shrunk? |
| 1397 | bool Shrink = true; |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1398 | |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1399 | // How many gaps would the new range have? |
| 1400 | unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter; |
| 1401 | |
| 1402 | // Legally, without causing looping? |
| 1403 | bool Legal = !ProgressRequired || NewGaps < NumGaps; |
| 1404 | |
| 1405 | if (Legal && MaxGap < HUGE_VALF) { |
| 1406 | // Estimate the new spill weight. Each instruction reads or writes the |
| 1407 | // register. Conservatively assume there are no read-modify-write |
| 1408 | // instructions. |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1409 | // |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1410 | // Try to guess the size of the new interval. |
| 1411 | const float EstWeight = normalizeSpillWeight(blockFreq * (NewGaps + 1), |
| 1412 | Uses[SplitBefore].distance(Uses[SplitAfter]) + |
| 1413 | (LiveBefore + LiveAfter)*SlotIndex::InstrDist); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1414 | // Would this split be possible to allocate? |
| 1415 | // Never allocate all gaps, we wouldn't be making progress. |
Jakob Stoklund Olesen | 66446c8 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 1416 | DEBUG(dbgs() << " w=" << EstWeight); |
| 1417 | if (EstWeight * Hysteresis >= MaxGap) { |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1418 | Shrink = false; |
Jakob Stoklund Olesen | 66446c8 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 1419 | float Diff = EstWeight - MaxGap; |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1420 | if (Diff > BestDiff) { |
| 1421 | DEBUG(dbgs() << " (best)"); |
Jakob Stoklund Olesen | 66446c8 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 1422 | BestDiff = Hysteresis * Diff; |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1423 | BestBefore = SplitBefore; |
| 1424 | BestAfter = SplitAfter; |
| 1425 | } |
| 1426 | } |
| 1427 | } |
| 1428 | |
| 1429 | // Try to shrink. |
| 1430 | if (Shrink) { |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1431 | if (++SplitBefore < SplitAfter) { |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1432 | DEBUG(dbgs() << " shrink\n"); |
| 1433 | // Recompute the max when necessary. |
| 1434 | if (GapWeight[SplitBefore - 1] >= MaxGap) { |
| 1435 | MaxGap = GapWeight[SplitBefore]; |
| 1436 | for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i) |
| 1437 | MaxGap = std::max(MaxGap, GapWeight[i]); |
| 1438 | } |
| 1439 | continue; |
| 1440 | } |
| 1441 | MaxGap = 0; |
| 1442 | } |
| 1443 | |
| 1444 | // Try to extend the interval. |
| 1445 | if (SplitAfter >= NumGaps) { |
| 1446 | DEBUG(dbgs() << " end\n"); |
| 1447 | break; |
| 1448 | } |
| 1449 | |
| 1450 | DEBUG(dbgs() << " extend\n"); |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1451 | MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1452 | } |
| 1453 | } |
| 1454 | |
| 1455 | // Didn't find any candidates? |
| 1456 | if (BestBefore == NumGaps) |
| 1457 | return 0; |
| 1458 | |
| 1459 | DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore] |
| 1460 | << '-' << Uses[BestAfter] << ", " << BestDiff |
| 1461 | << ", " << (BestAfter - BestBefore + 1) << " instrs\n"); |
| 1462 | |
Jakob Stoklund Olesen | 92a55f4 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 1463 | LiveRangeEdit LREdit(VirtReg, NewVRegs, this); |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 1464 | SE->reset(LREdit); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1465 | |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 1466 | SE->openIntv(); |
| 1467 | SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]); |
| 1468 | SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]); |
| 1469 | SE->useIntv(SegStart, SegStop); |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1470 | SmallVector<unsigned, 8> IntvMap; |
| 1471 | SE->finish(&IntvMap); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1472 | DebugVars->splitRegister(VirtReg.reg, LREdit.regs()); |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1473 | |
| 1474 | // If the new range has the same number of instructions as before, mark it as |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1475 | // RS_Split2 so the next split will be forced to make progress. Otherwise, |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1476 | // leave the new intervals as RS_New so they can compete. |
| 1477 | bool LiveBefore = BestBefore != 0 || BI.LiveIn; |
| 1478 | bool LiveAfter = BestAfter != NumGaps || BI.LiveOut; |
| 1479 | unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter; |
| 1480 | if (NewGaps >= NumGaps) { |
| 1481 | DEBUG(dbgs() << "Tagging non-progress ranges: "); |
| 1482 | assert(!ProgressRequired && "Didn't make progress when it was required."); |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1483 | for (unsigned i = 0, e = IntvMap.size(); i != e; ++i) |
| 1484 | if (IntvMap[i] == 1) { |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1485 | setStage(*LREdit.get(i), RS_Split2); |
Jakob Stoklund Olesen | b3e705f | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 1486 | DEBUG(dbgs() << PrintReg(LREdit.get(i)->reg)); |
| 1487 | } |
| 1488 | DEBUG(dbgs() << '\n'); |
| 1489 | } |
Jakob Stoklund Olesen | 0db841f | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 1490 | ++NumLocalSplits; |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1491 | |
| 1492 | return 0; |
| 1493 | } |
| 1494 | |
| 1495 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1496 | // Live Range Splitting |
| 1497 | //===----------------------------------------------------------------------===// |
| 1498 | |
| 1499 | /// trySplit - Try to split VirtReg or one of its interferences, making it |
| 1500 | /// assignable. |
| 1501 | /// @return Physreg when VirtReg may be assigned and/or new NewVRegs. |
| 1502 | unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| 1503 | SmallVectorImpl<LiveInterval*>&NewVRegs) { |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1504 | // Local intervals are handled separately. |
Jakob Stoklund Olesen | a2ebf60 | 2011-02-19 00:38:40 +0000 | [diff] [blame] | 1505 | if (LIS->intervalIsInOneMBB(VirtReg)) { |
| 1506 | NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 1507 | SA->analyze(&VirtReg); |
Jakob Stoklund Olesen | 034a80d | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 1508 | return tryLocalSplit(VirtReg, Order, NewVRegs); |
Jakob Stoklund Olesen | a2ebf60 | 2011-02-19 00:38:40 +0000 | [diff] [blame] | 1509 | } |
| 1510 | |
| 1511 | NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1512 | |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1513 | // Ranges must be Split2 or less. |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1514 | if (getStage(VirtReg) >= RS_Spill) |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 1515 | return 0; |
| 1516 | |
| 1517 | SA->analyze(&VirtReg); |
| 1518 | |
Jakob Stoklund Olesen | 7d6b6a0 | 2011-05-03 20:42:13 +0000 | [diff] [blame] | 1519 | // FIXME: SplitAnalysis may repair broken live ranges coming from the |
| 1520 | // coalescer. That may cause the range to become allocatable which means that |
| 1521 | // tryRegionSplit won't be making progress. This check should be replaced with |
| 1522 | // an assertion when the coalescer is fixed. |
| 1523 | if (SA->didRepairRange()) { |
| 1524 | // VirtReg has changed, so all cached queries are invalid. |
Jakob Stoklund Olesen | bdda37d | 2011-05-10 17:37:41 +0000 | [diff] [blame] | 1525 | invalidateVirtRegs(); |
Jakob Stoklund Olesen | 7d6b6a0 | 2011-05-03 20:42:13 +0000 | [diff] [blame] | 1526 | if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) |
| 1527 | return PhysReg; |
| 1528 | } |
| 1529 | |
Jakob Stoklund Olesen | 49743b1 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1530 | // First try to split around a region spanning multiple blocks. RS_Split2 |
| 1531 | // ranges already made dubious progress with region splitting, so they go |
| 1532 | // straight to single block splitting. |
| 1533 | if (getStage(VirtReg) < RS_Split2) { |
| 1534 | unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs); |
| 1535 | if (PhysReg || !NewVRegs.empty()) |
| 1536 | return PhysReg; |
| 1537 | } |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1538 | |
Jakob Stoklund Olesen | dab35d3 | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1539 | // Then isolate blocks. |
| 1540 | return tryBlockSplit(VirtReg, Order, NewVRegs); |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1541 | } |
| 1542 | |
| 1543 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1544 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | 770d42d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 1545 | // Main Entry Point |
| 1546 | //===----------------------------------------------------------------------===// |
| 1547 | |
| 1548 | unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg, |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1549 | SmallVectorImpl<LiveInterval*> &NewVRegs) { |
Jakob Stoklund Olesen | 770d42d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 1550 | // First try assigning a free register. |
Jakob Stoklund Olesen | 5f2316a | 2011-06-03 20:34:53 +0000 | [diff] [blame] | 1551 | AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo); |
Jakob Stoklund Olesen | 6bfba2e | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 1552 | if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) |
| 1553 | return PhysReg; |
Andrew Trick | b853e6c | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 1554 | |
Jakob Stoklund Olesen | b8d936b | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 1555 | LiveRangeStage Stage = getStage(VirtReg); |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1556 | DEBUG(dbgs() << StageName[Stage] |
| 1557 | << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n'); |
Jakob Stoklund Olesen | b8d936b | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 1558 | |
Jakob Stoklund Olesen | 76395c9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 1559 | // Try to evict a less worthy live range, but only for ranges from the primary |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1560 | // queue. The RS_Split ranges already failed to do this, and they should not |
Jakob Stoklund Olesen | 76395c9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 1561 | // get a second chance until they have been split. |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1562 | if (Stage != RS_Split) |
Jakob Stoklund Olesen | 76395c9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 1563 | if (unsigned PhysReg = tryEvict(VirtReg, Order, NewVRegs)) |
| 1564 | return PhysReg; |
Andrew Trick | b853e6c | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 1565 | |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1566 | assert(NewVRegs.empty() && "Cannot append to existing NewVRegs"); |
| 1567 | |
Jakob Stoklund Olesen | 107d366 | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 1568 | // The first time we see a live range, don't try to split or spill. |
| 1569 | // Wait until the second time, when all smaller ranges have been allocated. |
| 1570 | // This gives a better picture of the interference to split around. |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1571 | if (Stage < RS_Split) { |
| 1572 | setStage(VirtReg, RS_Split); |
Jakob Stoklund Olesen | c1655e1 | 2011-03-19 23:02:47 +0000 | [diff] [blame] | 1573 | DEBUG(dbgs() << "wait for second round\n"); |
Jakob Stoklund Olesen | 107d366 | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 1574 | NewVRegs.push_back(&VirtReg); |
| 1575 | return 0; |
| 1576 | } |
| 1577 | |
Jakob Stoklund Olesen | bf4e10f | 2011-05-06 21:58:30 +0000 | [diff] [blame] | 1578 | // If we couldn't allocate a register from spilling, there is probably some |
| 1579 | // invalid inline assembly. The base class wil report it. |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1580 | if (Stage >= RS_Done || !VirtReg.isSpillable()) |
Jakob Stoklund Olesen | bf4e10f | 2011-05-06 21:58:30 +0000 | [diff] [blame] | 1581 | return ~0u; |
Jakob Stoklund Olesen | 22a1df6 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 1582 | |
Jakob Stoklund Olesen | 46c83c8 | 2010-12-14 00:37:49 +0000 | [diff] [blame] | 1583 | // Try splitting VirtReg or interferences. |
Jakob Stoklund Olesen | ccdb3fc | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1584 | unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs); |
| 1585 | if (PhysReg || !NewVRegs.empty()) |
Jakob Stoklund Olesen | b64d92e | 2010-12-14 00:37:44 +0000 | [diff] [blame] | 1586 | return PhysReg; |
| 1587 | |
Jakob Stoklund Olesen | 770d42d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 1588 | // Finally spill VirtReg itself. |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 1589 | NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | 47dbf6c | 2011-03-10 01:51:42 +0000 | [diff] [blame] | 1590 | LiveRangeEdit LRE(VirtReg, NewVRegs, this); |
| 1591 | spiller().spill(LRE); |
Jakob Stoklund Olesen | fa89a03 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1592 | setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 1593 | |
Jakob Stoklund Olesen | c46570d | 2011-03-16 22:56:08 +0000 | [diff] [blame] | 1594 | if (VerifyEnabled) |
| 1595 | MF->verify(this, "After spilling"); |
| 1596 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 1597 | // The live virtual register requesting allocation was spilled, so tell |
| 1598 | // the caller not to allocate anything during this round. |
| 1599 | return 0; |
| 1600 | } |
| 1601 | |
| 1602 | bool RAGreedy::runOnMachineFunction(MachineFunction &mf) { |
| 1603 | DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n" |
| 1604 | << "********** Function: " |
| 1605 | << ((Value*)mf.getFunction())->getName() << '\n'); |
| 1606 | |
| 1607 | MF = &mf; |
Jakob Stoklund Olesen | af24964 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 1608 | if (VerifyEnabled) |
Jakob Stoklund Olesen | 89cab93 | 2010-12-18 00:06:56 +0000 | [diff] [blame] | 1609 | MF->verify(this, "Before greedy register allocator"); |
Jakob Stoklund Olesen | af24964 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 1610 | |
Jakob Stoklund Olesen | 4680dec | 2010-12-10 23:49:00 +0000 | [diff] [blame] | 1611 | RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>()); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1612 | Indexes = &getAnalysis<SlotIndexes>(); |
Jakob Stoklund Olesen | f428eb6 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 1613 | DomTree = &getAnalysis<MachineDominatorTree>(); |
Jakob Stoklund Olesen | f6dff84 | 2010-12-10 22:54:44 +0000 | [diff] [blame] | 1614 | SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM)); |
Jakob Stoklund Olesen | d0bb5e2 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 1615 | Loops = &getAnalysis<MachineLoopInfo>(); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1616 | Bundles = &getAnalysis<EdgeBundles>(); |
| 1617 | SpillPlacer = &getAnalysis<SpillPlacement>(); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1618 | DebugVars = &getAnalysis<LiveDebugVariables>(); |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1619 | |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 1620 | SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops)); |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 1621 | SE.reset(new SplitEditor(*SA, *LIS, *VRM, *DomTree)); |
Jakob Stoklund Olesen | 1a98800 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1622 | ExtraRegInfo.clear(); |
| 1623 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 1624 | NextCascade = 1; |
Jakob Stoklund Olesen | eda0fe8 | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 1625 | IntfCache.init(MF, &PhysReg2LiveUnion[0], Indexes, TRI); |
Jakob Stoklund Olesen | 0000578 | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1626 | GlobalCand.resize(32); // This will grow as needed. |
Jakob Stoklund Olesen | d0bb5e2 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 1627 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 1628 | allocatePhysRegs(); |
| 1629 | addMBBLiveIns(MF); |
Jakob Stoklund Olesen | 8a61da8 | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 1630 | LIS->addKillFlags(); |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 1631 | |
| 1632 | // Run rewriter |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 1633 | { |
| 1634 | NamedRegionTimer T("Rewriter", TimerGroupName, TimePassesIsEnabled); |
Jakob Stoklund Olesen | ba05c01 | 2011-02-18 22:03:18 +0000 | [diff] [blame] | 1635 | VRM->rewrite(Indexes); |
Jakob Stoklund Olesen | 533f58e | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 1636 | } |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 1637 | |
Jakob Stoklund Olesen | cfafc54 | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 1638 | // Write out new DBG_VALUE instructions. |
Jakob Stoklund Olesen | c476902 | 2011-07-31 03:53:42 +0000 | [diff] [blame] | 1639 | { |
| 1640 | NamedRegionTimer T("Emit Debug Info", TimerGroupName, TimePassesIsEnabled); |
| 1641 | DebugVars->emitDebugValues(VRM); |
| 1642 | } |
Jakob Stoklund Olesen | cfafc54 | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 1643 | |
Jakob Stoklund Olesen | cba2e06 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 1644 | // The pass output is in VirtRegMap. Release all the transient data. |
| 1645 | releaseMemory(); |
| 1646 | |
| 1647 | return true; |
| 1648 | } |