Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 1 | //===-- RegAllocLinearScan.cpp - Linear Scan register allocator -----------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements a linear scan register allocator. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 13 | |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 14 | #define DEBUG_TYPE "regalloc" |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 15 | #include "VirtRegMap.h" |
Lang Hames | 87e3bca | 2009-05-06 02:36:21 +0000 | [diff] [blame] | 16 | #include "VirtRegRewriter.h" |
Lang Hames | e2b201b | 2009-05-18 19:03:16 +0000 | [diff] [blame] | 17 | #include "Spiller.h" |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 18 | #include "llvm/Function.h" |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
| 20 | #include "llvm/CodeGen/LiveStackAnalysis.h" |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 22 | #include "llvm/CodeGen/MachineInstr.h" |
Evan Cheng | 22f07ff | 2007-12-11 02:09:15 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/Passes.h" |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/RegAllocRegistry.h" |
David Greene | 2c17c4d | 2007-09-06 16:18:45 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/RegisterCoalescer.h" |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetRegisterInfo.h" |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetMachine.h" |
Owen Anderson | 95dad83 | 2008-10-07 20:22:28 +0000 | [diff] [blame] | 30 | #include "llvm/Target/TargetOptions.h" |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/EquivalenceClasses.h" |
Dan Gohman | d68a076 | 2009-01-05 17:59:02 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/SmallSet.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/Statistic.h" |
| 35 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | a4f0b3a | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Compiler.h" |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 37 | #include "llvm/Support/Debug.h" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 38 | #include "llvm/Support/ErrorHandling.h" |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 39 | #include "llvm/Support/raw_ostream.h" |
Alkis Evlogimenos | 843b160 | 2004-02-15 10:24:21 +0000 | [diff] [blame] | 40 | #include <algorithm> |
Alkis Evlogimenos | 26f5a69 | 2004-05-30 07:24:39 +0000 | [diff] [blame] | 41 | #include <set> |
Alkis Evlogimenos | 53eb373 | 2004-07-22 08:14:44 +0000 | [diff] [blame] | 42 | #include <queue> |
Duraid Madina | 3005961 | 2005-12-28 04:55:42 +0000 | [diff] [blame] | 43 | #include <memory> |
Jeff Cohen | 97af751 | 2006-12-02 02:22:01 +0000 | [diff] [blame] | 44 | #include <cmath> |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 45 | |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 46 | using namespace llvm; |
| 47 | |
Chris Lattner | cd3245a | 2006-12-19 22:41:21 +0000 | [diff] [blame] | 48 | STATISTIC(NumIters , "Number of iterations performed"); |
| 49 | STATISTIC(NumBacktracks, "Number of times we had to backtrack"); |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 50 | STATISTIC(NumCoalesce, "Number of copies coalesced"); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 51 | STATISTIC(NumDowngrade, "Number of registers downgraded"); |
Chris Lattner | cd3245a | 2006-12-19 22:41:21 +0000 | [diff] [blame] | 52 | |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 53 | static cl::opt<bool> |
| 54 | NewHeuristic("new-spilling-heuristic", |
| 55 | cl::desc("Use new spilling heuristic"), |
| 56 | cl::init(false), cl::Hidden); |
| 57 | |
Evan Cheng | f5cd4f0 | 2008-10-23 20:43:13 +0000 | [diff] [blame] | 58 | static cl::opt<bool> |
| 59 | PreSplitIntervals("pre-alloc-split", |
| 60 | cl::desc("Pre-register allocation live interval splitting"), |
| 61 | cl::init(false), cl::Hidden); |
| 62 | |
Lang Hames | e2b201b | 2009-05-18 19:03:16 +0000 | [diff] [blame] | 63 | static cl::opt<bool> |
| 64 | NewSpillFramework("new-spill-framework", |
| 65 | cl::desc("New spilling framework"), |
| 66 | cl::init(false), cl::Hidden); |
| 67 | |
Chris Lattner | cd3245a | 2006-12-19 22:41:21 +0000 | [diff] [blame] | 68 | static RegisterRegAlloc |
Dan Gohman | b8cab92 | 2008-10-14 20:25:08 +0000 | [diff] [blame] | 69 | linearscanRegAlloc("linearscan", "linear scan register allocator", |
Chris Lattner | cd3245a | 2006-12-19 22:41:21 +0000 | [diff] [blame] | 70 | createLinearScanRegisterAllocator); |
| 71 | |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 72 | namespace { |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 73 | struct VISIBILITY_HIDDEN RALinScan : public MachineFunctionPass { |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 74 | static char ID; |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 75 | RALinScan() : MachineFunctionPass(&ID) {} |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 76 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 77 | typedef std::pair<LiveInterval*, LiveInterval::iterator> IntervalPtr; |
Owen Anderson | cd1dcbd | 2008-08-15 18:49:41 +0000 | [diff] [blame] | 78 | typedef SmallVector<IntervalPtr, 32> IntervalPtrs; |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 79 | private: |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 80 | /// RelatedRegClasses - This structure is built the first time a function is |
| 81 | /// compiled, and keeps track of which register classes have registers that |
| 82 | /// belong to multiple classes or have aliases that are in other classes. |
| 83 | EquivalenceClasses<const TargetRegisterClass*> RelatedRegClasses; |
Owen Anderson | 9738216 | 2008-08-13 23:36:23 +0000 | [diff] [blame] | 84 | DenseMap<unsigned, const TargetRegisterClass*> OneClassForEachPhysReg; |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 85 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 86 | // NextReloadMap - For each register in the map, it maps to the another |
| 87 | // register which is defined by a reload from the same stack slot and |
| 88 | // both reloads are in the same basic block. |
| 89 | DenseMap<unsigned, unsigned> NextReloadMap; |
| 90 | |
| 91 | // DowngradedRegs - A set of registers which are being "downgraded", i.e. |
| 92 | // un-favored for allocation. |
| 93 | SmallSet<unsigned, 8> DowngradedRegs; |
| 94 | |
| 95 | // DowngradeMap - A map from virtual registers to physical registers being |
| 96 | // downgraded for the virtual registers. |
| 97 | DenseMap<unsigned, unsigned> DowngradeMap; |
| 98 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 99 | MachineFunction* mf_; |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 100 | MachineRegisterInfo* mri_; |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 101 | const TargetMachine* tm_; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 102 | const TargetRegisterInfo* tri_; |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 103 | const TargetInstrInfo* tii_; |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 104 | BitVector allocatableRegs_; |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 105 | LiveIntervals* li_; |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 106 | LiveStacks* ls_; |
Evan Cheng | 22f07ff | 2007-12-11 02:09:15 +0000 | [diff] [blame] | 107 | const MachineLoopInfo *loopInfo; |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 108 | |
| 109 | /// handled_ - Intervals are added to the handled_ set in the order of their |
| 110 | /// start value. This is uses for backtracking. |
| 111 | std::vector<LiveInterval*> handled_; |
| 112 | |
| 113 | /// fixed_ - Intervals that correspond to machine registers. |
| 114 | /// |
| 115 | IntervalPtrs fixed_; |
| 116 | |
| 117 | /// active_ - Intervals that are currently being processed, and which have a |
| 118 | /// live range active for the current point. |
| 119 | IntervalPtrs active_; |
| 120 | |
| 121 | /// inactive_ - Intervals that are currently being processed, but which have |
| 122 | /// a hold at the current point. |
| 123 | IntervalPtrs inactive_; |
| 124 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 125 | typedef std::priority_queue<LiveInterval*, |
Owen Anderson | cd1dcbd | 2008-08-15 18:49:41 +0000 | [diff] [blame] | 126 | SmallVector<LiveInterval*, 64>, |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 127 | greater_ptr<LiveInterval> > IntervalHeap; |
| 128 | IntervalHeap unhandled_; |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 129 | |
| 130 | /// regUse_ - Tracks register usage. |
| 131 | SmallVector<unsigned, 32> regUse_; |
| 132 | SmallVector<unsigned, 32> regUseBackUp_; |
| 133 | |
| 134 | /// vrm_ - Tracks register assignments. |
Owen Anderson | 49c8aa0 | 2009-03-13 05:55:11 +0000 | [diff] [blame] | 135 | VirtRegMap* vrm_; |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 136 | |
Lang Hames | 87e3bca | 2009-05-06 02:36:21 +0000 | [diff] [blame] | 137 | std::auto_ptr<VirtRegRewriter> rewriter_; |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 138 | |
Lang Hames | e2b201b | 2009-05-18 19:03:16 +0000 | [diff] [blame] | 139 | std::auto_ptr<Spiller> spiller_; |
| 140 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 141 | public: |
| 142 | virtual const char* getPassName() const { |
| 143 | return "Linear Scan Register Allocator"; |
| 144 | } |
| 145 | |
| 146 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Dan Gohman | 845012e | 2009-07-31 23:37:33 +0000 | [diff] [blame] | 147 | AU.setPreservesCFG(); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 148 | AU.addRequired<LiveIntervals>(); |
Owen Anderson | 95dad83 | 2008-10-07 20:22:28 +0000 | [diff] [blame] | 149 | if (StrongPHIElim) |
| 150 | AU.addRequiredID(StrongPHIEliminationID); |
David Greene | 2c17c4d | 2007-09-06 16:18:45 +0000 | [diff] [blame] | 151 | // Make sure PassManager knows which analyses to make available |
| 152 | // to coalescing and which analyses coalescing invalidates. |
| 153 | AU.addRequiredTransitive<RegisterCoalescer>(); |
Evan Cheng | f5cd4f0 | 2008-10-23 20:43:13 +0000 | [diff] [blame] | 154 | if (PreSplitIntervals) |
| 155 | AU.addRequiredID(PreAllocSplittingID); |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 156 | AU.addRequired<LiveStacks>(); |
| 157 | AU.addPreserved<LiveStacks>(); |
Evan Cheng | 22f07ff | 2007-12-11 02:09:15 +0000 | [diff] [blame] | 158 | AU.addRequired<MachineLoopInfo>(); |
Bill Wendling | 67d65bb | 2008-01-04 20:54:55 +0000 | [diff] [blame] | 159 | AU.addPreserved<MachineLoopInfo>(); |
Owen Anderson | 49c8aa0 | 2009-03-13 05:55:11 +0000 | [diff] [blame] | 160 | AU.addRequired<VirtRegMap>(); |
| 161 | AU.addPreserved<VirtRegMap>(); |
Bill Wendling | 67d65bb | 2008-01-04 20:54:55 +0000 | [diff] [blame] | 162 | AU.addPreservedID(MachineDominatorsID); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 163 | MachineFunctionPass::getAnalysisUsage(AU); |
| 164 | } |
| 165 | |
| 166 | /// runOnMachineFunction - register allocate the whole function |
| 167 | bool runOnMachineFunction(MachineFunction&); |
| 168 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 169 | private: |
| 170 | /// linearScan - the linear scan algorithm |
| 171 | void linearScan(); |
| 172 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 173 | /// initIntervalSets - initialize the interval sets. |
| 174 | /// |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 175 | void initIntervalSets(); |
| 176 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 177 | /// processActiveIntervals - expire old intervals and move non-overlapping |
| 178 | /// ones to the inactive list. |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 179 | void processActiveIntervals(MachineInstrIndex CurPoint); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 180 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 181 | /// processInactiveIntervals - expire old intervals and move overlapping |
| 182 | /// ones to the active list. |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 183 | void processInactiveIntervals(MachineInstrIndex CurPoint); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 184 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 185 | /// hasNextReloadInterval - Return the next liveinterval that's being |
| 186 | /// defined by a reload from the same SS as the specified one. |
| 187 | LiveInterval *hasNextReloadInterval(LiveInterval *cur); |
| 188 | |
| 189 | /// DowngradeRegister - Downgrade a register for allocation. |
| 190 | void DowngradeRegister(LiveInterval *li, unsigned Reg); |
| 191 | |
| 192 | /// UpgradeRegister - Upgrade a register for allocation. |
| 193 | void UpgradeRegister(unsigned Reg); |
| 194 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 195 | /// assignRegOrStackSlotAtInterval - assign a register if one |
| 196 | /// is available, or spill. |
| 197 | void assignRegOrStackSlotAtInterval(LiveInterval* cur); |
| 198 | |
Evan Cheng | 5d088fe | 2009-03-23 22:57:19 +0000 | [diff] [blame] | 199 | void updateSpillWeights(std::vector<float> &Weights, |
| 200 | unsigned reg, float weight, |
| 201 | const TargetRegisterClass *RC); |
| 202 | |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 203 | /// findIntervalsToSpill - Determine the intervals to spill for the |
| 204 | /// specified interval. It's passed the physical registers whose spill |
| 205 | /// weight is the lowest among all the registers whose live intervals |
| 206 | /// conflict with the interval. |
| 207 | void findIntervalsToSpill(LiveInterval *cur, |
| 208 | std::vector<std::pair<unsigned,float> > &Candidates, |
| 209 | unsigned NumCands, |
| 210 | SmallVector<LiveInterval*, 8> &SpillIntervals); |
| 211 | |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 212 | /// attemptTrivialCoalescing - If a simple interval is defined by a copy, |
| 213 | /// try allocate the definition the same register as the source register |
| 214 | /// if the register is not defined during live time of the interval. This |
| 215 | /// eliminate a copy. This is used to coalesce copies which were not |
| 216 | /// coalesced away before allocation either due to dest and src being in |
| 217 | /// different register classes or because the coalescer was overly |
| 218 | /// conservative. |
| 219 | unsigned attemptTrivialCoalescing(LiveInterval &cur, unsigned Reg); |
| 220 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 221 | /// |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 222 | /// Register usage / availability tracking helpers. |
| 223 | /// |
| 224 | |
| 225 | void initRegUses() { |
| 226 | regUse_.resize(tri_->getNumRegs(), 0); |
| 227 | regUseBackUp_.resize(tri_->getNumRegs(), 0); |
| 228 | } |
| 229 | |
| 230 | void finalizeRegUses() { |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 231 | #ifndef NDEBUG |
| 232 | // Verify all the registers are "freed". |
| 233 | bool Error = false; |
| 234 | for (unsigned i = 0, e = tri_->getNumRegs(); i != e; ++i) { |
| 235 | if (regUse_[i] != 0) { |
Benjamin Kramer | cfa6ec9 | 2009-08-23 11:37:21 +0000 | [diff] [blame] | 236 | errs() << tri_->getName(i) << " is still in use!\n"; |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 237 | Error = true; |
| 238 | } |
| 239 | } |
| 240 | if (Error) |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 241 | llvm_unreachable(0); |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 242 | #endif |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 243 | regUse_.clear(); |
| 244 | regUseBackUp_.clear(); |
| 245 | } |
| 246 | |
| 247 | void addRegUse(unsigned physReg) { |
| 248 | assert(TargetRegisterInfo::isPhysicalRegister(physReg) && |
| 249 | "should be physical register!"); |
| 250 | ++regUse_[physReg]; |
| 251 | for (const unsigned* as = tri_->getAliasSet(physReg); *as; ++as) |
| 252 | ++regUse_[*as]; |
| 253 | } |
| 254 | |
| 255 | void delRegUse(unsigned physReg) { |
| 256 | assert(TargetRegisterInfo::isPhysicalRegister(physReg) && |
| 257 | "should be physical register!"); |
| 258 | assert(regUse_[physReg] != 0); |
| 259 | --regUse_[physReg]; |
| 260 | for (const unsigned* as = tri_->getAliasSet(physReg); *as; ++as) { |
| 261 | assert(regUse_[*as] != 0); |
| 262 | --regUse_[*as]; |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | bool isRegAvail(unsigned physReg) const { |
| 267 | assert(TargetRegisterInfo::isPhysicalRegister(physReg) && |
| 268 | "should be physical register!"); |
| 269 | return regUse_[physReg] == 0; |
| 270 | } |
| 271 | |
| 272 | void backUpRegUses() { |
| 273 | regUseBackUp_ = regUse_; |
| 274 | } |
| 275 | |
| 276 | void restoreRegUses() { |
| 277 | regUse_ = regUseBackUp_; |
| 278 | } |
| 279 | |
| 280 | /// |
| 281 | /// Register handling helpers. |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 282 | /// |
| 283 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 284 | /// getFreePhysReg - return a free physical register for this virtual |
| 285 | /// register interval if we have one, otherwise return 0. |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 286 | unsigned getFreePhysReg(LiveInterval* cur); |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 287 | unsigned getFreePhysReg(LiveInterval* cur, |
| 288 | const TargetRegisterClass *RC, |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 289 | unsigned MaxInactiveCount, |
| 290 | SmallVector<unsigned, 256> &inactiveCounts, |
| 291 | bool SkipDGRegs); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 292 | |
| 293 | /// assignVirt2StackSlot - assigns this virtual register to a |
| 294 | /// stack slot. returns the stack slot |
| 295 | int assignVirt2StackSlot(unsigned virtReg); |
| 296 | |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 297 | void ComputeRelatedRegClasses(); |
| 298 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 299 | template <typename ItTy> |
| 300 | void printIntervals(const char* const str, ItTy i, ItTy e) const { |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 301 | DEBUG({ |
| 302 | if (str) |
| 303 | errs() << str << " intervals:\n"; |
| 304 | |
| 305 | for (; i != e; ++i) { |
| 306 | errs() << "\t" << *i->first << " -> "; |
| 307 | |
| 308 | unsigned reg = i->first->reg; |
| 309 | if (TargetRegisterInfo::isVirtualRegister(reg)) |
| 310 | reg = vrm_->getPhys(reg); |
| 311 | |
| 312 | errs() << tri_->getName(reg) << '\n'; |
| 313 | } |
| 314 | }); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 315 | } |
| 316 | }; |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 317 | char RALinScan::ID = 0; |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 318 | } |
| 319 | |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 320 | static RegisterPass<RALinScan> |
| 321 | X("linearscan-regalloc", "Linear Scan Register Allocator"); |
| 322 | |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 323 | void RALinScan::ComputeRelatedRegClasses() { |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 324 | // First pass, add all reg classes to the union, and determine at least one |
| 325 | // reg class that each register is in. |
| 326 | bool HasAliases = false; |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 327 | for (TargetRegisterInfo::regclass_iterator RCI = tri_->regclass_begin(), |
| 328 | E = tri_->regclass_end(); RCI != E; ++RCI) { |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 329 | RelatedRegClasses.insert(*RCI); |
| 330 | for (TargetRegisterClass::iterator I = (*RCI)->begin(), E = (*RCI)->end(); |
| 331 | I != E; ++I) { |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 332 | HasAliases = HasAliases || *tri_->getAliasSet(*I) != 0; |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 333 | |
| 334 | const TargetRegisterClass *&PRC = OneClassForEachPhysReg[*I]; |
| 335 | if (PRC) { |
| 336 | // Already processed this register. Just make sure we know that |
| 337 | // multiple register classes share a register. |
| 338 | RelatedRegClasses.unionSets(PRC, *RCI); |
| 339 | } else { |
| 340 | PRC = *RCI; |
| 341 | } |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | // Second pass, now that we know conservatively what register classes each reg |
| 346 | // belongs to, add info about aliases. We don't need to do this for targets |
| 347 | // without register aliases. |
| 348 | if (HasAliases) |
Owen Anderson | 9738216 | 2008-08-13 23:36:23 +0000 | [diff] [blame] | 349 | for (DenseMap<unsigned, const TargetRegisterClass*>::iterator |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 350 | I = OneClassForEachPhysReg.begin(), E = OneClassForEachPhysReg.end(); |
| 351 | I != E; ++I) |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 352 | for (const unsigned *AS = tri_->getAliasSet(I->first); *AS; ++AS) |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 353 | RelatedRegClasses.unionSets(I->second, OneClassForEachPhysReg[*AS]); |
| 354 | } |
| 355 | |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 356 | /// attemptTrivialCoalescing - If a simple interval is defined by a copy, |
| 357 | /// try allocate the definition the same register as the source register |
| 358 | /// if the register is not defined during live time of the interval. This |
| 359 | /// eliminate a copy. This is used to coalesce copies which were not |
| 360 | /// coalesced away before allocation either due to dest and src being in |
| 361 | /// different register classes or because the coalescer was overly |
| 362 | /// conservative. |
| 363 | unsigned RALinScan::attemptTrivialCoalescing(LiveInterval &cur, unsigned Reg) { |
Evan Cheng | 90f95f8 | 2009-06-14 20:22:55 +0000 | [diff] [blame] | 364 | unsigned Preference = vrm_->getRegAllocPref(cur.reg); |
| 365 | if ((Preference && Preference == Reg) || !cur.containsOneValue()) |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 366 | return Reg; |
| 367 | |
Evan Cheng | d0deec2 | 2009-01-20 00:16:18 +0000 | [diff] [blame] | 368 | VNInfo *vni = cur.begin()->valno; |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 369 | if ((vni->def == MachineInstrIndex()) || |
| 370 | vni->isUnused() || !vni->isDefAccurate()) |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 371 | return Reg; |
| 372 | MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def); |
Evan Cheng | eca24fb | 2009-05-12 23:07:00 +0000 | [diff] [blame] | 373 | unsigned SrcReg, DstReg, SrcSubReg, DstSubReg, PhysReg; |
Evan Cheng | 04ee5a1 | 2009-01-20 19:12:24 +0000 | [diff] [blame] | 374 | if (!CopyMI || |
| 375 | !tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubReg, DstSubReg)) |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 376 | return Reg; |
Evan Cheng | eca24fb | 2009-05-12 23:07:00 +0000 | [diff] [blame] | 377 | PhysReg = SrcReg; |
Anton Korobeynikov | 4aefd6b | 2008-02-20 12:07:57 +0000 | [diff] [blame] | 378 | if (TargetRegisterInfo::isVirtualRegister(SrcReg)) { |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 379 | if (!vrm_->isAssignedReg(SrcReg)) |
| 380 | return Reg; |
Evan Cheng | eca24fb | 2009-05-12 23:07:00 +0000 | [diff] [blame] | 381 | PhysReg = vrm_->getPhys(SrcReg); |
Anton Korobeynikov | 4aefd6b | 2008-02-20 12:07:57 +0000 | [diff] [blame] | 382 | } |
Evan Cheng | eca24fb | 2009-05-12 23:07:00 +0000 | [diff] [blame] | 383 | if (Reg == PhysReg) |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 384 | return Reg; |
| 385 | |
Evan Cheng | 841ee1a | 2008-09-18 22:38:47 +0000 | [diff] [blame] | 386 | const TargetRegisterClass *RC = mri_->getRegClass(cur.reg); |
Evan Cheng | eca24fb | 2009-05-12 23:07:00 +0000 | [diff] [blame] | 387 | if (!RC->contains(PhysReg)) |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 388 | return Reg; |
| 389 | |
| 390 | // Try to coalesce. |
Evan Cheng | eca24fb | 2009-05-12 23:07:00 +0000 | [diff] [blame] | 391 | if (!li_->conflictsWithPhysRegDef(cur, *vrm_, PhysReg)) { |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 392 | DEBUG(errs() << "Coalescing: " << cur << " -> " << tri_->getName(PhysReg) |
| 393 | << '\n'); |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 394 | vrm_->clearVirt(cur.reg); |
Evan Cheng | eca24fb | 2009-05-12 23:07:00 +0000 | [diff] [blame] | 395 | vrm_->assignVirt2Phys(cur.reg, PhysReg); |
| 396 | |
| 397 | // Remove unnecessary kills since a copy does not clobber the register. |
| 398 | if (li_->hasInterval(SrcReg)) { |
| 399 | LiveInterval &SrcLI = li_->getInterval(SrcReg); |
| 400 | for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(cur.reg), |
| 401 | E = mri_->reg_end(); I != E; ++I) { |
| 402 | MachineOperand &O = I.getOperand(); |
| 403 | if (!O.isUse() || !O.isKill()) |
| 404 | continue; |
| 405 | MachineInstr *MI = &*I; |
| 406 | if (SrcLI.liveAt(li_->getDefIndex(li_->getInstructionIndex(MI)))) |
| 407 | O.setIsKill(false); |
| 408 | } |
| 409 | } |
| 410 | |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 411 | ++NumCoalesce; |
Evan Cheng | 073e7e5 | 2009-06-04 20:53:36 +0000 | [diff] [blame] | 412 | return PhysReg; |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | return Reg; |
| 416 | } |
| 417 | |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 418 | bool RALinScan::runOnMachineFunction(MachineFunction &fn) { |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 419 | mf_ = &fn; |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 420 | mri_ = &fn.getRegInfo(); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 421 | tm_ = &fn.getTarget(); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 422 | tri_ = tm_->getRegisterInfo(); |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 423 | tii_ = tm_->getInstrInfo(); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 424 | allocatableRegs_ = tri_->getAllocatableSet(fn); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 425 | li_ = &getAnalysis<LiveIntervals>(); |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 426 | ls_ = &getAnalysis<LiveStacks>(); |
Evan Cheng | 22f07ff | 2007-12-11 02:09:15 +0000 | [diff] [blame] | 427 | loopInfo = &getAnalysis<MachineLoopInfo>(); |
Chris Lattner | f348e3a | 2004-11-18 04:33:31 +0000 | [diff] [blame] | 428 | |
David Greene | 2c17c4d | 2007-09-06 16:18:45 +0000 | [diff] [blame] | 429 | // We don't run the coalescer here because we have no reason to |
| 430 | // interact with it. If the coalescer requires interaction, it |
| 431 | // won't do anything. If it doesn't require interaction, we assume |
| 432 | // it was run as a separate pass. |
| 433 | |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 434 | // If this is the first function compiled, compute the related reg classes. |
| 435 | if (RelatedRegClasses.empty()) |
| 436 | ComputeRelatedRegClasses(); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 437 | |
| 438 | // Also resize register usage trackers. |
| 439 | initRegUses(); |
| 440 | |
Owen Anderson | 49c8aa0 | 2009-03-13 05:55:11 +0000 | [diff] [blame] | 441 | vrm_ = &getAnalysis<VirtRegMap>(); |
Lang Hames | 87e3bca | 2009-05-06 02:36:21 +0000 | [diff] [blame] | 442 | if (!rewriter_.get()) rewriter_.reset(createVirtRegRewriter()); |
Lang Hames | e2b201b | 2009-05-18 19:03:16 +0000 | [diff] [blame] | 443 | |
| 444 | if (NewSpillFramework) { |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 445 | spiller_.reset(createSpiller(mf_, li_, ls_, vrm_)); |
Lang Hames | e2b201b | 2009-05-18 19:03:16 +0000 | [diff] [blame] | 446 | } |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 447 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 448 | initIntervalSets(); |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 449 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 450 | linearScan(); |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 451 | |
Chris Lattner | b0f31bf | 2005-01-23 22:45:13 +0000 | [diff] [blame] | 452 | // Rewrite spill code and update the PhysRegsUsed set. |
Lang Hames | 87e3bca | 2009-05-06 02:36:21 +0000 | [diff] [blame] | 453 | rewriter_->runOnMachineFunction(*mf_, *vrm_, li_); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 454 | |
Dan Gohman | 51cd9d6 | 2008-06-23 23:51:16 +0000 | [diff] [blame] | 455 | assert(unhandled_.empty() && "Unhandled live intervals remain!"); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 456 | |
| 457 | finalizeRegUses(); |
| 458 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 459 | fixed_.clear(); |
| 460 | active_.clear(); |
| 461 | inactive_.clear(); |
| 462 | handled_.clear(); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 463 | NextReloadMap.clear(); |
| 464 | DowngradedRegs.clear(); |
| 465 | DowngradeMap.clear(); |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 466 | spiller_.reset(0); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 467 | |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 468 | return true; |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 469 | } |
| 470 | |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 471 | /// initIntervalSets - initialize the interval sets. |
| 472 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 473 | void RALinScan::initIntervalSets() |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 474 | { |
| 475 | assert(unhandled_.empty() && fixed_.empty() && |
| 476 | active_.empty() && inactive_.empty() && |
| 477 | "interval sets should be empty on initialization"); |
| 478 | |
Owen Anderson | cd1dcbd | 2008-08-15 18:49:41 +0000 | [diff] [blame] | 479 | handled_.reserve(li_->getNumIntervals()); |
| 480 | |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 481 | for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) { |
Owen Anderson | 03857b2 | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 482 | if (TargetRegisterInfo::isPhysicalRegister(i->second->reg)) { |
Evan Cheng | 841ee1a | 2008-09-18 22:38:47 +0000 | [diff] [blame] | 483 | mri_->setPhysRegUsed(i->second->reg); |
Owen Anderson | 03857b2 | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 484 | fixed_.push_back(std::make_pair(i->second, i->second->begin())); |
Chris Lattner | b0f31bf | 2005-01-23 22:45:13 +0000 | [diff] [blame] | 485 | } else |
Owen Anderson | 03857b2 | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 486 | unhandled_.push(i->second); |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 487 | } |
| 488 | } |
| 489 | |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 490 | void RALinScan::linearScan() { |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 491 | // linear scan algorithm |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 492 | DEBUG({ |
| 493 | errs() << "********** LINEAR SCAN **********\n" |
| 494 | << "********** Function: " |
| 495 | << mf_->getFunction()->getName() << '\n'; |
| 496 | printIntervals("fixed", fixed_.begin(), fixed_.end()); |
| 497 | }); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 498 | |
| 499 | while (!unhandled_.empty()) { |
| 500 | // pick the interval with the earliest start point |
| 501 | LiveInterval* cur = unhandled_.top(); |
| 502 | unhandled_.pop(); |
Evan Cheng | 11923cc | 2007-10-16 21:09:14 +0000 | [diff] [blame] | 503 | ++NumIters; |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 504 | DEBUG(errs() << "\n*** CURRENT ***: " << *cur << '\n'); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 505 | |
Evan Cheng | f30a49d | 2008-04-03 16:40:27 +0000 | [diff] [blame] | 506 | if (!cur->empty()) { |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 507 | processActiveIntervals(cur->beginIndex()); |
| 508 | processInactiveIntervals(cur->beginIndex()); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 509 | |
Evan Cheng | f30a49d | 2008-04-03 16:40:27 +0000 | [diff] [blame] | 510 | assert(TargetRegisterInfo::isVirtualRegister(cur->reg) && |
| 511 | "Can only allocate virtual registers!"); |
| 512 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 513 | |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 514 | // Allocating a virtual register. try to find a free |
| 515 | // physical register or spill an interval (possibly this one) in order to |
| 516 | // assign it one. |
| 517 | assignRegOrStackSlotAtInterval(cur); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 518 | |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 519 | DEBUG({ |
| 520 | printIntervals("active", active_.begin(), active_.end()); |
| 521 | printIntervals("inactive", inactive_.begin(), inactive_.end()); |
| 522 | }); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 523 | } |
Alkis Evlogimenos | 7d629b5 | 2004-01-07 09:20:58 +0000 | [diff] [blame] | 524 | |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 525 | // Expire any remaining active intervals |
Evan Cheng | 11923cc | 2007-10-16 21:09:14 +0000 | [diff] [blame] | 526 | while (!active_.empty()) { |
| 527 | IntervalPtr &IP = active_.back(); |
| 528 | unsigned reg = IP.first->reg; |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 529 | DEBUG(errs() << "\tinterval " << *IP.first << " expired\n"); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 530 | assert(TargetRegisterInfo::isVirtualRegister(reg) && |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 531 | "Can only allocate virtual registers!"); |
| 532 | reg = vrm_->getPhys(reg); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 533 | delRegUse(reg); |
Evan Cheng | 11923cc | 2007-10-16 21:09:14 +0000 | [diff] [blame] | 534 | active_.pop_back(); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 535 | } |
Alkis Evlogimenos | 7d629b5 | 2004-01-07 09:20:58 +0000 | [diff] [blame] | 536 | |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 537 | // Expire any remaining inactive intervals |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 538 | DEBUG({ |
| 539 | for (IntervalPtrs::reverse_iterator |
| 540 | i = inactive_.rbegin(); i != inactive_.rend(); ++i) |
| 541 | errs() << "\tinterval " << *i->first << " expired\n"; |
| 542 | }); |
Evan Cheng | 11923cc | 2007-10-16 21:09:14 +0000 | [diff] [blame] | 543 | inactive_.clear(); |
Alkis Evlogimenos | b7be115 | 2004-01-13 20:42:08 +0000 | [diff] [blame] | 544 | |
Evan Cheng | 81a0382 | 2007-11-17 00:40:40 +0000 | [diff] [blame] | 545 | // Add live-ins to every BB except for entry. Also perform trivial coalescing. |
Evan Cheng | 3f4b80e | 2007-10-17 02:12:22 +0000 | [diff] [blame] | 546 | MachineFunction::iterator EntryMBB = mf_->begin(); |
Evan Cheng | a5bfc97 | 2007-10-17 06:53:44 +0000 | [diff] [blame] | 547 | SmallVector<MachineBasicBlock*, 8> LiveInMBBs; |
Evan Cheng | 3f4b80e | 2007-10-17 02:12:22 +0000 | [diff] [blame] | 548 | for (LiveIntervals::iterator i = li_->begin(), e = li_->end(); i != e; ++i) { |
Owen Anderson | 03857b2 | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 549 | LiveInterval &cur = *i->second; |
Evan Cheng | 3f4b80e | 2007-10-17 02:12:22 +0000 | [diff] [blame] | 550 | unsigned Reg = 0; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 551 | bool isPhys = TargetRegisterInfo::isPhysicalRegister(cur.reg); |
Evan Cheng | 81a0382 | 2007-11-17 00:40:40 +0000 | [diff] [blame] | 552 | if (isPhys) |
Owen Anderson | 03857b2 | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 553 | Reg = cur.reg; |
Evan Cheng | 3f4b80e | 2007-10-17 02:12:22 +0000 | [diff] [blame] | 554 | else if (vrm_->isAssignedReg(cur.reg)) |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 555 | Reg = attemptTrivialCoalescing(cur, vrm_->getPhys(cur.reg)); |
Evan Cheng | 3f4b80e | 2007-10-17 02:12:22 +0000 | [diff] [blame] | 556 | if (!Reg) |
| 557 | continue; |
Evan Cheng | 81a0382 | 2007-11-17 00:40:40 +0000 | [diff] [blame] | 558 | // Ignore splited live intervals. |
| 559 | if (!isPhys && vrm_->getPreSplitReg(cur.reg)) |
| 560 | continue; |
Evan Cheng | 550aacb | 2009-06-04 20:28:22 +0000 | [diff] [blame] | 561 | |
Evan Cheng | 3f4b80e | 2007-10-17 02:12:22 +0000 | [diff] [blame] | 562 | for (LiveInterval::Ranges::const_iterator I = cur.begin(), E = cur.end(); |
| 563 | I != E; ++I) { |
| 564 | const LiveRange &LR = *I; |
Evan Cheng | d0e32c5 | 2008-10-29 05:06:14 +0000 | [diff] [blame] | 565 | if (li_->findLiveInMBBs(LR.start, LR.end, LiveInMBBs)) { |
Evan Cheng | 3f4b80e | 2007-10-17 02:12:22 +0000 | [diff] [blame] | 566 | for (unsigned i = 0, e = LiveInMBBs.size(); i != e; ++i) |
Evan Cheng | 073e7e5 | 2009-06-04 20:53:36 +0000 | [diff] [blame] | 567 | if (LiveInMBBs[i] != EntryMBB) { |
| 568 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && |
| 569 | "Adding a virtual register to livein set?"); |
Evan Cheng | 3f4b80e | 2007-10-17 02:12:22 +0000 | [diff] [blame] | 570 | LiveInMBBs[i]->addLiveIn(Reg); |
Evan Cheng | 073e7e5 | 2009-06-04 20:53:36 +0000 | [diff] [blame] | 571 | } |
Evan Cheng | a5bfc97 | 2007-10-17 06:53:44 +0000 | [diff] [blame] | 572 | LiveInMBBs.clear(); |
Evan Cheng | 9fc508f | 2007-02-16 09:05:02 +0000 | [diff] [blame] | 573 | } |
| 574 | } |
| 575 | } |
| 576 | |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 577 | DEBUG(errs() << *vrm_); |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 578 | |
| 579 | // Look for physical registers that end up not being allocated even though |
| 580 | // register allocator had to spill other registers in its register class. |
| 581 | if (ls_->getNumIntervals() == 0) |
| 582 | return; |
Evan Cheng | 90f95f8 | 2009-06-14 20:22:55 +0000 | [diff] [blame] | 583 | if (!vrm_->FindUnusedRegisters(li_)) |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 584 | return; |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 585 | } |
| 586 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 587 | /// processActiveIntervals - expire old intervals and move non-overlapping ones |
| 588 | /// to the inactive list. |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 589 | void RALinScan::processActiveIntervals(MachineInstrIndex CurPoint) |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 590 | { |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 591 | DEBUG(errs() << "\tprocessing active intervals:\n"); |
Chris Lattner | 23b71c1 | 2004-11-18 01:29:39 +0000 | [diff] [blame] | 592 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 593 | for (unsigned i = 0, e = active_.size(); i != e; ++i) { |
| 594 | LiveInterval *Interval = active_[i].first; |
| 595 | LiveInterval::iterator IntervalPos = active_[i].second; |
| 596 | unsigned reg = Interval->reg; |
Alkis Evlogimenos | ed54373 | 2004-09-01 22:52:29 +0000 | [diff] [blame] | 597 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 598 | IntervalPos = Interval->advanceTo(IntervalPos, CurPoint); |
| 599 | |
| 600 | if (IntervalPos == Interval->end()) { // Remove expired intervals. |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 601 | DEBUG(errs() << "\t\tinterval " << *Interval << " expired\n"); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 602 | assert(TargetRegisterInfo::isVirtualRegister(reg) && |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 603 | "Can only allocate virtual registers!"); |
| 604 | reg = vrm_->getPhys(reg); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 605 | delRegUse(reg); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 606 | |
| 607 | // Pop off the end of the list. |
| 608 | active_[i] = active_.back(); |
| 609 | active_.pop_back(); |
| 610 | --i; --e; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 611 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 612 | } else if (IntervalPos->start > CurPoint) { |
| 613 | // Move inactive intervals to inactive list. |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 614 | DEBUG(errs() << "\t\tinterval " << *Interval << " inactive\n"); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 615 | assert(TargetRegisterInfo::isVirtualRegister(reg) && |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 616 | "Can only allocate virtual registers!"); |
| 617 | reg = vrm_->getPhys(reg); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 618 | delRegUse(reg); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 619 | // add to inactive. |
| 620 | inactive_.push_back(std::make_pair(Interval, IntervalPos)); |
| 621 | |
| 622 | // Pop off the end of the list. |
| 623 | active_[i] = active_.back(); |
| 624 | active_.pop_back(); |
| 625 | --i; --e; |
| 626 | } else { |
| 627 | // Otherwise, just update the iterator position. |
| 628 | active_[i].second = IntervalPos; |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 629 | } |
| 630 | } |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 631 | } |
| 632 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 633 | /// processInactiveIntervals - expire old intervals and move overlapping |
| 634 | /// ones to the active list. |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 635 | void RALinScan::processInactiveIntervals(MachineInstrIndex CurPoint) |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 636 | { |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 637 | DEBUG(errs() << "\tprocessing inactive intervals:\n"); |
Chris Lattner | 365b95f | 2004-11-18 04:13:02 +0000 | [diff] [blame] | 638 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 639 | for (unsigned i = 0, e = inactive_.size(); i != e; ++i) { |
| 640 | LiveInterval *Interval = inactive_[i].first; |
| 641 | LiveInterval::iterator IntervalPos = inactive_[i].second; |
| 642 | unsigned reg = Interval->reg; |
Chris Lattner | 23b71c1 | 2004-11-18 01:29:39 +0000 | [diff] [blame] | 643 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 644 | IntervalPos = Interval->advanceTo(IntervalPos, CurPoint); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 645 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 646 | if (IntervalPos == Interval->end()) { // remove expired intervals. |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 647 | DEBUG(errs() << "\t\tinterval " << *Interval << " expired\n"); |
Alkis Evlogimenos | 169cfd0 | 2003-12-21 05:43:40 +0000 | [diff] [blame] | 648 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 649 | // Pop off the end of the list. |
| 650 | inactive_[i] = inactive_.back(); |
| 651 | inactive_.pop_back(); |
| 652 | --i; --e; |
| 653 | } else if (IntervalPos->start <= CurPoint) { |
| 654 | // move re-activated intervals in active list |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 655 | DEBUG(errs() << "\t\tinterval " << *Interval << " active\n"); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 656 | assert(TargetRegisterInfo::isVirtualRegister(reg) && |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 657 | "Can only allocate virtual registers!"); |
| 658 | reg = vrm_->getPhys(reg); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 659 | addRegUse(reg); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 660 | // add to active |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 661 | active_.push_back(std::make_pair(Interval, IntervalPos)); |
| 662 | |
| 663 | // Pop off the end of the list. |
| 664 | inactive_[i] = inactive_.back(); |
| 665 | inactive_.pop_back(); |
| 666 | --i; --e; |
| 667 | } else { |
| 668 | // Otherwise, just update the iterator position. |
| 669 | inactive_[i].second = IntervalPos; |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 670 | } |
| 671 | } |
Alkis Evlogimenos | 169cfd0 | 2003-12-21 05:43:40 +0000 | [diff] [blame] | 672 | } |
| 673 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 674 | /// updateSpillWeights - updates the spill weights of the specifed physical |
| 675 | /// register and its weight. |
Evan Cheng | 5d088fe | 2009-03-23 22:57:19 +0000 | [diff] [blame] | 676 | void RALinScan::updateSpillWeights(std::vector<float> &Weights, |
| 677 | unsigned reg, float weight, |
| 678 | const TargetRegisterClass *RC) { |
| 679 | SmallSet<unsigned, 4> Processed; |
| 680 | SmallSet<unsigned, 4> SuperAdded; |
| 681 | SmallVector<unsigned, 4> Supers; |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 682 | Weights[reg] += weight; |
Evan Cheng | 5d088fe | 2009-03-23 22:57:19 +0000 | [diff] [blame] | 683 | Processed.insert(reg); |
| 684 | for (const unsigned* as = tri_->getAliasSet(reg); *as; ++as) { |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 685 | Weights[*as] += weight; |
Evan Cheng | 5d088fe | 2009-03-23 22:57:19 +0000 | [diff] [blame] | 686 | Processed.insert(*as); |
| 687 | if (tri_->isSubRegister(*as, reg) && |
| 688 | SuperAdded.insert(*as) && |
| 689 | RC->contains(*as)) { |
| 690 | Supers.push_back(*as); |
| 691 | } |
| 692 | } |
| 693 | |
| 694 | // If the alias is a super-register, and the super-register is in the |
| 695 | // register class we are trying to allocate. Then add the weight to all |
| 696 | // sub-registers of the super-register even if they are not aliases. |
| 697 | // e.g. allocating for GR32, bh is not used, updating bl spill weight. |
| 698 | // bl should get the same spill weight otherwise it will be choosen |
| 699 | // as a spill candidate since spilling bh doesn't make ebx available. |
| 700 | for (unsigned i = 0, e = Supers.size(); i != e; ++i) { |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 701 | for (const unsigned *sr = tri_->getSubRegisters(Supers[i]); *sr; ++sr) |
| 702 | if (!Processed.count(*sr)) |
| 703 | Weights[*sr] += weight; |
Evan Cheng | 5d088fe | 2009-03-23 22:57:19 +0000 | [diff] [blame] | 704 | } |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 705 | } |
| 706 | |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 707 | static |
| 708 | RALinScan::IntervalPtrs::iterator |
| 709 | FindIntervalInVector(RALinScan::IntervalPtrs &IP, LiveInterval *LI) { |
| 710 | for (RALinScan::IntervalPtrs::iterator I = IP.begin(), E = IP.end(); |
| 711 | I != E; ++I) |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 712 | if (I->first == LI) return I; |
| 713 | return IP.end(); |
| 714 | } |
| 715 | |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 716 | static void RevertVectorIteratorsTo(RALinScan::IntervalPtrs &V, MachineInstrIndex Point){ |
Chris Lattner | 19828d4 | 2004-11-18 03:49:30 +0000 | [diff] [blame] | 717 | for (unsigned i = 0, e = V.size(); i != e; ++i) { |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 718 | RALinScan::IntervalPtr &IP = V[i]; |
Chris Lattner | 19828d4 | 2004-11-18 03:49:30 +0000 | [diff] [blame] | 719 | LiveInterval::iterator I = std::upper_bound(IP.first->begin(), |
| 720 | IP.second, Point); |
| 721 | if (I != IP.first->begin()) --I; |
| 722 | IP.second = I; |
| 723 | } |
| 724 | } |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 725 | |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 726 | /// addStackInterval - Create a LiveInterval for stack if the specified live |
| 727 | /// interval has been spilled. |
| 728 | static void addStackInterval(LiveInterval *cur, LiveStacks *ls_, |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 729 | LiveIntervals *li_, |
| 730 | MachineRegisterInfo* mri_, VirtRegMap &vrm_) { |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 731 | int SS = vrm_.getStackSlot(cur->reg); |
| 732 | if (SS == VirtRegMap::NO_STACK_SLOT) |
| 733 | return; |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 734 | |
| 735 | const TargetRegisterClass *RC = mri_->getRegClass(cur->reg); |
| 736 | LiveInterval &SI = ls_->getOrCreateInterval(SS, RC); |
Evan Cheng | 9c3c221 | 2008-06-06 07:54:39 +0000 | [diff] [blame] | 737 | |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 738 | VNInfo *VNI; |
Evan Cheng | 5489893 | 2008-10-29 08:39:34 +0000 | [diff] [blame] | 739 | if (SI.hasAtLeastOneValue()) |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 740 | VNI = SI.getValNumInfo(0); |
| 741 | else |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 742 | VNI = SI.getNextValue(MachineInstrIndex(), 0, false, |
| 743 | ls_->getVNInfoAllocator()); |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 744 | |
| 745 | LiveInterval &RI = li_->getInterval(cur->reg); |
| 746 | // FIXME: This may be overly conservative. |
| 747 | SI.MergeRangesInAsValue(RI, VNI); |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 748 | } |
| 749 | |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 750 | /// getConflictWeight - Return the number of conflicts between cur |
| 751 | /// live interval and defs and uses of Reg weighted by loop depthes. |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 752 | static |
| 753 | float getConflictWeight(LiveInterval *cur, unsigned Reg, LiveIntervals *li_, |
| 754 | MachineRegisterInfo *mri_, |
| 755 | const MachineLoopInfo *loopInfo) { |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 756 | float Conflicts = 0; |
| 757 | for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(Reg), |
| 758 | E = mri_->reg_end(); I != E; ++I) { |
| 759 | MachineInstr *MI = &*I; |
| 760 | if (cur->liveAt(li_->getInstructionIndex(MI))) { |
| 761 | unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent()); |
| 762 | Conflicts += powf(10.0f, (float)loopDepth); |
| 763 | } |
| 764 | } |
| 765 | return Conflicts; |
| 766 | } |
| 767 | |
| 768 | /// findIntervalsToSpill - Determine the intervals to spill for the |
| 769 | /// specified interval. It's passed the physical registers whose spill |
| 770 | /// weight is the lowest among all the registers whose live intervals |
| 771 | /// conflict with the interval. |
| 772 | void RALinScan::findIntervalsToSpill(LiveInterval *cur, |
| 773 | std::vector<std::pair<unsigned,float> > &Candidates, |
| 774 | unsigned NumCands, |
| 775 | SmallVector<LiveInterval*, 8> &SpillIntervals) { |
| 776 | // We have figured out the *best* register to spill. But there are other |
| 777 | // registers that are pretty good as well (spill weight within 3%). Spill |
| 778 | // the one that has fewest defs and uses that conflict with cur. |
| 779 | float Conflicts[3] = { 0.0f, 0.0f, 0.0f }; |
| 780 | SmallVector<LiveInterval*, 8> SLIs[3]; |
| 781 | |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 782 | DEBUG({ |
| 783 | errs() << "\tConsidering " << NumCands << " candidates: "; |
| 784 | for (unsigned i = 0; i != NumCands; ++i) |
| 785 | errs() << tri_->getName(Candidates[i].first) << " "; |
| 786 | errs() << "\n"; |
| 787 | }); |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 788 | |
| 789 | // Calculate the number of conflicts of each candidate. |
| 790 | for (IntervalPtrs::iterator i = active_.begin(); i != active_.end(); ++i) { |
| 791 | unsigned Reg = i->first->reg; |
| 792 | unsigned PhysReg = vrm_->getPhys(Reg); |
| 793 | if (!cur->overlapsFrom(*i->first, i->second)) |
| 794 | continue; |
| 795 | for (unsigned j = 0; j < NumCands; ++j) { |
| 796 | unsigned Candidate = Candidates[j].first; |
| 797 | if (tri_->regsOverlap(PhysReg, Candidate)) { |
| 798 | if (NumCands > 1) |
| 799 | Conflicts[j] += getConflictWeight(cur, Reg, li_, mri_, loopInfo); |
| 800 | SLIs[j].push_back(i->first); |
| 801 | } |
| 802 | } |
| 803 | } |
| 804 | |
| 805 | for (IntervalPtrs::iterator i = inactive_.begin(); i != inactive_.end(); ++i){ |
| 806 | unsigned Reg = i->first->reg; |
| 807 | unsigned PhysReg = vrm_->getPhys(Reg); |
| 808 | if (!cur->overlapsFrom(*i->first, i->second-1)) |
| 809 | continue; |
| 810 | for (unsigned j = 0; j < NumCands; ++j) { |
| 811 | unsigned Candidate = Candidates[j].first; |
| 812 | if (tri_->regsOverlap(PhysReg, Candidate)) { |
| 813 | if (NumCands > 1) |
| 814 | Conflicts[j] += getConflictWeight(cur, Reg, li_, mri_, loopInfo); |
| 815 | SLIs[j].push_back(i->first); |
| 816 | } |
| 817 | } |
| 818 | } |
| 819 | |
| 820 | // Which is the best candidate? |
| 821 | unsigned BestCandidate = 0; |
| 822 | float MinConflicts = Conflicts[0]; |
| 823 | for (unsigned i = 1; i != NumCands; ++i) { |
| 824 | if (Conflicts[i] < MinConflicts) { |
| 825 | BestCandidate = i; |
| 826 | MinConflicts = Conflicts[i]; |
| 827 | } |
| 828 | } |
| 829 | |
| 830 | std::copy(SLIs[BestCandidate].begin(), SLIs[BestCandidate].end(), |
| 831 | std::back_inserter(SpillIntervals)); |
| 832 | } |
| 833 | |
| 834 | namespace { |
| 835 | struct WeightCompare { |
| 836 | typedef std::pair<unsigned, float> RegWeightPair; |
| 837 | bool operator()(const RegWeightPair &LHS, const RegWeightPair &RHS) const { |
| 838 | return LHS.second < RHS.second; |
| 839 | } |
| 840 | }; |
| 841 | } |
| 842 | |
| 843 | static bool weightsAreClose(float w1, float w2) { |
| 844 | if (!NewHeuristic) |
| 845 | return false; |
| 846 | |
| 847 | float diff = w1 - w2; |
| 848 | if (diff <= 0.02f) // Within 0.02f |
| 849 | return true; |
| 850 | return (diff / w2) <= 0.05f; // Within 5%. |
| 851 | } |
| 852 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 853 | LiveInterval *RALinScan::hasNextReloadInterval(LiveInterval *cur) { |
| 854 | DenseMap<unsigned, unsigned>::iterator I = NextReloadMap.find(cur->reg); |
| 855 | if (I == NextReloadMap.end()) |
| 856 | return 0; |
| 857 | return &li_->getInterval(I->second); |
| 858 | } |
| 859 | |
| 860 | void RALinScan::DowngradeRegister(LiveInterval *li, unsigned Reg) { |
| 861 | bool isNew = DowngradedRegs.insert(Reg); |
| 862 | isNew = isNew; // Silence compiler warning. |
| 863 | assert(isNew && "Multiple reloads holding the same register?"); |
| 864 | DowngradeMap.insert(std::make_pair(li->reg, Reg)); |
| 865 | for (const unsigned *AS = tri_->getAliasSet(Reg); *AS; ++AS) { |
| 866 | isNew = DowngradedRegs.insert(*AS); |
| 867 | isNew = isNew; // Silence compiler warning. |
| 868 | assert(isNew && "Multiple reloads holding the same register?"); |
| 869 | DowngradeMap.insert(std::make_pair(li->reg, *AS)); |
| 870 | } |
| 871 | ++NumDowngrade; |
| 872 | } |
| 873 | |
| 874 | void RALinScan::UpgradeRegister(unsigned Reg) { |
| 875 | if (Reg) { |
| 876 | DowngradedRegs.erase(Reg); |
| 877 | for (const unsigned *AS = tri_->getAliasSet(Reg); *AS; ++AS) |
| 878 | DowngradedRegs.erase(*AS); |
| 879 | } |
| 880 | } |
| 881 | |
| 882 | namespace { |
| 883 | struct LISorter { |
| 884 | bool operator()(LiveInterval* A, LiveInterval* B) { |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 885 | return A->beginIndex() < B->beginIndex(); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 886 | } |
| 887 | }; |
| 888 | } |
| 889 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 890 | /// assignRegOrStackSlotAtInterval - assign a register if one is available, or |
| 891 | /// spill. |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 892 | void RALinScan::assignRegOrStackSlotAtInterval(LiveInterval* cur) { |
| 893 | DEBUG(errs() << "\tallocating current interval: "); |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 894 | |
Evan Cheng | f30a49d | 2008-04-03 16:40:27 +0000 | [diff] [blame] | 895 | // This is an implicitly defined live interval, just assign any register. |
Evan Cheng | 841ee1a | 2008-09-18 22:38:47 +0000 | [diff] [blame] | 896 | const TargetRegisterClass *RC = mri_->getRegClass(cur->reg); |
Evan Cheng | f30a49d | 2008-04-03 16:40:27 +0000 | [diff] [blame] | 897 | if (cur->empty()) { |
Evan Cheng | 90f95f8 | 2009-06-14 20:22:55 +0000 | [diff] [blame] | 898 | unsigned physReg = vrm_->getRegAllocPref(cur->reg); |
Evan Cheng | f30a49d | 2008-04-03 16:40:27 +0000 | [diff] [blame] | 899 | if (!physReg) |
| 900 | physReg = *RC->allocation_order_begin(*mf_); |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 901 | DEBUG(errs() << tri_->getName(physReg) << '\n'); |
Evan Cheng | f30a49d | 2008-04-03 16:40:27 +0000 | [diff] [blame] | 902 | // Note the register is not really in use. |
| 903 | vrm_->assignVirt2Phys(cur->reg, physReg); |
Evan Cheng | f30a49d | 2008-04-03 16:40:27 +0000 | [diff] [blame] | 904 | return; |
| 905 | } |
| 906 | |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 907 | backUpRegUses(); |
Alkis Evlogimenos | 169cfd0 | 2003-12-21 05:43:40 +0000 | [diff] [blame] | 908 | |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 909 | std::vector<std::pair<unsigned, float> > SpillWeightsToAdd; |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 910 | MachineInstrIndex StartPosition = cur->beginIndex(); |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 911 | const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC); |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 912 | |
Evan Cheng | d0deec2 | 2009-01-20 00:16:18 +0000 | [diff] [blame] | 913 | // If start of this live interval is defined by a move instruction and its |
| 914 | // source is assigned a physical register that is compatible with the target |
| 915 | // register class, then we should try to assign it the same register. |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 916 | // This can happen when the move is from a larger register class to a smaller |
| 917 | // one, e.g. X86::mov32to32_. These move instructions are not coalescable. |
Evan Cheng | 90f95f8 | 2009-06-14 20:22:55 +0000 | [diff] [blame] | 918 | if (!vrm_->getRegAllocPref(cur->reg) && cur->hasAtLeastOneValue()) { |
Evan Cheng | d0deec2 | 2009-01-20 00:16:18 +0000 | [diff] [blame] | 919 | VNInfo *vni = cur->begin()->valno; |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 920 | if ((vni->def != MachineInstrIndex()) && !vni->isUnused() && |
| 921 | vni->isDefAccurate()) { |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 922 | MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def); |
Evan Cheng | 04ee5a1 | 2009-01-20 19:12:24 +0000 | [diff] [blame] | 923 | unsigned SrcReg, DstReg, SrcSubReg, DstSubReg; |
| 924 | if (CopyMI && |
| 925 | tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubReg, DstSubReg)) { |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 926 | unsigned Reg = 0; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 927 | if (TargetRegisterInfo::isPhysicalRegister(SrcReg)) |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 928 | Reg = SrcReg; |
| 929 | else if (vrm_->isAssignedReg(SrcReg)) |
| 930 | Reg = vrm_->getPhys(SrcReg); |
Evan Cheng | 1c2f6da | 2009-04-29 00:42:27 +0000 | [diff] [blame] | 931 | if (Reg) { |
| 932 | if (SrcSubReg) |
| 933 | Reg = tri_->getSubReg(Reg, SrcSubReg); |
| 934 | if (DstSubReg) |
| 935 | Reg = tri_->getMatchingSuperReg(Reg, DstSubReg, RC); |
| 936 | if (Reg && allocatableRegs_[Reg] && RC->contains(Reg)) |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 937 | mri_->setRegAllocationHint(cur->reg, 0, Reg); |
Evan Cheng | 1c2f6da | 2009-04-29 00:42:27 +0000 | [diff] [blame] | 938 | } |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 939 | } |
| 940 | } |
| 941 | } |
| 942 | |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 943 | // For every interval in inactive we overlap with, mark the |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 944 | // register as not free and update spill weights. |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 945 | for (IntervalPtrs::const_iterator i = inactive_.begin(), |
| 946 | e = inactive_.end(); i != e; ++i) { |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 947 | unsigned Reg = i->first->reg; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 948 | assert(TargetRegisterInfo::isVirtualRegister(Reg) && |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 949 | "Can only allocate virtual registers!"); |
Evan Cheng | 841ee1a | 2008-09-18 22:38:47 +0000 | [diff] [blame] | 950 | const TargetRegisterClass *RegRC = mri_->getRegClass(Reg); |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 951 | // If this is not in a related reg class to the register we're allocating, |
| 952 | // don't check it. |
| 953 | if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader && |
| 954 | cur->overlapsFrom(*i->first, i->second-1)) { |
| 955 | Reg = vrm_->getPhys(Reg); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 956 | addRegUse(Reg); |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 957 | SpillWeightsToAdd.push_back(std::make_pair(Reg, i->first->weight)); |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 958 | } |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 959 | } |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 960 | |
| 961 | // Speculatively check to see if we can get a register right now. If not, |
| 962 | // we know we won't be able to by adding more constraints. If so, we can |
| 963 | // check to see if it is valid. Doing an exhaustive search of the fixed_ list |
| 964 | // is very bad (it contains all callee clobbered registers for any functions |
| 965 | // with a call), so we want to avoid doing that if possible. |
| 966 | unsigned physReg = getFreePhysReg(cur); |
Evan Cheng | 676dd7c | 2008-03-11 07:19:34 +0000 | [diff] [blame] | 967 | unsigned BestPhysReg = physReg; |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 968 | if (physReg) { |
| 969 | // We got a register. However, if it's in the fixed_ list, we might |
Chris Lattner | e836ad6 | 2005-08-30 21:03:36 +0000 | [diff] [blame] | 970 | // conflict with it. Check to see if we conflict with it or any of its |
| 971 | // aliases. |
Evan Cheng | c92da38 | 2007-11-03 07:20:12 +0000 | [diff] [blame] | 972 | SmallSet<unsigned, 8> RegAliases; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 973 | for (const unsigned *AS = tri_->getAliasSet(physReg); *AS; ++AS) |
Chris Lattner | e836ad6 | 2005-08-30 21:03:36 +0000 | [diff] [blame] | 974 | RegAliases.insert(*AS); |
| 975 | |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 976 | bool ConflictsWithFixed = false; |
| 977 | for (unsigned i = 0, e = fixed_.size(); i != e; ++i) { |
Jim Laskey | e719d9f | 2006-10-24 14:35:25 +0000 | [diff] [blame] | 978 | IntervalPtr &IP = fixed_[i]; |
| 979 | if (physReg == IP.first->reg || RegAliases.count(IP.first->reg)) { |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 980 | // Okay, this reg is on the fixed list. Check to see if we actually |
| 981 | // conflict. |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 982 | LiveInterval *I = IP.first; |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 983 | if (I->endIndex() > StartPosition) { |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 984 | LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition); |
| 985 | IP.second = II; |
| 986 | if (II != I->begin() && II->start > StartPosition) |
| 987 | --II; |
Chris Lattner | e836ad6 | 2005-08-30 21:03:36 +0000 | [diff] [blame] | 988 | if (cur->overlapsFrom(*I, II)) { |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 989 | ConflictsWithFixed = true; |
Chris Lattner | e836ad6 | 2005-08-30 21:03:36 +0000 | [diff] [blame] | 990 | break; |
| 991 | } |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 992 | } |
Chris Lattner | f348e3a | 2004-11-18 04:33:31 +0000 | [diff] [blame] | 993 | } |
Alkis Evlogimenos | 169cfd0 | 2003-12-21 05:43:40 +0000 | [diff] [blame] | 994 | } |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 995 | |
| 996 | // Okay, the register picked by our speculative getFreePhysReg call turned |
| 997 | // out to be in use. Actually add all of the conflicting fixed registers to |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 998 | // regUse_ so we can do an accurate query. |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 999 | if (ConflictsWithFixed) { |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 1000 | // For every interval in fixed we overlap with, mark the register as not |
| 1001 | // free and update spill weights. |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 1002 | for (unsigned i = 0, e = fixed_.size(); i != e; ++i) { |
| 1003 | IntervalPtr &IP = fixed_[i]; |
| 1004 | LiveInterval *I = IP.first; |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 1005 | |
| 1006 | const TargetRegisterClass *RegRC = OneClassForEachPhysReg[I->reg]; |
| 1007 | if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader && |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1008 | I->endIndex() > StartPosition) { |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 1009 | LiveInterval::iterator II = I->advanceTo(IP.second, StartPosition); |
| 1010 | IP.second = II; |
| 1011 | if (II != I->begin() && II->start > StartPosition) |
| 1012 | --II; |
| 1013 | if (cur->overlapsFrom(*I, II)) { |
| 1014 | unsigned reg = I->reg; |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1015 | addRegUse(reg); |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 1016 | SpillWeightsToAdd.push_back(std::make_pair(reg, I->weight)); |
| 1017 | } |
| 1018 | } |
| 1019 | } |
Alkis Evlogimenos | 169cfd0 | 2003-12-21 05:43:40 +0000 | [diff] [blame] | 1020 | |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1021 | // Using the newly updated regUse_ object, which includes conflicts in the |
Chris Lattner | a411cbc | 2005-08-22 20:59:30 +0000 | [diff] [blame] | 1022 | // future, see if there are any registers available. |
| 1023 | physReg = getFreePhysReg(cur); |
| 1024 | } |
| 1025 | } |
| 1026 | |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 1027 | // Restore the physical register tracker, removing information about the |
| 1028 | // future. |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1029 | restoreRegUses(); |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 1030 | |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1031 | // If we find a free register, we are done: assign this virtual to |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1032 | // the free physical register and add this interval to the active |
| 1033 | // list. |
| 1034 | if (physReg) { |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1035 | DEBUG(errs() << tri_->getName(physReg) << '\n'); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1036 | vrm_->assignVirt2Phys(cur->reg, physReg); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1037 | addRegUse(physReg); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1038 | active_.push_back(std::make_pair(cur, cur->begin())); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1039 | handled_.push_back(cur); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1040 | |
| 1041 | // "Upgrade" the physical register since it has been allocated. |
| 1042 | UpgradeRegister(physReg); |
| 1043 | if (LiveInterval *NextReloadLI = hasNextReloadInterval(cur)) { |
| 1044 | // "Downgrade" physReg to try to keep physReg from being allocated until |
| 1045 | // the next reload from the same SS is allocated. |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 1046 | mri_->setRegAllocationHint(NextReloadLI->reg, 0, physReg); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1047 | DowngradeRegister(cur, physReg); |
| 1048 | } |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1049 | return; |
| 1050 | } |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1051 | DEBUG(errs() << "no free registers\n"); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1052 | |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 1053 | // Compile the spill weights into an array that is better for scanning. |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1054 | std::vector<float> SpillWeights(tri_->getNumRegs(), 0.0f); |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 1055 | for (std::vector<std::pair<unsigned, float> >::iterator |
| 1056 | I = SpillWeightsToAdd.begin(), E = SpillWeightsToAdd.end(); I != E; ++I) |
Evan Cheng | 5d088fe | 2009-03-23 22:57:19 +0000 | [diff] [blame] | 1057 | updateSpillWeights(SpillWeights, I->first, I->second, RC); |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 1058 | |
| 1059 | // for each interval in active, update spill weights. |
| 1060 | for (IntervalPtrs::const_iterator i = active_.begin(), e = active_.end(); |
| 1061 | i != e; ++i) { |
| 1062 | unsigned reg = i->first->reg; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1063 | assert(TargetRegisterInfo::isVirtualRegister(reg) && |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 1064 | "Can only allocate virtual registers!"); |
| 1065 | reg = vrm_->getPhys(reg); |
Evan Cheng | 5d088fe | 2009-03-23 22:57:19 +0000 | [diff] [blame] | 1066 | updateSpillWeights(SpillWeights, reg, i->first->weight, RC); |
Chris Lattner | a6c1750 | 2005-08-22 20:20:42 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1069 | DEBUG(errs() << "\tassigning stack slot at interval "<< *cur << ":\n"); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1070 | |
Chris Lattner | c8e2c55 | 2006-03-25 23:00:56 +0000 | [diff] [blame] | 1071 | // Find a register to spill. |
Jim Laskey | 7902c75 | 2006-11-07 12:25:45 +0000 | [diff] [blame] | 1072 | float minWeight = HUGE_VALF; |
Evan Cheng | 90f95f8 | 2009-06-14 20:22:55 +0000 | [diff] [blame] | 1073 | unsigned minReg = 0; |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1074 | |
| 1075 | bool Found = false; |
| 1076 | std::vector<std::pair<unsigned,float> > RegsWeights; |
Evan Cheng | 20b0abc | 2007-04-17 20:32:26 +0000 | [diff] [blame] | 1077 | if (!minReg || SpillWeights[minReg] == HUGE_VALF) |
| 1078 | for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_), |
| 1079 | e = RC->allocation_order_end(*mf_); i != e; ++i) { |
| 1080 | unsigned reg = *i; |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1081 | float regWeight = SpillWeights[reg]; |
| 1082 | if (minWeight > regWeight) |
| 1083 | Found = true; |
| 1084 | RegsWeights.push_back(std::make_pair(reg, regWeight)); |
Alkis Evlogimenos | 3bf564a | 2003-12-23 18:00:33 +0000 | [diff] [blame] | 1085 | } |
Chris Lattner | c8e2c55 | 2006-03-25 23:00:56 +0000 | [diff] [blame] | 1086 | |
| 1087 | // If we didn't find a register that is spillable, try aliases? |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1088 | if (!Found) { |
Evan Cheng | 3b6d56c | 2006-05-12 19:07:46 +0000 | [diff] [blame] | 1089 | for (TargetRegisterClass::iterator i = RC->allocation_order_begin(*mf_), |
| 1090 | e = RC->allocation_order_end(*mf_); i != e; ++i) { |
| 1091 | unsigned reg = *i; |
| 1092 | // No need to worry about if the alias register size < regsize of RC. |
| 1093 | // We are going to spill all registers that alias it anyway. |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1094 | for (const unsigned* as = tri_->getAliasSet(reg); *as; ++as) |
| 1095 | RegsWeights.push_back(std::make_pair(*as, SpillWeights[*as])); |
Evan Cheng | 676dd7c | 2008-03-11 07:19:34 +0000 | [diff] [blame] | 1096 | } |
Evan Cheng | 3b6d56c | 2006-05-12 19:07:46 +0000 | [diff] [blame] | 1097 | } |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1098 | |
| 1099 | // Sort all potential spill candidates by weight. |
| 1100 | std::sort(RegsWeights.begin(), RegsWeights.end(), WeightCompare()); |
| 1101 | minReg = RegsWeights[0].first; |
| 1102 | minWeight = RegsWeights[0].second; |
| 1103 | if (minWeight == HUGE_VALF) { |
| 1104 | // All registers must have inf weight. Just grab one! |
| 1105 | minReg = BestPhysReg ? BestPhysReg : *RC->allocation_order_begin(*mf_); |
Owen Anderson | a1566f2 | 2008-07-22 22:46:49 +0000 | [diff] [blame] | 1106 | if (cur->weight == HUGE_VALF || |
Evan Cheng | 5e8d9de | 2008-09-20 01:28:05 +0000 | [diff] [blame] | 1107 | li_->getApproximateInstructionCount(*cur) == 0) { |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1108 | // Spill a physical register around defs and uses. |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1109 | if (li_->spillPhysRegAroundRegDefsUses(*cur, minReg, *vrm_)) { |
Evan Cheng | 96f3fd9 | 2009-04-29 07:16:34 +0000 | [diff] [blame] | 1110 | // spillPhysRegAroundRegDefsUses may have invalidated iterator stored |
| 1111 | // in fixed_. Reset them. |
| 1112 | for (unsigned i = 0, e = fixed_.size(); i != e; ++i) { |
| 1113 | IntervalPtr &IP = fixed_[i]; |
| 1114 | LiveInterval *I = IP.first; |
| 1115 | if (I->reg == minReg || tri_->isSubRegister(minReg, I->reg)) |
| 1116 | IP.second = I->advanceTo(I->begin(), StartPosition); |
| 1117 | } |
| 1118 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1119 | DowngradedRegs.clear(); |
Evan Cheng | 2824a65 | 2009-03-23 18:24:37 +0000 | [diff] [blame] | 1120 | assignRegOrStackSlotAtInterval(cur); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1121 | } else { |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 1122 | llvm_report_error("Ran out of registers during register allocation!"); |
Evan Cheng | 2824a65 | 2009-03-23 18:24:37 +0000 | [diff] [blame] | 1123 | } |
Evan Cheng | 5e8d9de | 2008-09-20 01:28:05 +0000 | [diff] [blame] | 1124 | return; |
| 1125 | } |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1126 | } |
| 1127 | |
| 1128 | // Find up to 3 registers to consider as spill candidates. |
| 1129 | unsigned LastCandidate = RegsWeights.size() >= 3 ? 3 : 1; |
| 1130 | while (LastCandidate > 1) { |
| 1131 | if (weightsAreClose(RegsWeights[LastCandidate-1].second, minWeight)) |
| 1132 | break; |
| 1133 | --LastCandidate; |
| 1134 | } |
| 1135 | |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1136 | DEBUG({ |
| 1137 | errs() << "\t\tregister(s) with min weight(s): "; |
| 1138 | |
| 1139 | for (unsigned i = 0; i != LastCandidate; ++i) |
| 1140 | errs() << tri_->getName(RegsWeights[i].first) |
| 1141 | << " (" << RegsWeights[i].second << ")\n"; |
| 1142 | }); |
Alkis Evlogimenos | 3bf564a | 2003-12-23 18:00:33 +0000 | [diff] [blame] | 1143 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1144 | // If the current has the minimum weight, we need to spill it and |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1145 | // add any added intervals back to unhandled, and restart |
| 1146 | // linearscan. |
Jim Laskey | 7902c75 | 2006-11-07 12:25:45 +0000 | [diff] [blame] | 1147 | if (cur->weight != HUGE_VALF && cur->weight <= minWeight) { |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1148 | DEBUG(errs() << "\t\t\tspilling(c): " << *cur << '\n'); |
Evan Cheng | dc37786 | 2008-09-30 15:44:16 +0000 | [diff] [blame] | 1149 | SmallVector<LiveInterval*, 8> spillIs; |
Lang Hames | e2b201b | 2009-05-18 19:03:16 +0000 | [diff] [blame] | 1150 | std::vector<LiveInterval*> added; |
| 1151 | |
| 1152 | if (!NewSpillFramework) { |
| 1153 | added = li_->addIntervalsForSpills(*cur, spillIs, loopInfo, *vrm_); |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 1154 | } else { |
Lang Hames | e2b201b | 2009-05-18 19:03:16 +0000 | [diff] [blame] | 1155 | added = spiller_->spill(cur); |
| 1156 | } |
| 1157 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1158 | std::sort(added.begin(), added.end(), LISorter()); |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 1159 | addStackInterval(cur, ls_, li_, mri_, *vrm_); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1160 | if (added.empty()) |
| 1161 | return; // Early exit if all spills were folded. |
Alkis Evlogimenos | f5eaf16 | 2004-02-06 18:08:18 +0000 | [diff] [blame] | 1162 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1163 | // Merge added with unhandled. Note that we have already sorted |
| 1164 | // intervals returned by addIntervalsForSpills by their starting |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1165 | // point. |
Evan Cheng | c4f718a | 2009-04-20 17:23:48 +0000 | [diff] [blame] | 1166 | // This also update the NextReloadMap. That is, it adds mapping from a |
| 1167 | // register defined by a reload from SS to the next reload from SS in the |
| 1168 | // same basic block. |
| 1169 | MachineBasicBlock *LastReloadMBB = 0; |
| 1170 | LiveInterval *LastReload = 0; |
| 1171 | int LastReloadSS = VirtRegMap::NO_STACK_SLOT; |
| 1172 | for (unsigned i = 0, e = added.size(); i != e; ++i) { |
| 1173 | LiveInterval *ReloadLi = added[i]; |
| 1174 | if (ReloadLi->weight == HUGE_VALF && |
| 1175 | li_->getApproximateInstructionCount(*ReloadLi) == 0) { |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1176 | MachineInstrIndex ReloadIdx = ReloadLi->beginIndex(); |
Evan Cheng | c4f718a | 2009-04-20 17:23:48 +0000 | [diff] [blame] | 1177 | MachineBasicBlock *ReloadMBB = li_->getMBBFromIndex(ReloadIdx); |
| 1178 | int ReloadSS = vrm_->getStackSlot(ReloadLi->reg); |
| 1179 | if (LastReloadMBB == ReloadMBB && LastReloadSS == ReloadSS) { |
| 1180 | // Last reload of same SS is in the same MBB. We want to try to |
| 1181 | // allocate both reloads the same register and make sure the reg |
| 1182 | // isn't clobbered in between if at all possible. |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1183 | assert(LastReload->beginIndex() < ReloadIdx); |
Evan Cheng | c4f718a | 2009-04-20 17:23:48 +0000 | [diff] [blame] | 1184 | NextReloadMap.insert(std::make_pair(LastReload->reg, ReloadLi->reg)); |
| 1185 | } |
| 1186 | LastReloadMBB = ReloadMBB; |
| 1187 | LastReload = ReloadLi; |
| 1188 | LastReloadSS = ReloadSS; |
| 1189 | } |
| 1190 | unhandled_.push(ReloadLi); |
| 1191 | } |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1192 | return; |
| 1193 | } |
| 1194 | |
Chris Lattner | 19828d4 | 2004-11-18 03:49:30 +0000 | [diff] [blame] | 1195 | ++NumBacktracks; |
| 1196 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1197 | // Push the current interval back to unhandled since we are going |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1198 | // to re-run at least this iteration. Since we didn't modify it it |
| 1199 | // should go back right in the front of the list |
| 1200 | unhandled_.push(cur); |
| 1201 | |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1202 | assert(TargetRegisterInfo::isPhysicalRegister(minReg) && |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1203 | "did not choose a register to spill?"); |
Chris Lattner | 19828d4 | 2004-11-18 03:49:30 +0000 | [diff] [blame] | 1204 | |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1205 | // We spill all intervals aliasing the register with |
| 1206 | // minimum weight, rollback to the interval with the earliest |
| 1207 | // start point and let the linear scan algorithm run again |
| 1208 | SmallVector<LiveInterval*, 8> spillIs; |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1209 | |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1210 | // Determine which intervals have to be spilled. |
| 1211 | findIntervalsToSpill(cur, RegsWeights, LastCandidate, spillIs); |
| 1212 | |
| 1213 | // Set of spilled vregs (used later to rollback properly) |
| 1214 | SmallSet<unsigned, 8> spilled; |
| 1215 | |
| 1216 | // The earliest start of a Spilled interval indicates up to where |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1217 | // in handled we need to roll back |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 1218 | |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 1219 | LiveInterval *earliestStartInterval = cur; |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1220 | |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1221 | // Spill live intervals of virtual regs mapped to the physical register we |
Chris Lattner | 19828d4 | 2004-11-18 03:49:30 +0000 | [diff] [blame] | 1222 | // want to clear (and its aliases). We only spill those that overlap with the |
| 1223 | // current interval as the rest do not affect its allocation. we also keep |
| 1224 | // track of the earliest start of all spilled live intervals since this will |
| 1225 | // mark our rollback point. |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1226 | std::vector<LiveInterval*> added; |
| 1227 | while (!spillIs.empty()) { |
| 1228 | LiveInterval *sli = spillIs.back(); |
| 1229 | spillIs.pop_back(); |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1230 | DEBUG(errs() << "\t\t\tspilling(a): " << *sli << '\n'); |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 1231 | earliestStartInterval = |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1232 | (earliestStartInterval->beginIndex() < sli->beginIndex()) ? |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 1233 | earliestStartInterval : sli; |
Lang Hames | fcad172 | 2009-06-04 01:04:22 +0000 | [diff] [blame] | 1234 | |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 1235 | std::vector<LiveInterval*> newIs; |
| 1236 | if (!NewSpillFramework) { |
| 1237 | newIs = li_->addIntervalsForSpills(*sli, spillIs, loopInfo, *vrm_); |
| 1238 | } else { |
| 1239 | newIs = spiller_->spill(sli); |
| 1240 | } |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 1241 | addStackInterval(sli, ls_, li_, mri_, *vrm_); |
Evan Cheng | 3e17225 | 2008-06-20 21:45:16 +0000 | [diff] [blame] | 1242 | std::copy(newIs.begin(), newIs.end(), std::back_inserter(added)); |
| 1243 | spilled.insert(sli->reg); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1244 | } |
| 1245 | |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1246 | MachineInstrIndex earliestStart = earliestStartInterval->beginIndex(); |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 1247 | |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1248 | DEBUG(errs() << "\t\trolling back to: " << earliestStart << '\n'); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1249 | |
| 1250 | // Scan handled in reverse order up to the earliest start of a |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1251 | // spilled live interval and undo each one, restoring the state of |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1252 | // unhandled. |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1253 | while (!handled_.empty()) { |
| 1254 | LiveInterval* i = handled_.back(); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1255 | // If this interval starts before t we are done. |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1256 | if (i->beginIndex() < earliestStart) |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1257 | break; |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1258 | DEBUG(errs() << "\t\t\tundo changes for: " << *i << '\n'); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1259 | handled_.pop_back(); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1260 | |
| 1261 | // When undoing a live interval allocation we must know if it is active or |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1262 | // inactive to properly update regUse_ and the VirtRegMap. |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1263 | IntervalPtrs::iterator it; |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1264 | if ((it = FindIntervalInVector(active_, i)) != active_.end()) { |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1265 | active_.erase(it); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1266 | assert(!TargetRegisterInfo::isPhysicalRegister(i->reg)); |
Chris Lattner | ffab422 | 2006-02-23 06:44:17 +0000 | [diff] [blame] | 1267 | if (!spilled.count(i->reg)) |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1268 | unhandled_.push(i); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1269 | delRegUse(vrm_->getPhys(i->reg)); |
Chris Lattner | ffab422 | 2006-02-23 06:44:17 +0000 | [diff] [blame] | 1270 | vrm_->clearVirt(i->reg); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1271 | } else if ((it = FindIntervalInVector(inactive_, i)) != inactive_.end()) { |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1272 | inactive_.erase(it); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1273 | assert(!TargetRegisterInfo::isPhysicalRegister(i->reg)); |
Chris Lattner | ffab422 | 2006-02-23 06:44:17 +0000 | [diff] [blame] | 1274 | if (!spilled.count(i->reg)) |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1275 | unhandled_.push(i); |
Chris Lattner | ffab422 | 2006-02-23 06:44:17 +0000 | [diff] [blame] | 1276 | vrm_->clearVirt(i->reg); |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 1277 | } else { |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1278 | assert(TargetRegisterInfo::isVirtualRegister(i->reg) && |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 1279 | "Can only allocate virtual registers!"); |
| 1280 | vrm_->clearVirt(i->reg); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1281 | unhandled_.push(i); |
| 1282 | } |
Evan Cheng | 9aeaf75 | 2007-11-04 08:32:21 +0000 | [diff] [blame] | 1283 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1284 | DenseMap<unsigned, unsigned>::iterator ii = DowngradeMap.find(i->reg); |
| 1285 | if (ii == DowngradeMap.end()) |
| 1286 | // It interval has a preference, it must be defined by a copy. Clear the |
| 1287 | // preference now since the source interval allocation may have been |
| 1288 | // undone as well. |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 1289 | mri_->setRegAllocationHint(i->reg, 0, 0); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1290 | else { |
| 1291 | UpgradeRegister(ii->second); |
| 1292 | } |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1293 | } |
| 1294 | |
Chris Lattner | 19828d4 | 2004-11-18 03:49:30 +0000 | [diff] [blame] | 1295 | // Rewind the iterators in the active, inactive, and fixed lists back to the |
| 1296 | // point we reverted to. |
| 1297 | RevertVectorIteratorsTo(active_, earliestStart); |
| 1298 | RevertVectorIteratorsTo(inactive_, earliestStart); |
| 1299 | RevertVectorIteratorsTo(fixed_, earliestStart); |
| 1300 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1301 | // Scan the rest and undo each interval that expired after t and |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1302 | // insert it in active (the next iteration of the algorithm will |
| 1303 | // put it in inactive if required) |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1304 | for (unsigned i = 0, e = handled_.size(); i != e; ++i) { |
| 1305 | LiveInterval *HI = handled_[i]; |
| 1306 | if (!HI->expiredAt(earliestStart) && |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1307 | HI->expiredAt(cur->beginIndex())) { |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1308 | DEBUG(errs() << "\t\t\tundo changes for: " << *HI << '\n'); |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1309 | active_.push_back(std::make_pair(HI, HI->begin())); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1310 | assert(!TargetRegisterInfo::isPhysicalRegister(HI->reg)); |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1311 | addRegUse(vrm_->getPhys(HI->reg)); |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1312 | } |
| 1313 | } |
| 1314 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1315 | // Merge added with unhandled. |
| 1316 | // This also update the NextReloadMap. That is, it adds mapping from a |
| 1317 | // register defined by a reload from SS to the next reload from SS in the |
| 1318 | // same basic block. |
| 1319 | MachineBasicBlock *LastReloadMBB = 0; |
| 1320 | LiveInterval *LastReload = 0; |
| 1321 | int LastReloadSS = VirtRegMap::NO_STACK_SLOT; |
| 1322 | std::sort(added.begin(), added.end(), LISorter()); |
| 1323 | for (unsigned i = 0, e = added.size(); i != e; ++i) { |
| 1324 | LiveInterval *ReloadLi = added[i]; |
| 1325 | if (ReloadLi->weight == HUGE_VALF && |
| 1326 | li_->getApproximateInstructionCount(*ReloadLi) == 0) { |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1327 | MachineInstrIndex ReloadIdx = ReloadLi->beginIndex(); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1328 | MachineBasicBlock *ReloadMBB = li_->getMBBFromIndex(ReloadIdx); |
| 1329 | int ReloadSS = vrm_->getStackSlot(ReloadLi->reg); |
| 1330 | if (LastReloadMBB == ReloadMBB && LastReloadSS == ReloadSS) { |
| 1331 | // Last reload of same SS is in the same MBB. We want to try to |
| 1332 | // allocate both reloads the same register and make sure the reg |
| 1333 | // isn't clobbered in between if at all possible. |
Lang Hames | 8651125 | 2009-09-04 20:41:11 +0000 | [diff] [blame^] | 1334 | assert(LastReload->beginIndex() < ReloadIdx); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1335 | NextReloadMap.insert(std::make_pair(LastReload->reg, ReloadLi->reg)); |
| 1336 | } |
| 1337 | LastReloadMBB = ReloadMBB; |
| 1338 | LastReload = ReloadLi; |
| 1339 | LastReloadSS = ReloadSS; |
| 1340 | } |
| 1341 | unhandled_.push(ReloadLi); |
| 1342 | } |
| 1343 | } |
| 1344 | |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 1345 | unsigned RALinScan::getFreePhysReg(LiveInterval* cur, |
| 1346 | const TargetRegisterClass *RC, |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1347 | unsigned MaxInactiveCount, |
| 1348 | SmallVector<unsigned, 256> &inactiveCounts, |
| 1349 | bool SkipDGRegs) { |
| 1350 | unsigned FreeReg = 0; |
| 1351 | unsigned FreeRegInactiveCount = 0; |
| 1352 | |
Evan Cheng | f9f1da1 | 2009-06-18 02:04:01 +0000 | [diff] [blame] | 1353 | std::pair<unsigned, unsigned> Hint = mri_->getRegAllocationHint(cur->reg); |
| 1354 | // Resolve second part of the hint (if possible) given the current allocation. |
| 1355 | unsigned physReg = Hint.second; |
| 1356 | if (physReg && |
| 1357 | TargetRegisterInfo::isVirtualRegister(physReg) && vrm_->hasPhys(physReg)) |
| 1358 | physReg = vrm_->getPhys(physReg); |
| 1359 | |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 1360 | TargetRegisterClass::iterator I, E; |
Evan Cheng | f9f1da1 | 2009-06-18 02:04:01 +0000 | [diff] [blame] | 1361 | tie(I, E) = tri_->getAllocationOrder(RC, Hint.first, physReg, *mf_); |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1362 | assert(I != E && "No allocatable register in this register class!"); |
| 1363 | |
| 1364 | // Scan for the first available register. |
| 1365 | for (; I != E; ++I) { |
| 1366 | unsigned Reg = *I; |
| 1367 | // Ignore "downgraded" registers. |
| 1368 | if (SkipDGRegs && DowngradedRegs.count(Reg)) |
| 1369 | continue; |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1370 | if (isRegAvail(Reg)) { |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1371 | FreeReg = Reg; |
| 1372 | if (FreeReg < inactiveCounts.size()) |
| 1373 | FreeRegInactiveCount = inactiveCounts[FreeReg]; |
| 1374 | else |
| 1375 | FreeRegInactiveCount = 0; |
| 1376 | break; |
| 1377 | } |
| 1378 | } |
| 1379 | |
| 1380 | // If there are no free regs, or if this reg has the max inactive count, |
| 1381 | // return this register. |
| 1382 | if (FreeReg == 0 || FreeRegInactiveCount == MaxInactiveCount) |
| 1383 | return FreeReg; |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 1384 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1385 | // Continue scanning the registers, looking for the one with the highest |
| 1386 | // inactive count. Alkis found that this reduced register pressure very |
| 1387 | // slightly on X86 (in rev 1.94 of this file), though this should probably be |
| 1388 | // reevaluated now. |
| 1389 | for (; I != E; ++I) { |
| 1390 | unsigned Reg = *I; |
| 1391 | // Ignore "downgraded" registers. |
| 1392 | if (SkipDGRegs && DowngradedRegs.count(Reg)) |
| 1393 | continue; |
Evan Cheng | 5b16cd2 | 2009-05-01 01:03:49 +0000 | [diff] [blame] | 1394 | if (isRegAvail(Reg) && Reg < inactiveCounts.size() && |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1395 | FreeRegInactiveCount < inactiveCounts[Reg]) { |
| 1396 | FreeReg = Reg; |
| 1397 | FreeRegInactiveCount = inactiveCounts[Reg]; |
| 1398 | if (FreeRegInactiveCount == MaxInactiveCount) |
| 1399 | break; // We found the one with the max inactive count. |
| 1400 | } |
| 1401 | } |
| 1402 | |
| 1403 | return FreeReg; |
Alkis Evlogimenos | 843b160 | 2004-02-15 10:24:21 +0000 | [diff] [blame] | 1404 | } |
Alkis Evlogimenos | f5eaf16 | 2004-02-06 18:08:18 +0000 | [diff] [blame] | 1405 | |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1406 | /// getFreePhysReg - return a free physical register for this virtual register |
| 1407 | /// interval if we have one, otherwise return 0. |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 1408 | unsigned RALinScan::getFreePhysReg(LiveInterval *cur) { |
Chris Lattner | fe42462 | 2008-02-26 22:08:41 +0000 | [diff] [blame] | 1409 | SmallVector<unsigned, 256> inactiveCounts; |
Chris Lattner | f8355d9 | 2005-08-22 16:55:22 +0000 | [diff] [blame] | 1410 | unsigned MaxInactiveCount = 0; |
| 1411 | |
Evan Cheng | 841ee1a | 2008-09-18 22:38:47 +0000 | [diff] [blame] | 1412 | const TargetRegisterClass *RC = mri_->getRegClass(cur->reg); |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 1413 | const TargetRegisterClass *RCLeader = RelatedRegClasses.getLeaderValue(RC); |
| 1414 | |
Alkis Evlogimenos | 84f5bcb | 2004-09-02 21:23:32 +0000 | [diff] [blame] | 1415 | for (IntervalPtrs::iterator i = inactive_.begin(), e = inactive_.end(); |
| 1416 | i != e; ++i) { |
Chris Lattner | cbb5625 | 2004-11-18 02:42:27 +0000 | [diff] [blame] | 1417 | unsigned reg = i->first->reg; |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1418 | assert(TargetRegisterInfo::isVirtualRegister(reg) && |
Chris Lattner | c8b9f33 | 2004-11-18 06:01:45 +0000 | [diff] [blame] | 1419 | "Can only allocate virtual registers!"); |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 1420 | |
| 1421 | // If this is not in a related reg class to the register we're allocating, |
| 1422 | // don't check it. |
Evan Cheng | 841ee1a | 2008-09-18 22:38:47 +0000 | [diff] [blame] | 1423 | const TargetRegisterClass *RegRC = mri_->getRegClass(reg); |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 1424 | if (RelatedRegClasses.getLeaderValue(RegRC) == RCLeader) { |
| 1425 | reg = vrm_->getPhys(reg); |
Chris Lattner | fe42462 | 2008-02-26 22:08:41 +0000 | [diff] [blame] | 1426 | if (inactiveCounts.size() <= reg) |
| 1427 | inactiveCounts.resize(reg+1); |
Chris Lattner | b980578 | 2005-08-23 22:27:31 +0000 | [diff] [blame] | 1428 | ++inactiveCounts[reg]; |
| 1429 | MaxInactiveCount = std::max(MaxInactiveCount, inactiveCounts[reg]); |
| 1430 | } |
Alkis Evlogimenos | 84f5bcb | 2004-09-02 21:23:32 +0000 | [diff] [blame] | 1431 | } |
| 1432 | |
Evan Cheng | 20b0abc | 2007-04-17 20:32:26 +0000 | [diff] [blame] | 1433 | // If copy coalescer has assigned a "preferred" register, check if it's |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 1434 | // available first. |
Evan Cheng | 90f95f8 | 2009-06-14 20:22:55 +0000 | [diff] [blame] | 1435 | unsigned Preference = vrm_->getRegAllocPref(cur->reg); |
| 1436 | if (Preference) { |
Bill Wendling | c3115a0 | 2009-08-22 20:30:53 +0000 | [diff] [blame] | 1437 | DEBUG(errs() << "(preferred: " << tri_->getName(Preference) << ") "); |
Evan Cheng | 90f95f8 | 2009-06-14 20:22:55 +0000 | [diff] [blame] | 1438 | if (isRegAvail(Preference) && |
| 1439 | RC->contains(Preference)) |
| 1440 | return Preference; |
Anton Korobeynikov | 4aefd6b | 2008-02-20 12:07:57 +0000 | [diff] [blame] | 1441 | } |
Evan Cheng | 20b0abc | 2007-04-17 20:32:26 +0000 | [diff] [blame] | 1442 | |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1443 | if (!DowngradedRegs.empty()) { |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 1444 | unsigned FreeReg = getFreePhysReg(cur, RC, MaxInactiveCount, inactiveCounts, |
Evan Cheng | 206d185 | 2009-04-20 08:01:12 +0000 | [diff] [blame] | 1445 | true); |
| 1446 | if (FreeReg) |
| 1447 | return FreeReg; |
Alkis Evlogimenos | 1a8ea01 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 1448 | } |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 1449 | return getFreePhysReg(cur, RC, MaxInactiveCount, inactiveCounts, false); |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 1450 | } |
| 1451 | |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 1452 | FunctionPass* llvm::createLinearScanRegisterAllocator() { |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 1453 | return new RALinScan(); |
Alkis Evlogimenos | ff0cbe1 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 1454 | } |