blob: 923ec3e80030b590b04a36140c5fcdcd36801b80 [file] [log] [blame]
Jakob Stoklund Olesenb8812a12010-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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesen4d7432e2010-12-10 22:21:05 +000017#include "AllocationOrder.h"
Jakob Stoklund Olesen91cbcaf2011-04-02 06:03:35 +000018#include "InterferenceCache.h"
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +000019#include "LiveDebugVariables.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000020#include "RegAllocBase.h"
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +000021#include "SpillPlacement.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "Spiller.h"
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +000023#include "SplitKit.h"
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000024#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000025#include "llvm/Analysis/AliasAnalysis.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000026#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +000027#include "llvm/CodeGen/EdgeBundles.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000028#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000029#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000030#include "llvm/CodeGen/LiveRegMatrix.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000031#include "llvm/CodeGen/LiveStackAnalysis.h"
Benjamin Kramere2a1d892013-06-17 19:00:36 +000032#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +000033#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000034#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000035#include "llvm/CodeGen/MachineLoopInfo.h"
36#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000037#include "llvm/CodeGen/RegAllocRegistry.h"
Quentin Colombet1fb3362a2014-01-02 22:47:22 +000038#include "llvm/CodeGen/RegisterClassInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000039#include "llvm/CodeGen/VirtRegMap.h"
Quentin Colombet96bd2a12014-04-04 02:05:21 +000040#include "llvm/IR/LLVMContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000041#include "llvm/PassAnalysisSupport.h"
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +000042#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000043#include "llvm/Support/Debug.h"
44#include "llvm/Support/ErrorHandling.h"
Jakob Stoklund Olesen92da7052010-12-11 00:19:56 +000045#include "llvm/Support/Timer.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000046#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +000047#include <queue>
48
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000049using namespace llvm;
50
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000051STATISTIC(NumGlobalSplits, "Number of split global live ranges");
52STATISTIC(NumLocalSplits, "Number of split local live ranges");
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000053STATISTIC(NumEvicted, "Number of interferences evicted");
54
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +000055static cl::opt<SplitEditor::ComplementSpillMode>
56SplitSpillMode("split-spill-mode", cl::Hidden,
57 cl::desc("Spill mode for splitting live ranges"),
58 cl::values(clEnumValN(SplitEditor::SM_Partition, "default", "Default"),
59 clEnumValN(SplitEditor::SM_Size, "size", "Optimize for size"),
60 clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed"),
61 clEnumValEnd),
62 cl::init(SplitEditor::SM_Partition));
63
Quentin Colombet87769712014-02-05 22:13:59 +000064static cl::opt<unsigned>
65LastChanceRecoloringMaxDepth("lcr-max-depth", cl::Hidden,
66 cl::desc("Last chance recoloring max depth"),
67 cl::init(5));
68
69static cl::opt<unsigned> LastChanceRecoloringMaxInterference(
70 "lcr-max-interf", cl::Hidden,
71 cl::desc("Last chance recoloring maximum number of considered"
72 " interference at a time"),
73 cl::init(8));
74
Manman Ren78cf02a2014-03-25 00:16:25 +000075// FIXME: Find a good default for this flag and remove the flag.
76static cl::opt<unsigned>
77CSRFirstTimeCost("regalloc-csr-first-time-cost",
78 cl::desc("Cost for first time use of callee-saved register."),
79 cl::init(0), cl::Hidden);
80
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000081static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
82 createGreedyRegisterAllocator);
83
84namespace {
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +000085class RAGreedy : public MachineFunctionPass,
86 public RegAllocBase,
87 private LiveRangeEdit::Delegate {
Quentin Colombet87769712014-02-05 22:13:59 +000088 // Convenient shortcuts.
89 typedef std::priority_queue<std::pair<unsigned, unsigned> > PQueue;
90 typedef SmallPtrSet<LiveInterval *, 4> SmallLISet;
91 typedef SmallSet<unsigned, 16> SmallVirtRegSet;
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +000092
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000093 // context
94 MachineFunction *MF;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000095
Quentin Colombet1fb3362a2014-01-02 22:47:22 +000096 // Shortcuts to some useful interface.
97 const TargetInstrInfo *TII;
98 const TargetRegisterInfo *TRI;
99 RegisterClassInfo RCI;
100
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000101 // analyses
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000102 SlotIndexes *Indexes;
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000103 MachineBlockFrequencyInfo *MBFI;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000104 MachineDominatorTree *DomTree;
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +0000105 MachineLoopInfo *Loops;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000106 EdgeBundles *Bundles;
107 SpillPlacement *SpillPlacer;
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000108 LiveDebugVariables *DebugVars;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000109
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000110 // state
Ahmed Charles56440fd2014-03-06 05:51:42 +0000111 std::unique_ptr<Spiller> SpillerInstance;
Quentin Colombet87769712014-02-05 22:13:59 +0000112 PQueue Queue;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000113 unsigned NextCascade;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000114
115 // Live ranges pass through a number of stages as we try to allocate them.
116 // Some of the stages may also create new live ranges:
117 //
118 // - Region splitting.
119 // - Per-block splitting.
120 // - Local splitting.
121 // - Spilling.
122 //
123 // Ranges produced by one of the stages skip the previous stages when they are
124 // dequeued. This improves performance because we can skip interference checks
125 // that are unlikely to give any results. It also guarantees that the live
126 // range splitting algorithm terminates, something that is otherwise hard to
127 // ensure.
128 enum LiveRangeStage {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000129 /// Newly created live range that has never been queued.
130 RS_New,
131
132 /// Only attempt assignment and eviction. Then requeue as RS_Split.
133 RS_Assign,
134
135 /// Attempt live range splitting if assignment is impossible.
136 RS_Split,
137
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000138 /// Attempt more aggressive live range splitting that is guaranteed to make
139 /// progress. This is used for split products that may not be making
140 /// progress.
141 RS_Split2,
142
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000143 /// Live range will be spilled. No more splitting will be attempted.
144 RS_Spill,
145
146 /// There is nothing more we can do to this live range. Abort compilation
147 /// if it can't be assigned.
148 RS_Done
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000149 };
150
Quentin Colombet96bd2a12014-04-04 02:05:21 +0000151 // Enum CutOffStage to keep a track whether the register allocation failed
152 // because of the cutoffs encountered in last chance recoloring.
153 // Note: This is used as bitmask. New value should be next power of 2.
154 enum CutOffStage {
155 // No cutoffs encountered
156 CO_None = 0,
157
158 // lcr-max-depth cutoff encountered
159 CO_Depth = 1,
160
161 // lcr-max-interf cutoff encountered
162 CO_Interf = 2
163 };
164
165 uint8_t CutOffInfo;
166
Eli Friedman78bffa52013-09-10 23:18:14 +0000167#ifndef NDEBUG
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000168 static const char *const StageName[];
Eli Friedman78bffa52013-09-10 23:18:14 +0000169#endif
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000170
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000171 // RegInfo - Keep additional information about each live range.
172 struct RegInfo {
173 LiveRangeStage Stage;
174
175 // Cascade - Eviction loop prevention. See canEvictInterference().
176 unsigned Cascade;
177
178 RegInfo() : Stage(RS_New), Cascade(0) {}
179 };
180
181 IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000182
183 LiveRangeStage getStage(const LiveInterval &VirtReg) const {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000184 return ExtraRegInfo[VirtReg.reg].Stage;
185 }
186
187 void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) {
188 ExtraRegInfo.resize(MRI->getNumVirtRegs());
189 ExtraRegInfo[VirtReg.reg].Stage = Stage;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000190 }
191
192 template<typename Iterator>
193 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000194 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000195 for (;Begin != End; ++Begin) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000196 unsigned Reg = *Begin;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000197 if (ExtraRegInfo[Reg].Stage == RS_New)
198 ExtraRegInfo[Reg].Stage = NewStage;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000199 }
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000200 }
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000201
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000202 /// Cost of evicting interference.
203 struct EvictionCost {
204 unsigned BrokenHints; ///< Total number of broken hints.
205 float MaxWeight; ///< Maximum spill weight evicted.
206
Andrew Trick3621b8a2013-11-22 19:07:38 +0000207 EvictionCost(): BrokenHints(0), MaxWeight(0) {}
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000208
Andrew Trick84852572013-07-25 18:35:14 +0000209 bool isMax() const { return BrokenHints == ~0u; }
210
Andrew Trick3621b8a2013-11-22 19:07:38 +0000211 void setMax() { BrokenHints = ~0u; }
212
213 void setBrokenHints(unsigned NHints) { BrokenHints = NHints; }
214
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000215 bool operator<(const EvictionCost &O) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +0000216 return std::tie(BrokenHints, MaxWeight) <
217 std::tie(O.BrokenHints, O.MaxWeight);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000218 }
219 };
220
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000221 // splitting state.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000222 std::unique_ptr<SplitAnalysis> SA;
223 std::unique_ptr<SplitEditor> SE;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000224
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000225 /// Cached per-block interference maps
226 InterferenceCache IntfCache;
227
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000228 /// All basic blocks where the current register has uses.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000229 SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000230
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000231 /// Global live range splitting candidate info.
232 struct GlobalSplitCandidate {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000233 // Register intended for assignment, or 0.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000234 unsigned PhysReg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000235
236 // SplitKit interval index for this candidate.
237 unsigned IntvIdx;
238
239 // Interference for PhysReg.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000240 InterferenceCache::Cursor Intf;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000241
242 // Bundles where this candidate should be live.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000243 BitVector LiveBundles;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000244 SmallVector<unsigned, 8> ActiveBlocks;
245
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000246 void reset(InterferenceCache &Cache, unsigned Reg) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000247 PhysReg = Reg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000248 IntvIdx = 0;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000249 Intf.setPhysReg(Cache, Reg);
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000250 LiveBundles.clear();
251 ActiveBlocks.clear();
252 }
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000253
254 // Set B[i] = C for every live bundle where B[i] was NoCand.
255 unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) {
256 unsigned Count = 0;
257 for (int i = LiveBundles.find_first(); i >= 0;
258 i = LiveBundles.find_next(i))
259 if (B[i] == NoCand) {
260 B[i] = C;
261 Count++;
262 }
263 return Count;
264 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000265 };
266
Aditya Nandakumarc1fd0dd2013-11-19 23:51:32 +0000267 /// Candidate info for each PhysReg in AllocationOrder.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000268 /// This vector never shrinks, but grows to the size of the largest register
269 /// class.
270 SmallVector<GlobalSplitCandidate, 32> GlobalCand;
271
Alp Toker61007d82014-03-02 03:20:38 +0000272 enum : unsigned { NoCand = ~0u };
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000273
274 /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to
275 /// NoCand which indicates the stack interval.
276 SmallVector<unsigned, 32> BundleCand;
277
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000278public:
279 RAGreedy();
280
281 /// Return the pass name.
Craig Topper4584cd52014-03-07 09:26:03 +0000282 const char* getPassName() const override {
Jakob Stoklund Olesen92da7052010-12-11 00:19:56 +0000283 return "Greedy Register Allocator";
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000284 }
285
286 /// RAGreedy analysis usage.
Craig Topper4584cd52014-03-07 09:26:03 +0000287 void getAnalysisUsage(AnalysisUsage &AU) const override;
288 void releaseMemory() override;
289 Spiller &spiller() override { return *SpillerInstance; }
290 void enqueue(LiveInterval *LI) override;
291 LiveInterval *dequeue() override;
292 unsigned selectOrSplit(LiveInterval&, SmallVectorImpl<unsigned>&) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000293
294 /// Perform register allocation.
Craig Topper4584cd52014-03-07 09:26:03 +0000295 bool runOnMachineFunction(MachineFunction &mf) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000296
297 static char ID;
Andrew Trickccef0982010-12-09 18:15:21 +0000298
299private:
Quentin Colombet87769712014-02-05 22:13:59 +0000300 unsigned selectOrSplitImpl(LiveInterval &, SmallVectorImpl<unsigned> &,
301 SmallVirtRegSet &, unsigned = 0);
302
Craig Topper4584cd52014-03-07 09:26:03 +0000303 bool LRE_CanEraseVirtReg(unsigned) override;
304 void LRE_WillShrinkVirtReg(unsigned) override;
305 void LRE_DidCloneVirtReg(unsigned, unsigned) override;
Quentin Colombet87769712014-02-05 22:13:59 +0000306 void enqueue(PQueue &CurQueue, LiveInterval *LI);
307 LiveInterval *dequeue(PQueue &CurQueue);
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000308
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000309 BlockFrequency calcSpillCost();
310 bool addSplitConstraints(InterferenceCache::Cursor, BlockFrequency&);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000311 void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>);
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000312 void growRegion(GlobalSplitCandidate &Cand);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000313 BlockFrequency calcGlobalSplitCost(GlobalSplitCandidate&);
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +0000314 bool calcCompactRegion(GlobalSplitCandidate&);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000315 void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000316 void calcGapWeights(unsigned, SmallVectorImpl<float>&);
Andrew Trick8bb0a252013-07-25 18:35:19 +0000317 unsigned canReassign(LiveInterval &VirtReg, unsigned PhysReg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000318 bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool);
319 bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&);
320 void evictInterference(LiveInterval&, unsigned,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000321 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000322 bool mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
323 SmallLISet &RecoloringCandidates,
324 const SmallVirtRegSet &FixedRegisters);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000325
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000326 unsigned tryAssign(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000327 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000328 unsigned tryEvict(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000329 SmallVectorImpl<unsigned>&, unsigned = ~0u);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000330 unsigned tryRegionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000331 SmallVectorImpl<unsigned>&);
Manman Ren9db66b32014-03-24 23:23:42 +0000332 /// Calculate cost of region splitting.
333 unsigned calculateRegionSplitCost(LiveInterval &VirtReg,
334 AllocationOrder &Order,
335 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +0000336 unsigned &NumCands, bool IgnoreCSR);
Manman Ren9db66b32014-03-24 23:23:42 +0000337 /// Perform region splitting.
338 unsigned doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
339 bool HasCompact,
340 SmallVectorImpl<unsigned> &NewVRegs);
Manman Ren9dee4492014-03-27 21:21:57 +0000341 /// Check other options before using a callee-saved register for the first
342 /// time.
343 unsigned tryAssignCSRFirstTime(LiveInterval &VirtReg, AllocationOrder &Order,
344 unsigned PhysReg, unsigned &CostPerUseLimit,
345 SmallVectorImpl<unsigned> &NewVRegs);
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +0000346 unsigned tryBlockSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000347 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +0000348 unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000349 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000350 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000351 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000352 unsigned trySplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000353 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000354 unsigned tryLastChanceRecoloring(LiveInterval &, AllocationOrder &,
355 SmallVectorImpl<unsigned> &,
356 SmallVirtRegSet &, unsigned);
357 bool tryRecoloringCandidates(PQueue &, SmallVectorImpl<unsigned> &,
358 SmallVirtRegSet &, unsigned);
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000359};
360} // end anonymous namespace
361
362char RAGreedy::ID = 0;
363
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000364#ifndef NDEBUG
365const char *const RAGreedy::StageName[] = {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000366 "RS_New",
367 "RS_Assign",
368 "RS_Split",
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000369 "RS_Split2",
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000370 "RS_Spill",
371 "RS_Done"
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000372};
373#endif
374
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000375// Hysteresis to use when comparing floats.
376// This helps stabilize decisions based on float comparisons.
NAKAMURA Takumia71003a2014-02-04 06:29:38 +0000377const float Hysteresis = (2007 / 2048.0f); // 0.97998046875
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000378
379
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000380FunctionPass* llvm::createGreedyRegisterAllocator() {
381 return new RAGreedy();
382}
383
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000384RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000385 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000386 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000387 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
388 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Rafael Espindola676c4052011-06-26 22:34:10 +0000389 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Tricke1c034f2012-01-17 06:55:03 +0000390 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000391 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
392 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
393 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
394 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000395 initializeLiveRegMatrixPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000396 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
397 initializeSpillPlacementPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000398}
399
400void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
401 AU.setPreservesCFG();
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000402 AU.addRequired<MachineBlockFrequencyInfo>();
403 AU.addPreserved<MachineBlockFrequencyInfo>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000404 AU.addRequired<AliasAnalysis>();
405 AU.addPreserved<AliasAnalysis>();
406 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesen12243122012-06-08 23:44:45 +0000407 AU.addPreserved<LiveIntervals>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000408 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000409 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000410 AU.addRequired<LiveDebugVariables>();
411 AU.addPreserved<LiveDebugVariables>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000412 AU.addRequired<LiveStacks>();
413 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000414 AU.addRequired<MachineDominatorTree>();
415 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000416 AU.addRequired<MachineLoopInfo>();
417 AU.addPreserved<MachineLoopInfo>();
418 AU.addRequired<VirtRegMap>();
419 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000420 AU.addRequired<LiveRegMatrix>();
421 AU.addPreserved<LiveRegMatrix>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000422 AU.addRequired<EdgeBundles>();
423 AU.addRequired<SpillPlacement>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000424 MachineFunctionPass::getAnalysisUsage(AU);
425}
426
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000427
428//===----------------------------------------------------------------------===//
429// LiveRangeEdit delegate methods
430//===----------------------------------------------------------------------===//
431
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000432bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000433 if (VRM->hasPhys(VirtReg)) {
434 Matrix->unassign(LIS->getInterval(VirtReg));
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000435 return true;
436 }
437 // Unassigned virtreg is probably in the priority queue.
438 // RegAllocBase will erase it after dequeueing.
439 return false;
440}
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000441
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000442void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000443 if (!VRM->hasPhys(VirtReg))
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000444 return;
445
446 // Register is assigned, put it back on the queue for reassignment.
447 LiveInterval &LI = LIS->getInterval(VirtReg);
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000448 Matrix->unassign(LI);
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000449 enqueue(&LI);
450}
451
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000452void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
Jakob Stoklund Olesen811b9c42011-09-14 17:34:37 +0000453 // Cloning a register we haven't even heard about yet? Just ignore it.
454 if (!ExtraRegInfo.inBounds(Old))
455 return;
456
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000457 // LRE may clone a virtual register because dead code elimination causes it to
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000458 // be split into connected components. The new components are much smaller
459 // than the original, so they should get a new chance at being assigned.
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000460 // same stage as the parent.
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000461 ExtraRegInfo[Old].Stage = RS_Assign;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000462 ExtraRegInfo.grow(New);
463 ExtraRegInfo[New] = ExtraRegInfo[Old];
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000464}
465
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000466void RAGreedy::releaseMemory() {
467 SpillerInstance.reset(0);
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000468 ExtraRegInfo.clear();
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000469 GlobalCand.clear();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000470}
471
Quentin Colombet87769712014-02-05 22:13:59 +0000472void RAGreedy::enqueue(LiveInterval *LI) { enqueue(Queue, LI); }
473
474void RAGreedy::enqueue(PQueue &CurQueue, LiveInterval *LI) {
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000475 // Prioritize live ranges by size, assigning larger ranges first.
476 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000477 const unsigned Size = LI->getSize();
478 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000479 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
480 "Can only enqueue virtual registers");
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000481 unsigned Prio;
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000482
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000483 ExtraRegInfo.grow(Reg);
484 if (ExtraRegInfo[Reg].Stage == RS_New)
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000485 ExtraRegInfo[Reg].Stage = RS_Assign;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000486
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000487 if (ExtraRegInfo[Reg].Stage == RS_Split) {
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000488 // Unsplit ranges that couldn't be allocated immediately are deferred until
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +0000489 // everything else has been allocated.
490 Prio = Size;
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000491 } else {
Andrew Trick52a00932014-02-26 22:07:26 +0000492 // Giant live ranges fall back to the global assignment heuristic, which
493 // prevents excessive spilling in pathological cases.
494 bool ReverseLocal = TRI->reverseLocalAssignment();
Andrew Trickb1531e52014-02-27 21:37:33 +0000495 bool ForceGlobal = !ReverseLocal && TRI->mayOverrideLocalAssignment() &&
Andrew Trick52a00932014-02-26 22:07:26 +0000496 (Size / SlotIndex::InstrDist) > (2 * MRI->getRegClass(Reg)->getNumRegs());
497
498 if (ExtraRegInfo[Reg].Stage == RS_Assign && !ForceGlobal && !LI->empty() &&
Andrew Trick84852572013-07-25 18:35:14 +0000499 LIS->intervalIsInOneMBB(*LI)) {
500 // Allocate original local ranges in linear instruction order. Since they
501 // are singly defined, this produces optimal coloring in the absence of
502 // global interference and other constraints.
Andrew Trick52a00932014-02-26 22:07:26 +0000503 if (!ReverseLocal)
Andrew Trick2d8826a2013-12-11 03:40:15 +0000504 Prio = LI->beginIndex().getInstrDistance(Indexes->getLastIndex());
505 else {
506 // Allocating bottom up may allow many short LRGs to be assigned first
507 // to one of the cheap registers. This could be much faster for very
508 // large blocks on targets with many physical registers.
509 Prio = Indexes->getZeroIndex().getInstrDistance(LI->beginIndex());
510 }
Andrew Trick84852572013-07-25 18:35:14 +0000511 }
512 else {
513 // Allocate global and split ranges in long->short order. Long ranges that
514 // don't fit should be spilled (or split) ASAP so they don't create
515 // interference. Mark a bit to prioritize global above local ranges.
516 Prio = (1u << 29) + Size;
517 }
518 // Mark a higher bit to prioritize global and local above RS_Split.
519 Prio |= (1u << 31);
Jakob Stoklund Olesenb51f65c2011-02-23 00:56:56 +0000520
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000521 // Boost ranges that have a physical register hint.
Jakob Stoklund Olesen74052b02012-12-03 23:23:50 +0000522 if (VRM->hasKnownPreference(Reg))
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000523 Prio |= (1u << 30);
524 }
Andrew Trickf4b1ee32013-07-25 18:35:22 +0000525 // The virtual register number is a tie breaker for same-sized ranges.
526 // Give lower vreg numbers higher priority to assign them first.
Quentin Colombet87769712014-02-05 22:13:59 +0000527 CurQueue.push(std::make_pair(Prio, ~Reg));
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000528}
529
Quentin Colombet87769712014-02-05 22:13:59 +0000530LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); }
531
532LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) {
533 if (CurQueue.empty())
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000534 return 0;
Quentin Colombet87769712014-02-05 22:13:59 +0000535 LiveInterval *LI = &LIS->getInterval(~CurQueue.top().second);
536 CurQueue.pop();
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000537 return LI;
538}
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000539
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000540
541//===----------------------------------------------------------------------===//
542// Direct Assignment
543//===----------------------------------------------------------------------===//
544
545/// tryAssign - Try to assign VirtReg to an available register.
546unsigned RAGreedy::tryAssign(LiveInterval &VirtReg,
547 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000548 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000549 Order.rewind();
550 unsigned PhysReg;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000551 while ((PhysReg = Order.next()))
552 if (!Matrix->checkInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000553 break;
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000554 if (!PhysReg || Order.isHint())
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000555 return PhysReg;
556
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000557 // PhysReg is available, but there may be a better choice.
558
559 // If we missed a simple hint, try to cheaply evict interference from the
560 // preferred register.
561 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg))
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000562 if (Order.isHint(Hint)) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000563 DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n');
Andrew Trick3621b8a2013-11-22 19:07:38 +0000564 EvictionCost MaxCost;
565 MaxCost.setBrokenHints(1);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000566 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
567 evictInterference(VirtReg, Hint, NewVRegs);
568 return Hint;
569 }
570 }
571
572 // Try to evict interference from a cheaper alternative.
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000573 unsigned Cost = TRI->getCostPerUse(PhysReg);
574
575 // Most registers have 0 additional cost.
576 if (!Cost)
577 return PhysReg;
578
579 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost
580 << '\n');
581 unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost);
582 return CheapReg ? CheapReg : PhysReg;
583}
584
585
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000586//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000587// Interference eviction
588//===----------------------------------------------------------------------===//
589
Andrew Trick8bb0a252013-07-25 18:35:19 +0000590unsigned RAGreedy::canReassign(LiveInterval &VirtReg, unsigned PrevReg) {
591 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo);
592 unsigned PhysReg;
593 while ((PhysReg = Order.next())) {
594 if (PhysReg == PrevReg)
595 continue;
596
597 MCRegUnitIterator Units(PhysReg, TRI);
598 for (; Units.isValid(); ++Units) {
599 // Instantiate a "subquery", not to be confused with the Queries array.
600 LiveIntervalUnion::Query subQ(&VirtReg, &Matrix->getLiveUnions()[*Units]);
601 if (subQ.checkInterference())
602 break;
603 }
604 // If no units have interference, break out with the current PhysReg.
605 if (!Units.isValid())
606 break;
607 }
608 if (PhysReg)
609 DEBUG(dbgs() << "can reassign: " << VirtReg << " from "
610 << PrintReg(PrevReg, TRI) << " to " << PrintReg(PhysReg, TRI)
611 << '\n');
612 return PhysReg;
613}
614
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000615/// shouldEvict - determine if A should evict the assigned live range B. The
616/// eviction policy defined by this function together with the allocation order
617/// defined by enqueue() decides which registers ultimately end up being split
618/// and spilled.
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000619///
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000620/// Cascade numbers are used to prevent infinite loops if this function is a
621/// cyclic relation.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000622///
623/// @param A The live range to be assigned.
624/// @param IsHint True when A is about to be assigned to its preferred
625/// register.
626/// @param B The live range to be evicted.
627/// @param BreaksHint True when B is already assigned to its preferred register.
628bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint,
629 LiveInterval &B, bool BreaksHint) {
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000630 bool CanSplit = getStage(B) < RS_Spill;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000631
632 // Be fairly aggressive about following hints as long as the evictee can be
633 // split.
634 if (CanSplit && IsHint && !BreaksHint)
635 return true;
636
Andrew Trick059e8002013-11-22 19:07:42 +0000637 if (A.weight > B.weight) {
638 DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight << '\n');
639 return true;
640 }
641 return false;
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000642}
643
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000644/// canEvictInterference - Return true if all interferences between VirtReg and
Manman Renfa32ca12014-02-25 19:47:15 +0000645/// PhysReg can be evicted.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000646///
647/// @param VirtReg Live range that is about to be assigned.
648/// @param PhysReg Desired register for assignment.
Dmitri Gribenko881929c2012-09-12 16:59:47 +0000649/// @param IsHint True when PhysReg is VirtReg's preferred register.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000650/// @param MaxCost Only look for cheaper candidates and update with new cost
651/// when returning true.
652/// @returns True when interference can be evicted cheaper than MaxCost.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000653bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000654 bool IsHint, EvictionCost &MaxCost) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000655 // It is only possible to evict virtual register interference.
656 if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg)
657 return false;
658
Andrew Trick84852572013-07-25 18:35:14 +0000659 bool IsLocal = LIS->intervalIsInOneMBB(VirtReg);
660
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000661 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
662 // involved in an eviction before. If a cascade number was assigned, deny
663 // evicting anything with the same or a newer cascade number. This prevents
664 // infinite eviction loops.
665 //
666 // This works out so a register without a cascade number is allowed to evict
667 // anything, and it can be evicted by anything.
668 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
669 if (!Cascade)
670 Cascade = NextCascade;
671
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000672 EvictionCost Cost;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000673 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
674 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000675 // If there is 10 or more interferences, chances are one is heavier.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000676 if (Q.collectInterferingVRegs(10) >= 10)
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000677 return false;
678
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000679 // Check if any interfering live range is heavier than MaxWeight.
680 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
681 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000682 assert(TargetRegisterInfo::isVirtualRegister(Intf->reg) &&
683 "Only expecting virtual register interference from query");
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000684 // Never evict spill products. They cannot split or spill.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000685 if (getStage(*Intf) == RS_Done)
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000686 return false;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000687 // Once a live range becomes small enough, it is urgent that we find a
688 // register for it. This is indicated by an infinite spill weight. These
689 // urgent live ranges get to evict almost anything.
Jakob Stoklund Olesen05e22452012-05-30 21:46:58 +0000690 //
691 // Also allow urgent evictions of unspillable ranges from a strictly
692 // larger allocation order.
693 bool Urgent = !VirtReg.isSpillable() &&
694 (Intf->isSpillable() ||
695 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(VirtReg.reg)) <
696 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(Intf->reg)));
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000697 // Only evict older cascades or live ranges without a cascade.
698 unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade;
699 if (Cascade <= IntfCascade) {
700 if (!Urgent)
701 return false;
702 // We permit breaking cascades for urgent evictions. It should be the
703 // last resort, though, so make it really expensive.
704 Cost.BrokenHints += 10;
705 }
706 // Would this break a satisfied hint?
707 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg);
708 // Update eviction cost.
709 Cost.BrokenHints += BreaksHint;
710 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
711 // Abort if this would be too expensive.
712 if (!(Cost < MaxCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000713 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000714 if (Urgent)
715 continue;
Andrew Trickc2ab53a2013-11-29 23:49:38 +0000716 // Apply the eviction policy for non-urgent evictions.
717 if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
718 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000719 // If !MaxCost.isMax(), then we're just looking for a cheap register.
720 // Evicting another local live range in this case could lead to suboptimal
721 // coloring.
Andrew Trick8bb0a252013-07-25 18:35:19 +0000722 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) &&
723 !canReassign(*Intf, PhysReg)) {
Andrew Trick84852572013-07-25 18:35:14 +0000724 return false;
Andrew Trick8bb0a252013-07-25 18:35:19 +0000725 }
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000726 }
727 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000728 MaxCost = Cost;
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000729 return true;
730}
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000731
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000732/// evictInterference - Evict any interferring registers that prevent VirtReg
733/// from being assigned to Physreg. This assumes that canEvictInterference
734/// returned true.
735void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000736 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000737 // Make sure that VirtReg has a cascade number, and assign that cascade
738 // number to every evicted register. These live ranges than then only be
739 // evicted by a newer cascade, preventing infinite loops.
740 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
741 if (!Cascade)
742 Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++;
743
744 DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI)
745 << " interference: Cascade " << Cascade << '\n');
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000746
747 // Collect all interfering virtregs first.
748 SmallVector<LiveInterval*, 8> Intfs;
749 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
750 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000751 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000752 ArrayRef<LiveInterval*> IVR = Q.interferingVRegs();
753 Intfs.append(IVR.begin(), IVR.end());
754 }
755
756 // Evict them second. This will invalidate the queries.
757 for (unsigned i = 0, e = Intfs.size(); i != e; ++i) {
758 LiveInterval *Intf = Intfs[i];
759 // The same VirtReg may be present in multiple RegUnits. Skip duplicates.
760 if (!VRM->hasPhys(Intf->reg))
761 continue;
762 Matrix->unassign(*Intf);
763 assert((ExtraRegInfo[Intf->reg].Cascade < Cascade ||
764 VirtReg.isSpillable() < Intf->isSpillable()) &&
765 "Cannot decrease cascade number, illegal eviction");
766 ExtraRegInfo[Intf->reg].Cascade = Cascade;
767 ++NumEvicted;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000768 NewVRegs.push_back(Intf->reg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000769 }
770}
771
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000772/// tryEvict - Try to evict all interferences for a physreg.
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +0000773/// @param VirtReg Currently unassigned virtual register.
774/// @param Order Physregs to try.
775/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000776unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
777 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000778 SmallVectorImpl<unsigned> &NewVRegs,
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000779 unsigned CostPerUseLimit) {
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000780 NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled);
781
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000782 // Keep track of the cheapest interference seen so far.
Andrew Trick3621b8a2013-11-22 19:07:38 +0000783 EvictionCost BestCost;
784 BestCost.setMax();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000785 unsigned BestPhys = 0;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000786 unsigned OrderLimit = Order.getOrder().size();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000787
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000788 // When we are just looking for a reduced cost per use, don't break any
789 // hints, and only evict smaller spill weights.
790 if (CostPerUseLimit < ~0u) {
791 BestCost.BrokenHints = 0;
792 BestCost.MaxWeight = VirtReg.weight;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000793
794 // Check of any registers in RC are below CostPerUseLimit.
795 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg.reg);
796 unsigned MinCost = RegClassInfo.getMinCost(RC);
797 if (MinCost >= CostPerUseLimit) {
798 DEBUG(dbgs() << RC->getName() << " minimum cost = " << MinCost
799 << ", no cheaper registers to be found.\n");
800 return 0;
801 }
802
803 // It is normal for register classes to have a long tail of registers with
804 // the same cost. We don't need to look at them if they're too expensive.
805 if (TRI->getCostPerUse(Order.getOrder().back()) >= CostPerUseLimit) {
806 OrderLimit = RegClassInfo.getLastCostChange(RC);
807 DEBUG(dbgs() << "Only trying the first " << OrderLimit << " regs.\n");
808 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000809 }
810
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000811 Order.rewind();
Aditya Nandakumar73f3d332013-12-05 21:18:40 +0000812 while (unsigned PhysReg = Order.next(OrderLimit)) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000813 if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit)
814 continue;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000815 // The first use of a callee-saved register in a function has cost 1.
816 // Don't start using a CSR when the CostPerUseLimit is low.
817 if (CostPerUseLimit == 1)
818 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
819 if (!MRI->isPhysRegUsed(CSR)) {
820 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
821 << PrintReg(CSR, TRI) << '\n');
822 continue;
823 }
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000824
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000825 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000826 continue;
827
828 // Best so far.
829 BestPhys = PhysReg;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000830
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000831 // Stop if the hint can be used.
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000832 if (Order.isHint())
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000833 break;
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000834 }
835
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000836 if (!BestPhys)
837 return 0;
838
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000839 evictInterference(VirtReg, BestPhys, NewVRegs);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000840 return BestPhys;
Andrew Trickccef0982010-12-09 18:15:21 +0000841}
842
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000843
844//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000845// Region Splitting
846//===----------------------------------------------------------------------===//
847
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000848/// addSplitConstraints - Fill out the SplitConstraints vector based on the
849/// interference pattern in Physreg and its aliases. Add the constraints to
850/// SpillPlacement and return the static cost of this split in Cost, assuming
851/// that all preferences in SplitConstraints are met.
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000852/// Return false if there are no bundles with positive bias.
853bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf,
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000854 BlockFrequency &Cost) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000855 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000856
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000857 // Reset interference dependent info.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000858 SplitConstraints.resize(UseBlocks.size());
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000859 BlockFrequency StaticCost = 0;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000860 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
861 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000862 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000863
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000864 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000865 Intf.moveToBlock(BC.Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000866 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
867 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
David Blaikie041f1aa2013-05-15 07:36:59 +0000868 BC.ChangesValue = BI.FirstDef.isValid();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000869
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000870 if (!Intf.hasInterference())
871 continue;
872
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000873 // Number of spill code instructions to insert.
874 unsigned Ins = 0;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000875
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000876 // Interference for the live-in value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000877 if (BI.LiveIn) {
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000878 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000879 BC.Entry = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000880 else if (Intf.first() < BI.FirstInstr)
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000881 BC.Entry = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000882 else if (Intf.first() < BI.LastInstr)
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000883 ++Ins;
Jakob Stoklund Olesenf248b202011-02-08 23:02:58 +0000884 }
885
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000886 // Interference for the live-out value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000887 if (BI.LiveOut) {
Jakob Stoklund Olesend93b0e32011-04-05 04:20:29 +0000888 if (Intf.last() >= SA->getLastSplitPoint(BC.Number))
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000889 BC.Exit = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000890 else if (Intf.last() > BI.LastInstr)
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000891 BC.Exit = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000892 else if (Intf.last() > BI.FirstInstr)
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000893 ++Ins;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000894 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000895
896 // Accumulate the total frequency of inserted spill code.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000897 while (Ins--)
898 StaticCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000899 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000900 Cost = StaticCost;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000901
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000902 // Add constraints for use-blocks. Note that these are the only constraints
903 // that may add a positive bias, it is downhill from here.
904 SpillPlacer->addConstraints(SplitConstraints);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000905 return SpillPlacer->scanActiveBundles();
906}
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000907
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000908
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000909/// addThroughConstraints - Add constraints and links to SpillPlacer from the
910/// live-through blocks in Blocks.
911void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf,
912 ArrayRef<unsigned> Blocks) {
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000913 const unsigned GroupSize = 8;
914 SpillPlacement::BlockConstraint BCS[GroupSize];
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000915 unsigned TBS[GroupSize];
916 unsigned B = 0, T = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000917
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000918 for (unsigned i = 0; i != Blocks.size(); ++i) {
919 unsigned Number = Blocks[i];
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000920 Intf.moveToBlock(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000921
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000922 if (!Intf.hasInterference()) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000923 assert(T < GroupSize && "Array overflow");
924 TBS[T] = Number;
925 if (++T == GroupSize) {
Frits van Bommel717d7ed2011-07-18 12:00:32 +0000926 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000927 T = 0;
928 }
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000929 continue;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000930 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000931
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000932 assert(B < GroupSize && "Array overflow");
933 BCS[B].Number = Number;
934
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000935 // Interference for the live-in value.
936 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
937 BCS[B].Entry = SpillPlacement::MustSpill;
938 else
939 BCS[B].Entry = SpillPlacement::PrefSpill;
940
941 // Interference for the live-out value.
942 if (Intf.last() >= SA->getLastSplitPoint(Number))
943 BCS[B].Exit = SpillPlacement::MustSpill;
944 else
945 BCS[B].Exit = SpillPlacement::PrefSpill;
946
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000947 if (++B == GroupSize) {
948 ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B);
949 SpillPlacer->addConstraints(Array);
950 B = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000951 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000952 }
953
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000954 ArrayRef<SpillPlacement::BlockConstraint> Array(BCS, B);
955 SpillPlacer->addConstraints(Array);
Frits van Bommel717d7ed2011-07-18 12:00:32 +0000956 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000957}
958
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000959void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000960 // Keep track of through blocks that have not been added to SpillPlacer.
961 BitVector Todo = SA->getThroughBlocks();
962 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks;
963 unsigned AddedTo = 0;
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000964#ifndef NDEBUG
965 unsigned Visited = 0;
966#endif
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000967
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000968 for (;;) {
969 ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive();
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000970 // Find new through blocks in the periphery of PrefRegBundles.
971 for (int i = 0, e = NewBundles.size(); i != e; ++i) {
972 unsigned Bundle = NewBundles[i];
973 // Look at all blocks connected to Bundle in the full graph.
974 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
975 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
976 I != E; ++I) {
977 unsigned Block = *I;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000978 if (!Todo.test(Block))
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000979 continue;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000980 Todo.reset(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000981 // This is a new through block. Add it to SpillPlacer later.
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000982 ActiveBlocks.push_back(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000983#ifndef NDEBUG
984 ++Visited;
985#endif
986 }
987 }
988 // Any new blocks to add?
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +0000989 if (ActiveBlocks.size() == AddedTo)
990 break;
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +0000991
992 // Compute through constraints from the interference, or assume that all
993 // through blocks prefer spilling when forming compact regions.
994 ArrayRef<unsigned> NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
995 if (Cand.PhysReg)
996 addThroughConstraints(Cand.Intf, NewBlocks);
997 else
Jakob Stoklund Olesen86954522011-08-03 23:09:38 +0000998 // Provide a strong negative bias on through blocks to prevent unwanted
999 // liveness on loop backedges.
1000 SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true);
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001001 AddedTo = ActiveBlocks.size();
1002
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001003 // Perhaps iterating can enable more bundles?
1004 SpillPlacer->iterate();
1005 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001006 DEBUG(dbgs() << ", v=" << Visited);
1007}
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001008
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001009/// calcCompactRegion - Compute the set of edge bundles that should be live
1010/// when splitting the current live range into compact regions. Compact
1011/// regions can be computed without looking at interference. They are the
1012/// regions formed by removing all the live-through blocks from the live range.
1013///
1014/// Returns false if the current live range is already compact, or if the
1015/// compact regions would form single block regions anyway.
1016bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) {
1017 // Without any through blocks, the live range is already compact.
1018 if (!SA->getNumThroughBlocks())
1019 return false;
1020
1021 // Compact regions don't correspond to any physreg.
1022 Cand.reset(IntfCache, 0);
1023
1024 DEBUG(dbgs() << "Compact region bundles");
1025
1026 // Use the spill placer to determine the live bundles. GrowRegion pretends
1027 // that all the through blocks have interference when PhysReg is unset.
1028 SpillPlacer->prepare(Cand.LiveBundles);
1029
1030 // The static split cost will be zero since Cand.Intf reports no interference.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001031 BlockFrequency Cost;
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001032 if (!addSplitConstraints(Cand.Intf, Cost)) {
1033 DEBUG(dbgs() << ", none.\n");
1034 return false;
1035 }
1036
1037 growRegion(Cand);
1038 SpillPlacer->finish();
1039
1040 if (!Cand.LiveBundles.any()) {
1041 DEBUG(dbgs() << ", none.\n");
1042 return false;
1043 }
1044
1045 DEBUG({
1046 for (int i = Cand.LiveBundles.find_first(); i>=0;
1047 i = Cand.LiveBundles.find_next(i))
1048 dbgs() << " EB#" << i;
1049 dbgs() << ".\n";
1050 });
1051 return true;
1052}
1053
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001054/// calcSpillCost - Compute how expensive it would be to split the live range in
1055/// SA around all use blocks instead of forming bundle regions.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001056BlockFrequency RAGreedy::calcSpillCost() {
1057 BlockFrequency Cost = 0;
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001058 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1059 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1060 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1061 unsigned Number = BI.MBB->getNumber();
1062 // We normally only need one spill instruction - a load or a store.
1063 Cost += SpillPlacer->getBlockFrequency(Number);
1064
1065 // Unless the value is redefined in the block.
Jakob Stoklund Olesen3c145052011-08-02 23:04:08 +00001066 if (BI.LiveIn && BI.LiveOut && BI.FirstDef)
1067 Cost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001068 }
1069 return Cost;
1070}
1071
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001072/// calcGlobalSplitCost - Return the global split cost of following the split
1073/// pattern in LiveBundles. This cost should be added to the local cost of the
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001074/// interference pattern in SplitConstraints.
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001075///
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001076BlockFrequency RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) {
1077 BlockFrequency GlobalCost = 0;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001078 const BitVector &LiveBundles = Cand.LiveBundles;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001079 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1080 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1081 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001082 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001083 bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)];
1084 bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)];
1085 unsigned Ins = 0;
1086
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001087 if (BI.LiveIn)
1088 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
1089 if (BI.LiveOut)
1090 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001091 while (Ins--)
1092 GlobalCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001093 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001094
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001095 for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) {
1096 unsigned Number = Cand.ActiveBlocks[i];
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001097 bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)];
1098 bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)];
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001099 if (!RegIn && !RegOut)
1100 continue;
1101 if (RegIn && RegOut) {
1102 // We need double spill code if this block has interference.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001103 Cand.Intf.moveToBlock(Number);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001104 if (Cand.Intf.hasInterference()) {
1105 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1106 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1107 }
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001108 continue;
1109 }
1110 // live-in / stack-out or stack-in live-out.
1111 GlobalCost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001112 }
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001113 return GlobalCost;
1114}
1115
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001116/// splitAroundRegion - Split the current live range around the regions
1117/// determined by BundleCand and GlobalCand.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001118///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001119/// Before calling this function, GlobalCand and BundleCand must be initialized
1120/// so each bundle is assigned to a valid candidate, or NoCand for the
1121/// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor
1122/// objects must be initialized for the current live range, and intervals
1123/// created for the used candidates.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001124///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001125/// @param LREdit The LiveRangeEdit object handling the current split.
1126/// @param UsedCands List of used GlobalCand entries. Every BundleCand value
1127/// must appear in this list.
1128void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit,
1129 ArrayRef<unsigned> UsedCands) {
1130 // These are the intervals created for new global ranges. We may create more
1131 // intervals for local ranges.
1132 const unsigned NumGlobalIntvs = LREdit.size();
1133 DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n");
1134 assert(NumGlobalIntvs && "No global intervals configured");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001135
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001136 // Isolate even single instructions when dealing with a proper sub-class.
Jakob Stoklund Olesen22f37a12011-08-06 18:20:24 +00001137 // That guarantees register class inflation for the stack interval because it
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001138 // is all copies.
1139 unsigned Reg = SA->getParent().reg;
1140 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
1141
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001142 // First handle all the blocks with uses.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001143 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1144 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1145 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001146 unsigned Number = BI.MBB->getNumber();
1147 unsigned IntvIn = 0, IntvOut = 0;
1148 SlotIndex IntfIn, IntfOut;
1149 if (BI.LiveIn) {
1150 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1151 if (CandIn != NoCand) {
1152 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1153 IntvIn = Cand.IntvIdx;
1154 Cand.Intf.moveToBlock(Number);
1155 IntfIn = Cand.Intf.first();
1156 }
1157 }
1158 if (BI.LiveOut) {
1159 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1160 if (CandOut != NoCand) {
1161 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1162 IntvOut = Cand.IntvIdx;
1163 Cand.Intf.moveToBlock(Number);
1164 IntfOut = Cand.Intf.last();
1165 }
1166 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001167
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001168 // Create separate intervals for isolated blocks with multiple uses.
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001169 if (!IntvIn && !IntvOut) {
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001170 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n");
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001171 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001172 SE->splitSingleBlock(BI);
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001173 continue;
1174 }
1175
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001176 if (IntvIn && IntvOut)
1177 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1178 else if (IntvIn)
1179 SE->splitRegInBlock(BI, IntvIn, IntfIn);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001180 else
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001181 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001182 }
1183
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001184 // Handle live-through blocks. The relevant live-through blocks are stored in
1185 // the ActiveBlocks list with each candidate. We need to filter out
1186 // duplicates.
1187 BitVector Todo = SA->getThroughBlocks();
1188 for (unsigned c = 0; c != UsedCands.size(); ++c) {
1189 ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks;
1190 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
1191 unsigned Number = Blocks[i];
1192 if (!Todo.test(Number))
1193 continue;
1194 Todo.reset(Number);
1195
1196 unsigned IntvIn = 0, IntvOut = 0;
1197 SlotIndex IntfIn, IntfOut;
1198
1199 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1200 if (CandIn != NoCand) {
1201 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1202 IntvIn = Cand.IntvIdx;
1203 Cand.Intf.moveToBlock(Number);
1204 IntfIn = Cand.Intf.first();
1205 }
1206
1207 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1208 if (CandOut != NoCand) {
1209 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1210 IntvOut = Cand.IntvIdx;
1211 Cand.Intf.moveToBlock(Number);
1212 IntfOut = Cand.Intf.last();
1213 }
1214 if (!IntvIn && !IntvOut)
1215 continue;
1216 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1217 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001218 }
1219
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001220 ++NumGlobalSplits;
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001221
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001222 SmallVector<unsigned, 8> IntvMap;
1223 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001224 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00001225
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001226 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesen5cc91b22011-05-28 02:32:57 +00001227 unsigned OrigBlocks = SA->getNumLiveBlocks();
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001228
1229 // Sort out the new intervals created by splitting. We get four kinds:
1230 // - Remainder intervals should not be split again.
1231 // - Candidate intervals can be assigned to Cand.PhysReg.
1232 // - Block-local splits are candidates for local splitting.
1233 // - DCE leftovers should go back on the queue.
1234 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001235 LiveInterval &Reg = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001236
1237 // Ignore old intervals from DCE.
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001238 if (getStage(Reg) != RS_New)
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001239 continue;
1240
1241 // Remainder interval. Don't try splitting again, spill if it doesn't
1242 // allocate.
1243 if (IntvMap[i] == 0) {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00001244 setStage(Reg, RS_Spill);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001245 continue;
1246 }
1247
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001248 // Global intervals. Allow repeated splitting as long as the number of live
1249 // blocks is strictly decreasing.
1250 if (IntvMap[i] < NumGlobalIntvs) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001251 if (SA->countLiveBlocks(&Reg) >= OrigBlocks) {
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001252 DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks
1253 << " blocks as original.\n");
1254 // Don't allow repeated splitting as a safe guard against looping.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001255 setStage(Reg, RS_Split2);
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001256 }
1257 continue;
1258 }
1259
1260 // Other intervals are treated as new. This includes local intervals created
1261 // for blocks with multiple uses, and anything created by DCE.
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001262 }
1263
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +00001264 if (VerifyEnabled)
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001265 MF->verify(this, "After splitting live range around region");
1266}
1267
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001268unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001269 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001270 unsigned NumCands = 0;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001271 BlockFrequency BestCost;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001272
1273 // Check if we can split this live range around a compact region.
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +00001274 bool HasCompact = calcCompactRegion(GlobalCand.front());
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001275 if (HasCompact) {
1276 // Yes, keep GlobalCand[0] as the compact region candidate.
1277 NumCands = 1;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001278 BestCost = BlockFrequency::getMaxFrequency();
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001279 } else {
1280 // No benefit from the compact region, our fallback will be per-block
1281 // splitting. Make sure we find a solution that is cheaper than spilling.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001282 BestCost = calcSpillCost();
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001283 DEBUG(dbgs() << "Cost of isolating all blocks = ";
1284 MBFI->printBlockFreq(dbgs(), BestCost) << '\n');
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001285 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001286
Manman Ren9db66b32014-03-24 23:23:42 +00001287 unsigned BestCand =
Manman Ren78cf02a2014-03-25 00:16:25 +00001288 calculateRegionSplitCost(VirtReg, Order, BestCost, NumCands,
1289 false/*IgnoreCSR*/);
Manman Ren9db66b32014-03-24 23:23:42 +00001290
1291 // No solutions found, fall back to single block splitting.
1292 if (!HasCompact && BestCand == NoCand)
1293 return 0;
1294
1295 return doRegionSplit(VirtReg, BestCand, HasCompact, NewVRegs);
1296}
1297
1298unsigned RAGreedy::calculateRegionSplitCost(LiveInterval &VirtReg,
1299 AllocationOrder &Order,
1300 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +00001301 unsigned &NumCands,
1302 bool IgnoreCSR) {
Manman Ren9db66b32014-03-24 23:23:42 +00001303 unsigned BestCand = NoCand;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001304 Order.rewind();
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001305 while (unsigned PhysReg = Order.next()) {
Manman Ren78cf02a2014-03-25 00:16:25 +00001306 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
1307 if (IgnoreCSR && !MRI->isPhysRegUsed(CSR))
1308 continue;
1309
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001310 // Discard bad candidates before we run out of interference cache cursors.
1311 // This will only affect register classes with a lot of registers (>32).
1312 if (NumCands == IntfCache.getMaxCursors()) {
1313 unsigned WorstCount = ~0u;
1314 unsigned Worst = 0;
1315 for (unsigned i = 0; i != NumCands; ++i) {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001316 if (i == BestCand || !GlobalCand[i].PhysReg)
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001317 continue;
1318 unsigned Count = GlobalCand[i].LiveBundles.count();
1319 if (Count < WorstCount)
1320 Worst = i, WorstCount = Count;
1321 }
1322 --NumCands;
1323 GlobalCand[Worst] = GlobalCand[NumCands];
Jakob Stoklund Olesen559d4dc2011-11-01 00:02:31 +00001324 if (BestCand == NumCands)
1325 BestCand = Worst;
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001326 }
1327
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001328 if (GlobalCand.size() <= NumCands)
1329 GlobalCand.resize(NumCands+1);
1330 GlobalSplitCandidate &Cand = GlobalCand[NumCands];
1331 Cand.reset(IntfCache, PhysReg);
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001332
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001333 SpillPlacer->prepare(Cand.LiveBundles);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001334 BlockFrequency Cost;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001335 if (!addSplitConstraints(Cand.Intf, Cost)) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001336 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n");
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001337 continue;
1338 }
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001339 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = ";
1340 MBFI->printBlockFreq(dbgs(), Cost));
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001341 if (Cost >= BestCost) {
1342 DEBUG({
1343 if (BestCand == NoCand)
1344 dbgs() << " worse than no bundles\n";
1345 else
1346 dbgs() << " worse than "
1347 << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n';
1348 });
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001349 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001350 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001351 growRegion(Cand);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001352
Jakob Stoklund Olesen36b5d8a2011-04-06 19:13:57 +00001353 SpillPlacer->finish();
1354
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001355 // No live bundles, defer to splitSingleBlocks().
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001356 if (!Cand.LiveBundles.any()) {
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001357 DEBUG(dbgs() << " no bundles.\n");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001358 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001359 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001360
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001361 Cost += calcGlobalSplitCost(Cand);
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001362 DEBUG({
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001363 dbgs() << ", total = "; MBFI->printBlockFreq(dbgs(), Cost)
1364 << " with bundles";
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001365 for (int i = Cand.LiveBundles.find_first(); i>=0;
1366 i = Cand.LiveBundles.find_next(i))
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001367 dbgs() << " EB#" << i;
1368 dbgs() << ".\n";
1369 });
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001370 if (Cost < BestCost) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001371 BestCand = NumCands;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001372 BestCost = Cost;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001373 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001374 ++NumCands;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001375 }
Manman Ren9db66b32014-03-24 23:23:42 +00001376 return BestCand;
1377}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001378
Manman Ren9db66b32014-03-24 23:23:42 +00001379unsigned RAGreedy::doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
1380 bool HasCompact,
1381 SmallVectorImpl<unsigned> &NewVRegs) {
1382 SmallVector<unsigned, 8> UsedCands;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001383 // Prepare split editor.
Jakob Stoklund Olesene5bbe372012-05-19 05:25:46 +00001384 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001385 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001386
1387 // Assign all edge bundles to the preferred candidate, or NoCand.
1388 BundleCand.assign(Bundles->getNumBundles(), NoCand);
1389
1390 // Assign bundles for the best candidate region.
1391 if (BestCand != NoCand) {
1392 GlobalSplitCandidate &Cand = GlobalCand[BestCand];
1393 if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
1394 UsedCands.push_back(BestCand);
1395 Cand.IntvIdx = SE->openIntv();
1396 DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in "
1397 << B << " bundles, intv " << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001398 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001399 }
1400 }
1401
1402 // Assign bundles for the compact region.
1403 if (HasCompact) {
1404 GlobalSplitCandidate &Cand = GlobalCand.front();
1405 assert(!Cand.PhysReg && "Compact region has no physreg");
1406 if (unsigned B = Cand.getBundles(BundleCand, 0)) {
1407 UsedCands.push_back(0);
1408 Cand.IntvIdx = SE->openIntv();
1409 DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv "
1410 << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001411 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001412 }
1413 }
1414
1415 splitAroundRegion(LREdit, UsedCands);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001416 return 0;
1417}
1418
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001419
1420//===----------------------------------------------------------------------===//
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001421// Per-Block Splitting
1422//===----------------------------------------------------------------------===//
1423
1424/// tryBlockSplit - Split a global live range around every block with uses. This
1425/// creates a lot of local live ranges, that will be split by tryLocalSplit if
1426/// they don't allocate.
1427unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001428 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001429 assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed");
1430 unsigned Reg = VirtReg.reg;
1431 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
Jakob Stoklund Olesene5bbe372012-05-19 05:25:46 +00001432 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001433 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001434 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1435 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1436 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1437 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
1438 SE->splitSingleBlock(BI);
1439 }
1440 // No blocks were split.
1441 if (LREdit.empty())
1442 return 0;
1443
1444 // We did split for some blocks.
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001445 SmallVector<unsigned, 8> IntvMap;
1446 SE->finish(&IntvMap);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001447
1448 // Tell LiveDebugVariables about the new ranges.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001449 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001450
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001451 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1452
1453 // Sort out the new intervals created by splitting. The remainder interval
1454 // goes straight to spilling, the new local ranges get to stay RS_New.
1455 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001456 LiveInterval &LI = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001457 if (getStage(LI) == RS_New && IntvMap[i] == 0)
1458 setStage(LI, RS_Spill);
1459 }
1460
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001461 if (VerifyEnabled)
1462 MF->verify(this, "After splitting live range around basic blocks");
1463 return 0;
1464}
1465
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001466
1467//===----------------------------------------------------------------------===//
1468// Per-Instruction Splitting
1469//===----------------------------------------------------------------------===//
1470
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001471/// Get the number of allocatable registers that match the constraints of \p Reg
1472/// on \p MI and that are also in \p SuperRC.
1473static unsigned getNumAllocatableRegsForConstraints(
1474 const MachineInstr *MI, unsigned Reg, const TargetRegisterClass *SuperRC,
1475 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI,
1476 const RegisterClassInfo &RCI) {
1477 assert(SuperRC && "Invalid register class");
1478
1479 const TargetRegisterClass *ConstrainedRC =
1480 MI->getRegClassConstraintEffectForVReg(Reg, SuperRC, TII, TRI,
1481 /* ExploreBundle */ true);
1482 if (!ConstrainedRC)
1483 return 0;
1484 return RCI.getNumAllocatableRegs(ConstrainedRC);
1485}
1486
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001487/// tryInstructionSplit - Split a live range around individual instructions.
1488/// This is normally not worthwhile since the spiller is doing essentially the
1489/// same thing. However, when the live range is in a constrained register
1490/// class, it may help to insert copies such that parts of the live range can
1491/// be moved to a larger register class.
1492///
1493/// This is similar to spilling to a larger register class.
1494unsigned
1495RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001496 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001497 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001498 // There is no point to this if there are no larger sub-classes.
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001499 if (!RegClassInfo.isProperSubClass(CurRC))
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001500 return 0;
1501
1502 // Always enable split spill mode, since we're effectively spilling to a
1503 // register.
1504 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
1505 SE->reset(LREdit, SplitEditor::SM_Size);
1506
1507 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
1508 if (Uses.size() <= 1)
1509 return 0;
1510
1511 DEBUG(dbgs() << "Split around " << Uses.size() << " individual instrs.\n");
1512
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001513 const TargetRegisterClass *SuperRC = TRI->getLargestLegalSuperClass(CurRC);
1514 unsigned SuperRCNumAllocatableRegs = RCI.getNumAllocatableRegs(SuperRC);
1515 // Split around every non-copy instruction if this split will relax
1516 // the constraints on the virtual register.
1517 // Otherwise, splitting just inserts uncoalescable copies that do not help
1518 // the allocation.
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001519 for (unsigned i = 0; i != Uses.size(); ++i) {
1520 if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]))
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001521 if (MI->isFullCopy() ||
1522 SuperRCNumAllocatableRegs ==
1523 getNumAllocatableRegsForConstraints(MI, VirtReg.reg, SuperRC, TII,
1524 TRI, RCI)) {
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001525 DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI);
1526 continue;
1527 }
1528 SE->openIntv();
1529 SlotIndex SegStart = SE->enterIntvBefore(Uses[i]);
1530 SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]);
1531 SE->useIntv(SegStart, SegStop);
1532 }
1533
1534 if (LREdit.empty()) {
1535 DEBUG(dbgs() << "All uses were copies.\n");
1536 return 0;
1537 }
1538
1539 SmallVector<unsigned, 8> IntvMap;
1540 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001541 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001542 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1543
1544 // Assign all new registers to RS_Spill. This was the last chance.
1545 setStage(LREdit.begin(), LREdit.end(), RS_Spill);
1546 return 0;
1547}
1548
1549
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001550//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001551// Local Splitting
1552//===----------------------------------------------------------------------===//
1553
1554
1555/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
1556/// in order to use PhysReg between two entries in SA->UseSlots.
1557///
1558/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1559///
1560void RAGreedy::calcGapWeights(unsigned PhysReg,
1561 SmallVectorImpl<float> &GapWeight) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001562 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1563 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001564 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001565 const unsigned NumGaps = Uses.size()-1;
1566
1567 // Start and end points for the interference check.
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001568 SlotIndex StartIdx =
1569 BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr;
1570 SlotIndex StopIdx =
1571 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001572
1573 GapWeight.assign(NumGaps, 0.0f);
1574
1575 // Add interference from each overlapping register.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001576 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1577 if (!Matrix->query(const_cast<LiveInterval&>(SA->getParent()), *Units)
1578 .checkInterference())
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001579 continue;
1580
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001581 // We know that VirtReg is a continuous interval from FirstInstr to
1582 // LastInstr, so we don't need InterferenceQuery.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001583 //
1584 // Interference that overlaps an instruction is counted in both gaps
1585 // surrounding the instruction. The exception is interference before
1586 // StartIdx and after StopIdx.
1587 //
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001588 LiveIntervalUnion::SegmentIter IntI =
1589 Matrix->getLiveUnions()[*Units] .find(StartIdx);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001590 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
1591 // Skip the gaps before IntI.
1592 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
1593 if (++Gap == NumGaps)
1594 break;
1595 if (Gap == NumGaps)
1596 break;
1597
1598 // Update the gaps covered by IntI.
1599 const float weight = IntI.value()->weight;
1600 for (; Gap != NumGaps; ++Gap) {
1601 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1602 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1603 break;
1604 }
1605 if (Gap == NumGaps)
1606 break;
1607 }
1608 }
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001609
1610 // Add fixed interference.
1611 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
Matthias Braun34e1be92013-10-10 21:29:02 +00001612 const LiveRange &LR = LIS->getRegUnit(*Units);
1613 LiveRange::const_iterator I = LR.find(StartIdx);
1614 LiveRange::const_iterator E = LR.end();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001615
1616 // Same loop as above. Mark any overlapped gaps as HUGE_VALF.
1617 for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) {
1618 while (Uses[Gap+1].getBoundaryIndex() < I->start)
1619 if (++Gap == NumGaps)
1620 break;
1621 if (Gap == NumGaps)
1622 break;
1623
1624 for (; Gap != NumGaps; ++Gap) {
Aaron Ballman04999042013-11-13 00:15:44 +00001625 GapWeight[Gap] = llvm::huge_valf;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001626 if (Uses[Gap+1].getBaseIndex() >= I->end)
1627 break;
1628 }
1629 if (Gap == NumGaps)
1630 break;
1631 }
1632 }
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001633}
1634
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001635/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1636/// basic block.
1637///
1638unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001639 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001640 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1641 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001642
1643 // Note that it is possible to have an interval that is live-in or live-out
1644 // while only covering a single block - A phi-def can use undef values from
1645 // predecessors, and the block could be a single-block loop.
1646 // We don't bother doing anything clever about such a case, we simply assume
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001647 // that the interval is continuous from FirstInstr to LastInstr. We should
1648 // make sure that we don't do anything illegal to such an interval, though.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001649
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001650 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001651 if (Uses.size() <= 2)
1652 return 0;
1653 const unsigned NumGaps = Uses.size()-1;
1654
1655 DEBUG({
1656 dbgs() << "tryLocalSplit: ";
1657 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001658 dbgs() << ' ' << Uses[i];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001659 dbgs() << '\n';
1660 });
1661
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001662 // If VirtReg is live across any register mask operands, compute a list of
1663 // gaps with register masks.
1664 SmallVector<unsigned, 8> RegMaskGaps;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001665 if (Matrix->checkRegMaskInterference(VirtReg)) {
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001666 // Get regmask slots for the whole block.
1667 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001668 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001669 // Constrain to VirtReg's live range.
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001670 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1671 Uses.front().getRegSlot()) - RMS.begin();
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001672 unsigned re = RMS.size();
1673 for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001674 // Look for Uses[i] <= RMS <= Uses[i+1].
1675 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1676 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001677 continue;
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001678 // Skip a regmask on the same instruction as the last use. It doesn't
1679 // overlap the live range.
1680 if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps)
1681 break;
1682 DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]);
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001683 RegMaskGaps.push_back(i);
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001684 // Advance ri to the next gap. A regmask on one of the uses counts in
1685 // both gaps.
1686 while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1]))
1687 ++ri;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001688 }
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001689 DEBUG(dbgs() << '\n');
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001690 }
1691
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001692 // Since we allow local split results to be split again, there is a risk of
1693 // creating infinite loops. It is tempting to require that the new live
1694 // ranges have less instructions than the original. That would guarantee
1695 // convergence, but it is too strict. A live range with 3 instructions can be
1696 // split 2+3 (including the COPY), and we want to allow that.
1697 //
1698 // Instead we use these rules:
1699 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001700 // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001701 // noop split, of course).
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001702 // 2. Require progress be made for ranges with getStage() == RS_Split2. All
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001703 // the new ranges must have fewer instructions than before the split.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001704 // 3. New ranges with the same number of instructions are marked RS_Split2,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001705 // smaller ranges are marked RS_New.
1706 //
1707 // These rules allow a 3 -> 2+3 split once, which we need. They also prevent
1708 // excessive splitting and infinite loops.
1709 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001710 bool ProgressRequired = getStage(VirtReg) >= RS_Split2;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001711
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001712 // Best split candidate.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001713 unsigned BestBefore = NumGaps;
1714 unsigned BestAfter = 0;
1715 float BestDiff = 0;
1716
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001717 const float blockFreq =
1718 SpillPlacer->getBlockFrequency(BI.MBB->getNumber()).getFrequency() *
Michael Gottesman5e985ee2013-12-14 02:37:38 +00001719 (1.0f / MBFI->getEntryFreq());
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001720 SmallVector<float, 8> GapWeight;
1721
1722 Order.rewind();
1723 while (unsigned PhysReg = Order.next()) {
1724 // Keep track of the largest spill weight that would need to be evicted in
1725 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1726 calcGapWeights(PhysReg, GapWeight);
1727
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001728 // Remove any gaps with regmask clobbers.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001729 if (Matrix->checkRegMaskInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001730 for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i)
Aaron Ballman04999042013-11-13 00:15:44 +00001731 GapWeight[RegMaskGaps[i]] = llvm::huge_valf;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001732
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001733 // Try to find the best sequence of gaps to close.
1734 // The new spill weight must be larger than any gap interference.
1735
1736 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001737 unsigned SplitBefore = 0, SplitAfter = 1;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001738
1739 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1740 // It is the spill weight that needs to be evicted.
1741 float MaxGap = GapWeight[0];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001742
1743 for (;;) {
1744 // Live before/after split?
1745 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1746 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1747
1748 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1749 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1750 << " i=" << MaxGap);
1751
1752 // Stop before the interval gets so big we wouldn't be making progress.
1753 if (!LiveBefore && !LiveAfter) {
1754 DEBUG(dbgs() << " all\n");
1755 break;
1756 }
1757 // Should the interval be extended or shrunk?
1758 bool Shrink = true;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001759
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001760 // How many gaps would the new range have?
1761 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1762
1763 // Legally, without causing looping?
1764 bool Legal = !ProgressRequired || NewGaps < NumGaps;
1765
Aaron Ballman04999042013-11-13 00:15:44 +00001766 if (Legal && MaxGap < llvm::huge_valf) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001767 // Estimate the new spill weight. Each instruction reads or writes the
1768 // register. Conservatively assume there are no read-modify-write
1769 // instructions.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001770 //
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001771 // Try to guess the size of the new interval.
1772 const float EstWeight = normalizeSpillWeight(blockFreq * (NewGaps + 1),
1773 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1774 (LiveBefore + LiveAfter)*SlotIndex::InstrDist);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001775 // Would this split be possible to allocate?
1776 // Never allocate all gaps, we wouldn't be making progress.
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001777 DEBUG(dbgs() << " w=" << EstWeight);
1778 if (EstWeight * Hysteresis >= MaxGap) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001779 Shrink = false;
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001780 float Diff = EstWeight - MaxGap;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001781 if (Diff > BestDiff) {
1782 DEBUG(dbgs() << " (best)");
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001783 BestDiff = Hysteresis * Diff;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001784 BestBefore = SplitBefore;
1785 BestAfter = SplitAfter;
1786 }
1787 }
1788 }
1789
1790 // Try to shrink.
1791 if (Shrink) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001792 if (++SplitBefore < SplitAfter) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001793 DEBUG(dbgs() << " shrink\n");
1794 // Recompute the max when necessary.
1795 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1796 MaxGap = GapWeight[SplitBefore];
1797 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1798 MaxGap = std::max(MaxGap, GapWeight[i]);
1799 }
1800 continue;
1801 }
1802 MaxGap = 0;
1803 }
1804
1805 // Try to extend the interval.
1806 if (SplitAfter >= NumGaps) {
1807 DEBUG(dbgs() << " end\n");
1808 break;
1809 }
1810
1811 DEBUG(dbgs() << " extend\n");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001812 MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001813 }
1814 }
1815
1816 // Didn't find any candidates?
1817 if (BestBefore == NumGaps)
1818 return 0;
1819
1820 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1821 << '-' << Uses[BestAfter] << ", " << BestDiff
1822 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1823
Jakob Stoklund Olesene5bbe372012-05-19 05:25:46 +00001824 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001825 SE->reset(LREdit);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001826
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001827 SE->openIntv();
1828 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1829 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1830 SE->useIntv(SegStart, SegStop);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001831 SmallVector<unsigned, 8> IntvMap;
1832 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001833 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001834
1835 // If the new range has the same number of instructions as before, mark it as
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001836 // RS_Split2 so the next split will be forced to make progress. Otherwise,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001837 // leave the new intervals as RS_New so they can compete.
1838 bool LiveBefore = BestBefore != 0 || BI.LiveIn;
1839 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut;
1840 unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter;
1841 if (NewGaps >= NumGaps) {
1842 DEBUG(dbgs() << "Tagging non-progress ranges: ");
1843 assert(!ProgressRequired && "Didn't make progress when it was required.");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001844 for (unsigned i = 0, e = IntvMap.size(); i != e; ++i)
1845 if (IntvMap[i] == 1) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001846 setStage(LIS->getInterval(LREdit.get(i)), RS_Split2);
1847 DEBUG(dbgs() << PrintReg(LREdit.get(i)));
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001848 }
1849 DEBUG(dbgs() << '\n');
1850 }
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001851 ++NumLocalSplits;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001852
1853 return 0;
1854}
1855
1856//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001857// Live Range Splitting
1858//===----------------------------------------------------------------------===//
1859
1860/// trySplit - Try to split VirtReg or one of its interferences, making it
1861/// assignable.
1862/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1863unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001864 SmallVectorImpl<unsigned>&NewVRegs) {
Jakob Stoklund Olesend4bb1d42011-08-05 23:50:33 +00001865 // Ranges must be Split2 or less.
1866 if (getStage(VirtReg) >= RS_Spill)
1867 return 0;
1868
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001869 // Local intervals are handled separately.
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001870 if (LIS->intervalIsInOneMBB(VirtReg)) {
1871 NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001872 SA->analyze(&VirtReg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001873 unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs);
1874 if (PhysReg || !NewVRegs.empty())
1875 return PhysReg;
1876 return tryInstructionSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001877 }
1878
1879 NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001880
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001881 SA->analyze(&VirtReg);
1882
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00001883 // FIXME: SplitAnalysis may repair broken live ranges coming from the
1884 // coalescer. That may cause the range to become allocatable which means that
1885 // tryRegionSplit won't be making progress. This check should be replaced with
1886 // an assertion when the coalescer is fixed.
1887 if (SA->didRepairRange()) {
1888 // VirtReg has changed, so all cached queries are invalid.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001889 Matrix->invalidateVirtRegs();
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00001890 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1891 return PhysReg;
1892 }
1893
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001894 // First try to split around a region spanning multiple blocks. RS_Split2
1895 // ranges already made dubious progress with region splitting, so they go
1896 // straight to single block splitting.
1897 if (getStage(VirtReg) < RS_Split2) {
1898 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
1899 if (PhysReg || !NewVRegs.empty())
1900 return PhysReg;
1901 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001902
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001903 // Then isolate blocks.
1904 return tryBlockSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001905}
1906
Quentin Colombet87769712014-02-05 22:13:59 +00001907//===----------------------------------------------------------------------===//
1908// Last Chance Recoloring
1909//===----------------------------------------------------------------------===//
1910
1911/// mayRecolorAllInterferences - Check if the virtual registers that
1912/// interfere with \p VirtReg on \p PhysReg (or one of its aliases) may be
1913/// recolored to free \p PhysReg.
1914/// When true is returned, \p RecoloringCandidates has been augmented with all
1915/// the live intervals that need to be recolored in order to free \p PhysReg
1916/// for \p VirtReg.
1917/// \p FixedRegisters contains all the virtual registers that cannot be
1918/// recolored.
1919bool
1920RAGreedy::mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
1921 SmallLISet &RecoloringCandidates,
1922 const SmallVirtRegSet &FixedRegisters) {
1923 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
1924
1925 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1926 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
1927 // If there is LastChanceRecoloringMaxInterference or more interferences,
1928 // chances are one would not be recolorable.
1929 if (Q.collectInterferingVRegs(LastChanceRecoloringMaxInterference) >=
1930 LastChanceRecoloringMaxInterference) {
1931 DEBUG(dbgs() << "Early abort: too many interferences.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00001932 CutOffInfo |= CO_Interf;
Quentin Colombet87769712014-02-05 22:13:59 +00001933 return false;
1934 }
1935 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
1936 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
1937 // If Intf is done and sit on the same register class as VirtReg,
1938 // it would not be recolorable as it is in the same state as VirtReg.
1939 if ((getStage(*Intf) == RS_Done &&
1940 MRI->getRegClass(Intf->reg) == CurRC) ||
1941 FixedRegisters.count(Intf->reg)) {
1942 DEBUG(dbgs() << "Early abort: the inteference is not recolorable.\n");
1943 return false;
1944 }
1945 RecoloringCandidates.insert(Intf);
1946 }
1947 }
1948 return true;
1949}
1950
1951/// tryLastChanceRecoloring - Try to assign a color to \p VirtReg by recoloring
1952/// its interferences.
1953/// Last chance recoloring chooses a color for \p VirtReg and recolors every
1954/// virtual register that was using it. The recoloring process may recursively
1955/// use the last chance recoloring. Therefore, when a virtual register has been
1956/// assigned a color by this mechanism, it is marked as Fixed, i.e., it cannot
1957/// be last-chance-recolored again during this recoloring "session".
1958/// E.g.,
1959/// Let
1960/// vA can use {R1, R2 }
1961/// vB can use { R2, R3}
1962/// vC can use {R1 }
1963/// Where vA, vB, and vC cannot be split anymore (they are reloads for
1964/// instance) and they all interfere.
1965///
1966/// vA is assigned R1
1967/// vB is assigned R2
1968/// vC tries to evict vA but vA is already done.
1969/// Regular register allocation fails.
1970///
1971/// Last chance recoloring kicks in:
1972/// vC does as if vA was evicted => vC uses R1.
1973/// vC is marked as fixed.
1974/// vA needs to find a color.
1975/// None are available.
1976/// vA cannot evict vC: vC is a fixed virtual register now.
1977/// vA does as if vB was evicted => vA uses R2.
1978/// vB needs to find a color.
1979/// R3 is available.
1980/// Recoloring => vC = R1, vA = R2, vB = R3
1981///
Alp Toker70b36992014-02-25 04:21:15 +00001982/// \p Order defines the preferred allocation order for \p VirtReg.
Quentin Colombet87769712014-02-05 22:13:59 +00001983/// \p NewRegs will contain any new virtual register that have been created
1984/// (split, spill) during the process and that must be assigned.
1985/// \p FixedRegisters contains all the virtual registers that cannot be
1986/// recolored.
1987/// \p Depth gives the current depth of the last chance recoloring.
1988/// \return a physical register that can be used for VirtReg or ~0u if none
1989/// exists.
1990unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg,
1991 AllocationOrder &Order,
1992 SmallVectorImpl<unsigned> &NewVRegs,
1993 SmallVirtRegSet &FixedRegisters,
1994 unsigned Depth) {
1995 DEBUG(dbgs() << "Try last chance recoloring for " << VirtReg << '\n');
1996 // Ranges must be Done.
Quentin Colombet0e3b5e02014-02-13 05:17:37 +00001997 assert((getStage(VirtReg) >= RS_Done || !VirtReg.isSpillable()) &&
Quentin Colombet87769712014-02-05 22:13:59 +00001998 "Last chance recoloring should really be last chance");
1999 // Set the max depth to LastChanceRecoloringMaxDepth.
2000 // We may want to reconsider that if we end up with a too large search space
2001 // for target with hundreds of registers.
2002 // Indeed, in that case we may want to cut the search space earlier.
2003 if (Depth >= LastChanceRecoloringMaxDepth) {
2004 DEBUG(dbgs() << "Abort because max depth has been reached.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002005 CutOffInfo |= CO_Depth;
Quentin Colombet87769712014-02-05 22:13:59 +00002006 return ~0u;
2007 }
2008
2009 // Set of Live intervals that will need to be recolored.
2010 SmallLISet RecoloringCandidates;
2011 // Record the original mapping virtual register to physical register in case
2012 // the recoloring fails.
2013 DenseMap<unsigned, unsigned> VirtRegToPhysReg;
2014 // Mark VirtReg as fixed, i.e., it will not be recolored pass this point in
2015 // this recoloring "session".
2016 FixedRegisters.insert(VirtReg.reg);
2017
2018 Order.rewind();
2019 while (unsigned PhysReg = Order.next()) {
2020 DEBUG(dbgs() << "Try to assign: " << VirtReg << " to "
2021 << PrintReg(PhysReg, TRI) << '\n');
2022 RecoloringCandidates.clear();
2023 VirtRegToPhysReg.clear();
2024
2025 // It is only possible to recolor virtual register interference.
2026 if (Matrix->checkInterference(VirtReg, PhysReg) >
2027 LiveRegMatrix::IK_VirtReg) {
2028 DEBUG(dbgs() << "Some inteferences are not with virtual registers.\n");
2029
2030 continue;
2031 }
2032
2033 // Early give up on this PhysReg if it is obvious we cannot recolor all
2034 // the interferences.
2035 if (!mayRecolorAllInterferences(PhysReg, VirtReg, RecoloringCandidates,
2036 FixedRegisters)) {
2037 DEBUG(dbgs() << "Some inteferences cannot be recolored.\n");
2038 continue;
2039 }
2040
2041 // RecoloringCandidates contains all the virtual registers that interfer
2042 // with VirtReg on PhysReg (or one of its aliases).
2043 // Enqueue them for recoloring and perform the actual recoloring.
2044 PQueue RecoloringQueue;
2045 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2046 EndIt = RecoloringCandidates.end();
2047 It != EndIt; ++It) {
2048 unsigned ItVirtReg = (*It)->reg;
2049 enqueue(RecoloringQueue, *It);
2050 assert(VRM->hasPhys(ItVirtReg) &&
2051 "Interferences are supposed to be with allocated vairables");
2052
2053 // Record the current allocation.
2054 VirtRegToPhysReg[ItVirtReg] = VRM->getPhys(ItVirtReg);
2055 // unset the related struct.
2056 Matrix->unassign(**It);
2057 }
2058
2059 // Do as if VirtReg was assigned to PhysReg so that the underlying
2060 // recoloring has the right information about the interferes and
2061 // available colors.
2062 Matrix->assign(VirtReg, PhysReg);
2063
2064 // Save the current recoloring state.
2065 // If we cannot recolor all the interferences, we will have to start again
2066 // at this point for the next physical register.
2067 SmallVirtRegSet SaveFixedRegisters(FixedRegisters);
2068 if (tryRecoloringCandidates(RecoloringQueue, NewVRegs, FixedRegisters,
2069 Depth)) {
2070 // Do not mess up with the global assignment process.
2071 // I.e., VirtReg must be unassigned.
2072 Matrix->unassign(VirtReg);
2073 return PhysReg;
2074 }
2075
2076 DEBUG(dbgs() << "Fail to assign: " << VirtReg << " to "
2077 << PrintReg(PhysReg, TRI) << '\n');
2078
2079 // The recoloring attempt failed, undo the changes.
2080 FixedRegisters = SaveFixedRegisters;
2081 Matrix->unassign(VirtReg);
2082
2083 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2084 EndIt = RecoloringCandidates.end();
2085 It != EndIt; ++It) {
2086 unsigned ItVirtReg = (*It)->reg;
2087 if (VRM->hasPhys(ItVirtReg))
2088 Matrix->unassign(**It);
2089 Matrix->assign(**It, VirtRegToPhysReg[ItVirtReg]);
2090 }
2091 }
2092
2093 // Last chance recoloring did not worked either, give up.
2094 return ~0u;
2095}
2096
2097/// tryRecoloringCandidates - Try to assign a new color to every register
2098/// in \RecoloringQueue.
2099/// \p NewRegs will contain any new virtual register created during the
2100/// recoloring process.
2101/// \p FixedRegisters[in/out] contains all the registers that have been
2102/// recolored.
2103/// \return true if all virtual registers in RecoloringQueue were successfully
2104/// recolored, false otherwise.
2105bool RAGreedy::tryRecoloringCandidates(PQueue &RecoloringQueue,
2106 SmallVectorImpl<unsigned> &NewVRegs,
2107 SmallVirtRegSet &FixedRegisters,
2108 unsigned Depth) {
2109 while (!RecoloringQueue.empty()) {
2110 LiveInterval *LI = dequeue(RecoloringQueue);
2111 DEBUG(dbgs() << "Try to recolor: " << *LI << '\n');
2112 unsigned PhysReg;
2113 PhysReg = selectOrSplitImpl(*LI, NewVRegs, FixedRegisters, Depth + 1);
2114 if (PhysReg == ~0u || !PhysReg)
2115 return false;
2116 DEBUG(dbgs() << "Recoloring of " << *LI
2117 << " succeeded with: " << PrintReg(PhysReg, TRI) << '\n');
2118 Matrix->assign(*LI, PhysReg);
2119 FixedRegisters.insert(LI->reg);
2120 }
2121 return true;
2122}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002123
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002124//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002125// Main Entry Point
2126//===----------------------------------------------------------------------===//
2127
2128unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +00002129 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002130 CutOffInfo = CO_None;
2131 LLVMContext &Ctx = MF->getFunction()->getContext();
Quentin Colombet87769712014-02-05 22:13:59 +00002132 SmallVirtRegSet FixedRegisters;
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002133 unsigned Reg = selectOrSplitImpl(VirtReg, NewVRegs, FixedRegisters);
2134 if (Reg == ~0U && (CutOffInfo != CO_None)) {
2135 uint8_t CutOffEncountered = CutOffInfo & (CO_Depth | CO_Interf);
2136 if (CutOffEncountered == CO_Depth)
2137 Ctx.emitError(
2138 "register allocation failed: maximum depth for recoloring reached");
2139 else if (CutOffEncountered == CO_Interf)
2140 Ctx.emitError("register allocation failed: maximum interference for "
2141 "recoloring reached");
2142 else if (CutOffEncountered == (CO_Depth | CO_Interf))
2143 Ctx.emitError("register allocation failed: maximum interference and "
2144 "depth for recoloring reached");
2145 }
2146 return Reg;
Quentin Colombet87769712014-02-05 22:13:59 +00002147}
2148
Manman Ren9dee4492014-03-27 21:21:57 +00002149/// Using a CSR for the first time has a cost because it causes push|pop
2150/// to be added to prologue|epilogue. Splitting a cold section of the live
2151/// range can have lower cost than using the CSR for the first time;
2152/// Spilling a live range in the cold path can have lower cost than using
2153/// the CSR for the first time. Returns the physical register if we decide
2154/// to use the CSR; otherwise return 0.
2155unsigned RAGreedy::tryAssignCSRFirstTime(LiveInterval &VirtReg,
2156 AllocationOrder &Order,
2157 unsigned PhysReg,
2158 unsigned &CostPerUseLimit,
2159 SmallVectorImpl<unsigned> &NewVRegs) {
Manman Rened0de132014-03-27 23:10:04 +00002160 // We use the larger one out of the command-line option and the value report
2161 // by TRI.
2162 BlockFrequency CSRCost(std::max((unsigned)CSRFirstTimeCost,
2163 TRI->getCSRFirstUseCost()));
Manman Ren9dee4492014-03-27 21:21:57 +00002164 if (getStage(VirtReg) == RS_Spill && VirtReg.isSpillable()) {
2165 // We choose spill over using the CSR for the first time if the spill cost
2166 // is lower than CSRCost.
2167 SA->analyze(&VirtReg);
2168 if (calcSpillCost() >= CSRCost)
2169 return PhysReg;
2170
2171 // We are going to spill, set CostPerUseLimit to 1 to make sure that
2172 // we will not use a callee-saved register in tryEvict.
2173 CostPerUseLimit = 1;
2174 return 0;
2175 }
2176 if (getStage(VirtReg) < RS_Split) {
2177 // We choose pre-splitting over using the CSR for the first time if
2178 // the cost of splitting is lower than CSRCost.
2179 SA->analyze(&VirtReg);
2180 unsigned NumCands = 0;
2181 unsigned BestCand =
2182 calculateRegionSplitCost(VirtReg, Order, CSRCost, NumCands,
2183 true/*IgnoreCSR*/);
2184 if (BestCand == NoCand)
2185 // Use the CSR if we can't find a region split below CSRCost.
2186 return PhysReg;
2187
2188 // Perform the actual pre-splitting.
2189 doRegionSplit(VirtReg, BestCand, false/*HasCompact*/, NewVRegs);
2190 return 0;
2191 }
2192 return PhysReg;
2193}
2194
Quentin Colombet87769712014-02-05 22:13:59 +00002195unsigned RAGreedy::selectOrSplitImpl(LiveInterval &VirtReg,
2196 SmallVectorImpl<unsigned> &NewVRegs,
2197 SmallVirtRegSet &FixedRegisters,
2198 unsigned Depth) {
Manman Ren78cf02a2014-03-25 00:16:25 +00002199 unsigned CostPerUseLimit = ~0u;
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002200 // First try assigning a free register.
Jakob Stoklund Olesenb8bf3c02011-06-03 20:34:53 +00002201 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo);
Manman Ren78cf02a2014-03-25 00:16:25 +00002202 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) {
2203 // We check other options if we are using a CSR for the first time.
2204 bool CSRFirstUse = false;
2205 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
2206 if (!MRI->isPhysRegUsed(CSR))
2207 CSRFirstUse = true;
2208
Manman Ren9dee4492014-03-27 21:21:57 +00002209 // When NewVRegs is not empty, we may have made decisions such as evicting
2210 // a virtual register, go with the earlier decisions and use the physical
2211 // register.
Manman Rened0de132014-03-27 23:10:04 +00002212 if ((CSRFirstTimeCost || TRI->getCSRFirstUseCost()) &&
2213 CSRFirstUse && NewVRegs.empty()) {
Manman Ren9dee4492014-03-27 21:21:57 +00002214 unsigned CSRReg = tryAssignCSRFirstTime(VirtReg, Order, PhysReg,
2215 CostPerUseLimit, NewVRegs);
2216 if (CSRReg || !NewVRegs.empty())
2217 // Return now if we decide to use a CSR or create new vregs due to
2218 // pre-splitting.
2219 return CSRReg;
Manman Ren78cf02a2014-03-25 00:16:25 +00002220 } else
2221 return PhysReg;
2222 }
Andrew Trickccef0982010-12-09 18:15:21 +00002223
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002224 LiveRangeStage Stage = getStage(VirtReg);
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002225 DEBUG(dbgs() << StageName[Stage]
2226 << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n');
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002227
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002228 // Try to evict a less worthy live range, but only for ranges from the primary
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002229 // queue. The RS_Split ranges already failed to do this, and they should not
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002230 // get a second chance until they have been split.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002231 if (Stage != RS_Split)
Manman Ren78cf02a2014-03-25 00:16:25 +00002232 if (unsigned PhysReg = tryEvict(VirtReg, Order, NewVRegs, CostPerUseLimit))
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002233 return PhysReg;
Andrew Trickccef0982010-12-09 18:15:21 +00002234
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002235 assert(NewVRegs.empty() && "Cannot append to existing NewVRegs");
2236
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002237 // The first time we see a live range, don't try to split or spill.
2238 // Wait until the second time, when all smaller ranges have been allocated.
2239 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002240 if (Stage < RS_Split) {
2241 setStage(VirtReg, RS_Split);
Jakob Stoklund Olesen86985072011-03-19 23:02:47 +00002242 DEBUG(dbgs() << "wait for second round\n");
Mark Laceyf9ea8852013-08-14 23:50:04 +00002243 NewVRegs.push_back(VirtReg.reg);
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002244 return 0;
2245 }
2246
Jakob Stoklund Olesena5c88992011-05-06 21:58:30 +00002247 // If we couldn't allocate a register from spilling, there is probably some
2248 // invalid inline assembly. The base class wil report it.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002249 if (Stage >= RS_Done || !VirtReg.isSpillable())
Quentin Colombet87769712014-02-05 22:13:59 +00002250 return tryLastChanceRecoloring(VirtReg, Order, NewVRegs, FixedRegisters,
2251 Depth);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00002252
Jakob Stoklund Olesen903b6d32010-12-14 00:37:49 +00002253 // Try splitting VirtReg or interferences.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002254 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
2255 if (PhysReg || !NewVRegs.empty())
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +00002256 return PhysReg;
2257
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002258 // Finally spill VirtReg itself.
Jakob Stoklund Olesen92da7052010-12-11 00:19:56 +00002259 NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesene5bbe372012-05-19 05:25:46 +00002260 LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesen4d6eafa2011-03-10 01:51:42 +00002261 spiller().spill(LRE);
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002262 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done);
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002263
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +00002264 if (VerifyEnabled)
2265 MF->verify(this, "After spilling");
2266
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002267 // The live virtual register requesting allocation was spilled, so tell
2268 // the caller not to allocate anything during this round.
2269 return 0;
2270}
2271
2272bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
2273 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
David Blaikiec8c29202012-08-22 17:18:53 +00002274 << "********** Function: " << mf.getName() << '\n');
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002275
2276 MF = &mf;
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00002277 TRI = MF->getTarget().getRegisterInfo();
2278 TII = MF->getTarget().getInstrInfo();
2279 RCI.runOnMachineFunction(mf);
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002280 if (VerifyEnabled)
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +00002281 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002282
Jakob Stoklund Olesen2d2dec92012-06-20 22:52:29 +00002283 RegAllocBase::init(getAnalysis<VirtRegMap>(),
2284 getAnalysis<LiveIntervals>(),
2285 getAnalysis<LiveRegMatrix>());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002286 Indexes = &getAnalysis<SlotIndexes>();
Benjamin Kramere2a1d892013-06-17 19:00:36 +00002287 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +00002288 DomTree = &getAnalysis<MachineDominatorTree>();
Jakob Stoklund Olesenadecb5e2010-12-10 22:54:44 +00002289 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002290 Loops = &getAnalysis<MachineLoopInfo>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002291 Bundles = &getAnalysis<EdgeBundles>();
2292 SpillPlacer = &getAnalysis<SpillPlacement>();
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00002293 DebugVars = &getAnalysis<LiveDebugVariables>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002294
Arnaud A. de Grandmaisonea3ac162013-11-11 19:04:45 +00002295 calculateSpillWeightsAndHints(*LIS, mf, *Loops, *MBFI);
Arnaud A. de Grandmaison760c1e02013-11-10 17:46:31 +00002296
Andrew Trick97064962013-07-25 07:26:26 +00002297 DEBUG(LIS->dump());
2298
Jakob Stoklund Olesenf1a60a62011-02-19 00:53:42 +00002299 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Benjamin Kramere2a1d892013-06-17 19:00:36 +00002300 SE.reset(new SplitEditor(*SA, *LIS, *VRM, *DomTree, *MBFI));
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002301 ExtraRegInfo.clear();
2302 ExtraRegInfo.resize(MRI->getNumVirtRegs());
2303 NextCascade = 1;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00002304 IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00002305 GlobalCand.resize(32); // This will grow as needed.
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002306
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002307 allocatePhysRegs();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002308 releaseMemory();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002309 return true;
2310}