blob: 01753ceb01709eb317ace47d8491d8d962ab4918 [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"
Adam Nemeta9640662017-01-25 23:20:33 +000032#include "llvm/CodeGen/MachineFrameInfo.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000033#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000034#include "llvm/CodeGen/MachineLoopInfo.h"
Adam Nemeta9640662017-01-25 23:20:33 +000035#include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000036#include "llvm/CodeGen/MachineRegisterInfo.h"
Wei Mi9a16d652016-04-13 03:08:27 +000037#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000038#include "llvm/CodeGen/RegAllocRegistry.h"
Quentin Colombet1fb3362a2014-01-02 22:47:22 +000039#include "llvm/CodeGen/RegisterClassInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000040#include "llvm/CodeGen/VirtRegMap.h"
Quentin Colombet96bd2a12014-04-04 02:05:21 +000041#include "llvm/IR/LLVMContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000042#include "llvm/PassAnalysisSupport.h"
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +000043#include "llvm/Support/BranchProbability.h"
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +000044#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000045#include "llvm/Support/Debug.h"
46#include "llvm/Support/ErrorHandling.h"
Jakob Stoklund Olesen92da7052010-12-11 00:19:56 +000047#include "llvm/Support/Timer.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000048#include "llvm/Support/raw_ostream.h"
Wei Mi9a16d652016-04-13 03:08:27 +000049#include "llvm/Target/TargetInstrInfo.h"
Quentin Colombet5caa6a22014-07-02 18:32:04 +000050#include "llvm/Target/TargetSubtargetInfo.h"
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +000051#include <queue>
52
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000053using namespace llvm;
54
Chandler Carruth1b9dde02014-04-22 02:02:50 +000055#define DEBUG_TYPE "regalloc"
56
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000057STATISTIC(NumGlobalSplits, "Number of split global live ranges");
58STATISTIC(NumLocalSplits, "Number of split local live ranges");
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000059STATISTIC(NumEvicted, "Number of interferences evicted");
60
Wei Mi9a16d652016-04-13 03:08:27 +000061static cl::opt<SplitEditor::ComplementSpillMode> SplitSpillMode(
62 "split-spill-mode", cl::Hidden,
63 cl::desc("Spill mode for splitting live ranges"),
64 cl::values(clEnumValN(SplitEditor::SM_Partition, "default", "Default"),
65 clEnumValN(SplitEditor::SM_Size, "size", "Optimize for size"),
Mehdi Amini732afdd2016-10-08 19:41:06 +000066 clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed")),
Wei Mi9a16d652016-04-13 03:08:27 +000067 cl::init(SplitEditor::SM_Speed));
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +000068
Quentin Colombet87769712014-02-05 22:13:59 +000069static cl::opt<unsigned>
70LastChanceRecoloringMaxDepth("lcr-max-depth", cl::Hidden,
71 cl::desc("Last chance recoloring max depth"),
72 cl::init(5));
73
74static cl::opt<unsigned> LastChanceRecoloringMaxInterference(
75 "lcr-max-interf", cl::Hidden,
76 cl::desc("Last chance recoloring maximum number of considered"
77 " interference at a time"),
78 cl::init(8));
79
Quentin Colombet567e30b2014-04-11 21:39:44 +000080static cl::opt<bool>
Quentin Colombet4344da12014-04-11 21:51:09 +000081ExhaustiveSearch("exhaustive-register-search", cl::NotHidden,
Quentin Colombet567e30b2014-04-11 21:39:44 +000082 cl::desc("Exhaustive Search for registers bypassing the depth "
83 "and interference cutoffs of last chance recoloring"));
84
Quentin Colombete1a36632014-07-01 14:08:37 +000085static cl::opt<bool> EnableLocalReassignment(
86 "enable-local-reassign", cl::Hidden,
87 cl::desc("Local reassignment can yield better allocation decisions, but "
88 "may be compile time intensive"),
Quentin Colombet5caa6a22014-07-02 18:32:04 +000089 cl::init(false));
Quentin Colombete1a36632014-07-01 14:08:37 +000090
Quentin Colombet11922942015-07-17 23:04:06 +000091static cl::opt<bool> EnableDeferredSpilling(
92 "enable-deferred-spilling", cl::Hidden,
93 cl::desc("Instead of spilling a variable right away, defer the actual "
94 "code insertion to the end of the allocation. That way the "
95 "allocator might still find a suitable coloring for this "
96 "variable because of other evicted variables."),
97 cl::init(false));
98
Manman Ren78cf02a2014-03-25 00:16:25 +000099// FIXME: Find a good default for this flag and remove the flag.
100static cl::opt<unsigned>
101CSRFirstTimeCost("regalloc-csr-first-time-cost",
102 cl::desc("Cost for first time use of callee-saved register."),
103 cl::init(0), cl::Hidden);
104
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000105static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
106 createGreedyRegisterAllocator);
107
108namespace {
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000109class RAGreedy : public MachineFunctionPass,
110 public RegAllocBase,
111 private LiveRangeEdit::Delegate {
Quentin Colombet87769712014-02-05 22:13:59 +0000112 // Convenient shortcuts.
113 typedef std::priority_queue<std::pair<unsigned, unsigned> > PQueue;
114 typedef SmallPtrSet<LiveInterval *, 4> SmallLISet;
115 typedef SmallSet<unsigned, 16> SmallVirtRegSet;
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000116
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000117 // context
118 MachineFunction *MF;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000119
Quentin Colombet1fb3362a2014-01-02 22:47:22 +0000120 // Shortcuts to some useful interface.
121 const TargetInstrInfo *TII;
122 const TargetRegisterInfo *TRI;
123 RegisterClassInfo RCI;
124
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000125 // analyses
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000126 SlotIndexes *Indexes;
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000127 MachineBlockFrequencyInfo *MBFI;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000128 MachineDominatorTree *DomTree;
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +0000129 MachineLoopInfo *Loops;
Adam Nemeta9640662017-01-25 23:20:33 +0000130 MachineOptimizationRemarkEmitter *ORE;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000131 EdgeBundles *Bundles;
132 SpillPlacement *SpillPlacer;
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000133 LiveDebugVariables *DebugVars;
Wei Mic0223702016-07-08 21:08:09 +0000134 AliasAnalysis *AA;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000135
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000136 // state
Ahmed Charles56440fd2014-03-06 05:51:42 +0000137 std::unique_ptr<Spiller> SpillerInstance;
Quentin Colombet87769712014-02-05 22:13:59 +0000138 PQueue Queue;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000139 unsigned NextCascade;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000140
141 // Live ranges pass through a number of stages as we try to allocate them.
142 // Some of the stages may also create new live ranges:
143 //
144 // - Region splitting.
145 // - Per-block splitting.
146 // - Local splitting.
147 // - Spilling.
148 //
149 // Ranges produced by one of the stages skip the previous stages when they are
150 // dequeued. This improves performance because we can skip interference checks
151 // that are unlikely to give any results. It also guarantees that the live
152 // range splitting algorithm terminates, something that is otherwise hard to
153 // ensure.
154 enum LiveRangeStage {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000155 /// Newly created live range that has never been queued.
156 RS_New,
157
158 /// Only attempt assignment and eviction. Then requeue as RS_Split.
159 RS_Assign,
160
161 /// Attempt live range splitting if assignment is impossible.
162 RS_Split,
163
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000164 /// Attempt more aggressive live range splitting that is guaranteed to make
165 /// progress. This is used for split products that may not be making
166 /// progress.
167 RS_Split2,
168
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000169 /// Live range will be spilled. No more splitting will be attempted.
170 RS_Spill,
171
Quentin Colombet11922942015-07-17 23:04:06 +0000172
173 /// Live range is in memory. Because of other evictions, it might get moved
174 /// in a register in the end.
175 RS_Memory,
176
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000177 /// There is nothing more we can do to this live range. Abort compilation
178 /// if it can't be assigned.
179 RS_Done
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000180 };
181
Quentin Colombet96bd2a12014-04-04 02:05:21 +0000182 // Enum CutOffStage to keep a track whether the register allocation failed
183 // because of the cutoffs encountered in last chance recoloring.
184 // Note: This is used as bitmask. New value should be next power of 2.
185 enum CutOffStage {
186 // No cutoffs encountered
187 CO_None = 0,
188
189 // lcr-max-depth cutoff encountered
190 CO_Depth = 1,
191
192 // lcr-max-interf cutoff encountered
193 CO_Interf = 2
194 };
195
196 uint8_t CutOffInfo;
197
Eli Friedman78bffa52013-09-10 23:18:14 +0000198#ifndef NDEBUG
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000199 static const char *const StageName[];
Eli Friedman78bffa52013-09-10 23:18:14 +0000200#endif
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000201
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000202 // RegInfo - Keep additional information about each live range.
203 struct RegInfo {
204 LiveRangeStage Stage;
205
206 // Cascade - Eviction loop prevention. See canEvictInterference().
207 unsigned Cascade;
208
209 RegInfo() : Stage(RS_New), Cascade(0) {}
210 };
211
212 IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000213
214 LiveRangeStage getStage(const LiveInterval &VirtReg) const {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000215 return ExtraRegInfo[VirtReg.reg].Stage;
216 }
217
218 void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) {
219 ExtraRegInfo.resize(MRI->getNumVirtRegs());
220 ExtraRegInfo[VirtReg.reg].Stage = Stage;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000221 }
222
223 template<typename Iterator>
224 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000225 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000226 for (;Begin != End; ++Begin) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000227 unsigned Reg = *Begin;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000228 if (ExtraRegInfo[Reg].Stage == RS_New)
229 ExtraRegInfo[Reg].Stage = NewStage;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000230 }
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000231 }
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000232
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000233 /// Cost of evicting interference.
234 struct EvictionCost {
235 unsigned BrokenHints; ///< Total number of broken hints.
236 float MaxWeight; ///< Maximum spill weight evicted.
237
Andrew Trick3621b8a2013-11-22 19:07:38 +0000238 EvictionCost(): BrokenHints(0), MaxWeight(0) {}
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000239
Andrew Trick84852572013-07-25 18:35:14 +0000240 bool isMax() const { return BrokenHints == ~0u; }
241
Andrew Trick3621b8a2013-11-22 19:07:38 +0000242 void setMax() { BrokenHints = ~0u; }
243
244 void setBrokenHints(unsigned NHints) { BrokenHints = NHints; }
245
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000246 bool operator<(const EvictionCost &O) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +0000247 return std::tie(BrokenHints, MaxWeight) <
248 std::tie(O.BrokenHints, O.MaxWeight);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000249 }
250 };
251
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000252 // splitting state.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000253 std::unique_ptr<SplitAnalysis> SA;
254 std::unique_ptr<SplitEditor> SE;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000255
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000256 /// Cached per-block interference maps
257 InterferenceCache IntfCache;
258
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000259 /// All basic blocks where the current register has uses.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000260 SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000261
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000262 /// Global live range splitting candidate info.
263 struct GlobalSplitCandidate {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000264 // Register intended for assignment, or 0.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000265 unsigned PhysReg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000266
267 // SplitKit interval index for this candidate.
268 unsigned IntvIdx;
269
270 // Interference for PhysReg.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000271 InterferenceCache::Cursor Intf;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000272
273 // Bundles where this candidate should be live.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000274 BitVector LiveBundles;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000275 SmallVector<unsigned, 8> ActiveBlocks;
276
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000277 void reset(InterferenceCache &Cache, unsigned Reg) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000278 PhysReg = Reg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000279 IntvIdx = 0;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000280 Intf.setPhysReg(Cache, Reg);
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000281 LiveBundles.clear();
282 ActiveBlocks.clear();
283 }
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000284
285 // Set B[i] = C for every live bundle where B[i] was NoCand.
286 unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) {
287 unsigned Count = 0;
288 for (int i = LiveBundles.find_first(); i >= 0;
289 i = LiveBundles.find_next(i))
290 if (B[i] == NoCand) {
291 B[i] = C;
292 Count++;
293 }
294 return Count;
295 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000296 };
297
Aditya Nandakumarc1fd0dd2013-11-19 23:51:32 +0000298 /// Candidate info for each PhysReg in AllocationOrder.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000299 /// This vector never shrinks, but grows to the size of the largest register
300 /// class.
301 SmallVector<GlobalSplitCandidate, 32> GlobalCand;
302
Alp Toker61007d82014-03-02 03:20:38 +0000303 enum : unsigned { NoCand = ~0u };
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000304
305 /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to
306 /// NoCand which indicates the stack interval.
307 SmallVector<unsigned, 32> BundleCand;
308
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +0000309 /// Callee-save register cost, calculated once per machine function.
310 BlockFrequency CSRCost;
311
Quentin Colombet5caa6a22014-07-02 18:32:04 +0000312 /// Run or not the local reassignment heuristic. This information is
313 /// obtained from the TargetSubtargetInfo.
314 bool EnableLocalReassign;
315
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000316 /// Set of broken hints that may be reconciled later because of eviction.
317 SmallSetVector<LiveInterval *, 8> SetOfBrokenHints;
318
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000319public:
320 RAGreedy();
321
322 /// Return the pass name.
Mehdi Amini117296c2016-10-01 02:56:57 +0000323 StringRef getPassName() const override { return "Greedy Register Allocator"; }
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000324
325 /// RAGreedy analysis usage.
Craig Topper4584cd52014-03-07 09:26:03 +0000326 void getAnalysisUsage(AnalysisUsage &AU) const override;
327 void releaseMemory() override;
328 Spiller &spiller() override { return *SpillerInstance; }
329 void enqueue(LiveInterval *LI) override;
330 LiveInterval *dequeue() override;
331 unsigned selectOrSplit(LiveInterval&, SmallVectorImpl<unsigned>&) override;
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000332 void aboutToRemoveInterval(LiveInterval &) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000333
334 /// Perform register allocation.
Craig Topper4584cd52014-03-07 09:26:03 +0000335 bool runOnMachineFunction(MachineFunction &mf) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000336
Matthias Braun90799ce2016-08-23 21:19:49 +0000337 MachineFunctionProperties getRequiredProperties() const override {
338 return MachineFunctionProperties().set(
339 MachineFunctionProperties::Property::NoPHIs);
340 }
341
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000342 static char ID;
Andrew Trickccef0982010-12-09 18:15:21 +0000343
344private:
Quentin Colombet87769712014-02-05 22:13:59 +0000345 unsigned selectOrSplitImpl(LiveInterval &, SmallVectorImpl<unsigned> &,
346 SmallVirtRegSet &, unsigned = 0);
347
Craig Topper4584cd52014-03-07 09:26:03 +0000348 bool LRE_CanEraseVirtReg(unsigned) override;
349 void LRE_WillShrinkVirtReg(unsigned) override;
350 void LRE_DidCloneVirtReg(unsigned, unsigned) override;
Quentin Colombet87769712014-02-05 22:13:59 +0000351 void enqueue(PQueue &CurQueue, LiveInterval *LI);
352 LiveInterval *dequeue(PQueue &CurQueue);
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000353
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000354 BlockFrequency calcSpillCost();
355 bool addSplitConstraints(InterferenceCache::Cursor, BlockFrequency&);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000356 void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>);
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000357 void growRegion(GlobalSplitCandidate &Cand);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000358 BlockFrequency calcGlobalSplitCost(GlobalSplitCandidate&);
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +0000359 bool calcCompactRegion(GlobalSplitCandidate&);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000360 void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000361 void calcGapWeights(unsigned, SmallVectorImpl<float>&);
Andrew Trick8bb0a252013-07-25 18:35:19 +0000362 unsigned canReassign(LiveInterval &VirtReg, unsigned PhysReg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000363 bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool);
364 bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&);
365 void evictInterference(LiveInterval&, unsigned,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000366 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000367 bool mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
368 SmallLISet &RecoloringCandidates,
369 const SmallVirtRegSet &FixedRegisters);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000370
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000371 unsigned tryAssign(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000372 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000373 unsigned tryEvict(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000374 SmallVectorImpl<unsigned>&, unsigned = ~0u);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000375 unsigned tryRegionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000376 SmallVectorImpl<unsigned>&);
Manman Ren9db66b32014-03-24 23:23:42 +0000377 /// Calculate cost of region splitting.
378 unsigned calculateRegionSplitCost(LiveInterval &VirtReg,
379 AllocationOrder &Order,
380 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +0000381 unsigned &NumCands, bool IgnoreCSR);
Manman Ren9db66b32014-03-24 23:23:42 +0000382 /// Perform region splitting.
383 unsigned doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
384 bool HasCompact,
385 SmallVectorImpl<unsigned> &NewVRegs);
Manman Ren9dee4492014-03-27 21:21:57 +0000386 /// Check other options before using a callee-saved register for the first
387 /// time.
388 unsigned tryAssignCSRFirstTime(LiveInterval &VirtReg, AllocationOrder &Order,
389 unsigned PhysReg, unsigned &CostPerUseLimit,
390 SmallVectorImpl<unsigned> &NewVRegs);
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +0000391 void initializeCSRCost();
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +0000392 unsigned tryBlockSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000393 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +0000394 unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000395 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000396 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000397 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000398 unsigned trySplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000399 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000400 unsigned tryLastChanceRecoloring(LiveInterval &, AllocationOrder &,
401 SmallVectorImpl<unsigned> &,
402 SmallVirtRegSet &, unsigned);
403 bool tryRecoloringCandidates(PQueue &, SmallVectorImpl<unsigned> &,
404 SmallVirtRegSet &, unsigned);
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000405 void tryHintRecoloring(LiveInterval &);
406 void tryHintsRecoloring();
407
408 /// Model the information carried by one end of a copy.
409 struct HintInfo {
410 /// The frequency of the copy.
411 BlockFrequency Freq;
412 /// The virtual register or physical register.
413 unsigned Reg;
414 /// Its currently assigned register.
415 /// In case of a physical register Reg == PhysReg.
416 unsigned PhysReg;
417 HintInfo(BlockFrequency Freq, unsigned Reg, unsigned PhysReg)
418 : Freq(Freq), Reg(Reg), PhysReg(PhysReg) {}
419 };
420 typedef SmallVector<HintInfo, 4> HintsInfo;
421 BlockFrequency getBrokenHintFreq(const HintsInfo &, unsigned);
422 void collectHintInfo(unsigned, HintsInfo &);
Matthias Braun953393a2015-07-14 17:38:17 +0000423
424 bool isUnusedCalleeSavedReg(unsigned PhysReg) const;
Adam Nemeta9640662017-01-25 23:20:33 +0000425
426 /// Compute and report the number of spills and reloads for a loop.
427 void reportNumberOfSplillsReloads(MachineLoop *L, unsigned &Reloads,
428 unsigned &FoldedReloads, unsigned &Spills,
429 unsigned &FoldedSpills);
430
431 /// Report the number of spills and reloads for each loop.
432 void reportNumberOfSplillsReloads() {
433 for (MachineLoop *L : *Loops) {
434 unsigned Reloads, FoldedReloads, Spills, FoldedSpills;
435 reportNumberOfSplillsReloads(L, Reloads, FoldedReloads, Spills,
436 FoldedSpills);
437 }
438 }
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000439};
440} // end anonymous namespace
441
442char RAGreedy::ID = 0;
Tom Stellard11e60ff2016-11-14 21:50:13 +0000443char &llvm::RAGreedyID = RAGreedy::ID;
444
445INITIALIZE_PASS_BEGIN(RAGreedy, "greedy",
446 "Greedy Register Allocator", false, false)
447INITIALIZE_PASS_DEPENDENCY(LiveDebugVariables)
448INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
449INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
450INITIALIZE_PASS_DEPENDENCY(RegisterCoalescer)
451INITIALIZE_PASS_DEPENDENCY(MachineScheduler)
452INITIALIZE_PASS_DEPENDENCY(LiveStacks)
453INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
454INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
455INITIALIZE_PASS_DEPENDENCY(VirtRegMap)
456INITIALIZE_PASS_DEPENDENCY(LiveRegMatrix)
457INITIALIZE_PASS_DEPENDENCY(EdgeBundles)
458INITIALIZE_PASS_DEPENDENCY(SpillPlacement)
Adam Nemeta9640662017-01-25 23:20:33 +0000459INITIALIZE_PASS_DEPENDENCY(MachineOptimizationRemarkEmitterPass)
Tom Stellard11e60ff2016-11-14 21:50:13 +0000460INITIALIZE_PASS_END(RAGreedy, "greedy",
461 "Greedy Register Allocator", false, false)
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000462
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000463#ifndef NDEBUG
464const char *const RAGreedy::StageName[] = {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000465 "RS_New",
466 "RS_Assign",
467 "RS_Split",
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000468 "RS_Split2",
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000469 "RS_Spill",
Quentin Colombet11922942015-07-17 23:04:06 +0000470 "RS_Memory",
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000471 "RS_Done"
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000472};
473#endif
474
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000475// Hysteresis to use when comparing floats.
476// This helps stabilize decisions based on float comparisons.
NAKAMURA Takumia71003a2014-02-04 06:29:38 +0000477const float Hysteresis = (2007 / 2048.0f); // 0.97998046875
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000478
479
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000480FunctionPass* llvm::createGreedyRegisterAllocator() {
481 return new RAGreedy();
482}
483
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000484RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000485}
486
487void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
488 AU.setPreservesCFG();
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000489 AU.addRequired<MachineBlockFrequencyInfo>();
490 AU.addPreserved<MachineBlockFrequencyInfo>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000491 AU.addRequired<AAResultsWrapperPass>();
492 AU.addPreserved<AAResultsWrapperPass>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000493 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesen12243122012-06-08 23:44:45 +0000494 AU.addPreserved<LiveIntervals>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000495 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000496 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000497 AU.addRequired<LiveDebugVariables>();
498 AU.addPreserved<LiveDebugVariables>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000499 AU.addRequired<LiveStacks>();
500 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000501 AU.addRequired<MachineDominatorTree>();
502 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000503 AU.addRequired<MachineLoopInfo>();
504 AU.addPreserved<MachineLoopInfo>();
505 AU.addRequired<VirtRegMap>();
506 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000507 AU.addRequired<LiveRegMatrix>();
508 AU.addPreserved<LiveRegMatrix>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000509 AU.addRequired<EdgeBundles>();
510 AU.addRequired<SpillPlacement>();
Adam Nemeta9640662017-01-25 23:20:33 +0000511 AU.addRequired<MachineOptimizationRemarkEmitterPass>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000512 MachineFunctionPass::getAnalysisUsage(AU);
513}
514
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000515
516//===----------------------------------------------------------------------===//
517// LiveRangeEdit delegate methods
518//===----------------------------------------------------------------------===//
519
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000520bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000521 if (VRM->hasPhys(VirtReg)) {
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000522 LiveInterval &LI = LIS->getInterval(VirtReg);
523 Matrix->unassign(LI);
524 aboutToRemoveInterval(LI);
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000525 return true;
526 }
527 // Unassigned virtreg is probably in the priority queue.
528 // RegAllocBase will erase it after dequeueing.
529 return false;
530}
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000531
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000532void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000533 if (!VRM->hasPhys(VirtReg))
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000534 return;
535
536 // Register is assigned, put it back on the queue for reassignment.
537 LiveInterval &LI = LIS->getInterval(VirtReg);
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000538 Matrix->unassign(LI);
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000539 enqueue(&LI);
540}
541
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000542void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
Jakob Stoklund Olesen811b9c42011-09-14 17:34:37 +0000543 // Cloning a register we haven't even heard about yet? Just ignore it.
544 if (!ExtraRegInfo.inBounds(Old))
545 return;
546
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000547 // LRE may clone a virtual register because dead code elimination causes it to
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000548 // be split into connected components. The new components are much smaller
549 // than the original, so they should get a new chance at being assigned.
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000550 // same stage as the parent.
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000551 ExtraRegInfo[Old].Stage = RS_Assign;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000552 ExtraRegInfo.grow(New);
553 ExtraRegInfo[New] = ExtraRegInfo[Old];
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000554}
555
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000556void RAGreedy::releaseMemory() {
David Blaikieb61064e2014-07-19 01:05:11 +0000557 SpillerInstance.reset();
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000558 ExtraRegInfo.clear();
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000559 GlobalCand.clear();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000560}
561
Quentin Colombet87769712014-02-05 22:13:59 +0000562void RAGreedy::enqueue(LiveInterval *LI) { enqueue(Queue, LI); }
563
564void RAGreedy::enqueue(PQueue &CurQueue, LiveInterval *LI) {
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000565 // Prioritize live ranges by size, assigning larger ranges first.
566 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000567 const unsigned Size = LI->getSize();
568 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000569 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
570 "Can only enqueue virtual registers");
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000571 unsigned Prio;
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000572
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000573 ExtraRegInfo.grow(Reg);
574 if (ExtraRegInfo[Reg].Stage == RS_New)
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000575 ExtraRegInfo[Reg].Stage = RS_Assign;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000576
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000577 if (ExtraRegInfo[Reg].Stage == RS_Split) {
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000578 // Unsplit ranges that couldn't be allocated immediately are deferred until
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +0000579 // everything else has been allocated.
580 Prio = Size;
Quentin Colombet11922942015-07-17 23:04:06 +0000581 } else if (ExtraRegInfo[Reg].Stage == RS_Memory) {
582 // Memory operand should be considered last.
583 // Change the priority such that Memory operand are assigned in
584 // the reverse order that they came in.
585 // TODO: Make this a member variable and probably do something about hints.
586 static unsigned MemOp = 0;
587 Prio = MemOp++;
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000588 } else {
Andrew Trick52a00932014-02-26 22:07:26 +0000589 // Giant live ranges fall back to the global assignment heuristic, which
590 // prevents excessive spilling in pathological cases.
591 bool ReverseLocal = TRI->reverseLocalAssignment();
Matthias Brauna354cdd2015-03-31 19:57:53 +0000592 const TargetRegisterClass &RC = *MRI->getRegClass(Reg);
Renato Golin4e31ae12014-10-03 12:20:53 +0000593 bool ForceGlobal = !ReverseLocal &&
Matthias Brauna354cdd2015-03-31 19:57:53 +0000594 (Size / SlotIndex::InstrDist) > (2 * RC.getNumRegs());
Andrew Trick52a00932014-02-26 22:07:26 +0000595
596 if (ExtraRegInfo[Reg].Stage == RS_Assign && !ForceGlobal && !LI->empty() &&
Andrew Trick84852572013-07-25 18:35:14 +0000597 LIS->intervalIsInOneMBB(*LI)) {
598 // Allocate original local ranges in linear instruction order. Since they
599 // are singly defined, this produces optimal coloring in the absence of
600 // global interference and other constraints.
Andrew Trick52a00932014-02-26 22:07:26 +0000601 if (!ReverseLocal)
Andrew Trick2d8826a2013-12-11 03:40:15 +0000602 Prio = LI->beginIndex().getInstrDistance(Indexes->getLastIndex());
603 else {
604 // Allocating bottom up may allow many short LRGs to be assigned first
605 // to one of the cheap registers. This could be much faster for very
606 // large blocks on targets with many physical registers.
Matthias Braunf5f89b92015-03-31 19:57:49 +0000607 Prio = Indexes->getZeroIndex().getInstrDistance(LI->endIndex());
Andrew Trick2d8826a2013-12-11 03:40:15 +0000608 }
Matthias Brauna354cdd2015-03-31 19:57:53 +0000609 Prio |= RC.AllocationPriority << 24;
610 } else {
Andrew Trick84852572013-07-25 18:35:14 +0000611 // Allocate global and split ranges in long->short order. Long ranges that
612 // don't fit should be spilled (or split) ASAP so they don't create
613 // interference. Mark a bit to prioritize global above local ranges.
614 Prio = (1u << 29) + Size;
615 }
616 // Mark a higher bit to prioritize global and local above RS_Split.
617 Prio |= (1u << 31);
Jakob Stoklund Olesenb51f65c2011-02-23 00:56:56 +0000618
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000619 // Boost ranges that have a physical register hint.
Jakob Stoklund Olesen74052b02012-12-03 23:23:50 +0000620 if (VRM->hasKnownPreference(Reg))
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000621 Prio |= (1u << 30);
622 }
Andrew Trickf4b1ee32013-07-25 18:35:22 +0000623 // The virtual register number is a tie breaker for same-sized ranges.
624 // Give lower vreg numbers higher priority to assign them first.
Quentin Colombet87769712014-02-05 22:13:59 +0000625 CurQueue.push(std::make_pair(Prio, ~Reg));
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000626}
627
Quentin Colombet87769712014-02-05 22:13:59 +0000628LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); }
629
630LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) {
631 if (CurQueue.empty())
Craig Topperc0196b12014-04-14 00:51:57 +0000632 return nullptr;
Quentin Colombet87769712014-02-05 22:13:59 +0000633 LiveInterval *LI = &LIS->getInterval(~CurQueue.top().second);
634 CurQueue.pop();
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000635 return LI;
636}
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000637
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000638
639//===----------------------------------------------------------------------===//
640// Direct Assignment
641//===----------------------------------------------------------------------===//
642
643/// tryAssign - Try to assign VirtReg to an available register.
644unsigned RAGreedy::tryAssign(LiveInterval &VirtReg,
645 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000646 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000647 Order.rewind();
648 unsigned PhysReg;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000649 while ((PhysReg = Order.next()))
650 if (!Matrix->checkInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000651 break;
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000652 if (!PhysReg || Order.isHint())
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000653 return PhysReg;
654
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000655 // PhysReg is available, but there may be a better choice.
656
657 // If we missed a simple hint, try to cheaply evict interference from the
658 // preferred register.
659 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg))
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000660 if (Order.isHint(Hint)) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000661 DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n');
Andrew Trick3621b8a2013-11-22 19:07:38 +0000662 EvictionCost MaxCost;
663 MaxCost.setBrokenHints(1);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000664 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
665 evictInterference(VirtReg, Hint, NewVRegs);
666 return Hint;
667 }
Quentin Colombetfb9b0cd2016-11-16 01:07:12 +0000668 // Record the missed hint, we may be able to recover
669 // at the end if the surrounding allocation changed.
670 SetOfBrokenHints.insert(&VirtReg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000671 }
672
673 // Try to evict interference from a cheaper alternative.
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000674 unsigned Cost = TRI->getCostPerUse(PhysReg);
675
676 // Most registers have 0 additional cost.
677 if (!Cost)
678 return PhysReg;
679
680 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost
681 << '\n');
682 unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost);
683 return CheapReg ? CheapReg : PhysReg;
684}
685
686
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000687//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000688// Interference eviction
689//===----------------------------------------------------------------------===//
690
Andrew Trick8bb0a252013-07-25 18:35:19 +0000691unsigned RAGreedy::canReassign(LiveInterval &VirtReg, unsigned PrevReg) {
Matthias Braun5d1f12d2015-07-15 22:16:00 +0000692 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo, Matrix);
Andrew Trick8bb0a252013-07-25 18:35:19 +0000693 unsigned PhysReg;
694 while ((PhysReg = Order.next())) {
695 if (PhysReg == PrevReg)
696 continue;
697
698 MCRegUnitIterator Units(PhysReg, TRI);
699 for (; Units.isValid(); ++Units) {
700 // Instantiate a "subquery", not to be confused with the Queries array.
701 LiveIntervalUnion::Query subQ(&VirtReg, &Matrix->getLiveUnions()[*Units]);
702 if (subQ.checkInterference())
703 break;
704 }
705 // If no units have interference, break out with the current PhysReg.
706 if (!Units.isValid())
707 break;
708 }
709 if (PhysReg)
710 DEBUG(dbgs() << "can reassign: " << VirtReg << " from "
711 << PrintReg(PrevReg, TRI) << " to " << PrintReg(PhysReg, TRI)
712 << '\n');
713 return PhysReg;
714}
715
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000716/// shouldEvict - determine if A should evict the assigned live range B. The
717/// eviction policy defined by this function together with the allocation order
718/// defined by enqueue() decides which registers ultimately end up being split
719/// and spilled.
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000720///
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000721/// Cascade numbers are used to prevent infinite loops if this function is a
722/// cyclic relation.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000723///
724/// @param A The live range to be assigned.
725/// @param IsHint True when A is about to be assigned to its preferred
726/// register.
727/// @param B The live range to be evicted.
728/// @param BreaksHint True when B is already assigned to its preferred register.
729bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint,
730 LiveInterval &B, bool BreaksHint) {
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000731 bool CanSplit = getStage(B) < RS_Spill;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000732
733 // Be fairly aggressive about following hints as long as the evictee can be
734 // split.
735 if (CanSplit && IsHint && !BreaksHint)
736 return true;
737
Andrew Trick059e8002013-11-22 19:07:42 +0000738 if (A.weight > B.weight) {
739 DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight << '\n');
740 return true;
741 }
742 return false;
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000743}
744
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000745/// canEvictInterference - Return true if all interferences between VirtReg and
Manman Renfa32ca12014-02-25 19:47:15 +0000746/// PhysReg can be evicted.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000747///
748/// @param VirtReg Live range that is about to be assigned.
749/// @param PhysReg Desired register for assignment.
Dmitri Gribenko881929c2012-09-12 16:59:47 +0000750/// @param IsHint True when PhysReg is VirtReg's preferred register.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000751/// @param MaxCost Only look for cheaper candidates and update with new cost
752/// when returning true.
753/// @returns True when interference can be evicted cheaper than MaxCost.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000754bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000755 bool IsHint, EvictionCost &MaxCost) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000756 // It is only possible to evict virtual register interference.
757 if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg)
758 return false;
759
Andrew Trick84852572013-07-25 18:35:14 +0000760 bool IsLocal = LIS->intervalIsInOneMBB(VirtReg);
761
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000762 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
763 // involved in an eviction before. If a cascade number was assigned, deny
764 // evicting anything with the same or a newer cascade number. This prevents
765 // infinite eviction loops.
766 //
767 // This works out so a register without a cascade number is allowed to evict
768 // anything, and it can be evicted by anything.
769 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
770 if (!Cascade)
771 Cascade = NextCascade;
772
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000773 EvictionCost Cost;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000774 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
775 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000776 // If there is 10 or more interferences, chances are one is heavier.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000777 if (Q.collectInterferingVRegs(10) >= 10)
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000778 return false;
779
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000780 // Check if any interfering live range is heavier than MaxWeight.
781 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
782 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000783 assert(TargetRegisterInfo::isVirtualRegister(Intf->reg) &&
784 "Only expecting virtual register interference from query");
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000785 // Never evict spill products. They cannot split or spill.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000786 if (getStage(*Intf) == RS_Done)
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000787 return false;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000788 // Once a live range becomes small enough, it is urgent that we find a
789 // register for it. This is indicated by an infinite spill weight. These
790 // urgent live ranges get to evict almost anything.
Jakob Stoklund Olesen05e22452012-05-30 21:46:58 +0000791 //
792 // Also allow urgent evictions of unspillable ranges from a strictly
793 // larger allocation order.
794 bool Urgent = !VirtReg.isSpillable() &&
795 (Intf->isSpillable() ||
796 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(VirtReg.reg)) <
797 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(Intf->reg)));
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000798 // Only evict older cascades or live ranges without a cascade.
799 unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade;
800 if (Cascade <= IntfCascade) {
801 if (!Urgent)
802 return false;
803 // We permit breaking cascades for urgent evictions. It should be the
804 // last resort, though, so make it really expensive.
805 Cost.BrokenHints += 10;
806 }
807 // Would this break a satisfied hint?
808 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg);
809 // Update eviction cost.
810 Cost.BrokenHints += BreaksHint;
811 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
812 // Abort if this would be too expensive.
813 if (!(Cost < MaxCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000814 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000815 if (Urgent)
816 continue;
Andrew Trickc2ab53a2013-11-29 23:49:38 +0000817 // Apply the eviction policy for non-urgent evictions.
818 if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
819 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000820 // If !MaxCost.isMax(), then we're just looking for a cheap register.
821 // Evicting another local live range in this case could lead to suboptimal
822 // coloring.
Andrew Trick8bb0a252013-07-25 18:35:19 +0000823 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) &&
Quentin Colombet5caa6a22014-07-02 18:32:04 +0000824 (!EnableLocalReassign || !canReassign(*Intf, PhysReg))) {
Andrew Trick84852572013-07-25 18:35:14 +0000825 return false;
Andrew Trick8bb0a252013-07-25 18:35:19 +0000826 }
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000827 }
828 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000829 MaxCost = Cost;
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000830 return true;
831}
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000832
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000833/// evictInterference - Evict any interferring registers that prevent VirtReg
834/// from being assigned to Physreg. This assumes that canEvictInterference
835/// returned true.
836void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000837 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000838 // Make sure that VirtReg has a cascade number, and assign that cascade
839 // number to every evicted register. These live ranges than then only be
840 // evicted by a newer cascade, preventing infinite loops.
841 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
842 if (!Cascade)
843 Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++;
844
845 DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI)
846 << " interference: Cascade " << Cascade << '\n');
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000847
848 // Collect all interfering virtregs first.
849 SmallVector<LiveInterval*, 8> Intfs;
850 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
851 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000852 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000853 ArrayRef<LiveInterval*> IVR = Q.interferingVRegs();
854 Intfs.append(IVR.begin(), IVR.end());
855 }
856
857 // Evict them second. This will invalidate the queries.
858 for (unsigned i = 0, e = Intfs.size(); i != e; ++i) {
859 LiveInterval *Intf = Intfs[i];
860 // The same VirtReg may be present in multiple RegUnits. Skip duplicates.
861 if (!VRM->hasPhys(Intf->reg))
862 continue;
863 Matrix->unassign(*Intf);
864 assert((ExtraRegInfo[Intf->reg].Cascade < Cascade ||
865 VirtReg.isSpillable() < Intf->isSpillable()) &&
866 "Cannot decrease cascade number, illegal eviction");
867 ExtraRegInfo[Intf->reg].Cascade = Cascade;
868 ++NumEvicted;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000869 NewVRegs.push_back(Intf->reg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000870 }
871}
872
Matthias Braun953393a2015-07-14 17:38:17 +0000873/// Returns true if the given \p PhysReg is a callee saved register and has not
874/// been used for allocation yet.
875bool RAGreedy::isUnusedCalleeSavedReg(unsigned PhysReg) const {
876 unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg);
877 if (CSR == 0)
878 return false;
879
880 return !Matrix->isPhysRegUsed(PhysReg);
881}
882
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000883/// tryEvict - Try to evict all interferences for a physreg.
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +0000884/// @param VirtReg Currently unassigned virtual register.
885/// @param Order Physregs to try.
886/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000887unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
888 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000889 SmallVectorImpl<unsigned> &NewVRegs,
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000890 unsigned CostPerUseLimit) {
Matthias Braun9f15a792016-11-18 19:43:18 +0000891 NamedRegionTimer T("evict", "Evict", TimerGroupName, TimerGroupDescription,
892 TimePassesIsEnabled);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000893
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000894 // Keep track of the cheapest interference seen so far.
Andrew Trick3621b8a2013-11-22 19:07:38 +0000895 EvictionCost BestCost;
896 BestCost.setMax();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000897 unsigned BestPhys = 0;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000898 unsigned OrderLimit = Order.getOrder().size();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000899
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000900 // When we are just looking for a reduced cost per use, don't break any
901 // hints, and only evict smaller spill weights.
902 if (CostPerUseLimit < ~0u) {
903 BestCost.BrokenHints = 0;
904 BestCost.MaxWeight = VirtReg.weight;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000905
906 // Check of any registers in RC are below CostPerUseLimit.
907 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg.reg);
908 unsigned MinCost = RegClassInfo.getMinCost(RC);
909 if (MinCost >= CostPerUseLimit) {
Craig Toppercf0444b2014-11-17 05:50:14 +0000910 DEBUG(dbgs() << TRI->getRegClassName(RC) << " minimum cost = " << MinCost
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000911 << ", no cheaper registers to be found.\n");
912 return 0;
913 }
914
915 // It is normal for register classes to have a long tail of registers with
916 // the same cost. We don't need to look at them if they're too expensive.
917 if (TRI->getCostPerUse(Order.getOrder().back()) >= CostPerUseLimit) {
918 OrderLimit = RegClassInfo.getLastCostChange(RC);
919 DEBUG(dbgs() << "Only trying the first " << OrderLimit << " regs.\n");
920 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000921 }
922
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000923 Order.rewind();
Aditya Nandakumar73f3d332013-12-05 21:18:40 +0000924 while (unsigned PhysReg = Order.next(OrderLimit)) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000925 if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit)
926 continue;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000927 // The first use of a callee-saved register in a function has cost 1.
928 // Don't start using a CSR when the CostPerUseLimit is low.
Matthias Braun953393a2015-07-14 17:38:17 +0000929 if (CostPerUseLimit == 1 && isUnusedCalleeSavedReg(PhysReg)) {
930 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
931 << PrintReg(RegClassInfo.getLastCalleeSavedAlias(PhysReg), TRI)
932 << '\n');
933 continue;
934 }
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000935
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000936 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000937 continue;
938
939 // Best so far.
940 BestPhys = PhysReg;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000941
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000942 // Stop if the hint can be used.
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000943 if (Order.isHint())
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000944 break;
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000945 }
946
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000947 if (!BestPhys)
948 return 0;
949
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000950 evictInterference(VirtReg, BestPhys, NewVRegs);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000951 return BestPhys;
Andrew Trickccef0982010-12-09 18:15:21 +0000952}
953
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000954
955//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000956// Region Splitting
957//===----------------------------------------------------------------------===//
958
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000959/// addSplitConstraints - Fill out the SplitConstraints vector based on the
960/// interference pattern in Physreg and its aliases. Add the constraints to
961/// SpillPlacement and return the static cost of this split in Cost, assuming
962/// that all preferences in SplitConstraints are met.
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000963/// Return false if there are no bundles with positive bias.
964bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf,
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000965 BlockFrequency &Cost) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000966 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000967
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000968 // Reset interference dependent info.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000969 SplitConstraints.resize(UseBlocks.size());
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000970 BlockFrequency StaticCost = 0;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000971 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
972 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000973 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000974
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000975 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000976 Intf.moveToBlock(BC.Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000977 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
978 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
David Blaikie041f1aa2013-05-15 07:36:59 +0000979 BC.ChangesValue = BI.FirstDef.isValid();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000980
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000981 if (!Intf.hasInterference())
982 continue;
983
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000984 // Number of spill code instructions to insert.
985 unsigned Ins = 0;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000986
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000987 // Interference for the live-in value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000988 if (BI.LiveIn) {
Richard Trieu7a083812016-02-18 22:09:30 +0000989 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number)) {
990 BC.Entry = SpillPlacement::MustSpill;
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000991 ++Ins;
Richard Trieu7a083812016-02-18 22:09:30 +0000992 } else if (Intf.first() < BI.FirstInstr) {
993 BC.Entry = SpillPlacement::PrefSpill;
994 ++Ins;
995 } else if (Intf.first() < BI.LastInstr) {
996 ++Ins;
997 }
Jakob Stoklund Olesenf248b202011-02-08 23:02:58 +0000998 }
999
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001000 // Interference for the live-out value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +00001001 if (BI.LiveOut) {
Richard Trieu7a083812016-02-18 22:09:30 +00001002 if (Intf.last() >= SA->getLastSplitPoint(BC.Number)) {
1003 BC.Exit = SpillPlacement::MustSpill;
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001004 ++Ins;
Richard Trieu7a083812016-02-18 22:09:30 +00001005 } else if (Intf.last() > BI.LastInstr) {
1006 BC.Exit = SpillPlacement::PrefSpill;
1007 ++Ins;
1008 } else if (Intf.last() > BI.FirstInstr) {
1009 ++Ins;
1010 }
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001011 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001012
1013 // Accumulate the total frequency of inserted spill code.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001014 while (Ins--)
1015 StaticCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001016 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001017 Cost = StaticCost;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001018
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001019 // Add constraints for use-blocks. Note that these are the only constraints
1020 // that may add a positive bias, it is downhill from here.
1021 SpillPlacer->addConstraints(SplitConstraints);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001022 return SpillPlacer->scanActiveBundles();
1023}
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001024
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001025
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001026/// addThroughConstraints - Add constraints and links to SpillPlacer from the
1027/// live-through blocks in Blocks.
1028void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf,
1029 ArrayRef<unsigned> Blocks) {
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001030 const unsigned GroupSize = 8;
1031 SpillPlacement::BlockConstraint BCS[GroupSize];
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001032 unsigned TBS[GroupSize];
1033 unsigned B = 0, T = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001034
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001035 for (unsigned i = 0; i != Blocks.size(); ++i) {
1036 unsigned Number = Blocks[i];
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001037 Intf.moveToBlock(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001038
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001039 if (!Intf.hasInterference()) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001040 assert(T < GroupSize && "Array overflow");
1041 TBS[T] = Number;
1042 if (++T == GroupSize) {
Frits van Bommel717d7ed2011-07-18 12:00:32 +00001043 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001044 T = 0;
1045 }
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001046 continue;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001047 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001048
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001049 assert(B < GroupSize && "Array overflow");
1050 BCS[B].Number = Number;
1051
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +00001052 // Interference for the live-in value.
1053 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
1054 BCS[B].Entry = SpillPlacement::MustSpill;
1055 else
1056 BCS[B].Entry = SpillPlacement::PrefSpill;
1057
1058 // Interference for the live-out value.
1059 if (Intf.last() >= SA->getLastSplitPoint(Number))
1060 BCS[B].Exit = SpillPlacement::MustSpill;
1061 else
1062 BCS[B].Exit = SpillPlacement::PrefSpill;
1063
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001064 if (++B == GroupSize) {
Craig Toppere1d12942014-08-27 05:25:25 +00001065 SpillPlacer->addConstraints(makeArrayRef(BCS, B));
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001066 B = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001067 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001068 }
1069
Craig Toppere1d12942014-08-27 05:25:25 +00001070 SpillPlacer->addConstraints(makeArrayRef(BCS, B));
Frits van Bommel717d7ed2011-07-18 12:00:32 +00001071 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001072}
1073
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001074void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001075 // Keep track of through blocks that have not been added to SpillPlacer.
1076 BitVector Todo = SA->getThroughBlocks();
1077 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks;
1078 unsigned AddedTo = 0;
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001079#ifndef NDEBUG
1080 unsigned Visited = 0;
1081#endif
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001082
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001083 for (;;) {
1084 ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive();
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001085 // Find new through blocks in the periphery of PrefRegBundles.
1086 for (int i = 0, e = NewBundles.size(); i != e; ++i) {
1087 unsigned Bundle = NewBundles[i];
1088 // Look at all blocks connected to Bundle in the full graph.
1089 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
1090 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
1091 I != E; ++I) {
1092 unsigned Block = *I;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001093 if (!Todo.test(Block))
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001094 continue;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001095 Todo.reset(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001096 // This is a new through block. Add it to SpillPlacer later.
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001097 ActiveBlocks.push_back(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001098#ifndef NDEBUG
1099 ++Visited;
1100#endif
1101 }
1102 }
1103 // Any new blocks to add?
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001104 if (ActiveBlocks.size() == AddedTo)
1105 break;
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +00001106
1107 // Compute through constraints from the interference, or assume that all
1108 // through blocks prefer spilling when forming compact regions.
Craig Toppere1d12942014-08-27 05:25:25 +00001109 auto NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +00001110 if (Cand.PhysReg)
1111 addThroughConstraints(Cand.Intf, NewBlocks);
1112 else
Jakob Stoklund Olesen86954522011-08-03 23:09:38 +00001113 // Provide a strong negative bias on through blocks to prevent unwanted
1114 // liveness on loop backedges.
1115 SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true);
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001116 AddedTo = ActiveBlocks.size();
1117
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001118 // Perhaps iterating can enable more bundles?
1119 SpillPlacer->iterate();
1120 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001121 DEBUG(dbgs() << ", v=" << Visited);
1122}
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001123
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001124/// calcCompactRegion - Compute the set of edge bundles that should be live
1125/// when splitting the current live range into compact regions. Compact
1126/// regions can be computed without looking at interference. They are the
1127/// regions formed by removing all the live-through blocks from the live range.
1128///
1129/// Returns false if the current live range is already compact, or if the
1130/// compact regions would form single block regions anyway.
1131bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) {
1132 // Without any through blocks, the live range is already compact.
1133 if (!SA->getNumThroughBlocks())
1134 return false;
1135
1136 // Compact regions don't correspond to any physreg.
1137 Cand.reset(IntfCache, 0);
1138
1139 DEBUG(dbgs() << "Compact region bundles");
1140
1141 // Use the spill placer to determine the live bundles. GrowRegion pretends
1142 // that all the through blocks have interference when PhysReg is unset.
1143 SpillPlacer->prepare(Cand.LiveBundles);
1144
1145 // The static split cost will be zero since Cand.Intf reports no interference.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001146 BlockFrequency Cost;
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001147 if (!addSplitConstraints(Cand.Intf, Cost)) {
1148 DEBUG(dbgs() << ", none.\n");
1149 return false;
1150 }
1151
1152 growRegion(Cand);
1153 SpillPlacer->finish();
1154
1155 if (!Cand.LiveBundles.any()) {
1156 DEBUG(dbgs() << ", none.\n");
1157 return false;
1158 }
1159
1160 DEBUG({
1161 for (int i = Cand.LiveBundles.find_first(); i>=0;
1162 i = Cand.LiveBundles.find_next(i))
1163 dbgs() << " EB#" << i;
1164 dbgs() << ".\n";
1165 });
1166 return true;
1167}
1168
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001169/// calcSpillCost - Compute how expensive it would be to split the live range in
1170/// SA around all use blocks instead of forming bundle regions.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001171BlockFrequency RAGreedy::calcSpillCost() {
1172 BlockFrequency Cost = 0;
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001173 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1174 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1175 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1176 unsigned Number = BI.MBB->getNumber();
1177 // We normally only need one spill instruction - a load or a store.
1178 Cost += SpillPlacer->getBlockFrequency(Number);
1179
1180 // Unless the value is redefined in the block.
Jakob Stoklund Olesen3c145052011-08-02 23:04:08 +00001181 if (BI.LiveIn && BI.LiveOut && BI.FirstDef)
1182 Cost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001183 }
1184 return Cost;
1185}
1186
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001187/// calcGlobalSplitCost - Return the global split cost of following the split
1188/// pattern in LiveBundles. This cost should be added to the local cost of the
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001189/// interference pattern in SplitConstraints.
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001190///
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001191BlockFrequency RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) {
1192 BlockFrequency GlobalCost = 0;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001193 const BitVector &LiveBundles = Cand.LiveBundles;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001194 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1195 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1196 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001197 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001198 bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)];
1199 bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)];
1200 unsigned Ins = 0;
1201
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001202 if (BI.LiveIn)
1203 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
1204 if (BI.LiveOut)
1205 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001206 while (Ins--)
1207 GlobalCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001208 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001209
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001210 for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) {
1211 unsigned Number = Cand.ActiveBlocks[i];
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001212 bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)];
1213 bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)];
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001214 if (!RegIn && !RegOut)
1215 continue;
1216 if (RegIn && RegOut) {
1217 // We need double spill code if this block has interference.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001218 Cand.Intf.moveToBlock(Number);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001219 if (Cand.Intf.hasInterference()) {
1220 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1221 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1222 }
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001223 continue;
1224 }
1225 // live-in / stack-out or stack-in live-out.
1226 GlobalCost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001227 }
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001228 return GlobalCost;
1229}
1230
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001231/// splitAroundRegion - Split the current live range around the regions
1232/// determined by BundleCand and GlobalCand.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001233///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001234/// Before calling this function, GlobalCand and BundleCand must be initialized
1235/// so each bundle is assigned to a valid candidate, or NoCand for the
1236/// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor
1237/// objects must be initialized for the current live range, and intervals
1238/// created for the used candidates.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001239///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001240/// @param LREdit The LiveRangeEdit object handling the current split.
1241/// @param UsedCands List of used GlobalCand entries. Every BundleCand value
1242/// must appear in this list.
1243void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit,
1244 ArrayRef<unsigned> UsedCands) {
1245 // These are the intervals created for new global ranges. We may create more
1246 // intervals for local ranges.
1247 const unsigned NumGlobalIntvs = LREdit.size();
1248 DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n");
1249 assert(NumGlobalIntvs && "No global intervals configured");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001250
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001251 // Isolate even single instructions when dealing with a proper sub-class.
Jakob Stoklund Olesen22f37a12011-08-06 18:20:24 +00001252 // That guarantees register class inflation for the stack interval because it
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001253 // is all copies.
1254 unsigned Reg = SA->getParent().reg;
1255 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
1256
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001257 // First handle all the blocks with uses.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001258 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1259 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1260 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001261 unsigned Number = BI.MBB->getNumber();
1262 unsigned IntvIn = 0, IntvOut = 0;
1263 SlotIndex IntfIn, IntfOut;
1264 if (BI.LiveIn) {
1265 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1266 if (CandIn != NoCand) {
1267 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1268 IntvIn = Cand.IntvIdx;
1269 Cand.Intf.moveToBlock(Number);
1270 IntfIn = Cand.Intf.first();
1271 }
1272 }
1273 if (BI.LiveOut) {
1274 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1275 if (CandOut != NoCand) {
1276 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1277 IntvOut = Cand.IntvIdx;
1278 Cand.Intf.moveToBlock(Number);
1279 IntfOut = Cand.Intf.last();
1280 }
1281 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001282
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001283 // Create separate intervals for isolated blocks with multiple uses.
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001284 if (!IntvIn && !IntvOut) {
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001285 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n");
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001286 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001287 SE->splitSingleBlock(BI);
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001288 continue;
1289 }
1290
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001291 if (IntvIn && IntvOut)
1292 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1293 else if (IntvIn)
1294 SE->splitRegInBlock(BI, IntvIn, IntfIn);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001295 else
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001296 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001297 }
1298
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001299 // Handle live-through blocks. The relevant live-through blocks are stored in
1300 // the ActiveBlocks list with each candidate. We need to filter out
1301 // duplicates.
1302 BitVector Todo = SA->getThroughBlocks();
1303 for (unsigned c = 0; c != UsedCands.size(); ++c) {
1304 ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks;
1305 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
1306 unsigned Number = Blocks[i];
1307 if (!Todo.test(Number))
1308 continue;
1309 Todo.reset(Number);
1310
1311 unsigned IntvIn = 0, IntvOut = 0;
1312 SlotIndex IntfIn, IntfOut;
1313
1314 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1315 if (CandIn != NoCand) {
1316 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1317 IntvIn = Cand.IntvIdx;
1318 Cand.Intf.moveToBlock(Number);
1319 IntfIn = Cand.Intf.first();
1320 }
1321
1322 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1323 if (CandOut != NoCand) {
1324 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1325 IntvOut = Cand.IntvIdx;
1326 Cand.Intf.moveToBlock(Number);
1327 IntfOut = Cand.Intf.last();
1328 }
1329 if (!IntvIn && !IntvOut)
1330 continue;
1331 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1332 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001333 }
1334
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001335 ++NumGlobalSplits;
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001336
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001337 SmallVector<unsigned, 8> IntvMap;
1338 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001339 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00001340
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001341 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesen5cc91b22011-05-28 02:32:57 +00001342 unsigned OrigBlocks = SA->getNumLiveBlocks();
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001343
1344 // Sort out the new intervals created by splitting. We get four kinds:
1345 // - Remainder intervals should not be split again.
1346 // - Candidate intervals can be assigned to Cand.PhysReg.
1347 // - Block-local splits are candidates for local splitting.
1348 // - DCE leftovers should go back on the queue.
1349 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001350 LiveInterval &Reg = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001351
1352 // Ignore old intervals from DCE.
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001353 if (getStage(Reg) != RS_New)
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001354 continue;
1355
1356 // Remainder interval. Don't try splitting again, spill if it doesn't
1357 // allocate.
1358 if (IntvMap[i] == 0) {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00001359 setStage(Reg, RS_Spill);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001360 continue;
1361 }
1362
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001363 // Global intervals. Allow repeated splitting as long as the number of live
1364 // blocks is strictly decreasing.
1365 if (IntvMap[i] < NumGlobalIntvs) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001366 if (SA->countLiveBlocks(&Reg) >= OrigBlocks) {
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001367 DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks
1368 << " blocks as original.\n");
1369 // Don't allow repeated splitting as a safe guard against looping.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001370 setStage(Reg, RS_Split2);
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001371 }
1372 continue;
1373 }
1374
1375 // Other intervals are treated as new. This includes local intervals created
1376 // for blocks with multiple uses, and anything created by DCE.
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001377 }
1378
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +00001379 if (VerifyEnabled)
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001380 MF->verify(this, "After splitting live range around region");
1381}
1382
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001383unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001384 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001385 unsigned NumCands = 0;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001386 BlockFrequency BestCost;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001387
1388 // Check if we can split this live range around a compact region.
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +00001389 bool HasCompact = calcCompactRegion(GlobalCand.front());
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001390 if (HasCompact) {
1391 // Yes, keep GlobalCand[0] as the compact region candidate.
1392 NumCands = 1;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001393 BestCost = BlockFrequency::getMaxFrequency();
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001394 } else {
1395 // No benefit from the compact region, our fallback will be per-block
1396 // splitting. Make sure we find a solution that is cheaper than spilling.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001397 BestCost = calcSpillCost();
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001398 DEBUG(dbgs() << "Cost of isolating all blocks = ";
1399 MBFI->printBlockFreq(dbgs(), BestCost) << '\n');
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001400 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001401
Manman Ren9db66b32014-03-24 23:23:42 +00001402 unsigned BestCand =
Manman Ren78cf02a2014-03-25 00:16:25 +00001403 calculateRegionSplitCost(VirtReg, Order, BestCost, NumCands,
1404 false/*IgnoreCSR*/);
Manman Ren9db66b32014-03-24 23:23:42 +00001405
1406 // No solutions found, fall back to single block splitting.
1407 if (!HasCompact && BestCand == NoCand)
1408 return 0;
1409
1410 return doRegionSplit(VirtReg, BestCand, HasCompact, NewVRegs);
1411}
1412
1413unsigned RAGreedy::calculateRegionSplitCost(LiveInterval &VirtReg,
1414 AllocationOrder &Order,
1415 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +00001416 unsigned &NumCands,
1417 bool IgnoreCSR) {
Manman Ren9db66b32014-03-24 23:23:42 +00001418 unsigned BestCand = NoCand;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001419 Order.rewind();
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001420 while (unsigned PhysReg = Order.next()) {
Matthias Braun953393a2015-07-14 17:38:17 +00001421 if (IgnoreCSR && isUnusedCalleeSavedReg(PhysReg))
1422 continue;
Manman Ren78cf02a2014-03-25 00:16:25 +00001423
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001424 // Discard bad candidates before we run out of interference cache cursors.
1425 // This will only affect register classes with a lot of registers (>32).
1426 if (NumCands == IntfCache.getMaxCursors()) {
1427 unsigned WorstCount = ~0u;
1428 unsigned Worst = 0;
1429 for (unsigned i = 0; i != NumCands; ++i) {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001430 if (i == BestCand || !GlobalCand[i].PhysReg)
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001431 continue;
1432 unsigned Count = GlobalCand[i].LiveBundles.count();
Richard Trieu7a083812016-02-18 22:09:30 +00001433 if (Count < WorstCount) {
1434 Worst = i;
1435 WorstCount = Count;
1436 }
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001437 }
1438 --NumCands;
1439 GlobalCand[Worst] = GlobalCand[NumCands];
Jakob Stoklund Olesen559d4dc2011-11-01 00:02:31 +00001440 if (BestCand == NumCands)
1441 BestCand = Worst;
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001442 }
1443
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001444 if (GlobalCand.size() <= NumCands)
1445 GlobalCand.resize(NumCands+1);
1446 GlobalSplitCandidate &Cand = GlobalCand[NumCands];
1447 Cand.reset(IntfCache, PhysReg);
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001448
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001449 SpillPlacer->prepare(Cand.LiveBundles);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001450 BlockFrequency Cost;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001451 if (!addSplitConstraints(Cand.Intf, Cost)) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001452 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n");
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001453 continue;
1454 }
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001455 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = ";
1456 MBFI->printBlockFreq(dbgs(), Cost));
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001457 if (Cost >= BestCost) {
1458 DEBUG({
1459 if (BestCand == NoCand)
1460 dbgs() << " worse than no bundles\n";
1461 else
1462 dbgs() << " worse than "
1463 << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n';
1464 });
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001465 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001466 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001467 growRegion(Cand);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001468
Jakob Stoklund Olesen36b5d8a2011-04-06 19:13:57 +00001469 SpillPlacer->finish();
1470
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001471 // No live bundles, defer to splitSingleBlocks().
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001472 if (!Cand.LiveBundles.any()) {
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001473 DEBUG(dbgs() << " no bundles.\n");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001474 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001475 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001476
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001477 Cost += calcGlobalSplitCost(Cand);
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001478 DEBUG({
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001479 dbgs() << ", total = "; MBFI->printBlockFreq(dbgs(), Cost)
1480 << " with bundles";
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001481 for (int i = Cand.LiveBundles.find_first(); i>=0;
1482 i = Cand.LiveBundles.find_next(i))
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001483 dbgs() << " EB#" << i;
1484 dbgs() << ".\n";
1485 });
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001486 if (Cost < BestCost) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001487 BestCand = NumCands;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001488 BestCost = Cost;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001489 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001490 ++NumCands;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001491 }
Manman Ren9db66b32014-03-24 23:23:42 +00001492 return BestCand;
1493}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001494
Manman Ren9db66b32014-03-24 23:23:42 +00001495unsigned RAGreedy::doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
1496 bool HasCompact,
1497 SmallVectorImpl<unsigned> &NewVRegs) {
1498 SmallVector<unsigned, 8> UsedCands;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001499 // Prepare split editor.
Wei Mi9a16d652016-04-13 03:08:27 +00001500 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001501 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001502
1503 // Assign all edge bundles to the preferred candidate, or NoCand.
1504 BundleCand.assign(Bundles->getNumBundles(), NoCand);
1505
1506 // Assign bundles for the best candidate region.
1507 if (BestCand != NoCand) {
1508 GlobalSplitCandidate &Cand = GlobalCand[BestCand];
1509 if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
1510 UsedCands.push_back(BestCand);
1511 Cand.IntvIdx = SE->openIntv();
1512 DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in "
1513 << B << " bundles, intv " << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001514 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001515 }
1516 }
1517
1518 // Assign bundles for the compact region.
1519 if (HasCompact) {
1520 GlobalSplitCandidate &Cand = GlobalCand.front();
1521 assert(!Cand.PhysReg && "Compact region has no physreg");
1522 if (unsigned B = Cand.getBundles(BundleCand, 0)) {
1523 UsedCands.push_back(0);
1524 Cand.IntvIdx = SE->openIntv();
1525 DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv "
1526 << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001527 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001528 }
1529 }
1530
1531 splitAroundRegion(LREdit, UsedCands);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001532 return 0;
1533}
1534
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001535
1536//===----------------------------------------------------------------------===//
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001537// Per-Block Splitting
1538//===----------------------------------------------------------------------===//
1539
1540/// tryBlockSplit - Split a global live range around every block with uses. This
1541/// creates a lot of local live ranges, that will be split by tryLocalSplit if
1542/// they don't allocate.
1543unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001544 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001545 assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed");
1546 unsigned Reg = VirtReg.reg;
1547 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
Wei Mi9a16d652016-04-13 03:08:27 +00001548 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001549 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001550 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1551 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1552 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1553 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
1554 SE->splitSingleBlock(BI);
1555 }
1556 // No blocks were split.
1557 if (LREdit.empty())
1558 return 0;
1559
1560 // We did split for some blocks.
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001561 SmallVector<unsigned, 8> IntvMap;
1562 SE->finish(&IntvMap);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001563
1564 // Tell LiveDebugVariables about the new ranges.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001565 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001566
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001567 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1568
1569 // Sort out the new intervals created by splitting. The remainder interval
1570 // goes straight to spilling, the new local ranges get to stay RS_New.
1571 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001572 LiveInterval &LI = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001573 if (getStage(LI) == RS_New && IntvMap[i] == 0)
1574 setStage(LI, RS_Spill);
1575 }
1576
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001577 if (VerifyEnabled)
1578 MF->verify(this, "After splitting live range around basic blocks");
1579 return 0;
1580}
1581
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001582
1583//===----------------------------------------------------------------------===//
1584// Per-Instruction Splitting
1585//===----------------------------------------------------------------------===//
1586
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001587/// Get the number of allocatable registers that match the constraints of \p Reg
1588/// on \p MI and that are also in \p SuperRC.
1589static unsigned getNumAllocatableRegsForConstraints(
1590 const MachineInstr *MI, unsigned Reg, const TargetRegisterClass *SuperRC,
1591 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI,
1592 const RegisterClassInfo &RCI) {
1593 assert(SuperRC && "Invalid register class");
1594
1595 const TargetRegisterClass *ConstrainedRC =
1596 MI->getRegClassConstraintEffectForVReg(Reg, SuperRC, TII, TRI,
1597 /* ExploreBundle */ true);
1598 if (!ConstrainedRC)
1599 return 0;
1600 return RCI.getNumAllocatableRegs(ConstrainedRC);
1601}
1602
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001603/// tryInstructionSplit - Split a live range around individual instructions.
1604/// This is normally not worthwhile since the spiller is doing essentially the
1605/// same thing. However, when the live range is in a constrained register
1606/// class, it may help to insert copies such that parts of the live range can
1607/// be moved to a larger register class.
1608///
1609/// This is similar to spilling to a larger register class.
1610unsigned
1611RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001612 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001613 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001614 // There is no point to this if there are no larger sub-classes.
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001615 if (!RegClassInfo.isProperSubClass(CurRC))
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001616 return 0;
1617
1618 // Always enable split spill mode, since we're effectively spilling to a
1619 // register.
Wei Mi9a16d652016-04-13 03:08:27 +00001620 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001621 SE->reset(LREdit, SplitEditor::SM_Size);
1622
1623 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
1624 if (Uses.size() <= 1)
1625 return 0;
1626
1627 DEBUG(dbgs() << "Split around " << Uses.size() << " individual instrs.\n");
1628
Eric Christopher433c4322015-03-10 23:46:01 +00001629 const TargetRegisterClass *SuperRC =
1630 TRI->getLargestLegalSuperClass(CurRC, *MF);
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001631 unsigned SuperRCNumAllocatableRegs = RCI.getNumAllocatableRegs(SuperRC);
1632 // Split around every non-copy instruction if this split will relax
1633 // the constraints on the virtual register.
1634 // Otherwise, splitting just inserts uncoalescable copies that do not help
1635 // the allocation.
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001636 for (unsigned i = 0; i != Uses.size(); ++i) {
1637 if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]))
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001638 if (MI->isFullCopy() ||
1639 SuperRCNumAllocatableRegs ==
1640 getNumAllocatableRegsForConstraints(MI, VirtReg.reg, SuperRC, TII,
1641 TRI, RCI)) {
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001642 DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI);
1643 continue;
1644 }
1645 SE->openIntv();
1646 SlotIndex SegStart = SE->enterIntvBefore(Uses[i]);
1647 SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]);
1648 SE->useIntv(SegStart, SegStop);
1649 }
1650
1651 if (LREdit.empty()) {
1652 DEBUG(dbgs() << "All uses were copies.\n");
1653 return 0;
1654 }
1655
1656 SmallVector<unsigned, 8> IntvMap;
1657 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001658 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001659 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1660
1661 // Assign all new registers to RS_Spill. This was the last chance.
1662 setStage(LREdit.begin(), LREdit.end(), RS_Spill);
1663 return 0;
1664}
1665
1666
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001667//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001668// Local Splitting
1669//===----------------------------------------------------------------------===//
1670
1671
1672/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
1673/// in order to use PhysReg between two entries in SA->UseSlots.
1674///
1675/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1676///
1677void RAGreedy::calcGapWeights(unsigned PhysReg,
1678 SmallVectorImpl<float> &GapWeight) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001679 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1680 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001681 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001682 const unsigned NumGaps = Uses.size()-1;
1683
1684 // Start and end points for the interference check.
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001685 SlotIndex StartIdx =
1686 BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr;
1687 SlotIndex StopIdx =
1688 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001689
1690 GapWeight.assign(NumGaps, 0.0f);
1691
1692 // Add interference from each overlapping register.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001693 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1694 if (!Matrix->query(const_cast<LiveInterval&>(SA->getParent()), *Units)
1695 .checkInterference())
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001696 continue;
1697
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001698 // We know that VirtReg is a continuous interval from FirstInstr to
1699 // LastInstr, so we don't need InterferenceQuery.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001700 //
1701 // Interference that overlaps an instruction is counted in both gaps
1702 // surrounding the instruction. The exception is interference before
1703 // StartIdx and after StopIdx.
1704 //
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001705 LiveIntervalUnion::SegmentIter IntI =
1706 Matrix->getLiveUnions()[*Units] .find(StartIdx);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001707 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
1708 // Skip the gaps before IntI.
1709 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
1710 if (++Gap == NumGaps)
1711 break;
1712 if (Gap == NumGaps)
1713 break;
1714
1715 // Update the gaps covered by IntI.
1716 const float weight = IntI.value()->weight;
1717 for (; Gap != NumGaps; ++Gap) {
1718 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1719 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1720 break;
1721 }
1722 if (Gap == NumGaps)
1723 break;
1724 }
1725 }
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001726
1727 // Add fixed interference.
1728 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
Matthias Braun34e1be92013-10-10 21:29:02 +00001729 const LiveRange &LR = LIS->getRegUnit(*Units);
1730 LiveRange::const_iterator I = LR.find(StartIdx);
1731 LiveRange::const_iterator E = LR.end();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001732
1733 // Same loop as above. Mark any overlapped gaps as HUGE_VALF.
1734 for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) {
1735 while (Uses[Gap+1].getBoundaryIndex() < I->start)
1736 if (++Gap == NumGaps)
1737 break;
1738 if (Gap == NumGaps)
1739 break;
1740
1741 for (; Gap != NumGaps; ++Gap) {
Aaron Ballman04999042013-11-13 00:15:44 +00001742 GapWeight[Gap] = llvm::huge_valf;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001743 if (Uses[Gap+1].getBaseIndex() >= I->end)
1744 break;
1745 }
1746 if (Gap == NumGaps)
1747 break;
1748 }
1749 }
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001750}
1751
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001752/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1753/// basic block.
1754///
1755unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001756 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001757 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1758 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001759
1760 // Note that it is possible to have an interval that is live-in or live-out
1761 // while only covering a single block - A phi-def can use undef values from
1762 // predecessors, and the block could be a single-block loop.
1763 // We don't bother doing anything clever about such a case, we simply assume
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001764 // that the interval is continuous from FirstInstr to LastInstr. We should
1765 // make sure that we don't do anything illegal to such an interval, though.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001766
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001767 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001768 if (Uses.size() <= 2)
1769 return 0;
1770 const unsigned NumGaps = Uses.size()-1;
1771
1772 DEBUG({
1773 dbgs() << "tryLocalSplit: ";
1774 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001775 dbgs() << ' ' << Uses[i];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001776 dbgs() << '\n';
1777 });
1778
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001779 // If VirtReg is live across any register mask operands, compute a list of
1780 // gaps with register masks.
1781 SmallVector<unsigned, 8> RegMaskGaps;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001782 if (Matrix->checkRegMaskInterference(VirtReg)) {
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001783 // Get regmask slots for the whole block.
1784 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001785 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001786 // Constrain to VirtReg's live range.
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001787 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1788 Uses.front().getRegSlot()) - RMS.begin();
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001789 unsigned re = RMS.size();
1790 for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001791 // Look for Uses[i] <= RMS <= Uses[i+1].
1792 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1793 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001794 continue;
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001795 // Skip a regmask on the same instruction as the last use. It doesn't
1796 // overlap the live range.
1797 if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps)
1798 break;
1799 DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]);
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001800 RegMaskGaps.push_back(i);
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001801 // Advance ri to the next gap. A regmask on one of the uses counts in
1802 // both gaps.
1803 while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1]))
1804 ++ri;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001805 }
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001806 DEBUG(dbgs() << '\n');
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001807 }
1808
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001809 // Since we allow local split results to be split again, there is a risk of
1810 // creating infinite loops. It is tempting to require that the new live
1811 // ranges have less instructions than the original. That would guarantee
1812 // convergence, but it is too strict. A live range with 3 instructions can be
1813 // split 2+3 (including the COPY), and we want to allow that.
1814 //
1815 // Instead we use these rules:
1816 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001817 // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001818 // noop split, of course).
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001819 // 2. Require progress be made for ranges with getStage() == RS_Split2. All
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001820 // the new ranges must have fewer instructions than before the split.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001821 // 3. New ranges with the same number of instructions are marked RS_Split2,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001822 // smaller ranges are marked RS_New.
1823 //
1824 // These rules allow a 3 -> 2+3 split once, which we need. They also prevent
1825 // excessive splitting and infinite loops.
1826 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001827 bool ProgressRequired = getStage(VirtReg) >= RS_Split2;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001828
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001829 // Best split candidate.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001830 unsigned BestBefore = NumGaps;
1831 unsigned BestAfter = 0;
1832 float BestDiff = 0;
1833
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001834 const float blockFreq =
1835 SpillPlacer->getBlockFrequency(BI.MBB->getNumber()).getFrequency() *
Michael Gottesman5e985ee2013-12-14 02:37:38 +00001836 (1.0f / MBFI->getEntryFreq());
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001837 SmallVector<float, 8> GapWeight;
1838
1839 Order.rewind();
1840 while (unsigned PhysReg = Order.next()) {
1841 // Keep track of the largest spill weight that would need to be evicted in
1842 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1843 calcGapWeights(PhysReg, GapWeight);
1844
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001845 // Remove any gaps with regmask clobbers.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001846 if (Matrix->checkRegMaskInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001847 for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i)
Aaron Ballman04999042013-11-13 00:15:44 +00001848 GapWeight[RegMaskGaps[i]] = llvm::huge_valf;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001849
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001850 // Try to find the best sequence of gaps to close.
1851 // The new spill weight must be larger than any gap interference.
1852
1853 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001854 unsigned SplitBefore = 0, SplitAfter = 1;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001855
1856 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1857 // It is the spill weight that needs to be evicted.
1858 float MaxGap = GapWeight[0];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001859
1860 for (;;) {
1861 // Live before/after split?
1862 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1863 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1864
1865 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1866 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1867 << " i=" << MaxGap);
1868
1869 // Stop before the interval gets so big we wouldn't be making progress.
1870 if (!LiveBefore && !LiveAfter) {
1871 DEBUG(dbgs() << " all\n");
1872 break;
1873 }
1874 // Should the interval be extended or shrunk?
1875 bool Shrink = true;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001876
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001877 // How many gaps would the new range have?
1878 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1879
1880 // Legally, without causing looping?
1881 bool Legal = !ProgressRequired || NewGaps < NumGaps;
1882
Aaron Ballman04999042013-11-13 00:15:44 +00001883 if (Legal && MaxGap < llvm::huge_valf) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001884 // Estimate the new spill weight. Each instruction reads or writes the
1885 // register. Conservatively assume there are no read-modify-write
1886 // instructions.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001887 //
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001888 // Try to guess the size of the new interval.
Arnaud A. de Grandmaison829dd812014-11-04 20:51:24 +00001889 const float EstWeight = normalizeSpillWeight(
1890 blockFreq * (NewGaps + 1),
1891 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1892 (LiveBefore + LiveAfter) * SlotIndex::InstrDist,
1893 1);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001894 // Would this split be possible to allocate?
1895 // Never allocate all gaps, we wouldn't be making progress.
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001896 DEBUG(dbgs() << " w=" << EstWeight);
1897 if (EstWeight * Hysteresis >= MaxGap) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001898 Shrink = false;
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001899 float Diff = EstWeight - MaxGap;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001900 if (Diff > BestDiff) {
1901 DEBUG(dbgs() << " (best)");
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001902 BestDiff = Hysteresis * Diff;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001903 BestBefore = SplitBefore;
1904 BestAfter = SplitAfter;
1905 }
1906 }
1907 }
1908
1909 // Try to shrink.
1910 if (Shrink) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001911 if (++SplitBefore < SplitAfter) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001912 DEBUG(dbgs() << " shrink\n");
1913 // Recompute the max when necessary.
1914 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1915 MaxGap = GapWeight[SplitBefore];
1916 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1917 MaxGap = std::max(MaxGap, GapWeight[i]);
1918 }
1919 continue;
1920 }
1921 MaxGap = 0;
1922 }
1923
1924 // Try to extend the interval.
1925 if (SplitAfter >= NumGaps) {
1926 DEBUG(dbgs() << " end\n");
1927 break;
1928 }
1929
1930 DEBUG(dbgs() << " extend\n");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001931 MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001932 }
1933 }
1934
1935 // Didn't find any candidates?
1936 if (BestBefore == NumGaps)
1937 return 0;
1938
1939 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1940 << '-' << Uses[BestAfter] << ", " << BestDiff
1941 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1942
Wei Mi9a16d652016-04-13 03:08:27 +00001943 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001944 SE->reset(LREdit);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001945
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001946 SE->openIntv();
1947 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1948 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1949 SE->useIntv(SegStart, SegStop);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001950 SmallVector<unsigned, 8> IntvMap;
1951 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001952 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001953
1954 // If the new range has the same number of instructions as before, mark it as
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001955 // RS_Split2 so the next split will be forced to make progress. Otherwise,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001956 // leave the new intervals as RS_New so they can compete.
1957 bool LiveBefore = BestBefore != 0 || BI.LiveIn;
1958 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut;
1959 unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter;
1960 if (NewGaps >= NumGaps) {
1961 DEBUG(dbgs() << "Tagging non-progress ranges: ");
1962 assert(!ProgressRequired && "Didn't make progress when it was required.");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001963 for (unsigned i = 0, e = IntvMap.size(); i != e; ++i)
1964 if (IntvMap[i] == 1) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001965 setStage(LIS->getInterval(LREdit.get(i)), RS_Split2);
1966 DEBUG(dbgs() << PrintReg(LREdit.get(i)));
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001967 }
1968 DEBUG(dbgs() << '\n');
1969 }
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001970 ++NumLocalSplits;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001971
1972 return 0;
1973}
1974
1975//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001976// Live Range Splitting
1977//===----------------------------------------------------------------------===//
1978
1979/// trySplit - Try to split VirtReg or one of its interferences, making it
1980/// assignable.
1981/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1982unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001983 SmallVectorImpl<unsigned>&NewVRegs) {
Jakob Stoklund Olesend4bb1d42011-08-05 23:50:33 +00001984 // Ranges must be Split2 or less.
1985 if (getStage(VirtReg) >= RS_Spill)
1986 return 0;
1987
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001988 // Local intervals are handled separately.
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001989 if (LIS->intervalIsInOneMBB(VirtReg)) {
Matthias Braun9f15a792016-11-18 19:43:18 +00001990 NamedRegionTimer T("local_split", "Local Splitting", TimerGroupName,
1991 TimerGroupDescription, TimePassesIsEnabled);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001992 SA->analyze(&VirtReg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001993 unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs);
1994 if (PhysReg || !NewVRegs.empty())
1995 return PhysReg;
1996 return tryInstructionSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001997 }
1998
Matthias Braun9f15a792016-11-18 19:43:18 +00001999 NamedRegionTimer T("global_split", "Global Splitting", TimerGroupName,
2000 TimerGroupDescription, TimePassesIsEnabled);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002001
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00002002 SA->analyze(&VirtReg);
2003
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00002004 // FIXME: SplitAnalysis may repair broken live ranges coming from the
2005 // coalescer. That may cause the range to become allocatable which means that
2006 // tryRegionSplit won't be making progress. This check should be replaced with
2007 // an assertion when the coalescer is fixed.
2008 if (SA->didRepairRange()) {
2009 // VirtReg has changed, so all cached queries are invalid.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00002010 Matrix->invalidateVirtRegs();
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00002011 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
2012 return PhysReg;
2013 }
2014
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00002015 // First try to split around a region spanning multiple blocks. RS_Split2
2016 // ranges already made dubious progress with region splitting, so they go
2017 // straight to single block splitting.
2018 if (getStage(VirtReg) < RS_Split2) {
2019 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
2020 if (PhysReg || !NewVRegs.empty())
2021 return PhysReg;
2022 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002023
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00002024 // Then isolate blocks.
2025 return tryBlockSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002026}
2027
Quentin Colombet87769712014-02-05 22:13:59 +00002028//===----------------------------------------------------------------------===//
2029// Last Chance Recoloring
2030//===----------------------------------------------------------------------===//
2031
2032/// mayRecolorAllInterferences - Check if the virtual registers that
2033/// interfere with \p VirtReg on \p PhysReg (or one of its aliases) may be
2034/// recolored to free \p PhysReg.
2035/// When true is returned, \p RecoloringCandidates has been augmented with all
2036/// the live intervals that need to be recolored in order to free \p PhysReg
2037/// for \p VirtReg.
2038/// \p FixedRegisters contains all the virtual registers that cannot be
2039/// recolored.
2040bool
2041RAGreedy::mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
2042 SmallLISet &RecoloringCandidates,
2043 const SmallVirtRegSet &FixedRegisters) {
2044 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
2045
2046 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
2047 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
2048 // If there is LastChanceRecoloringMaxInterference or more interferences,
2049 // chances are one would not be recolorable.
2050 if (Q.collectInterferingVRegs(LastChanceRecoloringMaxInterference) >=
Quentin Colombet567e30b2014-04-11 21:39:44 +00002051 LastChanceRecoloringMaxInterference && !ExhaustiveSearch) {
Quentin Colombet87769712014-02-05 22:13:59 +00002052 DEBUG(dbgs() << "Early abort: too many interferences.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002053 CutOffInfo |= CO_Interf;
Quentin Colombet87769712014-02-05 22:13:59 +00002054 return false;
2055 }
2056 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
2057 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
2058 // If Intf is done and sit on the same register class as VirtReg,
2059 // it would not be recolorable as it is in the same state as VirtReg.
2060 if ((getStage(*Intf) == RS_Done &&
2061 MRI->getRegClass(Intf->reg) == CurRC) ||
2062 FixedRegisters.count(Intf->reg)) {
2063 DEBUG(dbgs() << "Early abort: the inteference is not recolorable.\n");
2064 return false;
2065 }
2066 RecoloringCandidates.insert(Intf);
2067 }
2068 }
2069 return true;
2070}
2071
2072/// tryLastChanceRecoloring - Try to assign a color to \p VirtReg by recoloring
2073/// its interferences.
2074/// Last chance recoloring chooses a color for \p VirtReg and recolors every
2075/// virtual register that was using it. The recoloring process may recursively
2076/// use the last chance recoloring. Therefore, when a virtual register has been
2077/// assigned a color by this mechanism, it is marked as Fixed, i.e., it cannot
2078/// be last-chance-recolored again during this recoloring "session".
2079/// E.g.,
2080/// Let
2081/// vA can use {R1, R2 }
2082/// vB can use { R2, R3}
2083/// vC can use {R1 }
2084/// Where vA, vB, and vC cannot be split anymore (they are reloads for
2085/// instance) and they all interfere.
2086///
2087/// vA is assigned R1
2088/// vB is assigned R2
2089/// vC tries to evict vA but vA is already done.
2090/// Regular register allocation fails.
2091///
2092/// Last chance recoloring kicks in:
2093/// vC does as if vA was evicted => vC uses R1.
2094/// vC is marked as fixed.
2095/// vA needs to find a color.
2096/// None are available.
2097/// vA cannot evict vC: vC is a fixed virtual register now.
2098/// vA does as if vB was evicted => vA uses R2.
2099/// vB needs to find a color.
2100/// R3 is available.
2101/// Recoloring => vC = R1, vA = R2, vB = R3
2102///
Alp Toker70b36992014-02-25 04:21:15 +00002103/// \p Order defines the preferred allocation order for \p VirtReg.
Quentin Colombet87769712014-02-05 22:13:59 +00002104/// \p NewRegs will contain any new virtual register that have been created
2105/// (split, spill) during the process and that must be assigned.
2106/// \p FixedRegisters contains all the virtual registers that cannot be
2107/// recolored.
2108/// \p Depth gives the current depth of the last chance recoloring.
2109/// \return a physical register that can be used for VirtReg or ~0u if none
2110/// exists.
2111unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg,
2112 AllocationOrder &Order,
2113 SmallVectorImpl<unsigned> &NewVRegs,
2114 SmallVirtRegSet &FixedRegisters,
2115 unsigned Depth) {
2116 DEBUG(dbgs() << "Try last chance recoloring for " << VirtReg << '\n');
2117 // Ranges must be Done.
Quentin Colombet0e3b5e02014-02-13 05:17:37 +00002118 assert((getStage(VirtReg) >= RS_Done || !VirtReg.isSpillable()) &&
Quentin Colombet87769712014-02-05 22:13:59 +00002119 "Last chance recoloring should really be last chance");
2120 // Set the max depth to LastChanceRecoloringMaxDepth.
2121 // We may want to reconsider that if we end up with a too large search space
2122 // for target with hundreds of registers.
2123 // Indeed, in that case we may want to cut the search space earlier.
Quentin Colombet567e30b2014-04-11 21:39:44 +00002124 if (Depth >= LastChanceRecoloringMaxDepth && !ExhaustiveSearch) {
Quentin Colombet87769712014-02-05 22:13:59 +00002125 DEBUG(dbgs() << "Abort because max depth has been reached.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002126 CutOffInfo |= CO_Depth;
Quentin Colombet87769712014-02-05 22:13:59 +00002127 return ~0u;
2128 }
2129
2130 // Set of Live intervals that will need to be recolored.
2131 SmallLISet RecoloringCandidates;
2132 // Record the original mapping virtual register to physical register in case
2133 // the recoloring fails.
2134 DenseMap<unsigned, unsigned> VirtRegToPhysReg;
2135 // Mark VirtReg as fixed, i.e., it will not be recolored pass this point in
2136 // this recoloring "session".
2137 FixedRegisters.insert(VirtReg.reg);
Quentin Colombet318582f2016-09-16 22:00:50 +00002138 SmallVector<unsigned, 4> CurrentNewVRegs;
Quentin Colombet87769712014-02-05 22:13:59 +00002139
2140 Order.rewind();
2141 while (unsigned PhysReg = Order.next()) {
2142 DEBUG(dbgs() << "Try to assign: " << VirtReg << " to "
2143 << PrintReg(PhysReg, TRI) << '\n');
2144 RecoloringCandidates.clear();
2145 VirtRegToPhysReg.clear();
Quentin Colombet318582f2016-09-16 22:00:50 +00002146 CurrentNewVRegs.clear();
Quentin Colombet87769712014-02-05 22:13:59 +00002147
2148 // It is only possible to recolor virtual register interference.
2149 if (Matrix->checkInterference(VirtReg, PhysReg) >
2150 LiveRegMatrix::IK_VirtReg) {
2151 DEBUG(dbgs() << "Some inteferences are not with virtual registers.\n");
2152
2153 continue;
2154 }
2155
2156 // Early give up on this PhysReg if it is obvious we cannot recolor all
2157 // the interferences.
2158 if (!mayRecolorAllInterferences(PhysReg, VirtReg, RecoloringCandidates,
2159 FixedRegisters)) {
2160 DEBUG(dbgs() << "Some inteferences cannot be recolored.\n");
2161 continue;
2162 }
2163
2164 // RecoloringCandidates contains all the virtual registers that interfer
2165 // with VirtReg on PhysReg (or one of its aliases).
2166 // Enqueue them for recoloring and perform the actual recoloring.
2167 PQueue RecoloringQueue;
2168 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2169 EndIt = RecoloringCandidates.end();
2170 It != EndIt; ++It) {
2171 unsigned ItVirtReg = (*It)->reg;
2172 enqueue(RecoloringQueue, *It);
2173 assert(VRM->hasPhys(ItVirtReg) &&
2174 "Interferences are supposed to be with allocated vairables");
2175
2176 // Record the current allocation.
2177 VirtRegToPhysReg[ItVirtReg] = VRM->getPhys(ItVirtReg);
2178 // unset the related struct.
2179 Matrix->unassign(**It);
2180 }
2181
2182 // Do as if VirtReg was assigned to PhysReg so that the underlying
2183 // recoloring has the right information about the interferes and
2184 // available colors.
2185 Matrix->assign(VirtReg, PhysReg);
2186
2187 // Save the current recoloring state.
2188 // If we cannot recolor all the interferences, we will have to start again
2189 // at this point for the next physical register.
2190 SmallVirtRegSet SaveFixedRegisters(FixedRegisters);
Quentin Colombet318582f2016-09-16 22:00:50 +00002191 if (tryRecoloringCandidates(RecoloringQueue, CurrentNewVRegs,
2192 FixedRegisters, Depth)) {
2193 // Push the queued vregs into the main queue.
2194 for (unsigned NewVReg : CurrentNewVRegs)
2195 NewVRegs.push_back(NewVReg);
Quentin Colombet87769712014-02-05 22:13:59 +00002196 // Do not mess up with the global assignment process.
2197 // I.e., VirtReg must be unassigned.
2198 Matrix->unassign(VirtReg);
2199 return PhysReg;
2200 }
2201
2202 DEBUG(dbgs() << "Fail to assign: " << VirtReg << " to "
2203 << PrintReg(PhysReg, TRI) << '\n');
2204
2205 // The recoloring attempt failed, undo the changes.
2206 FixedRegisters = SaveFixedRegisters;
2207 Matrix->unassign(VirtReg);
2208
Wei Mib5cf9e52016-11-08 18:19:36 +00002209 // For a newly created vreg which is also in RecoloringCandidates,
2210 // don't add it to NewVRegs because its physical register will be restored
2211 // below. Other vregs in CurrentNewVRegs are created by calling
2212 // selectOrSplit and should be added into NewVRegs.
Quentin Colombet318582f2016-09-16 22:00:50 +00002213 for (SmallVectorImpl<unsigned>::iterator Next = CurrentNewVRegs.begin(),
2214 End = CurrentNewVRegs.end();
2215 Next != End; ++Next) {
Wei Mib5cf9e52016-11-08 18:19:36 +00002216 if (RecoloringCandidates.count(&LIS->getInterval(*Next)))
Quentin Colombet318582f2016-09-16 22:00:50 +00002217 continue;
2218 NewVRegs.push_back(*Next);
2219 }
2220
Quentin Colombet87769712014-02-05 22:13:59 +00002221 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2222 EndIt = RecoloringCandidates.end();
2223 It != EndIt; ++It) {
2224 unsigned ItVirtReg = (*It)->reg;
2225 if (VRM->hasPhys(ItVirtReg))
2226 Matrix->unassign(**It);
Matthias Braun953393a2015-07-14 17:38:17 +00002227 unsigned ItPhysReg = VirtRegToPhysReg[ItVirtReg];
2228 Matrix->assign(**It, ItPhysReg);
Quentin Colombet87769712014-02-05 22:13:59 +00002229 }
2230 }
2231
2232 // Last chance recoloring did not worked either, give up.
2233 return ~0u;
2234}
2235
2236/// tryRecoloringCandidates - Try to assign a new color to every register
2237/// in \RecoloringQueue.
2238/// \p NewRegs will contain any new virtual register created during the
2239/// recoloring process.
2240/// \p FixedRegisters[in/out] contains all the registers that have been
2241/// recolored.
2242/// \return true if all virtual registers in RecoloringQueue were successfully
2243/// recolored, false otherwise.
2244bool RAGreedy::tryRecoloringCandidates(PQueue &RecoloringQueue,
2245 SmallVectorImpl<unsigned> &NewVRegs,
2246 SmallVirtRegSet &FixedRegisters,
2247 unsigned Depth) {
2248 while (!RecoloringQueue.empty()) {
2249 LiveInterval *LI = dequeue(RecoloringQueue);
2250 DEBUG(dbgs() << "Try to recolor: " << *LI << '\n');
2251 unsigned PhysReg;
2252 PhysReg = selectOrSplitImpl(*LI, NewVRegs, FixedRegisters, Depth + 1);
Quentin Colombet52ffa672016-10-13 19:27:48 +00002253 // When splitting happens, the live-range may actually be empty.
2254 // In that case, this is okay to continue the recoloring even
2255 // if we did not find an alternative color for it. Indeed,
2256 // there will not be anything to color for LI in the end.
2257 if (PhysReg == ~0u || (!PhysReg && !LI->empty()))
Quentin Colombet87769712014-02-05 22:13:59 +00002258 return false;
Quentin Colombet52ffa672016-10-13 19:27:48 +00002259
2260 if (!PhysReg) {
2261 assert(LI->empty() && "Only empty live-range do not require a register");
2262 DEBUG(dbgs() << "Recoloring of " << *LI << " succeeded. Empty LI.\n");
2263 continue;
2264 }
Quentin Colombet87769712014-02-05 22:13:59 +00002265 DEBUG(dbgs() << "Recoloring of " << *LI
2266 << " succeeded with: " << PrintReg(PhysReg, TRI) << '\n');
Quentin Colombet52ffa672016-10-13 19:27:48 +00002267
Quentin Colombet87769712014-02-05 22:13:59 +00002268 Matrix->assign(*LI, PhysReg);
2269 FixedRegisters.insert(LI->reg);
2270 }
2271 return true;
2272}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002273
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002274//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002275// Main Entry Point
2276//===----------------------------------------------------------------------===//
2277
2278unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +00002279 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002280 CutOffInfo = CO_None;
2281 LLVMContext &Ctx = MF->getFunction()->getContext();
Quentin Colombet87769712014-02-05 22:13:59 +00002282 SmallVirtRegSet FixedRegisters;
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002283 unsigned Reg = selectOrSplitImpl(VirtReg, NewVRegs, FixedRegisters);
2284 if (Reg == ~0U && (CutOffInfo != CO_None)) {
2285 uint8_t CutOffEncountered = CutOffInfo & (CO_Depth | CO_Interf);
2286 if (CutOffEncountered == CO_Depth)
Quentin Colombet567e30b2014-04-11 21:39:44 +00002287 Ctx.emitError("register allocation failed: maximum depth for recoloring "
2288 "reached. Use -fexhaustive-register-search to skip "
2289 "cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002290 else if (CutOffEncountered == CO_Interf)
2291 Ctx.emitError("register allocation failed: maximum interference for "
Quentin Colombet567e30b2014-04-11 21:39:44 +00002292 "recoloring reached. Use -fexhaustive-register-search "
2293 "to skip cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002294 else if (CutOffEncountered == (CO_Depth | CO_Interf))
2295 Ctx.emitError("register allocation failed: maximum interference and "
Quentin Colombet567e30b2014-04-11 21:39:44 +00002296 "depth for recoloring reached. Use "
2297 "-fexhaustive-register-search to skip cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002298 }
2299 return Reg;
Quentin Colombet87769712014-02-05 22:13:59 +00002300}
2301
Manman Ren9dee4492014-03-27 21:21:57 +00002302/// Using a CSR for the first time has a cost because it causes push|pop
2303/// to be added to prologue|epilogue. Splitting a cold section of the live
2304/// range can have lower cost than using the CSR for the first time;
2305/// Spilling a live range in the cold path can have lower cost than using
2306/// the CSR for the first time. Returns the physical register if we decide
2307/// to use the CSR; otherwise return 0.
2308unsigned RAGreedy::tryAssignCSRFirstTime(LiveInterval &VirtReg,
2309 AllocationOrder &Order,
2310 unsigned PhysReg,
2311 unsigned &CostPerUseLimit,
2312 SmallVectorImpl<unsigned> &NewVRegs) {
Manman Ren9dee4492014-03-27 21:21:57 +00002313 if (getStage(VirtReg) == RS_Spill && VirtReg.isSpillable()) {
2314 // We choose spill over using the CSR for the first time if the spill cost
2315 // is lower than CSRCost.
2316 SA->analyze(&VirtReg);
2317 if (calcSpillCost() >= CSRCost)
2318 return PhysReg;
2319
2320 // We are going to spill, set CostPerUseLimit to 1 to make sure that
2321 // we will not use a callee-saved register in tryEvict.
2322 CostPerUseLimit = 1;
2323 return 0;
2324 }
2325 if (getStage(VirtReg) < RS_Split) {
2326 // We choose pre-splitting over using the CSR for the first time if
2327 // the cost of splitting is lower than CSRCost.
2328 SA->analyze(&VirtReg);
2329 unsigned NumCands = 0;
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002330 BlockFrequency BestCost = CSRCost; // Don't modify CSRCost.
2331 unsigned BestCand = calculateRegionSplitCost(VirtReg, Order, BestCost,
2332 NumCands, true /*IgnoreCSR*/);
Manman Ren9dee4492014-03-27 21:21:57 +00002333 if (BestCand == NoCand)
2334 // Use the CSR if we can't find a region split below CSRCost.
2335 return PhysReg;
2336
2337 // Perform the actual pre-splitting.
2338 doRegionSplit(VirtReg, BestCand, false/*HasCompact*/, NewVRegs);
2339 return 0;
2340 }
2341 return PhysReg;
2342}
2343
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002344void RAGreedy::aboutToRemoveInterval(LiveInterval &LI) {
2345 // Do not keep invalid information around.
2346 SetOfBrokenHints.remove(&LI);
2347}
2348
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002349void RAGreedy::initializeCSRCost() {
2350 // We use the larger one out of the command-line option and the value report
2351 // by TRI.
2352 CSRCost = BlockFrequency(
2353 std::max((unsigned)CSRFirstTimeCost, TRI->getCSRFirstUseCost()));
2354 if (!CSRCost.getFrequency())
2355 return;
2356
2357 // Raw cost is relative to Entry == 2^14; scale it appropriately.
2358 uint64_t ActualEntry = MBFI->getEntryFreq();
2359 if (!ActualEntry) {
2360 CSRCost = 0;
2361 return;
2362 }
2363 uint64_t FixedEntry = 1 << 14;
2364 if (ActualEntry < FixedEntry)
2365 CSRCost *= BranchProbability(ActualEntry, FixedEntry);
2366 else if (ActualEntry <= UINT32_MAX)
2367 // Invert the fraction and divide.
2368 CSRCost /= BranchProbability(FixedEntry, ActualEntry);
2369 else
2370 // Can't use BranchProbability in general, since it takes 32-bit numbers.
2371 CSRCost = CSRCost.getFrequency() * (ActualEntry / FixedEntry);
2372}
2373
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002374/// \brief Collect the hint info for \p Reg.
2375/// The results are stored into \p Out.
2376/// \p Out is not cleared before being populated.
2377void RAGreedy::collectHintInfo(unsigned Reg, HintsInfo &Out) {
2378 for (const MachineInstr &Instr : MRI->reg_nodbg_instructions(Reg)) {
2379 if (!Instr.isFullCopy())
2380 continue;
2381 // Look for the other end of the copy.
2382 unsigned OtherReg = Instr.getOperand(0).getReg();
2383 if (OtherReg == Reg) {
2384 OtherReg = Instr.getOperand(1).getReg();
2385 if (OtherReg == Reg)
2386 continue;
2387 }
2388 // Get the current assignment.
2389 unsigned OtherPhysReg = TargetRegisterInfo::isPhysicalRegister(OtherReg)
2390 ? OtherReg
2391 : VRM->getPhys(OtherReg);
2392 // Push the collected information.
2393 Out.push_back(HintInfo(MBFI->getBlockFreq(Instr.getParent()), OtherReg,
2394 OtherPhysReg));
2395 }
2396}
2397
2398/// \brief Using the given \p List, compute the cost of the broken hints if
2399/// \p PhysReg was used.
2400/// \return The cost of \p List for \p PhysReg.
2401BlockFrequency RAGreedy::getBrokenHintFreq(const HintsInfo &List,
2402 unsigned PhysReg) {
2403 BlockFrequency Cost = 0;
2404 for (const HintInfo &Info : List) {
2405 if (Info.PhysReg != PhysReg)
2406 Cost += Info.Freq;
2407 }
2408 return Cost;
2409}
2410
2411/// \brief Using the register assigned to \p VirtReg, try to recolor
2412/// all the live ranges that are copy-related with \p VirtReg.
2413/// The recoloring is then propagated to all the live-ranges that have
2414/// been recolored and so on, until no more copies can be coalesced or
2415/// it is not profitable.
2416/// For a given live range, profitability is determined by the sum of the
2417/// frequencies of the non-identity copies it would introduce with the old
2418/// and new register.
2419void RAGreedy::tryHintRecoloring(LiveInterval &VirtReg) {
2420 // We have a broken hint, check if it is possible to fix it by
2421 // reusing PhysReg for the copy-related live-ranges. Indeed, we evicted
2422 // some register and PhysReg may be available for the other live-ranges.
2423 SmallSet<unsigned, 4> Visited;
2424 SmallVector<unsigned, 2> RecoloringCandidates;
2425 HintsInfo Info;
2426 unsigned Reg = VirtReg.reg;
2427 unsigned PhysReg = VRM->getPhys(Reg);
2428 // Start the recoloring algorithm from the input live-interval, then
2429 // it will propagate to the ones that are copy-related with it.
2430 Visited.insert(Reg);
2431 RecoloringCandidates.push_back(Reg);
2432
2433 DEBUG(dbgs() << "Trying to reconcile hints for: " << PrintReg(Reg, TRI) << '('
2434 << PrintReg(PhysReg, TRI) << ")\n");
2435
2436 do {
2437 Reg = RecoloringCandidates.pop_back_val();
2438
2439 // We cannot recolor physcal register.
2440 if (TargetRegisterInfo::isPhysicalRegister(Reg))
2441 continue;
2442
2443 assert(VRM->hasPhys(Reg) && "We have unallocated variable!!");
2444
2445 // Get the live interval mapped with this virtual register to be able
2446 // to check for the interference with the new color.
2447 LiveInterval &LI = LIS->getInterval(Reg);
2448 unsigned CurrPhys = VRM->getPhys(Reg);
2449 // Check that the new color matches the register class constraints and
2450 // that it is free for this live range.
2451 if (CurrPhys != PhysReg && (!MRI->getRegClass(Reg)->contains(PhysReg) ||
2452 Matrix->checkInterference(LI, PhysReg)))
2453 continue;
2454
2455 DEBUG(dbgs() << PrintReg(Reg, TRI) << '(' << PrintReg(CurrPhys, TRI)
2456 << ") is recolorable.\n");
2457
2458 // Gather the hint info.
2459 Info.clear();
2460 collectHintInfo(Reg, Info);
2461 // Check if recoloring the live-range will increase the cost of the
2462 // non-identity copies.
2463 if (CurrPhys != PhysReg) {
2464 DEBUG(dbgs() << "Checking profitability:\n");
2465 BlockFrequency OldCopiesCost = getBrokenHintFreq(Info, CurrPhys);
2466 BlockFrequency NewCopiesCost = getBrokenHintFreq(Info, PhysReg);
2467 DEBUG(dbgs() << "Old Cost: " << OldCopiesCost.getFrequency()
2468 << "\nNew Cost: " << NewCopiesCost.getFrequency() << '\n');
2469 if (OldCopiesCost < NewCopiesCost) {
2470 DEBUG(dbgs() << "=> Not profitable.\n");
2471 continue;
2472 }
2473 // At this point, the cost is either cheaper or equal. If it is
2474 // equal, we consider this is profitable because it may expose
2475 // more recoloring opportunities.
2476 DEBUG(dbgs() << "=> Profitable.\n");
2477 // Recolor the live-range.
2478 Matrix->unassign(LI);
2479 Matrix->assign(LI, PhysReg);
2480 }
2481 // Push all copy-related live-ranges to keep reconciling the broken
2482 // hints.
2483 for (const HintInfo &HI : Info) {
2484 if (Visited.insert(HI.Reg).second)
2485 RecoloringCandidates.push_back(HI.Reg);
2486 }
2487 } while (!RecoloringCandidates.empty());
2488}
2489
2490/// \brief Try to recolor broken hints.
2491/// Broken hints may be repaired by recoloring when an evicted variable
2492/// freed up a register for a larger live-range.
2493/// Consider the following example:
2494/// BB1:
2495/// a =
2496/// b =
2497/// BB2:
2498/// ...
2499/// = b
2500/// = a
2501/// Let us assume b gets split:
2502/// BB1:
2503/// a =
2504/// b =
2505/// BB2:
2506/// c = b
2507/// ...
2508/// d = c
2509/// = d
2510/// = a
2511/// Because of how the allocation work, b, c, and d may be assigned different
2512/// colors. Now, if a gets evicted later:
2513/// BB1:
2514/// a =
2515/// st a, SpillSlot
2516/// b =
2517/// BB2:
2518/// c = b
2519/// ...
2520/// d = c
2521/// = d
2522/// e = ld SpillSlot
2523/// = e
2524/// This is likely that we can assign the same register for b, c, and d,
2525/// getting rid of 2 copies.
2526void RAGreedy::tryHintsRecoloring() {
2527 for (LiveInterval *LI : SetOfBrokenHints) {
2528 assert(TargetRegisterInfo::isVirtualRegister(LI->reg) &&
2529 "Recoloring is possible only for virtual registers");
2530 // Some dead defs may be around (e.g., because of debug uses).
2531 // Ignore those.
2532 if (!VRM->hasPhys(LI->reg))
2533 continue;
2534 tryHintRecoloring(*LI);
2535 }
2536}
2537
Quentin Colombet87769712014-02-05 22:13:59 +00002538unsigned RAGreedy::selectOrSplitImpl(LiveInterval &VirtReg,
2539 SmallVectorImpl<unsigned> &NewVRegs,
2540 SmallVirtRegSet &FixedRegisters,
2541 unsigned Depth) {
Manman Ren78cf02a2014-03-25 00:16:25 +00002542 unsigned CostPerUseLimit = ~0u;
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002543 // First try assigning a free register.
Matthias Braun5d1f12d2015-07-15 22:16:00 +00002544 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo, Matrix);
Manman Ren78cf02a2014-03-25 00:16:25 +00002545 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) {
Manman Ren9dee4492014-03-27 21:21:57 +00002546 // When NewVRegs is not empty, we may have made decisions such as evicting
2547 // a virtual register, go with the earlier decisions and use the physical
2548 // register.
Matthias Braun953393a2015-07-14 17:38:17 +00002549 if (CSRCost.getFrequency() && isUnusedCalleeSavedReg(PhysReg) &&
2550 NewVRegs.empty()) {
Manman Ren9dee4492014-03-27 21:21:57 +00002551 unsigned CSRReg = tryAssignCSRFirstTime(VirtReg, Order, PhysReg,
2552 CostPerUseLimit, NewVRegs);
2553 if (CSRReg || !NewVRegs.empty())
2554 // Return now if we decide to use a CSR or create new vregs due to
2555 // pre-splitting.
2556 return CSRReg;
Manman Ren78cf02a2014-03-25 00:16:25 +00002557 } else
2558 return PhysReg;
2559 }
Andrew Trickccef0982010-12-09 18:15:21 +00002560
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002561 LiveRangeStage Stage = getStage(VirtReg);
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002562 DEBUG(dbgs() << StageName[Stage]
2563 << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n');
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002564
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002565 // Try to evict a less worthy live range, but only for ranges from the primary
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002566 // queue. The RS_Split ranges already failed to do this, and they should not
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002567 // get a second chance until they have been split.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002568 if (Stage != RS_Split)
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002569 if (unsigned PhysReg =
2570 tryEvict(VirtReg, Order, NewVRegs, CostPerUseLimit)) {
2571 unsigned Hint = MRI->getSimpleHint(VirtReg.reg);
2572 // If VirtReg has a hint and that hint is broken record this
2573 // virtual register as a recoloring candidate for broken hint.
2574 // Indeed, since we evicted a variable in its neighborhood it is
2575 // likely we can at least partially recolor some of the
2576 // copy-related live-ranges.
2577 if (Hint && Hint != PhysReg)
2578 SetOfBrokenHints.insert(&VirtReg);
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002579 return PhysReg;
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002580 }
Andrew Trickccef0982010-12-09 18:15:21 +00002581
Quentin Colombet63176862016-09-16 22:00:42 +00002582 assert((NewVRegs.empty() || Depth) && "Cannot append to existing NewVRegs");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002583
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002584 // The first time we see a live range, don't try to split or spill.
2585 // Wait until the second time, when all smaller ranges have been allocated.
2586 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002587 if (Stage < RS_Split) {
2588 setStage(VirtReg, RS_Split);
Jakob Stoklund Olesen86985072011-03-19 23:02:47 +00002589 DEBUG(dbgs() << "wait for second round\n");
Mark Laceyf9ea8852013-08-14 23:50:04 +00002590 NewVRegs.push_back(VirtReg.reg);
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002591 return 0;
2592 }
2593
Dylan McKayc328fe52016-10-11 01:04:36 +00002594 if (Stage < RS_Spill) {
2595 // Try splitting VirtReg or interferences.
2596 unsigned NewVRegSizeBefore = NewVRegs.size();
2597 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
2598 if (PhysReg || (NewVRegs.size() - NewVRegSizeBefore))
2599 return PhysReg;
2600 }
2601
Jakob Stoklund Olesena5c88992011-05-06 21:58:30 +00002602 // If we couldn't allocate a register from spilling, there is probably some
2603 // invalid inline assembly. The base class wil report it.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002604 if (Stage >= RS_Done || !VirtReg.isSpillable())
Quentin Colombet87769712014-02-05 22:13:59 +00002605 return tryLastChanceRecoloring(VirtReg, Order, NewVRegs, FixedRegisters,
2606 Depth);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00002607
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002608 // Finally spill VirtReg itself.
Quentin Colombet11922942015-07-17 23:04:06 +00002609 if (EnableDeferredSpilling && getStage(VirtReg) < RS_Memory) {
2610 // TODO: This is experimental and in particular, we do not model
2611 // the live range splitting done by spilling correctly.
2612 // We would need a deep integration with the spiller to do the
2613 // right thing here. Anyway, that is still good for early testing.
2614 setStage(VirtReg, RS_Memory);
2615 DEBUG(dbgs() << "Do as if this register is in memory\n");
2616 NewVRegs.push_back(VirtReg.reg);
2617 } else {
Matthias Braun9f15a792016-11-18 19:43:18 +00002618 NamedRegionTimer T("spill", "Spiller", TimerGroupName,
2619 TimerGroupDescription, TimePassesIsEnabled);
Wei Mi9a16d652016-04-13 03:08:27 +00002620 LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
Quentin Colombet11922942015-07-17 23:04:06 +00002621 spiller().spill(LRE);
2622 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done);
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002623
Quentin Colombet11922942015-07-17 23:04:06 +00002624 if (VerifyEnabled)
2625 MF->verify(this, "After spilling");
2626 }
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +00002627
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002628 // The live virtual register requesting allocation was spilled, so tell
2629 // the caller not to allocate anything during this round.
2630 return 0;
2631}
2632
Adam Nemeta9640662017-01-25 23:20:33 +00002633void RAGreedy::reportNumberOfSplillsReloads(MachineLoop *L, unsigned &Reloads,
2634 unsigned &FoldedReloads,
2635 unsigned &Spills,
2636 unsigned &FoldedSpills) {
2637 Reloads = 0;
2638 FoldedReloads = 0;
2639 Spills = 0;
2640 FoldedSpills = 0;
2641
2642 // Sum up the spill and reloads in subloops.
2643 for (MachineLoop *SubLoop : *L) {
2644 unsigned SubReloads;
2645 unsigned SubFoldedReloads;
2646 unsigned SubSpills;
2647 unsigned SubFoldedSpills;
2648
2649 reportNumberOfSplillsReloads(SubLoop, SubReloads, SubFoldedReloads,
2650 SubSpills, SubFoldedSpills);
2651 Reloads += SubReloads;
2652 FoldedReloads += SubFoldedReloads;
2653 Spills += SubSpills;
2654 FoldedSpills += SubFoldedSpills;
2655 }
2656
2657 const MachineFrameInfo &MFI = MF->getFrameInfo();
2658 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
2659 int FI;
2660
2661 for (MachineBasicBlock *MBB : L->getBlocks())
2662 // Handle blocks that were not included in subloops.
2663 if (Loops->getLoopFor(MBB) == L)
2664 for (MachineInstr &MI : *MBB) {
2665 const MachineMemOperand *MMO;
2666
2667 if (TII->isLoadFromStackSlot(MI, FI) && MFI.isSpillSlotObjectIndex(FI))
2668 ++Reloads;
2669 else if (TII->hasLoadFromStackSlot(MI, MMO, FI) &&
2670 MFI.isSpillSlotObjectIndex(FI))
2671 ++FoldedReloads;
2672 else if (TII->isStoreToStackSlot(MI, FI) &&
2673 MFI.isSpillSlotObjectIndex(FI))
2674 ++Spills;
2675 else if (TII->hasStoreToStackSlot(MI, MMO, FI) &&
2676 MFI.isSpillSlotObjectIndex(FI))
2677 ++FoldedSpills;
2678 }
2679
2680 if (Reloads || FoldedReloads || Spills || FoldedSpills) {
2681 using namespace ore;
2682 MachineOptimizationRemarkMissed R(DEBUG_TYPE, "LoopSpillReload",
2683 L->getStartLoc(), L->getHeader());
2684 if (Spills)
2685 R << NV("NumSpills", Spills) << " spills ";
2686 if (FoldedSpills)
2687 R << NV("NumFoldedSpills", FoldedSpills) << " folded spills ";
2688 if (Reloads)
2689 R << NV("NumReloads", Reloads) << " reloads ";
2690 if (FoldedReloads)
2691 R << NV("NumFoldedReloads", FoldedReloads) << " folded reloads ";
2692 ORE->emit(R << "generated in loop");
2693 }
2694}
2695
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002696bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
2697 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
David Blaikiec8c29202012-08-22 17:18:53 +00002698 << "********** Function: " << mf.getName() << '\n');
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002699
2700 MF = &mf;
Eric Christopher60621802014-10-14 07:22:00 +00002701 TRI = MF->getSubtarget().getRegisterInfo();
2702 TII = MF->getSubtarget().getInstrInfo();
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00002703 RCI.runOnMachineFunction(mf);
Quentin Colombet5caa6a22014-07-02 18:32:04 +00002704
2705 EnableLocalReassign = EnableLocalReassignment ||
Eric Christopher60621802014-10-14 07:22:00 +00002706 MF->getSubtarget().enableRALocalReassignment(
2707 MF->getTarget().getOptLevel());
Quentin Colombet5caa6a22014-07-02 18:32:04 +00002708
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002709 if (VerifyEnabled)
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +00002710 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002711
Jakob Stoklund Olesen2d2dec92012-06-20 22:52:29 +00002712 RegAllocBase::init(getAnalysis<VirtRegMap>(),
2713 getAnalysis<LiveIntervals>(),
2714 getAnalysis<LiveRegMatrix>());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002715 Indexes = &getAnalysis<SlotIndexes>();
Benjamin Kramere2a1d892013-06-17 19:00:36 +00002716 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +00002717 DomTree = &getAnalysis<MachineDominatorTree>();
Adam Nemeta9640662017-01-25 23:20:33 +00002718 ORE = &getAnalysis<MachineOptimizationRemarkEmitterPass>().getORE();
Jakob Stoklund Olesenadecb5e2010-12-10 22:54:44 +00002719 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002720 Loops = &getAnalysis<MachineLoopInfo>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002721 Bundles = &getAnalysis<EdgeBundles>();
2722 SpillPlacer = &getAnalysis<SpillPlacement>();
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00002723 DebugVars = &getAnalysis<LiveDebugVariables>();
Wei Mic0223702016-07-08 21:08:09 +00002724 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002725
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002726 initializeCSRCost();
2727
Robert Lougher11a44b72015-08-10 11:59:44 +00002728 calculateSpillWeightsAndHints(*LIS, mf, VRM, *Loops, *MBFI);
Arnaud A. de Grandmaison760c1e02013-11-10 17:46:31 +00002729
Andrew Trick97064962013-07-25 07:26:26 +00002730 DEBUG(LIS->dump());
2731
Jakob Stoklund Olesenf1a60a62011-02-19 00:53:42 +00002732 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Wei Mic0223702016-07-08 21:08:09 +00002733 SE.reset(new SplitEditor(*SA, *AA, *LIS, *VRM, *DomTree, *MBFI));
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002734 ExtraRegInfo.clear();
2735 ExtraRegInfo.resize(MRI->getNumVirtRegs());
2736 NextCascade = 1;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00002737 IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00002738 GlobalCand.resize(32); // This will grow as needed.
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002739 SetOfBrokenHints.clear();
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002740
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002741 allocatePhysRegs();
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002742 tryHintsRecoloring();
Wei Mi9a16d652016-04-13 03:08:27 +00002743 postOptimization();
Adam Nemeta9640662017-01-25 23:20:33 +00002744 reportNumberOfSplillsReloads();
Wei Mi9a16d652016-04-13 03:08:27 +00002745
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002746 releaseMemory();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002747 return true;
2748}