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