blob: 0c93d266004eb19488c3214d6f2d1e6f9ee3b2f5 [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
Jakob Stoklund Olesen4d7432e2010-12-10 22:21:05 +000015#include "AllocationOrder.h"
Jakob Stoklund Olesen91cbcaf2011-04-02 06:03:35 +000016#include "InterferenceCache.h"
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +000017#include "LiveDebugVariables.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000018#include "RegAllocBase.h"
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +000019#include "SpillPlacement.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "Spiller.h"
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +000021#include "SplitKit.h"
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000022#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000023#include "llvm/Analysis/AliasAnalysis.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000024#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +000025#include "llvm/CodeGen/EdgeBundles.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000026#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000027#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000028#include "llvm/CodeGen/LiveRegMatrix.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000029#include "llvm/CodeGen/LiveStackAnalysis.h"
Benjamin Kramere2a1d892013-06-17 19:00:36 +000030#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +000031#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000032#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000033#include "llvm/CodeGen/MachineLoopInfo.h"
34#include "llvm/CodeGen/MachineRegisterInfo.h"
Wei Mi9a16d652016-04-13 03:08:27 +000035#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000036#include "llvm/CodeGen/RegAllocRegistry.h"
Quentin Colombet1fb3362a2014-01-02 22:47:22 +000037#include "llvm/CodeGen/RegisterClassInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000038#include "llvm/CodeGen/VirtRegMap.h"
Quentin Colombet96bd2a12014-04-04 02:05:21 +000039#include "llvm/IR/LLVMContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000040#include "llvm/PassAnalysisSupport.h"
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +000041#include "llvm/Support/BranchProbability.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"
Wei Mi9a16d652016-04-13 03:08:27 +000047#include "llvm/Target/TargetInstrInfo.h"
Quentin Colombet5caa6a22014-07-02 18:32:04 +000048#include "llvm/Target/TargetSubtargetInfo.h"
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +000049#include <queue>
50
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000051using namespace llvm;
52
Chandler Carruth1b9dde02014-04-22 02:02:50 +000053#define DEBUG_TYPE "regalloc"
54
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000055STATISTIC(NumGlobalSplits, "Number of split global live ranges");
56STATISTIC(NumLocalSplits, "Number of split local live ranges");
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000057STATISTIC(NumEvicted, "Number of interferences evicted");
58
Wei Mi9a16d652016-04-13 03:08:27 +000059static cl::opt<SplitEditor::ComplementSpillMode> SplitSpillMode(
60 "split-spill-mode", cl::Hidden,
61 cl::desc("Spill mode for splitting live ranges"),
62 cl::values(clEnumValN(SplitEditor::SM_Partition, "default", "Default"),
63 clEnumValN(SplitEditor::SM_Size, "size", "Optimize for size"),
64 clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed"),
65 clEnumValEnd),
66 cl::init(SplitEditor::SM_Speed));
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +000067
Quentin Colombet87769712014-02-05 22:13:59 +000068static cl::opt<unsigned>
69LastChanceRecoloringMaxDepth("lcr-max-depth", cl::Hidden,
70 cl::desc("Last chance recoloring max depth"),
71 cl::init(5));
72
73static cl::opt<unsigned> LastChanceRecoloringMaxInterference(
74 "lcr-max-interf", cl::Hidden,
75 cl::desc("Last chance recoloring maximum number of considered"
76 " interference at a time"),
77 cl::init(8));
78
Quentin Colombet567e30b2014-04-11 21:39:44 +000079static cl::opt<bool>
Quentin Colombet4344da12014-04-11 21:51:09 +000080ExhaustiveSearch("exhaustive-register-search", cl::NotHidden,
Quentin Colombet567e30b2014-04-11 21:39:44 +000081 cl::desc("Exhaustive Search for registers bypassing the depth "
82 "and interference cutoffs of last chance recoloring"));
83
Quentin Colombete1a36632014-07-01 14:08:37 +000084static cl::opt<bool> EnableLocalReassignment(
85 "enable-local-reassign", cl::Hidden,
86 cl::desc("Local reassignment can yield better allocation decisions, but "
87 "may be compile time intensive"),
Quentin Colombet5caa6a22014-07-02 18:32:04 +000088 cl::init(false));
Quentin Colombete1a36632014-07-01 14:08:37 +000089
Quentin Colombet11922942015-07-17 23:04:06 +000090static cl::opt<bool> EnableDeferredSpilling(
91 "enable-deferred-spilling", cl::Hidden,
92 cl::desc("Instead of spilling a variable right away, defer the actual "
93 "code insertion to the end of the allocation. That way the "
94 "allocator might still find a suitable coloring for this "
95 "variable because of other evicted variables."),
96 cl::init(false));
97
Manman Ren78cf02a2014-03-25 00:16:25 +000098// FIXME: Find a good default for this flag and remove the flag.
99static cl::opt<unsigned>
100CSRFirstTimeCost("regalloc-csr-first-time-cost",
101 cl::desc("Cost for first time use of callee-saved register."),
102 cl::init(0), cl::Hidden);
103
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000104static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
105 createGreedyRegisterAllocator);
106
107namespace {
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000108class RAGreedy : public MachineFunctionPass,
109 public RegAllocBase,
110 private LiveRangeEdit::Delegate {
Quentin Colombet87769712014-02-05 22:13:59 +0000111 // Convenient shortcuts.
112 typedef std::priority_queue<std::pair<unsigned, unsigned> > PQueue;
113 typedef SmallPtrSet<LiveInterval *, 4> SmallLISet;
114 typedef SmallSet<unsigned, 16> SmallVirtRegSet;
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000115
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000116 // context
117 MachineFunction *MF;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000118
Quentin Colombet1fb3362a2014-01-02 22:47:22 +0000119 // Shortcuts to some useful interface.
120 const TargetInstrInfo *TII;
121 const TargetRegisterInfo *TRI;
122 RegisterClassInfo RCI;
123
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000124 // analyses
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000125 SlotIndexes *Indexes;
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000126 MachineBlockFrequencyInfo *MBFI;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000127 MachineDominatorTree *DomTree;
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +0000128 MachineLoopInfo *Loops;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000129 EdgeBundles *Bundles;
130 SpillPlacement *SpillPlacer;
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000131 LiveDebugVariables *DebugVars;
Wei Mic0223702016-07-08 21:08:09 +0000132 AliasAnalysis *AA;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000133
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000134 // state
Ahmed Charles56440fd2014-03-06 05:51:42 +0000135 std::unique_ptr<Spiller> SpillerInstance;
Quentin Colombet87769712014-02-05 22:13:59 +0000136 PQueue Queue;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000137 unsigned NextCascade;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000138
139 // Live ranges pass through a number of stages as we try to allocate them.
140 // Some of the stages may also create new live ranges:
141 //
142 // - Region splitting.
143 // - Per-block splitting.
144 // - Local splitting.
145 // - Spilling.
146 //
147 // Ranges produced by one of the stages skip the previous stages when they are
148 // dequeued. This improves performance because we can skip interference checks
149 // that are unlikely to give any results. It also guarantees that the live
150 // range splitting algorithm terminates, something that is otherwise hard to
151 // ensure.
152 enum LiveRangeStage {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000153 /// Newly created live range that has never been queued.
154 RS_New,
155
156 /// Only attempt assignment and eviction. Then requeue as RS_Split.
157 RS_Assign,
158
159 /// Attempt live range splitting if assignment is impossible.
160 RS_Split,
161
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000162 /// Attempt more aggressive live range splitting that is guaranteed to make
163 /// progress. This is used for split products that may not be making
164 /// progress.
165 RS_Split2,
166
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000167 /// Live range will be spilled. No more splitting will be attempted.
168 RS_Spill,
169
Quentin Colombet11922942015-07-17 23:04:06 +0000170
171 /// Live range is in memory. Because of other evictions, it might get moved
172 /// in a register in the end.
173 RS_Memory,
174
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000175 /// There is nothing more we can do to this live range. Abort compilation
176 /// if it can't be assigned.
177 RS_Done
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000178 };
179
Quentin Colombet96bd2a12014-04-04 02:05:21 +0000180 // Enum CutOffStage to keep a track whether the register allocation failed
181 // because of the cutoffs encountered in last chance recoloring.
182 // Note: This is used as bitmask. New value should be next power of 2.
183 enum CutOffStage {
184 // No cutoffs encountered
185 CO_None = 0,
186
187 // lcr-max-depth cutoff encountered
188 CO_Depth = 1,
189
190 // lcr-max-interf cutoff encountered
191 CO_Interf = 2
192 };
193
194 uint8_t CutOffInfo;
195
Eli Friedman78bffa52013-09-10 23:18:14 +0000196#ifndef NDEBUG
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000197 static const char *const StageName[];
Eli Friedman78bffa52013-09-10 23:18:14 +0000198#endif
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000199
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000200 // RegInfo - Keep additional information about each live range.
201 struct RegInfo {
202 LiveRangeStage Stage;
203
204 // Cascade - Eviction loop prevention. See canEvictInterference().
205 unsigned Cascade;
206
207 RegInfo() : Stage(RS_New), Cascade(0) {}
208 };
209
210 IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000211
212 LiveRangeStage getStage(const LiveInterval &VirtReg) const {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000213 return ExtraRegInfo[VirtReg.reg].Stage;
214 }
215
216 void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) {
217 ExtraRegInfo.resize(MRI->getNumVirtRegs());
218 ExtraRegInfo[VirtReg.reg].Stage = Stage;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000219 }
220
221 template<typename Iterator>
222 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000223 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000224 for (;Begin != End; ++Begin) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000225 unsigned Reg = *Begin;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000226 if (ExtraRegInfo[Reg].Stage == RS_New)
227 ExtraRegInfo[Reg].Stage = NewStage;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000228 }
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000229 }
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000230
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000231 /// Cost of evicting interference.
232 struct EvictionCost {
233 unsigned BrokenHints; ///< Total number of broken hints.
234 float MaxWeight; ///< Maximum spill weight evicted.
235
Andrew Trick3621b8a2013-11-22 19:07:38 +0000236 EvictionCost(): BrokenHints(0), MaxWeight(0) {}
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000237
Andrew Trick84852572013-07-25 18:35:14 +0000238 bool isMax() const { return BrokenHints == ~0u; }
239
Andrew Trick3621b8a2013-11-22 19:07:38 +0000240 void setMax() { BrokenHints = ~0u; }
241
242 void setBrokenHints(unsigned NHints) { BrokenHints = NHints; }
243
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000244 bool operator<(const EvictionCost &O) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +0000245 return std::tie(BrokenHints, MaxWeight) <
246 std::tie(O.BrokenHints, O.MaxWeight);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000247 }
248 };
249
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000250 // splitting state.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000251 std::unique_ptr<SplitAnalysis> SA;
252 std::unique_ptr<SplitEditor> SE;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000253
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000254 /// Cached per-block interference maps
255 InterferenceCache IntfCache;
256
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000257 /// All basic blocks where the current register has uses.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000258 SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000259
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000260 /// Global live range splitting candidate info.
261 struct GlobalSplitCandidate {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000262 // Register intended for assignment, or 0.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000263 unsigned PhysReg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000264
265 // SplitKit interval index for this candidate.
266 unsigned IntvIdx;
267
268 // Interference for PhysReg.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000269 InterferenceCache::Cursor Intf;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000270
271 // Bundles where this candidate should be live.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000272 BitVector LiveBundles;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000273 SmallVector<unsigned, 8> ActiveBlocks;
274
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000275 void reset(InterferenceCache &Cache, unsigned Reg) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000276 PhysReg = Reg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000277 IntvIdx = 0;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000278 Intf.setPhysReg(Cache, Reg);
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000279 LiveBundles.clear();
280 ActiveBlocks.clear();
281 }
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000282
283 // Set B[i] = C for every live bundle where B[i] was NoCand.
284 unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) {
285 unsigned Count = 0;
286 for (int i = LiveBundles.find_first(); i >= 0;
287 i = LiveBundles.find_next(i))
288 if (B[i] == NoCand) {
289 B[i] = C;
290 Count++;
291 }
292 return Count;
293 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000294 };
295
Aditya Nandakumarc1fd0dd2013-11-19 23:51:32 +0000296 /// Candidate info for each PhysReg in AllocationOrder.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000297 /// This vector never shrinks, but grows to the size of the largest register
298 /// class.
299 SmallVector<GlobalSplitCandidate, 32> GlobalCand;
300
Alp Toker61007d82014-03-02 03:20:38 +0000301 enum : unsigned { NoCand = ~0u };
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000302
303 /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to
304 /// NoCand which indicates the stack interval.
305 SmallVector<unsigned, 32> BundleCand;
306
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +0000307 /// Callee-save register cost, calculated once per machine function.
308 BlockFrequency CSRCost;
309
Quentin Colombet5caa6a22014-07-02 18:32:04 +0000310 /// Run or not the local reassignment heuristic. This information is
311 /// obtained from the TargetSubtargetInfo.
312 bool EnableLocalReassign;
313
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000314 /// Set of broken hints that may be reconciled later because of eviction.
315 SmallSetVector<LiveInterval *, 8> SetOfBrokenHints;
316
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000317public:
318 RAGreedy();
319
320 /// Return the pass name.
Craig Topper4584cd52014-03-07 09:26:03 +0000321 const char* getPassName() const override {
Jakob Stoklund Olesen92da7052010-12-11 00:19:56 +0000322 return "Greedy Register Allocator";
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000323 }
324
325 /// RAGreedy analysis usage.
Craig Topper4584cd52014-03-07 09:26:03 +0000326 void getAnalysisUsage(AnalysisUsage &AU) const override;
327 void releaseMemory() override;
328 Spiller &spiller() override { return *SpillerInstance; }
329 void enqueue(LiveInterval *LI) override;
330 LiveInterval *dequeue() override;
331 unsigned selectOrSplit(LiveInterval&, SmallVectorImpl<unsigned>&) override;
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000332 void aboutToRemoveInterval(LiveInterval &) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000333
334 /// Perform register allocation.
Craig Topper4584cd52014-03-07 09:26:03 +0000335 bool runOnMachineFunction(MachineFunction &mf) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000336
Matthias Braun90799ce2016-08-23 21:19:49 +0000337 MachineFunctionProperties getRequiredProperties() const override {
338 return MachineFunctionProperties().set(
339 MachineFunctionProperties::Property::NoPHIs);
340 }
341
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000342 static char ID;
Andrew Trickccef0982010-12-09 18:15:21 +0000343
344private:
Quentin Colombet87769712014-02-05 22:13:59 +0000345 unsigned selectOrSplitImpl(LiveInterval &, SmallVectorImpl<unsigned> &,
346 SmallVirtRegSet &, unsigned = 0);
347
Craig Topper4584cd52014-03-07 09:26:03 +0000348 bool LRE_CanEraseVirtReg(unsigned) override;
349 void LRE_WillShrinkVirtReg(unsigned) override;
350 void LRE_DidCloneVirtReg(unsigned, unsigned) override;
Quentin Colombet87769712014-02-05 22:13:59 +0000351 void enqueue(PQueue &CurQueue, LiveInterval *LI);
352 LiveInterval *dequeue(PQueue &CurQueue);
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000353
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000354 BlockFrequency calcSpillCost();
355 bool addSplitConstraints(InterferenceCache::Cursor, BlockFrequency&);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000356 void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>);
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000357 void growRegion(GlobalSplitCandidate &Cand);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000358 BlockFrequency calcGlobalSplitCost(GlobalSplitCandidate&);
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +0000359 bool calcCompactRegion(GlobalSplitCandidate&);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000360 void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000361 void calcGapWeights(unsigned, SmallVectorImpl<float>&);
Andrew Trick8bb0a252013-07-25 18:35:19 +0000362 unsigned canReassign(LiveInterval &VirtReg, unsigned PhysReg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000363 bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool);
364 bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&);
365 void evictInterference(LiveInterval&, unsigned,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000366 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000367 bool mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
368 SmallLISet &RecoloringCandidates,
369 const SmallVirtRegSet &FixedRegisters);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000370
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000371 unsigned tryAssign(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000372 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000373 unsigned tryEvict(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000374 SmallVectorImpl<unsigned>&, unsigned = ~0u);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000375 unsigned tryRegionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000376 SmallVectorImpl<unsigned>&);
Manman Ren9db66b32014-03-24 23:23:42 +0000377 /// Calculate cost of region splitting.
378 unsigned calculateRegionSplitCost(LiveInterval &VirtReg,
379 AllocationOrder &Order,
380 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +0000381 unsigned &NumCands, bool IgnoreCSR);
Manman Ren9db66b32014-03-24 23:23:42 +0000382 /// Perform region splitting.
383 unsigned doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
384 bool HasCompact,
385 SmallVectorImpl<unsigned> &NewVRegs);
Manman Ren9dee4492014-03-27 21:21:57 +0000386 /// Check other options before using a callee-saved register for the first
387 /// time.
388 unsigned tryAssignCSRFirstTime(LiveInterval &VirtReg, AllocationOrder &Order,
389 unsigned PhysReg, unsigned &CostPerUseLimit,
390 SmallVectorImpl<unsigned> &NewVRegs);
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +0000391 void initializeCSRCost();
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +0000392 unsigned tryBlockSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000393 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +0000394 unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000395 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000396 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000397 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000398 unsigned trySplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000399 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000400 unsigned tryLastChanceRecoloring(LiveInterval &, AllocationOrder &,
401 SmallVectorImpl<unsigned> &,
402 SmallVirtRegSet &, unsigned);
403 bool tryRecoloringCandidates(PQueue &, SmallVectorImpl<unsigned> &,
404 SmallVirtRegSet &, unsigned);
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000405 void tryHintRecoloring(LiveInterval &);
406 void tryHintsRecoloring();
407
408 /// Model the information carried by one end of a copy.
409 struct HintInfo {
410 /// The frequency of the copy.
411 BlockFrequency Freq;
412 /// The virtual register or physical register.
413 unsigned Reg;
414 /// Its currently assigned register.
415 /// In case of a physical register Reg == PhysReg.
416 unsigned PhysReg;
417 HintInfo(BlockFrequency Freq, unsigned Reg, unsigned PhysReg)
418 : Freq(Freq), Reg(Reg), PhysReg(PhysReg) {}
419 };
420 typedef SmallVector<HintInfo, 4> HintsInfo;
421 BlockFrequency getBrokenHintFreq(const HintsInfo &, unsigned);
422 void collectHintInfo(unsigned, HintsInfo &);
Matthias Braun953393a2015-07-14 17:38:17 +0000423
424 bool isUnusedCalleeSavedReg(unsigned PhysReg) const;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000425};
426} // end anonymous namespace
427
428char RAGreedy::ID = 0;
429
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000430#ifndef NDEBUG
431const char *const RAGreedy::StageName[] = {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000432 "RS_New",
433 "RS_Assign",
434 "RS_Split",
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000435 "RS_Split2",
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000436 "RS_Spill",
Quentin Colombet11922942015-07-17 23:04:06 +0000437 "RS_Memory",
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000438 "RS_Done"
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000439};
440#endif
441
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000442// Hysteresis to use when comparing floats.
443// This helps stabilize decisions based on float comparisons.
NAKAMURA Takumia71003a2014-02-04 06:29:38 +0000444const float Hysteresis = (2007 / 2048.0f); // 0.97998046875
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000445
446
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000447FunctionPass* llvm::createGreedyRegisterAllocator() {
448 return new RAGreedy();
449}
450
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000451RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000452 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000453 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000454 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
455 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Rafael Espindola676c4052011-06-26 22:34:10 +0000456 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Tricke1c034f2012-01-17 06:55:03 +0000457 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000458 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
459 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
460 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
461 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000462 initializeLiveRegMatrixPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000463 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
464 initializeSpillPlacementPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000465}
466
467void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
468 AU.setPreservesCFG();
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000469 AU.addRequired<MachineBlockFrequencyInfo>();
470 AU.addPreserved<MachineBlockFrequencyInfo>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000471 AU.addRequired<AAResultsWrapperPass>();
472 AU.addPreserved<AAResultsWrapperPass>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000473 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesen12243122012-06-08 23:44:45 +0000474 AU.addPreserved<LiveIntervals>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000475 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000476 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000477 AU.addRequired<LiveDebugVariables>();
478 AU.addPreserved<LiveDebugVariables>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000479 AU.addRequired<LiveStacks>();
480 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000481 AU.addRequired<MachineDominatorTree>();
482 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000483 AU.addRequired<MachineLoopInfo>();
484 AU.addPreserved<MachineLoopInfo>();
485 AU.addRequired<VirtRegMap>();
486 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000487 AU.addRequired<LiveRegMatrix>();
488 AU.addPreserved<LiveRegMatrix>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000489 AU.addRequired<EdgeBundles>();
490 AU.addRequired<SpillPlacement>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000491 MachineFunctionPass::getAnalysisUsage(AU);
492}
493
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000494
495//===----------------------------------------------------------------------===//
496// LiveRangeEdit delegate methods
497//===----------------------------------------------------------------------===//
498
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000499bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000500 if (VRM->hasPhys(VirtReg)) {
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000501 LiveInterval &LI = LIS->getInterval(VirtReg);
502 Matrix->unassign(LI);
503 aboutToRemoveInterval(LI);
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000504 return true;
505 }
506 // Unassigned virtreg is probably in the priority queue.
507 // RegAllocBase will erase it after dequeueing.
508 return false;
509}
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000510
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000511void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000512 if (!VRM->hasPhys(VirtReg))
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000513 return;
514
515 // Register is assigned, put it back on the queue for reassignment.
516 LiveInterval &LI = LIS->getInterval(VirtReg);
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000517 Matrix->unassign(LI);
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000518 enqueue(&LI);
519}
520
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000521void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
Jakob Stoklund Olesen811b9c42011-09-14 17:34:37 +0000522 // Cloning a register we haven't even heard about yet? Just ignore it.
523 if (!ExtraRegInfo.inBounds(Old))
524 return;
525
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000526 // LRE may clone a virtual register because dead code elimination causes it to
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000527 // be split into connected components. The new components are much smaller
528 // than the original, so they should get a new chance at being assigned.
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000529 // same stage as the parent.
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000530 ExtraRegInfo[Old].Stage = RS_Assign;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000531 ExtraRegInfo.grow(New);
532 ExtraRegInfo[New] = ExtraRegInfo[Old];
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000533}
534
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000535void RAGreedy::releaseMemory() {
David Blaikieb61064e2014-07-19 01:05:11 +0000536 SpillerInstance.reset();
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000537 ExtraRegInfo.clear();
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000538 GlobalCand.clear();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000539}
540
Quentin Colombet87769712014-02-05 22:13:59 +0000541void RAGreedy::enqueue(LiveInterval *LI) { enqueue(Queue, LI); }
542
543void RAGreedy::enqueue(PQueue &CurQueue, LiveInterval *LI) {
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000544 // Prioritize live ranges by size, assigning larger ranges first.
545 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000546 const unsigned Size = LI->getSize();
547 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000548 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
549 "Can only enqueue virtual registers");
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000550 unsigned Prio;
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000551
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000552 ExtraRegInfo.grow(Reg);
553 if (ExtraRegInfo[Reg].Stage == RS_New)
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000554 ExtraRegInfo[Reg].Stage = RS_Assign;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000555
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000556 if (ExtraRegInfo[Reg].Stage == RS_Split) {
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000557 // Unsplit ranges that couldn't be allocated immediately are deferred until
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +0000558 // everything else has been allocated.
559 Prio = Size;
Quentin Colombet11922942015-07-17 23:04:06 +0000560 } else if (ExtraRegInfo[Reg].Stage == RS_Memory) {
561 // Memory operand should be considered last.
562 // Change the priority such that Memory operand are assigned in
563 // the reverse order that they came in.
564 // TODO: Make this a member variable and probably do something about hints.
565 static unsigned MemOp = 0;
566 Prio = MemOp++;
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000567 } else {
Andrew Trick52a00932014-02-26 22:07:26 +0000568 // Giant live ranges fall back to the global assignment heuristic, which
569 // prevents excessive spilling in pathological cases.
570 bool ReverseLocal = TRI->reverseLocalAssignment();
Matthias Brauna354cdd2015-03-31 19:57:53 +0000571 const TargetRegisterClass &RC = *MRI->getRegClass(Reg);
Renato Golin4e31ae12014-10-03 12:20:53 +0000572 bool ForceGlobal = !ReverseLocal &&
Matthias Brauna354cdd2015-03-31 19:57:53 +0000573 (Size / SlotIndex::InstrDist) > (2 * RC.getNumRegs());
Andrew Trick52a00932014-02-26 22:07:26 +0000574
575 if (ExtraRegInfo[Reg].Stage == RS_Assign && !ForceGlobal && !LI->empty() &&
Andrew Trick84852572013-07-25 18:35:14 +0000576 LIS->intervalIsInOneMBB(*LI)) {
577 // Allocate original local ranges in linear instruction order. Since they
578 // are singly defined, this produces optimal coloring in the absence of
579 // global interference and other constraints.
Andrew Trick52a00932014-02-26 22:07:26 +0000580 if (!ReverseLocal)
Andrew Trick2d8826a2013-12-11 03:40:15 +0000581 Prio = LI->beginIndex().getInstrDistance(Indexes->getLastIndex());
582 else {
583 // Allocating bottom up may allow many short LRGs to be assigned first
584 // to one of the cheap registers. This could be much faster for very
585 // large blocks on targets with many physical registers.
Matthias Braunf5f89b92015-03-31 19:57:49 +0000586 Prio = Indexes->getZeroIndex().getInstrDistance(LI->endIndex());
Andrew Trick2d8826a2013-12-11 03:40:15 +0000587 }
Matthias Brauna354cdd2015-03-31 19:57:53 +0000588 Prio |= RC.AllocationPriority << 24;
589 } else {
Andrew Trick84852572013-07-25 18:35:14 +0000590 // Allocate global and split ranges in long->short order. Long ranges that
591 // don't fit should be spilled (or split) ASAP so they don't create
592 // interference. Mark a bit to prioritize global above local ranges.
593 Prio = (1u << 29) + Size;
594 }
595 // Mark a higher bit to prioritize global and local above RS_Split.
596 Prio |= (1u << 31);
Jakob Stoklund Olesenb51f65c2011-02-23 00:56:56 +0000597
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000598 // Boost ranges that have a physical register hint.
Jakob Stoklund Olesen74052b02012-12-03 23:23:50 +0000599 if (VRM->hasKnownPreference(Reg))
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000600 Prio |= (1u << 30);
601 }
Andrew Trickf4b1ee32013-07-25 18:35:22 +0000602 // The virtual register number is a tie breaker for same-sized ranges.
603 // Give lower vreg numbers higher priority to assign them first.
Quentin Colombet87769712014-02-05 22:13:59 +0000604 CurQueue.push(std::make_pair(Prio, ~Reg));
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000605}
606
Quentin Colombet87769712014-02-05 22:13:59 +0000607LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); }
608
609LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) {
610 if (CurQueue.empty())
Craig Topperc0196b12014-04-14 00:51:57 +0000611 return nullptr;
Quentin Colombet87769712014-02-05 22:13:59 +0000612 LiveInterval *LI = &LIS->getInterval(~CurQueue.top().second);
613 CurQueue.pop();
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000614 return LI;
615}
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000616
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000617
618//===----------------------------------------------------------------------===//
619// Direct Assignment
620//===----------------------------------------------------------------------===//
621
622/// tryAssign - Try to assign VirtReg to an available register.
623unsigned RAGreedy::tryAssign(LiveInterval &VirtReg,
624 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000625 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000626 Order.rewind();
627 unsigned PhysReg;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000628 while ((PhysReg = Order.next()))
629 if (!Matrix->checkInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000630 break;
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000631 if (!PhysReg || Order.isHint())
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000632 return PhysReg;
633
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000634 // PhysReg is available, but there may be a better choice.
635
636 // If we missed a simple hint, try to cheaply evict interference from the
637 // preferred register.
638 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg))
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000639 if (Order.isHint(Hint)) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000640 DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n');
Andrew Trick3621b8a2013-11-22 19:07:38 +0000641 EvictionCost MaxCost;
642 MaxCost.setBrokenHints(1);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000643 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
644 evictInterference(VirtReg, Hint, NewVRegs);
645 return Hint;
646 }
647 }
648
649 // Try to evict interference from a cheaper alternative.
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000650 unsigned Cost = TRI->getCostPerUse(PhysReg);
651
652 // Most registers have 0 additional cost.
653 if (!Cost)
654 return PhysReg;
655
656 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost
657 << '\n');
658 unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost);
659 return CheapReg ? CheapReg : PhysReg;
660}
661
662
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000663//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000664// Interference eviction
665//===----------------------------------------------------------------------===//
666
Andrew Trick8bb0a252013-07-25 18:35:19 +0000667unsigned RAGreedy::canReassign(LiveInterval &VirtReg, unsigned PrevReg) {
Matthias Braun5d1f12d2015-07-15 22:16:00 +0000668 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo, Matrix);
Andrew Trick8bb0a252013-07-25 18:35:19 +0000669 unsigned PhysReg;
670 while ((PhysReg = Order.next())) {
671 if (PhysReg == PrevReg)
672 continue;
673
674 MCRegUnitIterator Units(PhysReg, TRI);
675 for (; Units.isValid(); ++Units) {
676 // Instantiate a "subquery", not to be confused with the Queries array.
677 LiveIntervalUnion::Query subQ(&VirtReg, &Matrix->getLiveUnions()[*Units]);
678 if (subQ.checkInterference())
679 break;
680 }
681 // If no units have interference, break out with the current PhysReg.
682 if (!Units.isValid())
683 break;
684 }
685 if (PhysReg)
686 DEBUG(dbgs() << "can reassign: " << VirtReg << " from "
687 << PrintReg(PrevReg, TRI) << " to " << PrintReg(PhysReg, TRI)
688 << '\n');
689 return PhysReg;
690}
691
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000692/// shouldEvict - determine if A should evict the assigned live range B. The
693/// eviction policy defined by this function together with the allocation order
694/// defined by enqueue() decides which registers ultimately end up being split
695/// and spilled.
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000696///
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000697/// Cascade numbers are used to prevent infinite loops if this function is a
698/// cyclic relation.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000699///
700/// @param A The live range to be assigned.
701/// @param IsHint True when A is about to be assigned to its preferred
702/// register.
703/// @param B The live range to be evicted.
704/// @param BreaksHint True when B is already assigned to its preferred register.
705bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint,
706 LiveInterval &B, bool BreaksHint) {
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000707 bool CanSplit = getStage(B) < RS_Spill;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000708
709 // Be fairly aggressive about following hints as long as the evictee can be
710 // split.
711 if (CanSplit && IsHint && !BreaksHint)
712 return true;
713
Andrew Trick059e8002013-11-22 19:07:42 +0000714 if (A.weight > B.weight) {
715 DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight << '\n');
716 return true;
717 }
718 return false;
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000719}
720
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000721/// canEvictInterference - Return true if all interferences between VirtReg and
Manman Renfa32ca12014-02-25 19:47:15 +0000722/// PhysReg can be evicted.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000723///
724/// @param VirtReg Live range that is about to be assigned.
725/// @param PhysReg Desired register for assignment.
Dmitri Gribenko881929c2012-09-12 16:59:47 +0000726/// @param IsHint True when PhysReg is VirtReg's preferred register.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000727/// @param MaxCost Only look for cheaper candidates and update with new cost
728/// when returning true.
729/// @returns True when interference can be evicted cheaper than MaxCost.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000730bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000731 bool IsHint, EvictionCost &MaxCost) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000732 // It is only possible to evict virtual register interference.
733 if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg)
734 return false;
735
Andrew Trick84852572013-07-25 18:35:14 +0000736 bool IsLocal = LIS->intervalIsInOneMBB(VirtReg);
737
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000738 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
739 // involved in an eviction before. If a cascade number was assigned, deny
740 // evicting anything with the same or a newer cascade number. This prevents
741 // infinite eviction loops.
742 //
743 // This works out so a register without a cascade number is allowed to evict
744 // anything, and it can be evicted by anything.
745 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
746 if (!Cascade)
747 Cascade = NextCascade;
748
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000749 EvictionCost Cost;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000750 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
751 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000752 // If there is 10 or more interferences, chances are one is heavier.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000753 if (Q.collectInterferingVRegs(10) >= 10)
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000754 return false;
755
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000756 // Check if any interfering live range is heavier than MaxWeight.
757 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
758 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000759 assert(TargetRegisterInfo::isVirtualRegister(Intf->reg) &&
760 "Only expecting virtual register interference from query");
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000761 // Never evict spill products. They cannot split or spill.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000762 if (getStage(*Intf) == RS_Done)
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000763 return false;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000764 // Once a live range becomes small enough, it is urgent that we find a
765 // register for it. This is indicated by an infinite spill weight. These
766 // urgent live ranges get to evict almost anything.
Jakob Stoklund Olesen05e22452012-05-30 21:46:58 +0000767 //
768 // Also allow urgent evictions of unspillable ranges from a strictly
769 // larger allocation order.
770 bool Urgent = !VirtReg.isSpillable() &&
771 (Intf->isSpillable() ||
772 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(VirtReg.reg)) <
773 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(Intf->reg)));
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000774 // Only evict older cascades or live ranges without a cascade.
775 unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade;
776 if (Cascade <= IntfCascade) {
777 if (!Urgent)
778 return false;
779 // We permit breaking cascades for urgent evictions. It should be the
780 // last resort, though, so make it really expensive.
781 Cost.BrokenHints += 10;
782 }
783 // Would this break a satisfied hint?
784 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg);
785 // Update eviction cost.
786 Cost.BrokenHints += BreaksHint;
787 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
788 // Abort if this would be too expensive.
789 if (!(Cost < MaxCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000790 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000791 if (Urgent)
792 continue;
Andrew Trickc2ab53a2013-11-29 23:49:38 +0000793 // Apply the eviction policy for non-urgent evictions.
794 if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
795 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000796 // If !MaxCost.isMax(), then we're just looking for a cheap register.
797 // Evicting another local live range in this case could lead to suboptimal
798 // coloring.
Andrew Trick8bb0a252013-07-25 18:35:19 +0000799 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) &&
Quentin Colombet5caa6a22014-07-02 18:32:04 +0000800 (!EnableLocalReassign || !canReassign(*Intf, PhysReg))) {
Andrew Trick84852572013-07-25 18:35:14 +0000801 return false;
Andrew Trick8bb0a252013-07-25 18:35:19 +0000802 }
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000803 }
804 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000805 MaxCost = Cost;
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000806 return true;
807}
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000808
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000809/// evictInterference - Evict any interferring registers that prevent VirtReg
810/// from being assigned to Physreg. This assumes that canEvictInterference
811/// returned true.
812void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000813 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000814 // Make sure that VirtReg has a cascade number, and assign that cascade
815 // number to every evicted register. These live ranges than then only be
816 // evicted by a newer cascade, preventing infinite loops.
817 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
818 if (!Cascade)
819 Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++;
820
821 DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI)
822 << " interference: Cascade " << Cascade << '\n');
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000823
824 // Collect all interfering virtregs first.
825 SmallVector<LiveInterval*, 8> Intfs;
826 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
827 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000828 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000829 ArrayRef<LiveInterval*> IVR = Q.interferingVRegs();
830 Intfs.append(IVR.begin(), IVR.end());
831 }
832
833 // Evict them second. This will invalidate the queries.
834 for (unsigned i = 0, e = Intfs.size(); i != e; ++i) {
835 LiveInterval *Intf = Intfs[i];
836 // The same VirtReg may be present in multiple RegUnits. Skip duplicates.
837 if (!VRM->hasPhys(Intf->reg))
838 continue;
839 Matrix->unassign(*Intf);
840 assert((ExtraRegInfo[Intf->reg].Cascade < Cascade ||
841 VirtReg.isSpillable() < Intf->isSpillable()) &&
842 "Cannot decrease cascade number, illegal eviction");
843 ExtraRegInfo[Intf->reg].Cascade = Cascade;
844 ++NumEvicted;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000845 NewVRegs.push_back(Intf->reg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000846 }
847}
848
Matthias Braun953393a2015-07-14 17:38:17 +0000849/// Returns true if the given \p PhysReg is a callee saved register and has not
850/// been used for allocation yet.
851bool RAGreedy::isUnusedCalleeSavedReg(unsigned PhysReg) const {
852 unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg);
853 if (CSR == 0)
854 return false;
855
856 return !Matrix->isPhysRegUsed(PhysReg);
857}
858
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000859/// tryEvict - Try to evict all interferences for a physreg.
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +0000860/// @param VirtReg Currently unassigned virtual register.
861/// @param Order Physregs to try.
862/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000863unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
864 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000865 SmallVectorImpl<unsigned> &NewVRegs,
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000866 unsigned CostPerUseLimit) {
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000867 NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled);
868
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000869 // Keep track of the cheapest interference seen so far.
Andrew Trick3621b8a2013-11-22 19:07:38 +0000870 EvictionCost BestCost;
871 BestCost.setMax();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000872 unsigned BestPhys = 0;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000873 unsigned OrderLimit = Order.getOrder().size();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000874
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000875 // When we are just looking for a reduced cost per use, don't break any
876 // hints, and only evict smaller spill weights.
877 if (CostPerUseLimit < ~0u) {
878 BestCost.BrokenHints = 0;
879 BestCost.MaxWeight = VirtReg.weight;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000880
881 // Check of any registers in RC are below CostPerUseLimit.
882 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg.reg);
883 unsigned MinCost = RegClassInfo.getMinCost(RC);
884 if (MinCost >= CostPerUseLimit) {
Craig Toppercf0444b2014-11-17 05:50:14 +0000885 DEBUG(dbgs() << TRI->getRegClassName(RC) << " minimum cost = " << MinCost
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000886 << ", no cheaper registers to be found.\n");
887 return 0;
888 }
889
890 // It is normal for register classes to have a long tail of registers with
891 // the same cost. We don't need to look at them if they're too expensive.
892 if (TRI->getCostPerUse(Order.getOrder().back()) >= CostPerUseLimit) {
893 OrderLimit = RegClassInfo.getLastCostChange(RC);
894 DEBUG(dbgs() << "Only trying the first " << OrderLimit << " regs.\n");
895 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000896 }
897
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000898 Order.rewind();
Aditya Nandakumar73f3d332013-12-05 21:18:40 +0000899 while (unsigned PhysReg = Order.next(OrderLimit)) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000900 if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit)
901 continue;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000902 // The first use of a callee-saved register in a function has cost 1.
903 // Don't start using a CSR when the CostPerUseLimit is low.
Matthias Braun953393a2015-07-14 17:38:17 +0000904 if (CostPerUseLimit == 1 && isUnusedCalleeSavedReg(PhysReg)) {
905 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
906 << PrintReg(RegClassInfo.getLastCalleeSavedAlias(PhysReg), TRI)
907 << '\n');
908 continue;
909 }
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000910
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000911 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000912 continue;
913
914 // Best so far.
915 BestPhys = PhysReg;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000916
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000917 // Stop if the hint can be used.
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000918 if (Order.isHint())
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000919 break;
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000920 }
921
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000922 if (!BestPhys)
923 return 0;
924
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000925 evictInterference(VirtReg, BestPhys, NewVRegs);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000926 return BestPhys;
Andrew Trickccef0982010-12-09 18:15:21 +0000927}
928
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000929
930//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000931// Region Splitting
932//===----------------------------------------------------------------------===//
933
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000934/// addSplitConstraints - Fill out the SplitConstraints vector based on the
935/// interference pattern in Physreg and its aliases. Add the constraints to
936/// SpillPlacement and return the static cost of this split in Cost, assuming
937/// that all preferences in SplitConstraints are met.
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000938/// Return false if there are no bundles with positive bias.
939bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf,
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000940 BlockFrequency &Cost) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000941 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000942
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000943 // Reset interference dependent info.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000944 SplitConstraints.resize(UseBlocks.size());
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000945 BlockFrequency StaticCost = 0;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000946 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
947 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000948 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000949
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000950 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000951 Intf.moveToBlock(BC.Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000952 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
953 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
David Blaikie041f1aa2013-05-15 07:36:59 +0000954 BC.ChangesValue = BI.FirstDef.isValid();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000955
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000956 if (!Intf.hasInterference())
957 continue;
958
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000959 // Number of spill code instructions to insert.
960 unsigned Ins = 0;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000961
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000962 // Interference for the live-in value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000963 if (BI.LiveIn) {
Richard Trieu7a083812016-02-18 22:09:30 +0000964 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number)) {
965 BC.Entry = SpillPlacement::MustSpill;
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000966 ++Ins;
Richard Trieu7a083812016-02-18 22:09:30 +0000967 } else if (Intf.first() < BI.FirstInstr) {
968 BC.Entry = SpillPlacement::PrefSpill;
969 ++Ins;
970 } else if (Intf.first() < BI.LastInstr) {
971 ++Ins;
972 }
Jakob Stoklund Olesenf248b202011-02-08 23:02:58 +0000973 }
974
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000975 // Interference for the live-out value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000976 if (BI.LiveOut) {
Richard Trieu7a083812016-02-18 22:09:30 +0000977 if (Intf.last() >= SA->getLastSplitPoint(BC.Number)) {
978 BC.Exit = SpillPlacement::MustSpill;
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000979 ++Ins;
Richard Trieu7a083812016-02-18 22:09:30 +0000980 } else if (Intf.last() > BI.LastInstr) {
981 BC.Exit = SpillPlacement::PrefSpill;
982 ++Ins;
983 } else if (Intf.last() > BI.FirstInstr) {
984 ++Ins;
985 }
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000986 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000987
988 // Accumulate the total frequency of inserted spill code.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000989 while (Ins--)
990 StaticCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000991 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000992 Cost = StaticCost;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000993
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000994 // Add constraints for use-blocks. Note that these are the only constraints
995 // that may add a positive bias, it is downhill from here.
996 SpillPlacer->addConstraints(SplitConstraints);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000997 return SpillPlacer->scanActiveBundles();
998}
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000999
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001000
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001001/// addThroughConstraints - Add constraints and links to SpillPlacer from the
1002/// live-through blocks in Blocks.
1003void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf,
1004 ArrayRef<unsigned> Blocks) {
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001005 const unsigned GroupSize = 8;
1006 SpillPlacement::BlockConstraint BCS[GroupSize];
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001007 unsigned TBS[GroupSize];
1008 unsigned B = 0, T = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001009
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001010 for (unsigned i = 0; i != Blocks.size(); ++i) {
1011 unsigned Number = Blocks[i];
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001012 Intf.moveToBlock(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001013
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001014 if (!Intf.hasInterference()) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001015 assert(T < GroupSize && "Array overflow");
1016 TBS[T] = Number;
1017 if (++T == GroupSize) {
Frits van Bommel717d7ed2011-07-18 12:00:32 +00001018 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001019 T = 0;
1020 }
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001021 continue;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001022 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001023
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001024 assert(B < GroupSize && "Array overflow");
1025 BCS[B].Number = Number;
1026
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001027 // Interference for the live-in value.
1028 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
1029 BCS[B].Entry = SpillPlacement::MustSpill;
1030 else
1031 BCS[B].Entry = SpillPlacement::PrefSpill;
1032
1033 // Interference for the live-out value.
1034 if (Intf.last() >= SA->getLastSplitPoint(Number))
1035 BCS[B].Exit = SpillPlacement::MustSpill;
1036 else
1037 BCS[B].Exit = SpillPlacement::PrefSpill;
1038
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001039 if (++B == GroupSize) {
Craig Toppere1d12942014-08-27 05:25:25 +00001040 SpillPlacer->addConstraints(makeArrayRef(BCS, B));
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001041 B = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001042 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001043 }
1044
Craig Toppere1d12942014-08-27 05:25:25 +00001045 SpillPlacer->addConstraints(makeArrayRef(BCS, B));
Frits van Bommel717d7ed2011-07-18 12:00:32 +00001046 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001047}
1048
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001049void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001050 // Keep track of through blocks that have not been added to SpillPlacer.
1051 BitVector Todo = SA->getThroughBlocks();
1052 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks;
1053 unsigned AddedTo = 0;
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001054#ifndef NDEBUG
1055 unsigned Visited = 0;
1056#endif
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001057
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001058 for (;;) {
1059 ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive();
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001060 // Find new through blocks in the periphery of PrefRegBundles.
1061 for (int i = 0, e = NewBundles.size(); i != e; ++i) {
1062 unsigned Bundle = NewBundles[i];
1063 // Look at all blocks connected to Bundle in the full graph.
1064 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
1065 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
1066 I != E; ++I) {
1067 unsigned Block = *I;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001068 if (!Todo.test(Block))
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001069 continue;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001070 Todo.reset(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001071 // This is a new through block. Add it to SpillPlacer later.
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001072 ActiveBlocks.push_back(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001073#ifndef NDEBUG
1074 ++Visited;
1075#endif
1076 }
1077 }
1078 // Any new blocks to add?
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001079 if (ActiveBlocks.size() == AddedTo)
1080 break;
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +00001081
1082 // Compute through constraints from the interference, or assume that all
1083 // through blocks prefer spilling when forming compact regions.
Craig Toppere1d12942014-08-27 05:25:25 +00001084 auto NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +00001085 if (Cand.PhysReg)
1086 addThroughConstraints(Cand.Intf, NewBlocks);
1087 else
Jakob Stoklund Olesen86954522011-08-03 23:09:38 +00001088 // Provide a strong negative bias on through blocks to prevent unwanted
1089 // liveness on loop backedges.
1090 SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true);
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001091 AddedTo = ActiveBlocks.size();
1092
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001093 // Perhaps iterating can enable more bundles?
1094 SpillPlacer->iterate();
1095 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001096 DEBUG(dbgs() << ", v=" << Visited);
1097}
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001098
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001099/// calcCompactRegion - Compute the set of edge bundles that should be live
1100/// when splitting the current live range into compact regions. Compact
1101/// regions can be computed without looking at interference. They are the
1102/// regions formed by removing all the live-through blocks from the live range.
1103///
1104/// Returns false if the current live range is already compact, or if the
1105/// compact regions would form single block regions anyway.
1106bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) {
1107 // Without any through blocks, the live range is already compact.
1108 if (!SA->getNumThroughBlocks())
1109 return false;
1110
1111 // Compact regions don't correspond to any physreg.
1112 Cand.reset(IntfCache, 0);
1113
1114 DEBUG(dbgs() << "Compact region bundles");
1115
1116 // Use the spill placer to determine the live bundles. GrowRegion pretends
1117 // that all the through blocks have interference when PhysReg is unset.
1118 SpillPlacer->prepare(Cand.LiveBundles);
1119
1120 // The static split cost will be zero since Cand.Intf reports no interference.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001121 BlockFrequency Cost;
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001122 if (!addSplitConstraints(Cand.Intf, Cost)) {
1123 DEBUG(dbgs() << ", none.\n");
1124 return false;
1125 }
1126
1127 growRegion(Cand);
1128 SpillPlacer->finish();
1129
1130 if (!Cand.LiveBundles.any()) {
1131 DEBUG(dbgs() << ", none.\n");
1132 return false;
1133 }
1134
1135 DEBUG({
1136 for (int i = Cand.LiveBundles.find_first(); i>=0;
1137 i = Cand.LiveBundles.find_next(i))
1138 dbgs() << " EB#" << i;
1139 dbgs() << ".\n";
1140 });
1141 return true;
1142}
1143
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001144/// calcSpillCost - Compute how expensive it would be to split the live range in
1145/// SA around all use blocks instead of forming bundle regions.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001146BlockFrequency RAGreedy::calcSpillCost() {
1147 BlockFrequency Cost = 0;
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001148 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1149 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1150 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1151 unsigned Number = BI.MBB->getNumber();
1152 // We normally only need one spill instruction - a load or a store.
1153 Cost += SpillPlacer->getBlockFrequency(Number);
1154
1155 // Unless the value is redefined in the block.
Jakob Stoklund Olesen3c145052011-08-02 23:04:08 +00001156 if (BI.LiveIn && BI.LiveOut && BI.FirstDef)
1157 Cost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001158 }
1159 return Cost;
1160}
1161
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001162/// calcGlobalSplitCost - Return the global split cost of following the split
1163/// pattern in LiveBundles. This cost should be added to the local cost of the
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001164/// interference pattern in SplitConstraints.
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001165///
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001166BlockFrequency RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) {
1167 BlockFrequency GlobalCost = 0;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001168 const BitVector &LiveBundles = Cand.LiveBundles;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001169 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1170 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1171 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001172 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001173 bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)];
1174 bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)];
1175 unsigned Ins = 0;
1176
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001177 if (BI.LiveIn)
1178 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
1179 if (BI.LiveOut)
1180 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001181 while (Ins--)
1182 GlobalCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001183 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001184
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001185 for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) {
1186 unsigned Number = Cand.ActiveBlocks[i];
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001187 bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)];
1188 bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)];
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001189 if (!RegIn && !RegOut)
1190 continue;
1191 if (RegIn && RegOut) {
1192 // We need double spill code if this block has interference.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001193 Cand.Intf.moveToBlock(Number);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001194 if (Cand.Intf.hasInterference()) {
1195 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1196 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1197 }
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001198 continue;
1199 }
1200 // live-in / stack-out or stack-in live-out.
1201 GlobalCost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001202 }
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001203 return GlobalCost;
1204}
1205
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001206/// splitAroundRegion - Split the current live range around the regions
1207/// determined by BundleCand and GlobalCand.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001208///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001209/// Before calling this function, GlobalCand and BundleCand must be initialized
1210/// so each bundle is assigned to a valid candidate, or NoCand for the
1211/// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor
1212/// objects must be initialized for the current live range, and intervals
1213/// created for the used candidates.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001214///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001215/// @param LREdit The LiveRangeEdit object handling the current split.
1216/// @param UsedCands List of used GlobalCand entries. Every BundleCand value
1217/// must appear in this list.
1218void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit,
1219 ArrayRef<unsigned> UsedCands) {
1220 // These are the intervals created for new global ranges. We may create more
1221 // intervals for local ranges.
1222 const unsigned NumGlobalIntvs = LREdit.size();
1223 DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n");
1224 assert(NumGlobalIntvs && "No global intervals configured");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001225
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001226 // Isolate even single instructions when dealing with a proper sub-class.
Jakob Stoklund Olesen22f37a12011-08-06 18:20:24 +00001227 // That guarantees register class inflation for the stack interval because it
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001228 // is all copies.
1229 unsigned Reg = SA->getParent().reg;
1230 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
1231
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001232 // First handle all the blocks with uses.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001233 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1234 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1235 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001236 unsigned Number = BI.MBB->getNumber();
1237 unsigned IntvIn = 0, IntvOut = 0;
1238 SlotIndex IntfIn, IntfOut;
1239 if (BI.LiveIn) {
1240 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1241 if (CandIn != NoCand) {
1242 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1243 IntvIn = Cand.IntvIdx;
1244 Cand.Intf.moveToBlock(Number);
1245 IntfIn = Cand.Intf.first();
1246 }
1247 }
1248 if (BI.LiveOut) {
1249 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1250 if (CandOut != NoCand) {
1251 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1252 IntvOut = Cand.IntvIdx;
1253 Cand.Intf.moveToBlock(Number);
1254 IntfOut = Cand.Intf.last();
1255 }
1256 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001257
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001258 // Create separate intervals for isolated blocks with multiple uses.
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001259 if (!IntvIn && !IntvOut) {
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001260 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n");
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001261 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001262 SE->splitSingleBlock(BI);
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001263 continue;
1264 }
1265
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001266 if (IntvIn && IntvOut)
1267 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1268 else if (IntvIn)
1269 SE->splitRegInBlock(BI, IntvIn, IntfIn);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001270 else
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001271 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001272 }
1273
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001274 // Handle live-through blocks. The relevant live-through blocks are stored in
1275 // the ActiveBlocks list with each candidate. We need to filter out
1276 // duplicates.
1277 BitVector Todo = SA->getThroughBlocks();
1278 for (unsigned c = 0; c != UsedCands.size(); ++c) {
1279 ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks;
1280 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
1281 unsigned Number = Blocks[i];
1282 if (!Todo.test(Number))
1283 continue;
1284 Todo.reset(Number);
1285
1286 unsigned IntvIn = 0, IntvOut = 0;
1287 SlotIndex IntfIn, IntfOut;
1288
1289 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1290 if (CandIn != NoCand) {
1291 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1292 IntvIn = Cand.IntvIdx;
1293 Cand.Intf.moveToBlock(Number);
1294 IntfIn = Cand.Intf.first();
1295 }
1296
1297 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1298 if (CandOut != NoCand) {
1299 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1300 IntvOut = Cand.IntvIdx;
1301 Cand.Intf.moveToBlock(Number);
1302 IntfOut = Cand.Intf.last();
1303 }
1304 if (!IntvIn && !IntvOut)
1305 continue;
1306 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1307 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001308 }
1309
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001310 ++NumGlobalSplits;
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001311
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001312 SmallVector<unsigned, 8> IntvMap;
1313 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001314 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00001315
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001316 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesen5cc91b22011-05-28 02:32:57 +00001317 unsigned OrigBlocks = SA->getNumLiveBlocks();
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001318
1319 // Sort out the new intervals created by splitting. We get four kinds:
1320 // - Remainder intervals should not be split again.
1321 // - Candidate intervals can be assigned to Cand.PhysReg.
1322 // - Block-local splits are candidates for local splitting.
1323 // - DCE leftovers should go back on the queue.
1324 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001325 LiveInterval &Reg = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001326
1327 // Ignore old intervals from DCE.
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001328 if (getStage(Reg) != RS_New)
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001329 continue;
1330
1331 // Remainder interval. Don't try splitting again, spill if it doesn't
1332 // allocate.
1333 if (IntvMap[i] == 0) {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00001334 setStage(Reg, RS_Spill);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001335 continue;
1336 }
1337
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001338 // Global intervals. Allow repeated splitting as long as the number of live
1339 // blocks is strictly decreasing.
1340 if (IntvMap[i] < NumGlobalIntvs) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001341 if (SA->countLiveBlocks(&Reg) >= OrigBlocks) {
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001342 DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks
1343 << " blocks as original.\n");
1344 // Don't allow repeated splitting as a safe guard against looping.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001345 setStage(Reg, RS_Split2);
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001346 }
1347 continue;
1348 }
1349
1350 // Other intervals are treated as new. This includes local intervals created
1351 // for blocks with multiple uses, and anything created by DCE.
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001352 }
1353
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +00001354 if (VerifyEnabled)
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001355 MF->verify(this, "After splitting live range around region");
1356}
1357
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001358unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001359 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001360 unsigned NumCands = 0;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001361 BlockFrequency BestCost;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001362
1363 // Check if we can split this live range around a compact region.
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +00001364 bool HasCompact = calcCompactRegion(GlobalCand.front());
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001365 if (HasCompact) {
1366 // Yes, keep GlobalCand[0] as the compact region candidate.
1367 NumCands = 1;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001368 BestCost = BlockFrequency::getMaxFrequency();
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001369 } else {
1370 // No benefit from the compact region, our fallback will be per-block
1371 // splitting. Make sure we find a solution that is cheaper than spilling.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001372 BestCost = calcSpillCost();
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001373 DEBUG(dbgs() << "Cost of isolating all blocks = ";
1374 MBFI->printBlockFreq(dbgs(), BestCost) << '\n');
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001375 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001376
Manman Ren9db66b32014-03-24 23:23:42 +00001377 unsigned BestCand =
Manman Ren78cf02a2014-03-25 00:16:25 +00001378 calculateRegionSplitCost(VirtReg, Order, BestCost, NumCands,
1379 false/*IgnoreCSR*/);
Manman Ren9db66b32014-03-24 23:23:42 +00001380
1381 // No solutions found, fall back to single block splitting.
1382 if (!HasCompact && BestCand == NoCand)
1383 return 0;
1384
1385 return doRegionSplit(VirtReg, BestCand, HasCompact, NewVRegs);
1386}
1387
1388unsigned RAGreedy::calculateRegionSplitCost(LiveInterval &VirtReg,
1389 AllocationOrder &Order,
1390 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +00001391 unsigned &NumCands,
1392 bool IgnoreCSR) {
Manman Ren9db66b32014-03-24 23:23:42 +00001393 unsigned BestCand = NoCand;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001394 Order.rewind();
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001395 while (unsigned PhysReg = Order.next()) {
Matthias Braun953393a2015-07-14 17:38:17 +00001396 if (IgnoreCSR && isUnusedCalleeSavedReg(PhysReg))
1397 continue;
Manman Ren78cf02a2014-03-25 00:16:25 +00001398
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001399 // Discard bad candidates before we run out of interference cache cursors.
1400 // This will only affect register classes with a lot of registers (>32).
1401 if (NumCands == IntfCache.getMaxCursors()) {
1402 unsigned WorstCount = ~0u;
1403 unsigned Worst = 0;
1404 for (unsigned i = 0; i != NumCands; ++i) {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001405 if (i == BestCand || !GlobalCand[i].PhysReg)
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001406 continue;
1407 unsigned Count = GlobalCand[i].LiveBundles.count();
Richard Trieu7a083812016-02-18 22:09:30 +00001408 if (Count < WorstCount) {
1409 Worst = i;
1410 WorstCount = Count;
1411 }
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001412 }
1413 --NumCands;
1414 GlobalCand[Worst] = GlobalCand[NumCands];
Jakob Stoklund Olesen559d4dc2011-11-01 00:02:31 +00001415 if (BestCand == NumCands)
1416 BestCand = Worst;
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001417 }
1418
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001419 if (GlobalCand.size() <= NumCands)
1420 GlobalCand.resize(NumCands+1);
1421 GlobalSplitCandidate &Cand = GlobalCand[NumCands];
1422 Cand.reset(IntfCache, PhysReg);
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001423
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001424 SpillPlacer->prepare(Cand.LiveBundles);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001425 BlockFrequency Cost;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001426 if (!addSplitConstraints(Cand.Intf, Cost)) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001427 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n");
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001428 continue;
1429 }
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001430 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = ";
1431 MBFI->printBlockFreq(dbgs(), Cost));
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001432 if (Cost >= BestCost) {
1433 DEBUG({
1434 if (BestCand == NoCand)
1435 dbgs() << " worse than no bundles\n";
1436 else
1437 dbgs() << " worse than "
1438 << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n';
1439 });
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001440 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001441 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001442 growRegion(Cand);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001443
Jakob Stoklund Olesen36b5d8a2011-04-06 19:13:57 +00001444 SpillPlacer->finish();
1445
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001446 // No live bundles, defer to splitSingleBlocks().
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001447 if (!Cand.LiveBundles.any()) {
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001448 DEBUG(dbgs() << " no bundles.\n");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001449 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001450 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001451
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001452 Cost += calcGlobalSplitCost(Cand);
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001453 DEBUG({
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001454 dbgs() << ", total = "; MBFI->printBlockFreq(dbgs(), Cost)
1455 << " with bundles";
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001456 for (int i = Cand.LiveBundles.find_first(); i>=0;
1457 i = Cand.LiveBundles.find_next(i))
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001458 dbgs() << " EB#" << i;
1459 dbgs() << ".\n";
1460 });
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001461 if (Cost < BestCost) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001462 BestCand = NumCands;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001463 BestCost = Cost;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001464 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001465 ++NumCands;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001466 }
Manman Ren9db66b32014-03-24 23:23:42 +00001467 return BestCand;
1468}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001469
Manman Ren9db66b32014-03-24 23:23:42 +00001470unsigned RAGreedy::doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
1471 bool HasCompact,
1472 SmallVectorImpl<unsigned> &NewVRegs) {
1473 SmallVector<unsigned, 8> UsedCands;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001474 // Prepare split editor.
Wei Mi9a16d652016-04-13 03:08:27 +00001475 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001476 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001477
1478 // Assign all edge bundles to the preferred candidate, or NoCand.
1479 BundleCand.assign(Bundles->getNumBundles(), NoCand);
1480
1481 // Assign bundles for the best candidate region.
1482 if (BestCand != NoCand) {
1483 GlobalSplitCandidate &Cand = GlobalCand[BestCand];
1484 if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
1485 UsedCands.push_back(BestCand);
1486 Cand.IntvIdx = SE->openIntv();
1487 DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in "
1488 << B << " bundles, intv " << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001489 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001490 }
1491 }
1492
1493 // Assign bundles for the compact region.
1494 if (HasCompact) {
1495 GlobalSplitCandidate &Cand = GlobalCand.front();
1496 assert(!Cand.PhysReg && "Compact region has no physreg");
1497 if (unsigned B = Cand.getBundles(BundleCand, 0)) {
1498 UsedCands.push_back(0);
1499 Cand.IntvIdx = SE->openIntv();
1500 DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv "
1501 << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001502 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001503 }
1504 }
1505
1506 splitAroundRegion(LREdit, UsedCands);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001507 return 0;
1508}
1509
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001510
1511//===----------------------------------------------------------------------===//
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001512// Per-Block Splitting
1513//===----------------------------------------------------------------------===//
1514
1515/// tryBlockSplit - Split a global live range around every block with uses. This
1516/// creates a lot of local live ranges, that will be split by tryLocalSplit if
1517/// they don't allocate.
1518unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001519 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001520 assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed");
1521 unsigned Reg = VirtReg.reg;
1522 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
Wei Mi9a16d652016-04-13 03:08:27 +00001523 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001524 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001525 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1526 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1527 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1528 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
1529 SE->splitSingleBlock(BI);
1530 }
1531 // No blocks were split.
1532 if (LREdit.empty())
1533 return 0;
1534
1535 // We did split for some blocks.
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001536 SmallVector<unsigned, 8> IntvMap;
1537 SE->finish(&IntvMap);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001538
1539 // Tell LiveDebugVariables about the new ranges.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001540 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001541
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001542 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1543
1544 // Sort out the new intervals created by splitting. The remainder interval
1545 // goes straight to spilling, the new local ranges get to stay RS_New.
1546 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001547 LiveInterval &LI = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001548 if (getStage(LI) == RS_New && IntvMap[i] == 0)
1549 setStage(LI, RS_Spill);
1550 }
1551
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001552 if (VerifyEnabled)
1553 MF->verify(this, "After splitting live range around basic blocks");
1554 return 0;
1555}
1556
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001557
1558//===----------------------------------------------------------------------===//
1559// Per-Instruction Splitting
1560//===----------------------------------------------------------------------===//
1561
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001562/// Get the number of allocatable registers that match the constraints of \p Reg
1563/// on \p MI and that are also in \p SuperRC.
1564static unsigned getNumAllocatableRegsForConstraints(
1565 const MachineInstr *MI, unsigned Reg, const TargetRegisterClass *SuperRC,
1566 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI,
1567 const RegisterClassInfo &RCI) {
1568 assert(SuperRC && "Invalid register class");
1569
1570 const TargetRegisterClass *ConstrainedRC =
1571 MI->getRegClassConstraintEffectForVReg(Reg, SuperRC, TII, TRI,
1572 /* ExploreBundle */ true);
1573 if (!ConstrainedRC)
1574 return 0;
1575 return RCI.getNumAllocatableRegs(ConstrainedRC);
1576}
1577
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001578/// tryInstructionSplit - Split a live range around individual instructions.
1579/// This is normally not worthwhile since the spiller is doing essentially the
1580/// same thing. However, when the live range is in a constrained register
1581/// class, it may help to insert copies such that parts of the live range can
1582/// be moved to a larger register class.
1583///
1584/// This is similar to spilling to a larger register class.
1585unsigned
1586RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001587 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001588 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001589 // There is no point to this if there are no larger sub-classes.
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001590 if (!RegClassInfo.isProperSubClass(CurRC))
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001591 return 0;
1592
1593 // Always enable split spill mode, since we're effectively spilling to a
1594 // register.
Wei Mi9a16d652016-04-13 03:08:27 +00001595 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001596 SE->reset(LREdit, SplitEditor::SM_Size);
1597
1598 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
1599 if (Uses.size() <= 1)
1600 return 0;
1601
1602 DEBUG(dbgs() << "Split around " << Uses.size() << " individual instrs.\n");
1603
Eric Christopher433c4322015-03-10 23:46:01 +00001604 const TargetRegisterClass *SuperRC =
1605 TRI->getLargestLegalSuperClass(CurRC, *MF);
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001606 unsigned SuperRCNumAllocatableRegs = RCI.getNumAllocatableRegs(SuperRC);
1607 // Split around every non-copy instruction if this split will relax
1608 // the constraints on the virtual register.
1609 // Otherwise, splitting just inserts uncoalescable copies that do not help
1610 // the allocation.
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001611 for (unsigned i = 0; i != Uses.size(); ++i) {
1612 if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]))
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001613 if (MI->isFullCopy() ||
1614 SuperRCNumAllocatableRegs ==
1615 getNumAllocatableRegsForConstraints(MI, VirtReg.reg, SuperRC, TII,
1616 TRI, RCI)) {
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001617 DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI);
1618 continue;
1619 }
1620 SE->openIntv();
1621 SlotIndex SegStart = SE->enterIntvBefore(Uses[i]);
1622 SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]);
1623 SE->useIntv(SegStart, SegStop);
1624 }
1625
1626 if (LREdit.empty()) {
1627 DEBUG(dbgs() << "All uses were copies.\n");
1628 return 0;
1629 }
1630
1631 SmallVector<unsigned, 8> IntvMap;
1632 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001633 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001634 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1635
1636 // Assign all new registers to RS_Spill. This was the last chance.
1637 setStage(LREdit.begin(), LREdit.end(), RS_Spill);
1638 return 0;
1639}
1640
1641
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001642//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001643// Local Splitting
1644//===----------------------------------------------------------------------===//
1645
1646
1647/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
1648/// in order to use PhysReg between two entries in SA->UseSlots.
1649///
1650/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1651///
1652void RAGreedy::calcGapWeights(unsigned PhysReg,
1653 SmallVectorImpl<float> &GapWeight) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001654 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1655 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001656 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001657 const unsigned NumGaps = Uses.size()-1;
1658
1659 // Start and end points for the interference check.
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001660 SlotIndex StartIdx =
1661 BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr;
1662 SlotIndex StopIdx =
1663 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001664
1665 GapWeight.assign(NumGaps, 0.0f);
1666
1667 // Add interference from each overlapping register.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001668 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1669 if (!Matrix->query(const_cast<LiveInterval&>(SA->getParent()), *Units)
1670 .checkInterference())
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001671 continue;
1672
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001673 // We know that VirtReg is a continuous interval from FirstInstr to
1674 // LastInstr, so we don't need InterferenceQuery.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001675 //
1676 // Interference that overlaps an instruction is counted in both gaps
1677 // surrounding the instruction. The exception is interference before
1678 // StartIdx and after StopIdx.
1679 //
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001680 LiveIntervalUnion::SegmentIter IntI =
1681 Matrix->getLiveUnions()[*Units] .find(StartIdx);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001682 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
1683 // Skip the gaps before IntI.
1684 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
1685 if (++Gap == NumGaps)
1686 break;
1687 if (Gap == NumGaps)
1688 break;
1689
1690 // Update the gaps covered by IntI.
1691 const float weight = IntI.value()->weight;
1692 for (; Gap != NumGaps; ++Gap) {
1693 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1694 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1695 break;
1696 }
1697 if (Gap == NumGaps)
1698 break;
1699 }
1700 }
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001701
1702 // Add fixed interference.
1703 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
Matthias Braun34e1be92013-10-10 21:29:02 +00001704 const LiveRange &LR = LIS->getRegUnit(*Units);
1705 LiveRange::const_iterator I = LR.find(StartIdx);
1706 LiveRange::const_iterator E = LR.end();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001707
1708 // Same loop as above. Mark any overlapped gaps as HUGE_VALF.
1709 for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) {
1710 while (Uses[Gap+1].getBoundaryIndex() < I->start)
1711 if (++Gap == NumGaps)
1712 break;
1713 if (Gap == NumGaps)
1714 break;
1715
1716 for (; Gap != NumGaps; ++Gap) {
Aaron Ballman04999042013-11-13 00:15:44 +00001717 GapWeight[Gap] = llvm::huge_valf;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001718 if (Uses[Gap+1].getBaseIndex() >= I->end)
1719 break;
1720 }
1721 if (Gap == NumGaps)
1722 break;
1723 }
1724 }
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001725}
1726
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001727/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1728/// basic block.
1729///
1730unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001731 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001732 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1733 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001734
1735 // Note that it is possible to have an interval that is live-in or live-out
1736 // while only covering a single block - A phi-def can use undef values from
1737 // predecessors, and the block could be a single-block loop.
1738 // We don't bother doing anything clever about such a case, we simply assume
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001739 // that the interval is continuous from FirstInstr to LastInstr. We should
1740 // make sure that we don't do anything illegal to such an interval, though.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001741
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001742 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001743 if (Uses.size() <= 2)
1744 return 0;
1745 const unsigned NumGaps = Uses.size()-1;
1746
1747 DEBUG({
1748 dbgs() << "tryLocalSplit: ";
1749 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001750 dbgs() << ' ' << Uses[i];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001751 dbgs() << '\n';
1752 });
1753
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001754 // If VirtReg is live across any register mask operands, compute a list of
1755 // gaps with register masks.
1756 SmallVector<unsigned, 8> RegMaskGaps;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001757 if (Matrix->checkRegMaskInterference(VirtReg)) {
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001758 // Get regmask slots for the whole block.
1759 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001760 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001761 // Constrain to VirtReg's live range.
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001762 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1763 Uses.front().getRegSlot()) - RMS.begin();
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001764 unsigned re = RMS.size();
1765 for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001766 // Look for Uses[i] <= RMS <= Uses[i+1].
1767 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1768 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001769 continue;
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001770 // Skip a regmask on the same instruction as the last use. It doesn't
1771 // overlap the live range.
1772 if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps)
1773 break;
1774 DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]);
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001775 RegMaskGaps.push_back(i);
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001776 // Advance ri to the next gap. A regmask on one of the uses counts in
1777 // both gaps.
1778 while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1]))
1779 ++ri;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001780 }
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001781 DEBUG(dbgs() << '\n');
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001782 }
1783
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001784 // Since we allow local split results to be split again, there is a risk of
1785 // creating infinite loops. It is tempting to require that the new live
1786 // ranges have less instructions than the original. That would guarantee
1787 // convergence, but it is too strict. A live range with 3 instructions can be
1788 // split 2+3 (including the COPY), and we want to allow that.
1789 //
1790 // Instead we use these rules:
1791 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001792 // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001793 // noop split, of course).
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001794 // 2. Require progress be made for ranges with getStage() == RS_Split2. All
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001795 // the new ranges must have fewer instructions than before the split.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001796 // 3. New ranges with the same number of instructions are marked RS_Split2,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001797 // smaller ranges are marked RS_New.
1798 //
1799 // These rules allow a 3 -> 2+3 split once, which we need. They also prevent
1800 // excessive splitting and infinite loops.
1801 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001802 bool ProgressRequired = getStage(VirtReg) >= RS_Split2;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001803
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001804 // Best split candidate.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001805 unsigned BestBefore = NumGaps;
1806 unsigned BestAfter = 0;
1807 float BestDiff = 0;
1808
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001809 const float blockFreq =
1810 SpillPlacer->getBlockFrequency(BI.MBB->getNumber()).getFrequency() *
Michael Gottesman5e985ee2013-12-14 02:37:38 +00001811 (1.0f / MBFI->getEntryFreq());
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001812 SmallVector<float, 8> GapWeight;
1813
1814 Order.rewind();
1815 while (unsigned PhysReg = Order.next()) {
1816 // Keep track of the largest spill weight that would need to be evicted in
1817 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1818 calcGapWeights(PhysReg, GapWeight);
1819
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001820 // Remove any gaps with regmask clobbers.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001821 if (Matrix->checkRegMaskInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001822 for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i)
Aaron Ballman04999042013-11-13 00:15:44 +00001823 GapWeight[RegMaskGaps[i]] = llvm::huge_valf;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001824
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001825 // Try to find the best sequence of gaps to close.
1826 // The new spill weight must be larger than any gap interference.
1827
1828 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001829 unsigned SplitBefore = 0, SplitAfter = 1;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001830
1831 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1832 // It is the spill weight that needs to be evicted.
1833 float MaxGap = GapWeight[0];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001834
1835 for (;;) {
1836 // Live before/after split?
1837 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1838 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1839
1840 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1841 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1842 << " i=" << MaxGap);
1843
1844 // Stop before the interval gets so big we wouldn't be making progress.
1845 if (!LiveBefore && !LiveAfter) {
1846 DEBUG(dbgs() << " all\n");
1847 break;
1848 }
1849 // Should the interval be extended or shrunk?
1850 bool Shrink = true;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001851
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001852 // How many gaps would the new range have?
1853 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1854
1855 // Legally, without causing looping?
1856 bool Legal = !ProgressRequired || NewGaps < NumGaps;
1857
Aaron Ballman04999042013-11-13 00:15:44 +00001858 if (Legal && MaxGap < llvm::huge_valf) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001859 // Estimate the new spill weight. Each instruction reads or writes the
1860 // register. Conservatively assume there are no read-modify-write
1861 // instructions.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001862 //
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001863 // Try to guess the size of the new interval.
Arnaud A. de Grandmaison829dd812014-11-04 20:51:24 +00001864 const float EstWeight = normalizeSpillWeight(
1865 blockFreq * (NewGaps + 1),
1866 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1867 (LiveBefore + LiveAfter) * SlotIndex::InstrDist,
1868 1);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001869 // Would this split be possible to allocate?
1870 // Never allocate all gaps, we wouldn't be making progress.
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001871 DEBUG(dbgs() << " w=" << EstWeight);
1872 if (EstWeight * Hysteresis >= MaxGap) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001873 Shrink = false;
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001874 float Diff = EstWeight - MaxGap;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001875 if (Diff > BestDiff) {
1876 DEBUG(dbgs() << " (best)");
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001877 BestDiff = Hysteresis * Diff;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001878 BestBefore = SplitBefore;
1879 BestAfter = SplitAfter;
1880 }
1881 }
1882 }
1883
1884 // Try to shrink.
1885 if (Shrink) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001886 if (++SplitBefore < SplitAfter) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001887 DEBUG(dbgs() << " shrink\n");
1888 // Recompute the max when necessary.
1889 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1890 MaxGap = GapWeight[SplitBefore];
1891 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1892 MaxGap = std::max(MaxGap, GapWeight[i]);
1893 }
1894 continue;
1895 }
1896 MaxGap = 0;
1897 }
1898
1899 // Try to extend the interval.
1900 if (SplitAfter >= NumGaps) {
1901 DEBUG(dbgs() << " end\n");
1902 break;
1903 }
1904
1905 DEBUG(dbgs() << " extend\n");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001906 MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001907 }
1908 }
1909
1910 // Didn't find any candidates?
1911 if (BestBefore == NumGaps)
1912 return 0;
1913
1914 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1915 << '-' << Uses[BestAfter] << ", " << BestDiff
1916 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1917
Wei Mi9a16d652016-04-13 03:08:27 +00001918 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001919 SE->reset(LREdit);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001920
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001921 SE->openIntv();
1922 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1923 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1924 SE->useIntv(SegStart, SegStop);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001925 SmallVector<unsigned, 8> IntvMap;
1926 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001927 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001928
1929 // If the new range has the same number of instructions as before, mark it as
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001930 // RS_Split2 so the next split will be forced to make progress. Otherwise,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001931 // leave the new intervals as RS_New so they can compete.
1932 bool LiveBefore = BestBefore != 0 || BI.LiveIn;
1933 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut;
1934 unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter;
1935 if (NewGaps >= NumGaps) {
1936 DEBUG(dbgs() << "Tagging non-progress ranges: ");
1937 assert(!ProgressRequired && "Didn't make progress when it was required.");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001938 for (unsigned i = 0, e = IntvMap.size(); i != e; ++i)
1939 if (IntvMap[i] == 1) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001940 setStage(LIS->getInterval(LREdit.get(i)), RS_Split2);
1941 DEBUG(dbgs() << PrintReg(LREdit.get(i)));
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001942 }
1943 DEBUG(dbgs() << '\n');
1944 }
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001945 ++NumLocalSplits;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001946
1947 return 0;
1948}
1949
1950//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001951// Live Range Splitting
1952//===----------------------------------------------------------------------===//
1953
1954/// trySplit - Try to split VirtReg or one of its interferences, making it
1955/// assignable.
1956/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1957unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001958 SmallVectorImpl<unsigned>&NewVRegs) {
Jakob Stoklund Olesend4bb1d42011-08-05 23:50:33 +00001959 // Ranges must be Split2 or less.
1960 if (getStage(VirtReg) >= RS_Spill)
1961 return 0;
1962
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001963 // Local intervals are handled separately.
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001964 if (LIS->intervalIsInOneMBB(VirtReg)) {
1965 NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001966 SA->analyze(&VirtReg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001967 unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs);
1968 if (PhysReg || !NewVRegs.empty())
1969 return PhysReg;
1970 return tryInstructionSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001971 }
1972
1973 NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001974
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001975 SA->analyze(&VirtReg);
1976
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00001977 // FIXME: SplitAnalysis may repair broken live ranges coming from the
1978 // coalescer. That may cause the range to become allocatable which means that
1979 // tryRegionSplit won't be making progress. This check should be replaced with
1980 // an assertion when the coalescer is fixed.
1981 if (SA->didRepairRange()) {
1982 // VirtReg has changed, so all cached queries are invalid.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001983 Matrix->invalidateVirtRegs();
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00001984 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1985 return PhysReg;
1986 }
1987
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001988 // First try to split around a region spanning multiple blocks. RS_Split2
1989 // ranges already made dubious progress with region splitting, so they go
1990 // straight to single block splitting.
1991 if (getStage(VirtReg) < RS_Split2) {
1992 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
1993 if (PhysReg || !NewVRegs.empty())
1994 return PhysReg;
1995 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001996
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001997 // Then isolate blocks.
1998 return tryBlockSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001999}
2000
Quentin Colombet87769712014-02-05 22:13:59 +00002001//===----------------------------------------------------------------------===//
2002// Last Chance Recoloring
2003//===----------------------------------------------------------------------===//
2004
2005/// mayRecolorAllInterferences - Check if the virtual registers that
2006/// interfere with \p VirtReg on \p PhysReg (or one of its aliases) may be
2007/// recolored to free \p PhysReg.
2008/// When true is returned, \p RecoloringCandidates has been augmented with all
2009/// the live intervals that need to be recolored in order to free \p PhysReg
2010/// for \p VirtReg.
2011/// \p FixedRegisters contains all the virtual registers that cannot be
2012/// recolored.
2013bool
2014RAGreedy::mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
2015 SmallLISet &RecoloringCandidates,
2016 const SmallVirtRegSet &FixedRegisters) {
2017 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
2018
2019 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
2020 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
2021 // If there is LastChanceRecoloringMaxInterference or more interferences,
2022 // chances are one would not be recolorable.
2023 if (Q.collectInterferingVRegs(LastChanceRecoloringMaxInterference) >=
Quentin Colombet567e30b2014-04-11 21:39:44 +00002024 LastChanceRecoloringMaxInterference && !ExhaustiveSearch) {
Quentin Colombet87769712014-02-05 22:13:59 +00002025 DEBUG(dbgs() << "Early abort: too many interferences.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002026 CutOffInfo |= CO_Interf;
Quentin Colombet87769712014-02-05 22:13:59 +00002027 return false;
2028 }
2029 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
2030 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
2031 // If Intf is done and sit on the same register class as VirtReg,
2032 // it would not be recolorable as it is in the same state as VirtReg.
2033 if ((getStage(*Intf) == RS_Done &&
2034 MRI->getRegClass(Intf->reg) == CurRC) ||
2035 FixedRegisters.count(Intf->reg)) {
2036 DEBUG(dbgs() << "Early abort: the inteference is not recolorable.\n");
2037 return false;
2038 }
2039 RecoloringCandidates.insert(Intf);
2040 }
2041 }
2042 return true;
2043}
2044
2045/// tryLastChanceRecoloring - Try to assign a color to \p VirtReg by recoloring
2046/// its interferences.
2047/// Last chance recoloring chooses a color for \p VirtReg and recolors every
2048/// virtual register that was using it. The recoloring process may recursively
2049/// use the last chance recoloring. Therefore, when a virtual register has been
2050/// assigned a color by this mechanism, it is marked as Fixed, i.e., it cannot
2051/// be last-chance-recolored again during this recoloring "session".
2052/// E.g.,
2053/// Let
2054/// vA can use {R1, R2 }
2055/// vB can use { R2, R3}
2056/// vC can use {R1 }
2057/// Where vA, vB, and vC cannot be split anymore (they are reloads for
2058/// instance) and they all interfere.
2059///
2060/// vA is assigned R1
2061/// vB is assigned R2
2062/// vC tries to evict vA but vA is already done.
2063/// Regular register allocation fails.
2064///
2065/// Last chance recoloring kicks in:
2066/// vC does as if vA was evicted => vC uses R1.
2067/// vC is marked as fixed.
2068/// vA needs to find a color.
2069/// None are available.
2070/// vA cannot evict vC: vC is a fixed virtual register now.
2071/// vA does as if vB was evicted => vA uses R2.
2072/// vB needs to find a color.
2073/// R3 is available.
2074/// Recoloring => vC = R1, vA = R2, vB = R3
2075///
Alp Toker70b36992014-02-25 04:21:15 +00002076/// \p Order defines the preferred allocation order for \p VirtReg.
Quentin Colombet87769712014-02-05 22:13:59 +00002077/// \p NewRegs will contain any new virtual register that have been created
2078/// (split, spill) during the process and that must be assigned.
2079/// \p FixedRegisters contains all the virtual registers that cannot be
2080/// recolored.
2081/// \p Depth gives the current depth of the last chance recoloring.
2082/// \return a physical register that can be used for VirtReg or ~0u if none
2083/// exists.
2084unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg,
2085 AllocationOrder &Order,
2086 SmallVectorImpl<unsigned> &NewVRegs,
2087 SmallVirtRegSet &FixedRegisters,
2088 unsigned Depth) {
2089 DEBUG(dbgs() << "Try last chance recoloring for " << VirtReg << '\n');
2090 // Ranges must be Done.
Quentin Colombet0e3b5e02014-02-13 05:17:37 +00002091 assert((getStage(VirtReg) >= RS_Done || !VirtReg.isSpillable()) &&
Quentin Colombet87769712014-02-05 22:13:59 +00002092 "Last chance recoloring should really be last chance");
2093 // Set the max depth to LastChanceRecoloringMaxDepth.
2094 // We may want to reconsider that if we end up with a too large search space
2095 // for target with hundreds of registers.
2096 // Indeed, in that case we may want to cut the search space earlier.
Quentin Colombet567e30b2014-04-11 21:39:44 +00002097 if (Depth >= LastChanceRecoloringMaxDepth && !ExhaustiveSearch) {
Quentin Colombet87769712014-02-05 22:13:59 +00002098 DEBUG(dbgs() << "Abort because max depth has been reached.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002099 CutOffInfo |= CO_Depth;
Quentin Colombet87769712014-02-05 22:13:59 +00002100 return ~0u;
2101 }
2102
2103 // Set of Live intervals that will need to be recolored.
2104 SmallLISet RecoloringCandidates;
2105 // Record the original mapping virtual register to physical register in case
2106 // the recoloring fails.
2107 DenseMap<unsigned, unsigned> VirtRegToPhysReg;
2108 // Mark VirtReg as fixed, i.e., it will not be recolored pass this point in
2109 // this recoloring "session".
2110 FixedRegisters.insert(VirtReg.reg);
Quentin Colombet318582f2016-09-16 22:00:50 +00002111 // Remember the ID of the last vreg in case the recoloring fails.
2112 unsigned LastVReg =
2113 TargetRegisterInfo::index2VirtReg(MRI->getNumVirtRegs() - 1);
2114 SmallVector<unsigned, 4> CurrentNewVRegs;
Quentin Colombet87769712014-02-05 22:13:59 +00002115
2116 Order.rewind();
2117 while (unsigned PhysReg = Order.next()) {
2118 DEBUG(dbgs() << "Try to assign: " << VirtReg << " to "
2119 << PrintReg(PhysReg, TRI) << '\n');
2120 RecoloringCandidates.clear();
2121 VirtRegToPhysReg.clear();
Quentin Colombet318582f2016-09-16 22:00:50 +00002122 CurrentNewVRegs.clear();
Quentin Colombet87769712014-02-05 22:13:59 +00002123
2124 // It is only possible to recolor virtual register interference.
2125 if (Matrix->checkInterference(VirtReg, PhysReg) >
2126 LiveRegMatrix::IK_VirtReg) {
2127 DEBUG(dbgs() << "Some inteferences are not with virtual registers.\n");
2128
2129 continue;
2130 }
2131
2132 // Early give up on this PhysReg if it is obvious we cannot recolor all
2133 // the interferences.
2134 if (!mayRecolorAllInterferences(PhysReg, VirtReg, RecoloringCandidates,
2135 FixedRegisters)) {
2136 DEBUG(dbgs() << "Some inteferences cannot be recolored.\n");
2137 continue;
2138 }
2139
2140 // RecoloringCandidates contains all the virtual registers that interfer
2141 // with VirtReg on PhysReg (or one of its aliases).
2142 // Enqueue them for recoloring and perform the actual recoloring.
2143 PQueue RecoloringQueue;
2144 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2145 EndIt = RecoloringCandidates.end();
2146 It != EndIt; ++It) {
2147 unsigned ItVirtReg = (*It)->reg;
2148 enqueue(RecoloringQueue, *It);
2149 assert(VRM->hasPhys(ItVirtReg) &&
2150 "Interferences are supposed to be with allocated vairables");
2151
2152 // Record the current allocation.
2153 VirtRegToPhysReg[ItVirtReg] = VRM->getPhys(ItVirtReg);
2154 // unset the related struct.
2155 Matrix->unassign(**It);
2156 }
2157
2158 // Do as if VirtReg was assigned to PhysReg so that the underlying
2159 // recoloring has the right information about the interferes and
2160 // available colors.
2161 Matrix->assign(VirtReg, PhysReg);
2162
2163 // Save the current recoloring state.
2164 // If we cannot recolor all the interferences, we will have to start again
2165 // at this point for the next physical register.
2166 SmallVirtRegSet SaveFixedRegisters(FixedRegisters);
Quentin Colombet318582f2016-09-16 22:00:50 +00002167 if (tryRecoloringCandidates(RecoloringQueue, CurrentNewVRegs,
2168 FixedRegisters, Depth)) {
2169 // Push the queued vregs into the main queue.
2170 for (unsigned NewVReg : CurrentNewVRegs)
2171 NewVRegs.push_back(NewVReg);
Quentin Colombet87769712014-02-05 22:13:59 +00002172 // Do not mess up with the global assignment process.
2173 // I.e., VirtReg must be unassigned.
2174 Matrix->unassign(VirtReg);
2175 return PhysReg;
2176 }
2177
2178 DEBUG(dbgs() << "Fail to assign: " << VirtReg << " to "
2179 << PrintReg(PhysReg, TRI) << '\n');
2180
2181 // The recoloring attempt failed, undo the changes.
2182 FixedRegisters = SaveFixedRegisters;
2183 Matrix->unassign(VirtReg);
2184
Quentin Colombet318582f2016-09-16 22:00:50 +00002185 // When we move a register from RS_Assign to RS_Split, we do not
2186 // actually do anything with it. I.e., it should not end up in NewVRegs.
2187 // For the other cases, since we created new live-ranges, we need to
2188 // process them.
2189 for (SmallVectorImpl<unsigned>::iterator Next = CurrentNewVRegs.begin(),
2190 End = CurrentNewVRegs.end();
2191 Next != End; ++Next) {
2192 if (*Next <= LastVReg && getStage(LIS->getInterval(*Next)) == RS_Split)
2193 continue;
2194 NewVRegs.push_back(*Next);
2195 }
2196
Quentin Colombet87769712014-02-05 22:13:59 +00002197 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2198 EndIt = RecoloringCandidates.end();
2199 It != EndIt; ++It) {
2200 unsigned ItVirtReg = (*It)->reg;
2201 if (VRM->hasPhys(ItVirtReg))
2202 Matrix->unassign(**It);
Matthias Braun953393a2015-07-14 17:38:17 +00002203 unsigned ItPhysReg = VirtRegToPhysReg[ItVirtReg];
2204 Matrix->assign(**It, ItPhysReg);
Quentin Colombet87769712014-02-05 22:13:59 +00002205 }
2206 }
2207
2208 // Last chance recoloring did not worked either, give up.
2209 return ~0u;
2210}
2211
2212/// tryRecoloringCandidates - Try to assign a new color to every register
2213/// in \RecoloringQueue.
2214/// \p NewRegs will contain any new virtual register created during the
2215/// recoloring process.
2216/// \p FixedRegisters[in/out] contains all the registers that have been
2217/// recolored.
2218/// \return true if all virtual registers in RecoloringQueue were successfully
2219/// recolored, false otherwise.
2220bool RAGreedy::tryRecoloringCandidates(PQueue &RecoloringQueue,
2221 SmallVectorImpl<unsigned> &NewVRegs,
2222 SmallVirtRegSet &FixedRegisters,
2223 unsigned Depth) {
2224 while (!RecoloringQueue.empty()) {
2225 LiveInterval *LI = dequeue(RecoloringQueue);
2226 DEBUG(dbgs() << "Try to recolor: " << *LI << '\n');
2227 unsigned PhysReg;
2228 PhysReg = selectOrSplitImpl(*LI, NewVRegs, FixedRegisters, Depth + 1);
2229 if (PhysReg == ~0u || !PhysReg)
2230 return false;
2231 DEBUG(dbgs() << "Recoloring of " << *LI
2232 << " succeeded with: " << PrintReg(PhysReg, TRI) << '\n');
2233 Matrix->assign(*LI, PhysReg);
2234 FixedRegisters.insert(LI->reg);
2235 }
2236 return true;
2237}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002238
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002239//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002240// Main Entry Point
2241//===----------------------------------------------------------------------===//
2242
2243unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +00002244 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002245 CutOffInfo = CO_None;
2246 LLVMContext &Ctx = MF->getFunction()->getContext();
Quentin Colombet87769712014-02-05 22:13:59 +00002247 SmallVirtRegSet FixedRegisters;
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002248 unsigned Reg = selectOrSplitImpl(VirtReg, NewVRegs, FixedRegisters);
2249 if (Reg == ~0U && (CutOffInfo != CO_None)) {
2250 uint8_t CutOffEncountered = CutOffInfo & (CO_Depth | CO_Interf);
2251 if (CutOffEncountered == CO_Depth)
Quentin Colombet567e30b2014-04-11 21:39:44 +00002252 Ctx.emitError("register allocation failed: maximum depth for recoloring "
2253 "reached. Use -fexhaustive-register-search to skip "
2254 "cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002255 else if (CutOffEncountered == CO_Interf)
2256 Ctx.emitError("register allocation failed: maximum interference for "
Quentin Colombet567e30b2014-04-11 21:39:44 +00002257 "recoloring reached. Use -fexhaustive-register-search "
2258 "to skip cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002259 else if (CutOffEncountered == (CO_Depth | CO_Interf))
2260 Ctx.emitError("register allocation failed: maximum interference and "
Quentin Colombet567e30b2014-04-11 21:39:44 +00002261 "depth for recoloring reached. Use "
2262 "-fexhaustive-register-search to skip cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002263 }
2264 return Reg;
Quentin Colombet87769712014-02-05 22:13:59 +00002265}
2266
Manman Ren9dee4492014-03-27 21:21:57 +00002267/// Using a CSR for the first time has a cost because it causes push|pop
2268/// to be added to prologue|epilogue. Splitting a cold section of the live
2269/// range can have lower cost than using the CSR for the first time;
2270/// Spilling a live range in the cold path can have lower cost than using
2271/// the CSR for the first time. Returns the physical register if we decide
2272/// to use the CSR; otherwise return 0.
2273unsigned RAGreedy::tryAssignCSRFirstTime(LiveInterval &VirtReg,
2274 AllocationOrder &Order,
2275 unsigned PhysReg,
2276 unsigned &CostPerUseLimit,
2277 SmallVectorImpl<unsigned> &NewVRegs) {
Manman Ren9dee4492014-03-27 21:21:57 +00002278 if (getStage(VirtReg) == RS_Spill && VirtReg.isSpillable()) {
2279 // We choose spill over using the CSR for the first time if the spill cost
2280 // is lower than CSRCost.
2281 SA->analyze(&VirtReg);
2282 if (calcSpillCost() >= CSRCost)
2283 return PhysReg;
2284
2285 // We are going to spill, set CostPerUseLimit to 1 to make sure that
2286 // we will not use a callee-saved register in tryEvict.
2287 CostPerUseLimit = 1;
2288 return 0;
2289 }
2290 if (getStage(VirtReg) < RS_Split) {
2291 // We choose pre-splitting over using the CSR for the first time if
2292 // the cost of splitting is lower than CSRCost.
2293 SA->analyze(&VirtReg);
2294 unsigned NumCands = 0;
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002295 BlockFrequency BestCost = CSRCost; // Don't modify CSRCost.
2296 unsigned BestCand = calculateRegionSplitCost(VirtReg, Order, BestCost,
2297 NumCands, true /*IgnoreCSR*/);
Manman Ren9dee4492014-03-27 21:21:57 +00002298 if (BestCand == NoCand)
2299 // Use the CSR if we can't find a region split below CSRCost.
2300 return PhysReg;
2301
2302 // Perform the actual pre-splitting.
2303 doRegionSplit(VirtReg, BestCand, false/*HasCompact*/, NewVRegs);
2304 return 0;
2305 }
2306 return PhysReg;
2307}
2308
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002309void RAGreedy::aboutToRemoveInterval(LiveInterval &LI) {
2310 // Do not keep invalid information around.
2311 SetOfBrokenHints.remove(&LI);
2312}
2313
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002314void RAGreedy::initializeCSRCost() {
2315 // We use the larger one out of the command-line option and the value report
2316 // by TRI.
2317 CSRCost = BlockFrequency(
2318 std::max((unsigned)CSRFirstTimeCost, TRI->getCSRFirstUseCost()));
2319 if (!CSRCost.getFrequency())
2320 return;
2321
2322 // Raw cost is relative to Entry == 2^14; scale it appropriately.
2323 uint64_t ActualEntry = MBFI->getEntryFreq();
2324 if (!ActualEntry) {
2325 CSRCost = 0;
2326 return;
2327 }
2328 uint64_t FixedEntry = 1 << 14;
2329 if (ActualEntry < FixedEntry)
2330 CSRCost *= BranchProbability(ActualEntry, FixedEntry);
2331 else if (ActualEntry <= UINT32_MAX)
2332 // Invert the fraction and divide.
2333 CSRCost /= BranchProbability(FixedEntry, ActualEntry);
2334 else
2335 // Can't use BranchProbability in general, since it takes 32-bit numbers.
2336 CSRCost = CSRCost.getFrequency() * (ActualEntry / FixedEntry);
2337}
2338
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002339/// \brief Collect the hint info for \p Reg.
2340/// The results are stored into \p Out.
2341/// \p Out is not cleared before being populated.
2342void RAGreedy::collectHintInfo(unsigned Reg, HintsInfo &Out) {
2343 for (const MachineInstr &Instr : MRI->reg_nodbg_instructions(Reg)) {
2344 if (!Instr.isFullCopy())
2345 continue;
2346 // Look for the other end of the copy.
2347 unsigned OtherReg = Instr.getOperand(0).getReg();
2348 if (OtherReg == Reg) {
2349 OtherReg = Instr.getOperand(1).getReg();
2350 if (OtherReg == Reg)
2351 continue;
2352 }
2353 // Get the current assignment.
2354 unsigned OtherPhysReg = TargetRegisterInfo::isPhysicalRegister(OtherReg)
2355 ? OtherReg
2356 : VRM->getPhys(OtherReg);
2357 // Push the collected information.
2358 Out.push_back(HintInfo(MBFI->getBlockFreq(Instr.getParent()), OtherReg,
2359 OtherPhysReg));
2360 }
2361}
2362
2363/// \brief Using the given \p List, compute the cost of the broken hints if
2364/// \p PhysReg was used.
2365/// \return The cost of \p List for \p PhysReg.
2366BlockFrequency RAGreedy::getBrokenHintFreq(const HintsInfo &List,
2367 unsigned PhysReg) {
2368 BlockFrequency Cost = 0;
2369 for (const HintInfo &Info : List) {
2370 if (Info.PhysReg != PhysReg)
2371 Cost += Info.Freq;
2372 }
2373 return Cost;
2374}
2375
2376/// \brief Using the register assigned to \p VirtReg, try to recolor
2377/// all the live ranges that are copy-related with \p VirtReg.
2378/// The recoloring is then propagated to all the live-ranges that have
2379/// been recolored and so on, until no more copies can be coalesced or
2380/// it is not profitable.
2381/// For a given live range, profitability is determined by the sum of the
2382/// frequencies of the non-identity copies it would introduce with the old
2383/// and new register.
2384void RAGreedy::tryHintRecoloring(LiveInterval &VirtReg) {
2385 // We have a broken hint, check if it is possible to fix it by
2386 // reusing PhysReg for the copy-related live-ranges. Indeed, we evicted
2387 // some register and PhysReg may be available for the other live-ranges.
2388 SmallSet<unsigned, 4> Visited;
2389 SmallVector<unsigned, 2> RecoloringCandidates;
2390 HintsInfo Info;
2391 unsigned Reg = VirtReg.reg;
2392 unsigned PhysReg = VRM->getPhys(Reg);
2393 // Start the recoloring algorithm from the input live-interval, then
2394 // it will propagate to the ones that are copy-related with it.
2395 Visited.insert(Reg);
2396 RecoloringCandidates.push_back(Reg);
2397
2398 DEBUG(dbgs() << "Trying to reconcile hints for: " << PrintReg(Reg, TRI) << '('
2399 << PrintReg(PhysReg, TRI) << ")\n");
2400
2401 do {
2402 Reg = RecoloringCandidates.pop_back_val();
2403
2404 // We cannot recolor physcal register.
2405 if (TargetRegisterInfo::isPhysicalRegister(Reg))
2406 continue;
2407
2408 assert(VRM->hasPhys(Reg) && "We have unallocated variable!!");
2409
2410 // Get the live interval mapped with this virtual register to be able
2411 // to check for the interference with the new color.
2412 LiveInterval &LI = LIS->getInterval(Reg);
2413 unsigned CurrPhys = VRM->getPhys(Reg);
2414 // Check that the new color matches the register class constraints and
2415 // that it is free for this live range.
2416 if (CurrPhys != PhysReg && (!MRI->getRegClass(Reg)->contains(PhysReg) ||
2417 Matrix->checkInterference(LI, PhysReg)))
2418 continue;
2419
2420 DEBUG(dbgs() << PrintReg(Reg, TRI) << '(' << PrintReg(CurrPhys, TRI)
2421 << ") is recolorable.\n");
2422
2423 // Gather the hint info.
2424 Info.clear();
2425 collectHintInfo(Reg, Info);
2426 // Check if recoloring the live-range will increase the cost of the
2427 // non-identity copies.
2428 if (CurrPhys != PhysReg) {
2429 DEBUG(dbgs() << "Checking profitability:\n");
2430 BlockFrequency OldCopiesCost = getBrokenHintFreq(Info, CurrPhys);
2431 BlockFrequency NewCopiesCost = getBrokenHintFreq(Info, PhysReg);
2432 DEBUG(dbgs() << "Old Cost: " << OldCopiesCost.getFrequency()
2433 << "\nNew Cost: " << NewCopiesCost.getFrequency() << '\n');
2434 if (OldCopiesCost < NewCopiesCost) {
2435 DEBUG(dbgs() << "=> Not profitable.\n");
2436 continue;
2437 }
2438 // At this point, the cost is either cheaper or equal. If it is
2439 // equal, we consider this is profitable because it may expose
2440 // more recoloring opportunities.
2441 DEBUG(dbgs() << "=> Profitable.\n");
2442 // Recolor the live-range.
2443 Matrix->unassign(LI);
2444 Matrix->assign(LI, PhysReg);
2445 }
2446 // Push all copy-related live-ranges to keep reconciling the broken
2447 // hints.
2448 for (const HintInfo &HI : Info) {
2449 if (Visited.insert(HI.Reg).second)
2450 RecoloringCandidates.push_back(HI.Reg);
2451 }
2452 } while (!RecoloringCandidates.empty());
2453}
2454
2455/// \brief Try to recolor broken hints.
2456/// Broken hints may be repaired by recoloring when an evicted variable
2457/// freed up a register for a larger live-range.
2458/// Consider the following example:
2459/// BB1:
2460/// a =
2461/// b =
2462/// BB2:
2463/// ...
2464/// = b
2465/// = a
2466/// Let us assume b gets split:
2467/// BB1:
2468/// a =
2469/// b =
2470/// BB2:
2471/// c = b
2472/// ...
2473/// d = c
2474/// = d
2475/// = a
2476/// Because of how the allocation work, b, c, and d may be assigned different
2477/// colors. Now, if a gets evicted later:
2478/// BB1:
2479/// a =
2480/// st a, SpillSlot
2481/// b =
2482/// BB2:
2483/// c = b
2484/// ...
2485/// d = c
2486/// = d
2487/// e = ld SpillSlot
2488/// = e
2489/// This is likely that we can assign the same register for b, c, and d,
2490/// getting rid of 2 copies.
2491void RAGreedy::tryHintsRecoloring() {
2492 for (LiveInterval *LI : SetOfBrokenHints) {
2493 assert(TargetRegisterInfo::isVirtualRegister(LI->reg) &&
2494 "Recoloring is possible only for virtual registers");
2495 // Some dead defs may be around (e.g., because of debug uses).
2496 // Ignore those.
2497 if (!VRM->hasPhys(LI->reg))
2498 continue;
2499 tryHintRecoloring(*LI);
2500 }
2501}
2502
Quentin Colombet87769712014-02-05 22:13:59 +00002503unsigned RAGreedy::selectOrSplitImpl(LiveInterval &VirtReg,
2504 SmallVectorImpl<unsigned> &NewVRegs,
2505 SmallVirtRegSet &FixedRegisters,
2506 unsigned Depth) {
Manman Ren78cf02a2014-03-25 00:16:25 +00002507 unsigned CostPerUseLimit = ~0u;
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002508 // First try assigning a free register.
Matthias Braun5d1f12d2015-07-15 22:16:00 +00002509 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo, Matrix);
Manman Ren78cf02a2014-03-25 00:16:25 +00002510 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) {
Manman Ren9dee4492014-03-27 21:21:57 +00002511 // When NewVRegs is not empty, we may have made decisions such as evicting
2512 // a virtual register, go with the earlier decisions and use the physical
2513 // register.
Matthias Braun953393a2015-07-14 17:38:17 +00002514 if (CSRCost.getFrequency() && isUnusedCalleeSavedReg(PhysReg) &&
2515 NewVRegs.empty()) {
Manman Ren9dee4492014-03-27 21:21:57 +00002516 unsigned CSRReg = tryAssignCSRFirstTime(VirtReg, Order, PhysReg,
2517 CostPerUseLimit, NewVRegs);
2518 if (CSRReg || !NewVRegs.empty())
2519 // Return now if we decide to use a CSR or create new vregs due to
2520 // pre-splitting.
2521 return CSRReg;
Manman Ren78cf02a2014-03-25 00:16:25 +00002522 } else
2523 return PhysReg;
2524 }
Andrew Trickccef0982010-12-09 18:15:21 +00002525
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002526 LiveRangeStage Stage = getStage(VirtReg);
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002527 DEBUG(dbgs() << StageName[Stage]
2528 << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n');
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002529
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002530 // Try to evict a less worthy live range, but only for ranges from the primary
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002531 // queue. The RS_Split ranges already failed to do this, and they should not
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002532 // get a second chance until they have been split.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002533 if (Stage != RS_Split)
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002534 if (unsigned PhysReg =
2535 tryEvict(VirtReg, Order, NewVRegs, CostPerUseLimit)) {
2536 unsigned Hint = MRI->getSimpleHint(VirtReg.reg);
2537 // If VirtReg has a hint and that hint is broken record this
2538 // virtual register as a recoloring candidate for broken hint.
2539 // Indeed, since we evicted a variable in its neighborhood it is
2540 // likely we can at least partially recolor some of the
2541 // copy-related live-ranges.
2542 if (Hint && Hint != PhysReg)
2543 SetOfBrokenHints.insert(&VirtReg);
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002544 return PhysReg;
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002545 }
Andrew Trickccef0982010-12-09 18:15:21 +00002546
Quentin Colombet63176862016-09-16 22:00:42 +00002547 assert((NewVRegs.empty() || Depth) && "Cannot append to existing NewVRegs");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002548
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002549 // The first time we see a live range, don't try to split or spill.
2550 // Wait until the second time, when all smaller ranges have been allocated.
2551 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002552 if (Stage < RS_Split) {
2553 setStage(VirtReg, RS_Split);
Jakob Stoklund Olesen86985072011-03-19 23:02:47 +00002554 DEBUG(dbgs() << "wait for second round\n");
Mark Laceyf9ea8852013-08-14 23:50:04 +00002555 NewVRegs.push_back(VirtReg.reg);
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002556 return 0;
2557 }
2558
Jakob Stoklund Olesena5c88992011-05-06 21:58:30 +00002559 // If we couldn't allocate a register from spilling, there is probably some
2560 // invalid inline assembly. The base class wil report it.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002561 if (Stage >= RS_Done || !VirtReg.isSpillable())
Quentin Colombet87769712014-02-05 22:13:59 +00002562 return tryLastChanceRecoloring(VirtReg, Order, NewVRegs, FixedRegisters,
2563 Depth);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00002564
Jakob Stoklund Olesen903b6d32010-12-14 00:37:49 +00002565 // Try splitting VirtReg or interferences.
Quentin Colombet63176862016-09-16 22:00:42 +00002566 unsigned NewVRegSizeBefore = NewVRegs.size();
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002567 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
Quentin Colombet63176862016-09-16 22:00:42 +00002568 if (PhysReg || (NewVRegs.size() - NewVRegSizeBefore))
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +00002569 return PhysReg;
2570
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002571 // Finally spill VirtReg itself.
Quentin Colombet11922942015-07-17 23:04:06 +00002572 if (EnableDeferredSpilling && getStage(VirtReg) < RS_Memory) {
2573 // TODO: This is experimental and in particular, we do not model
2574 // the live range splitting done by spilling correctly.
2575 // We would need a deep integration with the spiller to do the
2576 // right thing here. Anyway, that is still good for early testing.
2577 setStage(VirtReg, RS_Memory);
2578 DEBUG(dbgs() << "Do as if this register is in memory\n");
2579 NewVRegs.push_back(VirtReg.reg);
2580 } else {
2581 NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
Wei Mi9a16d652016-04-13 03:08:27 +00002582 LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Quentin Colombet11922942015-07-17 23:04:06 +00002583 spiller().spill(LRE);
2584 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done);
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002585
Quentin Colombet11922942015-07-17 23:04:06 +00002586 if (VerifyEnabled)
2587 MF->verify(this, "After spilling");
2588 }
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +00002589
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002590 // The live virtual register requesting allocation was spilled, so tell
2591 // the caller not to allocate anything during this round.
2592 return 0;
2593}
2594
2595bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
2596 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
David Blaikiec8c29202012-08-22 17:18:53 +00002597 << "********** Function: " << mf.getName() << '\n');
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002598
2599 MF = &mf;
Eric Christopher60621802014-10-14 07:22:00 +00002600 TRI = MF->getSubtarget().getRegisterInfo();
2601 TII = MF->getSubtarget().getInstrInfo();
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00002602 RCI.runOnMachineFunction(mf);
Quentin Colombet5caa6a22014-07-02 18:32:04 +00002603
2604 EnableLocalReassign = EnableLocalReassignment ||
Eric Christopher60621802014-10-14 07:22:00 +00002605 MF->getSubtarget().enableRALocalReassignment(
2606 MF->getTarget().getOptLevel());
Quentin Colombet5caa6a22014-07-02 18:32:04 +00002607
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002608 if (VerifyEnabled)
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +00002609 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002610
Jakob Stoklund Olesen2d2dec92012-06-20 22:52:29 +00002611 RegAllocBase::init(getAnalysis<VirtRegMap>(),
2612 getAnalysis<LiveIntervals>(),
2613 getAnalysis<LiveRegMatrix>());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002614 Indexes = &getAnalysis<SlotIndexes>();
Benjamin Kramere2a1d892013-06-17 19:00:36 +00002615 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +00002616 DomTree = &getAnalysis<MachineDominatorTree>();
Jakob Stoklund Olesenadecb5e2010-12-10 22:54:44 +00002617 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002618 Loops = &getAnalysis<MachineLoopInfo>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002619 Bundles = &getAnalysis<EdgeBundles>();
2620 SpillPlacer = &getAnalysis<SpillPlacement>();
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00002621 DebugVars = &getAnalysis<LiveDebugVariables>();
Wei Mic0223702016-07-08 21:08:09 +00002622 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002623
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002624 initializeCSRCost();
2625
Robert Lougher11a44b72015-08-10 11:59:44 +00002626 calculateSpillWeightsAndHints(*LIS, mf, VRM, *Loops, *MBFI);
Arnaud A. de Grandmaison760c1e02013-11-10 17:46:31 +00002627
Andrew Trick97064962013-07-25 07:26:26 +00002628 DEBUG(LIS->dump());
2629
Jakob Stoklund Olesenf1a60a62011-02-19 00:53:42 +00002630 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Wei Mic0223702016-07-08 21:08:09 +00002631 SE.reset(new SplitEditor(*SA, *AA, *LIS, *VRM, *DomTree, *MBFI));
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002632 ExtraRegInfo.clear();
2633 ExtraRegInfo.resize(MRI->getNumVirtRegs());
2634 NextCascade = 1;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00002635 IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00002636 GlobalCand.resize(32); // This will grow as needed.
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002637 SetOfBrokenHints.clear();
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002638
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002639 allocatePhysRegs();
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002640 tryHintsRecoloring();
Wei Mi9a16d652016-04-13 03:08:27 +00002641 postOptimization();
2642
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002643 releaseMemory();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002644 return true;
2645}