blob: 874dca6f56e51bd5d577170bce4e32b16dce05d6 [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 Olesenf428eb62010-12-17 23:16:32 +000019#include "LiveRangeEdit.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000020#include "RegAllocBase.h"
21#include "Spiller.h"
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000022#include "SpillPlacement.h"
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +000023#include "SplitKit.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000024#include "VirtRegMap.h"
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000025#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000026#include "llvm/Analysis/AliasAnalysis.h"
27#include "llvm/Function.h"
28#include "llvm/PassAnalysisSupport.h"
29#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000030#include "llvm/CodeGen/EdgeBundles.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000031#include "llvm/CodeGen/LiveIntervalAnalysis.h"
32#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 Olesen034a80d2011-02-17 19:13:53 +0000289 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
290 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +0000291 unsigned trySplit(LiveInterval&, AllocationOrder&,
292 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000293};
294} // end anonymous namespace
295
296char RAGreedy::ID = 0;
297
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000298#ifndef NDEBUG
299const char *const RAGreedy::StageName[] = {
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000300 "RS_New",
301 "RS_Assign",
302 "RS_Split",
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +0000303 "RS_Split2",
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000304 "RS_Spill",
305 "RS_Done"
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000306};
307#endif
308
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000309// Hysteresis to use when comparing floats.
310// This helps stabilize decisions based on float comparisons.
311const float Hysteresis = 0.98f;
312
313
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000314FunctionPass* llvm::createGreedyRegisterAllocator() {
315 return new RAGreedy();
316}
317
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000318RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000319 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000320 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000321 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
322 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Rafael Espindola5b220212011-06-26 22:34:10 +0000323 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Trick42b7a712012-01-17 06:55:03 +0000324 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000325 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
326 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
327 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
328 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
329 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000330 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
331 initializeSpillPlacementPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000332}
333
334void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
335 AU.setPreservesCFG();
336 AU.addRequired<AliasAnalysis>();
337 AU.addPreserved<AliasAnalysis>();
338 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000339 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000340 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +0000341 AU.addRequired<LiveDebugVariables>();
342 AU.addPreserved<LiveDebugVariables>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000343 AU.addRequired<CalculateSpillWeights>();
344 AU.addRequired<LiveStacks>();
345 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +0000346 AU.addRequired<MachineDominatorTree>();
347 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000348 AU.addRequired<MachineLoopInfo>();
349 AU.addPreserved<MachineLoopInfo>();
350 AU.addRequired<VirtRegMap>();
351 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000352 AU.addRequired<EdgeBundles>();
353 AU.addRequired<SpillPlacement>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000354 MachineFunctionPass::getAnalysisUsage(AU);
355}
356
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +0000357
358//===----------------------------------------------------------------------===//
359// LiveRangeEdit delegate methods
360//===----------------------------------------------------------------------===//
361
Jakob Stoklund Olesen7792e982011-03-13 01:23:11 +0000362bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) {
363 if (unsigned PhysReg = VRM->getPhys(VirtReg)) {
364 unassign(LIS->getInterval(VirtReg), PhysReg);
365 return true;
366 }
367 // Unassigned virtreg is probably in the priority queue.
368 // RegAllocBase will erase it after dequeueing.
369 return false;
370}
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +0000371
Jakob Stoklund Olesen1d5b8452011-03-16 22:56:16 +0000372void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) {
373 unsigned PhysReg = VRM->getPhys(VirtReg);
374 if (!PhysReg)
375 return;
376
377 // Register is assigned, put it back on the queue for reassignment.
378 LiveInterval &LI = LIS->getInterval(VirtReg);
379 unassign(LI, PhysReg);
380 enqueue(&LI);
381}
382
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000383void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
Jakob Stoklund Olesen0d4fea72011-09-14 17:34:37 +0000384 // Cloning a register we haven't even heard about yet? Just ignore it.
385 if (!ExtraRegInfo.inBounds(Old))
386 return;
387
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000388 // LRE may clone a virtual register because dead code elimination causes it to
Jakob Stoklund Olesen165e2312011-07-26 00:54:56 +0000389 // be split into connected components. The new components are much smaller
390 // than the original, so they should get a new chance at being assigned.
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000391 // same stage as the parent.
Jakob Stoklund Olesen165e2312011-07-26 00:54:56 +0000392 ExtraRegInfo[Old].Stage = RS_Assign;
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000393 ExtraRegInfo.grow(New);
394 ExtraRegInfo[New] = ExtraRegInfo[Old];
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000395}
396
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000397void RAGreedy::releaseMemory() {
398 SpillerInstance.reset(0);
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000399 ExtraRegInfo.clear();
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000400 GlobalCand.clear();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000401 RegAllocBase::releaseMemory();
402}
403
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000404void RAGreedy::enqueue(LiveInterval *LI) {
405 // Prioritize live ranges by size, assigning larger ranges first.
406 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000407 const unsigned Size = LI->getSize();
408 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000409 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
410 "Can only enqueue virtual registers");
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000411 unsigned Prio;
Jakob Stoklund Olesen90c1d7d2010-12-08 22:57:16 +0000412
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000413 ExtraRegInfo.grow(Reg);
414 if (ExtraRegInfo[Reg].Stage == RS_New)
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000415 ExtraRegInfo[Reg].Stage = RS_Assign;
Jakob Stoklund Olesenf22ca3f2011-03-30 02:52:39 +0000416
Jakob Stoklund Olesencc07e042011-07-28 20:48:23 +0000417 if (ExtraRegInfo[Reg].Stage == RS_Split) {
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +0000418 // Unsplit ranges that couldn't be allocated immediately are deferred until
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +0000419 // everything else has been allocated.
420 Prio = Size;
Jakob Stoklund Olesencc07e042011-07-28 20:48:23 +0000421 } else {
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +0000422 // Everything is allocated in long->short order. Long ranges that don't fit
423 // should be spilled (or split) ASAP so they don't create interference.
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000424 Prio = (1u << 31) + Size;
Jakob Stoklund Olesend2a50732011-02-23 00:56:56 +0000425
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +0000426 // Boost ranges that have a physical register hint.
427 if (TargetRegisterInfo::isPhysicalRegister(VRM->getRegAllocPref(Reg)))
428 Prio |= (1u << 30);
429 }
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000430
431 Queue.push(std::make_pair(Prio, Reg));
Jakob Stoklund Olesen90c1d7d2010-12-08 22:57:16 +0000432}
433
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000434LiveInterval *RAGreedy::dequeue() {
435 if (Queue.empty())
436 return 0;
437 LiveInterval *LI = &LIS->getInterval(Queue.top().second);
438 Queue.pop();
439 return LI;
440}
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000441
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000442
443//===----------------------------------------------------------------------===//
444// Direct Assignment
445//===----------------------------------------------------------------------===//
446
447/// tryAssign - Try to assign VirtReg to an available register.
448unsigned RAGreedy::tryAssign(LiveInterval &VirtReg,
449 AllocationOrder &Order,
450 SmallVectorImpl<LiveInterval*> &NewVRegs) {
451 Order.rewind();
452 unsigned PhysReg;
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +0000453 while ((PhysReg = Order.next())) {
454 if (clobberedByRegMask(PhysReg))
455 continue;
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000456 if (!checkPhysRegInterference(VirtReg, PhysReg))
457 break;
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +0000458 }
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000459 if (!PhysReg || Order.isHint(PhysReg))
460 return PhysReg;
461
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000462 // PhysReg is available, but there may be a better choice.
463
464 // If we missed a simple hint, try to cheaply evict interference from the
465 // preferred register.
466 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg))
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +0000467 if (Order.isHint(Hint) && !clobberedByRegMask(Hint)) {
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000468 DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n');
469 EvictionCost MaxCost(1);
470 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
471 evictInterference(VirtReg, Hint, NewVRegs);
472 return Hint;
473 }
474 }
475
476 // Try to evict interference from a cheaper alternative.
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000477 unsigned Cost = TRI->getCostPerUse(PhysReg);
478
479 // Most registers have 0 additional cost.
480 if (!Cost)
481 return PhysReg;
482
483 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost
484 << '\n');
485 unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost);
486 return CheapReg ? CheapReg : PhysReg;
487}
488
489
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000490//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000491// Interference eviction
492//===----------------------------------------------------------------------===//
493
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000494/// shouldEvict - determine if A should evict the assigned live range B. The
495/// eviction policy defined by this function together with the allocation order
496/// defined by enqueue() decides which registers ultimately end up being split
497/// and spilled.
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000498///
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000499/// Cascade numbers are used to prevent infinite loops if this function is a
500/// cyclic relation.
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000501///
502/// @param A The live range to be assigned.
503/// @param IsHint True when A is about to be assigned to its preferred
504/// register.
505/// @param B The live range to be evicted.
506/// @param BreaksHint True when B is already assigned to its preferred register.
507bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint,
508 LiveInterval &B, bool BreaksHint) {
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +0000509 bool CanSplit = getStage(B) < RS_Spill;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000510
511 // Be fairly aggressive about following hints as long as the evictee can be
512 // split.
513 if (CanSplit && IsHint && !BreaksHint)
514 return true;
515
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000516 return A.weight > B.weight;
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +0000517}
518
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000519/// canEvictInterference - Return true if all interferences between VirtReg and
520/// PhysReg can be evicted. When OnlyCheap is set, don't do anything
521///
522/// @param VirtReg Live range that is about to be assigned.
523/// @param PhysReg Desired register for assignment.
524/// @prarm IsHint True when PhysReg is VirtReg's preferred register.
525/// @param MaxCost Only look for cheaper candidates and update with new cost
526/// when returning true.
527/// @returns True when interference can be evicted cheaper than MaxCost.
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000528bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000529 bool IsHint, EvictionCost &MaxCost) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000530 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
531 // involved in an eviction before. If a cascade number was assigned, deny
532 // evicting anything with the same or a newer cascade number. This prevents
533 // infinite eviction loops.
534 //
535 // This works out so a register without a cascade number is allowed to evict
536 // anything, and it can be evicted by anything.
537 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
538 if (!Cascade)
539 Cascade = NextCascade;
540
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000541 EvictionCost Cost;
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000542 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
543 LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI);
Jakob Stoklund Olesen3f5bedf2011-04-11 21:47:01 +0000544 // If there is 10 or more interferences, chances are one is heavier.
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000545 if (Q.collectInterferingVRegs(10) >= 10)
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000546 return false;
547
Jakob Stoklund Olesen3f5bedf2011-04-11 21:47:01 +0000548 // Check if any interfering live range is heavier than MaxWeight.
549 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
550 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000551 if (TargetRegisterInfo::isPhysicalRegister(Intf->reg))
552 return false;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000553 // Never evict spill products. They cannot split or spill.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +0000554 if (getStage(*Intf) == RS_Done)
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +0000555 return false;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000556 // Once a live range becomes small enough, it is urgent that we find a
557 // register for it. This is indicated by an infinite spill weight. These
558 // urgent live ranges get to evict almost anything.
559 bool Urgent = !VirtReg.isSpillable() && Intf->isSpillable();
560 // Only evict older cascades or live ranges without a cascade.
561 unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade;
562 if (Cascade <= IntfCascade) {
563 if (!Urgent)
564 return false;
565 // We permit breaking cascades for urgent evictions. It should be the
566 // last resort, though, so make it really expensive.
567 Cost.BrokenHints += 10;
568 }
569 // Would this break a satisfied hint?
570 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg);
571 // Update eviction cost.
572 Cost.BrokenHints += BreaksHint;
573 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
574 // Abort if this would be too expensive.
575 if (!(Cost < MaxCost))
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000576 return false;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000577 // Finally, apply the eviction policy for non-urgent evictions.
578 if (!Urgent && !shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
Jakob Stoklund Olesend2056e52011-05-31 21:02:44 +0000579 return false;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000580 }
581 }
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000582 MaxCost = Cost;
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000583 return true;
584}
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000585
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000586/// evictInterference - Evict any interferring registers that prevent VirtReg
587/// from being assigned to Physreg. This assumes that canEvictInterference
588/// returned true.
589void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg,
590 SmallVectorImpl<LiveInterval*> &NewVRegs) {
591 // Make sure that VirtReg has a cascade number, and assign that cascade
592 // number to every evicted register. These live ranges than then only be
593 // evicted by a newer cascade, preventing infinite loops.
594 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
595 if (!Cascade)
596 Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++;
597
598 DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI)
599 << " interference: Cascade " << Cascade << '\n');
600 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
601 LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI);
602 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
603 for (unsigned i = 0, e = Q.interferingVRegs().size(); i != e; ++i) {
604 LiveInterval *Intf = Q.interferingVRegs()[i];
605 unassign(*Intf, VRM->getPhys(Intf->reg));
606 assert((ExtraRegInfo[Intf->reg].Cascade < Cascade ||
607 VirtReg.isSpillable() < Intf->isSpillable()) &&
608 "Cannot decrease cascade number, illegal eviction");
609 ExtraRegInfo[Intf->reg].Cascade = Cascade;
610 ++NumEvicted;
611 NewVRegs.push_back(Intf);
612 }
613 }
614}
615
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000616/// tryEvict - Try to evict all interferences for a physreg.
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +0000617/// @param VirtReg Currently unassigned virtual register.
618/// @param Order Physregs to try.
619/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000620unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
621 AllocationOrder &Order,
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000622 SmallVectorImpl<LiveInterval*> &NewVRegs,
623 unsigned CostPerUseLimit) {
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000624 NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled);
625
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000626 // Keep track of the cheapest interference seen so far.
627 EvictionCost BestCost(~0u);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000628 unsigned BestPhys = 0;
629
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000630 // When we are just looking for a reduced cost per use, don't break any
631 // hints, and only evict smaller spill weights.
632 if (CostPerUseLimit < ~0u) {
633 BestCost.BrokenHints = 0;
634 BestCost.MaxWeight = VirtReg.weight;
635 }
636
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000637 Order.rewind();
638 while (unsigned PhysReg = Order.next()) {
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +0000639 if (clobberedByRegMask(PhysReg))
640 continue;
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000641 if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit)
642 continue;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000643 // The first use of a callee-saved register in a function has cost 1.
644 // Don't start using a CSR when the CostPerUseLimit is low.
645 if (CostPerUseLimit == 1)
646 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
647 if (!MRI->isPhysRegUsed(CSR)) {
648 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
649 << PrintReg(CSR, TRI) << '\n');
650 continue;
651 }
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +0000652
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000653 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000654 continue;
655
656 // Best so far.
657 BestPhys = PhysReg;
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000658
Jakob Stoklund Olesen57f1e2c2011-02-25 01:04:22 +0000659 // Stop if the hint can be used.
660 if (Order.isHint(PhysReg))
661 break;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000662 }
663
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000664 if (!BestPhys)
665 return 0;
666
Jakob Stoklund Olesen51458ed2011-07-08 20:46:18 +0000667 evictInterference(VirtReg, BestPhys, NewVRegs);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000668 return BestPhys;
Andrew Trickb853e6c2010-12-09 18:15:21 +0000669}
670
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000671
672//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000673// Region Splitting
674//===----------------------------------------------------------------------===//
675
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000676/// addSplitConstraints - Fill out the SplitConstraints vector based on the
677/// interference pattern in Physreg and its aliases. Add the constraints to
678/// SpillPlacement and return the static cost of this split in Cost, assuming
679/// that all preferences in SplitConstraints are met.
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000680/// Return false if there are no bundles with positive bias.
681bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf,
682 float &Cost) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000683 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000684
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000685 // Reset interference dependent info.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000686 SplitConstraints.resize(UseBlocks.size());
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000687 float StaticCost = 0;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000688 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
689 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000690 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000691
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000692 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000693 Intf.moveToBlock(BC.Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000694 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
695 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
Jakob Stoklund Olesen5ebca792011-08-02 23:04:06 +0000696 BC.ChangesValue = BI.FirstDef;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000697
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000698 if (!Intf.hasInterference())
699 continue;
700
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000701 // Number of spill code instructions to insert.
702 unsigned Ins = 0;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000703
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000704 // Interference for the live-in value.
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000705 if (BI.LiveIn) {
Jakob Stoklund Olesen6c8afd72011-04-04 15:32:15 +0000706 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000707 BC.Entry = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000708 else if (Intf.first() < BI.FirstInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000709 BC.Entry = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000710 else if (Intf.first() < BI.LastInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000711 ++Ins;
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000712 }
713
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000714 // Interference for the live-out value.
Jakob Stoklund Oleseneda0fe82011-04-02 06:03:38 +0000715 if (BI.LiveOut) {
Jakob Stoklund Olesen612f7802011-04-05 04:20:29 +0000716 if (Intf.last() >= SA->getLastSplitPoint(BC.Number))
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000717 BC.Exit = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000718 else if (Intf.last() > BI.LastInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000719 BC.Exit = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +0000720 else if (Intf.last() > BI.FirstInstr)
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000721 ++Ins;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000722 }
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000723
724 // Accumulate the total frequency of inserted spill code.
725 if (Ins)
726 StaticCost += Ins * SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000727 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000728 Cost = StaticCost;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000729
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000730 // Add constraints for use-blocks. Note that these are the only constraints
731 // that may add a positive bias, it is downhill from here.
732 SpillPlacer->addConstraints(SplitConstraints);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000733 return SpillPlacer->scanActiveBundles();
734}
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000735
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000736
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000737/// addThroughConstraints - Add constraints and links to SpillPlacer from the
738/// live-through blocks in Blocks.
739void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf,
740 ArrayRef<unsigned> Blocks) {
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000741 const unsigned GroupSize = 8;
742 SpillPlacement::BlockConstraint BCS[GroupSize];
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000743 unsigned TBS[GroupSize];
744 unsigned B = 0, T = 0;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000745
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000746 for (unsigned i = 0; i != Blocks.size(); ++i) {
747 unsigned Number = Blocks[i];
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000748 Intf.moveToBlock(Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000749
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000750 if (!Intf.hasInterference()) {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000751 assert(T < GroupSize && "Array overflow");
752 TBS[T] = Number;
753 if (++T == GroupSize) {
Frits van Bommel39b5abf2011-07-18 12:00:32 +0000754 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000755 T = 0;
756 }
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000757 continue;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000758 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000759
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000760 assert(B < GroupSize && "Array overflow");
761 BCS[B].Number = Number;
762
Jakob Stoklund Olesen7b41fbe2011-04-07 17:27:46 +0000763 // Interference for the live-in value.
764 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
765 BCS[B].Entry = SpillPlacement::MustSpill;
766 else
767 BCS[B].Entry = SpillPlacement::PrefSpill;
768
769 // Interference for the live-out value.
770 if (Intf.last() >= SA->getLastSplitPoint(Number))
771 BCS[B].Exit = SpillPlacement::MustSpill;
772 else
773 BCS[B].Exit = SpillPlacement::PrefSpill;
774
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000775 if (++B == GroupSize) {
776 ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B);
777 SpillPlacer->addConstraints(Array);
778 B = 0;
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000779 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000780 }
781
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +0000782 ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B);
783 SpillPlacer->addConstraints(Array);
Frits van Bommel39b5abf2011-07-18 12:00:32 +0000784 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000785}
786
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000787void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000788 // Keep track of through blocks that have not been added to SpillPlacer.
789 BitVector Todo = SA->getThroughBlocks();
790 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks;
791 unsigned AddedTo = 0;
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000792#ifndef NDEBUG
793 unsigned Visited = 0;
794#endif
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000795
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000796 for (;;) {
797 ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive();
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000798 // Find new through blocks in the periphery of PrefRegBundles.
799 for (int i = 0, e = NewBundles.size(); i != e; ++i) {
800 unsigned Bundle = NewBundles[i];
801 // Look at all blocks connected to Bundle in the full graph.
802 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
803 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
804 I != E; ++I) {
805 unsigned Block = *I;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000806 if (!Todo.test(Block))
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000807 continue;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000808 Todo.reset(Block);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000809 // This is a new through block. Add it to SpillPlacer later.
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000810 ActiveBlocks.push_back(Block);
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000811#ifndef NDEBUG
812 ++Visited;
813#endif
814 }
815 }
816 // Any new blocks to add?
Jakob Stoklund Olesen54901972011-07-05 18:46:42 +0000817 if (ActiveBlocks.size() == AddedTo)
818 break;
Jakob Stoklund Olesenb4666362011-07-23 03:22:33 +0000819
820 // Compute through constraints from the interference, or assume that all
821 // through blocks prefer spilling when forming compact regions.
822 ArrayRef<unsigned> NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
823 if (Cand.PhysReg)
824 addThroughConstraints(Cand.Intf, NewBlocks);
825 else
Jakob Stoklund Olesenb87f91b2011-08-03 23:09:38 +0000826 // Provide a strong negative bias on through blocks to prevent unwanted
827 // liveness on loop backedges.
828 SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true);
Jakob Stoklund Olesen54901972011-07-05 18:46:42 +0000829 AddedTo = ActiveBlocks.size();
830
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000831 // Perhaps iterating can enable more bundles?
832 SpillPlacer->iterate();
833 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +0000834 DEBUG(dbgs() << ", v=" << Visited);
835}
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000836
Jakob Stoklund Olesen87972fa2011-07-23 03:41:57 +0000837/// calcCompactRegion - Compute the set of edge bundles that should be live
838/// when splitting the current live range into compact regions. Compact
839/// regions can be computed without looking at interference. They are the
840/// regions formed by removing all the live-through blocks from the live range.
841///
842/// Returns false if the current live range is already compact, or if the
843/// compact regions would form single block regions anyway.
844bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) {
845 // Without any through blocks, the live range is already compact.
846 if (!SA->getNumThroughBlocks())
847 return false;
848
849 // Compact regions don't correspond to any physreg.
850 Cand.reset(IntfCache, 0);
851
852 DEBUG(dbgs() << "Compact region bundles");
853
854 // Use the spill placer to determine the live bundles. GrowRegion pretends
855 // that all the through blocks have interference when PhysReg is unset.
856 SpillPlacer->prepare(Cand.LiveBundles);
857
858 // The static split cost will be zero since Cand.Intf reports no interference.
859 float Cost;
860 if (!addSplitConstraints(Cand.Intf, Cost)) {
861 DEBUG(dbgs() << ", none.\n");
862 return false;
863 }
864
865 growRegion(Cand);
866 SpillPlacer->finish();
867
868 if (!Cand.LiveBundles.any()) {
869 DEBUG(dbgs() << ", none.\n");
870 return false;
871 }
872
873 DEBUG({
874 for (int i = Cand.LiveBundles.find_first(); i>=0;
875 i = Cand.LiveBundles.find_next(i))
876 dbgs() << " EB#" << i;
877 dbgs() << ".\n";
878 });
879 return true;
880}
881
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000882/// calcSpillCost - Compute how expensive it would be to split the live range in
883/// SA around all use blocks instead of forming bundle regions.
884float RAGreedy::calcSpillCost() {
885 float Cost = 0;
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000886 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
887 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
888 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
889 unsigned Number = BI.MBB->getNumber();
890 // We normally only need one spill instruction - a load or a store.
891 Cost += SpillPlacer->getBlockFrequency(Number);
892
893 // Unless the value is redefined in the block.
Jakob Stoklund Olesen3f5beed2011-08-02 23:04:08 +0000894 if (BI.LiveIn && BI.LiveOut && BI.FirstDef)
895 Cost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +0000896 }
897 return Cost;
898}
899
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000900/// calcGlobalSplitCost - Return the global split cost of following the split
901/// pattern in LiveBundles. This cost should be added to the local cost of the
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000902/// interference pattern in SplitConstraints.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000903///
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000904float RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000905 float GlobalCost = 0;
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000906 const BitVector &LiveBundles = Cand.LiveBundles;
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000907 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
908 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
909 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +0000910 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +0000911 bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)];
912 bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)];
913 unsigned Ins = 0;
914
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000915 if (BI.LiveIn)
916 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
917 if (BI.LiveOut)
918 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +0000919 if (Ins)
920 GlobalCost += Ins * SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000921 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000922
Jakob Stoklund Olesen5db42892011-04-12 21:30:53 +0000923 for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) {
924 unsigned Number = Cand.ActiveBlocks[i];
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000925 bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)];
926 bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)];
Jakob Stoklund Olesen9a543522011-04-06 21:32:41 +0000927 if (!RegIn && !RegOut)
928 continue;
929 if (RegIn && RegOut) {
930 // We need double spill code if this block has interference.
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +0000931 Cand.Intf.moveToBlock(Number);
932 if (Cand.Intf.hasInterference())
Jakob Stoklund Olesen9a543522011-04-06 21:32:41 +0000933 GlobalCost += 2*SpillPlacer->getBlockFrequency(Number);
934 continue;
935 }
936 // live-in / stack-out or stack-in live-out.
937 GlobalCost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000938 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000939 return GlobalCost;
940}
941
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000942/// splitAroundRegion - Split the current live range around the regions
943/// determined by BundleCand and GlobalCand.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000944///
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000945/// Before calling this function, GlobalCand and BundleCand must be initialized
946/// so each bundle is assigned to a valid candidate, or NoCand for the
947/// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor
948/// objects must be initialized for the current live range, and intervals
949/// created for the used candidates.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000950///
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000951/// @param LREdit The LiveRangeEdit object handling the current split.
952/// @param UsedCands List of used GlobalCand entries. Every BundleCand value
953/// must appear in this list.
954void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit,
955 ArrayRef<unsigned> UsedCands) {
956 // These are the intervals created for new global ranges. We may create more
957 // intervals for local ranges.
958 const unsigned NumGlobalIntvs = LREdit.size();
959 DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n");
960 assert(NumGlobalIntvs && "No global intervals configured");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000961
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000962 // Isolate even single instructions when dealing with a proper sub-class.
Jakob Stoklund Olesen69145ba2011-08-06 18:20:24 +0000963 // That guarantees register class inflation for the stack interval because it
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000964 // is all copies.
965 unsigned Reg = SA->getParent().reg;
966 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
967
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000968 // First handle all the blocks with uses.
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +0000969 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
970 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
971 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000972 unsigned Number = BI.MBB->getNumber();
973 unsigned IntvIn = 0, IntvOut = 0;
974 SlotIndex IntfIn, IntfOut;
975 if (BI.LiveIn) {
976 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
977 if (CandIn != NoCand) {
978 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
979 IntvIn = Cand.IntvIdx;
980 Cand.Intf.moveToBlock(Number);
981 IntfIn = Cand.Intf.first();
982 }
983 }
984 if (BI.LiveOut) {
985 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
986 if (CandOut != NoCand) {
987 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
988 IntvOut = Cand.IntvIdx;
989 Cand.Intf.moveToBlock(Number);
990 IntfOut = Cand.Intf.last();
991 }
992 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000993
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000994 // Create separate intervals for isolated blocks with multiple uses.
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +0000995 if (!IntvIn && !IntvOut) {
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000996 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n");
Jakob Stoklund Olesen2d6d86b2011-08-05 22:20:45 +0000997 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
Jakob Stoklund Olesen87360f72011-06-30 01:30:39 +0000998 SE->splitSingleBlock(BI);
Jakob Stoklund Olesenfd5c5132011-04-12 19:32:53 +0000999 continue;
1000 }
1001
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001002 if (IntvIn && IntvOut)
1003 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1004 else if (IntvIn)
1005 SE->splitRegInBlock(BI, IntvIn, IntfIn);
Jakob Stoklund Olesenb4ddedc2011-07-15 21:47:57 +00001006 else
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001007 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001008 }
1009
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001010 // Handle live-through blocks. The relevant live-through blocks are stored in
1011 // the ActiveBlocks list with each candidate. We need to filter out
1012 // duplicates.
1013 BitVector Todo = SA->getThroughBlocks();
1014 for (unsigned c = 0; c != UsedCands.size(); ++c) {
1015 ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks;
1016 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
1017 unsigned Number = Blocks[i];
1018 if (!Todo.test(Number))
1019 continue;
1020 Todo.reset(Number);
1021
1022 unsigned IntvIn = 0, IntvOut = 0;
1023 SlotIndex IntfIn, IntfOut;
1024
1025 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1026 if (CandIn != NoCand) {
1027 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1028 IntvIn = Cand.IntvIdx;
1029 Cand.Intf.moveToBlock(Number);
1030 IntfIn = Cand.Intf.first();
1031 }
1032
1033 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1034 if (CandOut != NoCand) {
1035 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1036 IntvOut = Cand.IntvIdx;
1037 Cand.Intf.moveToBlock(Number);
1038 IntfOut = Cand.Intf.last();
1039 }
1040 if (!IntvIn && !IntvOut)
1041 continue;
1042 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1043 }
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001044 }
1045
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +00001046 ++NumGlobalSplits;
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001047
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001048 SmallVector<unsigned, 8> IntvMap;
1049 SE->finish(&IntvMap);
Jakob Stoklund Olesen1f880422011-08-05 23:10:40 +00001050 DebugVars->splitRegister(Reg, LREdit.regs());
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001051
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001052 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesenb2abfa02011-05-28 02:32:57 +00001053 unsigned OrigBlocks = SA->getNumLiveBlocks();
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001054
1055 // Sort out the new intervals created by splitting. We get four kinds:
1056 // - Remainder intervals should not be split again.
1057 // - Candidate intervals can be assigned to Cand.PhysReg.
1058 // - Block-local splits are candidates for local splitting.
1059 // - DCE leftovers should go back on the queue.
1060 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001061 LiveInterval &Reg = *LREdit.get(i);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001062
1063 // Ignore old intervals from DCE.
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001064 if (getStage(Reg) != RS_New)
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001065 continue;
1066
1067 // Remainder interval. Don't try splitting again, spill if it doesn't
1068 // allocate.
1069 if (IntvMap[i] == 0) {
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001070 setStage(Reg, RS_Spill);
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001071 continue;
1072 }
1073
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001074 // Global intervals. Allow repeated splitting as long as the number of live
1075 // blocks is strictly decreasing.
1076 if (IntvMap[i] < NumGlobalIntvs) {
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001077 if (SA->countLiveBlocks(&Reg) >= OrigBlocks) {
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +00001078 DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks
1079 << " blocks as original.\n");
1080 // Don't allow repeated splitting as a safe guard against looping.
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001081 setStage(Reg, RS_Split2);
Jakob Stoklund Olesen9f4b8932011-04-26 22:33:12 +00001082 }
1083 continue;
1084 }
1085
1086 // Other intervals are treated as new. This includes local intervals created
1087 // for blocks with multiple uses, and anything created by DCE.
Jakob Stoklund Olesen59280462011-04-21 18:38:15 +00001088 }
1089
Jakob Stoklund Oleseneb291572011-03-27 22:49:21 +00001090 if (VerifyEnabled)
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001091 MF->verify(this, "After splitting live range around region");
1092}
1093
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001094unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1095 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001096 unsigned NumCands = 0;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001097 unsigned BestCand = NoCand;
1098 float BestCost;
1099 SmallVector<unsigned, 8> UsedCands;
1100
1101 // Check if we can split this live range around a compact region.
Jakob Stoklund Olesena16a25d2011-09-12 16:54:42 +00001102 bool HasCompact = calcCompactRegion(GlobalCand.front());
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001103 if (HasCompact) {
1104 // Yes, keep GlobalCand[0] as the compact region candidate.
1105 NumCands = 1;
1106 BestCost = HUGE_VALF;
1107 } else {
1108 // No benefit from the compact region, our fallback will be per-block
1109 // splitting. Make sure we find a solution that is cheaper than spilling.
1110 BestCost = Hysteresis * calcSpillCost();
1111 DEBUG(dbgs() << "Cost of isolating all blocks = " << BestCost << '\n');
1112 }
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +00001113
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001114 Order.rewind();
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001115 while (unsigned PhysReg = Order.next()) {
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001116 // Discard bad candidates before we run out of interference cache cursors.
1117 // This will only affect register classes with a lot of registers (>32).
1118 if (NumCands == IntfCache.getMaxCursors()) {
1119 unsigned WorstCount = ~0u;
1120 unsigned Worst = 0;
1121 for (unsigned i = 0; i != NumCands; ++i) {
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001122 if (i == BestCand || !GlobalCand[i].PhysReg)
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001123 continue;
1124 unsigned Count = GlobalCand[i].LiveBundles.count();
1125 if (Count < WorstCount)
1126 Worst = i, WorstCount = Count;
1127 }
1128 --NumCands;
1129 GlobalCand[Worst] = GlobalCand[NumCands];
Jakob Stoklund Olesen7bdf0062011-11-01 00:02:31 +00001130 if (BestCand == NumCands)
1131 BestCand = Worst;
Jakob Stoklund Olesenf1c70982011-07-14 05:35:11 +00001132 }
1133
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001134 if (GlobalCand.size() <= NumCands)
1135 GlobalCand.resize(NumCands+1);
1136 GlobalSplitCandidate &Cand = GlobalCand[NumCands];
1137 Cand.reset(IntfCache, PhysReg);
Jakob Stoklund Olesen96dcd952011-03-05 01:10:31 +00001138
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001139 SpillPlacer->prepare(Cand.LiveBundles);
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +00001140 float Cost;
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001141 if (!addSplitConstraints(Cand.Intf, Cost)) {
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +00001142 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n");
Jakob Stoklund Olesen1b400e82011-04-06 21:32:38 +00001143 continue;
1144 }
Jakob Stoklund Olesenf4afdfc2011-04-09 02:59:09 +00001145 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = " << Cost);
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001146 if (Cost >= BestCost) {
1147 DEBUG({
1148 if (BestCand == NoCand)
1149 dbgs() << " worse than no bundles\n";
1150 else
1151 dbgs() << " worse than "
1152 << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n';
1153 });
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001154 continue;
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001155 }
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001156 growRegion(Cand);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001157
Jakob Stoklund Olesen9efa2a22011-04-06 19:13:57 +00001158 SpillPlacer->finish();
1159
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001160 // No live bundles, defer to splitSingleBlocks().
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001161 if (!Cand.LiveBundles.any()) {
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001162 DEBUG(dbgs() << " no bundles.\n");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001163 continue;
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001164 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001165
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001166 Cost += calcGlobalSplitCost(Cand);
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001167 DEBUG({
1168 dbgs() << ", total = " << Cost << " with bundles";
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001169 for (int i = Cand.LiveBundles.find_first(); i>=0;
1170 i = Cand.LiveBundles.find_next(i))
Jakob Stoklund Olesen874be742011-03-05 03:28:51 +00001171 dbgs() << " EB#" << i;
1172 dbgs() << ".\n";
1173 });
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001174 if (Cost < BestCost) {
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001175 BestCand = NumCands;
Jakob Stoklund Olesen20072982011-04-22 22:47:40 +00001176 BestCost = Hysteresis * Cost; // Prevent rounding effects.
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001177 }
Jakob Stoklund Olesenc66a37d2011-07-14 00:17:10 +00001178 ++NumCands;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001179 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001180
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001181 // No solutions found, fall back to single block splitting.
1182 if (!HasCompact && BestCand == NoCand)
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001183 return 0;
1184
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001185 // Prepare split editor.
1186 LiveRangeEdit LREdit(VirtReg, NewVRegs, this);
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +00001187 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001188
1189 // Assign all edge bundles to the preferred candidate, or NoCand.
1190 BundleCand.assign(Bundles->getNumBundles(), NoCand);
1191
1192 // Assign bundles for the best candidate region.
1193 if (BestCand != NoCand) {
1194 GlobalSplitCandidate &Cand = GlobalCand[BestCand];
1195 if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
1196 UsedCands.push_back(BestCand);
1197 Cand.IntvIdx = SE->openIntv();
1198 DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in "
1199 << B << " bundles, intv " << Cand.IntvIdx << ".\n");
Chandler Carruth32668ea2011-08-03 23:07:27 +00001200 (void)B;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001201 }
1202 }
1203
1204 // Assign bundles for the compact region.
1205 if (HasCompact) {
1206 GlobalSplitCandidate &Cand = GlobalCand.front();
1207 assert(!Cand.PhysReg && "Compact region has no physreg");
1208 if (unsigned B = Cand.getBundles(BundleCand, 0)) {
1209 UsedCands.push_back(0);
1210 Cand.IntvIdx = SE->openIntv();
1211 DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv "
1212 << Cand.IntvIdx << ".\n");
Chandler Carruth32668ea2011-08-03 23:07:27 +00001213 (void)B;
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001214 }
1215 }
1216
1217 splitAroundRegion(LREdit, UsedCands);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001218 return 0;
1219}
1220
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001221
1222//===----------------------------------------------------------------------===//
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001223// Per-Block Splitting
1224//===----------------------------------------------------------------------===//
1225
1226/// tryBlockSplit - Split a global live range around every block with uses. This
1227/// creates a lot of local live ranges, that will be split by tryLocalSplit if
1228/// they don't allocate.
1229unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1230 SmallVectorImpl<LiveInterval*> &NewVRegs) {
1231 assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed");
1232 unsigned Reg = VirtReg.reg;
1233 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
1234 LiveRangeEdit LREdit(VirtReg, NewVRegs, this);
Jakob Stoklund Olesen708d06f2011-09-12 16:49:21 +00001235 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001236 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1237 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1238 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1239 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
1240 SE->splitSingleBlock(BI);
1241 }
1242 // No blocks were split.
1243 if (LREdit.empty())
1244 return 0;
1245
1246 // We did split for some blocks.
Jakob Stoklund Olesena9c41d32011-08-05 23:50:31 +00001247 SmallVector<unsigned, 8> IntvMap;
1248 SE->finish(&IntvMap);
Jakob Stoklund Olesen1f880422011-08-05 23:10:40 +00001249
1250 // Tell LiveDebugVariables about the new ranges.
1251 DebugVars->splitRegister(Reg, LREdit.regs());
1252
Jakob Stoklund Olesena9c41d32011-08-05 23:50:31 +00001253 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1254
1255 // Sort out the new intervals created by splitting. The remainder interval
1256 // goes straight to spilling, the new local ranges get to stay RS_New.
1257 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
1258 LiveInterval &LI = *LREdit.get(i);
1259 if (getStage(LI) == RS_New && IntvMap[i] == 0)
1260 setStage(LI, RS_Spill);
1261 }
1262
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001263 if (VerifyEnabled)
1264 MF->verify(this, "After splitting live range around basic blocks");
1265 return 0;
1266}
1267
1268//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001269// Local Splitting
1270//===----------------------------------------------------------------------===//
1271
1272
1273/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
1274/// in order to use PhysReg between two entries in SA->UseSlots.
1275///
1276/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1277///
1278void RAGreedy::calcGapWeights(unsigned PhysReg,
1279 SmallVectorImpl<float> &GapWeight) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001280 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1281 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001282 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001283 const unsigned NumGaps = Uses.size()-1;
1284
1285 // Start and end points for the interference check.
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001286 SlotIndex StartIdx =
1287 BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr;
1288 SlotIndex StopIdx =
1289 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001290
1291 GapWeight.assign(NumGaps, 0.0f);
1292
1293 // Add interference from each overlapping register.
1294 for (const unsigned *AI = TRI->getOverlaps(PhysReg); *AI; ++AI) {
1295 if (!query(const_cast<LiveInterval&>(SA->getParent()), *AI)
1296 .checkInterference())
1297 continue;
1298
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001299 // We know that VirtReg is a continuous interval from FirstInstr to
1300 // LastInstr, so we don't need InterferenceQuery.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001301 //
1302 // Interference that overlaps an instruction is counted in both gaps
1303 // surrounding the instruction. The exception is interference before
1304 // StartIdx and after StopIdx.
1305 //
Jakob Stoklund Olesen93841112012-01-11 23:19:08 +00001306 LiveIntervalUnion::SegmentIter IntI = getLiveUnion(*AI).find(StartIdx);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001307 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
1308 // Skip the gaps before IntI.
1309 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
1310 if (++Gap == NumGaps)
1311 break;
1312 if (Gap == NumGaps)
1313 break;
1314
1315 // Update the gaps covered by IntI.
1316 const float weight = IntI.value()->weight;
1317 for (; Gap != NumGaps; ++Gap) {
1318 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1319 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1320 break;
1321 }
1322 if (Gap == NumGaps)
1323 break;
1324 }
1325 }
1326}
1327
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001328/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1329/// basic block.
1330///
1331unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1332 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesendb529a82011-04-06 03:57:00 +00001333 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1334 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001335
1336 // Note that it is possible to have an interval that is live-in or live-out
1337 // while only covering a single block - A phi-def can use undef values from
1338 // predecessors, and the block could be a single-block loop.
1339 // We don't bother doing anything clever about such a case, we simply assume
Jakob Stoklund Olesenfe62d922011-08-02 22:54:14 +00001340 // that the interval is continuous from FirstInstr to LastInstr. We should
1341 // make sure that we don't do anything illegal to such an interval, though.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001342
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001343 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001344 if (Uses.size() <= 2)
1345 return 0;
1346 const unsigned NumGaps = Uses.size()-1;
1347
1348 DEBUG({
1349 dbgs() << "tryLocalSplit: ";
1350 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
Jakob Stoklund Olesenb20b5182012-01-12 17:53:44 +00001351 dbgs() << ' ' << Uses[i];
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001352 dbgs() << '\n';
1353 });
1354
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001355 // If VirtReg is live across any register mask operands, compute a list of
1356 // gaps with register masks.
1357 SmallVector<unsigned, 8> RegMaskGaps;
1358 if (!UsableRegs.empty()) {
1359 // Get regmask slots for the whole block.
1360 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
1361 // Constrain to VirtReg's live range.
1362 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(), Uses.front())
1363 - RMS.begin();
1364 unsigned re = RMS.size();
1365 for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
1366 assert(Uses[i] <= RMS[ri]);
1367 if (Uses[i+1] <= RMS[ri])
1368 continue;
1369 RegMaskGaps.push_back(i);
1370 do ++ri;
1371 while (ri != re && RMS[ri] < Uses[i+1]);
1372 }
1373 }
1374
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001375 // Since we allow local split results to be split again, there is a risk of
1376 // creating infinite loops. It is tempting to require that the new live
1377 // ranges have less instructions than the original. That would guarantee
1378 // convergence, but it is too strict. A live range with 3 instructions can be
1379 // split 2+3 (including the COPY), and we want to allow that.
1380 //
1381 // Instead we use these rules:
1382 //
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001383 // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001384 // noop split, of course).
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001385 // 2. Require progress be made for ranges with getStage() == RS_Split2. All
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001386 // the new ranges must have fewer instructions than before the split.
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001387 // 3. New ranges with the same number of instructions are marked RS_Split2,
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001388 // smaller ranges are marked RS_New.
1389 //
1390 // These rules allow a 3 -> 2+3 split once, which we need. They also prevent
1391 // excessive splitting and infinite loops.
1392 //
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001393 bool ProgressRequired = getStage(VirtReg) >= RS_Split2;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001394
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001395 // Best split candidate.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001396 unsigned BestBefore = NumGaps;
1397 unsigned BestAfter = 0;
1398 float BestDiff = 0;
1399
Jakob Stoklund Olesen40a42a22011-03-04 00:58:40 +00001400 const float blockFreq = SpillPlacer->getBlockFrequency(BI.MBB->getNumber());
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001401 SmallVector<float, 8> GapWeight;
1402
1403 Order.rewind();
1404 while (unsigned PhysReg = Order.next()) {
1405 // Keep track of the largest spill weight that would need to be evicted in
1406 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1407 calcGapWeights(PhysReg, GapWeight);
1408
Jakob Stoklund Olesena6d513f2012-02-11 00:42:18 +00001409 // Remove any gaps with regmask clobbers.
1410 if (clobberedByRegMask(PhysReg))
1411 for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i)
1412 GapWeight[RegMaskGaps[i]] = HUGE_VALF;
1413
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001414 // Try to find the best sequence of gaps to close.
1415 // The new spill weight must be larger than any gap interference.
1416
1417 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001418 unsigned SplitBefore = 0, SplitAfter = 1;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001419
1420 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1421 // It is the spill weight that needs to be evicted.
1422 float MaxGap = GapWeight[0];
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001423
1424 for (;;) {
1425 // Live before/after split?
1426 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1427 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1428
1429 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1430 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1431 << " i=" << MaxGap);
1432
1433 // Stop before the interval gets so big we wouldn't be making progress.
1434 if (!LiveBefore && !LiveAfter) {
1435 DEBUG(dbgs() << " all\n");
1436 break;
1437 }
1438 // Should the interval be extended or shrunk?
1439 bool Shrink = true;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001440
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001441 // How many gaps would the new range have?
1442 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1443
1444 // Legally, without causing looping?
1445 bool Legal = !ProgressRequired || NewGaps < NumGaps;
1446
1447 if (Legal && MaxGap < HUGE_VALF) {
1448 // Estimate the new spill weight. Each instruction reads or writes the
1449 // register. Conservatively assume there are no read-modify-write
1450 // instructions.
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001451 //
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001452 // Try to guess the size of the new interval.
1453 const float EstWeight = normalizeSpillWeight(blockFreq * (NewGaps + 1),
1454 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1455 (LiveBefore + LiveAfter)*SlotIndex::InstrDist);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001456 // Would this split be possible to allocate?
1457 // Never allocate all gaps, we wouldn't be making progress.
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001458 DEBUG(dbgs() << " w=" << EstWeight);
1459 if (EstWeight * Hysteresis >= MaxGap) {
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001460 Shrink = false;
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001461 float Diff = EstWeight - MaxGap;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001462 if (Diff > BestDiff) {
1463 DEBUG(dbgs() << " (best)");
Jakob Stoklund Olesen66446c82011-04-30 05:07:46 +00001464 BestDiff = Hysteresis * Diff;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001465 BestBefore = SplitBefore;
1466 BestAfter = SplitAfter;
1467 }
1468 }
1469 }
1470
1471 // Try to shrink.
1472 if (Shrink) {
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001473 if (++SplitBefore < SplitAfter) {
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001474 DEBUG(dbgs() << " shrink\n");
1475 // Recompute the max when necessary.
1476 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1477 MaxGap = GapWeight[SplitBefore];
1478 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1479 MaxGap = std::max(MaxGap, GapWeight[i]);
1480 }
1481 continue;
1482 }
1483 MaxGap = 0;
1484 }
1485
1486 // Try to extend the interval.
1487 if (SplitAfter >= NumGaps) {
1488 DEBUG(dbgs() << " end\n");
1489 break;
1490 }
1491
1492 DEBUG(dbgs() << " extend\n");
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001493 MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001494 }
1495 }
1496
1497 // Didn't find any candidates?
1498 if (BestBefore == NumGaps)
1499 return 0;
1500
1501 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1502 << '-' << Uses[BestAfter] << ", " << BestDiff
1503 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1504
Jakob Stoklund Olesen92a55f42011-03-09 00:57:29 +00001505 LiveRangeEdit LREdit(VirtReg, NewVRegs, this);
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001506 SE->reset(LREdit);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001507
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001508 SE->openIntv();
1509 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1510 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1511 SE->useIntv(SegStart, SegStop);
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001512 SmallVector<unsigned, 8> IntvMap;
1513 SE->finish(&IntvMap);
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001514 DebugVars->splitRegister(VirtReg.reg, LREdit.regs());
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001515
1516 // If the new range has the same number of instructions as before, mark it as
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001517 // RS_Split2 so the next split will be forced to make progress. Otherwise,
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001518 // leave the new intervals as RS_New so they can compete.
1519 bool LiveBefore = BestBefore != 0 || BI.LiveIn;
1520 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut;
1521 unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter;
1522 if (NewGaps >= NumGaps) {
1523 DEBUG(dbgs() << "Tagging non-progress ranges: ");
1524 assert(!ProgressRequired && "Didn't make progress when it was required.");
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001525 for (unsigned i = 0, e = IntvMap.size(); i != e; ++i)
1526 if (IntvMap[i] == 1) {
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001527 setStage(*LREdit.get(i), RS_Split2);
Jakob Stoklund Olesenb3e705f2011-06-06 23:55:20 +00001528 DEBUG(dbgs() << PrintReg(LREdit.get(i)->reg));
1529 }
1530 DEBUG(dbgs() << '\n');
1531 }
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +00001532 ++NumLocalSplits;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001533
1534 return 0;
1535}
1536
1537//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001538// Live Range Splitting
1539//===----------------------------------------------------------------------===//
1540
1541/// trySplit - Try to split VirtReg or one of its interferences, making it
1542/// assignable.
1543/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1544unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
1545 SmallVectorImpl<LiveInterval*>&NewVRegs) {
Jakob Stoklund Olesenccfa4462011-08-05 23:50:33 +00001546 // Ranges must be Split2 or less.
1547 if (getStage(VirtReg) >= RS_Spill)
1548 return 0;
1549
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001550 // Local intervals are handled separately.
Jakob Stoklund Olesena2ebf602011-02-19 00:38:40 +00001551 if (LIS->intervalIsInOneMBB(VirtReg)) {
1552 NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001553 SA->analyze(&VirtReg);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001554 return tryLocalSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesena2ebf602011-02-19 00:38:40 +00001555 }
1556
1557 NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001558
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001559 SA->analyze(&VirtReg);
1560
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +00001561 // FIXME: SplitAnalysis may repair broken live ranges coming from the
1562 // coalescer. That may cause the range to become allocatable which means that
1563 // tryRegionSplit won't be making progress. This check should be replaced with
1564 // an assertion when the coalescer is fixed.
1565 if (SA->didRepairRange()) {
1566 // VirtReg has changed, so all cached queries are invalid.
Jakob Stoklund Olesenbdda37d2011-05-10 17:37:41 +00001567 invalidateVirtRegs();
Jakob Stoklund Olesen7d6b6a02011-05-03 20:42:13 +00001568 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1569 return PhysReg;
1570 }
1571
Jakob Stoklund Olesen49743b12011-07-25 15:25:43 +00001572 // First try to split around a region spanning multiple blocks. RS_Split2
1573 // ranges already made dubious progress with region splitting, so they go
1574 // straight to single block splitting.
1575 if (getStage(VirtReg) < RS_Split2) {
1576 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
1577 if (PhysReg || !NewVRegs.empty())
1578 return PhysReg;
1579 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001580
Jakob Stoklund Olesendab35d32011-08-05 23:04:18 +00001581 // Then isolate blocks.
1582 return tryBlockSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001583}
1584
1585
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001586//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001587// Main Entry Point
1588//===----------------------------------------------------------------------===//
1589
1590unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001591 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesene7c2c152012-02-09 18:25:05 +00001592 // Check if VirtReg is live across any calls.
1593 UsableRegs.clear();
1594 if (LIS->checkRegMaskInterference(VirtReg, UsableRegs))
1595 DEBUG(dbgs() << "Live across regmasks.\n");
1596
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001597 // First try assigning a free register.
Jakob Stoklund Olesen5f2316a2011-06-03 20:34:53 +00001598 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo);
Jakob Stoklund Olesen6bfba2e2011-04-20 18:19:48 +00001599 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1600 return PhysReg;
Andrew Trickb853e6c2010-12-09 18:15:21 +00001601
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +00001602 LiveRangeStage Stage = getStage(VirtReg);
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001603 DEBUG(dbgs() << StageName[Stage]
1604 << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n');
Jakob Stoklund Olesenb8d936b2011-05-25 23:58:36 +00001605
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001606 // Try to evict a less worthy live range, but only for ranges from the primary
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001607 // queue. The RS_Split ranges already failed to do this, and they should not
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001608 // get a second chance until they have been split.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001609 if (Stage != RS_Split)
Jakob Stoklund Olesen76395c92011-06-01 18:45:02 +00001610 if (unsigned PhysReg = tryEvict(VirtReg, Order, NewVRegs))
1611 return PhysReg;
Andrew Trickb853e6c2010-12-09 18:15:21 +00001612
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001613 assert(NewVRegs.empty() && "Cannot append to existing NewVRegs");
1614
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +00001615 // The first time we see a live range, don't try to split or spill.
1616 // Wait until the second time, when all smaller ranges have been allocated.
1617 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001618 if (Stage < RS_Split) {
1619 setStage(VirtReg, RS_Split);
Jakob Stoklund Olesenc1655e12011-03-19 23:02:47 +00001620 DEBUG(dbgs() << "wait for second round\n");
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +00001621 NewVRegs.push_back(&VirtReg);
1622 return 0;
1623 }
1624
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +00001625 // If we couldn't allocate a register from spilling, there is probably some
1626 // invalid inline assembly. The base class wil report it.
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001627 if (Stage >= RS_Done || !VirtReg.isSpillable())
Jakob Stoklund Olesenbf4e10f2011-05-06 21:58:30 +00001628 return ~0u;
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001629
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +00001630 // Try splitting VirtReg or interferences.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001631 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
1632 if (PhysReg || !NewVRegs.empty())
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +00001633 return PhysReg;
1634
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001635 // Finally spill VirtReg itself.
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001636 NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen47dbf6c2011-03-10 01:51:42 +00001637 LiveRangeEdit LRE(VirtReg, NewVRegs, this);
1638 spiller().spill(LRE);
Jakob Stoklund Olesenfa89a032011-07-25 15:25:41 +00001639 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001640
Jakob Stoklund Olesenc46570d2011-03-16 22:56:08 +00001641 if (VerifyEnabled)
1642 MF->verify(this, "After spilling");
1643
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001644 // The live virtual register requesting allocation was spilled, so tell
1645 // the caller not to allocate anything during this round.
1646 return 0;
1647}
1648
1649bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
1650 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
1651 << "********** Function: "
1652 << ((Value*)mf.getFunction())->getName() << '\n');
1653
1654 MF = &mf;
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +00001655 if (VerifyEnabled)
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +00001656 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +00001657
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +00001658 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001659 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +00001660 DomTree = &getAnalysis<MachineDominatorTree>();
Jakob Stoklund Olesenf6dff842010-12-10 22:54:44 +00001661 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +00001662 Loops = &getAnalysis<MachineLoopInfo>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001663 Bundles = &getAnalysis<EdgeBundles>();
1664 SpillPlacer = &getAnalysis<SpillPlacement>();
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +00001665 DebugVars = &getAnalysis<LiveDebugVariables>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001666
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +00001667 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001668 SE.reset(new SplitEditor(*SA, *LIS, *VRM, *DomTree));
Jakob Stoklund Olesen1a988002011-07-02 01:37:09 +00001669 ExtraRegInfo.clear();
1670 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1671 NextCascade = 1;
Jakob Stoklund Olesen6ef7da02012-02-10 18:58:34 +00001672 IntfCache.init(MF, &getLiveUnion(0), Indexes, LIS, TRI);
Jakob Stoklund Olesen00005782011-07-26 23:41:46 +00001673 GlobalCand.resize(32); // This will grow as needed.
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +00001674
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001675 allocatePhysRegs();
1676 addMBBLiveIns(MF);
Jakob Stoklund Olesen8a61da82011-02-08 21:13:03 +00001677 LIS->addKillFlags();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001678
1679 // Run rewriter
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001680 {
1681 NamedRegionTimer T("Rewriter", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesenba05c012011-02-18 22:03:18 +00001682 VRM->rewrite(Indexes);
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001683 }
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001684
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +00001685 // Write out new DBG_VALUE instructions.
Jakob Stoklund Olesenc4769022011-07-31 03:53:42 +00001686 {
1687 NamedRegionTimer T("Emit Debug Info", TimerGroupName, TimePassesIsEnabled);
1688 DebugVars->emitDebugValues(VRM);
1689 }
Jakob Stoklund Olesencfafc542011-04-05 21:40:37 +00001690
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001691 // The pass output is in VirtRegMap. Release all the transient data.
1692 releaseMemory();
1693
1694 return true;
1695}