blob: 26f42c93323ad1190dbb0a15e46f78a8acb10a5e [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
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesen4d7432e2010-12-10 22:21:05 +000016#include "AllocationOrder.h"
Jakob Stoklund Olesen91cbcaf2011-04-02 06:03:35 +000017#include "InterferenceCache.h"
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +000018#include "LiveDebugVariables.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000019#include "RegAllocBase.h"
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +000020#include "SpillPlacement.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "Spiller.h"
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +000022#include "SplitKit.h"
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000023#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000024#include "llvm/Analysis/AliasAnalysis.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000025#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +000026#include "llvm/CodeGen/EdgeBundles.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000027#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Pete Cooper3ca96f92012-04-02 22:44:18 +000028#include "llvm/CodeGen/LiveRangeEdit.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000029#include "llvm/CodeGen/LiveRegMatrix.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000030#include "llvm/CodeGen/LiveStackAnalysis.h"
Benjamin Kramere2a1d892013-06-17 19:00:36 +000031#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +000032#include "llvm/CodeGen/MachineDominators.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"
35#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000036#include "llvm/CodeGen/RegAllocRegistry.h"
Quentin Colombet1fb3362a2014-01-02 22:47:22 +000037#include "llvm/CodeGen/RegisterClassInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000038#include "llvm/CodeGen/VirtRegMap.h"
Quentin Colombet96bd2a12014-04-04 02:05:21 +000039#include "llvm/IR/LLVMContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000040#include "llvm/PassAnalysisSupport.h"
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +000041#include "llvm/Support/BranchProbability.h"
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +000042#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000043#include "llvm/Support/Debug.h"
44#include "llvm/Support/ErrorHandling.h"
Jakob Stoklund Olesen92da7052010-12-11 00:19:56 +000045#include "llvm/Support/Timer.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000046#include "llvm/Support/raw_ostream.h"
Quentin Colombet5caa6a22014-07-02 18:32:04 +000047#include "llvm/Target/TargetSubtargetInfo.h"
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +000048#include <queue>
49
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000050using namespace llvm;
51
Chandler Carruth1b9dde02014-04-22 02:02:50 +000052#define DEBUG_TYPE "regalloc"
53
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000054STATISTIC(NumGlobalSplits, "Number of split global live ranges");
55STATISTIC(NumLocalSplits, "Number of split local live ranges");
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +000056STATISTIC(NumEvicted, "Number of interferences evicted");
57
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +000058static cl::opt<SplitEditor::ComplementSpillMode>
59SplitSpillMode("split-spill-mode", cl::Hidden,
60 cl::desc("Spill mode for splitting live ranges"),
61 cl::values(clEnumValN(SplitEditor::SM_Partition, "default", "Default"),
62 clEnumValN(SplitEditor::SM_Size, "size", "Optimize for size"),
63 clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed"),
64 clEnumValEnd),
65 cl::init(SplitEditor::SM_Partition));
66
Quentin Colombet87769712014-02-05 22:13:59 +000067static cl::opt<unsigned>
68LastChanceRecoloringMaxDepth("lcr-max-depth", cl::Hidden,
69 cl::desc("Last chance recoloring max depth"),
70 cl::init(5));
71
72static cl::opt<unsigned> LastChanceRecoloringMaxInterference(
73 "lcr-max-interf", cl::Hidden,
74 cl::desc("Last chance recoloring maximum number of considered"
75 " interference at a time"),
76 cl::init(8));
77
Quentin Colombet567e30b2014-04-11 21:39:44 +000078static cl::opt<bool>
Quentin Colombet4344da12014-04-11 21:51:09 +000079ExhaustiveSearch("exhaustive-register-search", cl::NotHidden,
Quentin Colombet567e30b2014-04-11 21:39:44 +000080 cl::desc("Exhaustive Search for registers bypassing the depth "
81 "and interference cutoffs of last chance recoloring"));
82
Quentin Colombete1a36632014-07-01 14:08:37 +000083static cl::opt<bool> EnableLocalReassignment(
84 "enable-local-reassign", cl::Hidden,
85 cl::desc("Local reassignment can yield better allocation decisions, but "
86 "may be compile time intensive"),
Quentin Colombet5caa6a22014-07-02 18:32:04 +000087 cl::init(false));
Quentin Colombete1a36632014-07-01 14:08:37 +000088
Manman Ren78cf02a2014-03-25 00:16:25 +000089// FIXME: Find a good default for this flag and remove the flag.
90static cl::opt<unsigned>
91CSRFirstTimeCost("regalloc-csr-first-time-cost",
92 cl::desc("Cost for first time use of callee-saved register."),
93 cl::init(0), cl::Hidden);
94
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +000095static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
96 createGreedyRegisterAllocator);
97
98namespace {
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +000099class RAGreedy : public MachineFunctionPass,
100 public RegAllocBase,
101 private LiveRangeEdit::Delegate {
Quentin Colombet87769712014-02-05 22:13:59 +0000102 // Convenient shortcuts.
103 typedef std::priority_queue<std::pair<unsigned, unsigned> > PQueue;
104 typedef SmallPtrSet<LiveInterval *, 4> SmallLISet;
105 typedef SmallSet<unsigned, 16> SmallVirtRegSet;
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000106
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000107 // context
108 MachineFunction *MF;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000109
Quentin Colombet1fb3362a2014-01-02 22:47:22 +0000110 // Shortcuts to some useful interface.
111 const TargetInstrInfo *TII;
112 const TargetRegisterInfo *TRI;
113 RegisterClassInfo RCI;
114
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000115 // analyses
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000116 SlotIndexes *Indexes;
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000117 MachineBlockFrequencyInfo *MBFI;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000118 MachineDominatorTree *DomTree;
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +0000119 MachineLoopInfo *Loops;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000120 EdgeBundles *Bundles;
121 SpillPlacement *SpillPlacer;
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000122 LiveDebugVariables *DebugVars;
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000123
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000124 // state
Ahmed Charles56440fd2014-03-06 05:51:42 +0000125 std::unique_ptr<Spiller> SpillerInstance;
Quentin Colombet87769712014-02-05 22:13:59 +0000126 PQueue Queue;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000127 unsigned NextCascade;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000128
129 // Live ranges pass through a number of stages as we try to allocate them.
130 // Some of the stages may also create new live ranges:
131 //
132 // - Region splitting.
133 // - Per-block splitting.
134 // - Local splitting.
135 // - Spilling.
136 //
137 // Ranges produced by one of the stages skip the previous stages when they are
138 // dequeued. This improves performance because we can skip interference checks
139 // that are unlikely to give any results. It also guarantees that the live
140 // range splitting algorithm terminates, something that is otherwise hard to
141 // ensure.
142 enum LiveRangeStage {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000143 /// Newly created live range that has never been queued.
144 RS_New,
145
146 /// Only attempt assignment and eviction. Then requeue as RS_Split.
147 RS_Assign,
148
149 /// Attempt live range splitting if assignment is impossible.
150 RS_Split,
151
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000152 /// Attempt more aggressive live range splitting that is guaranteed to make
153 /// progress. This is used for split products that may not be making
154 /// progress.
155 RS_Split2,
156
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000157 /// Live range will be spilled. No more splitting will be attempted.
158 RS_Spill,
159
160 /// There is nothing more we can do to this live range. Abort compilation
161 /// if it can't be assigned.
162 RS_Done
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000163 };
164
Quentin Colombet96bd2a12014-04-04 02:05:21 +0000165 // Enum CutOffStage to keep a track whether the register allocation failed
166 // because of the cutoffs encountered in last chance recoloring.
167 // Note: This is used as bitmask. New value should be next power of 2.
168 enum CutOffStage {
169 // No cutoffs encountered
170 CO_None = 0,
171
172 // lcr-max-depth cutoff encountered
173 CO_Depth = 1,
174
175 // lcr-max-interf cutoff encountered
176 CO_Interf = 2
177 };
178
179 uint8_t CutOffInfo;
180
Eli Friedman78bffa52013-09-10 23:18:14 +0000181#ifndef NDEBUG
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000182 static const char *const StageName[];
Eli Friedman78bffa52013-09-10 23:18:14 +0000183#endif
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000184
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000185 // RegInfo - Keep additional information about each live range.
186 struct RegInfo {
187 LiveRangeStage Stage;
188
189 // Cascade - Eviction loop prevention. See canEvictInterference().
190 unsigned Cascade;
191
192 RegInfo() : Stage(RS_New), Cascade(0) {}
193 };
194
195 IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000196
197 LiveRangeStage getStage(const LiveInterval &VirtReg) const {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000198 return ExtraRegInfo[VirtReg.reg].Stage;
199 }
200
201 void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) {
202 ExtraRegInfo.resize(MRI->getNumVirtRegs());
203 ExtraRegInfo[VirtReg.reg].Stage = Stage;
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000204 }
205
206 template<typename Iterator>
207 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000208 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000209 for (;Begin != End; ++Begin) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000210 unsigned Reg = *Begin;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000211 if (ExtraRegInfo[Reg].Stage == RS_New)
212 ExtraRegInfo[Reg].Stage = NewStage;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000213 }
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +0000214 }
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000215
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000216 /// Cost of evicting interference.
217 struct EvictionCost {
218 unsigned BrokenHints; ///< Total number of broken hints.
219 float MaxWeight; ///< Maximum spill weight evicted.
220
Andrew Trick3621b8a2013-11-22 19:07:38 +0000221 EvictionCost(): BrokenHints(0), MaxWeight(0) {}
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000222
Andrew Trick84852572013-07-25 18:35:14 +0000223 bool isMax() const { return BrokenHints == ~0u; }
224
Andrew Trick3621b8a2013-11-22 19:07:38 +0000225 void setMax() { BrokenHints = ~0u; }
226
227 void setBrokenHints(unsigned NHints) { BrokenHints = NHints; }
228
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000229 bool operator<(const EvictionCost &O) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +0000230 return std::tie(BrokenHints, MaxWeight) <
231 std::tie(O.BrokenHints, O.MaxWeight);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000232 }
233 };
234
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000235 // splitting state.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000236 std::unique_ptr<SplitAnalysis> SA;
237 std::unique_ptr<SplitEditor> SE;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000238
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000239 /// Cached per-block interference maps
240 InterferenceCache IntfCache;
241
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000242 /// All basic blocks where the current register has uses.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000243 SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000244
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000245 /// Global live range splitting candidate info.
246 struct GlobalSplitCandidate {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000247 // Register intended for assignment, or 0.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000248 unsigned PhysReg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000249
250 // SplitKit interval index for this candidate.
251 unsigned IntvIdx;
252
253 // Interference for PhysReg.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000254 InterferenceCache::Cursor Intf;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000255
256 // Bundles where this candidate should be live.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000257 BitVector LiveBundles;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000258 SmallVector<unsigned, 8> ActiveBlocks;
259
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000260 void reset(InterferenceCache &Cache, unsigned Reg) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000261 PhysReg = Reg;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000262 IntvIdx = 0;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000263 Intf.setPhysReg(Cache, Reg);
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000264 LiveBundles.clear();
265 ActiveBlocks.clear();
266 }
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000267
268 // Set B[i] = C for every live bundle where B[i] was NoCand.
269 unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) {
270 unsigned Count = 0;
271 for (int i = LiveBundles.find_first(); i >= 0;
272 i = LiveBundles.find_next(i))
273 if (B[i] == NoCand) {
274 B[i] = C;
275 Count++;
276 }
277 return Count;
278 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000279 };
280
Aditya Nandakumarc1fd0dd2013-11-19 23:51:32 +0000281 /// Candidate info for each PhysReg in AllocationOrder.
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000282 /// This vector never shrinks, but grows to the size of the largest register
283 /// class.
284 SmallVector<GlobalSplitCandidate, 32> GlobalCand;
285
Alp Toker61007d82014-03-02 03:20:38 +0000286 enum : unsigned { NoCand = ~0u };
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000287
288 /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to
289 /// NoCand which indicates the stack interval.
290 SmallVector<unsigned, 32> BundleCand;
291
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +0000292 /// Callee-save register cost, calculated once per machine function.
293 BlockFrequency CSRCost;
294
Quentin Colombet5caa6a22014-07-02 18:32:04 +0000295 /// Run or not the local reassignment heuristic. This information is
296 /// obtained from the TargetSubtargetInfo.
297 bool EnableLocalReassign;
298
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000299 /// Set of broken hints that may be reconciled later because of eviction.
300 SmallSetVector<LiveInterval *, 8> SetOfBrokenHints;
301
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000302public:
303 RAGreedy();
304
305 /// Return the pass name.
Craig Topper4584cd52014-03-07 09:26:03 +0000306 const char* getPassName() const override {
Jakob Stoklund Olesen92da7052010-12-11 00:19:56 +0000307 return "Greedy Register Allocator";
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000308 }
309
310 /// RAGreedy analysis usage.
Craig Topper4584cd52014-03-07 09:26:03 +0000311 void getAnalysisUsage(AnalysisUsage &AU) const override;
312 void releaseMemory() override;
313 Spiller &spiller() override { return *SpillerInstance; }
314 void enqueue(LiveInterval *LI) override;
315 LiveInterval *dequeue() override;
316 unsigned selectOrSplit(LiveInterval&, SmallVectorImpl<unsigned>&) override;
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000317 void aboutToRemoveInterval(LiveInterval &) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000318
319 /// Perform register allocation.
Craig Topper4584cd52014-03-07 09:26:03 +0000320 bool runOnMachineFunction(MachineFunction &mf) override;
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000321
322 static char ID;
Andrew Trickccef0982010-12-09 18:15:21 +0000323
324private:
Quentin Colombet87769712014-02-05 22:13:59 +0000325 unsigned selectOrSplitImpl(LiveInterval &, SmallVectorImpl<unsigned> &,
326 SmallVirtRegSet &, unsigned = 0);
327
Craig Topper4584cd52014-03-07 09:26:03 +0000328 bool LRE_CanEraseVirtReg(unsigned) override;
329 void LRE_WillShrinkVirtReg(unsigned) override;
330 void LRE_DidCloneVirtReg(unsigned, unsigned) override;
Quentin Colombet87769712014-02-05 22:13:59 +0000331 void enqueue(PQueue &CurQueue, LiveInterval *LI);
332 LiveInterval *dequeue(PQueue &CurQueue);
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000333
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000334 BlockFrequency calcSpillCost();
335 bool addSplitConstraints(InterferenceCache::Cursor, BlockFrequency&);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000336 void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>);
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +0000337 void growRegion(GlobalSplitCandidate &Cand);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000338 BlockFrequency calcGlobalSplitCost(GlobalSplitCandidate&);
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +0000339 bool calcCompactRegion(GlobalSplitCandidate&);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +0000340 void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000341 void calcGapWeights(unsigned, SmallVectorImpl<float>&);
Andrew Trick8bb0a252013-07-25 18:35:19 +0000342 unsigned canReassign(LiveInterval &VirtReg, unsigned PhysReg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000343 bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool);
344 bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&);
345 void evictInterference(LiveInterval&, unsigned,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000346 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000347 bool mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
348 SmallLISet &RecoloringCandidates,
349 const SmallVirtRegSet &FixedRegisters);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000350
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000351 unsigned tryAssign(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000352 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000353 unsigned tryEvict(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000354 SmallVectorImpl<unsigned>&, unsigned = ~0u);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000355 unsigned tryRegionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000356 SmallVectorImpl<unsigned>&);
Manman Ren9db66b32014-03-24 23:23:42 +0000357 /// Calculate cost of region splitting.
358 unsigned calculateRegionSplitCost(LiveInterval &VirtReg,
359 AllocationOrder &Order,
360 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +0000361 unsigned &NumCands, bool IgnoreCSR);
Manman Ren9db66b32014-03-24 23:23:42 +0000362 /// Perform region splitting.
363 unsigned doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
364 bool HasCompact,
365 SmallVectorImpl<unsigned> &NewVRegs);
Manman Ren9dee4492014-03-27 21:21:57 +0000366 /// Check other options before using a callee-saved register for the first
367 /// time.
368 unsigned tryAssignCSRFirstTime(LiveInterval &VirtReg, AllocationOrder &Order,
369 unsigned PhysReg, unsigned &CostPerUseLimit,
370 SmallVectorImpl<unsigned> &NewVRegs);
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +0000371 void initializeCSRCost();
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +0000372 unsigned tryBlockSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000373 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +0000374 unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000375 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +0000376 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000377 SmallVectorImpl<unsigned>&);
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +0000378 unsigned trySplit(LiveInterval&, AllocationOrder&,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000379 SmallVectorImpl<unsigned>&);
Quentin Colombet87769712014-02-05 22:13:59 +0000380 unsigned tryLastChanceRecoloring(LiveInterval &, AllocationOrder &,
381 SmallVectorImpl<unsigned> &,
382 SmallVirtRegSet &, unsigned);
383 bool tryRecoloringCandidates(PQueue &, SmallVectorImpl<unsigned> &,
384 SmallVirtRegSet &, unsigned);
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000385 void tryHintRecoloring(LiveInterval &);
386 void tryHintsRecoloring();
387
388 /// Model the information carried by one end of a copy.
389 struct HintInfo {
390 /// The frequency of the copy.
391 BlockFrequency Freq;
392 /// The virtual register or physical register.
393 unsigned Reg;
394 /// Its currently assigned register.
395 /// In case of a physical register Reg == PhysReg.
396 unsigned PhysReg;
397 HintInfo(BlockFrequency Freq, unsigned Reg, unsigned PhysReg)
398 : Freq(Freq), Reg(Reg), PhysReg(PhysReg) {}
399 };
400 typedef SmallVector<HintInfo, 4> HintsInfo;
401 BlockFrequency getBrokenHintFreq(const HintsInfo &, unsigned);
402 void collectHintInfo(unsigned, HintsInfo &);
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000403};
404} // end anonymous namespace
405
406char RAGreedy::ID = 0;
407
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000408#ifndef NDEBUG
409const char *const RAGreedy::StageName[] = {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000410 "RS_New",
411 "RS_Assign",
412 "RS_Split",
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000413 "RS_Split2",
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000414 "RS_Spill",
415 "RS_Done"
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000416};
417#endif
418
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000419// Hysteresis to use when comparing floats.
420// This helps stabilize decisions based on float comparisons.
NAKAMURA Takumia71003a2014-02-04 06:29:38 +0000421const float Hysteresis = (2007 / 2048.0f); // 0.97998046875
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +0000422
423
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000424FunctionPass* llvm::createGreedyRegisterAllocator() {
425 return new RAGreedy();
426}
427
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000428RAGreedy::RAGreedy(): MachineFunctionPass(ID) {
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000429 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000430 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000431 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
432 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Rafael Espindola676c4052011-06-26 22:34:10 +0000433 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry());
Andrew Tricke1c034f2012-01-17 06:55:03 +0000434 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000435 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
436 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
437 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
438 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000439 initializeLiveRegMatrixPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000440 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
441 initializeSpillPlacementPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000442}
443
444void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
445 AU.setPreservesCFG();
Benjamin Kramere2a1d892013-06-17 19:00:36 +0000446 AU.addRequired<MachineBlockFrequencyInfo>();
447 AU.addPreserved<MachineBlockFrequencyInfo>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000448 AU.addRequired<AliasAnalysis>();
449 AU.addPreserved<AliasAnalysis>();
450 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesen12243122012-06-08 23:44:45 +0000451 AU.addPreserved<LiveIntervals>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000452 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000453 AU.addPreserved<SlotIndexes>();
Jakob Stoklund Olesen6aa0fbf2011-04-05 21:40:37 +0000454 AU.addRequired<LiveDebugVariables>();
455 AU.addPreserved<LiveDebugVariables>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000456 AU.addRequired<LiveStacks>();
457 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +0000458 AU.addRequired<MachineDominatorTree>();
459 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000460 AU.addRequired<MachineLoopInfo>();
461 AU.addPreserved<MachineLoopInfo>();
462 AU.addRequired<VirtRegMap>();
463 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000464 AU.addRequired<LiveRegMatrix>();
465 AU.addPreserved<LiveRegMatrix>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000466 AU.addRequired<EdgeBundles>();
467 AU.addRequired<SpillPlacement>();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000468 MachineFunctionPass::getAnalysisUsage(AU);
469}
470
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000471
472//===----------------------------------------------------------------------===//
473// LiveRangeEdit delegate methods
474//===----------------------------------------------------------------------===//
475
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000476bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000477 if (VRM->hasPhys(VirtReg)) {
Quentin Colombeta799e2e2015-01-08 01:16:39 +0000478 LiveInterval &LI = LIS->getInterval(VirtReg);
479 Matrix->unassign(LI);
480 aboutToRemoveInterval(LI);
Jakob Stoklund Olesen43a87502011-03-13 01:23:11 +0000481 return true;
482 }
483 // Unassigned virtreg is probably in the priority queue.
484 // RegAllocBase will erase it after dequeueing.
485 return false;
486}
Jakob Stoklund Olesen8e089642011-03-09 00:57:29 +0000487
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000488void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000489 if (!VRM->hasPhys(VirtReg))
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000490 return;
491
492 // Register is assigned, put it back on the queue for reassignment.
493 LiveInterval &LI = LIS->getInterval(VirtReg);
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000494 Matrix->unassign(LI);
Jakob Stoklund Olesene14b2b22011-03-16 22:56:16 +0000495 enqueue(&LI);
496}
497
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000498void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
Jakob Stoklund Olesen811b9c42011-09-14 17:34:37 +0000499 // Cloning a register we haven't even heard about yet? Just ignore it.
500 if (!ExtraRegInfo.inBounds(Old))
501 return;
502
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000503 // LRE may clone a virtual register because dead code elimination causes it to
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000504 // be split into connected components. The new components are much smaller
505 // than the original, so they should get a new chance at being assigned.
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000506 // same stage as the parent.
Jakob Stoklund Olesen5387bd32011-07-26 00:54:56 +0000507 ExtraRegInfo[Old].Stage = RS_Assign;
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000508 ExtraRegInfo.grow(New);
509 ExtraRegInfo[New] = ExtraRegInfo[Old];
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000510}
511
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000512void RAGreedy::releaseMemory() {
David Blaikieb61064e2014-07-19 01:05:11 +0000513 SpillerInstance.reset();
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000514 ExtraRegInfo.clear();
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +0000515 GlobalCand.clear();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +0000516}
517
Quentin Colombet87769712014-02-05 22:13:59 +0000518void RAGreedy::enqueue(LiveInterval *LI) { enqueue(Queue, LI); }
519
520void RAGreedy::enqueue(PQueue &CurQueue, LiveInterval *LI) {
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000521 // Prioritize live ranges by size, assigning larger ranges first.
522 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000523 const unsigned Size = LI->getSize();
524 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000525 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
526 "Can only enqueue virtual registers");
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +0000527 unsigned Prio;
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000528
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000529 ExtraRegInfo.grow(Reg);
530 if (ExtraRegInfo[Reg].Stage == RS_New)
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000531 ExtraRegInfo[Reg].Stage = RS_Assign;
Jakob Stoklund Olesendd9a2ec2011-03-30 02:52:39 +0000532
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000533 if (ExtraRegInfo[Reg].Stage == RS_Split) {
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000534 // Unsplit ranges that couldn't be allocated immediately are deferred until
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +0000535 // everything else has been allocated.
536 Prio = Size;
Jakob Stoklund Olesencad845f2011-07-28 20:48:23 +0000537 } else {
Andrew Trick52a00932014-02-26 22:07:26 +0000538 // Giant live ranges fall back to the global assignment heuristic, which
539 // prevents excessive spilling in pathological cases.
540 bool ReverseLocal = TRI->reverseLocalAssignment();
Matthias Brauna354cdd2015-03-31 19:57:53 +0000541 const TargetRegisterClass &RC = *MRI->getRegClass(Reg);
Renato Golin4e31ae12014-10-03 12:20:53 +0000542 bool ForceGlobal = !ReverseLocal &&
Matthias Brauna354cdd2015-03-31 19:57:53 +0000543 (Size / SlotIndex::InstrDist) > (2 * RC.getNumRegs());
Andrew Trick52a00932014-02-26 22:07:26 +0000544
545 if (ExtraRegInfo[Reg].Stage == RS_Assign && !ForceGlobal && !LI->empty() &&
Andrew Trick84852572013-07-25 18:35:14 +0000546 LIS->intervalIsInOneMBB(*LI)) {
547 // Allocate original local ranges in linear instruction order. Since they
548 // are singly defined, this produces optimal coloring in the absence of
549 // global interference and other constraints.
Andrew Trick52a00932014-02-26 22:07:26 +0000550 if (!ReverseLocal)
Andrew Trick2d8826a2013-12-11 03:40:15 +0000551 Prio = LI->beginIndex().getInstrDistance(Indexes->getLastIndex());
552 else {
553 // Allocating bottom up may allow many short LRGs to be assigned first
554 // to one of the cheap registers. This could be much faster for very
555 // large blocks on targets with many physical registers.
Matthias Braunf5f89b92015-03-31 19:57:49 +0000556 Prio = Indexes->getZeroIndex().getInstrDistance(LI->endIndex());
Andrew Trick2d8826a2013-12-11 03:40:15 +0000557 }
Matthias Brauna354cdd2015-03-31 19:57:53 +0000558 Prio |= RC.AllocationPriority << 24;
559 } else {
Andrew Trick84852572013-07-25 18:35:14 +0000560 // Allocate global and split ranges in long->short order. Long ranges that
561 // don't fit should be spilled (or split) ASAP so they don't create
562 // interference. Mark a bit to prioritize global above local ranges.
563 Prio = (1u << 29) + Size;
564 }
565 // Mark a higher bit to prioritize global and local above RS_Split.
566 Prio |= (1u << 31);
Jakob Stoklund Olesenb51f65c2011-02-23 00:56:56 +0000567
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000568 // Boost ranges that have a physical register hint.
Jakob Stoklund Olesen74052b02012-12-03 23:23:50 +0000569 if (VRM->hasKnownPreference(Reg))
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +0000570 Prio |= (1u << 30);
571 }
Andrew Trickf4b1ee32013-07-25 18:35:22 +0000572 // The virtual register number is a tie breaker for same-sized ranges.
573 // Give lower vreg numbers higher priority to assign them first.
Quentin Colombet87769712014-02-05 22:13:59 +0000574 CurQueue.push(std::make_pair(Prio, ~Reg));
Jakob Stoklund Oleseneaa650a2010-12-08 22:57:16 +0000575}
576
Quentin Colombet87769712014-02-05 22:13:59 +0000577LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); }
578
579LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) {
580 if (CurQueue.empty())
Craig Topperc0196b12014-04-14 00:51:57 +0000581 return nullptr;
Quentin Colombet87769712014-02-05 22:13:59 +0000582 LiveInterval *LI = &LIS->getInterval(~CurQueue.top().second);
583 CurQueue.pop();
Jakob Stoklund Olesen2329c542011-02-22 23:01:52 +0000584 return LI;
585}
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000586
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000587
588//===----------------------------------------------------------------------===//
589// Direct Assignment
590//===----------------------------------------------------------------------===//
591
592/// tryAssign - Try to assign VirtReg to an available register.
593unsigned RAGreedy::tryAssign(LiveInterval &VirtReg,
594 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000595 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000596 Order.rewind();
597 unsigned PhysReg;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000598 while ((PhysReg = Order.next()))
599 if (!Matrix->checkInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000600 break;
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000601 if (!PhysReg || Order.isHint())
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000602 return PhysReg;
603
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000604 // PhysReg is available, but there may be a better choice.
605
606 // If we missed a simple hint, try to cheaply evict interference from the
607 // preferred register.
608 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg))
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000609 if (Order.isHint(Hint)) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000610 DEBUG(dbgs() << "missed hint " << PrintReg(Hint, TRI) << '\n');
Andrew Trick3621b8a2013-11-22 19:07:38 +0000611 EvictionCost MaxCost;
612 MaxCost.setBrokenHints(1);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000613 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
614 evictInterference(VirtReg, Hint, NewVRegs);
615 return Hint;
616 }
617 }
618
619 // Try to evict interference from a cheaper alternative.
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000620 unsigned Cost = TRI->getCostPerUse(PhysReg);
621
622 // Most registers have 0 additional cost.
623 if (!Cost)
624 return PhysReg;
625
626 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is available at cost " << Cost
627 << '\n');
628 unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost);
629 return CheapReg ? CheapReg : PhysReg;
630}
631
632
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000633//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000634// Interference eviction
635//===----------------------------------------------------------------------===//
636
Andrew Trick8bb0a252013-07-25 18:35:19 +0000637unsigned RAGreedy::canReassign(LiveInterval &VirtReg, unsigned PrevReg) {
638 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo);
639 unsigned PhysReg;
640 while ((PhysReg = Order.next())) {
641 if (PhysReg == PrevReg)
642 continue;
643
644 MCRegUnitIterator Units(PhysReg, TRI);
645 for (; Units.isValid(); ++Units) {
646 // Instantiate a "subquery", not to be confused with the Queries array.
647 LiveIntervalUnion::Query subQ(&VirtReg, &Matrix->getLiveUnions()[*Units]);
648 if (subQ.checkInterference())
649 break;
650 }
651 // If no units have interference, break out with the current PhysReg.
652 if (!Units.isValid())
653 break;
654 }
655 if (PhysReg)
656 DEBUG(dbgs() << "can reassign: " << VirtReg << " from "
657 << PrintReg(PrevReg, TRI) << " to " << PrintReg(PhysReg, TRI)
658 << '\n');
659 return PhysReg;
660}
661
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000662/// shouldEvict - determine if A should evict the assigned live range B. The
663/// eviction policy defined by this function together with the allocation order
664/// defined by enqueue() decides which registers ultimately end up being split
665/// and spilled.
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000666///
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000667/// Cascade numbers are used to prevent infinite loops if this function is a
668/// cyclic relation.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000669///
670/// @param A The live range to be assigned.
671/// @param IsHint True when A is about to be assigned to its preferred
672/// register.
673/// @param B The live range to be evicted.
674/// @param BreaksHint True when B is already assigned to its preferred register.
675bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint,
676 LiveInterval &B, bool BreaksHint) {
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +0000677 bool CanSplit = getStage(B) < RS_Spill;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000678
679 // Be fairly aggressive about following hints as long as the evictee can be
680 // split.
681 if (CanSplit && IsHint && !BreaksHint)
682 return true;
683
Andrew Trick059e8002013-11-22 19:07:42 +0000684 if (A.weight > B.weight) {
685 DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight << '\n');
686 return true;
687 }
688 return false;
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +0000689}
690
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000691/// canEvictInterference - Return true if all interferences between VirtReg and
Manman Renfa32ca12014-02-25 19:47:15 +0000692/// PhysReg can be evicted.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000693///
694/// @param VirtReg Live range that is about to be assigned.
695/// @param PhysReg Desired register for assignment.
Dmitri Gribenko881929c2012-09-12 16:59:47 +0000696/// @param IsHint True when PhysReg is VirtReg's preferred register.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000697/// @param MaxCost Only look for cheaper candidates and update with new cost
698/// when returning true.
699/// @returns True when interference can be evicted cheaper than MaxCost.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000700bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000701 bool IsHint, EvictionCost &MaxCost) {
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000702 // It is only possible to evict virtual register interference.
703 if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg)
704 return false;
705
Andrew Trick84852572013-07-25 18:35:14 +0000706 bool IsLocal = LIS->intervalIsInOneMBB(VirtReg);
707
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000708 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
709 // involved in an eviction before. If a cascade number was assigned, deny
710 // evicting anything with the same or a newer cascade number. This prevents
711 // infinite eviction loops.
712 //
713 // This works out so a register without a cascade number is allowed to evict
714 // anything, and it can be evicted by anything.
715 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
716 if (!Cascade)
717 Cascade = NextCascade;
718
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000719 EvictionCost Cost;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000720 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
721 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000722 // If there is 10 or more interferences, chances are one is heavier.
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000723 if (Q.collectInterferingVRegs(10) >= 10)
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000724 return false;
725
Jakob Stoklund Olesen0f175eb2011-04-11 21:47:01 +0000726 // Check if any interfering live range is heavier than MaxWeight.
727 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
728 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000729 assert(TargetRegisterInfo::isVirtualRegister(Intf->reg) &&
730 "Only expecting virtual register interference from query");
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000731 // Never evict spill products. They cannot split or spill.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +0000732 if (getStage(*Intf) == RS_Done)
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +0000733 return false;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000734 // Once a live range becomes small enough, it is urgent that we find a
735 // register for it. This is indicated by an infinite spill weight. These
736 // urgent live ranges get to evict almost anything.
Jakob Stoklund Olesen05e22452012-05-30 21:46:58 +0000737 //
738 // Also allow urgent evictions of unspillable ranges from a strictly
739 // larger allocation order.
740 bool Urgent = !VirtReg.isSpillable() &&
741 (Intf->isSpillable() ||
742 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(VirtReg.reg)) <
743 RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(Intf->reg)));
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000744 // Only evict older cascades or live ranges without a cascade.
745 unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade;
746 if (Cascade <= IntfCascade) {
747 if (!Urgent)
748 return false;
749 // We permit breaking cascades for urgent evictions. It should be the
750 // last resort, though, so make it really expensive.
751 Cost.BrokenHints += 10;
752 }
753 // Would this break a satisfied hint?
754 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg);
755 // Update eviction cost.
756 Cost.BrokenHints += BreaksHint;
757 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
758 // Abort if this would be too expensive.
759 if (!(Cost < MaxCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000760 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000761 if (Urgent)
762 continue;
Andrew Trickc2ab53a2013-11-29 23:49:38 +0000763 // Apply the eviction policy for non-urgent evictions.
764 if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
765 return false;
Andrew Trick84852572013-07-25 18:35:14 +0000766 // If !MaxCost.isMax(), then we're just looking for a cheap register.
767 // Evicting another local live range in this case could lead to suboptimal
768 // coloring.
Andrew Trick8bb0a252013-07-25 18:35:19 +0000769 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) &&
Quentin Colombet5caa6a22014-07-02 18:32:04 +0000770 (!EnableLocalReassign || !canReassign(*Intf, PhysReg))) {
Andrew Trick84852572013-07-25 18:35:14 +0000771 return false;
Andrew Trick8bb0a252013-07-25 18:35:19 +0000772 }
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000773 }
774 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000775 MaxCost = Cost;
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000776 return true;
777}
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000778
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000779/// evictInterference - Evict any interferring registers that prevent VirtReg
780/// from being assigned to Physreg. This assumes that canEvictInterference
781/// returned true.
782void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000783 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000784 // Make sure that VirtReg has a cascade number, and assign that cascade
785 // number to every evicted register. These live ranges than then only be
786 // evicted by a newer cascade, preventing infinite loops.
787 unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade;
788 if (!Cascade)
789 Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++;
790
791 DEBUG(dbgs() << "evicting " << PrintReg(PhysReg, TRI)
792 << " interference: Cascade " << Cascade << '\n');
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000793
794 // Collect all interfering virtregs first.
795 SmallVector<LiveInterval*, 8> Intfs;
796 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
797 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000798 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +0000799 ArrayRef<LiveInterval*> IVR = Q.interferingVRegs();
800 Intfs.append(IVR.begin(), IVR.end());
801 }
802
803 // Evict them second. This will invalidate the queries.
804 for (unsigned i = 0, e = Intfs.size(); i != e; ++i) {
805 LiveInterval *Intf = Intfs[i];
806 // The same VirtReg may be present in multiple RegUnits. Skip duplicates.
807 if (!VRM->hasPhys(Intf->reg))
808 continue;
809 Matrix->unassign(*Intf);
810 assert((ExtraRegInfo[Intf->reg].Cascade < Cascade ||
811 VirtReg.isSpillable() < Intf->isSpillable()) &&
812 "Cannot decrease cascade number, illegal eviction");
813 ExtraRegInfo[Intf->reg].Cascade = Cascade;
814 ++NumEvicted;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000815 NewVRegs.push_back(Intf->reg);
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000816 }
817}
818
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000819/// tryEvict - Try to evict all interferences for a physreg.
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +0000820/// @param VirtReg Currently unassigned virtual register.
821/// @param Order Physregs to try.
822/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000823unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
824 AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +0000825 SmallVectorImpl<unsigned> &NewVRegs,
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000826 unsigned CostPerUseLimit) {
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000827 NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled);
828
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000829 // Keep track of the cheapest interference seen so far.
Andrew Trick3621b8a2013-11-22 19:07:38 +0000830 EvictionCost BestCost;
831 BestCost.setMax();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000832 unsigned BestPhys = 0;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000833 unsigned OrderLimit = Order.getOrder().size();
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000834
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000835 // When we are just looking for a reduced cost per use, don't break any
836 // hints, and only evict smaller spill weights.
837 if (CostPerUseLimit < ~0u) {
838 BestCost.BrokenHints = 0;
839 BestCost.MaxWeight = VirtReg.weight;
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000840
841 // Check of any registers in RC are below CostPerUseLimit.
842 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg.reg);
843 unsigned MinCost = RegClassInfo.getMinCost(RC);
844 if (MinCost >= CostPerUseLimit) {
Craig Toppercf0444b2014-11-17 05:50:14 +0000845 DEBUG(dbgs() << TRI->getRegClassName(RC) << " minimum cost = " << MinCost
Jakob Stoklund Olesen3dd236c2013-01-12 00:57:44 +0000846 << ", no cheaper registers to be found.\n");
847 return 0;
848 }
849
850 // It is normal for register classes to have a long tail of registers with
851 // the same cost. We don't need to look at them if they're too expensive.
852 if (TRI->getCostPerUse(Order.getOrder().back()) >= CostPerUseLimit) {
853 OrderLimit = RegClassInfo.getLastCostChange(RC);
854 DEBUG(dbgs() << "Only trying the first " << OrderLimit << " regs.\n");
855 }
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000856 }
857
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000858 Order.rewind();
Aditya Nandakumar73f3d332013-12-05 21:18:40 +0000859 while (unsigned PhysReg = Order.next(OrderLimit)) {
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000860 if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit)
861 continue;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000862 // The first use of a callee-saved register in a function has cost 1.
863 // Don't start using a CSR when the CostPerUseLimit is low.
864 if (CostPerUseLimit == 1)
865 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
866 if (!MRI->isPhysRegUsed(CSR)) {
867 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
868 << PrintReg(CSR, TRI) << '\n');
869 continue;
870 }
Jakob Stoklund Olesen0e34c1d2011-04-20 18:19:48 +0000871
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000872 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000873 continue;
874
875 // Best so far.
876 BestPhys = PhysReg;
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000877
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000878 // Stop if the hint can be used.
Jakob Stoklund Olesen3cb2cb82012-12-04 22:25:16 +0000879 if (Order.isHint())
Jakob Stoklund Olesen9918b332011-02-25 01:04:22 +0000880 break;
Jakob Stoklund Olesen1305bc02011-02-09 01:14:03 +0000881 }
882
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000883 if (!BestPhys)
884 return 0;
885
Jakob Stoklund Olesen4931bbc2011-07-08 20:46:18 +0000886 evictInterference(VirtReg, BestPhys, NewVRegs);
Jakob Stoklund Olesen6bd68cd2011-02-23 00:29:52 +0000887 return BestPhys;
Andrew Trickccef0982010-12-09 18:15:21 +0000888}
889
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +0000890
891//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000892// Region Splitting
893//===----------------------------------------------------------------------===//
894
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000895/// addSplitConstraints - Fill out the SplitConstraints vector based on the
896/// interference pattern in Physreg and its aliases. Add the constraints to
897/// SpillPlacement and return the static cost of this split in Cost, assuming
898/// that all preferences in SplitConstraints are met.
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000899/// Return false if there are no bundles with positive bias.
900bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf,
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000901 BlockFrequency &Cost) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000902 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000903
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000904 // Reset interference dependent info.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000905 SplitConstraints.resize(UseBlocks.size());
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000906 BlockFrequency StaticCost = 0;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000907 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
908 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000909 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000910
Jakob Stoklund Olesenb1b76ad2011-02-09 22:50:26 +0000911 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000912 Intf.moveToBlock(BC.Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000913 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
914 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
David Blaikie041f1aa2013-05-15 07:36:59 +0000915 BC.ChangesValue = BI.FirstDef.isValid();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000916
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000917 if (!Intf.hasInterference())
918 continue;
919
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000920 // Number of spill code instructions to insert.
921 unsigned Ins = 0;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000922
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000923 // Interference for the live-in value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000924 if (BI.LiveIn) {
Jakob Stoklund Olesen89339072011-04-04 15:32:15 +0000925 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000926 BC.Entry = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000927 else if (Intf.first() < BI.FirstInstr)
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000928 BC.Entry = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000929 else if (Intf.first() < BI.LastInstr)
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000930 ++Ins;
Jakob Stoklund Olesenf248b202011-02-08 23:02:58 +0000931 }
932
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000933 // Interference for the live-out value.
Jakob Stoklund Olesenca26e0a2011-04-02 06:03:38 +0000934 if (BI.LiveOut) {
Jakob Stoklund Olesend93b0e32011-04-05 04:20:29 +0000935 if (Intf.last() >= SA->getLastSplitPoint(BC.Number))
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000936 BC.Exit = SpillPlacement::MustSpill, ++Ins;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000937 else if (Intf.last() > BI.LastInstr)
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000938 BC.Exit = SpillPlacement::PrefSpill, ++Ins;
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +0000939 else if (Intf.last() > BI.FirstInstr)
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000940 ++Ins;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000941 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +0000942
943 // Accumulate the total frequency of inserted spill code.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +0000944 while (Ins--)
945 StaticCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +0000946 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000947 Cost = StaticCost;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000948
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000949 // Add constraints for use-blocks. Note that these are the only constraints
950 // that may add a positive bias, it is downhill from here.
951 SpillPlacer->addConstraints(SplitConstraints);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000952 return SpillPlacer->scanActiveBundles();
953}
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000954
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000955
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000956/// addThroughConstraints - Add constraints and links to SpillPlacer from the
957/// live-through blocks in Blocks.
958void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf,
959 ArrayRef<unsigned> Blocks) {
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000960 const unsigned GroupSize = 8;
961 SpillPlacement::BlockConstraint BCS[GroupSize];
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000962 unsigned TBS[GroupSize];
963 unsigned B = 0, T = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000964
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000965 for (unsigned i = 0; i != Blocks.size(); ++i) {
966 unsigned Number = Blocks[i];
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000967 Intf.moveToBlock(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000968
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000969 if (!Intf.hasInterference()) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000970 assert(T < GroupSize && "Array overflow");
971 TBS[T] = Number;
972 if (++T == GroupSize) {
Frits van Bommel717d7ed2011-07-18 12:00:32 +0000973 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000974 T = 0;
975 }
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000976 continue;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000977 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000978
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +0000979 assert(B < GroupSize && "Array overflow");
980 BCS[B].Number = Number;
981
Jakob Stoklund Olesen6d2bbc12011-04-07 17:27:46 +0000982 // Interference for the live-in value.
983 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
984 BCS[B].Entry = SpillPlacement::MustSpill;
985 else
986 BCS[B].Entry = SpillPlacement::PrefSpill;
987
988 // Interference for the live-out value.
989 if (Intf.last() >= SA->getLastSplitPoint(Number))
990 BCS[B].Exit = SpillPlacement::MustSpill;
991 else
992 BCS[B].Exit = SpillPlacement::PrefSpill;
993
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000994 if (++B == GroupSize) {
Craig Toppere1d12942014-08-27 05:25:25 +0000995 SpillPlacer->addConstraints(makeArrayRef(BCS, B));
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000996 B = 0;
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +0000997 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +0000998 }
999
Craig Toppere1d12942014-08-27 05:25:25 +00001000 SpillPlacer->addConstraints(makeArrayRef(BCS, B));
Frits van Bommel717d7ed2011-07-18 12:00:32 +00001001 SpillPlacer->addLinks(makeArrayRef(TBS, T));
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001002}
1003
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001004void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001005 // Keep track of through blocks that have not been added to SpillPlacer.
1006 BitVector Todo = SA->getThroughBlocks();
1007 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks;
1008 unsigned AddedTo = 0;
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001009#ifndef NDEBUG
1010 unsigned Visited = 0;
1011#endif
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001012
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001013 for (;;) {
1014 ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive();
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001015 // Find new through blocks in the periphery of PrefRegBundles.
1016 for (int i = 0, e = NewBundles.size(); i != e; ++i) {
1017 unsigned Bundle = NewBundles[i];
1018 // Look at all blocks connected to Bundle in the full graph.
1019 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
1020 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
1021 I != E; ++I) {
1022 unsigned Block = *I;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001023 if (!Todo.test(Block))
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001024 continue;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001025 Todo.reset(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001026 // This is a new through block. Add it to SpillPlacer later.
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001027 ActiveBlocks.push_back(Block);
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001028#ifndef NDEBUG
1029 ++Visited;
1030#endif
1031 }
1032 }
1033 // Any new blocks to add?
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001034 if (ActiveBlocks.size() == AddedTo)
1035 break;
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +00001036
1037 // Compute through constraints from the interference, or assume that all
1038 // through blocks prefer spilling when forming compact regions.
Craig Toppere1d12942014-08-27 05:25:25 +00001039 auto NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
Jakob Stoklund Olesena953bf12011-07-23 03:22:33 +00001040 if (Cand.PhysReg)
1041 addThroughConstraints(Cand.Intf, NewBlocks);
1042 else
Jakob Stoklund Olesen86954522011-08-03 23:09:38 +00001043 // Provide a strong negative bias on through blocks to prevent unwanted
1044 // liveness on loop backedges.
1045 SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true);
Jakob Stoklund Olesen91f3a302011-07-05 18:46:42 +00001046 AddedTo = ActiveBlocks.size();
1047
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001048 // Perhaps iterating can enable more bundles?
1049 SpillPlacer->iterate();
1050 }
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001051 DEBUG(dbgs() << ", v=" << Visited);
1052}
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001053
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001054/// calcCompactRegion - Compute the set of edge bundles that should be live
1055/// when splitting the current live range into compact regions. Compact
1056/// regions can be computed without looking at interference. They are the
1057/// regions formed by removing all the live-through blocks from the live range.
1058///
1059/// Returns false if the current live range is already compact, or if the
1060/// compact regions would form single block regions anyway.
1061bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) {
1062 // Without any through blocks, the live range is already compact.
1063 if (!SA->getNumThroughBlocks())
1064 return false;
1065
1066 // Compact regions don't correspond to any physreg.
1067 Cand.reset(IntfCache, 0);
1068
1069 DEBUG(dbgs() << "Compact region bundles");
1070
1071 // Use the spill placer to determine the live bundles. GrowRegion pretends
1072 // that all the through blocks have interference when PhysReg is unset.
1073 SpillPlacer->prepare(Cand.LiveBundles);
1074
1075 // The static split cost will be zero since Cand.Intf reports no interference.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001076 BlockFrequency Cost;
Jakob Stoklund Olesenecad62f2011-07-23 03:41:57 +00001077 if (!addSplitConstraints(Cand.Intf, Cost)) {
1078 DEBUG(dbgs() << ", none.\n");
1079 return false;
1080 }
1081
1082 growRegion(Cand);
1083 SpillPlacer->finish();
1084
1085 if (!Cand.LiveBundles.any()) {
1086 DEBUG(dbgs() << ", none.\n");
1087 return false;
1088 }
1089
1090 DEBUG({
1091 for (int i = Cand.LiveBundles.find_first(); i>=0;
1092 i = Cand.LiveBundles.find_next(i))
1093 dbgs() << " EB#" << i;
1094 dbgs() << ".\n";
1095 });
1096 return true;
1097}
1098
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001099/// calcSpillCost - Compute how expensive it would be to split the live range in
1100/// SA around all use blocks instead of forming bundle regions.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001101BlockFrequency RAGreedy::calcSpillCost() {
1102 BlockFrequency Cost = 0;
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001103 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1104 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1105 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1106 unsigned Number = BI.MBB->getNumber();
1107 // We normally only need one spill instruction - a load or a store.
1108 Cost += SpillPlacer->getBlockFrequency(Number);
1109
1110 // Unless the value is redefined in the block.
Jakob Stoklund Olesen3c145052011-08-02 23:04:08 +00001111 if (BI.LiveIn && BI.LiveOut && BI.FirstDef)
1112 Cost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001113 }
1114 return Cost;
1115}
1116
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001117/// calcGlobalSplitCost - Return the global split cost of following the split
1118/// pattern in LiveBundles. This cost should be added to the local cost of the
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001119/// interference pattern in SplitConstraints.
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001120///
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001121BlockFrequency RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand) {
1122 BlockFrequency GlobalCost = 0;
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001123 const BitVector &LiveBundles = Cand.LiveBundles;
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001124 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1125 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1126 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001127 SpillPlacement::BlockConstraint &BC = SplitConstraints[i];
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001128 bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, 0)];
1129 bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, 1)];
1130 unsigned Ins = 0;
1131
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001132 if (BI.LiveIn)
1133 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
1134 if (BI.LiveOut)
1135 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001136 while (Ins--)
1137 GlobalCost += SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001138 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001139
Jakob Stoklund Olesenc49df2c2011-04-12 21:30:53 +00001140 for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) {
1141 unsigned Number = Cand.ActiveBlocks[i];
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001142 bool RegIn = LiveBundles[Bundles->getBundle(Number, 0)];
1143 bool RegOut = LiveBundles[Bundles->getBundle(Number, 1)];
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001144 if (!RegIn && !RegOut)
1145 continue;
1146 if (RegIn && RegOut) {
1147 // We need double spill code if this block has interference.
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001148 Cand.Intf.moveToBlock(Number);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001149 if (Cand.Intf.hasInterference()) {
1150 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1151 GlobalCost += SpillPlacer->getBlockFrequency(Number);
1152 }
Jakob Stoklund Olesen8ce2f432011-04-06 21:32:41 +00001153 continue;
1154 }
1155 // live-in / stack-out or stack-in live-out.
1156 GlobalCost += SpillPlacer->getBlockFrequency(Number);
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001157 }
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001158 return GlobalCost;
1159}
1160
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001161/// splitAroundRegion - Split the current live range around the regions
1162/// determined by BundleCand and GlobalCand.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001163///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001164/// Before calling this function, GlobalCand and BundleCand must be initialized
1165/// so each bundle is assigned to a valid candidate, or NoCand for the
1166/// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor
1167/// objects must be initialized for the current live range, and intervals
1168/// created for the used candidates.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001169///
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001170/// @param LREdit The LiveRangeEdit object handling the current split.
1171/// @param UsedCands List of used GlobalCand entries. Every BundleCand value
1172/// must appear in this list.
1173void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit,
1174 ArrayRef<unsigned> UsedCands) {
1175 // These are the intervals created for new global ranges. We may create more
1176 // intervals for local ranges.
1177 const unsigned NumGlobalIntvs = LREdit.size();
1178 DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs << " globals.\n");
1179 assert(NumGlobalIntvs && "No global intervals configured");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001180
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001181 // Isolate even single instructions when dealing with a proper sub-class.
Jakob Stoklund Olesen22f37a12011-08-06 18:20:24 +00001182 // That guarantees register class inflation for the stack interval because it
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001183 // is all copies.
1184 unsigned Reg = SA->getParent().reg;
1185 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
1186
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001187 // First handle all the blocks with uses.
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001188 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1189 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1190 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001191 unsigned Number = BI.MBB->getNumber();
1192 unsigned IntvIn = 0, IntvOut = 0;
1193 SlotIndex IntfIn, IntfOut;
1194 if (BI.LiveIn) {
1195 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1196 if (CandIn != NoCand) {
1197 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1198 IntvIn = Cand.IntvIdx;
1199 Cand.Intf.moveToBlock(Number);
1200 IntfIn = Cand.Intf.first();
1201 }
1202 }
1203 if (BI.LiveOut) {
1204 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1205 if (CandOut != NoCand) {
1206 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1207 IntvOut = Cand.IntvIdx;
1208 Cand.Intf.moveToBlock(Number);
1209 IntfOut = Cand.Intf.last();
1210 }
1211 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001212
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001213 // Create separate intervals for isolated blocks with multiple uses.
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001214 if (!IntvIn && !IntvOut) {
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001215 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " isolated.\n");
Jakob Stoklund Olesen8627ea92011-08-05 22:20:45 +00001216 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
Jakob Stoklund Olesenadc6a4c2011-06-30 01:30:39 +00001217 SE->splitSingleBlock(BI);
Jakob Stoklund Olesenc70b6972011-04-12 19:32:53 +00001218 continue;
1219 }
1220
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001221 if (IntvIn && IntvOut)
1222 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1223 else if (IntvIn)
1224 SE->splitRegInBlock(BI, IntvIn, IntfIn);
Jakob Stoklund Olesen795da1c2011-07-15 21:47:57 +00001225 else
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001226 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001227 }
1228
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001229 // Handle live-through blocks. The relevant live-through blocks are stored in
1230 // the ActiveBlocks list with each candidate. We need to filter out
1231 // duplicates.
1232 BitVector Todo = SA->getThroughBlocks();
1233 for (unsigned c = 0; c != UsedCands.size(); ++c) {
1234 ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks;
1235 for (unsigned i = 0, e = Blocks.size(); i != e; ++i) {
1236 unsigned Number = Blocks[i];
1237 if (!Todo.test(Number))
1238 continue;
1239 Todo.reset(Number);
1240
1241 unsigned IntvIn = 0, IntvOut = 0;
1242 SlotIndex IntfIn, IntfOut;
1243
1244 unsigned CandIn = BundleCand[Bundles->getBundle(Number, 0)];
1245 if (CandIn != NoCand) {
1246 GlobalSplitCandidate &Cand = GlobalCand[CandIn];
1247 IntvIn = Cand.IntvIdx;
1248 Cand.Intf.moveToBlock(Number);
1249 IntfIn = Cand.Intf.first();
1250 }
1251
1252 unsigned CandOut = BundleCand[Bundles->getBundle(Number, 1)];
1253 if (CandOut != NoCand) {
1254 GlobalSplitCandidate &Cand = GlobalCand[CandOut];
1255 IntvOut = Cand.IntvIdx;
1256 Cand.Intf.moveToBlock(Number);
1257 IntfOut = Cand.Intf.last();
1258 }
1259 if (!IntvIn && !IntvOut)
1260 continue;
1261 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1262 }
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001263 }
1264
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001265 ++NumGlobalSplits;
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001266
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001267 SmallVector<unsigned, 8> IntvMap;
1268 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001269 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00001270
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001271 ExtraRegInfo.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesen5cc91b22011-05-28 02:32:57 +00001272 unsigned OrigBlocks = SA->getNumLiveBlocks();
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001273
1274 // Sort out the new intervals created by splitting. We get four kinds:
1275 // - Remainder intervals should not be split again.
1276 // - Candidate intervals can be assigned to Cand.PhysReg.
1277 // - Block-local splits are candidates for local splitting.
1278 // - DCE leftovers should go back on the queue.
1279 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001280 LiveInterval &Reg = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001281
1282 // Ignore old intervals from DCE.
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001283 if (getStage(Reg) != RS_New)
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001284 continue;
1285
1286 // Remainder interval. Don't try splitting again, spill if it doesn't
1287 // allocate.
1288 if (IntvMap[i] == 0) {
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00001289 setStage(Reg, RS_Spill);
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001290 continue;
1291 }
1292
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001293 // Global intervals. Allow repeated splitting as long as the number of live
1294 // blocks is strictly decreasing.
1295 if (IntvMap[i] < NumGlobalIntvs) {
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00001296 if (SA->countLiveBlocks(&Reg) >= OrigBlocks) {
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001297 DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks
1298 << " blocks as original.\n");
1299 // Don't allow repeated splitting as a safe guard against looping.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001300 setStage(Reg, RS_Split2);
Jakob Stoklund Oleseneef23272011-04-26 22:33:12 +00001301 }
1302 continue;
1303 }
1304
1305 // Other intervals are treated as new. This includes local intervals created
1306 // for blocks with multiple uses, and anything created by DCE.
Jakob Stoklund Olesen6a663b82011-04-21 18:38:15 +00001307 }
1308
Jakob Stoklund Olesen28d79cd2011-03-27 22:49:21 +00001309 if (VerifyEnabled)
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001310 MF->verify(this, "After splitting live range around region");
1311}
1312
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001313unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001314 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001315 unsigned NumCands = 0;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001316 BlockFrequency BestCost;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001317
1318 // Check if we can split this live range around a compact region.
Jakob Stoklund Olesen45df7e02011-09-12 16:54:42 +00001319 bool HasCompact = calcCompactRegion(GlobalCand.front());
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001320 if (HasCompact) {
1321 // Yes, keep GlobalCand[0] as the compact region candidate.
1322 NumCands = 1;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001323 BestCost = BlockFrequency::getMaxFrequency();
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001324 } else {
1325 // No benefit from the compact region, our fallback will be per-block
1326 // splitting. Make sure we find a solution that is cheaper than spilling.
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001327 BestCost = calcSpillCost();
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001328 DEBUG(dbgs() << "Cost of isolating all blocks = ";
1329 MBFI->printBlockFreq(dbgs(), BestCost) << '\n');
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001330 }
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001331
Manman Ren9db66b32014-03-24 23:23:42 +00001332 unsigned BestCand =
Manman Ren78cf02a2014-03-25 00:16:25 +00001333 calculateRegionSplitCost(VirtReg, Order, BestCost, NumCands,
1334 false/*IgnoreCSR*/);
Manman Ren9db66b32014-03-24 23:23:42 +00001335
1336 // No solutions found, fall back to single block splitting.
1337 if (!HasCompact && BestCand == NoCand)
1338 return 0;
1339
1340 return doRegionSplit(VirtReg, BestCand, HasCompact, NewVRegs);
1341}
1342
1343unsigned RAGreedy::calculateRegionSplitCost(LiveInterval &VirtReg,
1344 AllocationOrder &Order,
1345 BlockFrequency &BestCost,
Manman Ren78cf02a2014-03-25 00:16:25 +00001346 unsigned &NumCands,
1347 bool IgnoreCSR) {
Manman Ren9db66b32014-03-24 23:23:42 +00001348 unsigned BestCand = NoCand;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001349 Order.rewind();
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001350 while (unsigned PhysReg = Order.next()) {
Manman Ren78cf02a2014-03-25 00:16:25 +00001351 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
1352 if (IgnoreCSR && !MRI->isPhysRegUsed(CSR))
1353 continue;
1354
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001355 // Discard bad candidates before we run out of interference cache cursors.
1356 // This will only affect register classes with a lot of registers (>32).
1357 if (NumCands == IntfCache.getMaxCursors()) {
1358 unsigned WorstCount = ~0u;
1359 unsigned Worst = 0;
1360 for (unsigned i = 0; i != NumCands; ++i) {
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001361 if (i == BestCand || !GlobalCand[i].PhysReg)
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001362 continue;
1363 unsigned Count = GlobalCand[i].LiveBundles.count();
1364 if (Count < WorstCount)
1365 Worst = i, WorstCount = Count;
1366 }
1367 --NumCands;
1368 GlobalCand[Worst] = GlobalCand[NumCands];
Jakob Stoklund Olesen559d4dc2011-11-01 00:02:31 +00001369 if (BestCand == NumCands)
1370 BestCand = Worst;
Jakob Stoklund Olesena153ca52011-07-14 05:35:11 +00001371 }
1372
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001373 if (GlobalCand.size() <= NumCands)
1374 GlobalCand.resize(NumCands+1);
1375 GlobalSplitCandidate &Cand = GlobalCand[NumCands];
1376 Cand.reset(IntfCache, PhysReg);
Jakob Stoklund Olesen4b598e12011-03-05 01:10:31 +00001377
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001378 SpillPlacer->prepare(Cand.LiveBundles);
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001379 BlockFrequency Cost;
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001380 if (!addSplitConstraints(Cand.Intf, Cost)) {
Jakob Stoklund Olesened47ed42011-04-09 02:59:09 +00001381 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tno positive bundles\n");
Jakob Stoklund Olesen81439a82011-04-06 21:32:38 +00001382 continue;
1383 }
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001384 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << "\tstatic = ";
1385 MBFI->printBlockFreq(dbgs(), Cost));
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001386 if (Cost >= BestCost) {
1387 DEBUG({
1388 if (BestCand == NoCand)
1389 dbgs() << " worse than no bundles\n";
1390 else
1391 dbgs() << " worse than "
1392 << PrintReg(GlobalCand[BestCand].PhysReg, TRI) << '\n';
1393 });
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001394 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001395 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001396 growRegion(Cand);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001397
Jakob Stoklund Olesen36b5d8a2011-04-06 19:13:57 +00001398 SpillPlacer->finish();
1399
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001400 // No live bundles, defer to splitSingleBlocks().
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001401 if (!Cand.LiveBundles.any()) {
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001402 DEBUG(dbgs() << " no bundles.\n");
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001403 continue;
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001404 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001405
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001406 Cost += calcGlobalSplitCost(Cand);
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001407 DEBUG({
Michael Gottesmanb78dec82013-12-14 00:25:45 +00001408 dbgs() << ", total = "; MBFI->printBlockFreq(dbgs(), Cost)
1409 << " with bundles";
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001410 for (int i = Cand.LiveBundles.find_first(); i>=0;
1411 i = Cand.LiveBundles.find_next(i))
Jakob Stoklund Olesen1a9b66c2011-03-05 03:28:51 +00001412 dbgs() << " EB#" << i;
1413 dbgs() << ".\n";
1414 });
Jakob Stoklund Olesen032891b2011-04-22 22:47:40 +00001415 if (Cost < BestCost) {
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001416 BestCand = NumCands;
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001417 BestCost = Cost;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001418 }
Jakob Stoklund Olesend7e99372011-07-14 00:17:10 +00001419 ++NumCands;
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001420 }
Manman Ren9db66b32014-03-24 23:23:42 +00001421 return BestCand;
1422}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001423
Manman Ren9db66b32014-03-24 23:23:42 +00001424unsigned RAGreedy::doRegionSplit(LiveInterval &VirtReg, unsigned BestCand,
1425 bool HasCompact,
1426 SmallVectorImpl<unsigned> &NewVRegs) {
1427 SmallVector<unsigned, 8> UsedCands;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001428 // Prepare split editor.
Jakob Stoklund Olesene5bbe372012-05-19 05:25:46 +00001429 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001430 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001431
1432 // Assign all edge bundles to the preferred candidate, or NoCand.
1433 BundleCand.assign(Bundles->getNumBundles(), NoCand);
1434
1435 // Assign bundles for the best candidate region.
1436 if (BestCand != NoCand) {
1437 GlobalSplitCandidate &Cand = GlobalCand[BestCand];
1438 if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
1439 UsedCands.push_back(BestCand);
1440 Cand.IntvIdx = SE->openIntv();
1441 DEBUG(dbgs() << "Split for " << PrintReg(Cand.PhysReg, TRI) << " in "
1442 << B << " bundles, intv " << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001443 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001444 }
1445 }
1446
1447 // Assign bundles for the compact region.
1448 if (HasCompact) {
1449 GlobalSplitCandidate &Cand = GlobalCand.front();
1450 assert(!Cand.PhysReg && "Compact region has no physreg");
1451 if (unsigned B = Cand.getBundles(BundleCand, 0)) {
1452 UsedCands.push_back(0);
1453 Cand.IntvIdx = SE->openIntv();
1454 DEBUG(dbgs() << "Split for compact region in " << B << " bundles, intv "
1455 << Cand.IntvIdx << ".\n");
Chandler Carruth77eb5a02011-08-03 23:07:27 +00001456 (void)B;
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00001457 }
1458 }
1459
1460 splitAroundRegion(LREdit, UsedCands);
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00001461 return 0;
1462}
1463
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001464
1465//===----------------------------------------------------------------------===//
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001466// Per-Block Splitting
1467//===----------------------------------------------------------------------===//
1468
1469/// tryBlockSplit - Split a global live range around every block with uses. This
1470/// creates a lot of local live ranges, that will be split by tryLocalSplit if
1471/// they don't allocate.
1472unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001473 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001474 assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed");
1475 unsigned Reg = VirtReg.reg;
1476 bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg));
Jakob Stoklund Olesene5bbe372012-05-19 05:25:46 +00001477 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Oleseneecb2fb2011-09-12 16:49:21 +00001478 SE->reset(LREdit, SplitSpillMode);
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001479 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1480 for (unsigned i = 0; i != UseBlocks.size(); ++i) {
1481 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
1482 if (SA->shouldSplitSingleBlock(BI, SingleInstrs))
1483 SE->splitSingleBlock(BI);
1484 }
1485 // No blocks were split.
1486 if (LREdit.empty())
1487 return 0;
1488
1489 // We did split for some blocks.
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001490 SmallVector<unsigned, 8> IntvMap;
1491 SE->finish(&IntvMap);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001492
1493 // Tell LiveDebugVariables about the new ranges.
Mark Laceyf9ea8852013-08-14 23:50:04 +00001494 DebugVars->splitRegister(Reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0de95ef2011-08-05 23:10:40 +00001495
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001496 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1497
1498 // Sort out the new intervals created by splitting. The remainder interval
1499 // goes straight to spilling, the new local ranges get to stay RS_New.
1500 for (unsigned i = 0, e = LREdit.size(); i != e; ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001501 LiveInterval &LI = LIS->getInterval(LREdit.get(i));
Jakob Stoklund Olesen02cf10b2011-08-05 23:50:31 +00001502 if (getStage(LI) == RS_New && IntvMap[i] == 0)
1503 setStage(LI, RS_Spill);
1504 }
1505
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001506 if (VerifyEnabled)
1507 MF->verify(this, "After splitting live range around basic blocks");
1508 return 0;
1509}
1510
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001511
1512//===----------------------------------------------------------------------===//
1513// Per-Instruction Splitting
1514//===----------------------------------------------------------------------===//
1515
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001516/// Get the number of allocatable registers that match the constraints of \p Reg
1517/// on \p MI and that are also in \p SuperRC.
1518static unsigned getNumAllocatableRegsForConstraints(
1519 const MachineInstr *MI, unsigned Reg, const TargetRegisterClass *SuperRC,
1520 const TargetInstrInfo *TII, const TargetRegisterInfo *TRI,
1521 const RegisterClassInfo &RCI) {
1522 assert(SuperRC && "Invalid register class");
1523
1524 const TargetRegisterClass *ConstrainedRC =
1525 MI->getRegClassConstraintEffectForVReg(Reg, SuperRC, TII, TRI,
1526 /* ExploreBundle */ true);
1527 if (!ConstrainedRC)
1528 return 0;
1529 return RCI.getNumAllocatableRegs(ConstrainedRC);
1530}
1531
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001532/// tryInstructionSplit - Split a live range around individual instructions.
1533/// This is normally not worthwhile since the spiller is doing essentially the
1534/// same thing. However, when the live range is in a constrained register
1535/// class, it may help to insert copies such that parts of the live range can
1536/// be moved to a larger register class.
1537///
1538/// This is similar to spilling to a larger register class.
1539unsigned
1540RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001541 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001542 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001543 // There is no point to this if there are no larger sub-classes.
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001544 if (!RegClassInfo.isProperSubClass(CurRC))
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001545 return 0;
1546
1547 // Always enable split spill mode, since we're effectively spilling to a
1548 // register.
1549 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
1550 SE->reset(LREdit, SplitEditor::SM_Size);
1551
1552 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
1553 if (Uses.size() <= 1)
1554 return 0;
1555
1556 DEBUG(dbgs() << "Split around " << Uses.size() << " individual instrs.\n");
1557
Eric Christopher433c4322015-03-10 23:46:01 +00001558 const TargetRegisterClass *SuperRC =
1559 TRI->getLargestLegalSuperClass(CurRC, *MF);
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001560 unsigned SuperRCNumAllocatableRegs = RCI.getNumAllocatableRegs(SuperRC);
1561 // Split around every non-copy instruction if this split will relax
1562 // the constraints on the virtual register.
1563 // Otherwise, splitting just inserts uncoalescable copies that do not help
1564 // the allocation.
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001565 for (unsigned i = 0; i != Uses.size(); ++i) {
1566 if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]))
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00001567 if (MI->isFullCopy() ||
1568 SuperRCNumAllocatableRegs ==
1569 getNumAllocatableRegsForConstraints(MI, VirtReg.reg, SuperRC, TII,
1570 TRI, RCI)) {
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001571 DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI);
1572 continue;
1573 }
1574 SE->openIntv();
1575 SlotIndex SegStart = SE->enterIntvBefore(Uses[i]);
1576 SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]);
1577 SE->useIntv(SegStart, SegStop);
1578 }
1579
1580 if (LREdit.empty()) {
1581 DEBUG(dbgs() << "All uses were copies.\n");
1582 return 0;
1583 }
1584
1585 SmallVector<unsigned, 8> IntvMap;
1586 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001587 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001588 ExtraRegInfo.resize(MRI->getNumVirtRegs());
1589
1590 // Assign all new registers to RS_Spill. This was the last chance.
1591 setStage(LREdit.begin(), LREdit.end(), RS_Spill);
1592 return 0;
1593}
1594
1595
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001596//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001597// Local Splitting
1598//===----------------------------------------------------------------------===//
1599
1600
1601/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
1602/// in order to use PhysReg between two entries in SA->UseSlots.
1603///
1604/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
1605///
1606void RAGreedy::calcGapWeights(unsigned PhysReg,
1607 SmallVectorImpl<float> &GapWeight) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001608 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1609 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001610 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001611 const unsigned NumGaps = Uses.size()-1;
1612
1613 // Start and end points for the interference check.
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001614 SlotIndex StartIdx =
1615 BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr;
1616 SlotIndex StopIdx =
1617 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001618
1619 GapWeight.assign(NumGaps, 0.0f);
1620
1621 // Add interference from each overlapping register.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001622 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1623 if (!Matrix->query(const_cast<LiveInterval&>(SA->getParent()), *Units)
1624 .checkInterference())
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001625 continue;
1626
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001627 // We know that VirtReg is a continuous interval from FirstInstr to
1628 // LastInstr, so we don't need InterferenceQuery.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001629 //
1630 // Interference that overlaps an instruction is counted in both gaps
1631 // surrounding the instruction. The exception is interference before
1632 // StartIdx and after StopIdx.
1633 //
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001634 LiveIntervalUnion::SegmentIter IntI =
1635 Matrix->getLiveUnions()[*Units] .find(StartIdx);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001636 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
1637 // Skip the gaps before IntI.
1638 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
1639 if (++Gap == NumGaps)
1640 break;
1641 if (Gap == NumGaps)
1642 break;
1643
1644 // Update the gaps covered by IntI.
1645 const float weight = IntI.value()->weight;
1646 for (; Gap != NumGaps; ++Gap) {
1647 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1648 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1649 break;
1650 }
1651 if (Gap == NumGaps)
1652 break;
1653 }
1654 }
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001655
1656 // Add fixed interference.
1657 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
Matthias Braun34e1be92013-10-10 21:29:02 +00001658 const LiveRange &LR = LIS->getRegUnit(*Units);
1659 LiveRange::const_iterator I = LR.find(StartIdx);
1660 LiveRange::const_iterator E = LR.end();
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001661
1662 // Same loop as above. Mark any overlapped gaps as HUGE_VALF.
1663 for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) {
1664 while (Uses[Gap+1].getBoundaryIndex() < I->start)
1665 if (++Gap == NumGaps)
1666 break;
1667 if (Gap == NumGaps)
1668 break;
1669
1670 for (; Gap != NumGaps; ++Gap) {
Aaron Ballman04999042013-11-13 00:15:44 +00001671 GapWeight[Gap] = llvm::huge_valf;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001672 if (Uses[Gap+1].getBaseIndex() >= I->end)
1673 break;
1674 }
1675 if (Gap == NumGaps)
1676 break;
1677 }
1678 }
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001679}
1680
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001681/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1682/// basic block.
1683///
1684unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001685 SmallVectorImpl<unsigned> &NewVRegs) {
Jakob Stoklund Olesenbf91c4e2011-04-06 03:57:00 +00001686 assert(SA->getUseBlocks().size() == 1 && "Not a local interval");
1687 const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001688
1689 // Note that it is possible to have an interval that is live-in or live-out
1690 // while only covering a single block - A phi-def can use undef values from
1691 // predecessors, and the block could be a single-block loop.
1692 // We don't bother doing anything clever about such a case, we simply assume
Jakob Stoklund Olesen43859a62011-08-02 22:54:14 +00001693 // that the interval is continuous from FirstInstr to LastInstr. We should
1694 // make sure that we don't do anything illegal to such an interval, though.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001695
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001696 ArrayRef<SlotIndex> Uses = SA->getUseSlots();
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001697 if (Uses.size() <= 2)
1698 return 0;
1699 const unsigned NumGaps = Uses.size()-1;
1700
1701 DEBUG({
1702 dbgs() << "tryLocalSplit: ";
1703 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
Jakob Stoklund Olesen994fed62012-01-12 17:53:44 +00001704 dbgs() << ' ' << Uses[i];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001705 dbgs() << '\n';
1706 });
1707
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001708 // If VirtReg is live across any register mask operands, compute a list of
1709 // gaps with register masks.
1710 SmallVector<unsigned, 8> RegMaskGaps;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001711 if (Matrix->checkRegMaskInterference(VirtReg)) {
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001712 // Get regmask slots for the whole block.
1713 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001714 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001715 // Constrain to VirtReg's live range.
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001716 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1717 Uses.front().getRegSlot()) - RMS.begin();
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001718 unsigned re = RMS.size();
1719 for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001720 // Look for Uses[i] <= RMS <= Uses[i+1].
1721 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1722 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001723 continue;
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001724 // Skip a regmask on the same instruction as the last use. It doesn't
1725 // overlap the live range.
1726 if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps)
1727 break;
1728 DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]);
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001729 RegMaskGaps.push_back(i);
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001730 // Advance ri to the next gap. A regmask on one of the uses counts in
1731 // both gaps.
1732 while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1]))
1733 ++ri;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001734 }
Jakob Stoklund Olesenb0c0d342012-02-14 23:51:27 +00001735 DEBUG(dbgs() << '\n');
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001736 }
1737
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001738 // Since we allow local split results to be split again, there is a risk of
1739 // creating infinite loops. It is tempting to require that the new live
1740 // ranges have less instructions than the original. That would guarantee
1741 // convergence, but it is too strict. A live range with 3 instructions can be
1742 // split 2+3 (including the COPY), and we want to allow that.
1743 //
1744 // Instead we use these rules:
1745 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001746 // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001747 // noop split, of course).
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001748 // 2. Require progress be made for ranges with getStage() == RS_Split2. All
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001749 // the new ranges must have fewer instructions than before the split.
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001750 // 3. New ranges with the same number of instructions are marked RS_Split2,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001751 // smaller ranges are marked RS_New.
1752 //
1753 // These rules allow a 3 -> 2+3 split once, which we need. They also prevent
1754 // excessive splitting and infinite loops.
1755 //
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001756 bool ProgressRequired = getStage(VirtReg) >= RS_Split2;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001757
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001758 // Best split candidate.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001759 unsigned BestBefore = NumGaps;
1760 unsigned BestAfter = 0;
1761 float BestDiff = 0;
1762
Jakob Stoklund Olesenefeb3a12013-07-16 18:26:18 +00001763 const float blockFreq =
1764 SpillPlacer->getBlockFrequency(BI.MBB->getNumber()).getFrequency() *
Michael Gottesman5e985ee2013-12-14 02:37:38 +00001765 (1.0f / MBFI->getEntryFreq());
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001766 SmallVector<float, 8> GapWeight;
1767
1768 Order.rewind();
1769 while (unsigned PhysReg = Order.next()) {
1770 // Keep track of the largest spill weight that would need to be evicted in
1771 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1772 calcGapWeights(PhysReg, GapWeight);
1773
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001774 // Remove any gaps with regmask clobbers.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001775 if (Matrix->checkRegMaskInterference(VirtReg, PhysReg))
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001776 for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i)
Aaron Ballman04999042013-11-13 00:15:44 +00001777 GapWeight[RegMaskGaps[i]] = llvm::huge_valf;
Jakob Stoklund Olesen17402e32012-02-11 00:42:18 +00001778
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001779 // Try to find the best sequence of gaps to close.
1780 // The new spill weight must be larger than any gap interference.
1781
1782 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001783 unsigned SplitBefore = 0, SplitAfter = 1;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001784
1785 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1786 // It is the spill weight that needs to be evicted.
1787 float MaxGap = GapWeight[0];
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001788
1789 for (;;) {
1790 // Live before/after split?
1791 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1792 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1793
1794 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1795 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1796 << " i=" << MaxGap);
1797
1798 // Stop before the interval gets so big we wouldn't be making progress.
1799 if (!LiveBefore && !LiveAfter) {
1800 DEBUG(dbgs() << " all\n");
1801 break;
1802 }
1803 // Should the interval be extended or shrunk?
1804 bool Shrink = true;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001805
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001806 // How many gaps would the new range have?
1807 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1808
1809 // Legally, without causing looping?
1810 bool Legal = !ProgressRequired || NewGaps < NumGaps;
1811
Aaron Ballman04999042013-11-13 00:15:44 +00001812 if (Legal && MaxGap < llvm::huge_valf) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001813 // Estimate the new spill weight. Each instruction reads or writes the
1814 // register. Conservatively assume there are no read-modify-write
1815 // instructions.
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001816 //
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001817 // Try to guess the size of the new interval.
Arnaud A. de Grandmaison829dd812014-11-04 20:51:24 +00001818 const float EstWeight = normalizeSpillWeight(
1819 blockFreq * (NewGaps + 1),
1820 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1821 (LiveBefore + LiveAfter) * SlotIndex::InstrDist,
1822 1);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001823 // Would this split be possible to allocate?
1824 // Never allocate all gaps, we wouldn't be making progress.
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001825 DEBUG(dbgs() << " w=" << EstWeight);
1826 if (EstWeight * Hysteresis >= MaxGap) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001827 Shrink = false;
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001828 float Diff = EstWeight - MaxGap;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001829 if (Diff > BestDiff) {
1830 DEBUG(dbgs() << " (best)");
Jakob Stoklund Olesen357dd362011-04-30 05:07:46 +00001831 BestDiff = Hysteresis * Diff;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001832 BestBefore = SplitBefore;
1833 BestAfter = SplitAfter;
1834 }
1835 }
1836 }
1837
1838 // Try to shrink.
1839 if (Shrink) {
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001840 if (++SplitBefore < SplitAfter) {
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001841 DEBUG(dbgs() << " shrink\n");
1842 // Recompute the max when necessary.
1843 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1844 MaxGap = GapWeight[SplitBefore];
1845 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1846 MaxGap = std::max(MaxGap, GapWeight[i]);
1847 }
1848 continue;
1849 }
1850 MaxGap = 0;
1851 }
1852
1853 // Try to extend the interval.
1854 if (SplitAfter >= NumGaps) {
1855 DEBUG(dbgs() << " end\n");
1856 break;
1857 }
1858
1859 DEBUG(dbgs() << " extend\n");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001860 MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001861 }
1862 }
1863
1864 // Didn't find any candidates?
1865 if (BestBefore == NumGaps)
1866 return 0;
1867
1868 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1869 << '-' << Uses[BestAfter] << ", " << BestDiff
1870 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1871
Jakob Stoklund Olesene5bbe372012-05-19 05:25:46 +00001872 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001873 SE->reset(LREdit);
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001874
Jakob Stoklund Olesenc9601982011-03-03 01:29:13 +00001875 SE->openIntv();
1876 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1877 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1878 SE->useIntv(SegStart, SegStop);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001879 SmallVector<unsigned, 8> IntvMap;
1880 SE->finish(&IntvMap);
Mark Laceyf9ea8852013-08-14 23:50:04 +00001881 DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS);
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001882
1883 // If the new range has the same number of instructions as before, mark it as
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001884 // RS_Split2 so the next split will be forced to make progress. Otherwise,
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001885 // leave the new intervals as RS_New so they can compete.
1886 bool LiveBefore = BestBefore != 0 || BI.LiveIn;
1887 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut;
1888 unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter;
1889 if (NewGaps >= NumGaps) {
1890 DEBUG(dbgs() << "Tagging non-progress ranges: ");
1891 assert(!ProgressRequired && "Didn't make progress when it was required.");
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001892 for (unsigned i = 0, e = IntvMap.size(); i != e; ++i)
1893 if (IntvMap[i] == 1) {
Mark Laceyf9ea8852013-08-14 23:50:04 +00001894 setStage(LIS->getInterval(LREdit.get(i)), RS_Split2);
1895 DEBUG(dbgs() << PrintReg(LREdit.get(i)));
Jakob Stoklund Olesendf476272011-06-06 23:55:20 +00001896 }
1897 DEBUG(dbgs() << '\n');
1898 }
Jakob Stoklund Olesen99827e82011-02-17 22:53:48 +00001899 ++NumLocalSplits;
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001900
1901 return 0;
1902}
1903
1904//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001905// Live Range Splitting
1906//===----------------------------------------------------------------------===//
1907
1908/// trySplit - Try to split VirtReg or one of its interferences, making it
1909/// assignable.
1910/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1911unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
Mark Laceyf9ea8852013-08-14 23:50:04 +00001912 SmallVectorImpl<unsigned>&NewVRegs) {
Jakob Stoklund Olesend4bb1d42011-08-05 23:50:33 +00001913 // Ranges must be Split2 or less.
1914 if (getStage(VirtReg) >= RS_Spill)
1915 return 0;
1916
Jakob Stoklund Olesen93c87362011-02-17 19:13:53 +00001917 // Local intervals are handled separately.
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001918 if (LIS->intervalIsInOneMBB(VirtReg)) {
1919 NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001920 SA->analyze(&VirtReg);
Jakob Stoklund Olesen0ce90492012-05-23 22:37:27 +00001921 unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs);
1922 if (PhysReg || !NewVRegs.empty())
1923 return PhysReg;
1924 return tryInstructionSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen609bc442011-02-19 00:38:40 +00001925 }
1926
1927 NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001928
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00001929 SA->analyze(&VirtReg);
1930
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00001931 // FIXME: SplitAnalysis may repair broken live ranges coming from the
1932 // coalescer. That may cause the range to become allocatable which means that
1933 // tryRegionSplit won't be making progress. This check should be replaced with
1934 // an assertion when the coalescer is fixed.
1935 if (SA->didRepairRange()) {
1936 // VirtReg has changed, so all cached queries are invalid.
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00001937 Matrix->invalidateVirtRegs();
Jakob Stoklund Oleseneaa6ed12011-05-03 20:42:13 +00001938 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs))
1939 return PhysReg;
1940 }
1941
Jakob Stoklund Olesen45011172011-07-25 15:25:43 +00001942 // First try to split around a region spanning multiple blocks. RS_Split2
1943 // ranges already made dubious progress with region splitting, so they go
1944 // straight to single block splitting.
1945 if (getStage(VirtReg) < RS_Split2) {
1946 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
1947 if (PhysReg || !NewVRegs.empty())
1948 return PhysReg;
1949 }
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001950
Jakob Stoklund Olesencef5d8f2011-08-05 23:04:18 +00001951 // Then isolate blocks.
1952 return tryBlockSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00001953}
1954
Quentin Colombet87769712014-02-05 22:13:59 +00001955//===----------------------------------------------------------------------===//
1956// Last Chance Recoloring
1957//===----------------------------------------------------------------------===//
1958
1959/// mayRecolorAllInterferences - Check if the virtual registers that
1960/// interfere with \p VirtReg on \p PhysReg (or one of its aliases) may be
1961/// recolored to free \p PhysReg.
1962/// When true is returned, \p RecoloringCandidates has been augmented with all
1963/// the live intervals that need to be recolored in order to free \p PhysReg
1964/// for \p VirtReg.
1965/// \p FixedRegisters contains all the virtual registers that cannot be
1966/// recolored.
1967bool
1968RAGreedy::mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg,
1969 SmallLISet &RecoloringCandidates,
1970 const SmallVirtRegSet &FixedRegisters) {
1971 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg);
1972
1973 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) {
1974 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units);
1975 // If there is LastChanceRecoloringMaxInterference or more interferences,
1976 // chances are one would not be recolorable.
1977 if (Q.collectInterferingVRegs(LastChanceRecoloringMaxInterference) >=
Quentin Colombet567e30b2014-04-11 21:39:44 +00001978 LastChanceRecoloringMaxInterference && !ExhaustiveSearch) {
Quentin Colombet87769712014-02-05 22:13:59 +00001979 DEBUG(dbgs() << "Early abort: too many interferences.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00001980 CutOffInfo |= CO_Interf;
Quentin Colombet87769712014-02-05 22:13:59 +00001981 return false;
1982 }
1983 for (unsigned i = Q.interferingVRegs().size(); i; --i) {
1984 LiveInterval *Intf = Q.interferingVRegs()[i - 1];
1985 // If Intf is done and sit on the same register class as VirtReg,
1986 // it would not be recolorable as it is in the same state as VirtReg.
1987 if ((getStage(*Intf) == RS_Done &&
1988 MRI->getRegClass(Intf->reg) == CurRC) ||
1989 FixedRegisters.count(Intf->reg)) {
1990 DEBUG(dbgs() << "Early abort: the inteference is not recolorable.\n");
1991 return false;
1992 }
1993 RecoloringCandidates.insert(Intf);
1994 }
1995 }
1996 return true;
1997}
1998
1999/// tryLastChanceRecoloring - Try to assign a color to \p VirtReg by recoloring
2000/// its interferences.
2001/// Last chance recoloring chooses a color for \p VirtReg and recolors every
2002/// virtual register that was using it. The recoloring process may recursively
2003/// use the last chance recoloring. Therefore, when a virtual register has been
2004/// assigned a color by this mechanism, it is marked as Fixed, i.e., it cannot
2005/// be last-chance-recolored again during this recoloring "session".
2006/// E.g.,
2007/// Let
2008/// vA can use {R1, R2 }
2009/// vB can use { R2, R3}
2010/// vC can use {R1 }
2011/// Where vA, vB, and vC cannot be split anymore (they are reloads for
2012/// instance) and they all interfere.
2013///
2014/// vA is assigned R1
2015/// vB is assigned R2
2016/// vC tries to evict vA but vA is already done.
2017/// Regular register allocation fails.
2018///
2019/// Last chance recoloring kicks in:
2020/// vC does as if vA was evicted => vC uses R1.
2021/// vC is marked as fixed.
2022/// vA needs to find a color.
2023/// None are available.
2024/// vA cannot evict vC: vC is a fixed virtual register now.
2025/// vA does as if vB was evicted => vA uses R2.
2026/// vB needs to find a color.
2027/// R3 is available.
2028/// Recoloring => vC = R1, vA = R2, vB = R3
2029///
Alp Toker70b36992014-02-25 04:21:15 +00002030/// \p Order defines the preferred allocation order for \p VirtReg.
Quentin Colombet87769712014-02-05 22:13:59 +00002031/// \p NewRegs will contain any new virtual register that have been created
2032/// (split, spill) during the process and that must be assigned.
2033/// \p FixedRegisters contains all the virtual registers that cannot be
2034/// recolored.
2035/// \p Depth gives the current depth of the last chance recoloring.
2036/// \return a physical register that can be used for VirtReg or ~0u if none
2037/// exists.
2038unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg,
2039 AllocationOrder &Order,
2040 SmallVectorImpl<unsigned> &NewVRegs,
2041 SmallVirtRegSet &FixedRegisters,
2042 unsigned Depth) {
2043 DEBUG(dbgs() << "Try last chance recoloring for " << VirtReg << '\n');
2044 // Ranges must be Done.
Quentin Colombet0e3b5e02014-02-13 05:17:37 +00002045 assert((getStage(VirtReg) >= RS_Done || !VirtReg.isSpillable()) &&
Quentin Colombet87769712014-02-05 22:13:59 +00002046 "Last chance recoloring should really be last chance");
2047 // Set the max depth to LastChanceRecoloringMaxDepth.
2048 // We may want to reconsider that if we end up with a too large search space
2049 // for target with hundreds of registers.
2050 // Indeed, in that case we may want to cut the search space earlier.
Quentin Colombet567e30b2014-04-11 21:39:44 +00002051 if (Depth >= LastChanceRecoloringMaxDepth && !ExhaustiveSearch) {
Quentin Colombet87769712014-02-05 22:13:59 +00002052 DEBUG(dbgs() << "Abort because max depth has been reached.\n");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002053 CutOffInfo |= CO_Depth;
Quentin Colombet87769712014-02-05 22:13:59 +00002054 return ~0u;
2055 }
2056
2057 // Set of Live intervals that will need to be recolored.
2058 SmallLISet RecoloringCandidates;
2059 // Record the original mapping virtual register to physical register in case
2060 // the recoloring fails.
2061 DenseMap<unsigned, unsigned> VirtRegToPhysReg;
2062 // Mark VirtReg as fixed, i.e., it will not be recolored pass this point in
2063 // this recoloring "session".
2064 FixedRegisters.insert(VirtReg.reg);
2065
2066 Order.rewind();
2067 while (unsigned PhysReg = Order.next()) {
2068 DEBUG(dbgs() << "Try to assign: " << VirtReg << " to "
2069 << PrintReg(PhysReg, TRI) << '\n');
2070 RecoloringCandidates.clear();
2071 VirtRegToPhysReg.clear();
2072
2073 // It is only possible to recolor virtual register interference.
2074 if (Matrix->checkInterference(VirtReg, PhysReg) >
2075 LiveRegMatrix::IK_VirtReg) {
2076 DEBUG(dbgs() << "Some inteferences are not with virtual registers.\n");
2077
2078 continue;
2079 }
2080
2081 // Early give up on this PhysReg if it is obvious we cannot recolor all
2082 // the interferences.
2083 if (!mayRecolorAllInterferences(PhysReg, VirtReg, RecoloringCandidates,
2084 FixedRegisters)) {
2085 DEBUG(dbgs() << "Some inteferences cannot be recolored.\n");
2086 continue;
2087 }
2088
2089 // RecoloringCandidates contains all the virtual registers that interfer
2090 // with VirtReg on PhysReg (or one of its aliases).
2091 // Enqueue them for recoloring and perform the actual recoloring.
2092 PQueue RecoloringQueue;
2093 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2094 EndIt = RecoloringCandidates.end();
2095 It != EndIt; ++It) {
2096 unsigned ItVirtReg = (*It)->reg;
2097 enqueue(RecoloringQueue, *It);
2098 assert(VRM->hasPhys(ItVirtReg) &&
2099 "Interferences are supposed to be with allocated vairables");
2100
2101 // Record the current allocation.
2102 VirtRegToPhysReg[ItVirtReg] = VRM->getPhys(ItVirtReg);
2103 // unset the related struct.
2104 Matrix->unassign(**It);
2105 }
2106
2107 // Do as if VirtReg was assigned to PhysReg so that the underlying
2108 // recoloring has the right information about the interferes and
2109 // available colors.
2110 Matrix->assign(VirtReg, PhysReg);
2111
2112 // Save the current recoloring state.
2113 // If we cannot recolor all the interferences, we will have to start again
2114 // at this point for the next physical register.
2115 SmallVirtRegSet SaveFixedRegisters(FixedRegisters);
2116 if (tryRecoloringCandidates(RecoloringQueue, NewVRegs, FixedRegisters,
2117 Depth)) {
2118 // Do not mess up with the global assignment process.
2119 // I.e., VirtReg must be unassigned.
2120 Matrix->unassign(VirtReg);
2121 return PhysReg;
2122 }
2123
2124 DEBUG(dbgs() << "Fail to assign: " << VirtReg << " to "
2125 << PrintReg(PhysReg, TRI) << '\n');
2126
2127 // The recoloring attempt failed, undo the changes.
2128 FixedRegisters = SaveFixedRegisters;
2129 Matrix->unassign(VirtReg);
2130
2131 for (SmallLISet::iterator It = RecoloringCandidates.begin(),
2132 EndIt = RecoloringCandidates.end();
2133 It != EndIt; ++It) {
2134 unsigned ItVirtReg = (*It)->reg;
2135 if (VRM->hasPhys(ItVirtReg))
2136 Matrix->unassign(**It);
2137 Matrix->assign(**It, VirtRegToPhysReg[ItVirtReg]);
2138 }
2139 }
2140
2141 // Last chance recoloring did not worked either, give up.
2142 return ~0u;
2143}
2144
2145/// tryRecoloringCandidates - Try to assign a new color to every register
2146/// in \RecoloringQueue.
2147/// \p NewRegs will contain any new virtual register created during the
2148/// recoloring process.
2149/// \p FixedRegisters[in/out] contains all the registers that have been
2150/// recolored.
2151/// \return true if all virtual registers in RecoloringQueue were successfully
2152/// recolored, false otherwise.
2153bool RAGreedy::tryRecoloringCandidates(PQueue &RecoloringQueue,
2154 SmallVectorImpl<unsigned> &NewVRegs,
2155 SmallVirtRegSet &FixedRegisters,
2156 unsigned Depth) {
2157 while (!RecoloringQueue.empty()) {
2158 LiveInterval *LI = dequeue(RecoloringQueue);
2159 DEBUG(dbgs() << "Try to recolor: " << *LI << '\n');
2160 unsigned PhysReg;
2161 PhysReg = selectOrSplitImpl(*LI, NewVRegs, FixedRegisters, Depth + 1);
2162 if (PhysReg == ~0u || !PhysReg)
2163 return false;
2164 DEBUG(dbgs() << "Recoloring of " << *LI
2165 << " succeeded with: " << PrintReg(PhysReg, TRI) << '\n');
2166 Matrix->assign(*LI, PhysReg);
2167 FixedRegisters.insert(LI->reg);
2168 }
2169 return true;
2170}
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002171
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002172//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002173// Main Entry Point
2174//===----------------------------------------------------------------------===//
2175
2176unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Mark Laceyf9ea8852013-08-14 23:50:04 +00002177 SmallVectorImpl<unsigned> &NewVRegs) {
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002178 CutOffInfo = CO_None;
2179 LLVMContext &Ctx = MF->getFunction()->getContext();
Quentin Colombet87769712014-02-05 22:13:59 +00002180 SmallVirtRegSet FixedRegisters;
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002181 unsigned Reg = selectOrSplitImpl(VirtReg, NewVRegs, FixedRegisters);
2182 if (Reg == ~0U && (CutOffInfo != CO_None)) {
2183 uint8_t CutOffEncountered = CutOffInfo & (CO_Depth | CO_Interf);
2184 if (CutOffEncountered == CO_Depth)
Quentin Colombet567e30b2014-04-11 21:39:44 +00002185 Ctx.emitError("register allocation failed: maximum depth for recoloring "
2186 "reached. Use -fexhaustive-register-search to skip "
2187 "cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002188 else if (CutOffEncountered == CO_Interf)
2189 Ctx.emitError("register allocation failed: maximum interference for "
Quentin Colombet567e30b2014-04-11 21:39:44 +00002190 "recoloring reached. Use -fexhaustive-register-search "
2191 "to skip cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002192 else if (CutOffEncountered == (CO_Depth | CO_Interf))
2193 Ctx.emitError("register allocation failed: maximum interference and "
Quentin Colombet567e30b2014-04-11 21:39:44 +00002194 "depth for recoloring reached. Use "
2195 "-fexhaustive-register-search to skip cutoffs");
Quentin Colombet96bd2a12014-04-04 02:05:21 +00002196 }
2197 return Reg;
Quentin Colombet87769712014-02-05 22:13:59 +00002198}
2199
Manman Ren9dee4492014-03-27 21:21:57 +00002200/// Using a CSR for the first time has a cost because it causes push|pop
2201/// to be added to prologue|epilogue. Splitting a cold section of the live
2202/// range can have lower cost than using the CSR for the first time;
2203/// Spilling a live range in the cold path can have lower cost than using
2204/// the CSR for the first time. Returns the physical register if we decide
2205/// to use the CSR; otherwise return 0.
2206unsigned RAGreedy::tryAssignCSRFirstTime(LiveInterval &VirtReg,
2207 AllocationOrder &Order,
2208 unsigned PhysReg,
2209 unsigned &CostPerUseLimit,
2210 SmallVectorImpl<unsigned> &NewVRegs) {
Manman Ren9dee4492014-03-27 21:21:57 +00002211 if (getStage(VirtReg) == RS_Spill && VirtReg.isSpillable()) {
2212 // We choose spill over using the CSR for the first time if the spill cost
2213 // is lower than CSRCost.
2214 SA->analyze(&VirtReg);
2215 if (calcSpillCost() >= CSRCost)
2216 return PhysReg;
2217
2218 // We are going to spill, set CostPerUseLimit to 1 to make sure that
2219 // we will not use a callee-saved register in tryEvict.
2220 CostPerUseLimit = 1;
2221 return 0;
2222 }
2223 if (getStage(VirtReg) < RS_Split) {
2224 // We choose pre-splitting over using the CSR for the first time if
2225 // the cost of splitting is lower than CSRCost.
2226 SA->analyze(&VirtReg);
2227 unsigned NumCands = 0;
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002228 BlockFrequency BestCost = CSRCost; // Don't modify CSRCost.
2229 unsigned BestCand = calculateRegionSplitCost(VirtReg, Order, BestCost,
2230 NumCands, true /*IgnoreCSR*/);
Manman Ren9dee4492014-03-27 21:21:57 +00002231 if (BestCand == NoCand)
2232 // Use the CSR if we can't find a region split below CSRCost.
2233 return PhysReg;
2234
2235 // Perform the actual pre-splitting.
2236 doRegionSplit(VirtReg, BestCand, false/*HasCompact*/, NewVRegs);
2237 return 0;
2238 }
2239 return PhysReg;
2240}
2241
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002242void RAGreedy::aboutToRemoveInterval(LiveInterval &LI) {
2243 // Do not keep invalid information around.
2244 SetOfBrokenHints.remove(&LI);
2245}
2246
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002247void RAGreedy::initializeCSRCost() {
2248 // We use the larger one out of the command-line option and the value report
2249 // by TRI.
2250 CSRCost = BlockFrequency(
2251 std::max((unsigned)CSRFirstTimeCost, TRI->getCSRFirstUseCost()));
2252 if (!CSRCost.getFrequency())
2253 return;
2254
2255 // Raw cost is relative to Entry == 2^14; scale it appropriately.
2256 uint64_t ActualEntry = MBFI->getEntryFreq();
2257 if (!ActualEntry) {
2258 CSRCost = 0;
2259 return;
2260 }
2261 uint64_t FixedEntry = 1 << 14;
2262 if (ActualEntry < FixedEntry)
2263 CSRCost *= BranchProbability(ActualEntry, FixedEntry);
2264 else if (ActualEntry <= UINT32_MAX)
2265 // Invert the fraction and divide.
2266 CSRCost /= BranchProbability(FixedEntry, ActualEntry);
2267 else
2268 // Can't use BranchProbability in general, since it takes 32-bit numbers.
2269 CSRCost = CSRCost.getFrequency() * (ActualEntry / FixedEntry);
2270}
2271
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002272/// \brief Collect the hint info for \p Reg.
2273/// The results are stored into \p Out.
2274/// \p Out is not cleared before being populated.
2275void RAGreedy::collectHintInfo(unsigned Reg, HintsInfo &Out) {
2276 for (const MachineInstr &Instr : MRI->reg_nodbg_instructions(Reg)) {
2277 if (!Instr.isFullCopy())
2278 continue;
2279 // Look for the other end of the copy.
2280 unsigned OtherReg = Instr.getOperand(0).getReg();
2281 if (OtherReg == Reg) {
2282 OtherReg = Instr.getOperand(1).getReg();
2283 if (OtherReg == Reg)
2284 continue;
2285 }
2286 // Get the current assignment.
2287 unsigned OtherPhysReg = TargetRegisterInfo::isPhysicalRegister(OtherReg)
2288 ? OtherReg
2289 : VRM->getPhys(OtherReg);
2290 // Push the collected information.
2291 Out.push_back(HintInfo(MBFI->getBlockFreq(Instr.getParent()), OtherReg,
2292 OtherPhysReg));
2293 }
2294}
2295
2296/// \brief Using the given \p List, compute the cost of the broken hints if
2297/// \p PhysReg was used.
2298/// \return The cost of \p List for \p PhysReg.
2299BlockFrequency RAGreedy::getBrokenHintFreq(const HintsInfo &List,
2300 unsigned PhysReg) {
2301 BlockFrequency Cost = 0;
2302 for (const HintInfo &Info : List) {
2303 if (Info.PhysReg != PhysReg)
2304 Cost += Info.Freq;
2305 }
2306 return Cost;
2307}
2308
2309/// \brief Using the register assigned to \p VirtReg, try to recolor
2310/// all the live ranges that are copy-related with \p VirtReg.
2311/// The recoloring is then propagated to all the live-ranges that have
2312/// been recolored and so on, until no more copies can be coalesced or
2313/// it is not profitable.
2314/// For a given live range, profitability is determined by the sum of the
2315/// frequencies of the non-identity copies it would introduce with the old
2316/// and new register.
2317void RAGreedy::tryHintRecoloring(LiveInterval &VirtReg) {
2318 // We have a broken hint, check if it is possible to fix it by
2319 // reusing PhysReg for the copy-related live-ranges. Indeed, we evicted
2320 // some register and PhysReg may be available for the other live-ranges.
2321 SmallSet<unsigned, 4> Visited;
2322 SmallVector<unsigned, 2> RecoloringCandidates;
2323 HintsInfo Info;
2324 unsigned Reg = VirtReg.reg;
2325 unsigned PhysReg = VRM->getPhys(Reg);
2326 // Start the recoloring algorithm from the input live-interval, then
2327 // it will propagate to the ones that are copy-related with it.
2328 Visited.insert(Reg);
2329 RecoloringCandidates.push_back(Reg);
2330
2331 DEBUG(dbgs() << "Trying to reconcile hints for: " << PrintReg(Reg, TRI) << '('
2332 << PrintReg(PhysReg, TRI) << ")\n");
2333
2334 do {
2335 Reg = RecoloringCandidates.pop_back_val();
2336
2337 // We cannot recolor physcal register.
2338 if (TargetRegisterInfo::isPhysicalRegister(Reg))
2339 continue;
2340
2341 assert(VRM->hasPhys(Reg) && "We have unallocated variable!!");
2342
2343 // Get the live interval mapped with this virtual register to be able
2344 // to check for the interference with the new color.
2345 LiveInterval &LI = LIS->getInterval(Reg);
2346 unsigned CurrPhys = VRM->getPhys(Reg);
2347 // Check that the new color matches the register class constraints and
2348 // that it is free for this live range.
2349 if (CurrPhys != PhysReg && (!MRI->getRegClass(Reg)->contains(PhysReg) ||
2350 Matrix->checkInterference(LI, PhysReg)))
2351 continue;
2352
2353 DEBUG(dbgs() << PrintReg(Reg, TRI) << '(' << PrintReg(CurrPhys, TRI)
2354 << ") is recolorable.\n");
2355
2356 // Gather the hint info.
2357 Info.clear();
2358 collectHintInfo(Reg, Info);
2359 // Check if recoloring the live-range will increase the cost of the
2360 // non-identity copies.
2361 if (CurrPhys != PhysReg) {
2362 DEBUG(dbgs() << "Checking profitability:\n");
2363 BlockFrequency OldCopiesCost = getBrokenHintFreq(Info, CurrPhys);
2364 BlockFrequency NewCopiesCost = getBrokenHintFreq(Info, PhysReg);
2365 DEBUG(dbgs() << "Old Cost: " << OldCopiesCost.getFrequency()
2366 << "\nNew Cost: " << NewCopiesCost.getFrequency() << '\n');
2367 if (OldCopiesCost < NewCopiesCost) {
2368 DEBUG(dbgs() << "=> Not profitable.\n");
2369 continue;
2370 }
2371 // At this point, the cost is either cheaper or equal. If it is
2372 // equal, we consider this is profitable because it may expose
2373 // more recoloring opportunities.
2374 DEBUG(dbgs() << "=> Profitable.\n");
2375 // Recolor the live-range.
2376 Matrix->unassign(LI);
2377 Matrix->assign(LI, PhysReg);
2378 }
2379 // Push all copy-related live-ranges to keep reconciling the broken
2380 // hints.
2381 for (const HintInfo &HI : Info) {
2382 if (Visited.insert(HI.Reg).second)
2383 RecoloringCandidates.push_back(HI.Reg);
2384 }
2385 } while (!RecoloringCandidates.empty());
2386}
2387
2388/// \brief Try to recolor broken hints.
2389/// Broken hints may be repaired by recoloring when an evicted variable
2390/// freed up a register for a larger live-range.
2391/// Consider the following example:
2392/// BB1:
2393/// a =
2394/// b =
2395/// BB2:
2396/// ...
2397/// = b
2398/// = a
2399/// Let us assume b gets split:
2400/// BB1:
2401/// a =
2402/// b =
2403/// BB2:
2404/// c = b
2405/// ...
2406/// d = c
2407/// = d
2408/// = a
2409/// Because of how the allocation work, b, c, and d may be assigned different
2410/// colors. Now, if a gets evicted later:
2411/// BB1:
2412/// a =
2413/// st a, SpillSlot
2414/// b =
2415/// BB2:
2416/// c = b
2417/// ...
2418/// d = c
2419/// = d
2420/// e = ld SpillSlot
2421/// = e
2422/// This is likely that we can assign the same register for b, c, and d,
2423/// getting rid of 2 copies.
2424void RAGreedy::tryHintsRecoloring() {
2425 for (LiveInterval *LI : SetOfBrokenHints) {
2426 assert(TargetRegisterInfo::isVirtualRegister(LI->reg) &&
2427 "Recoloring is possible only for virtual registers");
2428 // Some dead defs may be around (e.g., because of debug uses).
2429 // Ignore those.
2430 if (!VRM->hasPhys(LI->reg))
2431 continue;
2432 tryHintRecoloring(*LI);
2433 }
2434}
2435
Quentin Colombet87769712014-02-05 22:13:59 +00002436unsigned RAGreedy::selectOrSplitImpl(LiveInterval &VirtReg,
2437 SmallVectorImpl<unsigned> &NewVRegs,
2438 SmallVirtRegSet &FixedRegisters,
2439 unsigned Depth) {
Manman Ren78cf02a2014-03-25 00:16:25 +00002440 unsigned CostPerUseLimit = ~0u;
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002441 // First try assigning a free register.
Jakob Stoklund Olesenb8bf3c02011-06-03 20:34:53 +00002442 AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo);
Manman Ren78cf02a2014-03-25 00:16:25 +00002443 if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) {
2444 // We check other options if we are using a CSR for the first time.
2445 bool CSRFirstUse = false;
2446 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
2447 if (!MRI->isPhysRegUsed(CSR))
2448 CSRFirstUse = true;
2449
Manman Ren9dee4492014-03-27 21:21:57 +00002450 // When NewVRegs is not empty, we may have made decisions such as evicting
2451 // a virtual register, go with the earlier decisions and use the physical
2452 // register.
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002453 if (CSRCost.getFrequency() && CSRFirstUse && NewVRegs.empty()) {
Manman Ren9dee4492014-03-27 21:21:57 +00002454 unsigned CSRReg = tryAssignCSRFirstTime(VirtReg, Order, PhysReg,
2455 CostPerUseLimit, NewVRegs);
2456 if (CSRReg || !NewVRegs.empty())
2457 // Return now if we decide to use a CSR or create new vregs due to
2458 // pre-splitting.
2459 return CSRReg;
Manman Ren78cf02a2014-03-25 00:16:25 +00002460 } else
2461 return PhysReg;
2462 }
Andrew Trickccef0982010-12-09 18:15:21 +00002463
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002464 LiveRangeStage Stage = getStage(VirtReg);
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002465 DEBUG(dbgs() << StageName[Stage]
2466 << " Cascade " << ExtraRegInfo[VirtReg.reg].Cascade << '\n');
Jakob Stoklund Olesen25d57452011-05-25 23:58:36 +00002467
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002468 // Try to evict a less worthy live range, but only for ranges from the primary
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002469 // queue. The RS_Split ranges already failed to do this, and they should not
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002470 // get a second chance until they have been split.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002471 if (Stage != RS_Split)
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002472 if (unsigned PhysReg =
2473 tryEvict(VirtReg, Order, NewVRegs, CostPerUseLimit)) {
2474 unsigned Hint = MRI->getSimpleHint(VirtReg.reg);
2475 // If VirtReg has a hint and that hint is broken record this
2476 // virtual register as a recoloring candidate for broken hint.
2477 // Indeed, since we evicted a variable in its neighborhood it is
2478 // likely we can at least partially recolor some of the
2479 // copy-related live-ranges.
2480 if (Hint && Hint != PhysReg)
2481 SetOfBrokenHints.insert(&VirtReg);
Jakob Stoklund Olesene9cc8e92011-06-01 18:45:02 +00002482 return PhysReg;
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002483 }
Andrew Trickccef0982010-12-09 18:15:21 +00002484
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002485 assert(NewVRegs.empty() && "Cannot append to existing NewVRegs");
2486
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002487 // The first time we see a live range, don't try to split or spill.
2488 // Wait until the second time, when all smaller ranges have been allocated.
2489 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002490 if (Stage < RS_Split) {
2491 setStage(VirtReg, RS_Split);
Jakob Stoklund Olesen86985072011-03-19 23:02:47 +00002492 DEBUG(dbgs() << "wait for second round\n");
Mark Laceyf9ea8852013-08-14 23:50:04 +00002493 NewVRegs.push_back(VirtReg.reg);
Jakob Stoklund Olesene68a27e2011-02-24 23:21:36 +00002494 return 0;
2495 }
2496
Jakob Stoklund Olesena5c88992011-05-06 21:58:30 +00002497 // If we couldn't allocate a register from spilling, there is probably some
2498 // invalid inline assembly. The base class wil report it.
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002499 if (Stage >= RS_Done || !VirtReg.isSpillable())
Quentin Colombet87769712014-02-05 22:13:59 +00002500 return tryLastChanceRecoloring(VirtReg, Order, NewVRegs, FixedRegisters,
2501 Depth);
Jakob Stoklund Olesen5f9f0812011-03-01 21:10:07 +00002502
Jakob Stoklund Olesen903b6d32010-12-14 00:37:49 +00002503 // Try splitting VirtReg or interferences.
Jakob Stoklund Olesen9fb04012011-01-19 22:11:48 +00002504 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
2505 if (PhysReg || !NewVRegs.empty())
Jakob Stoklund Olesen3d7b8062010-12-14 00:37:44 +00002506 return PhysReg;
2507
Jakob Stoklund Olesen0acb69d2010-12-22 22:01:30 +00002508 // Finally spill VirtReg itself.
Jakob Stoklund Olesen92da7052010-12-11 00:19:56 +00002509 NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesene5bbe372012-05-19 05:25:46 +00002510 LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this);
Jakob Stoklund Olesen4d6eafa2011-03-10 01:51:42 +00002511 spiller().spill(LRE);
Jakob Stoklund Olesen3ef8cf12011-07-25 15:25:41 +00002512 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done);
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002513
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +00002514 if (VerifyEnabled)
2515 MF->verify(this, "After spilling");
2516
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002517 // The live virtual register requesting allocation was spilled, so tell
2518 // the caller not to allocate anything during this round.
2519 return 0;
2520}
2521
2522bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
2523 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
David Blaikiec8c29202012-08-22 17:18:53 +00002524 << "********** Function: " << mf.getName() << '\n');
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002525
2526 MF = &mf;
Eric Christopher60621802014-10-14 07:22:00 +00002527 TRI = MF->getSubtarget().getRegisterInfo();
2528 TII = MF->getSubtarget().getInstrInfo();
Quentin Colombet1fb3362a2014-01-02 22:47:22 +00002529 RCI.runOnMachineFunction(mf);
Quentin Colombet5caa6a22014-07-02 18:32:04 +00002530
2531 EnableLocalReassign = EnableLocalReassignment ||
Eric Christopher60621802014-10-14 07:22:00 +00002532 MF->getSubtarget().enableRALocalReassignment(
2533 MF->getTarget().getOptLevel());
Quentin Colombet5caa6a22014-07-02 18:32:04 +00002534
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002535 if (VerifyEnabled)
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +00002536 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesen2e98ee32010-12-17 23:16:35 +00002537
Jakob Stoklund Olesen2d2dec92012-06-20 22:52:29 +00002538 RegAllocBase::init(getAnalysis<VirtRegMap>(),
2539 getAnalysis<LiveIntervals>(),
2540 getAnalysis<LiveRegMatrix>());
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002541 Indexes = &getAnalysis<SlotIndexes>();
Benjamin Kramere2a1d892013-06-17 19:00:36 +00002542 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
Jakob Stoklund Olesen1740e002010-12-17 23:16:32 +00002543 DomTree = &getAnalysis<MachineDominatorTree>();
Jakob Stoklund Olesenadecb5e2010-12-10 22:54:44 +00002544 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002545 Loops = &getAnalysis<MachineLoopInfo>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002546 Bundles = &getAnalysis<EdgeBundles>();
2547 SpillPlacer = &getAnalysis<SpillPlacement>();
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +00002548 DebugVars = &getAnalysis<LiveDebugVariables>();
Jakob Stoklund Olesen267f6c12011-01-18 21:13:27 +00002549
Duncan P. N. Exon Smitha5df8132014-04-08 19:18:56 +00002550 initializeCSRCost();
2551
Arnaud A. de Grandmaisonea3ac162013-11-11 19:04:45 +00002552 calculateSpillWeightsAndHints(*LIS, mf, *Loops, *MBFI);
Arnaud A. de Grandmaison760c1e02013-11-10 17:46:31 +00002553
Andrew Trick97064962013-07-25 07:26:26 +00002554 DEBUG(LIS->dump());
2555
Jakob Stoklund Olesenf1a60a62011-02-19 00:53:42 +00002556 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Benjamin Kramere2a1d892013-06-17 19:00:36 +00002557 SE.reset(new SplitEditor(*SA, *LIS, *VRM, *DomTree, *MBFI));
Jakob Stoklund Olesen30a85632011-07-02 01:37:09 +00002558 ExtraRegInfo.clear();
2559 ExtraRegInfo.resize(MRI->getNumVirtRegs());
2560 NextCascade = 1;
Jakob Stoklund Olesen96eebf02012-06-20 22:52:26 +00002561 IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI);
Jakob Stoklund Olesendab4b9a2011-07-26 23:41:46 +00002562 GlobalCand.resize(32); // This will grow as needed.
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002563 SetOfBrokenHints.clear();
Jakob Stoklund Olesene7601e92010-12-15 23:46:13 +00002564
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002565 allocatePhysRegs();
Quentin Colombeta799e2e2015-01-08 01:16:39 +00002566 tryHintsRecoloring();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002567 releaseMemory();
Jakob Stoklund Olesenb8812a12010-12-08 03:26:16 +00002568 return true;
2569}