blob: 469ea67f0ac25d2319862aba232df83dbc41c5e0 [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"),
Mehdi Amini732afdd2016-10-08 19:41:06 +000064 clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed")),
Wei Mi9a16d652016-04-13 03:08:27 +000065 cl::init(SplitEditor::SM_Speed));
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +000066
Quentin Colombet87769712014-02-05 22:13:59 +000067static cl::opt<unsigned>
68LastChanceRecoloringMaxDepth("lcr-max-depth", cl::Hidden,
69 cl::desc("Last chance recoloring max depth"),
70 cl::init(5));
71
72static cl::opt<unsigned> LastChanceRecoloringMaxInterference(
73 "lcr-max-interf", cl::Hidden,
74 cl::desc("Last chance recoloring maximum number of considered"
75 " interference at a time"),
76 cl::init(8));
77
Quentin Colombet567e30b2014-04-11 21:39:44 +000078static cl::opt<bool>
Quentin Colombet4344da12014-04-11 21:51:09 +000079ExhaustiveSearch("exhaustive-register-search", cl::NotHidden,
Quentin Colombet567e30b2014-04-11 21:39:44 +000080 cl::desc("Exhaustive Search for registers bypassing the depth "
81 "and interference cutoffs of last chance recoloring"));
82
Quentin Colombete1a36632014-07-01 14:08:37 +000083static cl::opt<bool> EnableLocalReassignment(
84 "enable-local-reassign", cl::Hidden,
85 cl::desc("Local reassignment can yield better allocation decisions, but "
86 "may be compile time intensive"),
Quentin Colombet5caa6a22014-07-02 18:32:04 +000087 cl::init(false));
Quentin Colombete1a36632014-07-01 14:08:37 +000088
Quentin Colombet11922942015-07-17 23:04:06 +000089static cl::opt<bool> EnableDeferredSpilling(
90 "enable-deferred-spilling", cl::Hidden,
91 cl::desc("Instead of spilling a variable right away, defer the actual "
92 "code insertion to the end of the allocation. That way the "
93 "allocator might still find a suitable coloring for this "
94 "variable because of other evicted variables."),
95 cl::init(false));
96
Manman Ren78cf02a2014-03-25 00:16:25 +000097// FIXME: Find a good default for this flag and remove the flag.
98static cl::opt<unsigned>
99CSRFirstTimeCost("regalloc-csr-first-time-cost",
100 cl::desc("Cost for first time use of callee-saved register."),
101 cl::init(0), cl::Hidden);
102
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000103static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
104 createGreedyRegisterAllocator);
105
106namespace {
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000107class RAGreedy : public MachineFunctionPass,
108 public RegAllocBase,
109 private LiveRangeEdit::Delegate {
Quentin Colombet87769712014-02-05 22:13:59 +0000110 // Convenient shortcuts.
111 typedef std::priority_queue<std::pair<unsigned, unsigned> > PQueue;
112 typedef SmallPtrSet<LiveInterval *, 4> SmallLISet;
113 typedef SmallSet<unsigned, 16> SmallVirtRegSet;
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000114
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000115 // context
116 MachineFunction *MF;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000117
Quentin Colombet1fb3362a2014-01-02 22:47:22 +0000118 // Shortcuts to some useful interface.
119 const TargetInstrInfo *TII;
120 const TargetRegisterInfo *TRI;
121 RegisterClassInfo RCI;
122
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000123 // analyses
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000124 SlotIndexes *Indexes;
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000125 MachineBlockFrequencyInfo *MBFI;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000126 MachineDominatorTree *DomTree;
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +0000127 MachineLoopInfo *Loops;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000128 EdgeBundles *Bundles;
129 SpillPlacement *SpillPlacer;
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000130 LiveDebugVariables *DebugVars;
Wei Mic0223702016-07-08 21:08:09 +0000131 AliasAnalysis *AA;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000132
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000133 // state
Ahmed Charles56440fd2014-03-06 05:51:42 +0000134 std::unique_ptr<Spiller> SpillerInstance;
Quentin Colombet87769712014-02-05 22:13:59 +0000135 PQueue Queue;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000136 unsigned NextCascade;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000137
138 // Live ranges pass through a number of stages as we try to allocate them.
139 // Some of the stages may also create new live ranges:
140 //
141 // - Region splitting.
142 // - Per-block splitting.
143 // - Local splitting.
144 // - Spilling.
145 //
146 // Ranges produced by one of the stages skip the previous stages when they are
147 // dequeued. This improves performance because we can skip interference checks
148 // that are unlikely to give any results. It also guarantees that the live
149 // range splitting algorithm terminates, something that is otherwise hard to
150 // ensure.
151 enum LiveRangeStage {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000152 /// Newly created live range that has never been queued.
153 RS_New,
154
155 /// Only attempt assignment and eviction. Then requeue as RS_Split.
156 RS_Assign,
157
158 /// Attempt live range splitting if assignment is impossible.
159 RS_Split,
160
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000161 /// Attempt more aggressive live range splitting that is guaranteed to make
162 /// progress. This is used for split products that may not be making
163 /// progress.
164 RS_Split2,
165
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000166 /// Live range will be spilled. No more splitting will be attempted.
167 RS_Spill,
168
Quentin Colombet11922942015-07-17 23:04:06 +0000169
170 /// Live range is in memory. Because of other evictions, it might get moved
171 /// in a register in the end.
172 RS_Memory,
173
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000174 /// There is nothing more we can do to this live range. Abort compilation
175 /// if it can't be assigned.
176 RS_Done
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000177 };
178
Quentin Colombet96bd2a12014-04-04 02:05:21 +0000179 // Enum CutOffStage to keep a track whether the register allocation failed
180 // because of the cutoffs encountered in last chance recoloring.
181 // Note: This is used as bitmask. New value should be next power of 2.
182 enum CutOffStage {
183 // No cutoffs encountered
184 CO_None = 0,
185
186 // lcr-max-depth cutoff encountered
187 CO_Depth = 1,
188
189 // lcr-max-interf cutoff encountered
190 CO_Interf = 2
191 };
192
193 uint8_t CutOffInfo;
194
Eli Friedman78bffa52013-09-10 23:18:14 +0000195#ifndef NDEBUG
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000196 static const char *const StageName[];
Eli Friedman78bffa52013-09-10 23:18:14 +0000197#endif
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000198
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000199 // RegInfo - Keep additional information about each live range.
200 struct RegInfo {
201 LiveRangeStage Stage;
202
203 // Cascade - Eviction loop prevention. See canEvictInterference().
204 unsigned Cascade;
205
206 RegInfo() : Stage(RS_New), Cascade(0) {}
207 };
208
209 IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000210
211 LiveRangeStage getStage(const LiveInterval &VirtReg) const {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000212 return ExtraRegInfo[VirtReg.reg].Stage;
213 }
214
215 void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) {
216 ExtraRegInfo.resize(MRI->getNumVirtRegs());
217 ExtraRegInfo[VirtReg.reg].Stage = Stage;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000218 }
219
220 template<typename Iterator>
221 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000222 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000223 for (;Begin != End; ++Begin) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000224 unsigned Reg = *Begin;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000225 if (ExtraRegInfo[Reg].Stage == RS_New)
226 ExtraRegInfo[Reg].Stage = NewStage;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000227 }
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000228 }
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000229
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000230 /// Cost of evicting interference.
231 struct EvictionCost {
232 unsigned BrokenHints; ///< Total number of broken hints.
233 float MaxWeight; ///< Maximum spill weight evicted.
234
Andrew Trick3621b8a2013-11-22 19:07:38 +0000235 EvictionCost(): BrokenHints(0), MaxWeight(0) {}
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000236
Andrew Trick84852572013-07-25 18:35:14 +0000237 bool isMax() const { return BrokenHints == ~0u; }
238
Andrew Trick3621b8a2013-11-22 19:07:38 +0000239 void setMax() { BrokenHints = ~0u; }
240
241 void setBrokenHints(unsigned NHints) { BrokenHints = NHints; }
242
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000243 bool operator<(const EvictionCost &O) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +0000244 return std::tie(BrokenHints, MaxWeight) <
245 std::tie(O.BrokenHints, O.MaxWeight);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000246 }
247 };
248
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000249 // splitting state.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000250 std::unique_ptr<SplitAnalysis> SA;
251 std::unique_ptr<SplitEditor> SE;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000252
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000253 /// Cached per-block interference maps
254 InterferenceCache IntfCache;
255
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000256 /// All basic blocks where the current register has uses.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000257 SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000258
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000259 /// Global live range splitting candidate info.
260 struct GlobalSplitCandidate {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000261 // Register intended for assignment, or 0.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000262 unsigned PhysReg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000263
264 // SplitKit interval index for this candidate.
265 unsigned IntvIdx;
266
267 // Interference for PhysReg.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000268 InterferenceCache::Cursor Intf;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000269
270 // Bundles where this candidate should be live.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000271 BitVector LiveBundles;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000272 SmallVector<unsigned, 8> ActiveBlocks;
273
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000274 void reset(InterferenceCache &Cache, unsigned Reg) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000275 PhysReg = Reg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000276 IntvIdx = 0;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000277 Intf.setPhysReg(Cache, Reg);
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000278 LiveBundles.clear();
279 ActiveBlocks.clear();
280 }
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000281
282 // Set B[i] = C for every live bundle where B[i] was NoCand.
283 unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) {
284 unsigned Count = 0;
285 for (int i = LiveBundles.find_first(); i >= 0;
286 i = LiveBundles.find_next(i))
287 if (B[i] == NoCand) {
288 B[i] = C;
289 Count++;
290 }
291 return Count;
292 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000293 };
294
Aditya Nandakumarc1fd0dd2013-11-19 23:51:32 +0000295 /// Candidate info for each PhysReg in AllocationOrder.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000296 /// This vector never shrinks, but grows to the size of the largest register
297 /// class.
298 SmallVector<GlobalSplitCandidate, 32> GlobalCand;
299
Alp Toker61007d82014-03-02 03:20:38 +0000300 enum : unsigned { NoCand = ~0u };
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000301
302 /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to
303 /// NoCand which indicates the stack interval.
304 SmallVector<unsigned, 32> BundleCand;
305
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +0000306 /// Callee-save register cost, calculated once per machine function.
307 BlockFrequency CSRCost;
308
Quentin Colombet5caa6a22014-07-02 18:32:04 +0000309 /// Run or not the local reassignment heuristic. This information is
310 /// obtained from the TargetSubtargetInfo.
311 bool EnableLocalReassign;
312
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000313 /// Set of broken hints that may be reconciled later because of eviction.
314 SmallSetVector<LiveInterval *, 8> SetOfBrokenHints;
315
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000316public:
317 RAGreedy();
318
319 /// Return the pass name.
Mehdi Amini117296c2016-10-01 02:56:57 +0000320 StringRef getPassName() const override { return "Greedy Register Allocator"; }
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000321
322 /// RAGreedy analysis usage.
Craig Topper4584cd52014-03-07 09:26:03 +0000323 void getAnalysisUsage(AnalysisUsage &AU) const override;
324 void releaseMemory() override;
325 Spiller &spiller() override { return *SpillerInstance; }
326 void enqueue(LiveInterval *LI) override;
327 LiveInterval *dequeue() override;
328 unsigned selectOrSplit(LiveInterval&, SmallVectorImpl<unsigned>&) override;
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000329 void aboutToRemoveInterval(LiveInterval &) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000330
331 /// Perform register allocation.
Craig Topper4584cd52014-03-07 09:26:03 +0000332 bool runOnMachineFunction(MachineFunction &mf) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000333
Matthias Braun90799ce2016-08-23 21:19:49 +0000334 MachineFunctionProperties getRequiredProperties() const override {
335 return MachineFunctionProperties().set(
336 MachineFunctionProperties::Property::NoPHIs);
337 }
338
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000339 static char ID;
Andrew Trickccef0982010-12-09 18:15:21 +0000340
341private:
Quentin Colombet87769712014-02-05 22:13:59 +0000342 unsigned selectOrSplitImpl(LiveInterval &, SmallVectorImpl<unsigned> &,
343 SmallVirtRegSet &, unsigned = 0);
344
Craig Topper4584cd52014-03-07 09:26:03 +0000345 bool LRE_CanEraseVirtReg(unsigned) override;
346 void LRE_WillShrinkVirtReg(unsigned) override;
347 void LRE_DidCloneVirtReg(unsigned, unsigned) override;
Quentin Colombet87769712014-02-05 22:13:59 +0000348 void enqueue(PQueue &CurQueue, LiveInterval *LI);
349 LiveInterval *dequeue(PQueue &CurQueue);
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000350
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000351 BlockFrequency calcSpillCost();
352 bool addSplitConstraints(InterferenceCache::Cursor, BlockFrequency&);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000353 void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>);
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000354 void growRegion(GlobalSplitCandidate &Cand);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000355 BlockFrequency calcGlobalSplitCost(GlobalSplitCandidate&);
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +0000356 bool calcCompactRegion(GlobalSplitCandidate&);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000357 void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000358 void calcGapWeights(unsigned, SmallVectorImpl<float>&);
Andrew Trick8bb0a252013-07-25 18:35:19 +0000359 unsigned canReassign(LiveInterval &VirtReg, unsigned PhysReg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000360 bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool);
361 bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&);
362 void evictInterference(LiveInterval&, unsigned,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000363 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000364 bool mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
365 SmallLISet &RecoloringCandidates,
366 const SmallVirtRegSet &FixedRegisters);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000367
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000368 unsigned tryAssign(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000369 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000370 unsigned tryEvict(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000371 SmallVectorImpl<unsigned>&, unsigned = ~0u);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000372 unsigned tryRegionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000373 SmallVectorImpl<unsigned>&);
Manman Ren9db66b32014-03-24 23:23:42 +0000374 /// Calculate cost of region splitting.
375 unsigned calculateRegionSplitCost(LiveInterval &VirtReg,
376 AllocationOrder &Order,
377 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +0000378 unsigned &NumCands, bool IgnoreCSR);
Manman Ren9db66b32014-03-24 23:23:42 +0000379 /// Perform region splitting.
380 unsigned doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
381 bool HasCompact,
382 SmallVectorImpl<unsigned> &NewVRegs);
Manman Ren9dee4492014-03-27 21:21:57 +0000383 /// Check other options before using a callee-saved register for the first
384 /// time.
385 unsigned tryAssignCSRFirstTime(LiveInterval &VirtReg, AllocationOrder &Order,
386 unsigned PhysReg, unsigned &CostPerUseLimit,
387 SmallVectorImpl<unsigned> &NewVRegs);
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +0000388 void initializeCSRCost();
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +0000389 unsigned tryBlockSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000390 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +0000391 unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000392 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000393 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000394 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000395 unsigned trySplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000396 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000397 unsigned tryLastChanceRecoloring(LiveInterval &, AllocationOrder &,
398 SmallVectorImpl<unsigned> &,
399 SmallVirtRegSet &, unsigned);
400 bool tryRecoloringCandidates(PQueue &, SmallVectorImpl<unsigned> &,
401 SmallVirtRegSet &, unsigned);
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000402 void tryHintRecoloring(LiveInterval &);
403 void tryHintsRecoloring();
404
405 /// Model the information carried by one end of a copy.
406 struct HintInfo {
407 /// The frequency of the copy.
408 BlockFrequency Freq;
409 /// The virtual register or physical register.
410 unsigned Reg;
411 /// Its currently assigned register.
412 /// In case of a physical register Reg == PhysReg.
413 unsigned PhysReg;
414 HintInfo(BlockFrequency Freq, unsigned Reg, unsigned PhysReg)
415 : Freq(Freq), Reg(Reg), PhysReg(PhysReg) {}
416 };
417 typedef SmallVector<HintInfo, 4> HintsInfo;
418 BlockFrequency getBrokenHintFreq(const HintsInfo &, unsigned);
419 void collectHintInfo(unsigned, HintsInfo &);
Matthias Braun953393a2015-07-14 17:38:17 +0000420
421 bool isUnusedCalleeSavedReg(unsigned PhysReg) const;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000422};
423} // end anonymous namespace
424
425char RAGreedy::ID = 0;
426
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000427#ifndef NDEBUG
428const char *const RAGreedy::StageName[] = {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000429 "RS_New",
430 "RS_Assign",
431 "RS_Split",
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000432 "RS_Split2",
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000433 "RS_Spill",
Quentin Colombet11922942015-07-17 23:04:06 +0000434 "RS_Memory",
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000435 "RS_Done"
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000436};
437#endif
438
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000439// Hysteresis to use when comparing floats.
440// This helps stabilize decisions based on float comparisons.
NAKAMURA Takumia71003a2014-02-04 06:29:38 +0000441const float Hysteresis = (2007 / 2048.0f); // 0.97998046875
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000442
443
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000444FunctionPass* llvm::createGreedyRegisterAllocator() {
445 return new RAGreedy();
446}
447
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000448RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000449 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000450 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000451 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
452 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Rafael Espindola676c4052011-06-26 22:34:10 +0000453 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Tricke1c034f2012-01-17 06:55:03 +0000454 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000455 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
456 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
457 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
458 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000459 initializeLiveRegMatrixPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000460 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
461 initializeSpillPlacementPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000462}
463
464void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
465 AU.setPreservesCFG();
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000466 AU.addRequired<MachineBlockFrequencyInfo>();
467 AU.addPreserved<MachineBlockFrequencyInfo>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000468 AU.addRequired<AAResultsWrapperPass>();
469 AU.addPreserved<AAResultsWrapperPass>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000470 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesen12243122012-06-08 23:44:45 +0000471 AU.addPreserved<LiveIntervals>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000472 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000473 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000474 AU.addRequired<LiveDebugVariables>();
475 AU.addPreserved<LiveDebugVariables>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000476 AU.addRequired<LiveStacks>();
477 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000478 AU.addRequired<MachineDominatorTree>();
479 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000480 AU.addRequired<MachineLoopInfo>();
481 AU.addPreserved<MachineLoopInfo>();
482 AU.addRequired<VirtRegMap>();
483 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000484 AU.addRequired<LiveRegMatrix>();
485 AU.addPreserved<LiveRegMatrix>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000486 AU.addRequired<EdgeBundles>();
487 AU.addRequired<SpillPlacement>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000488 MachineFunctionPass::getAnalysisUsage(AU);
489}
490
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000491
492//===----------------------------------------------------------------------===//
493// LiveRangeEdit delegate methods
494//===----------------------------------------------------------------------===//
495
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000496bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000497 if (VRM->hasPhys(VirtReg)) {
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000498 LiveInterval &LI = LIS->getInterval(VirtReg);
499 Matrix->unassign(LI);
500 aboutToRemoveInterval(LI);
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000501 return true;
502 }
503 // Unassigned virtreg is probably in the priority queue.
504 // RegAllocBase will erase it after dequeueing.
505 return false;
506}
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000507
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000508void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000509 if (!VRM->hasPhys(VirtReg))
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000510 return;
511
512 // Register is assigned, put it back on the queue for reassignment.
513 LiveInterval &LI = LIS->getInterval(VirtReg);
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000514 Matrix->unassign(LI);
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000515 enqueue(&LI);
516}
517
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000518void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
Jakob Stoklund Olesen811b9c42011-09-14 17:34:37 +0000519 // Cloning a register we haven't even heard about yet? Just ignore it.
520 if (!ExtraRegInfo.inBounds(Old))
521 return;
522
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000523 // LRE may clone a virtual register because dead code elimination causes it to
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000524 // be split into connected components. The new components are much smaller
525 // than the original, so they should get a new chance at being assigned.
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000526 // same stage as the parent.
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000527 ExtraRegInfo[Old].Stage = RS_Assign;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000528 ExtraRegInfo.grow(New);
529 ExtraRegInfo[New] = ExtraRegInfo[Old];
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000530}
531
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000532void RAGreedy::releaseMemory() {
David Blaikieb61064e2014-07-19 01:05:11 +0000533 SpillerInstance.reset();
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000534 ExtraRegInfo.clear();
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000535 GlobalCand.clear();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000536}
537
Quentin Colombet87769712014-02-05 22:13:59 +0000538void RAGreedy::enqueue(LiveInterval *LI) { enqueue(Queue, LI); }
539
540void RAGreedy::enqueue(PQueue &CurQueue, LiveInterval *LI) {
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000541 // Prioritize live ranges by size, assigning larger ranges first.
542 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000543 const unsigned Size = LI->getSize();
544 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000545 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
546 "Can only enqueue virtual registers");
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000547 unsigned Prio;
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000548
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000549 ExtraRegInfo.grow(Reg);
550 if (ExtraRegInfo[Reg].Stage == RS_New)
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000551 ExtraRegInfo[Reg].Stage = RS_Assign;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000552
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000553 if (ExtraRegInfo[Reg].Stage == RS_Split) {
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000554 // Unsplit ranges that couldn't be allocated immediately are deferred until
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +0000555 // everything else has been allocated.
556 Prio = Size;
Quentin Colombet11922942015-07-17 23:04:06 +0000557 } else if (ExtraRegInfo[Reg].Stage == RS_Memory) {
558 // Memory operand should be considered last.
559 // Change the priority such that Memory operand are assigned in
560 // the reverse order that they came in.
561 // TODO: Make this a member variable and probably do something about hints.
562 static unsigned MemOp = 0;
563 Prio = MemOp++;
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000564 } else {
Andrew Trick52a00932014-02-26 22:07:26 +0000565 // Giant live ranges fall back to the global assignment heuristic, which
566 // prevents excessive spilling in pathological cases.
567 bool ReverseLocal = TRI->reverseLocalAssignment();
Matthias Brauna354cdd2015-03-31 19:57:53 +0000568 const TargetRegisterClass &RC = *MRI->getRegClass(Reg);
Renato Golin4e31ae12014-10-03 12:20:53 +0000569 bool ForceGlobal = !ReverseLocal &&
Matthias Brauna354cdd2015-03-31 19:57:53 +0000570 (Size / SlotIndex::InstrDist) > (2 * RC.getNumRegs());
Andrew Trick52a00932014-02-26 22:07:26 +0000571
572 if (ExtraRegInfo[Reg].Stage == RS_Assign && !ForceGlobal && !LI->empty() &&
Andrew Trick84852572013-07-25 18:35:14 +0000573 LIS->intervalIsInOneMBB(*LI)) {
574 // Allocate original local ranges in linear instruction order. Since they
575 // are singly defined, this produces optimal coloring in the absence of
576 // global interference and other constraints.
Andrew Trick52a00932014-02-26 22:07:26 +0000577 if (!ReverseLocal)
Andrew Trick2d8826a2013-12-11 03:40:15 +0000578 Prio = LI->beginIndex().getInstrDistance(Indexes->getLastIndex());
579 else {
580 // Allocating bottom up may allow many short LRGs to be assigned first
581 // to one of the cheap registers. This could be much faster for very
582 // large blocks on targets with many physical registers.
Matthias Braunf5f89b92015-03-31 19:57:49 +0000583 Prio = Indexes->getZeroIndex().getInstrDistance(LI->endIndex());
Andrew Trick2d8826a2013-12-11 03:40:15 +0000584 }
Matthias Brauna354cdd2015-03-31 19:57:53 +0000585 Prio |= RC.AllocationPriority << 24;
586 } else {
Andrew Trick84852572013-07-25 18:35:14 +0000587 // Allocate global and split ranges in long->short order. Long ranges that
588 // don't fit should be spilled (or split) ASAP so they don't create
589 // interference. Mark a bit to prioritize global above local ranges.
590 Prio = (1u << 29) + Size;
591 }
592 // Mark a higher bit to prioritize global and local above RS_Split.
593 Prio |= (1u << 31);
Jakob Stoklund Olesenb51f65c2011-02-23 00:56:56 +0000594
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000595 // Boost ranges that have a physical register hint.
Jakob Stoklund Olesen74052b02012-12-03 23:23:50 +0000596 if (VRM->hasKnownPreference(Reg))
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000597 Prio |= (1u << 30);
598 }
Andrew Trickf4b1ee32013-07-25 18:35:22 +0000599 // The virtual register number is a tie breaker for same-sized ranges.
600 // Give lower vreg numbers higher priority to assign them first.
Quentin Colombet87769712014-02-05 22:13:59 +0000601 CurQueue.push(std::make_pair(Prio, ~Reg));
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000602}
603
Quentin Colombet87769712014-02-05 22:13:59 +0000604LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); }
605
606LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) {
607 if (CurQueue.empty())
Craig Topperc0196b12014-04-14 00:51:57 +0000608 return nullptr;
Quentin Colombet87769712014-02-05 22:13:59 +0000609 LiveInterval *LI = &LIS->getInterval(~CurQueue.top().second);
610 CurQueue.pop();
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000611 return LI;
612}
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000613
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000614
615//===----------------------------------------------------------------------===//
616// Direct Assignment
617//===----------------------------------------------------------------------===//
618
619/// tryAssign - Try to assign VirtReg to an available register.
620unsigned RAGreedy::tryAssign(LiveInterval &VirtReg,
621 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000622 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000623 Order.rewind();
624 unsigned PhysReg;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000625 while ((PhysReg = Order.next()))
626 if (!Matrix->checkInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000627 break;
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000628 if (!PhysReg || Order.isHint())
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000629 return PhysReg;
630
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000631 // PhysReg is available, but there may be a better choice.
632
633 // If we missed a simple hint, try to cheaply evict interference from the
634 // preferred register.
635 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg))
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000636 if (Order.isHint(Hint)) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000637 DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n');
Andrew Trick3621b8a2013-11-22 19:07:38 +0000638 EvictionCost MaxCost;
639 MaxCost.setBrokenHints(1);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000640 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
641 evictInterference(VirtReg, Hint, NewVRegs);
642 return Hint;
643 }
644 }
645
646 // Try to evict interference from a cheaper alternative.
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000647 unsigned Cost = TRI->getCostPerUse(PhysReg);
648
649 // Most registers have 0 additional cost.
650 if (!Cost)
651 return PhysReg;
652
653 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost
654 << '\n');
655 unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost);
656 return CheapReg ? CheapReg : PhysReg;
657}
658
659
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000660//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000661// Interference eviction
662//===----------------------------------------------------------------------===//
663
Andrew Trick8bb0a252013-07-25 18:35:19 +0000664unsigned RAGreedy::canReassign(LiveInterval &VirtReg, unsigned PrevReg) {
Matthias Braun5d1f12d2015-07-15 22:16:00 +0000665 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo, Matrix);
Andrew Trick8bb0a252013-07-25 18:35:19 +0000666 unsigned PhysReg;
667 while ((PhysReg = Order.next())) {
668 if (PhysReg == PrevReg)
669 continue;
670
671 MCRegUnitIterator Units(PhysReg, TRI);
672 for (; Units.isValid(); ++Units) {
673 // Instantiate a "subquery", not to be confused with the Queries array.
674 LiveIntervalUnion::Query subQ(&VirtReg, &Matrix->getLiveUnions()[*Units]);
675 if (subQ.checkInterference())
676 break;
677 }
678 // If no units have interference, break out with the current PhysReg.
679 if (!Units.isValid())
680 break;
681 }
682 if (PhysReg)
683 DEBUG(dbgs() << "can reassign: " << VirtReg << " from "
684 << PrintReg(PrevReg, TRI) << " to " << PrintReg(PhysReg, TRI)
685 << '\n');
686 return PhysReg;
687}
688
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000689/// shouldEvict - determine if A should evict the assigned live range B. The
690/// eviction policy defined by this function together with the allocation order
691/// defined by enqueue() decides which registers ultimately end up being split
692/// and spilled.
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000693///
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000694/// Cascade numbers are used to prevent infinite loops if this function is a
695/// cyclic relation.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000696///
697/// @param A The live range to be assigned.
698/// @param IsHint True when A is about to be assigned to its preferred
699/// register.
700/// @param B The live range to be evicted.
701/// @param BreaksHint True when B is already assigned to its preferred register.
702bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint,
703 LiveInterval &B, bool BreaksHint) {
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000704 bool CanSplit = getStage(B) < RS_Spill;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000705
706 // Be fairly aggressive about following hints as long as the evictee can be
707 // split.
708 if (CanSplit && IsHint && !BreaksHint)
709 return true;
710
Andrew Trick059e8002013-11-22 19:07:42 +0000711 if (A.weight > B.weight) {
712 DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight << '\n');
713 return true;
714 }
715 return false;
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000716}
717
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000718/// canEvictInterference - Return true if all interferences between VirtReg and
Manman Renfa32ca12014-02-25 19:47:15 +0000719/// PhysReg can be evicted.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000720///
721/// @param VirtReg Live range that is about to be assigned.
722/// @param PhysReg Desired register for assignment.
Dmitri Gribenko881929c2012-09-12 16:59:47 +0000723/// @param IsHint True when PhysReg is VirtReg's preferred register.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000724/// @param MaxCost Only look for cheaper candidates and update with new cost
725/// when returning true.
726/// @returns True when interference can be evicted cheaper than MaxCost.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000727bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000728 bool IsHint, EvictionCost &MaxCost) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000729 // It is only possible to evict virtual register interference.
730 if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg)
731 return false;
732
Andrew Trick84852572013-07-25 18:35:14 +0000733 bool IsLocal = LIS->intervalIsInOneMBB(VirtReg);
734
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000735 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
736 // involved in an eviction before. If a cascade number was assigned, deny
737 // evicting anything with the same or a newer cascade number. This prevents
738 // infinite eviction loops.
739 //
740 // This works out so a register without a cascade number is allowed to evict
741 // anything, and it can be evicted by anything.
742 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
743 if (!Cascade)
744 Cascade = NextCascade;
745
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000746 EvictionCost Cost;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000747 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
748 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000749 // If there is 10 or more interferences, chances are one is heavier.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000750 if (Q.collectInterferingVRegs(10) >= 10)
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000751 return false;
752
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000753 // Check if any interfering live range is heavier than MaxWeight.
754 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
755 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000756 assert(TargetRegisterInfo::isVirtualRegister(Intf->reg) &&
757 "Only expecting virtual register interference from query");
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000758 // Never evict spill products. They cannot split or spill.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000759 if (getStage(*Intf) == RS_Done)
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000760 return false;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000761 // Once a live range becomes small enough, it is urgent that we find a
762 // register for it. This is indicated by an infinite spill weight. These
763 // urgent live ranges get to evict almost anything.
Jakob Stoklund Olesen05e22452012-05-30 21:46:58 +0000764 //
765 // Also allow urgent evictions of unspillable ranges from a strictly
766 // larger allocation order.
767 bool Urgent = !VirtReg.isSpillable() &&
768 (Intf->isSpillable() ||
769 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(VirtReg.reg)) <
770 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(Intf->reg)));
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000771 // Only evict older cascades or live ranges without a cascade.
772 unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade;
773 if (Cascade <= IntfCascade) {
774 if (!Urgent)
775 return false;
776 // We permit breaking cascades for urgent evictions. It should be the
777 // last resort, though, so make it really expensive.
778 Cost.BrokenHints += 10;
779 }
780 // Would this break a satisfied hint?
781 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg);
782 // Update eviction cost.
783 Cost.BrokenHints += BreaksHint;
784 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
785 // Abort if this would be too expensive.
786 if (!(Cost < MaxCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000787 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000788 if (Urgent)
789 continue;
Andrew Trickc2ab53a2013-11-29 23:49:38 +0000790 // Apply the eviction policy for non-urgent evictions.
791 if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
792 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000793 // If !MaxCost.isMax(), then we're just looking for a cheap register.
794 // Evicting another local live range in this case could lead to suboptimal
795 // coloring.
Andrew Trick8bb0a252013-07-25 18:35:19 +0000796 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) &&
Quentin Colombet5caa6a22014-07-02 18:32:04 +0000797 (!EnableLocalReassign || !canReassign(*Intf, PhysReg))) {
Andrew Trick84852572013-07-25 18:35:14 +0000798 return false;
Andrew Trick8bb0a252013-07-25 18:35:19 +0000799 }
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000800 }
801 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000802 MaxCost = Cost;
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000803 return true;
804}
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000805
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000806/// evictInterference - Evict any interferring registers that prevent VirtReg
807/// from being assigned to Physreg. This assumes that canEvictInterference
808/// returned true.
809void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000810 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000811 // Make sure that VirtReg has a cascade number, and assign that cascade
812 // number to every evicted register. These live ranges than then only be
813 // evicted by a newer cascade, preventing infinite loops.
814 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
815 if (!Cascade)
816 Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++;
817
818 DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI)
819 << " interference: Cascade " << Cascade << '\n');
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000820
821 // Collect all interfering virtregs first.
822 SmallVector<LiveInterval*, 8> Intfs;
823 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
824 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000825 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000826 ArrayRef<LiveInterval*> IVR = Q.interferingVRegs();
827 Intfs.append(IVR.begin(), IVR.end());
828 }
829
830 // Evict them second. This will invalidate the queries.
831 for (unsigned i = 0, e = Intfs.size(); i != e; ++i) {
832 LiveInterval *Intf = Intfs[i];
833 // The same VirtReg may be present in multiple RegUnits. Skip duplicates.
834 if (!VRM->hasPhys(Intf->reg))
835 continue;
836 Matrix->unassign(*Intf);
837 assert((ExtraRegInfo[Intf->reg].Cascade < Cascade ||
838 VirtReg.isSpillable() < Intf->isSpillable()) &&
839 "Cannot decrease cascade number, illegal eviction");
840 ExtraRegInfo[Intf->reg].Cascade = Cascade;
841 ++NumEvicted;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000842 NewVRegs.push_back(Intf->reg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000843 }
844}
845
Matthias Braun953393a2015-07-14 17:38:17 +0000846/// Returns true if the given \p PhysReg is a callee saved register and has not
847/// been used for allocation yet.
848bool RAGreedy::isUnusedCalleeSavedReg(unsigned PhysReg) const {
849 unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg);
850 if (CSR == 0)
851 return false;
852
853 return !Matrix->isPhysRegUsed(PhysReg);
854}
855
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000856/// tryEvict - Try to evict all interferences for a physreg.
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +0000857/// @param VirtReg Currently unassigned virtual register.
858/// @param Order Physregs to try.
859/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000860unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
861 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000862 SmallVectorImpl<unsigned> &NewVRegs,
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000863 unsigned CostPerUseLimit) {
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000864 NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled);
865
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000866 // Keep track of the cheapest interference seen so far.
Andrew Trick3621b8a2013-11-22 19:07:38 +0000867 EvictionCost BestCost;
868 BestCost.setMax();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000869 unsigned BestPhys = 0;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000870 unsigned OrderLimit = Order.getOrder().size();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000871
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000872 // When we are just looking for a reduced cost per use, don't break any
873 // hints, and only evict smaller spill weights.
874 if (CostPerUseLimit < ~0u) {
875 BestCost.BrokenHints = 0;
876 BestCost.MaxWeight = VirtReg.weight;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000877
878 // Check of any registers in RC are below CostPerUseLimit.
879 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg.reg);
880 unsigned MinCost = RegClassInfo.getMinCost(RC);
881 if (MinCost >= CostPerUseLimit) {
Craig Toppercf0444b2014-11-17 05:50:14 +0000882 DEBUG(dbgs() << TRI->getRegClassName(RC) << " minimum cost = " << MinCost
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000883 << ", no cheaper registers to be found.\n");
884 return 0;
885 }
886
887 // It is normal for register classes to have a long tail of registers with
888 // the same cost. We don't need to look at them if they're too expensive.
889 if (TRI->getCostPerUse(Order.getOrder().back()) >= CostPerUseLimit) {
890 OrderLimit = RegClassInfo.getLastCostChange(RC);
891 DEBUG(dbgs() << "Only trying the first " << OrderLimit << " regs.\n");
892 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000893 }
894
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000895 Order.rewind();
Aditya Nandakumar73f3d332013-12-05 21:18:40 +0000896 while (unsigned PhysReg = Order.next(OrderLimit)) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000897 if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit)
898 continue;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000899 // The first use of a callee-saved register in a function has cost 1.
900 // Don't start using a CSR when the CostPerUseLimit is low.
Matthias Braun953393a2015-07-14 17:38:17 +0000901 if (CostPerUseLimit == 1 && isUnusedCalleeSavedReg(PhysReg)) {
902 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
903 << PrintReg(RegClassInfo.getLastCalleeSavedAlias(PhysReg), TRI)
904 << '\n');
905 continue;
906 }
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000907
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000908 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000909 continue;
910
911 // Best so far.
912 BestPhys = PhysReg;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000913
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000914 // Stop if the hint can be used.
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000915 if (Order.isHint())
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000916 break;
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000917 }
918
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000919 if (!BestPhys)
920 return 0;
921
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000922 evictInterference(VirtReg, BestPhys, NewVRegs);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000923 return BestPhys;
Andrew Trickccef0982010-12-09 18:15:21 +0000924}
925
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000926
927//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000928// Region Splitting
929//===----------------------------------------------------------------------===//
930
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000931/// addSplitConstraints - Fill out the SplitConstraints vector based on the
932/// interference pattern in Physreg and its aliases. Add the constraints to
933/// SpillPlacement and return the static cost of this split in Cost, assuming
934/// that all preferences in SplitConstraints are met.
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000935/// Return false if there are no bundles with positive bias.
936bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf,
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000937 BlockFrequency &Cost) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000938 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000939
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000940 // Reset interference dependent info.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000941 SplitConstraints.resize(UseBlocks.size());
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000942 BlockFrequency StaticCost = 0;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000943 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
944 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000945 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000946
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000947 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000948 Intf.moveToBlock(BC.Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000949 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
950 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
David Blaikie041f1aa2013-05-15 07:36:59 +0000951 BC.ChangesValue = BI.FirstDef.isValid();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000952
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000953 if (!Intf.hasInterference())
954 continue;
955
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000956 // Number of spill code instructions to insert.
957 unsigned Ins = 0;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000958
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000959 // Interference for the live-in value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000960 if (BI.LiveIn) {
Richard Trieu7a083812016-02-18 22:09:30 +0000961 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number)) {
962 BC.Entry = SpillPlacement::MustSpill;
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000963 ++Ins;
Richard Trieu7a083812016-02-18 22:09:30 +0000964 } else if (Intf.first() < BI.FirstInstr) {
965 BC.Entry = SpillPlacement::PrefSpill;
966 ++Ins;
967 } else if (Intf.first() < BI.LastInstr) {
968 ++Ins;
969 }
Jakob Stoklund Olesenf248b202011-02-08 23:02:58 +0000970 }
971
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000972 // Interference for the live-out value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000973 if (BI.LiveOut) {
Richard Trieu7a083812016-02-18 22:09:30 +0000974 if (Intf.last() >= SA->getLastSplitPoint(BC.Number)) {
975 BC.Exit = SpillPlacement::MustSpill;
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000976 ++Ins;
Richard Trieu7a083812016-02-18 22:09:30 +0000977 } else if (Intf.last() > BI.LastInstr) {
978 BC.Exit = SpillPlacement::PrefSpill;
979 ++Ins;
980 } else if (Intf.last() > BI.FirstInstr) {
981 ++Ins;
982 }
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000983 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000984
985 // Accumulate the total frequency of inserted spill code.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000986 while (Ins--)
987 StaticCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000988 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000989 Cost = StaticCost;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000990
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000991 // Add constraints for use-blocks. Note that these are the only constraints
992 // that may add a positive bias, it is downhill from here.
993 SpillPlacer->addConstraints(SplitConstraints);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000994 return SpillPlacer->scanActiveBundles();
995}
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000996
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000997
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000998/// addThroughConstraints - Add constraints and links to SpillPlacer from the
999/// live-through blocks in Blocks.
1000void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf,
1001 ArrayRef<unsigned> Blocks) {
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001002 const unsigned GroupSize = 8;
1003 SpillPlacement::BlockConstraint BCS[GroupSize];
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001004 unsigned TBS[GroupSize];
1005 unsigned B = 0, T = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001006
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001007 for (unsigned i = 0; i != Blocks.size(); ++i) {
1008 unsigned Number = Blocks[i];
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001009 Intf.moveToBlock(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001010
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001011 if (!Intf.hasInterference()) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001012 assert(T < GroupSize && "Array overflow");
1013 TBS[T] = Number;
1014 if (++T == GroupSize) {
Frits van Bommel717d7ed2011-07-18 12:00:32 +00001015 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001016 T = 0;
1017 }
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001018 continue;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001019 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001020
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001021 assert(B < GroupSize && "Array overflow");
1022 BCS[B].Number = Number;
1023
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001024 // Interference for the live-in value.
1025 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
1026 BCS[B].Entry = SpillPlacement::MustSpill;
1027 else
1028 BCS[B].Entry = SpillPlacement::PrefSpill;
1029
1030 // Interference for the live-out value.
1031 if (Intf.last() >= SA->getLastSplitPoint(Number))
1032 BCS[B].Exit = SpillPlacement::MustSpill;
1033 else
1034 BCS[B].Exit = SpillPlacement::PrefSpill;
1035
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001036 if (++B == GroupSize) {
Craig Toppere1d12942014-08-27 05:25:25 +00001037 SpillPlacer->addConstraints(makeArrayRef(BCS, B));
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001038 B = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001039 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001040 }
1041
Craig Toppere1d12942014-08-27 05:25:25 +00001042 SpillPlacer->addConstraints(makeArrayRef(BCS, B));
Frits van Bommel717d7ed2011-07-18 12:00:32 +00001043 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001044}
1045
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001046void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001047 // Keep track of through blocks that have not been added to SpillPlacer.
1048 BitVector Todo = SA->getThroughBlocks();
1049 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks;
1050 unsigned AddedTo = 0;
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001051#ifndef NDEBUG
1052 unsigned Visited = 0;
1053#endif
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001054
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001055 for (;;) {
1056 ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive();
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001057 // Find new through blocks in the periphery of PrefRegBundles.
1058 for (int i = 0, e = NewBundles.size(); i != e; ++i) {
1059 unsigned Bundle = NewBundles[i];
1060 // Look at all blocks connected to Bundle in the full graph.
1061 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
1062 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
1063 I != E; ++I) {
1064 unsigned Block = *I;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001065 if (!Todo.test(Block))
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001066 continue;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001067 Todo.reset(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001068 // This is a new through block. Add it to SpillPlacer later.
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001069 ActiveBlocks.push_back(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001070#ifndef NDEBUG
1071 ++Visited;
1072#endif
1073 }
1074 }
1075 // Any new blocks to add?
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001076 if (ActiveBlocks.size() == AddedTo)
1077 break;
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +00001078
1079 // Compute through constraints from the interference, or assume that all
1080 // through blocks prefer spilling when forming compact regions.
Craig Toppere1d12942014-08-27 05:25:25 +00001081 auto NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +00001082 if (Cand.PhysReg)
1083 addThroughConstraints(Cand.Intf, NewBlocks);
1084 else
Jakob Stoklund Olesen86954522011-08-03 23:09:38 +00001085 // Provide a strong negative bias on through blocks to prevent unwanted
1086 // liveness on loop backedges.
1087 SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true);
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001088 AddedTo = ActiveBlocks.size();
1089
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001090 // Perhaps iterating can enable more bundles?
1091 SpillPlacer->iterate();
1092 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001093 DEBUG(dbgs() << ", v=" << Visited);
1094}
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001095
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001096/// calcCompactRegion - Compute the set of edge bundles that should be live
1097/// when splitting the current live range into compact regions. Compact
1098/// regions can be computed without looking at interference. They are the
1099/// regions formed by removing all the live-through blocks from the live range.
1100///
1101/// Returns false if the current live range is already compact, or if the
1102/// compact regions would form single block regions anyway.
1103bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) {
1104 // Without any through blocks, the live range is already compact.
1105 if (!SA->getNumThroughBlocks())
1106 return false;
1107
1108 // Compact regions don't correspond to any physreg.
1109 Cand.reset(IntfCache, 0);
1110
1111 DEBUG(dbgs() << "Compact region bundles");
1112
1113 // Use the spill placer to determine the live bundles. GrowRegion pretends
1114 // that all the through blocks have interference when PhysReg is unset.
1115 SpillPlacer->prepare(Cand.LiveBundles);
1116
1117 // The static split cost will be zero since Cand.Intf reports no interference.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001118 BlockFrequency Cost;
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001119 if (!addSplitConstraints(Cand.Intf, Cost)) {
1120 DEBUG(dbgs() << ", none.\n");
1121 return false;
1122 }
1123
1124 growRegion(Cand);
1125 SpillPlacer->finish();
1126
1127 if (!Cand.LiveBundles.any()) {
1128 DEBUG(dbgs() << ", none.\n");
1129 return false;
1130 }
1131
1132 DEBUG({
1133 for (int i = Cand.LiveBundles.find_first(); i>=0;
1134 i = Cand.LiveBundles.find_next(i))
1135 dbgs() << " EB#" << i;
1136 dbgs() << ".\n";
1137 });
1138 return true;
1139}
1140
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001141/// calcSpillCost - Compute how expensive it would be to split the live range in
1142/// SA around all use blocks instead of forming bundle regions.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001143BlockFrequency RAGreedy::calcSpillCost() {
1144 BlockFrequency Cost = 0;
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001145 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1146 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1147 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1148 unsigned Number = BI.MBB->getNumber();
1149 // We normally only need one spill instruction - a load or a store.
1150 Cost += SpillPlacer->getBlockFrequency(Number);
1151
1152 // Unless the value is redefined in the block.
Jakob Stoklund Olesen3c145052011-08-02 23:04:08 +00001153 if (BI.LiveIn && BI.LiveOut && BI.FirstDef)
1154 Cost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001155 }
1156 return Cost;
1157}
1158
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001159/// calcGlobalSplitCost - Return the global split cost of following the split
1160/// pattern in LiveBundles. This cost should be added to the local cost of the
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001161/// interference pattern in SplitConstraints.
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001162///
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001163BlockFrequency RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) {
1164 BlockFrequency GlobalCost = 0;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001165 const BitVector &LiveBundles = Cand.LiveBundles;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001166 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1167 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1168 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001169 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001170 bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)];
1171 bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)];
1172 unsigned Ins = 0;
1173
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001174 if (BI.LiveIn)
1175 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
1176 if (BI.LiveOut)
1177 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001178 while (Ins--)
1179 GlobalCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001180 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001181
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001182 for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) {
1183 unsigned Number = Cand.ActiveBlocks[i];
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001184 bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)];
1185 bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)];
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001186 if (!RegIn && !RegOut)
1187 continue;
1188 if (RegIn && RegOut) {
1189 // We need double spill code if this block has interference.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001190 Cand.Intf.moveToBlock(Number);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001191 if (Cand.Intf.hasInterference()) {
1192 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1193 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1194 }
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001195 continue;
1196 }
1197 // live-in / stack-out or stack-in live-out.
1198 GlobalCost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001199 }
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001200 return GlobalCost;
1201}
1202
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001203/// splitAroundRegion - Split the current live range around the regions
1204/// determined by BundleCand and GlobalCand.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001205///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001206/// Before calling this function, GlobalCand and BundleCand must be initialized
1207/// so each bundle is assigned to a valid candidate, or NoCand for the
1208/// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor
1209/// objects must be initialized for the current live range, and intervals
1210/// created for the used candidates.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001211///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001212/// @param LREdit The LiveRangeEdit object handling the current split.
1213/// @param UsedCands List of used GlobalCand entries. Every BundleCand value
1214/// must appear in this list.
1215void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit,
1216 ArrayRef<unsigned> UsedCands) {
1217 // These are the intervals created for new global ranges. We may create more
1218 // intervals for local ranges.
1219 const unsigned NumGlobalIntvs = LREdit.size();
1220 DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n");
1221 assert(NumGlobalIntvs && "No global intervals configured");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001222
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001223 // Isolate even single instructions when dealing with a proper sub-class.
Jakob Stoklund Olesen22f37a12011-08-06 18:20:24 +00001224 // That guarantees register class inflation for the stack interval because it
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001225 // is all copies.
1226 unsigned Reg = SA->getParent().reg;
1227 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
1228
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001229 // First handle all the blocks with uses.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001230 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1231 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1232 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001233 unsigned Number = BI.MBB->getNumber();
1234 unsigned IntvIn = 0, IntvOut = 0;
1235 SlotIndex IntfIn, IntfOut;
1236 if (BI.LiveIn) {
1237 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1238 if (CandIn != NoCand) {
1239 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1240 IntvIn = Cand.IntvIdx;
1241 Cand.Intf.moveToBlock(Number);
1242 IntfIn = Cand.Intf.first();
1243 }
1244 }
1245 if (BI.LiveOut) {
1246 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1247 if (CandOut != NoCand) {
1248 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1249 IntvOut = Cand.IntvIdx;
1250 Cand.Intf.moveToBlock(Number);
1251 IntfOut = Cand.Intf.last();
1252 }
1253 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001254
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001255 // Create separate intervals for isolated blocks with multiple uses.
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001256 if (!IntvIn && !IntvOut) {
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001257 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n");
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001258 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001259 SE->splitSingleBlock(BI);
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001260 continue;
1261 }
1262
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001263 if (IntvIn && IntvOut)
1264 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1265 else if (IntvIn)
1266 SE->splitRegInBlock(BI, IntvIn, IntfIn);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001267 else
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001268 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001269 }
1270
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001271 // Handle live-through blocks. The relevant live-through blocks are stored in
1272 // the ActiveBlocks list with each candidate. We need to filter out
1273 // duplicates.
1274 BitVector Todo = SA->getThroughBlocks();
1275 for (unsigned c = 0; c != UsedCands.size(); ++c) {
1276 ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks;
1277 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
1278 unsigned Number = Blocks[i];
1279 if (!Todo.test(Number))
1280 continue;
1281 Todo.reset(Number);
1282
1283 unsigned IntvIn = 0, IntvOut = 0;
1284 SlotIndex IntfIn, IntfOut;
1285
1286 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1287 if (CandIn != NoCand) {
1288 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1289 IntvIn = Cand.IntvIdx;
1290 Cand.Intf.moveToBlock(Number);
1291 IntfIn = Cand.Intf.first();
1292 }
1293
1294 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1295 if (CandOut != NoCand) {
1296 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1297 IntvOut = Cand.IntvIdx;
1298 Cand.Intf.moveToBlock(Number);
1299 IntfOut = Cand.Intf.last();
1300 }
1301 if (!IntvIn && !IntvOut)
1302 continue;
1303 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1304 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001305 }
1306
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001307 ++NumGlobalSplits;
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001308
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001309 SmallVector<unsigned, 8> IntvMap;
1310 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001311 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00001312
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001313 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesen5cc91b22011-05-28 02:32:57 +00001314 unsigned OrigBlocks = SA->getNumLiveBlocks();
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001315
1316 // Sort out the new intervals created by splitting. We get four kinds:
1317 // - Remainder intervals should not be split again.
1318 // - Candidate intervals can be assigned to Cand.PhysReg.
1319 // - Block-local splits are candidates for local splitting.
1320 // - DCE leftovers should go back on the queue.
1321 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001322 LiveInterval &Reg = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001323
1324 // Ignore old intervals from DCE.
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001325 if (getStage(Reg) != RS_New)
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001326 continue;
1327
1328 // Remainder interval. Don't try splitting again, spill if it doesn't
1329 // allocate.
1330 if (IntvMap[i] == 0) {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00001331 setStage(Reg, RS_Spill);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001332 continue;
1333 }
1334
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001335 // Global intervals. Allow repeated splitting as long as the number of live
1336 // blocks is strictly decreasing.
1337 if (IntvMap[i] < NumGlobalIntvs) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001338 if (SA->countLiveBlocks(&Reg) >= OrigBlocks) {
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001339 DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks
1340 << " blocks as original.\n");
1341 // Don't allow repeated splitting as a safe guard against looping.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001342 setStage(Reg, RS_Split2);
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001343 }
1344 continue;
1345 }
1346
1347 // Other intervals are treated as new. This includes local intervals created
1348 // for blocks with multiple uses, and anything created by DCE.
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001349 }
1350
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +00001351 if (VerifyEnabled)
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001352 MF->verify(this, "After splitting live range around region");
1353}
1354
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001355unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001356 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001357 unsigned NumCands = 0;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001358 BlockFrequency BestCost;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001359
1360 // Check if we can split this live range around a compact region.
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +00001361 bool HasCompact = calcCompactRegion(GlobalCand.front());
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001362 if (HasCompact) {
1363 // Yes, keep GlobalCand[0] as the compact region candidate.
1364 NumCands = 1;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001365 BestCost = BlockFrequency::getMaxFrequency();
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001366 } else {
1367 // No benefit from the compact region, our fallback will be per-block
1368 // splitting. Make sure we find a solution that is cheaper than spilling.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001369 BestCost = calcSpillCost();
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001370 DEBUG(dbgs() << "Cost of isolating all blocks = ";
1371 MBFI->printBlockFreq(dbgs(), BestCost) << '\n');
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001372 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001373
Manman Ren9db66b32014-03-24 23:23:42 +00001374 unsigned BestCand =
Manman Ren78cf02a2014-03-25 00:16:25 +00001375 calculateRegionSplitCost(VirtReg, Order, BestCost, NumCands,
1376 false/*IgnoreCSR*/);
Manman Ren9db66b32014-03-24 23:23:42 +00001377
1378 // No solutions found, fall back to single block splitting.
1379 if (!HasCompact && BestCand == NoCand)
1380 return 0;
1381
1382 return doRegionSplit(VirtReg, BestCand, HasCompact, NewVRegs);
1383}
1384
1385unsigned RAGreedy::calculateRegionSplitCost(LiveInterval &VirtReg,
1386 AllocationOrder &Order,
1387 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +00001388 unsigned &NumCands,
1389 bool IgnoreCSR) {
Manman Ren9db66b32014-03-24 23:23:42 +00001390 unsigned BestCand = NoCand;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001391 Order.rewind();
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001392 while (unsigned PhysReg = Order.next()) {
Matthias Braun953393a2015-07-14 17:38:17 +00001393 if (IgnoreCSR && isUnusedCalleeSavedReg(PhysReg))
1394 continue;
Manman Ren78cf02a2014-03-25 00:16:25 +00001395
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001396 // Discard bad candidates before we run out of interference cache cursors.
1397 // This will only affect register classes with a lot of registers (>32).
1398 if (NumCands == IntfCache.getMaxCursors()) {
1399 unsigned WorstCount = ~0u;
1400 unsigned Worst = 0;
1401 for (unsigned i = 0; i != NumCands; ++i) {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001402 if (i == BestCand || !GlobalCand[i].PhysReg)
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001403 continue;
1404 unsigned Count = GlobalCand[i].LiveBundles.count();
Richard Trieu7a083812016-02-18 22:09:30 +00001405 if (Count < WorstCount) {
1406 Worst = i;
1407 WorstCount = Count;
1408 }
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001409 }
1410 --NumCands;
1411 GlobalCand[Worst] = GlobalCand[NumCands];
Jakob Stoklund Olesen559d4dc2011-11-01 00:02:31 +00001412 if (BestCand == NumCands)
1413 BestCand = Worst;
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001414 }
1415
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001416 if (GlobalCand.size() <= NumCands)
1417 GlobalCand.resize(NumCands+1);
1418 GlobalSplitCandidate &Cand = GlobalCand[NumCands];
1419 Cand.reset(IntfCache, PhysReg);
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001420
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001421 SpillPlacer->prepare(Cand.LiveBundles);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001422 BlockFrequency Cost;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001423 if (!addSplitConstraints(Cand.Intf, Cost)) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001424 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n");
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001425 continue;
1426 }
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001427 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = ";
1428 MBFI->printBlockFreq(dbgs(), Cost));
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001429 if (Cost >= BestCost) {
1430 DEBUG({
1431 if (BestCand == NoCand)
1432 dbgs() << " worse than no bundles\n";
1433 else
1434 dbgs() << " worse than "
1435 << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n';
1436 });
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001437 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001438 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001439 growRegion(Cand);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001440
Jakob Stoklund Olesen36b5d8a2011-04-06 19:13:57 +00001441 SpillPlacer->finish();
1442
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001443 // No live bundles, defer to splitSingleBlocks().
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001444 if (!Cand.LiveBundles.any()) {
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001445 DEBUG(dbgs() << " no bundles.\n");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001446 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001447 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001448
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001449 Cost += calcGlobalSplitCost(Cand);
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001450 DEBUG({
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001451 dbgs() << ", total = "; MBFI->printBlockFreq(dbgs(), Cost)
1452 << " with bundles";
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001453 for (int i = Cand.LiveBundles.find_first(); i>=0;
1454 i = Cand.LiveBundles.find_next(i))
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001455 dbgs() << " EB#" << i;
1456 dbgs() << ".\n";
1457 });
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001458 if (Cost < BestCost) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001459 BestCand = NumCands;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001460 BestCost = Cost;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001461 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001462 ++NumCands;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001463 }
Manman Ren9db66b32014-03-24 23:23:42 +00001464 return BestCand;
1465}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001466
Manman Ren9db66b32014-03-24 23:23:42 +00001467unsigned RAGreedy::doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
1468 bool HasCompact,
1469 SmallVectorImpl<unsigned> &NewVRegs) {
1470 SmallVector<unsigned, 8> UsedCands;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001471 // Prepare split editor.
Wei Mi9a16d652016-04-13 03:08:27 +00001472 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001473 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001474
1475 // Assign all edge bundles to the preferred candidate, or NoCand.
1476 BundleCand.assign(Bundles->getNumBundles(), NoCand);
1477
1478 // Assign bundles for the best candidate region.
1479 if (BestCand != NoCand) {
1480 GlobalSplitCandidate &Cand = GlobalCand[BestCand];
1481 if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
1482 UsedCands.push_back(BestCand);
1483 Cand.IntvIdx = SE->openIntv();
1484 DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in "
1485 << B << " bundles, intv " << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001486 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001487 }
1488 }
1489
1490 // Assign bundles for the compact region.
1491 if (HasCompact) {
1492 GlobalSplitCandidate &Cand = GlobalCand.front();
1493 assert(!Cand.PhysReg && "Compact region has no physreg");
1494 if (unsigned B = Cand.getBundles(BundleCand, 0)) {
1495 UsedCands.push_back(0);
1496 Cand.IntvIdx = SE->openIntv();
1497 DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv "
1498 << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001499 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001500 }
1501 }
1502
1503 splitAroundRegion(LREdit, UsedCands);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001504 return 0;
1505}
1506
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001507
1508//===----------------------------------------------------------------------===//
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001509// Per-Block Splitting
1510//===----------------------------------------------------------------------===//
1511
1512/// tryBlockSplit - Split a global live range around every block with uses. This
1513/// creates a lot of local live ranges, that will be split by tryLocalSplit if
1514/// they don't allocate.
1515unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001516 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001517 assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed");
1518 unsigned Reg = VirtReg.reg;
1519 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
Wei Mi9a16d652016-04-13 03:08:27 +00001520 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001521 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001522 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1523 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1524 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1525 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
1526 SE->splitSingleBlock(BI);
1527 }
1528 // No blocks were split.
1529 if (LREdit.empty())
1530 return 0;
1531
1532 // We did split for some blocks.
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001533 SmallVector<unsigned, 8> IntvMap;
1534 SE->finish(&IntvMap);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001535
1536 // Tell LiveDebugVariables about the new ranges.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001537 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001538
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001539 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1540
1541 // Sort out the new intervals created by splitting. The remainder interval
1542 // goes straight to spilling, the new local ranges get to stay RS_New.
1543 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001544 LiveInterval &LI = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001545 if (getStage(LI) == RS_New && IntvMap[i] == 0)
1546 setStage(LI, RS_Spill);
1547 }
1548
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001549 if (VerifyEnabled)
1550 MF->verify(this, "After splitting live range around basic blocks");
1551 return 0;
1552}
1553
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001554
1555//===----------------------------------------------------------------------===//
1556// Per-Instruction Splitting
1557//===----------------------------------------------------------------------===//
1558
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001559/// Get the number of allocatable registers that match the constraints of \p Reg
1560/// on \p MI and that are also in \p SuperRC.
1561static unsigned getNumAllocatableRegsForConstraints(
1562 const MachineInstr *MI, unsigned Reg, const TargetRegisterClass *SuperRC,
1563 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI,
1564 const RegisterClassInfo &RCI) {
1565 assert(SuperRC && "Invalid register class");
1566
1567 const TargetRegisterClass *ConstrainedRC =
1568 MI->getRegClassConstraintEffectForVReg(Reg, SuperRC, TII, TRI,
1569 /* ExploreBundle */ true);
1570 if (!ConstrainedRC)
1571 return 0;
1572 return RCI.getNumAllocatableRegs(ConstrainedRC);
1573}
1574
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001575/// tryInstructionSplit - Split a live range around individual instructions.
1576/// This is normally not worthwhile since the spiller is doing essentially the
1577/// same thing. However, when the live range is in a constrained register
1578/// class, it may help to insert copies such that parts of the live range can
1579/// be moved to a larger register class.
1580///
1581/// This is similar to spilling to a larger register class.
1582unsigned
1583RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001584 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001585 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001586 // There is no point to this if there are no larger sub-classes.
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001587 if (!RegClassInfo.isProperSubClass(CurRC))
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001588 return 0;
1589
1590 // Always enable split spill mode, since we're effectively spilling to a
1591 // register.
Wei Mi9a16d652016-04-13 03:08:27 +00001592 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001593 SE->reset(LREdit, SplitEditor::SM_Size);
1594
1595 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
1596 if (Uses.size() <= 1)
1597 return 0;
1598
1599 DEBUG(dbgs() << "Split around " << Uses.size() << " individual instrs.\n");
1600
Eric Christopher433c4322015-03-10 23:46:01 +00001601 const TargetRegisterClass *SuperRC =
1602 TRI->getLargestLegalSuperClass(CurRC, *MF);
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001603 unsigned SuperRCNumAllocatableRegs = RCI.getNumAllocatableRegs(SuperRC);
1604 // Split around every non-copy instruction if this split will relax
1605 // the constraints on the virtual register.
1606 // Otherwise, splitting just inserts uncoalescable copies that do not help
1607 // the allocation.
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001608 for (unsigned i = 0; i != Uses.size(); ++i) {
1609 if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]))
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001610 if (MI->isFullCopy() ||
1611 SuperRCNumAllocatableRegs ==
1612 getNumAllocatableRegsForConstraints(MI, VirtReg.reg, SuperRC, TII,
1613 TRI, RCI)) {
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001614 DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI);
1615 continue;
1616 }
1617 SE->openIntv();
1618 SlotIndex SegStart = SE->enterIntvBefore(Uses[i]);
1619 SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]);
1620 SE->useIntv(SegStart, SegStop);
1621 }
1622
1623 if (LREdit.empty()) {
1624 DEBUG(dbgs() << "All uses were copies.\n");
1625 return 0;
1626 }
1627
1628 SmallVector<unsigned, 8> IntvMap;
1629 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001630 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001631 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1632
1633 // Assign all new registers to RS_Spill. This was the last chance.
1634 setStage(LREdit.begin(), LREdit.end(), RS_Spill);
1635 return 0;
1636}
1637
1638
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001639//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001640// Local Splitting
1641//===----------------------------------------------------------------------===//
1642
1643
1644/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
1645/// in order to use PhysReg between two entries in SA->UseSlots.
1646///
1647/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1648///
1649void RAGreedy::calcGapWeights(unsigned PhysReg,
1650 SmallVectorImpl<float> &GapWeight) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001651 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1652 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001653 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001654 const unsigned NumGaps = Uses.size()-1;
1655
1656 // Start and end points for the interference check.
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001657 SlotIndex StartIdx =
1658 BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr;
1659 SlotIndex StopIdx =
1660 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001661
1662 GapWeight.assign(NumGaps, 0.0f);
1663
1664 // Add interference from each overlapping register.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001665 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1666 if (!Matrix->query(const_cast<LiveInterval&>(SA->getParent()), *Units)
1667 .checkInterference())
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001668 continue;
1669
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001670 // We know that VirtReg is a continuous interval from FirstInstr to
1671 // LastInstr, so we don't need InterferenceQuery.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001672 //
1673 // Interference that overlaps an instruction is counted in both gaps
1674 // surrounding the instruction. The exception is interference before
1675 // StartIdx and after StopIdx.
1676 //
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001677 LiveIntervalUnion::SegmentIter IntI =
1678 Matrix->getLiveUnions()[*Units] .find(StartIdx);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001679 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
1680 // Skip the gaps before IntI.
1681 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
1682 if (++Gap == NumGaps)
1683 break;
1684 if (Gap == NumGaps)
1685 break;
1686
1687 // Update the gaps covered by IntI.
1688 const float weight = IntI.value()->weight;
1689 for (; Gap != NumGaps; ++Gap) {
1690 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1691 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1692 break;
1693 }
1694 if (Gap == NumGaps)
1695 break;
1696 }
1697 }
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001698
1699 // Add fixed interference.
1700 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
Matthias Braun34e1be92013-10-10 21:29:02 +00001701 const LiveRange &LR = LIS->getRegUnit(*Units);
1702 LiveRange::const_iterator I = LR.find(StartIdx);
1703 LiveRange::const_iterator E = LR.end();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001704
1705 // Same loop as above. Mark any overlapped gaps as HUGE_VALF.
1706 for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) {
1707 while (Uses[Gap+1].getBoundaryIndex() < I->start)
1708 if (++Gap == NumGaps)
1709 break;
1710 if (Gap == NumGaps)
1711 break;
1712
1713 for (; Gap != NumGaps; ++Gap) {
Aaron Ballman04999042013-11-13 00:15:44 +00001714 GapWeight[Gap] = llvm::huge_valf;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001715 if (Uses[Gap+1].getBaseIndex() >= I->end)
1716 break;
1717 }
1718 if (Gap == NumGaps)
1719 break;
1720 }
1721 }
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001722}
1723
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001724/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1725/// basic block.
1726///
1727unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001728 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001729 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1730 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001731
1732 // Note that it is possible to have an interval that is live-in or live-out
1733 // while only covering a single block - A phi-def can use undef values from
1734 // predecessors, and the block could be a single-block loop.
1735 // We don't bother doing anything clever about such a case, we simply assume
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001736 // that the interval is continuous from FirstInstr to LastInstr. We should
1737 // make sure that we don't do anything illegal to such an interval, though.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001738
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001739 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001740 if (Uses.size() <= 2)
1741 return 0;
1742 const unsigned NumGaps = Uses.size()-1;
1743
1744 DEBUG({
1745 dbgs() << "tryLocalSplit: ";
1746 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001747 dbgs() << ' ' << Uses[i];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001748 dbgs() << '\n';
1749 });
1750
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001751 // If VirtReg is live across any register mask operands, compute a list of
1752 // gaps with register masks.
1753 SmallVector<unsigned, 8> RegMaskGaps;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001754 if (Matrix->checkRegMaskInterference(VirtReg)) {
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001755 // Get regmask slots for the whole block.
1756 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001757 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001758 // Constrain to VirtReg's live range.
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001759 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1760 Uses.front().getRegSlot()) - RMS.begin();
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001761 unsigned re = RMS.size();
1762 for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001763 // Look for Uses[i] <= RMS <= Uses[i+1].
1764 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1765 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001766 continue;
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001767 // Skip a regmask on the same instruction as the last use. It doesn't
1768 // overlap the live range.
1769 if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps)
1770 break;
1771 DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]);
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001772 RegMaskGaps.push_back(i);
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001773 // Advance ri to the next gap. A regmask on one of the uses counts in
1774 // both gaps.
1775 while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1]))
1776 ++ri;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001777 }
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001778 DEBUG(dbgs() << '\n');
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001779 }
1780
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001781 // Since we allow local split results to be split again, there is a risk of
1782 // creating infinite loops. It is tempting to require that the new live
1783 // ranges have less instructions than the original. That would guarantee
1784 // convergence, but it is too strict. A live range with 3 instructions can be
1785 // split 2+3 (including the COPY), and we want to allow that.
1786 //
1787 // Instead we use these rules:
1788 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001789 // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001790 // noop split, of course).
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001791 // 2. Require progress be made for ranges with getStage() == RS_Split2. All
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001792 // the new ranges must have fewer instructions than before the split.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001793 // 3. New ranges with the same number of instructions are marked RS_Split2,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001794 // smaller ranges are marked RS_New.
1795 //
1796 // These rules allow a 3 -> 2+3 split once, which we need. They also prevent
1797 // excessive splitting and infinite loops.
1798 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001799 bool ProgressRequired = getStage(VirtReg) >= RS_Split2;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001800
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001801 // Best split candidate.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001802 unsigned BestBefore = NumGaps;
1803 unsigned BestAfter = 0;
1804 float BestDiff = 0;
1805
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001806 const float blockFreq =
1807 SpillPlacer->getBlockFrequency(BI.MBB->getNumber()).getFrequency() *
Michael Gottesman5e985ee2013-12-14 02:37:38 +00001808 (1.0f / MBFI->getEntryFreq());
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001809 SmallVector<float, 8> GapWeight;
1810
1811 Order.rewind();
1812 while (unsigned PhysReg = Order.next()) {
1813 // Keep track of the largest spill weight that would need to be evicted in
1814 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1815 calcGapWeights(PhysReg, GapWeight);
1816
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001817 // Remove any gaps with regmask clobbers.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001818 if (Matrix->checkRegMaskInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001819 for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i)
Aaron Ballman04999042013-11-13 00:15:44 +00001820 GapWeight[RegMaskGaps[i]] = llvm::huge_valf;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001821
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001822 // Try to find the best sequence of gaps to close.
1823 // The new spill weight must be larger than any gap interference.
1824
1825 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001826 unsigned SplitBefore = 0, SplitAfter = 1;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001827
1828 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1829 // It is the spill weight that needs to be evicted.
1830 float MaxGap = GapWeight[0];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001831
1832 for (;;) {
1833 // Live before/after split?
1834 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1835 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1836
1837 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1838 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1839 << " i=" << MaxGap);
1840
1841 // Stop before the interval gets so big we wouldn't be making progress.
1842 if (!LiveBefore && !LiveAfter) {
1843 DEBUG(dbgs() << " all\n");
1844 break;
1845 }
1846 // Should the interval be extended or shrunk?
1847 bool Shrink = true;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001848
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001849 // How many gaps would the new range have?
1850 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1851
1852 // Legally, without causing looping?
1853 bool Legal = !ProgressRequired || NewGaps < NumGaps;
1854
Aaron Ballman04999042013-11-13 00:15:44 +00001855 if (Legal && MaxGap < llvm::huge_valf) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001856 // Estimate the new spill weight. Each instruction reads or writes the
1857 // register. Conservatively assume there are no read-modify-write
1858 // instructions.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001859 //
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001860 // Try to guess the size of the new interval.
Arnaud A. de Grandmaison829dd812014-11-04 20:51:24 +00001861 const float EstWeight = normalizeSpillWeight(
1862 blockFreq * (NewGaps + 1),
1863 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1864 (LiveBefore + LiveAfter) * SlotIndex::InstrDist,
1865 1);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001866 // Would this split be possible to allocate?
1867 // Never allocate all gaps, we wouldn't be making progress.
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001868 DEBUG(dbgs() << " w=" << EstWeight);
1869 if (EstWeight * Hysteresis >= MaxGap) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001870 Shrink = false;
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001871 float Diff = EstWeight - MaxGap;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001872 if (Diff > BestDiff) {
1873 DEBUG(dbgs() << " (best)");
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001874 BestDiff = Hysteresis * Diff;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001875 BestBefore = SplitBefore;
1876 BestAfter = SplitAfter;
1877 }
1878 }
1879 }
1880
1881 // Try to shrink.
1882 if (Shrink) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001883 if (++SplitBefore < SplitAfter) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001884 DEBUG(dbgs() << " shrink\n");
1885 // Recompute the max when necessary.
1886 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1887 MaxGap = GapWeight[SplitBefore];
1888 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1889 MaxGap = std::max(MaxGap, GapWeight[i]);
1890 }
1891 continue;
1892 }
1893 MaxGap = 0;
1894 }
1895
1896 // Try to extend the interval.
1897 if (SplitAfter >= NumGaps) {
1898 DEBUG(dbgs() << " end\n");
1899 break;
1900 }
1901
1902 DEBUG(dbgs() << " extend\n");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001903 MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001904 }
1905 }
1906
1907 // Didn't find any candidates?
1908 if (BestBefore == NumGaps)
1909 return 0;
1910
1911 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1912 << '-' << Uses[BestAfter] << ", " << BestDiff
1913 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1914
Wei Mi9a16d652016-04-13 03:08:27 +00001915 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001916 SE->reset(LREdit);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001917
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001918 SE->openIntv();
1919 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1920 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1921 SE->useIntv(SegStart, SegStop);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001922 SmallVector<unsigned, 8> IntvMap;
1923 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001924 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001925
1926 // If the new range has the same number of instructions as before, mark it as
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001927 // RS_Split2 so the next split will be forced to make progress. Otherwise,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001928 // leave the new intervals as RS_New so they can compete.
1929 bool LiveBefore = BestBefore != 0 || BI.LiveIn;
1930 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut;
1931 unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter;
1932 if (NewGaps >= NumGaps) {
1933 DEBUG(dbgs() << "Tagging non-progress ranges: ");
1934 assert(!ProgressRequired && "Didn't make progress when it was required.");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001935 for (unsigned i = 0, e = IntvMap.size(); i != e; ++i)
1936 if (IntvMap[i] == 1) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001937 setStage(LIS->getInterval(LREdit.get(i)), RS_Split2);
1938 DEBUG(dbgs() << PrintReg(LREdit.get(i)));
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001939 }
1940 DEBUG(dbgs() << '\n');
1941 }
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001942 ++NumLocalSplits;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001943
1944 return 0;
1945}
1946
1947//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001948// Live Range Splitting
1949//===----------------------------------------------------------------------===//
1950
1951/// trySplit - Try to split VirtReg or one of its interferences, making it
1952/// assignable.
1953/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1954unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001955 SmallVectorImpl<unsigned>&NewVRegs) {
Jakob Stoklund Olesend4bb1d42011-08-05 23:50:33 +00001956 // Ranges must be Split2 or less.
1957 if (getStage(VirtReg) >= RS_Spill)
1958 return 0;
1959
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001960 // Local intervals are handled separately.
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001961 if (LIS->intervalIsInOneMBB(VirtReg)) {
1962 NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001963 SA->analyze(&VirtReg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001964 unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs);
1965 if (PhysReg || !NewVRegs.empty())
1966 return PhysReg;
1967 return tryInstructionSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001968 }
1969
1970 NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001971
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001972 SA->analyze(&VirtReg);
1973
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00001974 // FIXME: SplitAnalysis may repair broken live ranges coming from the
1975 // coalescer. That may cause the range to become allocatable which means that
1976 // tryRegionSplit won't be making progress. This check should be replaced with
1977 // an assertion when the coalescer is fixed.
1978 if (SA->didRepairRange()) {
1979 // VirtReg has changed, so all cached queries are invalid.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001980 Matrix->invalidateVirtRegs();
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00001981 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1982 return PhysReg;
1983 }
1984
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001985 // First try to split around a region spanning multiple blocks. RS_Split2
1986 // ranges already made dubious progress with region splitting, so they go
1987 // straight to single block splitting.
1988 if (getStage(VirtReg) < RS_Split2) {
1989 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
1990 if (PhysReg || !NewVRegs.empty())
1991 return PhysReg;
1992 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001993
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001994 // Then isolate blocks.
1995 return tryBlockSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001996}
1997
Quentin Colombet87769712014-02-05 22:13:59 +00001998//===----------------------------------------------------------------------===//
1999// Last Chance Recoloring
2000//===----------------------------------------------------------------------===//
2001
2002/// mayRecolorAllInterferences - Check if the virtual registers that
2003/// interfere with \p VirtReg on \p PhysReg (or one of its aliases) may be
2004/// recolored to free \p PhysReg.
2005/// When true is returned, \p RecoloringCandidates has been augmented with all
2006/// the live intervals that need to be recolored in order to free \p PhysReg
2007/// for \p VirtReg.
2008/// \p FixedRegisters contains all the virtual registers that cannot be
2009/// recolored.
2010bool
2011RAGreedy::mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
2012 SmallLISet &RecoloringCandidates,
2013 const SmallVirtRegSet &FixedRegisters) {
2014 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
2015
2016 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
2017 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
2018 // If there is LastChanceRecoloringMaxInterference or more interferences,
2019 // chances are one would not be recolorable.
2020 if (Q.collectInterferingVRegs(LastChanceRecoloringMaxInterference) >=
Quentin Colombet567e30b2014-04-11 21:39:44 +00002021 LastChanceRecoloringMaxInterference && !ExhaustiveSearch) {
Quentin Colombet87769712014-02-05 22:13:59 +00002022 DEBUG(dbgs() << "Early abort: too many interferences.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002023 CutOffInfo |= CO_Interf;
Quentin Colombet87769712014-02-05 22:13:59 +00002024 return false;
2025 }
2026 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
2027 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
2028 // If Intf is done and sit on the same register class as VirtReg,
2029 // it would not be recolorable as it is in the same state as VirtReg.
2030 if ((getStage(*Intf) == RS_Done &&
2031 MRI->getRegClass(Intf->reg) == CurRC) ||
2032 FixedRegisters.count(Intf->reg)) {
2033 DEBUG(dbgs() << "Early abort: the inteference is not recolorable.\n");
2034 return false;
2035 }
2036 RecoloringCandidates.insert(Intf);
2037 }
2038 }
2039 return true;
2040}
2041
2042/// tryLastChanceRecoloring - Try to assign a color to \p VirtReg by recoloring
2043/// its interferences.
2044/// Last chance recoloring chooses a color for \p VirtReg and recolors every
2045/// virtual register that was using it. The recoloring process may recursively
2046/// use the last chance recoloring. Therefore, when a virtual register has been
2047/// assigned a color by this mechanism, it is marked as Fixed, i.e., it cannot
2048/// be last-chance-recolored again during this recoloring "session".
2049/// E.g.,
2050/// Let
2051/// vA can use {R1, R2 }
2052/// vB can use { R2, R3}
2053/// vC can use {R1 }
2054/// Where vA, vB, and vC cannot be split anymore (they are reloads for
2055/// instance) and they all interfere.
2056///
2057/// vA is assigned R1
2058/// vB is assigned R2
2059/// vC tries to evict vA but vA is already done.
2060/// Regular register allocation fails.
2061///
2062/// Last chance recoloring kicks in:
2063/// vC does as if vA was evicted => vC uses R1.
2064/// vC is marked as fixed.
2065/// vA needs to find a color.
2066/// None are available.
2067/// vA cannot evict vC: vC is a fixed virtual register now.
2068/// vA does as if vB was evicted => vA uses R2.
2069/// vB needs to find a color.
2070/// R3 is available.
2071/// Recoloring => vC = R1, vA = R2, vB = R3
2072///
Alp Toker70b36992014-02-25 04:21:15 +00002073/// \p Order defines the preferred allocation order for \p VirtReg.
Quentin Colombet87769712014-02-05 22:13:59 +00002074/// \p NewRegs will contain any new virtual register that have been created
2075/// (split, spill) during the process and that must be assigned.
2076/// \p FixedRegisters contains all the virtual registers that cannot be
2077/// recolored.
2078/// \p Depth gives the current depth of the last chance recoloring.
2079/// \return a physical register that can be used for VirtReg or ~0u if none
2080/// exists.
2081unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg,
2082 AllocationOrder &Order,
2083 SmallVectorImpl<unsigned> &NewVRegs,
2084 SmallVirtRegSet &FixedRegisters,
2085 unsigned Depth) {
2086 DEBUG(dbgs() << "Try last chance recoloring for " << VirtReg << '\n');
2087 // Ranges must be Done.
Quentin Colombet0e3b5e02014-02-13 05:17:37 +00002088 assert((getStage(VirtReg) >= RS_Done || !VirtReg.isSpillable()) &&
Quentin Colombet87769712014-02-05 22:13:59 +00002089 "Last chance recoloring should really be last chance");
2090 // Set the max depth to LastChanceRecoloringMaxDepth.
2091 // We may want to reconsider that if we end up with a too large search space
2092 // for target with hundreds of registers.
2093 // Indeed, in that case we may want to cut the search space earlier.
Quentin Colombet567e30b2014-04-11 21:39:44 +00002094 if (Depth >= LastChanceRecoloringMaxDepth && !ExhaustiveSearch) {
Quentin Colombet87769712014-02-05 22:13:59 +00002095 DEBUG(dbgs() << "Abort because max depth has been reached.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002096 CutOffInfo |= CO_Depth;
Quentin Colombet87769712014-02-05 22:13:59 +00002097 return ~0u;
2098 }
2099
2100 // Set of Live intervals that will need to be recolored.
2101 SmallLISet RecoloringCandidates;
2102 // Record the original mapping virtual register to physical register in case
2103 // the recoloring fails.
2104 DenseMap<unsigned, unsigned> VirtRegToPhysReg;
2105 // Mark VirtReg as fixed, i.e., it will not be recolored pass this point in
2106 // this recoloring "session".
2107 FixedRegisters.insert(VirtReg.reg);
Quentin Colombet318582f2016-09-16 22:00:50 +00002108 SmallVector<unsigned, 4> CurrentNewVRegs;
Quentin Colombet87769712014-02-05 22:13:59 +00002109
2110 Order.rewind();
2111 while (unsigned PhysReg = Order.next()) {
2112 DEBUG(dbgs() << "Try to assign: " << VirtReg << " to "
2113 << PrintReg(PhysReg, TRI) << '\n');
2114 RecoloringCandidates.clear();
2115 VirtRegToPhysReg.clear();
Quentin Colombet318582f2016-09-16 22:00:50 +00002116 CurrentNewVRegs.clear();
Quentin Colombet87769712014-02-05 22:13:59 +00002117
2118 // It is only possible to recolor virtual register interference.
2119 if (Matrix->checkInterference(VirtReg, PhysReg) >
2120 LiveRegMatrix::IK_VirtReg) {
2121 DEBUG(dbgs() << "Some inteferences are not with virtual registers.\n");
2122
2123 continue;
2124 }
2125
2126 // Early give up on this PhysReg if it is obvious we cannot recolor all
2127 // the interferences.
2128 if (!mayRecolorAllInterferences(PhysReg, VirtReg, RecoloringCandidates,
2129 FixedRegisters)) {
2130 DEBUG(dbgs() << "Some inteferences cannot be recolored.\n");
2131 continue;
2132 }
2133
2134 // RecoloringCandidates contains all the virtual registers that interfer
2135 // with VirtReg on PhysReg (or one of its aliases).
2136 // Enqueue them for recoloring and perform the actual recoloring.
2137 PQueue RecoloringQueue;
2138 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2139 EndIt = RecoloringCandidates.end();
2140 It != EndIt; ++It) {
2141 unsigned ItVirtReg = (*It)->reg;
2142 enqueue(RecoloringQueue, *It);
2143 assert(VRM->hasPhys(ItVirtReg) &&
2144 "Interferences are supposed to be with allocated vairables");
2145
2146 // Record the current allocation.
2147 VirtRegToPhysReg[ItVirtReg] = VRM->getPhys(ItVirtReg);
2148 // unset the related struct.
2149 Matrix->unassign(**It);
2150 }
2151
2152 // Do as if VirtReg was assigned to PhysReg so that the underlying
2153 // recoloring has the right information about the interferes and
2154 // available colors.
2155 Matrix->assign(VirtReg, PhysReg);
2156
2157 // Save the current recoloring state.
2158 // If we cannot recolor all the interferences, we will have to start again
2159 // at this point for the next physical register.
2160 SmallVirtRegSet SaveFixedRegisters(FixedRegisters);
Quentin Colombet318582f2016-09-16 22:00:50 +00002161 if (tryRecoloringCandidates(RecoloringQueue, CurrentNewVRegs,
2162 FixedRegisters, Depth)) {
2163 // Push the queued vregs into the main queue.
2164 for (unsigned NewVReg : CurrentNewVRegs)
2165 NewVRegs.push_back(NewVReg);
Quentin Colombet87769712014-02-05 22:13:59 +00002166 // Do not mess up with the global assignment process.
2167 // I.e., VirtReg must be unassigned.
2168 Matrix->unassign(VirtReg);
2169 return PhysReg;
2170 }
2171
2172 DEBUG(dbgs() << "Fail to assign: " << VirtReg << " to "
2173 << PrintReg(PhysReg, TRI) << '\n');
2174
2175 // The recoloring attempt failed, undo the changes.
2176 FixedRegisters = SaveFixedRegisters;
2177 Matrix->unassign(VirtReg);
2178
Wei Mib5cf9e52016-11-08 18:19:36 +00002179 // For a newly created vreg which is also in RecoloringCandidates,
2180 // don't add it to NewVRegs because its physical register will be restored
2181 // below. Other vregs in CurrentNewVRegs are created by calling
2182 // selectOrSplit and should be added into NewVRegs.
Quentin Colombet318582f2016-09-16 22:00:50 +00002183 for (SmallVectorImpl<unsigned>::iterator Next = CurrentNewVRegs.begin(),
2184 End = CurrentNewVRegs.end();
2185 Next != End; ++Next) {
Wei Mib5cf9e52016-11-08 18:19:36 +00002186 if (RecoloringCandidates.count(&LIS->getInterval(*Next)))
Quentin Colombet318582f2016-09-16 22:00:50 +00002187 continue;
2188 NewVRegs.push_back(*Next);
2189 }
2190
Quentin Colombet87769712014-02-05 22:13:59 +00002191 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2192 EndIt = RecoloringCandidates.end();
2193 It != EndIt; ++It) {
2194 unsigned ItVirtReg = (*It)->reg;
2195 if (VRM->hasPhys(ItVirtReg))
2196 Matrix->unassign(**It);
Matthias Braun953393a2015-07-14 17:38:17 +00002197 unsigned ItPhysReg = VirtRegToPhysReg[ItVirtReg];
2198 Matrix->assign(**It, ItPhysReg);
Quentin Colombet87769712014-02-05 22:13:59 +00002199 }
2200 }
2201
2202 // Last chance recoloring did not worked either, give up.
2203 return ~0u;
2204}
2205
2206/// tryRecoloringCandidates - Try to assign a new color to every register
2207/// in \RecoloringQueue.
2208/// \p NewRegs will contain any new virtual register created during the
2209/// recoloring process.
2210/// \p FixedRegisters[in/out] contains all the registers that have been
2211/// recolored.
2212/// \return true if all virtual registers in RecoloringQueue were successfully
2213/// recolored, false otherwise.
2214bool RAGreedy::tryRecoloringCandidates(PQueue &RecoloringQueue,
2215 SmallVectorImpl<unsigned> &NewVRegs,
2216 SmallVirtRegSet &FixedRegisters,
2217 unsigned Depth) {
2218 while (!RecoloringQueue.empty()) {
2219 LiveInterval *LI = dequeue(RecoloringQueue);
2220 DEBUG(dbgs() << "Try to recolor: " << *LI << '\n');
2221 unsigned PhysReg;
2222 PhysReg = selectOrSplitImpl(*LI, NewVRegs, FixedRegisters, Depth + 1);
Quentin Colombet52ffa672016-10-13 19:27:48 +00002223 // When splitting happens, the live-range may actually be empty.
2224 // In that case, this is okay to continue the recoloring even
2225 // if we did not find an alternative color for it. Indeed,
2226 // there will not be anything to color for LI in the end.
2227 if (PhysReg == ~0u || (!PhysReg && !LI->empty()))
Quentin Colombet87769712014-02-05 22:13:59 +00002228 return false;
Quentin Colombet52ffa672016-10-13 19:27:48 +00002229
2230 if (!PhysReg) {
2231 assert(LI->empty() && "Only empty live-range do not require a register");
2232 DEBUG(dbgs() << "Recoloring of " << *LI << " succeeded. Empty LI.\n");
2233 continue;
2234 }
Quentin Colombet87769712014-02-05 22:13:59 +00002235 DEBUG(dbgs() << "Recoloring of " << *LI
2236 << " succeeded with: " << PrintReg(PhysReg, TRI) << '\n');
Quentin Colombet52ffa672016-10-13 19:27:48 +00002237
Quentin Colombet87769712014-02-05 22:13:59 +00002238 Matrix->assign(*LI, PhysReg);
2239 FixedRegisters.insert(LI->reg);
2240 }
2241 return true;
2242}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002243
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002244//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002245// Main Entry Point
2246//===----------------------------------------------------------------------===//
2247
2248unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +00002249 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002250 CutOffInfo = CO_None;
2251 LLVMContext &Ctx = MF->getFunction()->getContext();
Quentin Colombet87769712014-02-05 22:13:59 +00002252 SmallVirtRegSet FixedRegisters;
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002253 unsigned Reg = selectOrSplitImpl(VirtReg, NewVRegs, FixedRegisters);
2254 if (Reg == ~0U && (CutOffInfo != CO_None)) {
2255 uint8_t CutOffEncountered = CutOffInfo & (CO_Depth | CO_Interf);
2256 if (CutOffEncountered == CO_Depth)
Quentin Colombet567e30b2014-04-11 21:39:44 +00002257 Ctx.emitError("register allocation failed: maximum depth for recoloring "
2258 "reached. Use -fexhaustive-register-search to skip "
2259 "cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002260 else if (CutOffEncountered == CO_Interf)
2261 Ctx.emitError("register allocation failed: maximum interference for "
Quentin Colombet567e30b2014-04-11 21:39:44 +00002262 "recoloring reached. Use -fexhaustive-register-search "
2263 "to skip cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002264 else if (CutOffEncountered == (CO_Depth | CO_Interf))
2265 Ctx.emitError("register allocation failed: maximum interference and "
Quentin Colombet567e30b2014-04-11 21:39:44 +00002266 "depth for recoloring reached. Use "
2267 "-fexhaustive-register-search to skip cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002268 }
2269 return Reg;
Quentin Colombet87769712014-02-05 22:13:59 +00002270}
2271
Manman Ren9dee4492014-03-27 21:21:57 +00002272/// Using a CSR for the first time has a cost because it causes push|pop
2273/// to be added to prologue|epilogue. Splitting a cold section of the live
2274/// range can have lower cost than using the CSR for the first time;
2275/// Spilling a live range in the cold path can have lower cost than using
2276/// the CSR for the first time. Returns the physical register if we decide
2277/// to use the CSR; otherwise return 0.
2278unsigned RAGreedy::tryAssignCSRFirstTime(LiveInterval &VirtReg,
2279 AllocationOrder &Order,
2280 unsigned PhysReg,
2281 unsigned &CostPerUseLimit,
2282 SmallVectorImpl<unsigned> &NewVRegs) {
Manman Ren9dee4492014-03-27 21:21:57 +00002283 if (getStage(VirtReg) == RS_Spill && VirtReg.isSpillable()) {
2284 // We choose spill over using the CSR for the first time if the spill cost
2285 // is lower than CSRCost.
2286 SA->analyze(&VirtReg);
2287 if (calcSpillCost() >= CSRCost)
2288 return PhysReg;
2289
2290 // We are going to spill, set CostPerUseLimit to 1 to make sure that
2291 // we will not use a callee-saved register in tryEvict.
2292 CostPerUseLimit = 1;
2293 return 0;
2294 }
2295 if (getStage(VirtReg) < RS_Split) {
2296 // We choose pre-splitting over using the CSR for the first time if
2297 // the cost of splitting is lower than CSRCost.
2298 SA->analyze(&VirtReg);
2299 unsigned NumCands = 0;
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002300 BlockFrequency BestCost = CSRCost; // Don't modify CSRCost.
2301 unsigned BestCand = calculateRegionSplitCost(VirtReg, Order, BestCost,
2302 NumCands, true /*IgnoreCSR*/);
Manman Ren9dee4492014-03-27 21:21:57 +00002303 if (BestCand == NoCand)
2304 // Use the CSR if we can't find a region split below CSRCost.
2305 return PhysReg;
2306
2307 // Perform the actual pre-splitting.
2308 doRegionSplit(VirtReg, BestCand, false/*HasCompact*/, NewVRegs);
2309 return 0;
2310 }
2311 return PhysReg;
2312}
2313
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002314void RAGreedy::aboutToRemoveInterval(LiveInterval &LI) {
2315 // Do not keep invalid information around.
2316 SetOfBrokenHints.remove(&LI);
2317}
2318
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002319void RAGreedy::initializeCSRCost() {
2320 // We use the larger one out of the command-line option and the value report
2321 // by TRI.
2322 CSRCost = BlockFrequency(
2323 std::max((unsigned)CSRFirstTimeCost, TRI->getCSRFirstUseCost()));
2324 if (!CSRCost.getFrequency())
2325 return;
2326
2327 // Raw cost is relative to Entry == 2^14; scale it appropriately.
2328 uint64_t ActualEntry = MBFI->getEntryFreq();
2329 if (!ActualEntry) {
2330 CSRCost = 0;
2331 return;
2332 }
2333 uint64_t FixedEntry = 1 << 14;
2334 if (ActualEntry < FixedEntry)
2335 CSRCost *= BranchProbability(ActualEntry, FixedEntry);
2336 else if (ActualEntry <= UINT32_MAX)
2337 // Invert the fraction and divide.
2338 CSRCost /= BranchProbability(FixedEntry, ActualEntry);
2339 else
2340 // Can't use BranchProbability in general, since it takes 32-bit numbers.
2341 CSRCost = CSRCost.getFrequency() * (ActualEntry / FixedEntry);
2342}
2343
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002344/// \brief Collect the hint info for \p Reg.
2345/// The results are stored into \p Out.
2346/// \p Out is not cleared before being populated.
2347void RAGreedy::collectHintInfo(unsigned Reg, HintsInfo &Out) {
2348 for (const MachineInstr &Instr : MRI->reg_nodbg_instructions(Reg)) {
2349 if (!Instr.isFullCopy())
2350 continue;
2351 // Look for the other end of the copy.
2352 unsigned OtherReg = Instr.getOperand(0).getReg();
2353 if (OtherReg == Reg) {
2354 OtherReg = Instr.getOperand(1).getReg();
2355 if (OtherReg == Reg)
2356 continue;
2357 }
2358 // Get the current assignment.
2359 unsigned OtherPhysReg = TargetRegisterInfo::isPhysicalRegister(OtherReg)
2360 ? OtherReg
2361 : VRM->getPhys(OtherReg);
2362 // Push the collected information.
2363 Out.push_back(HintInfo(MBFI->getBlockFreq(Instr.getParent()), OtherReg,
2364 OtherPhysReg));
2365 }
2366}
2367
2368/// \brief Using the given \p List, compute the cost of the broken hints if
2369/// \p PhysReg was used.
2370/// \return The cost of \p List for \p PhysReg.
2371BlockFrequency RAGreedy::getBrokenHintFreq(const HintsInfo &List,
2372 unsigned PhysReg) {
2373 BlockFrequency Cost = 0;
2374 for (const HintInfo &Info : List) {
2375 if (Info.PhysReg != PhysReg)
2376 Cost += Info.Freq;
2377 }
2378 return Cost;
2379}
2380
2381/// \brief Using the register assigned to \p VirtReg, try to recolor
2382/// all the live ranges that are copy-related with \p VirtReg.
2383/// The recoloring is then propagated to all the live-ranges that have
2384/// been recolored and so on, until no more copies can be coalesced or
2385/// it is not profitable.
2386/// For a given live range, profitability is determined by the sum of the
2387/// frequencies of the non-identity copies it would introduce with the old
2388/// and new register.
2389void RAGreedy::tryHintRecoloring(LiveInterval &VirtReg) {
2390 // We have a broken hint, check if it is possible to fix it by
2391 // reusing PhysReg for the copy-related live-ranges. Indeed, we evicted
2392 // some register and PhysReg may be available for the other live-ranges.
2393 SmallSet<unsigned, 4> Visited;
2394 SmallVector<unsigned, 2> RecoloringCandidates;
2395 HintsInfo Info;
2396 unsigned Reg = VirtReg.reg;
2397 unsigned PhysReg = VRM->getPhys(Reg);
2398 // Start the recoloring algorithm from the input live-interval, then
2399 // it will propagate to the ones that are copy-related with it.
2400 Visited.insert(Reg);
2401 RecoloringCandidates.push_back(Reg);
2402
2403 DEBUG(dbgs() << "Trying to reconcile hints for: " << PrintReg(Reg, TRI) << '('
2404 << PrintReg(PhysReg, TRI) << ")\n");
2405
2406 do {
2407 Reg = RecoloringCandidates.pop_back_val();
2408
2409 // We cannot recolor physcal register.
2410 if (TargetRegisterInfo::isPhysicalRegister(Reg))
2411 continue;
2412
2413 assert(VRM->hasPhys(Reg) && "We have unallocated variable!!");
2414
2415 // Get the live interval mapped with this virtual register to be able
2416 // to check for the interference with the new color.
2417 LiveInterval &LI = LIS->getInterval(Reg);
2418 unsigned CurrPhys = VRM->getPhys(Reg);
2419 // Check that the new color matches the register class constraints and
2420 // that it is free for this live range.
2421 if (CurrPhys != PhysReg && (!MRI->getRegClass(Reg)->contains(PhysReg) ||
2422 Matrix->checkInterference(LI, PhysReg)))
2423 continue;
2424
2425 DEBUG(dbgs() << PrintReg(Reg, TRI) << '(' << PrintReg(CurrPhys, TRI)
2426 << ") is recolorable.\n");
2427
2428 // Gather the hint info.
2429 Info.clear();
2430 collectHintInfo(Reg, Info);
2431 // Check if recoloring the live-range will increase the cost of the
2432 // non-identity copies.
2433 if (CurrPhys != PhysReg) {
2434 DEBUG(dbgs() << "Checking profitability:\n");
2435 BlockFrequency OldCopiesCost = getBrokenHintFreq(Info, CurrPhys);
2436 BlockFrequency NewCopiesCost = getBrokenHintFreq(Info, PhysReg);
2437 DEBUG(dbgs() << "Old Cost: " << OldCopiesCost.getFrequency()
2438 << "\nNew Cost: " << NewCopiesCost.getFrequency() << '\n');
2439 if (OldCopiesCost < NewCopiesCost) {
2440 DEBUG(dbgs() << "=> Not profitable.\n");
2441 continue;
2442 }
2443 // At this point, the cost is either cheaper or equal. If it is
2444 // equal, we consider this is profitable because it may expose
2445 // more recoloring opportunities.
2446 DEBUG(dbgs() << "=> Profitable.\n");
2447 // Recolor the live-range.
2448 Matrix->unassign(LI);
2449 Matrix->assign(LI, PhysReg);
2450 }
2451 // Push all copy-related live-ranges to keep reconciling the broken
2452 // hints.
2453 for (const HintInfo &HI : Info) {
2454 if (Visited.insert(HI.Reg).second)
2455 RecoloringCandidates.push_back(HI.Reg);
2456 }
2457 } while (!RecoloringCandidates.empty());
2458}
2459
2460/// \brief Try to recolor broken hints.
2461/// Broken hints may be repaired by recoloring when an evicted variable
2462/// freed up a register for a larger live-range.
2463/// Consider the following example:
2464/// BB1:
2465/// a =
2466/// b =
2467/// BB2:
2468/// ...
2469/// = b
2470/// = a
2471/// Let us assume b gets split:
2472/// BB1:
2473/// a =
2474/// b =
2475/// BB2:
2476/// c = b
2477/// ...
2478/// d = c
2479/// = d
2480/// = a
2481/// Because of how the allocation work, b, c, and d may be assigned different
2482/// colors. Now, if a gets evicted later:
2483/// BB1:
2484/// a =
2485/// st a, SpillSlot
2486/// b =
2487/// BB2:
2488/// c = b
2489/// ...
2490/// d = c
2491/// = d
2492/// e = ld SpillSlot
2493/// = e
2494/// This is likely that we can assign the same register for b, c, and d,
2495/// getting rid of 2 copies.
2496void RAGreedy::tryHintsRecoloring() {
2497 for (LiveInterval *LI : SetOfBrokenHints) {
2498 assert(TargetRegisterInfo::isVirtualRegister(LI->reg) &&
2499 "Recoloring is possible only for virtual registers");
2500 // Some dead defs may be around (e.g., because of debug uses).
2501 // Ignore those.
2502 if (!VRM->hasPhys(LI->reg))
2503 continue;
2504 tryHintRecoloring(*LI);
2505 }
2506}
2507
Quentin Colombet87769712014-02-05 22:13:59 +00002508unsigned RAGreedy::selectOrSplitImpl(LiveInterval &VirtReg,
2509 SmallVectorImpl<unsigned> &NewVRegs,
2510 SmallVirtRegSet &FixedRegisters,
2511 unsigned Depth) {
Manman Ren78cf02a2014-03-25 00:16:25 +00002512 unsigned CostPerUseLimit = ~0u;
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002513 // First try assigning a free register.
Matthias Braun5d1f12d2015-07-15 22:16:00 +00002514 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo, Matrix);
Manman Ren78cf02a2014-03-25 00:16:25 +00002515 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) {
Manman Ren9dee4492014-03-27 21:21:57 +00002516 // When NewVRegs is not empty, we may have made decisions such as evicting
2517 // a virtual register, go with the earlier decisions and use the physical
2518 // register.
Matthias Braun953393a2015-07-14 17:38:17 +00002519 if (CSRCost.getFrequency() && isUnusedCalleeSavedReg(PhysReg) &&
2520 NewVRegs.empty()) {
Manman Ren9dee4492014-03-27 21:21:57 +00002521 unsigned CSRReg = tryAssignCSRFirstTime(VirtReg, Order, PhysReg,
2522 CostPerUseLimit, NewVRegs);
2523 if (CSRReg || !NewVRegs.empty())
2524 // Return now if we decide to use a CSR or create new vregs due to
2525 // pre-splitting.
2526 return CSRReg;
Manman Ren78cf02a2014-03-25 00:16:25 +00002527 } else
2528 return PhysReg;
2529 }
Andrew Trickccef0982010-12-09 18:15:21 +00002530
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002531 LiveRangeStage Stage = getStage(VirtReg);
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002532 DEBUG(dbgs() << StageName[Stage]
2533 << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n');
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002534
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002535 // Try to evict a less worthy live range, but only for ranges from the primary
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002536 // queue. The RS_Split ranges already failed to do this, and they should not
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002537 // get a second chance until they have been split.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002538 if (Stage != RS_Split)
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002539 if (unsigned PhysReg =
2540 tryEvict(VirtReg, Order, NewVRegs, CostPerUseLimit)) {
2541 unsigned Hint = MRI->getSimpleHint(VirtReg.reg);
2542 // If VirtReg has a hint and that hint is broken record this
2543 // virtual register as a recoloring candidate for broken hint.
2544 // Indeed, since we evicted a variable in its neighborhood it is
2545 // likely we can at least partially recolor some of the
2546 // copy-related live-ranges.
2547 if (Hint && Hint != PhysReg)
2548 SetOfBrokenHints.insert(&VirtReg);
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002549 return PhysReg;
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002550 }
Andrew Trickccef0982010-12-09 18:15:21 +00002551
Quentin Colombet63176862016-09-16 22:00:42 +00002552 assert((NewVRegs.empty() || Depth) && "Cannot append to existing NewVRegs");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002553
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002554 // The first time we see a live range, don't try to split or spill.
2555 // Wait until the second time, when all smaller ranges have been allocated.
2556 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002557 if (Stage < RS_Split) {
2558 setStage(VirtReg, RS_Split);
Jakob Stoklund Olesen86985072011-03-19 23:02:47 +00002559 DEBUG(dbgs() << "wait for second round\n");
Mark Laceyf9ea8852013-08-14 23:50:04 +00002560 NewVRegs.push_back(VirtReg.reg);
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002561 return 0;
2562 }
2563
Dylan McKayc328fe52016-10-11 01:04:36 +00002564 if (Stage < RS_Spill) {
2565 // Try splitting VirtReg or interferences.
2566 unsigned NewVRegSizeBefore = NewVRegs.size();
2567 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
2568 if (PhysReg || (NewVRegs.size() - NewVRegSizeBefore))
2569 return PhysReg;
2570 }
2571
Jakob Stoklund Olesena5c88992011-05-06 21:58:30 +00002572 // If we couldn't allocate a register from spilling, there is probably some
2573 // invalid inline assembly. The base class wil report it.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002574 if (Stage >= RS_Done || !VirtReg.isSpillable())
Quentin Colombet87769712014-02-05 22:13:59 +00002575 return tryLastChanceRecoloring(VirtReg, Order, NewVRegs, FixedRegisters,
2576 Depth);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00002577
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002578 // Finally spill VirtReg itself.
Quentin Colombet11922942015-07-17 23:04:06 +00002579 if (EnableDeferredSpilling && getStage(VirtReg) < RS_Memory) {
2580 // TODO: This is experimental and in particular, we do not model
2581 // the live range splitting done by spilling correctly.
2582 // We would need a deep integration with the spiller to do the
2583 // right thing here. Anyway, that is still good for early testing.
2584 setStage(VirtReg, RS_Memory);
2585 DEBUG(dbgs() << "Do as if this register is in memory\n");
2586 NewVRegs.push_back(VirtReg.reg);
2587 } else {
2588 NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
Wei Mi9a16d652016-04-13 03:08:27 +00002589 LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Quentin Colombet11922942015-07-17 23:04:06 +00002590 spiller().spill(LRE);
2591 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done);
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002592
Quentin Colombet11922942015-07-17 23:04:06 +00002593 if (VerifyEnabled)
2594 MF->verify(this, "After spilling");
2595 }
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +00002596
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002597 // The live virtual register requesting allocation was spilled, so tell
2598 // the caller not to allocate anything during this round.
2599 return 0;
2600}
2601
2602bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
2603 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
David Blaikiec8c29202012-08-22 17:18:53 +00002604 << "********** Function: " << mf.getName() << '\n');
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002605
2606 MF = &mf;
Eric Christopher60621802014-10-14 07:22:00 +00002607 TRI = MF->getSubtarget().getRegisterInfo();
2608 TII = MF->getSubtarget().getInstrInfo();
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00002609 RCI.runOnMachineFunction(mf);
Quentin Colombet5caa6a22014-07-02 18:32:04 +00002610
2611 EnableLocalReassign = EnableLocalReassignment ||
Eric Christopher60621802014-10-14 07:22:00 +00002612 MF->getSubtarget().enableRALocalReassignment(
2613 MF->getTarget().getOptLevel());
Quentin Colombet5caa6a22014-07-02 18:32:04 +00002614
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002615 if (VerifyEnabled)
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +00002616 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002617
Jakob Stoklund Olesen2d2dec92012-06-20 22:52:29 +00002618 RegAllocBase::init(getAnalysis<VirtRegMap>(),
2619 getAnalysis<LiveIntervals>(),
2620 getAnalysis<LiveRegMatrix>());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002621 Indexes = &getAnalysis<SlotIndexes>();
Benjamin Kramere2a1d892013-06-17 19:00:36 +00002622 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +00002623 DomTree = &getAnalysis<MachineDominatorTree>();
Jakob Stoklund Olesenadecb5e2010-12-10 22:54:44 +00002624 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002625 Loops = &getAnalysis<MachineLoopInfo>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002626 Bundles = &getAnalysis<EdgeBundles>();
2627 SpillPlacer = &getAnalysis<SpillPlacement>();
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00002628 DebugVars = &getAnalysis<LiveDebugVariables>();
Wei Mic0223702016-07-08 21:08:09 +00002629 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002630
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002631 initializeCSRCost();
2632
Robert Lougher11a44b72015-08-10 11:59:44 +00002633 calculateSpillWeightsAndHints(*LIS, mf, VRM, *Loops, *MBFI);
Arnaud A. de Grandmaison760c1e02013-11-10 17:46:31 +00002634
Andrew Trick97064962013-07-25 07:26:26 +00002635 DEBUG(LIS->dump());
2636
Jakob Stoklund Olesenf1a60a62011-02-19 00:53:42 +00002637 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Wei Mic0223702016-07-08 21:08:09 +00002638 SE.reset(new SplitEditor(*SA, *AA, *LIS, *VRM, *DomTree, *MBFI));
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002639 ExtraRegInfo.clear();
2640 ExtraRegInfo.resize(MRI->getNumVirtRegs());
2641 NextCascade = 1;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00002642 IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00002643 GlobalCand.resize(32); // This will grow as needed.
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002644 SetOfBrokenHints.clear();
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002645
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002646 allocatePhysRegs();
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002647 tryHintsRecoloring();
Wei Mi9a16d652016-04-13 03:08:27 +00002648 postOptimization();
2649
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002650 releaseMemory();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002651 return true;
2652}