blob: 43c43bf7d86120299d959f9577903b8db853ab2a [file] [log] [blame]
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001//===-- RegAllocGreedy.cpp - greedy register allocator --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the RAGreedy function pass for register allocation in
11// optimized builds.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "regalloc"
Jakob Stoklund Olesendd479e92010-12-10 22:21:05 +000016#include "AllocationOrder.h"
Jakob Stoklund Olesen5907d862011-04-02 06:03:35 +000017#include "InterferenceCache.h"
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +000018#include "LiveDebugVariables.h"
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +000019#include "LiveRegMatrix.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000020#include "RegAllocBase.h"
21#include "Spiller.h"
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000022#include "SpillPlacement.h"
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +000023#include "SplitKit.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000024#include "VirtRegMap.h"
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000025#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000026#include "llvm/Analysis/AliasAnalysis.h"
27#include "llvm/Function.h"
28#include "llvm/PassAnalysisSupport.h"
29#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000030#include "llvm/CodeGen/EdgeBundles.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000031#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper789d5d82012-04-02 22:44:18 +000032#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000033#include "llvm/CodeGen/LiveStackAnalysis.h"
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +000034#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000035#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000036#include "llvm/CodeGen/MachineLoopInfo.h"
37#include "llvm/CodeGen/MachineRegisterInfo.h"
38#include "llvm/CodeGen/Passes.h"
39#include "llvm/CodeGen/RegAllocRegistry.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000040#include "llvm/Target/TargetOptions.h"
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +000041#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000042#include "llvm/Support/Debug.h"
43#include "llvm/Support/ErrorHandling.h"
44#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000045#include "llvm/Support/Timer.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000046
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000047#include <queue>
48
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000049using namespace llvm;
50
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000051STATISTIC(NumGlobalSplits, "Number of split global live ranges");
52STATISTIC(NumLocalSplits, "Number of split local live ranges");
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000053STATISTIC(NumEvicted, "Number of interferences evicted");
54
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +000055static cl::opt<SplitEditor::ComplementSpillMode>
56SplitSpillMode("split-spill-mode", cl::Hidden,
57 cl::desc("Spill mode for splitting live ranges"),
58 cl::values(clEnumValN(SplitEditor::SM_Partition, "default", "Default"),
59 clEnumValN(SplitEditor::SM_Size, "size", "Optimize for size"),
60 clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed"),
61 clEnumValEnd),
62 cl::init(SplitEditor::SM_Partition));
63
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000064static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
65 createGreedyRegisterAllocator);
66
67namespace {
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +000068class RAGreedy : public MachineFunctionPass,
69 public RegAllocBase,
70 private LiveRangeEdit::Delegate {
71
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000072 // context
73 MachineFunction *MF;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000074
75 // analyses
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000076 SlotIndexes *Indexes;
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +000077 MachineDominatorTree *DomTree;
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +000078 MachineLoopInfo *Loops;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000079 EdgeBundles *Bundles;
80 SpillPlacement *SpillPlacer;
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +000081 LiveDebugVariables *DebugVars;
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +000082
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000083 // state
84 std::auto_ptr<Spiller> SpillerInstance;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000085 std::priority_queue<std::pair<unsigned, unsigned> > Queue;
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +000086 unsigned NextCascade;
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +000087
88 // Live ranges pass through a number of stages as we try to allocate them.
89 // Some of the stages may also create new live ranges:
90 //
91 // - Region splitting.
92 // - Per-block splitting.
93 // - Local splitting.
94 // - Spilling.
95 //
96 // Ranges produced by one of the stages skip the previous stages when they are
97 // dequeued. This improves performance because we can skip interference checks
98 // that are unlikely to give any results. It also guarantees that the live
99 // range splitting algorithm terminates, something that is otherwise hard to
100 // ensure.
101 enum LiveRangeStage {
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000102 /// Newly created live range that has never been queued.
103 RS_New,
104
105 /// Only attempt assignment and eviction. Then requeue as RS_Split.
106 RS_Assign,
107
108 /// Attempt live range splitting if assignment is impossible.
109 RS_Split,
110
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +0000111 /// Attempt more aggressive live range splitting that is guaranteed to make
112 /// progress. This is used for split products that may not be making
113 /// progress.
114 RS_Split2,
115
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000116 /// Live range will be spilled. No more splitting will be attempted.
117 RS_Spill,
118
119 /// There is nothing more we can do to this live range. Abort compilation
120 /// if it can't be assigned.
121 RS_Done
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000122 };
123
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000124 static const char *const StageName[];
125
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000126 // RegInfo - Keep additional information about each live range.
127 struct RegInfo {
128 LiveRangeStage Stage;
129
130 // Cascade - Eviction loop prevention. See canEvictInterference().
131 unsigned Cascade;
132
133 RegInfo() : Stage(RS_New), Cascade(0) {}
134 };
135
136 IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo;
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000137
138 LiveRangeStage getStage(const LiveInterval &VirtReg) const {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000139 return ExtraRegInfo[VirtReg.reg].Stage;
140 }
141
142 void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) {
143 ExtraRegInfo.resize(MRI->getNumVirtRegs());
144 ExtraRegInfo[VirtReg.reg].Stage = Stage;
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000145 }
146
147 template<typename Iterator>
148 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000149 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000150 for (;Begin != End; ++Begin) {
151 unsigned Reg = (*Begin)->reg;
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000152 if (ExtraRegInfo[Reg].Stage == RS_New)
153 ExtraRegInfo[Reg].Stage = NewStage;
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000154 }
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000155 }
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000156
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000157 /// Cost of evicting interference.
158 struct EvictionCost {
159 unsigned BrokenHints; ///< Total number of broken hints.
160 float MaxWeight; ///< Maximum spill weight evicted.
161
162 EvictionCost(unsigned B = 0) : BrokenHints(B), MaxWeight(0) {}
163
164 bool operator<(const EvictionCost &O) const {
165 if (BrokenHints != O.BrokenHints)
166 return BrokenHints < O.BrokenHints;
167 return MaxWeight < O.MaxWeight;
168 }
169 };
170
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000171 // splitting state.
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000172 std::auto_ptr<SplitAnalysis> SA;
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000173 std::auto_ptr<SplitEditor> SE;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000174
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000175 /// Cached per-block interference maps
176 InterferenceCache IntfCache;
177
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000178 /// All basic blocks where the current register has uses.
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000179 SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000180
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000181 /// Global live range splitting candidate info.
182 struct GlobalSplitCandidate {
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000183 // Register intended for assignment, or 0.
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000184 unsigned PhysReg;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000185
186 // SplitKit interval index for this candidate.
187 unsigned IntvIdx;
188
189 // Interference for PhysReg.
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000190 InterferenceCache::Cursor Intf;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000191
192 // Bundles where this candidate should be live.
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000193 BitVector LiveBundles;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000194 SmallVector<unsigned, 8> ActiveBlocks;
195
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000196 void reset(InterferenceCache &Cache, unsigned Reg) {
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000197 PhysReg = Reg;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000198 IntvIdx = 0;
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000199 Intf.setPhysReg(Cache, Reg);
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000200 LiveBundles.clear();
201 ActiveBlocks.clear();
202 }
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000203
204 // Set B[i] = C for every live bundle where B[i] was NoCand.
205 unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) {
206 unsigned Count = 0;
207 for (int i = LiveBundles.find_first(); i >= 0;
208 i = LiveBundles.find_next(i))
209 if (B[i] == NoCand) {
210 B[i] = C;
211 Count++;
212 }
213 return Count;
214 }
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000215 };
216
217 /// Candidate info for for each PhysReg in AllocationOrder.
218 /// This vector never shrinks, but grows to the size of the largest register
219 /// class.
220 SmallVector<GlobalSplitCandidate, 32> GlobalCand;
221
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000222 enum { NoCand = ~0u };
223
224 /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to
225 /// NoCand which indicates the stack interval.
226 SmallVector<unsigned, 32> BundleCand;
227
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000228public:
229 RAGreedy();
230
231 /// Return the pass name.
232 virtual const char* getPassName() const {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000233 return "Greedy Register Allocator";
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000234 }
235
236 /// RAGreedy analysis usage.
237 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000238 virtual void releaseMemory();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000239 virtual Spiller &spiller() { return *SpillerInstance; }
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000240 virtual void enqueue(LiveInterval *LI);
241 virtual LiveInterval *dequeue();
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000242 virtual unsigned selectOrSplit(LiveInterval&,
243 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000244
245 /// Perform register allocation.
246 virtual bool runOnMachineFunction(MachineFunction &mf);
247
248 static char ID;
Andrew Trickb853e6c2010-12-09 18:15:21 +0000249
250private:
Jakob Stoklund Olesen7792e982011-03-13 01:23:11 +0000251 bool LRE_CanEraseVirtReg(unsigned);
Jakob Stoklund Olesen1d5b8452011-03-16 22:56:16 +0000252 void LRE_WillShrinkVirtReg(unsigned);
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000253 void LRE_DidCloneVirtReg(unsigned, unsigned);
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +0000254
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000255 float calcSpillCost();
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000256 bool addSplitConstraints(InterferenceCache::Cursor, float&);
257 void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>);
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000258 void growRegion(GlobalSplitCandidate &Cand);
259 float calcGlobalSplitCost(GlobalSplitCandidate&);
Jakob Stoklund Olesen87972fa2011-07-23 03:41:57 +0000260 bool calcCompactRegion(GlobalSplitCandidate&);
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000261 void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000262 void calcGapWeights(unsigned, SmallVectorImpl<float>&);
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000263 bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool);
264 bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&);
265 void evictInterference(LiveInterval&, unsigned,
266 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +0000267
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000268 unsigned tryAssign(LiveInterval&, AllocationOrder&,
269 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000270 unsigned tryEvict(LiveInterval&, AllocationOrder&,
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000271 SmallVectorImpl<LiveInterval*>&, unsigned = ~0u);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000272 unsigned tryRegionSplit(LiveInterval&, AllocationOrder&,
273 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +0000274 unsigned tryBlockSplit(LiveInterval&, AllocationOrder&,
275 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesend74d2842012-05-23 22:37:27 +0000276 unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&,
277 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000278 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
279 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +0000280 unsigned trySplit(LiveInterval&, AllocationOrder&,
281 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000282};
283} // end anonymous namespace
284
285char RAGreedy::ID = 0;
286
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000287#ifndef NDEBUG
288const char *const RAGreedy::StageName[] = {
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000289 "RS_New",
290 "RS_Assign",
291 "RS_Split",
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +0000292 "RS_Split2",
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000293 "RS_Spill",
294 "RS_Done"
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000295};
296#endif
297
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000298// Hysteresis to use when comparing floats.
299// This helps stabilize decisions based on float comparisons.
300const float Hysteresis = 0.98f;
301
302
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000303FunctionPass* llvm::createGreedyRegisterAllocator() {
304 return new RAGreedy();
305}
306
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000307RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000308 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000309 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000310 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
311 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Rafael Espindola5b220212011-06-26 22:34:10 +0000312 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Trick42b7a712012-01-17 06:55:03 +0000313 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000314 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
315 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
316 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
317 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
318 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000319 initializeLiveRegMatrixPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000320 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
321 initializeSpillPlacementPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000322}
323
324void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
325 AU.setPreservesCFG();
326 AU.addRequired<AliasAnalysis>();
327 AU.addPreserved<AliasAnalysis>();
328 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesen05ec7122012-06-08 23:44:45 +0000329 AU.addPreserved<LiveIntervals>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000330 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000331 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000332 AU.addRequired<LiveDebugVariables>();
333 AU.addPreserved<LiveDebugVariables>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000334 AU.addRequired<CalculateSpillWeights>();
335 AU.addRequired<LiveStacks>();
336 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +0000337 AU.addRequired<MachineDominatorTree>();
338 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000339 AU.addRequired<MachineLoopInfo>();
340 AU.addPreserved<MachineLoopInfo>();
341 AU.addRequired<VirtRegMap>();
342 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000343 AU.addRequired<LiveRegMatrix>();
344 AU.addPreserved<LiveRegMatrix>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000345 AU.addRequired<EdgeBundles>();
346 AU.addRequired<SpillPlacement>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000347 MachineFunctionPass::getAnalysisUsage(AU);
348}
349
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +0000350
351//===----------------------------------------------------------------------===//
352// LiveRangeEdit delegate methods
353//===----------------------------------------------------------------------===//
354
Jakob Stoklund Olesen7792e982011-03-13 01:23:11 +0000355bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000356 if (VRM->hasPhys(VirtReg)) {
357 Matrix->unassign(LIS->getInterval(VirtReg));
Jakob Stoklund Olesen7792e982011-03-13 01:23:11 +0000358 return true;
359 }
360 // Unassigned virtreg is probably in the priority queue.
361 // RegAllocBase will erase it after dequeueing.
362 return false;
363}
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +0000364
Jakob Stoklund Olesen1d5b8452011-03-16 22:56:16 +0000365void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000366 if (!VRM->hasPhys(VirtReg))
Jakob Stoklund Olesen1d5b8452011-03-16 22:56:16 +0000367 return;
368
369 // Register is assigned, put it back on the queue for reassignment.
370 LiveInterval &LI = LIS->getInterval(VirtReg);
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000371 Matrix->unassign(LI);
Jakob Stoklund Olesen1d5b8452011-03-16 22:56:16 +0000372 enqueue(&LI);
373}
374
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000375void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
Jakob Stoklund Olesen0d4fea72011-09-14 17:34:37 +0000376 // Cloning a register we haven't even heard about yet? Just ignore it.
377 if (!ExtraRegInfo.inBounds(Old))
378 return;
379
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000380 // LRE may clone a virtual register because dead code elimination causes it to
Jakob Stoklund Olesen165e2312011-07-26 00:54:56 +0000381 // be split into connected components. The new components are much smaller
382 // than the original, so they should get a new chance at being assigned.
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000383 // same stage as the parent.
Jakob Stoklund Olesen165e2312011-07-26 00:54:56 +0000384 ExtraRegInfo[Old].Stage = RS_Assign;
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000385 ExtraRegInfo.grow(New);
386 ExtraRegInfo[New] = ExtraRegInfo[Old];
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000387}
388
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000389void RAGreedy::releaseMemory() {
390 SpillerInstance.reset(0);
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000391 ExtraRegInfo.clear();
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000392 GlobalCand.clear();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000393 RegAllocBase::releaseMemory();
394}
395
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000396void RAGreedy::enqueue(LiveInterval *LI) {
397 // Prioritize live ranges by size, assigning larger ranges first.
398 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000399 const unsigned Size = LI->getSize();
400 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000401 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
402 "Can only enqueue virtual registers");
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000403 unsigned Prio;
Jakob Stoklund Olesen90c1d7d2010-12-08 22:57:16 +0000404
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000405 ExtraRegInfo.grow(Reg);
406 if (ExtraRegInfo[Reg].Stage == RS_New)
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000407 ExtraRegInfo[Reg].Stage = RS_Assign;
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000408
Jakob Stoklund Olesencc07e042011-07-28 20:48:23 +0000409 if (ExtraRegInfo[Reg].Stage == RS_Split) {
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +0000410 // Unsplit ranges that couldn't be allocated immediately are deferred until
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +0000411 // everything else has been allocated.
412 Prio = Size;
Jakob Stoklund Olesencc07e042011-07-28 20:48:23 +0000413 } else {
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +0000414 // Everything is allocated in long->short order. Long ranges that don't fit
415 // should be spilled (or split) ASAP so they don't create interference.
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000416 Prio = (1u << 31) + Size;
Jakob Stoklund Olesend2a50732011-02-23 00:56:56 +0000417
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +0000418 // Boost ranges that have a physical register hint.
419 if (TargetRegisterInfo::isPhysicalRegister(VRM->getRegAllocPref(Reg)))
420 Prio |= (1u << 30);
421 }
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000422
Jakob Stoklund Olesene3b23cd2012-04-02 22:30:39 +0000423 Queue.push(std::make_pair(Prio, ~Reg));
Jakob Stoklund Olesen90c1d7d2010-12-08 22:57:16 +0000424}
425
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000426LiveInterval *RAGreedy::dequeue() {
427 if (Queue.empty())
428 return 0;
Jakob Stoklund Olesene3b23cd2012-04-02 22:30:39 +0000429 LiveInterval *LI = &LIS->getInterval(~Queue.top().second);
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000430 Queue.pop();
431 return LI;
432}
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000433
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000434
435//===----------------------------------------------------------------------===//
436// Direct Assignment
437//===----------------------------------------------------------------------===//
438
439/// tryAssign - Try to assign VirtReg to an available register.
440unsigned RAGreedy::tryAssign(LiveInterval &VirtReg,
441 AllocationOrder &Order,
442 SmallVectorImpl<LiveInterval*> &NewVRegs) {
443 Order.rewind();
444 unsigned PhysReg;
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000445 while ((PhysReg = Order.next()))
446 if (!Matrix->checkInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000447 break;
448 if (!PhysReg || Order.isHint(PhysReg))
449 return PhysReg;
450
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000451 // PhysReg is available, but there may be a better choice.
452
453 // If we missed a simple hint, try to cheaply evict interference from the
454 // preferred register.
455 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg))
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000456 if (Order.isHint(Hint)) {
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000457 DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n');
458 EvictionCost MaxCost(1);
459 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
460 evictInterference(VirtReg, Hint, NewVRegs);
461 return Hint;
462 }
463 }
464
465 // Try to evict interference from a cheaper alternative.
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000466 unsigned Cost = TRI->getCostPerUse(PhysReg);
467
468 // Most registers have 0 additional cost.
469 if (!Cost)
470 return PhysReg;
471
472 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost
473 << '\n');
474 unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost);
475 return CheapReg ? CheapReg : PhysReg;
476}
477
478
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000479//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000480// Interference eviction
481//===----------------------------------------------------------------------===//
482
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000483/// shouldEvict - determine if A should evict the assigned live range B. The
484/// eviction policy defined by this function together with the allocation order
485/// defined by enqueue() decides which registers ultimately end up being split
486/// and spilled.
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000487///
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000488/// Cascade numbers are used to prevent infinite loops if this function is a
489/// cyclic relation.
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000490///
491/// @param A The live range to be assigned.
492/// @param IsHint True when A is about to be assigned to its preferred
493/// register.
494/// @param B The live range to be evicted.
495/// @param BreaksHint True when B is already assigned to its preferred register.
496bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint,
497 LiveInterval &B, bool BreaksHint) {
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +0000498 bool CanSplit = getStage(B) < RS_Spill;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000499
500 // Be fairly aggressive about following hints as long as the evictee can be
501 // split.
502 if (CanSplit && IsHint && !BreaksHint)
503 return true;
504
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000505 return A.weight > B.weight;
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000506}
507
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000508/// canEvictInterference - Return true if all interferences between VirtReg and
509/// PhysReg can be evicted. When OnlyCheap is set, don't do anything
510///
511/// @param VirtReg Live range that is about to be assigned.
512/// @param PhysReg Desired register for assignment.
513/// @prarm IsHint True when PhysReg is VirtReg's preferred register.
514/// @param MaxCost Only look for cheaper candidates and update with new cost
515/// when returning true.
516/// @returns True when interference can be evicted cheaper than MaxCost.
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000517bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000518 bool IsHint, EvictionCost &MaxCost) {
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000519 // It is only possible to evict virtual register interference.
520 if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg)
521 return false;
522
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000523 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
524 // involved in an eviction before. If a cascade number was assigned, deny
525 // evicting anything with the same or a newer cascade number. This prevents
526 // infinite eviction loops.
527 //
528 // This works out so a register without a cascade number is allowed to evict
529 // anything, and it can be evicted by anything.
530 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
531 if (!Cascade)
532 Cascade = NextCascade;
533
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000534 EvictionCost Cost;
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000535 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
536 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen3f5bedf2011-04-11 21:47:01 +0000537 // If there is 10 or more interferences, chances are one is heavier.
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000538 if (Q.collectInterferingVRegs(10) >= 10)
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000539 return false;
540
Jakob Stoklund Olesen3f5bedf2011-04-11 21:47:01 +0000541 // Check if any interfering live range is heavier than MaxWeight.
542 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
543 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000544 assert(TargetRegisterInfo::isVirtualRegister(Intf->reg) &&
545 "Only expecting virtual register interference from query");
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000546 // Never evict spill products. They cannot split or spill.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000547 if (getStage(*Intf) == RS_Done)
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000548 return false;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000549 // Once a live range becomes small enough, it is urgent that we find a
550 // register for it. This is indicated by an infinite spill weight. These
551 // urgent live ranges get to evict almost anything.
Jakob Stoklund Olesen9cda1be2012-05-30 21:46:58 +0000552 //
553 // Also allow urgent evictions of unspillable ranges from a strictly
554 // larger allocation order.
555 bool Urgent = !VirtReg.isSpillable() &&
556 (Intf->isSpillable() ||
557 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(VirtReg.reg)) <
558 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(Intf->reg)));
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000559 // Only evict older cascades or live ranges without a cascade.
560 unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade;
561 if (Cascade <= IntfCascade) {
562 if (!Urgent)
563 return false;
564 // We permit breaking cascades for urgent evictions. It should be the
565 // last resort, though, so make it really expensive.
566 Cost.BrokenHints += 10;
567 }
568 // Would this break a satisfied hint?
569 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg);
570 // Update eviction cost.
571 Cost.BrokenHints += BreaksHint;
572 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
573 // Abort if this would be too expensive.
574 if (!(Cost < MaxCost))
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000575 return false;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000576 // Finally, apply the eviction policy for non-urgent evictions.
577 if (!Urgent && !shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
Jakob Stoklund Olesend2056e52011-05-31 21:02:44 +0000578 return false;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000579 }
580 }
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000581 MaxCost = Cost;
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000582 return true;
583}
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000584
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000585/// evictInterference - Evict any interferring registers that prevent VirtReg
586/// from being assigned to Physreg. This assumes that canEvictInterference
587/// returned true.
588void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg,
589 SmallVectorImpl<LiveInterval*> &NewVRegs) {
590 // Make sure that VirtReg has a cascade number, and assign that cascade
591 // number to every evicted register. These live ranges than then only be
592 // evicted by a newer cascade, preventing infinite loops.
593 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
594 if (!Cascade)
595 Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++;
596
597 DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI)
598 << " interference: Cascade " << Cascade << '\n');
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000599
600 // Collect all interfering virtregs first.
601 SmallVector<LiveInterval*, 8> Intfs;
602 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
603 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000604 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +0000605 ArrayRef<LiveInterval*> IVR = Q.interferingVRegs();
606 Intfs.append(IVR.begin(), IVR.end());
607 }
608
609 // Evict them second. This will invalidate the queries.
610 for (unsigned i = 0, e = Intfs.size(); i != e; ++i) {
611 LiveInterval *Intf = Intfs[i];
612 // The same VirtReg may be present in multiple RegUnits. Skip duplicates.
613 if (!VRM->hasPhys(Intf->reg))
614 continue;
615 Matrix->unassign(*Intf);
616 assert((ExtraRegInfo[Intf->reg].Cascade < Cascade ||
617 VirtReg.isSpillable() < Intf->isSpillable()) &&
618 "Cannot decrease cascade number, illegal eviction");
619 ExtraRegInfo[Intf->reg].Cascade = Cascade;
620 ++NumEvicted;
621 NewVRegs.push_back(Intf);
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000622 }
623}
624
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000625/// tryEvict - Try to evict all interferences for a physreg.
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +0000626/// @param VirtReg Currently unassigned virtual register.
627/// @param Order Physregs to try.
628/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000629unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
630 AllocationOrder &Order,
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000631 SmallVectorImpl<LiveInterval*> &NewVRegs,
632 unsigned CostPerUseLimit) {
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000633 NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled);
634
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000635 // Keep track of the cheapest interference seen so far.
636 EvictionCost BestCost(~0u);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000637 unsigned BestPhys = 0;
638
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000639 // When we are just looking for a reduced cost per use, don't break any
640 // hints, and only evict smaller spill weights.
641 if (CostPerUseLimit < ~0u) {
642 BestCost.BrokenHints = 0;
643 BestCost.MaxWeight = VirtReg.weight;
644 }
645
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000646 Order.rewind();
647 while (unsigned PhysReg = Order.next()) {
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000648 if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit)
649 continue;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000650 // The first use of a callee-saved register in a function has cost 1.
651 // Don't start using a CSR when the CostPerUseLimit is low.
652 if (CostPerUseLimit == 1)
653 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
654 if (!MRI->isPhysRegUsed(CSR)) {
655 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
656 << PrintReg(CSR, TRI) << '\n');
657 continue;
658 }
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000659
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000660 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000661 continue;
662
663 // Best so far.
664 BestPhys = PhysReg;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000665
Jakob Stoklund Olesen57f1e2c2011-02-25 01:04:22 +0000666 // Stop if the hint can be used.
667 if (Order.isHint(PhysReg))
668 break;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000669 }
670
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000671 if (!BestPhys)
672 return 0;
673
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000674 evictInterference(VirtReg, BestPhys, NewVRegs);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000675 return BestPhys;
Andrew Trickb853e6c2010-12-09 18:15:21 +0000676}
677
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000678
679//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000680// Region Splitting
681//===----------------------------------------------------------------------===//
682
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000683/// addSplitConstraints - Fill out the SplitConstraints vector based on the
684/// interference pattern in Physreg and its aliases. Add the constraints to
685/// SpillPlacement and return the static cost of this split in Cost, assuming
686/// that all preferences in SplitConstraints are met.
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000687/// Return false if there are no bundles with positive bias.
688bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf,
689 float &Cost) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000690 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000691
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000692 // Reset interference dependent info.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000693 SplitConstraints.resize(UseBlocks.size());
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000694 float StaticCost = 0;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000695 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
696 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000697 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000698
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000699 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000700 Intf.moveToBlock(BC.Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000701 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
702 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
Jakob Stoklund Olesen5ebca792011-08-02 23:04:06 +0000703 BC.ChangesValue = BI.FirstDef;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000704
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000705 if (!Intf.hasInterference())
706 continue;
707
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000708 // Number of spill code instructions to insert.
709 unsigned Ins = 0;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000710
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000711 // Interference for the live-in value.
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000712 if (BI.LiveIn) {
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000713 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000714 BC.Entry = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000715 else if (Intf.first() < BI.FirstInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000716 BC.Entry = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000717 else if (Intf.first() < BI.LastInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000718 ++Ins;
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000719 }
720
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000721 // Interference for the live-out value.
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000722 if (BI.LiveOut) {
Jakob Stoklund Olesen612f7802011-04-05 04:20:29 +0000723 if (Intf.last() >= SA->getLastSplitPoint(BC.Number))
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000724 BC.Exit = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000725 else if (Intf.last() > BI.LastInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000726 BC.Exit = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000727 else if (Intf.last() > BI.FirstInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000728 ++Ins;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000729 }
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000730
731 // Accumulate the total frequency of inserted spill code.
732 if (Ins)
733 StaticCost += Ins * SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000734 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000735 Cost = StaticCost;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000736
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000737 // Add constraints for use-blocks. Note that these are the only constraints
738 // that may add a positive bias, it is downhill from here.
739 SpillPlacer->addConstraints(SplitConstraints);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000740 return SpillPlacer->scanActiveBundles();
741}
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000742
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000743
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000744/// addThroughConstraints - Add constraints and links to SpillPlacer from the
745/// live-through blocks in Blocks.
746void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf,
747 ArrayRef<unsigned> Blocks) {
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000748 const unsigned GroupSize = 8;
749 SpillPlacement::BlockConstraint BCS[GroupSize];
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000750 unsigned TBS[GroupSize];
751 unsigned B = 0, T = 0;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000752
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000753 for (unsigned i = 0; i != Blocks.size(); ++i) {
754 unsigned Number = Blocks[i];
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000755 Intf.moveToBlock(Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000756
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000757 if (!Intf.hasInterference()) {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000758 assert(T < GroupSize && "Array overflow");
759 TBS[T] = Number;
760 if (++T == GroupSize) {
Frits van Bommel39b5abf2011-07-18 12:00:32 +0000761 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000762 T = 0;
763 }
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000764 continue;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000765 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000766
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000767 assert(B < GroupSize && "Array overflow");
768 BCS[B].Number = Number;
769
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000770 // Interference for the live-in value.
771 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
772 BCS[B].Entry = SpillPlacement::MustSpill;
773 else
774 BCS[B].Entry = SpillPlacement::PrefSpill;
775
776 // Interference for the live-out value.
777 if (Intf.last() >= SA->getLastSplitPoint(Number))
778 BCS[B].Exit = SpillPlacement::MustSpill;
779 else
780 BCS[B].Exit = SpillPlacement::PrefSpill;
781
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000782 if (++B == GroupSize) {
783 ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B);
784 SpillPlacer->addConstraints(Array);
785 B = 0;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000786 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000787 }
788
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000789 ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B);
790 SpillPlacer->addConstraints(Array);
Frits van Bommel39b5abf2011-07-18 12:00:32 +0000791 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000792}
793
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000794void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000795 // Keep track of through blocks that have not been added to SpillPlacer.
796 BitVector Todo = SA->getThroughBlocks();
797 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks;
798 unsigned AddedTo = 0;
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000799#ifndef NDEBUG
800 unsigned Visited = 0;
801#endif
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000802
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000803 for (;;) {
804 ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive();
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000805 // Find new through blocks in the periphery of PrefRegBundles.
806 for (int i = 0, e = NewBundles.size(); i != e; ++i) {
807 unsigned Bundle = NewBundles[i];
808 // Look at all blocks connected to Bundle in the full graph.
809 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
810 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
811 I != E; ++I) {
812 unsigned Block = *I;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000813 if (!Todo.test(Block))
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000814 continue;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000815 Todo.reset(Block);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000816 // This is a new through block. Add it to SpillPlacer later.
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000817 ActiveBlocks.push_back(Block);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000818#ifndef NDEBUG
819 ++Visited;
820#endif
821 }
822 }
823 // Any new blocks to add?
Jakob Stoklund Olesen54901972011-07-05 18:46:42 +0000824 if (ActiveBlocks.size() == AddedTo)
825 break;
Jakob Stoklund Olesenb4666362011-07-23 03:22:33 +0000826
827 // Compute through constraints from the interference, or assume that all
828 // through blocks prefer spilling when forming compact regions.
829 ArrayRef<unsigned> NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
830 if (Cand.PhysReg)
831 addThroughConstraints(Cand.Intf, NewBlocks);
832 else
Jakob Stoklund Olesenb87f91b2011-08-03 23:09:38 +0000833 // Provide a strong negative bias on through blocks to prevent unwanted
834 // liveness on loop backedges.
835 SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true);
Jakob Stoklund Olesen54901972011-07-05 18:46:42 +0000836 AddedTo = ActiveBlocks.size();
837
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000838 // Perhaps iterating can enable more bundles?
839 SpillPlacer->iterate();
840 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000841 DEBUG(dbgs() << ", v=" << Visited);
842}
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000843
Jakob Stoklund Olesen87972fa2011-07-23 03:41:57 +0000844/// calcCompactRegion - Compute the set of edge bundles that should be live
845/// when splitting the current live range into compact regions. Compact
846/// regions can be computed without looking at interference. They are the
847/// regions formed by removing all the live-through blocks from the live range.
848///
849/// Returns false if the current live range is already compact, or if the
850/// compact regions would form single block regions anyway.
851bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) {
852 // Without any through blocks, the live range is already compact.
853 if (!SA->getNumThroughBlocks())
854 return false;
855
856 // Compact regions don't correspond to any physreg.
857 Cand.reset(IntfCache, 0);
858
859 DEBUG(dbgs() << "Compact region bundles");
860
861 // Use the spill placer to determine the live bundles. GrowRegion pretends
862 // that all the through blocks have interference when PhysReg is unset.
863 SpillPlacer->prepare(Cand.LiveBundles);
864
865 // The static split cost will be zero since Cand.Intf reports no interference.
866 float Cost;
867 if (!addSplitConstraints(Cand.Intf, Cost)) {
868 DEBUG(dbgs() << ", none.\n");
869 return false;
870 }
871
872 growRegion(Cand);
873 SpillPlacer->finish();
874
875 if (!Cand.LiveBundles.any()) {
876 DEBUG(dbgs() << ", none.\n");
877 return false;
878 }
879
880 DEBUG({
881 for (int i = Cand.LiveBundles.find_first(); i>=0;
882 i = Cand.LiveBundles.find_next(i))
883 dbgs() << " EB#" << i;
884 dbgs() << ".\n";
885 });
886 return true;
887}
888
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000889/// calcSpillCost - Compute how expensive it would be to split the live range in
890/// SA around all use blocks instead of forming bundle regions.
891float RAGreedy::calcSpillCost() {
892 float Cost = 0;
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000893 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
894 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
895 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
896 unsigned Number = BI.MBB->getNumber();
897 // We normally only need one spill instruction - a load or a store.
898 Cost += SpillPlacer->getBlockFrequency(Number);
899
900 // Unless the value is redefined in the block.
Jakob Stoklund Olesen3f5beed2011-08-02 23:04:08 +0000901 if (BI.LiveIn && BI.LiveOut && BI.FirstDef)
902 Cost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000903 }
904 return Cost;
905}
906
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000907/// calcGlobalSplitCost - Return the global split cost of following the split
908/// pattern in LiveBundles. This cost should be added to the local cost of the
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000909/// interference pattern in SplitConstraints.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000910///
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000911float RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000912 float GlobalCost = 0;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000913 const BitVector &LiveBundles = Cand.LiveBundles;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000914 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
915 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
916 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000917 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +0000918 bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)];
919 bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)];
920 unsigned Ins = 0;
921
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000922 if (BI.LiveIn)
923 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
924 if (BI.LiveOut)
925 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +0000926 if (Ins)
927 GlobalCost += Ins * SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000928 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000929
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000930 for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) {
931 unsigned Number = Cand.ActiveBlocks[i];
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000932 bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)];
933 bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)];
Jakob Stoklund Olesen9a543522011-04-06 21:32:41 +0000934 if (!RegIn && !RegOut)
935 continue;
936 if (RegIn && RegOut) {
937 // We need double spill code if this block has interference.
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000938 Cand.Intf.moveToBlock(Number);
939 if (Cand.Intf.hasInterference())
Jakob Stoklund Olesen9a543522011-04-06 21:32:41 +0000940 GlobalCost += 2*SpillPlacer->getBlockFrequency(Number);
941 continue;
942 }
943 // live-in / stack-out or stack-in live-out.
944 GlobalCost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000945 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000946 return GlobalCost;
947}
948
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000949/// splitAroundRegion - Split the current live range around the regions
950/// determined by BundleCand and GlobalCand.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000951///
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000952/// Before calling this function, GlobalCand and BundleCand must be initialized
953/// so each bundle is assigned to a valid candidate, or NoCand for the
954/// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor
955/// objects must be initialized for the current live range, and intervals
956/// created for the used candidates.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000957///
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000958/// @param LREdit The LiveRangeEdit object handling the current split.
959/// @param UsedCands List of used GlobalCand entries. Every BundleCand value
960/// must appear in this list.
961void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit,
962 ArrayRef<unsigned> UsedCands) {
963 // These are the intervals created for new global ranges. We may create more
964 // intervals for local ranges.
965 const unsigned NumGlobalIntvs = LREdit.size();
966 DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n");
967 assert(NumGlobalIntvs && "No global intervals configured");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000968
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000969 // Isolate even single instructions when dealing with a proper sub-class.
Jakob Stoklund Olesen69145ba2011-08-06 18:20:24 +0000970 // That guarantees register class inflation for the stack interval because it
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000971 // is all copies.
972 unsigned Reg = SA->getParent().reg;
973 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
974
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000975 // First handle all the blocks with uses.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000976 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
977 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
978 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000979 unsigned Number = BI.MBB->getNumber();
980 unsigned IntvIn = 0, IntvOut = 0;
981 SlotIndex IntfIn, IntfOut;
982 if (BI.LiveIn) {
983 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
984 if (CandIn != NoCand) {
985 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
986 IntvIn = Cand.IntvIdx;
987 Cand.Intf.moveToBlock(Number);
988 IntfIn = Cand.Intf.first();
989 }
990 }
991 if (BI.LiveOut) {
992 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
993 if (CandOut != NoCand) {
994 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
995 IntvOut = Cand.IntvIdx;
996 Cand.Intf.moveToBlock(Number);
997 IntfOut = Cand.Intf.last();
998 }
999 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001000
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001001 // Create separate intervals for isolated blocks with multiple uses.
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001002 if (!IntvIn && !IntvOut) {
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001003 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n");
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +00001004 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +00001005 SE->splitSingleBlock(BI);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001006 continue;
1007 }
1008
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001009 if (IntvIn && IntvOut)
1010 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1011 else if (IntvIn)
1012 SE->splitRegInBlock(BI, IntvIn, IntfIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001013 else
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001014 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001015 }
1016
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001017 // Handle live-through blocks. The relevant live-through blocks are stored in
1018 // the ActiveBlocks list with each candidate. We need to filter out
1019 // duplicates.
1020 BitVector Todo = SA->getThroughBlocks();
1021 for (unsigned c = 0; c != UsedCands.size(); ++c) {
1022 ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks;
1023 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
1024 unsigned Number = Blocks[i];
1025 if (!Todo.test(Number))
1026 continue;
1027 Todo.reset(Number);
1028
1029 unsigned IntvIn = 0, IntvOut = 0;
1030 SlotIndex IntfIn, IntfOut;
1031
1032 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1033 if (CandIn != NoCand) {
1034 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1035 IntvIn = Cand.IntvIdx;
1036 Cand.Intf.moveToBlock(Number);
1037 IntfIn = Cand.Intf.first();
1038 }
1039
1040 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1041 if (CandOut != NoCand) {
1042 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1043 IntvOut = Cand.IntvIdx;
1044 Cand.Intf.moveToBlock(Number);
1045 IntfOut = Cand.Intf.last();
1046 }
1047 if (!IntvIn && !IntvOut)
1048 continue;
1049 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1050 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001051 }
1052
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +00001053 ++NumGlobalSplits;
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001054
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001055 SmallVector<unsigned, 8> IntvMap;
1056 SE->finish(&IntvMap);
Jakob Stoklund Olesen1f880422011-08-05 23:10:40 +00001057 DebugVars->splitRegister(Reg, LREdit.regs());
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001058
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001059 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +00001060 unsigned OrigBlocks = SA->getNumLiveBlocks();
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001061
1062 // Sort out the new intervals created by splitting. We get four kinds:
1063 // - Remainder intervals should not be split again.
1064 // - Candidate intervals can be assigned to Cand.PhysReg.
1065 // - Block-local splits are candidates for local splitting.
1066 // - DCE leftovers should go back on the queue.
1067 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001068 LiveInterval &Reg = *LREdit.get(i);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001069
1070 // Ignore old intervals from DCE.
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001071 if (getStage(Reg) != RS_New)
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001072 continue;
1073
1074 // Remainder interval. Don't try splitting again, spill if it doesn't
1075 // allocate.
1076 if (IntvMap[i] == 0) {
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001077 setStage(Reg, RS_Spill);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001078 continue;
1079 }
1080
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001081 // Global intervals. Allow repeated splitting as long as the number of live
1082 // blocks is strictly decreasing.
1083 if (IntvMap[i] < NumGlobalIntvs) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001084 if (SA->countLiveBlocks(&Reg) >= OrigBlocks) {
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +00001085 DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks
1086 << " blocks as original.\n");
1087 // Don't allow repeated splitting as a safe guard against looping.
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001088 setStage(Reg, RS_Split2);
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +00001089 }
1090 continue;
1091 }
1092
1093 // Other intervals are treated as new. This includes local intervals created
1094 // for blocks with multiple uses, and anything created by DCE.
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001095 }
1096
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +00001097 if (VerifyEnabled)
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001098 MF->verify(this, "After splitting live range around region");
1099}
1100
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001101unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1102 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001103 unsigned NumCands = 0;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001104 unsigned BestCand = NoCand;
1105 float BestCost;
1106 SmallVector<unsigned, 8> UsedCands;
1107
1108 // Check if we can split this live range around a compact region.
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +00001109 bool HasCompact = calcCompactRegion(GlobalCand.front());
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001110 if (HasCompact) {
1111 // Yes, keep GlobalCand[0] as the compact region candidate.
1112 NumCands = 1;
1113 BestCost = HUGE_VALF;
1114 } else {
1115 // No benefit from the compact region, our fallback will be per-block
1116 // splitting. Make sure we find a solution that is cheaper than spilling.
1117 BestCost = Hysteresis * calcSpillCost();
1118 DEBUG(dbgs() << "Cost of isolating all blocks = " << BestCost << '\n');
1119 }
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +00001120
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001121 Order.rewind();
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001122 while (unsigned PhysReg = Order.next()) {
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001123 // Discard bad candidates before we run out of interference cache cursors.
1124 // This will only affect register classes with a lot of registers (>32).
1125 if (NumCands == IntfCache.getMaxCursors()) {
1126 unsigned WorstCount = ~0u;
1127 unsigned Worst = 0;
1128 for (unsigned i = 0; i != NumCands; ++i) {
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001129 if (i == BestCand || !GlobalCand[i].PhysReg)
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001130 continue;
1131 unsigned Count = GlobalCand[i].LiveBundles.count();
1132 if (Count < WorstCount)
1133 Worst = i, WorstCount = Count;
1134 }
1135 --NumCands;
1136 GlobalCand[Worst] = GlobalCand[NumCands];
Jakob Stoklund Olesen7bdf0062011-11-01 00:02:31 +00001137 if (BestCand == NumCands)
1138 BestCand = Worst;
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001139 }
1140
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001141 if (GlobalCand.size() <= NumCands)
1142 GlobalCand.resize(NumCands+1);
1143 GlobalSplitCandidate &Cand = GlobalCand[NumCands];
1144 Cand.reset(IntfCache, PhysReg);
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +00001145
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001146 SpillPlacer->prepare(Cand.LiveBundles);
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +00001147 float Cost;
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001148 if (!addSplitConstraints(Cand.Intf, Cost)) {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +00001149 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n");
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +00001150 continue;
1151 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +00001152 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = " << Cost);
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001153 if (Cost >= BestCost) {
1154 DEBUG({
1155 if (BestCand == NoCand)
1156 dbgs() << " worse than no bundles\n";
1157 else
1158 dbgs() << " worse than "
1159 << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n';
1160 });
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001161 continue;
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001162 }
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001163 growRegion(Cand);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001164
Jakob Stoklund Olesen9efa2a22011-04-06 19:13:57 +00001165 SpillPlacer->finish();
1166
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001167 // No live bundles, defer to splitSingleBlocks().
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001168 if (!Cand.LiveBundles.any()) {
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001169 DEBUG(dbgs() << " no bundles.\n");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001170 continue;
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001171 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001172
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001173 Cost += calcGlobalSplitCost(Cand);
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001174 DEBUG({
1175 dbgs() << ", total = " << Cost << " with bundles";
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001176 for (int i = Cand.LiveBundles.find_first(); i>=0;
1177 i = Cand.LiveBundles.find_next(i))
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001178 dbgs() << " EB#" << i;
1179 dbgs() << ".\n";
1180 });
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001181 if (Cost < BestCost) {
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001182 BestCand = NumCands;
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001183 BestCost = Hysteresis * Cost; // Prevent rounding effects.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001184 }
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001185 ++NumCands;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001186 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001187
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001188 // No solutions found, fall back to single block splitting.
1189 if (!HasCompact && BestCand == NoCand)
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001190 return 0;
1191
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001192 // Prepare split editor.
Jakob Stoklund Olesen20942dc2012-05-19 05:25:46 +00001193 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +00001194 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001195
1196 // Assign all edge bundles to the preferred candidate, or NoCand.
1197 BundleCand.assign(Bundles->getNumBundles(), NoCand);
1198
1199 // Assign bundles for the best candidate region.
1200 if (BestCand != NoCand) {
1201 GlobalSplitCandidate &Cand = GlobalCand[BestCand];
1202 if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
1203 UsedCands.push_back(BestCand);
1204 Cand.IntvIdx = SE->openIntv();
1205 DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in "
1206 << B << " bundles, intv " << Cand.IntvIdx << ".\n");
Chandler Carruth32668ea2011-08-03 23:07:27 +00001207 (void)B;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001208 }
1209 }
1210
1211 // Assign bundles for the compact region.
1212 if (HasCompact) {
1213 GlobalSplitCandidate &Cand = GlobalCand.front();
1214 assert(!Cand.PhysReg && "Compact region has no physreg");
1215 if (unsigned B = Cand.getBundles(BundleCand, 0)) {
1216 UsedCands.push_back(0);
1217 Cand.IntvIdx = SE->openIntv();
1218 DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv "
1219 << Cand.IntvIdx << ".\n");
Chandler Carruth32668ea2011-08-03 23:07:27 +00001220 (void)B;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001221 }
1222 }
1223
1224 splitAroundRegion(LREdit, UsedCands);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001225 return 0;
1226}
1227
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001228
1229//===----------------------------------------------------------------------===//
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001230// Per-Block Splitting
1231//===----------------------------------------------------------------------===//
1232
1233/// tryBlockSplit - Split a global live range around every block with uses. This
1234/// creates a lot of local live ranges, that will be split by tryLocalSplit if
1235/// they don't allocate.
1236unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1237 SmallVectorImpl<LiveInterval*> &NewVRegs) {
1238 assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed");
1239 unsigned Reg = VirtReg.reg;
1240 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
Jakob Stoklund Olesen20942dc2012-05-19 05:25:46 +00001241 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +00001242 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001243 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1244 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1245 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1246 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
1247 SE->splitSingleBlock(BI);
1248 }
1249 // No blocks were split.
1250 if (LREdit.empty())
1251 return 0;
1252
1253 // We did split for some blocks.
Jakob Stoklund Olesena9c41d32011-08-05 23:50:31 +00001254 SmallVector<unsigned, 8> IntvMap;
1255 SE->finish(&IntvMap);
Jakob Stoklund Olesen1f880422011-08-05 23:10:40 +00001256
1257 // Tell LiveDebugVariables about the new ranges.
1258 DebugVars->splitRegister(Reg, LREdit.regs());
1259
Jakob Stoklund Olesena9c41d32011-08-05 23:50:31 +00001260 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1261
1262 // Sort out the new intervals created by splitting. The remainder interval
1263 // goes straight to spilling, the new local ranges get to stay RS_New.
1264 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
1265 LiveInterval &LI = *LREdit.get(i);
1266 if (getStage(LI) == RS_New && IntvMap[i] == 0)
1267 setStage(LI, RS_Spill);
1268 }
1269
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001270 if (VerifyEnabled)
1271 MF->verify(this, "After splitting live range around basic blocks");
1272 return 0;
1273}
1274
Jakob Stoklund Olesend74d2842012-05-23 22:37:27 +00001275
1276//===----------------------------------------------------------------------===//
1277// Per-Instruction Splitting
1278//===----------------------------------------------------------------------===//
1279
1280/// tryInstructionSplit - Split a live range around individual instructions.
1281/// This is normally not worthwhile since the spiller is doing essentially the
1282/// same thing. However, when the live range is in a constrained register
1283/// class, it may help to insert copies such that parts of the live range can
1284/// be moved to a larger register class.
1285///
1286/// This is similar to spilling to a larger register class.
1287unsigned
1288RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1289 SmallVectorImpl<LiveInterval*> &NewVRegs) {
1290 // There is no point to this if there are no larger sub-classes.
1291 if (!RegClassInfo.isProperSubClass(MRI->getRegClass(VirtReg.reg)))
1292 return 0;
1293
1294 // Always enable split spill mode, since we're effectively spilling to a
1295 // register.
1296 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
1297 SE->reset(LREdit, SplitEditor::SM_Size);
1298
1299 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
1300 if (Uses.size() <= 1)
1301 return 0;
1302
1303 DEBUG(dbgs() << "Split around " << Uses.size() << " individual instrs.\n");
1304
1305 // Split around every non-copy instruction.
1306 for (unsigned i = 0; i != Uses.size(); ++i) {
1307 if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]))
1308 if (MI->isFullCopy()) {
1309 DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI);
1310 continue;
1311 }
1312 SE->openIntv();
1313 SlotIndex SegStart = SE->enterIntvBefore(Uses[i]);
1314 SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]);
1315 SE->useIntv(SegStart, SegStop);
1316 }
1317
1318 if (LREdit.empty()) {
1319 DEBUG(dbgs() << "All uses were copies.\n");
1320 return 0;
1321 }
1322
1323 SmallVector<unsigned, 8> IntvMap;
1324 SE->finish(&IntvMap);
1325 DebugVars->splitRegister(VirtReg.reg, LREdit.regs());
1326 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1327
1328 // Assign all new registers to RS_Spill. This was the last chance.
1329 setStage(LREdit.begin(), LREdit.end(), RS_Spill);
1330 return 0;
1331}
1332
1333
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001334//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001335// Local Splitting
1336//===----------------------------------------------------------------------===//
1337
1338
1339/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
1340/// in order to use PhysReg between two entries in SA->UseSlots.
1341///
1342/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1343///
1344void RAGreedy::calcGapWeights(unsigned PhysReg,
1345 SmallVectorImpl<float> &GapWeight) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001346 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1347 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001348 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001349 const unsigned NumGaps = Uses.size()-1;
1350
1351 // Start and end points for the interference check.
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001352 SlotIndex StartIdx =
1353 BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr;
1354 SlotIndex StopIdx =
1355 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001356
1357 GapWeight.assign(NumGaps, 0.0f);
1358
1359 // Add interference from each overlapping register.
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +00001360 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1361 if (!Matrix->query(const_cast<LiveInterval&>(SA->getParent()), *Units)
1362 .checkInterference())
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001363 continue;
1364
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001365 // We know that VirtReg is a continuous interval from FirstInstr to
1366 // LastInstr, so we don't need InterferenceQuery.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001367 //
1368 // Interference that overlaps an instruction is counted in both gaps
1369 // surrounding the instruction. The exception is interference before
1370 // StartIdx and after StopIdx.
1371 //
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +00001372 LiveIntervalUnion::SegmentIter IntI =
1373 Matrix->getLiveUnions()[*Units] .find(StartIdx);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001374 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
1375 // Skip the gaps before IntI.
1376 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
1377 if (++Gap == NumGaps)
1378 break;
1379 if (Gap == NumGaps)
1380 break;
1381
1382 // Update the gaps covered by IntI.
1383 const float weight = IntI.value()->weight;
1384 for (; Gap != NumGaps; ++Gap) {
1385 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1386 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1387 break;
1388 }
1389 if (Gap == NumGaps)
1390 break;
1391 }
1392 }
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +00001393
1394 // Add fixed interference.
1395 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1396 const LiveInterval &LI = LIS->getRegUnit(*Units);
1397 LiveInterval::const_iterator I = LI.find(StartIdx);
1398 LiveInterval::const_iterator E = LI.end();
1399
1400 // Same loop as above. Mark any overlapped gaps as HUGE_VALF.
1401 for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) {
1402 while (Uses[Gap+1].getBoundaryIndex() < I->start)
1403 if (++Gap == NumGaps)
1404 break;
1405 if (Gap == NumGaps)
1406 break;
1407
1408 for (; Gap != NumGaps; ++Gap) {
1409 GapWeight[Gap] = HUGE_VALF;
1410 if (Uses[Gap+1].getBaseIndex() >= I->end)
1411 break;
1412 }
1413 if (Gap == NumGaps)
1414 break;
1415 }
1416 }
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001417}
1418
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001419/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1420/// basic block.
1421///
1422unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1423 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001424 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1425 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001426
1427 // Note that it is possible to have an interval that is live-in or live-out
1428 // while only covering a single block - A phi-def can use undef values from
1429 // predecessors, and the block could be a single-block loop.
1430 // We don't bother doing anything clever about such a case, we simply assume
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001431 // that the interval is continuous from FirstInstr to LastInstr. We should
1432 // make sure that we don't do anything illegal to such an interval, though.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001433
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001434 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001435 if (Uses.size() <= 2)
1436 return 0;
1437 const unsigned NumGaps = Uses.size()-1;
1438
1439 DEBUG({
1440 dbgs() << "tryLocalSplit: ";
1441 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001442 dbgs() << ' ' << Uses[i];
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001443 dbgs() << '\n';
1444 });
1445
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001446 // If VirtReg is live across any register mask operands, compute a list of
1447 // gaps with register masks.
1448 SmallVector<unsigned, 8> RegMaskGaps;
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +00001449 if (Matrix->checkRegMaskInterference(VirtReg)) {
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001450 // Get regmask slots for the whole block.
1451 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001452 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001453 // Constrain to VirtReg's live range.
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001454 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1455 Uses.front().getRegSlot()) - RMS.begin();
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001456 unsigned re = RMS.size();
1457 for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001458 // Look for Uses[i] <= RMS <= Uses[i+1].
1459 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1460 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001461 continue;
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001462 // Skip a regmask on the same instruction as the last use. It doesn't
1463 // overlap the live range.
1464 if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps)
1465 break;
1466 DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]);
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001467 RegMaskGaps.push_back(i);
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001468 // Advance ri to the next gap. A regmask on one of the uses counts in
1469 // both gaps.
1470 while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1]))
1471 ++ri;
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001472 }
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001473 DEBUG(dbgs() << '\n');
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001474 }
1475
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001476 // Since we allow local split results to be split again, there is a risk of
1477 // creating infinite loops. It is tempting to require that the new live
1478 // ranges have less instructions than the original. That would guarantee
1479 // convergence, but it is too strict. A live range with 3 instructions can be
1480 // split 2+3 (including the COPY), and we want to allow that.
1481 //
1482 // Instead we use these rules:
1483 //
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001484 // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001485 // noop split, of course).
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001486 // 2. Require progress be made for ranges with getStage() == RS_Split2. All
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001487 // the new ranges must have fewer instructions than before the split.
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001488 // 3. New ranges with the same number of instructions are marked RS_Split2,
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001489 // smaller ranges are marked RS_New.
1490 //
1491 // These rules allow a 3 -> 2+3 split once, which we need. They also prevent
1492 // excessive splitting and infinite loops.
1493 //
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001494 bool ProgressRequired = getStage(VirtReg) >= RS_Split2;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001495
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001496 // Best split candidate.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001497 unsigned BestBefore = NumGaps;
1498 unsigned BestAfter = 0;
1499 float BestDiff = 0;
1500
Jakob Stoklund Olesen40a42a22011-03-04 00:58:40 +00001501 const float blockFreq = SpillPlacer->getBlockFrequency(BI.MBB->getNumber());
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001502 SmallVector<float, 8> GapWeight;
1503
1504 Order.rewind();
1505 while (unsigned PhysReg = Order.next()) {
1506 // Keep track of the largest spill weight that would need to be evicted in
1507 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1508 calcGapWeights(PhysReg, GapWeight);
1509
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001510 // Remove any gaps with regmask clobbers.
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +00001511 if (Matrix->checkRegMaskInterference(VirtReg, PhysReg))
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001512 for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i)
1513 GapWeight[RegMaskGaps[i]] = HUGE_VALF;
1514
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001515 // Try to find the best sequence of gaps to close.
1516 // The new spill weight must be larger than any gap interference.
1517
1518 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001519 unsigned SplitBefore = 0, SplitAfter = 1;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001520
1521 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1522 // It is the spill weight that needs to be evicted.
1523 float MaxGap = GapWeight[0];
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001524
1525 for (;;) {
1526 // Live before/after split?
1527 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1528 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1529
1530 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1531 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1532 << " i=" << MaxGap);
1533
1534 // Stop before the interval gets so big we wouldn't be making progress.
1535 if (!LiveBefore && !LiveAfter) {
1536 DEBUG(dbgs() << " all\n");
1537 break;
1538 }
1539 // Should the interval be extended or shrunk?
1540 bool Shrink = true;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001541
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001542 // How many gaps would the new range have?
1543 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1544
1545 // Legally, without causing looping?
1546 bool Legal = !ProgressRequired || NewGaps < NumGaps;
1547
1548 if (Legal && MaxGap < HUGE_VALF) {
1549 // Estimate the new spill weight. Each instruction reads or writes the
1550 // register. Conservatively assume there are no read-modify-write
1551 // instructions.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001552 //
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001553 // Try to guess the size of the new interval.
1554 const float EstWeight = normalizeSpillWeight(blockFreq * (NewGaps + 1),
1555 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1556 (LiveBefore + LiveAfter)*SlotIndex::InstrDist);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001557 // Would this split be possible to allocate?
1558 // Never allocate all gaps, we wouldn't be making progress.
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001559 DEBUG(dbgs() << " w=" << EstWeight);
1560 if (EstWeight * Hysteresis >= MaxGap) {
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001561 Shrink = false;
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001562 float Diff = EstWeight - MaxGap;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001563 if (Diff > BestDiff) {
1564 DEBUG(dbgs() << " (best)");
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001565 BestDiff = Hysteresis * Diff;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001566 BestBefore = SplitBefore;
1567 BestAfter = SplitAfter;
1568 }
1569 }
1570 }
1571
1572 // Try to shrink.
1573 if (Shrink) {
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001574 if (++SplitBefore < SplitAfter) {
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001575 DEBUG(dbgs() << " shrink\n");
1576 // Recompute the max when necessary.
1577 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1578 MaxGap = GapWeight[SplitBefore];
1579 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1580 MaxGap = std::max(MaxGap, GapWeight[i]);
1581 }
1582 continue;
1583 }
1584 MaxGap = 0;
1585 }
1586
1587 // Try to extend the interval.
1588 if (SplitAfter >= NumGaps) {
1589 DEBUG(dbgs() << " end\n");
1590 break;
1591 }
1592
1593 DEBUG(dbgs() << " extend\n");
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001594 MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001595 }
1596 }
1597
1598 // Didn't find any candidates?
1599 if (BestBefore == NumGaps)
1600 return 0;
1601
1602 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1603 << '-' << Uses[BestAfter] << ", " << BestDiff
1604 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1605
Jakob Stoklund Olesen20942dc2012-05-19 05:25:46 +00001606 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001607 SE->reset(LREdit);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001608
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001609 SE->openIntv();
1610 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1611 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1612 SE->useIntv(SegStart, SegStop);
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001613 SmallVector<unsigned, 8> IntvMap;
1614 SE->finish(&IntvMap);
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001615 DebugVars->splitRegister(VirtReg.reg, LREdit.regs());
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001616
1617 // If the new range has the same number of instructions as before, mark it as
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001618 // RS_Split2 so the next split will be forced to make progress. Otherwise,
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001619 // leave the new intervals as RS_New so they can compete.
1620 bool LiveBefore = BestBefore != 0 || BI.LiveIn;
1621 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut;
1622 unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter;
1623 if (NewGaps >= NumGaps) {
1624 DEBUG(dbgs() << "Tagging non-progress ranges: ");
1625 assert(!ProgressRequired && "Didn't make progress when it was required.");
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001626 for (unsigned i = 0, e = IntvMap.size(); i != e; ++i)
1627 if (IntvMap[i] == 1) {
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001628 setStage(*LREdit.get(i), RS_Split2);
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001629 DEBUG(dbgs() << PrintReg(LREdit.get(i)->reg));
1630 }
1631 DEBUG(dbgs() << '\n');
1632 }
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +00001633 ++NumLocalSplits;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001634
1635 return 0;
1636}
1637
1638//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001639// Live Range Splitting
1640//===----------------------------------------------------------------------===//
1641
1642/// trySplit - Try to split VirtReg or one of its interferences, making it
1643/// assignable.
1644/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1645unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
1646 SmallVectorImpl<LiveInterval*>&NewVRegs) {
Jakob Stoklund Olesenccfa4462011-08-05 23:50:33 +00001647 // Ranges must be Split2 or less.
1648 if (getStage(VirtReg) >= RS_Spill)
1649 return 0;
1650
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001651 // Local intervals are handled separately.
Jakob Stoklund Olesena2ebf602011-02-19 00:38:40 +00001652 if (LIS->intervalIsInOneMBB(VirtReg)) {
1653 NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001654 SA->analyze(&VirtReg);
Jakob Stoklund Olesend74d2842012-05-23 22:37:27 +00001655 unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs);
1656 if (PhysReg || !NewVRegs.empty())
1657 return PhysReg;
1658 return tryInstructionSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesena2ebf602011-02-19 00:38:40 +00001659 }
1660
1661 NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001662
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001663 SA->analyze(&VirtReg);
1664
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +00001665 // FIXME: SplitAnalysis may repair broken live ranges coming from the
1666 // coalescer. That may cause the range to become allocatable which means that
1667 // tryRegionSplit won't be making progress. This check should be replaced with
1668 // an assertion when the coalescer is fixed.
1669 if (SA->didRepairRange()) {
1670 // VirtReg has changed, so all cached queries are invalid.
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +00001671 Matrix->invalidateVirtRegs();
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +00001672 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1673 return PhysReg;
1674 }
1675
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001676 // First try to split around a region spanning multiple blocks. RS_Split2
1677 // ranges already made dubious progress with region splitting, so they go
1678 // straight to single block splitting.
1679 if (getStage(VirtReg) < RS_Split2) {
1680 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
1681 if (PhysReg || !NewVRegs.empty())
1682 return PhysReg;
1683 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001684
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001685 // Then isolate blocks.
1686 return tryBlockSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001687}
1688
1689
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001690//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001691// Main Entry Point
1692//===----------------------------------------------------------------------===//
1693
1694unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001695 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001696 // First try assigning a free register.
Jakob Stoklund Olesen5f2316a2011-06-03 20:34:53 +00001697 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo);
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +00001698 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1699 return PhysReg;
Andrew Trickb853e6c2010-12-09 18:15:21 +00001700
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +00001701 LiveRangeStage Stage = getStage(VirtReg);
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001702 DEBUG(dbgs() << StageName[Stage]
1703 << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n');
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +00001704
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001705 // Try to evict a less worthy live range, but only for ranges from the primary
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001706 // queue. The RS_Split ranges already failed to do this, and they should not
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001707 // get a second chance until they have been split.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001708 if (Stage != RS_Split)
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001709 if (unsigned PhysReg = tryEvict(VirtReg, Order, NewVRegs))
1710 return PhysReg;
Andrew Trickb853e6c2010-12-09 18:15:21 +00001711
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001712 assert(NewVRegs.empty() && "Cannot append to existing NewVRegs");
1713
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +00001714 // The first time we see a live range, don't try to split or spill.
1715 // Wait until the second time, when all smaller ranges have been allocated.
1716 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001717 if (Stage < RS_Split) {
1718 setStage(VirtReg, RS_Split);
Jakob Stoklund Olesenc1655e12011-03-19 23:02:47 +00001719 DEBUG(dbgs() << "wait for second round\n");
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +00001720 NewVRegs.push_back(&VirtReg);
1721 return 0;
1722 }
1723
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +00001724 // If we couldn't allocate a register from spilling, there is probably some
1725 // invalid inline assembly. The base class wil report it.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001726 if (Stage >= RS_Done || !VirtReg.isSpillable())
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +00001727 return ~0u;
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001728
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +00001729 // Try splitting VirtReg or interferences.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001730 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
1731 if (PhysReg || !NewVRegs.empty())
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +00001732 return PhysReg;
1733
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001734 // Finally spill VirtReg itself.
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001735 NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen20942dc2012-05-19 05:25:46 +00001736 LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +00001737 spiller().spill(LRE);
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001738 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001739
Jakob Stoklund Olesenc46570d2011-03-16 22:56:08 +00001740 if (VerifyEnabled)
1741 MF->verify(this, "After spilling");
1742
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001743 // The live virtual register requesting allocation was spilled, so tell
1744 // the caller not to allocate anything during this round.
1745 return 0;
1746}
1747
1748bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
1749 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
1750 << "********** Function: "
1751 << ((Value*)mf.getFunction())->getName() << '\n');
1752
1753 MF = &mf;
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +00001754 if (VerifyEnabled)
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +00001755 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +00001756
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +00001757 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +00001758 Matrix = &getAnalysis<LiveRegMatrix>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001759 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +00001760 DomTree = &getAnalysis<MachineDominatorTree>();
Jakob Stoklund Olesenf6dff842010-12-10 22:54:44 +00001761 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +00001762 Loops = &getAnalysis<MachineLoopInfo>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001763 Bundles = &getAnalysis<EdgeBundles>();
1764 SpillPlacer = &getAnalysis<SpillPlacement>();
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001765 DebugVars = &getAnalysis<LiveDebugVariables>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001766
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +00001767 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001768 SE.reset(new SplitEditor(*SA, *LIS, *VRM, *DomTree));
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001769 ExtraRegInfo.clear();
1770 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1771 NextCascade = 1;
Jakob Stoklund Olesen042888d2012-06-20 22:52:26 +00001772 IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI);
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001773 GlobalCand.resize(32); // This will grow as needed.
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +00001774
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001775 allocatePhysRegs();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001776 releaseMemory();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001777 return true;
1778}