blob: 7808552efcbd8fc660c6f9dc6e20c5a36643c684 [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 Olesencba2e062010-12-08 03:26:16 +000019#include "RegAllocBase.h"
20#include "Spiller.h"
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000021#include "SpillPlacement.h"
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +000022#include "SplitKit.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000023#include "VirtRegMap.h"
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000024#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000025#include "llvm/Analysis/AliasAnalysis.h"
26#include "llvm/Function.h"
27#include "llvm/PassAnalysisSupport.h"
28#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000029#include "llvm/CodeGen/EdgeBundles.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000030#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper789d5d82012-04-02 22:44:18 +000031#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000032#include "llvm/CodeGen/LiveStackAnalysis.h"
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +000033#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000034#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000035#include "llvm/CodeGen/MachineLoopInfo.h"
36#include "llvm/CodeGen/MachineRegisterInfo.h"
37#include "llvm/CodeGen/Passes.h"
38#include "llvm/CodeGen/RegAllocRegistry.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000039#include "llvm/Target/TargetOptions.h"
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +000040#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000041#include "llvm/Support/Debug.h"
42#include "llvm/Support/ErrorHandling.h"
43#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000044#include "llvm/Support/Timer.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000045
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000046#include <queue>
47
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000048using namespace llvm;
49
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000050STATISTIC(NumGlobalSplits, "Number of split global live ranges");
51STATISTIC(NumLocalSplits, "Number of split local live ranges");
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000052STATISTIC(NumEvicted, "Number of interferences evicted");
53
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +000054static cl::opt<SplitEditor::ComplementSpillMode>
55SplitSpillMode("split-spill-mode", cl::Hidden,
56 cl::desc("Spill mode for splitting live ranges"),
57 cl::values(clEnumValN(SplitEditor::SM_Partition, "default", "Default"),
58 clEnumValN(SplitEditor::SM_Size, "size", "Optimize for size"),
59 clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed"),
60 clEnumValEnd),
61 cl::init(SplitEditor::SM_Partition));
62
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000063static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
64 createGreedyRegisterAllocator);
65
66namespace {
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +000067class RAGreedy : public MachineFunctionPass,
68 public RegAllocBase,
69 private LiveRangeEdit::Delegate {
70
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000071 // context
72 MachineFunction *MF;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000073
74 // analyses
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000075 SlotIndexes *Indexes;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000076 LiveStacks *LS;
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 Olesene7c2c152012-02-09 18:25:05 +0000171 // Register mask interference. The current VirtReg is checked for register
172 // mask interference on entry to selectOrSplit(). If there is no
173 // interference, UsableRegs is left empty. If there is interference,
174 // UsableRegs has a bit mask of registers that can be used without register
175 // mask interference.
176 BitVector UsableRegs;
177
178 /// clobberedByRegMask - Returns true if PhysReg is not directly usable
179 /// because of register mask clobbers.
180 bool clobberedByRegMask(unsigned PhysReg) const {
181 return !UsableRegs.empty() && !UsableRegs.test(PhysReg);
182 }
183
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000184 // splitting state.
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000185 std::auto_ptr<SplitAnalysis> SA;
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000186 std::auto_ptr<SplitEditor> SE;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000187
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000188 /// Cached per-block interference maps
189 InterferenceCache IntfCache;
190
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000191 /// All basic blocks where the current register has uses.
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000192 SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000193
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000194 /// Global live range splitting candidate info.
195 struct GlobalSplitCandidate {
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000196 // Register intended for assignment, or 0.
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000197 unsigned PhysReg;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000198
199 // SplitKit interval index for this candidate.
200 unsigned IntvIdx;
201
202 // Interference for PhysReg.
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000203 InterferenceCache::Cursor Intf;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000204
205 // Bundles where this candidate should be live.
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000206 BitVector LiveBundles;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000207 SmallVector<unsigned, 8> ActiveBlocks;
208
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000209 void reset(InterferenceCache &Cache, unsigned Reg) {
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000210 PhysReg = Reg;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000211 IntvIdx = 0;
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000212 Intf.setPhysReg(Cache, Reg);
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000213 LiveBundles.clear();
214 ActiveBlocks.clear();
215 }
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000216
217 // Set B[i] = C for every live bundle where B[i] was NoCand.
218 unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) {
219 unsigned Count = 0;
220 for (int i = LiveBundles.find_first(); i >= 0;
221 i = LiveBundles.find_next(i))
222 if (B[i] == NoCand) {
223 B[i] = C;
224 Count++;
225 }
226 return Count;
227 }
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000228 };
229
230 /// Candidate info for for each PhysReg in AllocationOrder.
231 /// This vector never shrinks, but grows to the size of the largest register
232 /// class.
233 SmallVector<GlobalSplitCandidate, 32> GlobalCand;
234
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000235 enum { NoCand = ~0u };
236
237 /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to
238 /// NoCand which indicates the stack interval.
239 SmallVector<unsigned, 32> BundleCand;
240
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000241public:
242 RAGreedy();
243
244 /// Return the pass name.
245 virtual const char* getPassName() const {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000246 return "Greedy Register Allocator";
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000247 }
248
249 /// RAGreedy analysis usage.
250 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000251 virtual void releaseMemory();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000252 virtual Spiller &spiller() { return *SpillerInstance; }
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000253 virtual void enqueue(LiveInterval *LI);
254 virtual LiveInterval *dequeue();
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000255 virtual unsigned selectOrSplit(LiveInterval&,
256 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000257
258 /// Perform register allocation.
259 virtual bool runOnMachineFunction(MachineFunction &mf);
260
261 static char ID;
Andrew Trickb853e6c2010-12-09 18:15:21 +0000262
263private:
Jakob Stoklund Olesen7792e982011-03-13 01:23:11 +0000264 bool LRE_CanEraseVirtReg(unsigned);
Jakob Stoklund Olesen1d5b8452011-03-16 22:56:16 +0000265 void LRE_WillShrinkVirtReg(unsigned);
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000266 void LRE_DidCloneVirtReg(unsigned, unsigned);
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +0000267
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000268 float calcSpillCost();
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000269 bool addSplitConstraints(InterferenceCache::Cursor, float&);
270 void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>);
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000271 void growRegion(GlobalSplitCandidate &Cand);
272 float calcGlobalSplitCost(GlobalSplitCandidate&);
Jakob Stoklund Olesen87972fa2011-07-23 03:41:57 +0000273 bool calcCompactRegion(GlobalSplitCandidate&);
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000274 void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000275 void calcGapWeights(unsigned, SmallVectorImpl<float>&);
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000276 bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool);
277 bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&);
278 void evictInterference(LiveInterval&, unsigned,
279 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +0000280
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000281 unsigned tryAssign(LiveInterval&, AllocationOrder&,
282 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000283 unsigned tryEvict(LiveInterval&, AllocationOrder&,
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000284 SmallVectorImpl<LiveInterval*>&, unsigned = ~0u);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000285 unsigned tryRegionSplit(LiveInterval&, AllocationOrder&,
286 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +0000287 unsigned tryBlockSplit(LiveInterval&, AllocationOrder&,
288 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesend74d2842012-05-23 22:37:27 +0000289 unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&,
290 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000291 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
292 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +0000293 unsigned trySplit(LiveInterval&, AllocationOrder&,
294 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000295};
296} // end anonymous namespace
297
298char RAGreedy::ID = 0;
299
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000300#ifndef NDEBUG
301const char *const RAGreedy::StageName[] = {
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000302 "RS_New",
303 "RS_Assign",
304 "RS_Split",
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +0000305 "RS_Split2",
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000306 "RS_Spill",
307 "RS_Done"
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000308};
309#endif
310
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000311// Hysteresis to use when comparing floats.
312// This helps stabilize decisions based on float comparisons.
313const float Hysteresis = 0.98f;
314
315
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000316FunctionPass* llvm::createGreedyRegisterAllocator() {
317 return new RAGreedy();
318}
319
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000320RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000321 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000322 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000323 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
324 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Rafael Espindola5b220212011-06-26 22:34:10 +0000325 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Trick42b7a712012-01-17 06:55:03 +0000326 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000327 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
328 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
329 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
330 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
331 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000332 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
333 initializeSpillPlacementPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000334}
335
336void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
337 AU.setPreservesCFG();
338 AU.addRequired<AliasAnalysis>();
339 AU.addPreserved<AliasAnalysis>();
340 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000341 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000342 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000343 AU.addRequired<LiveDebugVariables>();
344 AU.addPreserved<LiveDebugVariables>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000345 AU.addRequired<CalculateSpillWeights>();
346 AU.addRequired<LiveStacks>();
347 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +0000348 AU.addRequired<MachineDominatorTree>();
349 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000350 AU.addRequired<MachineLoopInfo>();
351 AU.addPreserved<MachineLoopInfo>();
352 AU.addRequired<VirtRegMap>();
353 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000354 AU.addRequired<EdgeBundles>();
355 AU.addRequired<SpillPlacement>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000356 MachineFunctionPass::getAnalysisUsage(AU);
357}
358
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +0000359
360//===----------------------------------------------------------------------===//
361// LiveRangeEdit delegate methods
362//===----------------------------------------------------------------------===//
363
Jakob Stoklund Olesen7792e982011-03-13 01:23:11 +0000364bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) {
365 if (unsigned PhysReg = VRM->getPhys(VirtReg)) {
366 unassign(LIS->getInterval(VirtReg), PhysReg);
367 return true;
368 }
369 // Unassigned virtreg is probably in the priority queue.
370 // RegAllocBase will erase it after dequeueing.
371 return false;
372}
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +0000373
Jakob Stoklund Olesen1d5b8452011-03-16 22:56:16 +0000374void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) {
375 unsigned PhysReg = VRM->getPhys(VirtReg);
376 if (!PhysReg)
377 return;
378
379 // Register is assigned, put it back on the queue for reassignment.
380 LiveInterval &LI = LIS->getInterval(VirtReg);
381 unassign(LI, PhysReg);
382 enqueue(&LI);
383}
384
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000385void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
Jakob Stoklund Olesen0d4fea72011-09-14 17:34:37 +0000386 // Cloning a register we haven't even heard about yet? Just ignore it.
387 if (!ExtraRegInfo.inBounds(Old))
388 return;
389
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000390 // LRE may clone a virtual register because dead code elimination causes it to
Jakob Stoklund Olesen165e2312011-07-26 00:54:56 +0000391 // be split into connected components. The new components are much smaller
392 // than the original, so they should get a new chance at being assigned.
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000393 // same stage as the parent.
Jakob Stoklund Olesen165e2312011-07-26 00:54:56 +0000394 ExtraRegInfo[Old].Stage = RS_Assign;
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000395 ExtraRegInfo.grow(New);
396 ExtraRegInfo[New] = ExtraRegInfo[Old];
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000397}
398
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000399void RAGreedy::releaseMemory() {
400 SpillerInstance.reset(0);
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000401 ExtraRegInfo.clear();
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000402 GlobalCand.clear();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000403 RegAllocBase::releaseMemory();
404}
405
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000406void RAGreedy::enqueue(LiveInterval *LI) {
407 // Prioritize live ranges by size, assigning larger ranges first.
408 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000409 const unsigned Size = LI->getSize();
410 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000411 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
412 "Can only enqueue virtual registers");
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000413 unsigned Prio;
Jakob Stoklund Olesen90c1d7d2010-12-08 22:57:16 +0000414
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000415 ExtraRegInfo.grow(Reg);
416 if (ExtraRegInfo[Reg].Stage == RS_New)
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000417 ExtraRegInfo[Reg].Stage = RS_Assign;
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000418
Jakob Stoklund Olesencc07e042011-07-28 20:48:23 +0000419 if (ExtraRegInfo[Reg].Stage == RS_Split) {
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +0000420 // Unsplit ranges that couldn't be allocated immediately are deferred until
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +0000421 // everything else has been allocated.
422 Prio = Size;
Jakob Stoklund Olesencc07e042011-07-28 20:48:23 +0000423 } else {
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +0000424 // Everything is allocated in long->short order. Long ranges that don't fit
425 // should be spilled (or split) ASAP so they don't create interference.
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000426 Prio = (1u << 31) + Size;
Jakob Stoklund Olesend2a50732011-02-23 00:56:56 +0000427
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +0000428 // Boost ranges that have a physical register hint.
429 if (TargetRegisterInfo::isPhysicalRegister(VRM->getRegAllocPref(Reg)))
430 Prio |= (1u << 30);
431 }
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000432
Jakob Stoklund Olesene3b23cd2012-04-02 22:30:39 +0000433 Queue.push(std::make_pair(Prio, ~Reg));
Jakob Stoklund Olesen90c1d7d2010-12-08 22:57:16 +0000434}
435
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000436LiveInterval *RAGreedy::dequeue() {
437 if (Queue.empty())
438 return 0;
Jakob Stoklund Olesene3b23cd2012-04-02 22:30:39 +0000439 LiveInterval *LI = &LIS->getInterval(~Queue.top().second);
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000440 Queue.pop();
441 return LI;
442}
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000443
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000444
445//===----------------------------------------------------------------------===//
446// Direct Assignment
447//===----------------------------------------------------------------------===//
448
449/// tryAssign - Try to assign VirtReg to an available register.
450unsigned RAGreedy::tryAssign(LiveInterval &VirtReg,
451 AllocationOrder &Order,
452 SmallVectorImpl<LiveInterval*> &NewVRegs) {
453 Order.rewind();
454 unsigned PhysReg;
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +0000455 while ((PhysReg = Order.next())) {
456 if (clobberedByRegMask(PhysReg))
457 continue;
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000458 if (!checkPhysRegInterference(VirtReg, PhysReg))
459 break;
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +0000460 }
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000461 if (!PhysReg || Order.isHint(PhysReg))
462 return PhysReg;
463
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000464 // PhysReg is available, but there may be a better choice.
465
466 // If we missed a simple hint, try to cheaply evict interference from the
467 // preferred register.
468 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg))
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +0000469 if (Order.isHint(Hint) && !clobberedByRegMask(Hint)) {
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000470 DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n');
471 EvictionCost MaxCost(1);
472 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
473 evictInterference(VirtReg, Hint, NewVRegs);
474 return Hint;
475 }
476 }
477
478 // Try to evict interference from a cheaper alternative.
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000479 unsigned Cost = TRI->getCostPerUse(PhysReg);
480
481 // Most registers have 0 additional cost.
482 if (!Cost)
483 return PhysReg;
484
485 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost
486 << '\n');
487 unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost);
488 return CheapReg ? CheapReg : PhysReg;
489}
490
491
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000492//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000493// Interference eviction
494//===----------------------------------------------------------------------===//
495
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000496/// shouldEvict - determine if A should evict the assigned live range B. The
497/// eviction policy defined by this function together with the allocation order
498/// defined by enqueue() decides which registers ultimately end up being split
499/// and spilled.
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000500///
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000501/// Cascade numbers are used to prevent infinite loops if this function is a
502/// cyclic relation.
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000503///
504/// @param A The live range to be assigned.
505/// @param IsHint True when A is about to be assigned to its preferred
506/// register.
507/// @param B The live range to be evicted.
508/// @param BreaksHint True when B is already assigned to its preferred register.
509bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint,
510 LiveInterval &B, bool BreaksHint) {
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +0000511 bool CanSplit = getStage(B) < RS_Spill;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000512
513 // Be fairly aggressive about following hints as long as the evictee can be
514 // split.
515 if (CanSplit && IsHint && !BreaksHint)
516 return true;
517
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000518 return A.weight > B.weight;
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000519}
520
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000521/// canEvictInterference - Return true if all interferences between VirtReg and
522/// PhysReg can be evicted. When OnlyCheap is set, don't do anything
523///
524/// @param VirtReg Live range that is about to be assigned.
525/// @param PhysReg Desired register for assignment.
526/// @prarm IsHint True when PhysReg is VirtReg's preferred register.
527/// @param MaxCost Only look for cheaper candidates and update with new cost
528/// when returning true.
529/// @returns True when interference can be evicted cheaper than MaxCost.
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000530bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000531 bool IsHint, EvictionCost &MaxCost) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000532 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
533 // involved in an eviction before. If a cascade number was assigned, deny
534 // evicting anything with the same or a newer cascade number. This prevents
535 // infinite eviction loops.
536 //
537 // This works out so a register without a cascade number is allowed to evict
538 // anything, and it can be evicted by anything.
539 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
540 if (!Cascade)
541 Cascade = NextCascade;
542
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000543 EvictionCost Cost;
Craig Toppere4fd9072012-03-04 10:43:23 +0000544 for (const uint16_t *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000545 LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI);
Jakob Stoklund Olesen3f5bedf2011-04-11 21:47:01 +0000546 // If there is 10 or more interferences, chances are one is heavier.
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000547 if (Q.collectInterferingVRegs(10) >= 10)
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000548 return false;
549
Jakob Stoklund Olesen3f5bedf2011-04-11 21:47:01 +0000550 // Check if any interfering live range is heavier than MaxWeight.
551 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
552 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000553 if (TargetRegisterInfo::isPhysicalRegister(Intf->reg))
554 return false;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000555 // Never evict spill products. They cannot split or spill.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000556 if (getStage(*Intf) == RS_Done)
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000557 return false;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000558 // Once a live range becomes small enough, it is urgent that we find a
559 // register for it. This is indicated by an infinite spill weight. These
560 // urgent live ranges get to evict almost anything.
561 bool Urgent = !VirtReg.isSpillable() && Intf->isSpillable();
562 // Only evict older cascades or live ranges without a cascade.
563 unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade;
564 if (Cascade <= IntfCascade) {
565 if (!Urgent)
566 return false;
567 // We permit breaking cascades for urgent evictions. It should be the
568 // last resort, though, so make it really expensive.
569 Cost.BrokenHints += 10;
570 }
571 // Would this break a satisfied hint?
572 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg);
573 // Update eviction cost.
574 Cost.BrokenHints += BreaksHint;
575 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
576 // Abort if this would be too expensive.
577 if (!(Cost < MaxCost))
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000578 return false;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000579 // Finally, apply the eviction policy for non-urgent evictions.
580 if (!Urgent && !shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
Jakob Stoklund Olesend2056e52011-05-31 21:02:44 +0000581 return false;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000582 }
583 }
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000584 MaxCost = Cost;
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000585 return true;
586}
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000587
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000588/// evictInterference - Evict any interferring registers that prevent VirtReg
589/// from being assigned to Physreg. This assumes that canEvictInterference
590/// returned true.
591void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg,
592 SmallVectorImpl<LiveInterval*> &NewVRegs) {
593 // Make sure that VirtReg has a cascade number, and assign that cascade
594 // number to every evicted register. These live ranges than then only be
595 // evicted by a newer cascade, preventing infinite loops.
596 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
597 if (!Cascade)
598 Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++;
599
600 DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI)
601 << " interference: Cascade " << Cascade << '\n');
Craig Toppere4fd9072012-03-04 10:43:23 +0000602 for (const uint16_t *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000603 LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI);
604 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
605 for (unsigned i = 0, e = Q.interferingVRegs().size(); i != e; ++i) {
606 LiveInterval *Intf = Q.interferingVRegs()[i];
607 unassign(*Intf, VRM->getPhys(Intf->reg));
608 assert((ExtraRegInfo[Intf->reg].Cascade < Cascade ||
609 VirtReg.isSpillable() < Intf->isSpillable()) &&
610 "Cannot decrease cascade number, illegal eviction");
611 ExtraRegInfo[Intf->reg].Cascade = Cascade;
612 ++NumEvicted;
613 NewVRegs.push_back(Intf);
614 }
615 }
616}
617
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000618/// tryEvict - Try to evict all interferences for a physreg.
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +0000619/// @param VirtReg Currently unassigned virtual register.
620/// @param Order Physregs to try.
621/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000622unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
623 AllocationOrder &Order,
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000624 SmallVectorImpl<LiveInterval*> &NewVRegs,
625 unsigned CostPerUseLimit) {
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000626 NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled);
627
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000628 // Keep track of the cheapest interference seen so far.
629 EvictionCost BestCost(~0u);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000630 unsigned BestPhys = 0;
631
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000632 // When we are just looking for a reduced cost per use, don't break any
633 // hints, and only evict smaller spill weights.
634 if (CostPerUseLimit < ~0u) {
635 BestCost.BrokenHints = 0;
636 BestCost.MaxWeight = VirtReg.weight;
637 }
638
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000639 Order.rewind();
640 while (unsigned PhysReg = Order.next()) {
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +0000641 if (clobberedByRegMask(PhysReg))
642 continue;
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000643 if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit)
644 continue;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000645 // The first use of a callee-saved register in a function has cost 1.
646 // Don't start using a CSR when the CostPerUseLimit is low.
647 if (CostPerUseLimit == 1)
648 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
649 if (!MRI->isPhysRegUsed(CSR)) {
650 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
651 << PrintReg(CSR, TRI) << '\n');
652 continue;
653 }
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000654
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000655 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000656 continue;
657
658 // Best so far.
659 BestPhys = PhysReg;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000660
Jakob Stoklund Olesen57f1e2c2011-02-25 01:04:22 +0000661 // Stop if the hint can be used.
662 if (Order.isHint(PhysReg))
663 break;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000664 }
665
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000666 if (!BestPhys)
667 return 0;
668
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000669 evictInterference(VirtReg, BestPhys, NewVRegs);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000670 return BestPhys;
Andrew Trickb853e6c2010-12-09 18:15:21 +0000671}
672
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000673
674//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000675// Region Splitting
676//===----------------------------------------------------------------------===//
677
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000678/// addSplitConstraints - Fill out the SplitConstraints vector based on the
679/// interference pattern in Physreg and its aliases. Add the constraints to
680/// SpillPlacement and return the static cost of this split in Cost, assuming
681/// that all preferences in SplitConstraints are met.
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000682/// Return false if there are no bundles with positive bias.
683bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf,
684 float &Cost) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000685 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000686
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000687 // Reset interference dependent info.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000688 SplitConstraints.resize(UseBlocks.size());
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000689 float StaticCost = 0;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000690 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
691 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000692 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000693
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000694 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000695 Intf.moveToBlock(BC.Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000696 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
697 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
Jakob Stoklund Olesen5ebca792011-08-02 23:04:06 +0000698 BC.ChangesValue = BI.FirstDef;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000699
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000700 if (!Intf.hasInterference())
701 continue;
702
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000703 // Number of spill code instructions to insert.
704 unsigned Ins = 0;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000705
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000706 // Interference for the live-in value.
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000707 if (BI.LiveIn) {
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000708 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000709 BC.Entry = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000710 else if (Intf.first() < BI.FirstInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000711 BC.Entry = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000712 else if (Intf.first() < BI.LastInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000713 ++Ins;
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000714 }
715
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000716 // Interference for the live-out value.
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000717 if (BI.LiveOut) {
Jakob Stoklund Olesen612f7802011-04-05 04:20:29 +0000718 if (Intf.last() >= SA->getLastSplitPoint(BC.Number))
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000719 BC.Exit = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000720 else if (Intf.last() > BI.LastInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000721 BC.Exit = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000722 else if (Intf.last() > BI.FirstInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000723 ++Ins;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000724 }
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000725
726 // Accumulate the total frequency of inserted spill code.
727 if (Ins)
728 StaticCost += Ins * SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000729 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000730 Cost = StaticCost;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000731
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000732 // Add constraints for use-blocks. Note that these are the only constraints
733 // that may add a positive bias, it is downhill from here.
734 SpillPlacer->addConstraints(SplitConstraints);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000735 return SpillPlacer->scanActiveBundles();
736}
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000737
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000738
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000739/// addThroughConstraints - Add constraints and links to SpillPlacer from the
740/// live-through blocks in Blocks.
741void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf,
742 ArrayRef<unsigned> Blocks) {
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000743 const unsigned GroupSize = 8;
744 SpillPlacement::BlockConstraint BCS[GroupSize];
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000745 unsigned TBS[GroupSize];
746 unsigned B = 0, T = 0;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000747
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000748 for (unsigned i = 0; i != Blocks.size(); ++i) {
749 unsigned Number = Blocks[i];
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000750 Intf.moveToBlock(Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000751
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000752 if (!Intf.hasInterference()) {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000753 assert(T < GroupSize && "Array overflow");
754 TBS[T] = Number;
755 if (++T == GroupSize) {
Frits van Bommel39b5abf2011-07-18 12:00:32 +0000756 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000757 T = 0;
758 }
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000759 continue;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000760 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000761
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000762 assert(B < GroupSize && "Array overflow");
763 BCS[B].Number = Number;
764
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000765 // Interference for the live-in value.
766 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
767 BCS[B].Entry = SpillPlacement::MustSpill;
768 else
769 BCS[B].Entry = SpillPlacement::PrefSpill;
770
771 // Interference for the live-out value.
772 if (Intf.last() >= SA->getLastSplitPoint(Number))
773 BCS[B].Exit = SpillPlacement::MustSpill;
774 else
775 BCS[B].Exit = SpillPlacement::PrefSpill;
776
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000777 if (++B == GroupSize) {
778 ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B);
779 SpillPlacer->addConstraints(Array);
780 B = 0;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000781 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000782 }
783
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000784 ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B);
785 SpillPlacer->addConstraints(Array);
Frits van Bommel39b5abf2011-07-18 12:00:32 +0000786 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000787}
788
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000789void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000790 // Keep track of through blocks that have not been added to SpillPlacer.
791 BitVector Todo = SA->getThroughBlocks();
792 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks;
793 unsigned AddedTo = 0;
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000794#ifndef NDEBUG
795 unsigned Visited = 0;
796#endif
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000797
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000798 for (;;) {
799 ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive();
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000800 // Find new through blocks in the periphery of PrefRegBundles.
801 for (int i = 0, e = NewBundles.size(); i != e; ++i) {
802 unsigned Bundle = NewBundles[i];
803 // Look at all blocks connected to Bundle in the full graph.
804 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
805 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
806 I != E; ++I) {
807 unsigned Block = *I;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000808 if (!Todo.test(Block))
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000809 continue;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000810 Todo.reset(Block);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000811 // This is a new through block. Add it to SpillPlacer later.
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000812 ActiveBlocks.push_back(Block);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000813#ifndef NDEBUG
814 ++Visited;
815#endif
816 }
817 }
818 // Any new blocks to add?
Jakob Stoklund Olesen54901972011-07-05 18:46:42 +0000819 if (ActiveBlocks.size() == AddedTo)
820 break;
Jakob Stoklund Olesenb4666362011-07-23 03:22:33 +0000821
822 // Compute through constraints from the interference, or assume that all
823 // through blocks prefer spilling when forming compact regions.
824 ArrayRef<unsigned> NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
825 if (Cand.PhysReg)
826 addThroughConstraints(Cand.Intf, NewBlocks);
827 else
Jakob Stoklund Olesenb87f91b2011-08-03 23:09:38 +0000828 // Provide a strong negative bias on through blocks to prevent unwanted
829 // liveness on loop backedges.
830 SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true);
Jakob Stoklund Olesen54901972011-07-05 18:46:42 +0000831 AddedTo = ActiveBlocks.size();
832
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000833 // Perhaps iterating can enable more bundles?
834 SpillPlacer->iterate();
835 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000836 DEBUG(dbgs() << ", v=" << Visited);
837}
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000838
Jakob Stoklund Olesen87972fa2011-07-23 03:41:57 +0000839/// calcCompactRegion - Compute the set of edge bundles that should be live
840/// when splitting the current live range into compact regions. Compact
841/// regions can be computed without looking at interference. They are the
842/// regions formed by removing all the live-through blocks from the live range.
843///
844/// Returns false if the current live range is already compact, or if the
845/// compact regions would form single block regions anyway.
846bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) {
847 // Without any through blocks, the live range is already compact.
848 if (!SA->getNumThroughBlocks())
849 return false;
850
851 // Compact regions don't correspond to any physreg.
852 Cand.reset(IntfCache, 0);
853
854 DEBUG(dbgs() << "Compact region bundles");
855
856 // Use the spill placer to determine the live bundles. GrowRegion pretends
857 // that all the through blocks have interference when PhysReg is unset.
858 SpillPlacer->prepare(Cand.LiveBundles);
859
860 // The static split cost will be zero since Cand.Intf reports no interference.
861 float Cost;
862 if (!addSplitConstraints(Cand.Intf, Cost)) {
863 DEBUG(dbgs() << ", none.\n");
864 return false;
865 }
866
867 growRegion(Cand);
868 SpillPlacer->finish();
869
870 if (!Cand.LiveBundles.any()) {
871 DEBUG(dbgs() << ", none.\n");
872 return false;
873 }
874
875 DEBUG({
876 for (int i = Cand.LiveBundles.find_first(); i>=0;
877 i = Cand.LiveBundles.find_next(i))
878 dbgs() << " EB#" << i;
879 dbgs() << ".\n";
880 });
881 return true;
882}
883
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000884/// calcSpillCost - Compute how expensive it would be to split the live range in
885/// SA around all use blocks instead of forming bundle regions.
886float RAGreedy::calcSpillCost() {
887 float Cost = 0;
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000888 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
889 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
890 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
891 unsigned Number = BI.MBB->getNumber();
892 // We normally only need one spill instruction - a load or a store.
893 Cost += SpillPlacer->getBlockFrequency(Number);
894
895 // Unless the value is redefined in the block.
Jakob Stoklund Olesen3f5beed2011-08-02 23:04:08 +0000896 if (BI.LiveIn && BI.LiveOut && BI.FirstDef)
897 Cost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000898 }
899 return Cost;
900}
901
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000902/// calcGlobalSplitCost - Return the global split cost of following the split
903/// pattern in LiveBundles. This cost should be added to the local cost of the
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000904/// interference pattern in SplitConstraints.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000905///
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000906float RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000907 float GlobalCost = 0;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000908 const BitVector &LiveBundles = Cand.LiveBundles;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000909 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
910 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
911 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000912 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +0000913 bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)];
914 bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)];
915 unsigned Ins = 0;
916
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000917 if (BI.LiveIn)
918 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
919 if (BI.LiveOut)
920 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +0000921 if (Ins)
922 GlobalCost += Ins * SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000923 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000924
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000925 for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) {
926 unsigned Number = Cand.ActiveBlocks[i];
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000927 bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)];
928 bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)];
Jakob Stoklund Olesen9a543522011-04-06 21:32:41 +0000929 if (!RegIn && !RegOut)
930 continue;
931 if (RegIn && RegOut) {
932 // We need double spill code if this block has interference.
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000933 Cand.Intf.moveToBlock(Number);
934 if (Cand.Intf.hasInterference())
Jakob Stoklund Olesen9a543522011-04-06 21:32:41 +0000935 GlobalCost += 2*SpillPlacer->getBlockFrequency(Number);
936 continue;
937 }
938 // live-in / stack-out or stack-in live-out.
939 GlobalCost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000940 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000941 return GlobalCost;
942}
943
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000944/// splitAroundRegion - Split the current live range around the regions
945/// determined by BundleCand and GlobalCand.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000946///
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000947/// Before calling this function, GlobalCand and BundleCand must be initialized
948/// so each bundle is assigned to a valid candidate, or NoCand for the
949/// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor
950/// objects must be initialized for the current live range, and intervals
951/// created for the used candidates.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000952///
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000953/// @param LREdit The LiveRangeEdit object handling the current split.
954/// @param UsedCands List of used GlobalCand entries. Every BundleCand value
955/// must appear in this list.
956void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit,
957 ArrayRef<unsigned> UsedCands) {
958 // These are the intervals created for new global ranges. We may create more
959 // intervals for local ranges.
960 const unsigned NumGlobalIntvs = LREdit.size();
961 DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n");
962 assert(NumGlobalIntvs && "No global intervals configured");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000963
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000964 // Isolate even single instructions when dealing with a proper sub-class.
Jakob Stoklund Olesen69145ba2011-08-06 18:20:24 +0000965 // That guarantees register class inflation for the stack interval because it
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000966 // is all copies.
967 unsigned Reg = SA->getParent().reg;
968 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
969
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000970 // First handle all the blocks with uses.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000971 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
972 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
973 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000974 unsigned Number = BI.MBB->getNumber();
975 unsigned IntvIn = 0, IntvOut = 0;
976 SlotIndex IntfIn, IntfOut;
977 if (BI.LiveIn) {
978 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
979 if (CandIn != NoCand) {
980 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
981 IntvIn = Cand.IntvIdx;
982 Cand.Intf.moveToBlock(Number);
983 IntfIn = Cand.Intf.first();
984 }
985 }
986 if (BI.LiveOut) {
987 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
988 if (CandOut != NoCand) {
989 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
990 IntvOut = Cand.IntvIdx;
991 Cand.Intf.moveToBlock(Number);
992 IntfOut = Cand.Intf.last();
993 }
994 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000995
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000996 // Create separate intervals for isolated blocks with multiple uses.
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000997 if (!IntvIn && !IntvOut) {
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000998 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n");
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000999 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +00001000 SE->splitSingleBlock(BI);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +00001001 continue;
1002 }
1003
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001004 if (IntvIn && IntvOut)
1005 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1006 else if (IntvIn)
1007 SE->splitRegInBlock(BI, IntvIn, IntfIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001008 else
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001009 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001010 }
1011
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001012 // Handle live-through blocks. The relevant live-through blocks are stored in
1013 // the ActiveBlocks list with each candidate. We need to filter out
1014 // duplicates.
1015 BitVector Todo = SA->getThroughBlocks();
1016 for (unsigned c = 0; c != UsedCands.size(); ++c) {
1017 ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks;
1018 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
1019 unsigned Number = Blocks[i];
1020 if (!Todo.test(Number))
1021 continue;
1022 Todo.reset(Number);
1023
1024 unsigned IntvIn = 0, IntvOut = 0;
1025 SlotIndex IntfIn, IntfOut;
1026
1027 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1028 if (CandIn != NoCand) {
1029 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1030 IntvIn = Cand.IntvIdx;
1031 Cand.Intf.moveToBlock(Number);
1032 IntfIn = Cand.Intf.first();
1033 }
1034
1035 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1036 if (CandOut != NoCand) {
1037 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1038 IntvOut = Cand.IntvIdx;
1039 Cand.Intf.moveToBlock(Number);
1040 IntfOut = Cand.Intf.last();
1041 }
1042 if (!IntvIn && !IntvOut)
1043 continue;
1044 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1045 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001046 }
1047
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +00001048 ++NumGlobalSplits;
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001049
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001050 SmallVector<unsigned, 8> IntvMap;
1051 SE->finish(&IntvMap);
Jakob Stoklund Olesen1f880422011-08-05 23:10:40 +00001052 DebugVars->splitRegister(Reg, LREdit.regs());
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001053
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001054 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +00001055 unsigned OrigBlocks = SA->getNumLiveBlocks();
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001056
1057 // Sort out the new intervals created by splitting. We get four kinds:
1058 // - Remainder intervals should not be split again.
1059 // - Candidate intervals can be assigned to Cand.PhysReg.
1060 // - Block-local splits are candidates for local splitting.
1061 // - DCE leftovers should go back on the queue.
1062 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001063 LiveInterval &Reg = *LREdit.get(i);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001064
1065 // Ignore old intervals from DCE.
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001066 if (getStage(Reg) != RS_New)
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001067 continue;
1068
1069 // Remainder interval. Don't try splitting again, spill if it doesn't
1070 // allocate.
1071 if (IntvMap[i] == 0) {
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001072 setStage(Reg, RS_Spill);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001073 continue;
1074 }
1075
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001076 // Global intervals. Allow repeated splitting as long as the number of live
1077 // blocks is strictly decreasing.
1078 if (IntvMap[i] < NumGlobalIntvs) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001079 if (SA->countLiveBlocks(&Reg) >= OrigBlocks) {
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +00001080 DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks
1081 << " blocks as original.\n");
1082 // Don't allow repeated splitting as a safe guard against looping.
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001083 setStage(Reg, RS_Split2);
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +00001084 }
1085 continue;
1086 }
1087
1088 // Other intervals are treated as new. This includes local intervals created
1089 // for blocks with multiple uses, and anything created by DCE.
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001090 }
1091
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +00001092 if (VerifyEnabled)
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001093 MF->verify(this, "After splitting live range around region");
1094}
1095
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001096unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1097 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001098 unsigned NumCands = 0;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001099 unsigned BestCand = NoCand;
1100 float BestCost;
1101 SmallVector<unsigned, 8> UsedCands;
1102
1103 // Check if we can split this live range around a compact region.
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +00001104 bool HasCompact = calcCompactRegion(GlobalCand.front());
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001105 if (HasCompact) {
1106 // Yes, keep GlobalCand[0] as the compact region candidate.
1107 NumCands = 1;
1108 BestCost = HUGE_VALF;
1109 } else {
1110 // No benefit from the compact region, our fallback will be per-block
1111 // splitting. Make sure we find a solution that is cheaper than spilling.
1112 BestCost = Hysteresis * calcSpillCost();
1113 DEBUG(dbgs() << "Cost of isolating all blocks = " << BestCost << '\n');
1114 }
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +00001115
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001116 Order.rewind();
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001117 while (unsigned PhysReg = Order.next()) {
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001118 // Discard bad candidates before we run out of interference cache cursors.
1119 // This will only affect register classes with a lot of registers (>32).
1120 if (NumCands == IntfCache.getMaxCursors()) {
1121 unsigned WorstCount = ~0u;
1122 unsigned Worst = 0;
1123 for (unsigned i = 0; i != NumCands; ++i) {
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001124 if (i == BestCand || !GlobalCand[i].PhysReg)
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001125 continue;
1126 unsigned Count = GlobalCand[i].LiveBundles.count();
1127 if (Count < WorstCount)
1128 Worst = i, WorstCount = Count;
1129 }
1130 --NumCands;
1131 GlobalCand[Worst] = GlobalCand[NumCands];
Jakob Stoklund Olesen7bdf0062011-11-01 00:02:31 +00001132 if (BestCand == NumCands)
1133 BestCand = Worst;
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001134 }
1135
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001136 if (GlobalCand.size() <= NumCands)
1137 GlobalCand.resize(NumCands+1);
1138 GlobalSplitCandidate &Cand = GlobalCand[NumCands];
1139 Cand.reset(IntfCache, PhysReg);
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +00001140
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001141 SpillPlacer->prepare(Cand.LiveBundles);
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +00001142 float Cost;
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001143 if (!addSplitConstraints(Cand.Intf, Cost)) {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +00001144 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n");
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +00001145 continue;
1146 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +00001147 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = " << Cost);
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001148 if (Cost >= BestCost) {
1149 DEBUG({
1150 if (BestCand == NoCand)
1151 dbgs() << " worse than no bundles\n";
1152 else
1153 dbgs() << " worse than "
1154 << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n';
1155 });
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001156 continue;
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001157 }
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001158 growRegion(Cand);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001159
Jakob Stoklund Olesen9efa2a22011-04-06 19:13:57 +00001160 SpillPlacer->finish();
1161
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001162 // No live bundles, defer to splitSingleBlocks().
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001163 if (!Cand.LiveBundles.any()) {
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001164 DEBUG(dbgs() << " no bundles.\n");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001165 continue;
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001166 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001167
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001168 Cost += calcGlobalSplitCost(Cand);
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001169 DEBUG({
1170 dbgs() << ", total = " << Cost << " with bundles";
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001171 for (int i = Cand.LiveBundles.find_first(); i>=0;
1172 i = Cand.LiveBundles.find_next(i))
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001173 dbgs() << " EB#" << i;
1174 dbgs() << ".\n";
1175 });
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001176 if (Cost < BestCost) {
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001177 BestCand = NumCands;
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001178 BestCost = Hysteresis * Cost; // Prevent rounding effects.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001179 }
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001180 ++NumCands;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001181 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001182
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001183 // No solutions found, fall back to single block splitting.
1184 if (!HasCompact && BestCand == NoCand)
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001185 return 0;
1186
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001187 // Prepare split editor.
Jakob Stoklund Olesen20942dc2012-05-19 05:25:46 +00001188 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +00001189 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001190
1191 // Assign all edge bundles to the preferred candidate, or NoCand.
1192 BundleCand.assign(Bundles->getNumBundles(), NoCand);
1193
1194 // Assign bundles for the best candidate region.
1195 if (BestCand != NoCand) {
1196 GlobalSplitCandidate &Cand = GlobalCand[BestCand];
1197 if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
1198 UsedCands.push_back(BestCand);
1199 Cand.IntvIdx = SE->openIntv();
1200 DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in "
1201 << B << " bundles, intv " << Cand.IntvIdx << ".\n");
Chandler Carruth32668ea2011-08-03 23:07:27 +00001202 (void)B;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001203 }
1204 }
1205
1206 // Assign bundles for the compact region.
1207 if (HasCompact) {
1208 GlobalSplitCandidate &Cand = GlobalCand.front();
1209 assert(!Cand.PhysReg && "Compact region has no physreg");
1210 if (unsigned B = Cand.getBundles(BundleCand, 0)) {
1211 UsedCands.push_back(0);
1212 Cand.IntvIdx = SE->openIntv();
1213 DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv "
1214 << Cand.IntvIdx << ".\n");
Chandler Carruth32668ea2011-08-03 23:07:27 +00001215 (void)B;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001216 }
1217 }
1218
1219 splitAroundRegion(LREdit, UsedCands);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001220 return 0;
1221}
1222
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001223
1224//===----------------------------------------------------------------------===//
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001225// Per-Block Splitting
1226//===----------------------------------------------------------------------===//
1227
1228/// tryBlockSplit - Split a global live range around every block with uses. This
1229/// creates a lot of local live ranges, that will be split by tryLocalSplit if
1230/// they don't allocate.
1231unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1232 SmallVectorImpl<LiveInterval*> &NewVRegs) {
1233 assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed");
1234 unsigned Reg = VirtReg.reg;
1235 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
Jakob Stoklund Olesen20942dc2012-05-19 05:25:46 +00001236 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +00001237 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001238 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1239 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1240 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1241 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
1242 SE->splitSingleBlock(BI);
1243 }
1244 // No blocks were split.
1245 if (LREdit.empty())
1246 return 0;
1247
1248 // We did split for some blocks.
Jakob Stoklund Olesena9c41d32011-08-05 23:50:31 +00001249 SmallVector<unsigned, 8> IntvMap;
1250 SE->finish(&IntvMap);
Jakob Stoklund Olesen1f880422011-08-05 23:10:40 +00001251
1252 // Tell LiveDebugVariables about the new ranges.
1253 DebugVars->splitRegister(Reg, LREdit.regs());
1254
Jakob Stoklund Olesena9c41d32011-08-05 23:50:31 +00001255 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1256
1257 // Sort out the new intervals created by splitting. The remainder interval
1258 // goes straight to spilling, the new local ranges get to stay RS_New.
1259 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
1260 LiveInterval &LI = *LREdit.get(i);
1261 if (getStage(LI) == RS_New && IntvMap[i] == 0)
1262 setStage(LI, RS_Spill);
1263 }
1264
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001265 if (VerifyEnabled)
1266 MF->verify(this, "After splitting live range around basic blocks");
1267 return 0;
1268}
1269
Jakob Stoklund Olesend74d2842012-05-23 22:37:27 +00001270
1271//===----------------------------------------------------------------------===//
1272// Per-Instruction Splitting
1273//===----------------------------------------------------------------------===//
1274
1275/// tryInstructionSplit - Split a live range around individual instructions.
1276/// This is normally not worthwhile since the spiller is doing essentially the
1277/// same thing. However, when the live range is in a constrained register
1278/// class, it may help to insert copies such that parts of the live range can
1279/// be moved to a larger register class.
1280///
1281/// This is similar to spilling to a larger register class.
1282unsigned
1283RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1284 SmallVectorImpl<LiveInterval*> &NewVRegs) {
1285 // There is no point to this if there are no larger sub-classes.
1286 if (!RegClassInfo.isProperSubClass(MRI->getRegClass(VirtReg.reg)))
1287 return 0;
1288
1289 // Always enable split spill mode, since we're effectively spilling to a
1290 // register.
1291 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
1292 SE->reset(LREdit, SplitEditor::SM_Size);
1293
1294 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
1295 if (Uses.size() <= 1)
1296 return 0;
1297
1298 DEBUG(dbgs() << "Split around " << Uses.size() << " individual instrs.\n");
1299
1300 // Split around every non-copy instruction.
1301 for (unsigned i = 0; i != Uses.size(); ++i) {
1302 if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]))
1303 if (MI->isFullCopy()) {
1304 DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI);
1305 continue;
1306 }
1307 SE->openIntv();
1308 SlotIndex SegStart = SE->enterIntvBefore(Uses[i]);
1309 SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]);
1310 SE->useIntv(SegStart, SegStop);
1311 }
1312
1313 if (LREdit.empty()) {
1314 DEBUG(dbgs() << "All uses were copies.\n");
1315 return 0;
1316 }
1317
1318 SmallVector<unsigned, 8> IntvMap;
1319 SE->finish(&IntvMap);
1320 DebugVars->splitRegister(VirtReg.reg, LREdit.regs());
1321 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1322
1323 // Assign all new registers to RS_Spill. This was the last chance.
1324 setStage(LREdit.begin(), LREdit.end(), RS_Spill);
1325 return 0;
1326}
1327
1328
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001329//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001330// Local Splitting
1331//===----------------------------------------------------------------------===//
1332
1333
1334/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
1335/// in order to use PhysReg between two entries in SA->UseSlots.
1336///
1337/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1338///
1339void RAGreedy::calcGapWeights(unsigned PhysReg,
1340 SmallVectorImpl<float> &GapWeight) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001341 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1342 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001343 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001344 const unsigned NumGaps = Uses.size()-1;
1345
1346 // Start and end points for the interference check.
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001347 SlotIndex StartIdx =
1348 BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr;
1349 SlotIndex StopIdx =
1350 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001351
1352 GapWeight.assign(NumGaps, 0.0f);
1353
1354 // Add interference from each overlapping register.
Craig Toppere4fd9072012-03-04 10:43:23 +00001355 for (const uint16_t *AI = TRI->getOverlaps(PhysReg); *AI; ++AI) {
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001356 if (!query(const_cast<LiveInterval&>(SA->getParent()), *AI)
1357 .checkInterference())
1358 continue;
1359
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001360 // We know that VirtReg is a continuous interval from FirstInstr to
1361 // LastInstr, so we don't need InterferenceQuery.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001362 //
1363 // Interference that overlaps an instruction is counted in both gaps
1364 // surrounding the instruction. The exception is interference before
1365 // StartIdx and after StopIdx.
1366 //
Jakob Stoklund Olesen93841112012-01-11 23:19:08 +00001367 LiveIntervalUnion::SegmentIter IntI = getLiveUnion(*AI).find(StartIdx);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001368 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
1369 // Skip the gaps before IntI.
1370 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
1371 if (++Gap == NumGaps)
1372 break;
1373 if (Gap == NumGaps)
1374 break;
1375
1376 // Update the gaps covered by IntI.
1377 const float weight = IntI.value()->weight;
1378 for (; Gap != NumGaps; ++Gap) {
1379 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1380 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1381 break;
1382 }
1383 if (Gap == NumGaps)
1384 break;
1385 }
1386 }
1387}
1388
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001389/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1390/// basic block.
1391///
1392unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1393 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001394 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1395 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001396
1397 // Note that it is possible to have an interval that is live-in or live-out
1398 // while only covering a single block - A phi-def can use undef values from
1399 // predecessors, and the block could be a single-block loop.
1400 // We don't bother doing anything clever about such a case, we simply assume
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001401 // that the interval is continuous from FirstInstr to LastInstr. We should
1402 // make sure that we don't do anything illegal to such an interval, though.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001403
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001404 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001405 if (Uses.size() <= 2)
1406 return 0;
1407 const unsigned NumGaps = Uses.size()-1;
1408
1409 DEBUG({
1410 dbgs() << "tryLocalSplit: ";
1411 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001412 dbgs() << ' ' << Uses[i];
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001413 dbgs() << '\n';
1414 });
1415
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001416 // If VirtReg is live across any register mask operands, compute a list of
1417 // gaps with register masks.
1418 SmallVector<unsigned, 8> RegMaskGaps;
1419 if (!UsableRegs.empty()) {
1420 // Get regmask slots for the whole block.
1421 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001422 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001423 // Constrain to VirtReg's live range.
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001424 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1425 Uses.front().getRegSlot()) - RMS.begin();
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001426 unsigned re = RMS.size();
1427 for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001428 // Look for Uses[i] <= RMS <= Uses[i+1].
1429 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1430 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001431 continue;
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001432 // Skip a regmask on the same instruction as the last use. It doesn't
1433 // overlap the live range.
1434 if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps)
1435 break;
1436 DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]);
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001437 RegMaskGaps.push_back(i);
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001438 // Advance ri to the next gap. A regmask on one of the uses counts in
1439 // both gaps.
1440 while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1]))
1441 ++ri;
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001442 }
Jakob Stoklund Olesencac5fa32012-02-14 23:51:27 +00001443 DEBUG(dbgs() << '\n');
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001444 }
1445
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001446 // Since we allow local split results to be split again, there is a risk of
1447 // creating infinite loops. It is tempting to require that the new live
1448 // ranges have less instructions than the original. That would guarantee
1449 // convergence, but it is too strict. A live range with 3 instructions can be
1450 // split 2+3 (including the COPY), and we want to allow that.
1451 //
1452 // Instead we use these rules:
1453 //
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001454 // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001455 // noop split, of course).
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001456 // 2. Require progress be made for ranges with getStage() == RS_Split2. All
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001457 // the new ranges must have fewer instructions than before the split.
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001458 // 3. New ranges with the same number of instructions are marked RS_Split2,
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001459 // smaller ranges are marked RS_New.
1460 //
1461 // These rules allow a 3 -> 2+3 split once, which we need. They also prevent
1462 // excessive splitting and infinite loops.
1463 //
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001464 bool ProgressRequired = getStage(VirtReg) >= RS_Split2;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001465
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001466 // Best split candidate.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001467 unsigned BestBefore = NumGaps;
1468 unsigned BestAfter = 0;
1469 float BestDiff = 0;
1470
Jakob Stoklund Olesen40a42a22011-03-04 00:58:40 +00001471 const float blockFreq = SpillPlacer->getBlockFrequency(BI.MBB->getNumber());
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001472 SmallVector<float, 8> GapWeight;
1473
1474 Order.rewind();
1475 while (unsigned PhysReg = Order.next()) {
1476 // Keep track of the largest spill weight that would need to be evicted in
1477 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1478 calcGapWeights(PhysReg, GapWeight);
1479
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001480 // Remove any gaps with regmask clobbers.
1481 if (clobberedByRegMask(PhysReg))
1482 for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i)
1483 GapWeight[RegMaskGaps[i]] = HUGE_VALF;
1484
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001485 // Try to find the best sequence of gaps to close.
1486 // The new spill weight must be larger than any gap interference.
1487
1488 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001489 unsigned SplitBefore = 0, SplitAfter = 1;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001490
1491 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1492 // It is the spill weight that needs to be evicted.
1493 float MaxGap = GapWeight[0];
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001494
1495 for (;;) {
1496 // Live before/after split?
1497 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1498 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1499
1500 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1501 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1502 << " i=" << MaxGap);
1503
1504 // Stop before the interval gets so big we wouldn't be making progress.
1505 if (!LiveBefore && !LiveAfter) {
1506 DEBUG(dbgs() << " all\n");
1507 break;
1508 }
1509 // Should the interval be extended or shrunk?
1510 bool Shrink = true;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001511
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001512 // How many gaps would the new range have?
1513 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1514
1515 // Legally, without causing looping?
1516 bool Legal = !ProgressRequired || NewGaps < NumGaps;
1517
1518 if (Legal && MaxGap < HUGE_VALF) {
1519 // Estimate the new spill weight. Each instruction reads or writes the
1520 // register. Conservatively assume there are no read-modify-write
1521 // instructions.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001522 //
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001523 // Try to guess the size of the new interval.
1524 const float EstWeight = normalizeSpillWeight(blockFreq * (NewGaps + 1),
1525 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1526 (LiveBefore + LiveAfter)*SlotIndex::InstrDist);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001527 // Would this split be possible to allocate?
1528 // Never allocate all gaps, we wouldn't be making progress.
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001529 DEBUG(dbgs() << " w=" << EstWeight);
1530 if (EstWeight * Hysteresis >= MaxGap) {
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001531 Shrink = false;
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001532 float Diff = EstWeight - MaxGap;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001533 if (Diff > BestDiff) {
1534 DEBUG(dbgs() << " (best)");
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001535 BestDiff = Hysteresis * Diff;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001536 BestBefore = SplitBefore;
1537 BestAfter = SplitAfter;
1538 }
1539 }
1540 }
1541
1542 // Try to shrink.
1543 if (Shrink) {
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001544 if (++SplitBefore < SplitAfter) {
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001545 DEBUG(dbgs() << " shrink\n");
1546 // Recompute the max when necessary.
1547 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1548 MaxGap = GapWeight[SplitBefore];
1549 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1550 MaxGap = std::max(MaxGap, GapWeight[i]);
1551 }
1552 continue;
1553 }
1554 MaxGap = 0;
1555 }
1556
1557 // Try to extend the interval.
1558 if (SplitAfter >= NumGaps) {
1559 DEBUG(dbgs() << " end\n");
1560 break;
1561 }
1562
1563 DEBUG(dbgs() << " extend\n");
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001564 MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001565 }
1566 }
1567
1568 // Didn't find any candidates?
1569 if (BestBefore == NumGaps)
1570 return 0;
1571
1572 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1573 << '-' << Uses[BestAfter] << ", " << BestDiff
1574 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1575
Jakob Stoklund Olesen20942dc2012-05-19 05:25:46 +00001576 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001577 SE->reset(LREdit);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001578
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001579 SE->openIntv();
1580 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1581 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1582 SE->useIntv(SegStart, SegStop);
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001583 SmallVector<unsigned, 8> IntvMap;
1584 SE->finish(&IntvMap);
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001585 DebugVars->splitRegister(VirtReg.reg, LREdit.regs());
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001586
1587 // If the new range has the same number of instructions as before, mark it as
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001588 // RS_Split2 so the next split will be forced to make progress. Otherwise,
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001589 // leave the new intervals as RS_New so they can compete.
1590 bool LiveBefore = BestBefore != 0 || BI.LiveIn;
1591 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut;
1592 unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter;
1593 if (NewGaps >= NumGaps) {
1594 DEBUG(dbgs() << "Tagging non-progress ranges: ");
1595 assert(!ProgressRequired && "Didn't make progress when it was required.");
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001596 for (unsigned i = 0, e = IntvMap.size(); i != e; ++i)
1597 if (IntvMap[i] == 1) {
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001598 setStage(*LREdit.get(i), RS_Split2);
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001599 DEBUG(dbgs() << PrintReg(LREdit.get(i)->reg));
1600 }
1601 DEBUG(dbgs() << '\n');
1602 }
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +00001603 ++NumLocalSplits;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001604
1605 return 0;
1606}
1607
1608//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001609// Live Range Splitting
1610//===----------------------------------------------------------------------===//
1611
1612/// trySplit - Try to split VirtReg or one of its interferences, making it
1613/// assignable.
1614/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1615unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
1616 SmallVectorImpl<LiveInterval*>&NewVRegs) {
Jakob Stoklund Olesenccfa4462011-08-05 23:50:33 +00001617 // Ranges must be Split2 or less.
1618 if (getStage(VirtReg) >= RS_Spill)
1619 return 0;
1620
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001621 // Local intervals are handled separately.
Jakob Stoklund Olesena2ebf602011-02-19 00:38:40 +00001622 if (LIS->intervalIsInOneMBB(VirtReg)) {
1623 NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001624 SA->analyze(&VirtReg);
Jakob Stoklund Olesend74d2842012-05-23 22:37:27 +00001625 unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs);
1626 if (PhysReg || !NewVRegs.empty())
1627 return PhysReg;
1628 return tryInstructionSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesena2ebf602011-02-19 00:38:40 +00001629 }
1630
1631 NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001632
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001633 SA->analyze(&VirtReg);
1634
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +00001635 // FIXME: SplitAnalysis may repair broken live ranges coming from the
1636 // coalescer. That may cause the range to become allocatable which means that
1637 // tryRegionSplit won't be making progress. This check should be replaced with
1638 // an assertion when the coalescer is fixed.
1639 if (SA->didRepairRange()) {
1640 // VirtReg has changed, so all cached queries are invalid.
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +00001641 invalidateVirtRegs();
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +00001642 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1643 return PhysReg;
1644 }
1645
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001646 // First try to split around a region spanning multiple blocks. RS_Split2
1647 // ranges already made dubious progress with region splitting, so they go
1648 // straight to single block splitting.
1649 if (getStage(VirtReg) < RS_Split2) {
1650 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
1651 if (PhysReg || !NewVRegs.empty())
1652 return PhysReg;
1653 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001654
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001655 // Then isolate blocks.
1656 return tryBlockSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001657}
1658
1659
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001660//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001661// Main Entry Point
1662//===----------------------------------------------------------------------===//
1663
1664unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001665 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +00001666 // Check if VirtReg is live across any calls.
1667 UsableRegs.clear();
1668 if (LIS->checkRegMaskInterference(VirtReg, UsableRegs))
1669 DEBUG(dbgs() << "Live across regmasks.\n");
1670
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001671 // First try assigning a free register.
Jakob Stoklund Olesen5f2316a2011-06-03 20:34:53 +00001672 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo);
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +00001673 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1674 return PhysReg;
Andrew Trickb853e6c2010-12-09 18:15:21 +00001675
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +00001676 LiveRangeStage Stage = getStage(VirtReg);
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001677 DEBUG(dbgs() << StageName[Stage]
1678 << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n');
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +00001679
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001680 // Try to evict a less worthy live range, but only for ranges from the primary
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001681 // queue. The RS_Split ranges already failed to do this, and they should not
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001682 // get a second chance until they have been split.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001683 if (Stage != RS_Split)
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001684 if (unsigned PhysReg = tryEvict(VirtReg, Order, NewVRegs))
1685 return PhysReg;
Andrew Trickb853e6c2010-12-09 18:15:21 +00001686
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001687 assert(NewVRegs.empty() && "Cannot append to existing NewVRegs");
1688
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +00001689 // The first time we see a live range, don't try to split or spill.
1690 // Wait until the second time, when all smaller ranges have been allocated.
1691 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001692 if (Stage < RS_Split) {
1693 setStage(VirtReg, RS_Split);
Jakob Stoklund Olesenc1655e12011-03-19 23:02:47 +00001694 DEBUG(dbgs() << "wait for second round\n");
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +00001695 NewVRegs.push_back(&VirtReg);
1696 return 0;
1697 }
1698
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +00001699 // If we couldn't allocate a register from spilling, there is probably some
1700 // invalid inline assembly. The base class wil report it.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001701 if (Stage >= RS_Done || !VirtReg.isSpillable())
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +00001702 return ~0u;
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001703
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +00001704 // Try splitting VirtReg or interferences.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001705 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
1706 if (PhysReg || !NewVRegs.empty())
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +00001707 return PhysReg;
1708
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001709 // Finally spill VirtReg itself.
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001710 NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen20942dc2012-05-19 05:25:46 +00001711 LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +00001712 spiller().spill(LRE);
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001713 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001714
Jakob Stoklund Olesenc46570d2011-03-16 22:56:08 +00001715 if (VerifyEnabled)
1716 MF->verify(this, "After spilling");
1717
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001718 // The live virtual register requesting allocation was spilled, so tell
1719 // the caller not to allocate anything during this round.
1720 return 0;
1721}
1722
1723bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
1724 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
1725 << "********** Function: "
1726 << ((Value*)mf.getFunction())->getName() << '\n');
1727
1728 MF = &mf;
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +00001729 if (VerifyEnabled)
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +00001730 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +00001731
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +00001732 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001733 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +00001734 DomTree = &getAnalysis<MachineDominatorTree>();
Jakob Stoklund Olesenf6dff842010-12-10 22:54:44 +00001735 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +00001736 Loops = &getAnalysis<MachineLoopInfo>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001737 Bundles = &getAnalysis<EdgeBundles>();
1738 SpillPlacer = &getAnalysis<SpillPlacement>();
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001739 DebugVars = &getAnalysis<LiveDebugVariables>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001740
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +00001741 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001742 SE.reset(new SplitEditor(*SA, *LIS, *VRM, *DomTree));
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001743 ExtraRegInfo.clear();
1744 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1745 NextCascade = 1;
Jakob Stoklund Olesen6ef7da02012-02-10 18:58:34 +00001746 IntfCache.init(MF, &getLiveUnion(0), Indexes, LIS, TRI);
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001747 GlobalCand.resize(32); // This will grow as needed.
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +00001748
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001749 allocatePhysRegs();
1750 addMBBLiveIns(MF);
Jakob Stoklund Olesen8a61da82011-02-08 21:13:03 +00001751 LIS->addKillFlags();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001752
1753 // Run rewriter
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001754 {
1755 NamedRegionTimer T("Rewriter", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesenba05c012011-02-18 22:03:18 +00001756 VRM->rewrite(Indexes);
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001757 }
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001758
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +00001759 // Write out new DBG_VALUE instructions.
Jakob Stoklund Olesenc4769022011-07-31 03:53:42 +00001760 {
1761 NamedRegionTimer T("Emit Debug Info", TimerGroupName, TimePassesIsEnabled);
1762 DebugVars->emitDebugValues(VRM);
1763 }
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +00001764
Andrew Trick19273ae2012-02-21 04:51:23 +00001765 // All machine operands and other references to virtual registers have been
1766 // replaced. Remove the virtual registers and release all the transient data.
1767 VRM->clearAllVirt();
1768 MRI->clearVirtRegs();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001769 releaseMemory();
1770
1771 return true;
1772}