blob: 7cee96504759b045762fc525a323ca0d5a505d64 [file] [log] [blame]
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001//===-- RegAllocGreedy.cpp - greedy register allocator --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the RAGreedy function pass for register allocation in
11// optimized builds.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "regalloc"
Jakob Stoklund Olesendd479e92010-12-10 22:21:05 +000016#include "AllocationOrder.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000017#include "LiveIntervalUnion.h"
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +000018#include "LiveRangeEdit.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000019#include "RegAllocBase.h"
20#include "Spiller.h"
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000021#include "SpillPlacement.h"
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +000022#include "SplitKit.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000023#include "VirtRegMap.h"
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000024#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000025#include "llvm/Analysis/AliasAnalysis.h"
26#include "llvm/Function.h"
27#include "llvm/PassAnalysisSupport.h"
28#include "llvm/CodeGen/CalcSpillWeights.h"
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000029#include "llvm/CodeGen/EdgeBundles.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000030#include "llvm/CodeGen/LiveIntervalAnalysis.h"
31#include "llvm/CodeGen/LiveStackAnalysis.h"
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +000032#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000033#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000034#include "llvm/CodeGen/MachineLoopInfo.h"
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +000035#include "llvm/CodeGen/MachineLoopRanges.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000036#include "llvm/CodeGen/MachineRegisterInfo.h"
37#include "llvm/CodeGen/Passes.h"
38#include "llvm/CodeGen/RegAllocRegistry.h"
39#include "llvm/CodeGen/RegisterCoalescer.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000040#include "llvm/Target/TargetOptions.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000041#include "llvm/Support/Debug.h"
42#include "llvm/Support/ErrorHandling.h"
43#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +000044#include "llvm/Support/Timer.h"
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000045
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000046#include <queue>
47
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000048using namespace llvm;
49
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +000050STATISTIC(NumGlobalSplits, "Number of split global live ranges");
51STATISTIC(NumLocalSplits, "Number of split local live ranges");
52STATISTIC(NumReassigned, "Number of interferences reassigned");
53STATISTIC(NumEvicted, "Number of interferences evicted");
54
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000055static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
56 createGreedyRegisterAllocator);
57
58namespace {
59class RAGreedy : public MachineFunctionPass, public RegAllocBase {
60 // context
61 MachineFunction *MF;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000062 BitVector ReservedRegs;
63
64 // analyses
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000065 SlotIndexes *Indexes;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000066 LiveStacks *LS;
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +000067 MachineDominatorTree *DomTree;
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +000068 MachineLoopInfo *Loops;
69 MachineLoopRanges *LoopRanges;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +000070 EdgeBundles *Bundles;
71 SpillPlacement *SpillPlacer;
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +000072
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +000073 // state
74 std::auto_ptr<Spiller> SpillerInstance;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +000075 std::priority_queue<std::pair<unsigned, unsigned> > Queue;
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +000076
77 // Live ranges pass through a number of stages as we try to allocate them.
78 // Some of the stages may also create new live ranges:
79 //
80 // - Region splitting.
81 // - Per-block splitting.
82 // - Local splitting.
83 // - Spilling.
84 //
85 // Ranges produced by one of the stages skip the previous stages when they are
86 // dequeued. This improves performance because we can skip interference checks
87 // that are unlikely to give any results. It also guarantees that the live
88 // range splitting algorithm terminates, something that is otherwise hard to
89 // ensure.
90 enum LiveRangeStage {
91 RS_Original, ///< Never seen before, never split.
92 RS_Second, ///< Second time in the queue.
93 RS_Region, ///< Produced by region splitting.
94 RS_Block, ///< Produced by per-block splitting.
95 RS_Local, ///< Produced by local splitting.
96 RS_Spill ///< Produced by spilling.
97 };
98
99 IndexedMap<unsigned char, VirtReg2IndexFunctor> LRStage;
100
101 LiveRangeStage getStage(const LiveInterval &VirtReg) const {
102 return LiveRangeStage(LRStage[VirtReg.reg]);
103 }
104
105 template<typename Iterator>
106 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) {
107 LRStage.resize(MRI->getNumVirtRegs());
108 for (;Begin != End; ++Begin)
109 LRStage[(*Begin)->reg] = NewStage;
110 }
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000111
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000112 // splitting state.
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000113 std::auto_ptr<SplitAnalysis> SA;
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000114 std::auto_ptr<SplitEditor> SE;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000115
116 /// All basic blocks where the current register is live.
117 SmallVector<SpillPlacement::BlockConstraint, 8> SpillConstraints;
118
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000119 /// For every instruction in SA->UseSlots, store the previous non-copy
120 /// instruction.
121 SmallVector<SlotIndex, 8> PrevSlot;
122
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000123public:
124 RAGreedy();
125
126 /// Return the pass name.
127 virtual const char* getPassName() const {
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +0000128 return "Greedy Register Allocator";
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000129 }
130
131 /// RAGreedy analysis usage.
132 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000133 virtual void releaseMemory();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000134 virtual Spiller &spiller() { return *SpillerInstance; }
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000135 virtual void enqueue(LiveInterval *LI);
136 virtual LiveInterval *dequeue();
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000137 virtual unsigned selectOrSplit(LiveInterval&,
138 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000139
140 /// Perform register allocation.
141 virtual bool runOnMachineFunction(MachineFunction &mf);
142
143 static char ID;
Andrew Trickb853e6c2010-12-09 18:15:21 +0000144
145private:
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000146 bool checkUncachedInterference(LiveInterval&, unsigned);
147 LiveInterval *getSingleInterference(LiveInterval&, unsigned);
Andrew Trickb853e6c2010-12-09 18:15:21 +0000148 bool reassignVReg(LiveInterval &InterferingVReg, unsigned OldPhysReg);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000149 float calcInterferenceInfo(LiveInterval&, unsigned);
150 float calcGlobalSplitCost(const BitVector&);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000151 void splitAroundRegion(LiveInterval&, unsigned, const BitVector&,
152 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000153 void calcGapWeights(unsigned, SmallVectorImpl<float>&);
154 SlotIndex getPrevMappedIndex(const MachineInstr*);
155 void calcPrevSlots();
156 unsigned nextSplitPoint(unsigned);
Jakob Stoklund Olesend17924b2011-03-04 21:32:50 +0000157 bool canEvictInterference(LiveInterval&, unsigned, float&);
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +0000158
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000159 unsigned tryReassign(LiveInterval&, AllocationOrder&,
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000160 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000161 unsigned tryEvict(LiveInterval&, AllocationOrder&,
162 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000163 unsigned tryRegionSplit(LiveInterval&, AllocationOrder&,
164 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000165 unsigned tryLocalSplit(LiveInterval&, AllocationOrder&,
166 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +0000167 unsigned trySplit(LiveInterval&, AllocationOrder&,
168 SmallVectorImpl<LiveInterval*>&);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000169};
170} // end anonymous namespace
171
172char RAGreedy::ID = 0;
173
174FunctionPass* llvm::createGreedyRegisterAllocator() {
175 return new RAGreedy();
176}
177
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000178RAGreedy::RAGreedy(): MachineFunctionPass(ID), LRStage(RS_Original) {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000179 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000180 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
181 initializeSlotIndexesPass(*PassRegistry::getPassRegistry());
182 initializeStrongPHIEliminationPass(*PassRegistry::getPassRegistry());
183 initializeRegisterCoalescerAnalysisGroup(*PassRegistry::getPassRegistry());
184 initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry());
185 initializeLiveStacksPass(*PassRegistry::getPassRegistry());
186 initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
187 initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +0000188 initializeMachineLoopRangesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000189 initializeVirtRegMapPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000190 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
191 initializeSpillPlacementPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000192}
193
194void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const {
195 AU.setPreservesCFG();
196 AU.addRequired<AliasAnalysis>();
197 AU.addPreserved<AliasAnalysis>();
198 AU.addRequired<LiveIntervals>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000199 AU.addRequired<SlotIndexes>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000200 AU.addPreserved<SlotIndexes>();
201 if (StrongPHIElim)
202 AU.addRequiredID(StrongPHIEliminationID);
203 AU.addRequiredTransitive<RegisterCoalescer>();
204 AU.addRequired<CalculateSpillWeights>();
205 AU.addRequired<LiveStacks>();
206 AU.addPreserved<LiveStacks>();
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +0000207 AU.addRequired<MachineDominatorTree>();
208 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000209 AU.addRequired<MachineLoopInfo>();
210 AU.addPreserved<MachineLoopInfo>();
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +0000211 AU.addRequired<MachineLoopRanges>();
212 AU.addPreserved<MachineLoopRanges>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000213 AU.addRequired<VirtRegMap>();
214 AU.addPreserved<VirtRegMap>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000215 AU.addRequired<EdgeBundles>();
216 AU.addRequired<SpillPlacement>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000217 MachineFunctionPass::getAnalysisUsage(AU);
218}
219
220void RAGreedy::releaseMemory() {
221 SpillerInstance.reset(0);
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000222 LRStage.clear();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000223 RegAllocBase::releaseMemory();
224}
225
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000226void RAGreedy::enqueue(LiveInterval *LI) {
227 // Prioritize live ranges by size, assigning larger ranges first.
228 // The queue holds (size, reg) pairs.
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000229 const unsigned Size = LI->getSize();
230 const unsigned Reg = LI->reg;
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000231 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
232 "Can only enqueue virtual registers");
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000233 unsigned Prio;
Jakob Stoklund Olesen90c1d7d2010-12-08 22:57:16 +0000234
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000235 LRStage.grow(Reg);
236 if (LRStage[Reg] == RS_Original)
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000237 // 1st generation ranges are handled first, long -> short.
238 Prio = (1u << 31) + Size;
239 else
240 // Repeat offenders are handled second, short -> long
241 Prio = (1u << 30) - Size;
Jakob Stoklund Olesend2a50732011-02-23 00:56:56 +0000242
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000243 // Boost ranges that have a physical register hint.
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000244 const unsigned Hint = VRM->getRegAllocPref(Reg);
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +0000245 if (TargetRegisterInfo::isPhysicalRegister(Hint))
246 Prio |= (1u << 30);
247
248 Queue.push(std::make_pair(Prio, Reg));
Jakob Stoklund Olesen90c1d7d2010-12-08 22:57:16 +0000249}
250
Jakob Stoklund Olesen98d96482011-02-22 23:01:52 +0000251LiveInterval *RAGreedy::dequeue() {
252 if (Queue.empty())
253 return 0;
254 LiveInterval *LI = &LIS->getInterval(Queue.top().second);
255 Queue.pop();
256 return LI;
257}
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000258
259//===----------------------------------------------------------------------===//
260// Register Reassignment
261//===----------------------------------------------------------------------===//
262
Jakob Stoklund Olesen6ce219e2010-12-10 20:45:04 +0000263// Check interference without using the cache.
264bool RAGreedy::checkUncachedInterference(LiveInterval &VirtReg,
265 unsigned PhysReg) {
Jakob Stoklund Olesen257c5562010-12-14 23:38:19 +0000266 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
267 LiveIntervalUnion::Query subQ(&VirtReg, &PhysReg2LiveUnion[*AliasI]);
Jakob Stoklund Olesen6ce219e2010-12-10 20:45:04 +0000268 if (subQ.checkInterference())
269 return true;
270 }
271 return false;
272}
273
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000274/// getSingleInterference - Return the single interfering virtual register
275/// assigned to PhysReg. Return 0 if more than one virtual register is
276/// interfering.
277LiveInterval *RAGreedy::getSingleInterference(LiveInterval &VirtReg,
278 unsigned PhysReg) {
Jakob Stoklund Olesen257c5562010-12-14 23:38:19 +0000279 // Check physreg and aliases.
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000280 LiveInterval *Interference = 0;
Jakob Stoklund Olesen257c5562010-12-14 23:38:19 +0000281 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000282 LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI);
283 if (Q.checkInterference()) {
Jakob Stoklund Olesend84de8c2010-12-14 17:47:36 +0000284 if (Interference)
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000285 return 0;
Jakob Stoklund Olesen417df012011-02-23 00:29:55 +0000286 if (Q.collectInterferingVRegs(2) > 1)
Jakob Stoklund Olesend84de8c2010-12-14 17:47:36 +0000287 return 0;
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000288 Interference = Q.interferingVRegs().front();
289 }
290 }
291 return Interference;
292}
293
Andrew Trickb853e6c2010-12-09 18:15:21 +0000294// Attempt to reassign this virtual register to a different physical register.
295//
296// FIXME: we are not yet caching these "second-level" interferences discovered
297// in the sub-queries. These interferences can change with each call to
298// selectOrSplit. However, we could implement a "may-interfere" cache that
299// could be conservatively dirtied when we reassign or split.
300//
301// FIXME: This may result in a lot of alias queries. We could summarize alias
302// live intervals in their parent register's live union, but it's messy.
303bool RAGreedy::reassignVReg(LiveInterval &InterferingVReg,
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000304 unsigned WantedPhysReg) {
305 assert(TargetRegisterInfo::isVirtualRegister(InterferingVReg.reg) &&
306 "Can only reassign virtual registers");
307 assert(TRI->regsOverlap(WantedPhysReg, VRM->getPhys(InterferingVReg.reg)) &&
Andrew Trickb853e6c2010-12-09 18:15:21 +0000308 "inconsistent phys reg assigment");
309
Jakob Stoklund Olesendd479e92010-12-10 22:21:05 +0000310 AllocationOrder Order(InterferingVReg.reg, *VRM, ReservedRegs);
311 while (unsigned PhysReg = Order.next()) {
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000312 // Don't reassign to a WantedPhysReg alias.
313 if (TRI->regsOverlap(PhysReg, WantedPhysReg))
Andrew Trickb853e6c2010-12-09 18:15:21 +0000314 continue;
315
Jakob Stoklund Olesen6ce219e2010-12-10 20:45:04 +0000316 if (checkUncachedInterference(InterferingVReg, PhysReg))
Andrew Trickb853e6c2010-12-09 18:15:21 +0000317 continue;
318
Andrew Trickb853e6c2010-12-09 18:15:21 +0000319 // Reassign the interfering virtual reg to this physical reg.
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000320 unsigned OldAssign = VRM->getPhys(InterferingVReg.reg);
321 DEBUG(dbgs() << "reassigning: " << InterferingVReg << " from " <<
322 TRI->getName(OldAssign) << " to " << TRI->getName(PhysReg) << '\n');
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000323 unassign(InterferingVReg, OldAssign);
324 assign(InterferingVReg, PhysReg);
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +0000325 ++NumReassigned;
Andrew Trickb853e6c2010-12-09 18:15:21 +0000326 return true;
327 }
328 return false;
329}
330
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000331/// tryReassign - Try to reassign a single interference to a different physreg.
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000332/// @param VirtReg Currently unassigned virtual register.
333/// @param Order Physregs to try.
334/// @return Physreg to assign VirtReg, or 0.
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000335unsigned RAGreedy::tryReassign(LiveInterval &VirtReg, AllocationOrder &Order,
336 SmallVectorImpl<LiveInterval*> &NewVRegs){
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000337 NamedRegionTimer T("Reassign", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000338
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000339 Order.rewind();
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000340 while (unsigned PhysReg = Order.next()) {
341 LiveInterval *InterferingVReg = getSingleInterference(VirtReg, PhysReg);
342 if (!InterferingVReg)
343 continue;
344 if (TargetRegisterInfo::isPhysicalRegister(InterferingVReg->reg))
345 continue;
346 if (reassignVReg(*InterferingVReg, PhysReg))
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +0000347 return PhysReg;
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000348 }
349 return 0;
350}
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000351
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000352
353//===----------------------------------------------------------------------===//
354// Interference eviction
355//===----------------------------------------------------------------------===//
356
357/// canEvict - Return true if all interferences between VirtReg and PhysReg can
358/// be evicted. Set maxWeight to the maximal spill weight of an interference.
359bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
Jakob Stoklund Olesend17924b2011-03-04 21:32:50 +0000360 float &MaxWeight) {
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000361 float Weight = 0;
362 for (const unsigned *AliasI = TRI->getOverlaps(PhysReg); *AliasI; ++AliasI) {
363 LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI);
364 // If there is 10 or more interferences, chances are one is smaller.
365 if (Q.collectInterferingVRegs(10) >= 10)
366 return false;
367
Jakob Stoklund Olesend17924b2011-03-04 21:32:50 +0000368 // Check if any interfering live range is heavier than VirtReg.
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000369 for (unsigned i = 0, e = Q.interferingVRegs().size(); i != e; ++i) {
370 LiveInterval *Intf = Q.interferingVRegs()[i];
371 if (TargetRegisterInfo::isPhysicalRegister(Intf->reg))
372 return false;
Jakob Stoklund Olesend17924b2011-03-04 21:32:50 +0000373 if (Intf->weight >= VirtReg.weight)
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000374 return false;
375 Weight = std::max(Weight, Intf->weight);
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000376 }
377 }
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000378 MaxWeight = Weight;
379 return true;
380}
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000381
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000382/// tryEvict - Try to evict all interferences for a physreg.
383/// @param VirtReg Currently unassigned virtual register.
384/// @param Order Physregs to try.
385/// @return Physreg to assign VirtReg, or 0.
386unsigned RAGreedy::tryEvict(LiveInterval &VirtReg,
387 AllocationOrder &Order,
388 SmallVectorImpl<LiveInterval*> &NewVRegs){
389 NamedRegionTimer T("Evict", TimerGroupName, TimePassesIsEnabled);
390
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000391 // Keep track of the lightest single interference seen so far.
392 float BestWeight = 0;
393 unsigned BestPhys = 0;
394
395 Order.rewind();
396 while (unsigned PhysReg = Order.next()) {
397 float Weight = 0;
Jakob Stoklund Olesend17924b2011-03-04 21:32:50 +0000398 if (!canEvictInterference(VirtReg, PhysReg, Weight))
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000399 continue;
400
401 // This is an eviction candidate.
402 DEBUG(dbgs() << "max " << PrintReg(PhysReg, TRI) << " interference = "
403 << Weight << '\n');
404 if (BestPhys && Weight >= BestWeight)
405 continue;
406
407 // Best so far.
408 BestPhys = PhysReg;
409 BestWeight = Weight;
Jakob Stoklund Olesen57f1e2c2011-02-25 01:04:22 +0000410 // Stop if the hint can be used.
411 if (Order.isHint(PhysReg))
412 break;
Jakob Stoklund Olesen27106382011-02-09 01:14:03 +0000413 }
414
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +0000415 if (!BestPhys)
416 return 0;
417
418 DEBUG(dbgs() << "evicting " << PrintReg(BestPhys, TRI) << " interference\n");
419 for (const unsigned *AliasI = TRI->getOverlaps(BestPhys); *AliasI; ++AliasI) {
420 LiveIntervalUnion::Query &Q = query(VirtReg, *AliasI);
421 assert(Q.seenAllInterferences() && "Didn't check all interfererences.");
422 for (unsigned i = 0, e = Q.interferingVRegs().size(); i != e; ++i) {
423 LiveInterval *Intf = Q.interferingVRegs()[i];
424 unassign(*Intf, VRM->getPhys(Intf->reg));
425 ++NumEvicted;
426 NewVRegs.push_back(Intf);
427 }
428 }
429 return BestPhys;
Andrew Trickb853e6c2010-12-09 18:15:21 +0000430}
431
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +0000432
433//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000434// Region Splitting
435//===----------------------------------------------------------------------===//
436
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000437/// calcInterferenceInfo - Compute per-block outgoing and ingoing constraints
438/// when considering interference from PhysReg. Also compute an optimistic local
439/// cost of this interference pattern.
440///
441/// The final cost of a split is the local cost + global cost of preferences
442/// broken by SpillPlacement.
443///
444float RAGreedy::calcInterferenceInfo(LiveInterval &VirtReg, unsigned PhysReg) {
445 // Reset interference dependent info.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000446 SpillConstraints.resize(SA->LiveBlocks.size());
447 for (unsigned i = 0, e = SA->LiveBlocks.size(); i != e; ++i) {
448 SplitAnalysis::BlockInfo &BI = SA->LiveBlocks[i];
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000449 SpillPlacement::BlockConstraint &BC = SpillConstraints[i];
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000450 BC.Number = BI.MBB->getNumber();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000451 BC.Entry = (BI.Uses && BI.LiveIn) ?
452 SpillPlacement::PrefReg : SpillPlacement::DontCare;
453 BC.Exit = (BI.Uses && BI.LiveOut) ?
454 SpillPlacement::PrefReg : SpillPlacement::DontCare;
455 BI.OverlapEntry = BI.OverlapExit = false;
456 }
457
458 // Add interference info from each PhysReg alias.
459 for (const unsigned *AI = TRI->getOverlaps(PhysReg); *AI; ++AI) {
460 if (!query(VirtReg, *AI).checkInterference())
461 continue;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000462 LiveIntervalUnion::SegmentIter IntI =
463 PhysReg2LiveUnion[*AI].find(VirtReg.beginIndex());
464 if (!IntI.valid())
465 continue;
466
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000467 // Determine which blocks have interference live in or after the last split
468 // point.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000469 for (unsigned i = 0, e = SA->LiveBlocks.size(); i != e; ++i) {
470 SplitAnalysis::BlockInfo &BI = SA->LiveBlocks[i];
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000471 SpillPlacement::BlockConstraint &BC = SpillConstraints[i];
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000472
473 // Skip interference-free blocks.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000474 if (IntI.start() >= BI.Stop)
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000475 continue;
476
477 // Is the interference live-in?
478 if (BI.LiveIn) {
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000479 IntI.advanceTo(BI.Start);
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000480 if (!IntI.valid())
481 break;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000482 if (IntI.start() <= BI.Start)
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000483 BC.Entry = SpillPlacement::MustSpill;
484 }
485
486 // Is the interference overlapping the last split point?
487 if (BI.LiveOut) {
488 if (IntI.stop() < BI.LastSplitPoint)
489 IntI.advanceTo(BI.LastSplitPoint.getPrevSlot());
490 if (!IntI.valid())
491 break;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000492 if (IntI.start() < BI.Stop)
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000493 BC.Exit = SpillPlacement::MustSpill;
494 }
495 }
496
497 // Rewind iterator and check other interferences.
498 IntI.find(VirtReg.beginIndex());
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000499 for (unsigned i = 0, e = SA->LiveBlocks.size(); i != e; ++i) {
500 SplitAnalysis::BlockInfo &BI = SA->LiveBlocks[i];
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000501 SpillPlacement::BlockConstraint &BC = SpillConstraints[i];
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000502
503 // Skip interference-free blocks.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000504 if (IntI.start() >= BI.Stop)
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000505 continue;
506
507 // Handle transparent blocks with interference separately.
508 // Transparent blocks never incur any fixed cost.
509 if (BI.LiveThrough && !BI.Uses) {
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000510 IntI.advanceTo(BI.Start);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000511 if (!IntI.valid())
512 break;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000513 if (IntI.start() >= BI.Stop)
Jakob Stoklund Olesena50c5392011-02-08 23:02:58 +0000514 continue;
515
516 if (BC.Entry != SpillPlacement::MustSpill)
517 BC.Entry = SpillPlacement::PrefSpill;
518 if (BC.Exit != SpillPlacement::MustSpill)
519 BC.Exit = SpillPlacement::PrefSpill;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000520 continue;
521 }
522
523 // Now we only have blocks with uses left.
524 // Check if the interference overlaps the uses.
525 assert(BI.Uses && "Non-transparent block without any uses");
526
527 // Check interference on entry.
528 if (BI.LiveIn && BC.Entry != SpillPlacement::MustSpill) {
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000529 IntI.advanceTo(BI.Start);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000530 if (!IntI.valid())
531 break;
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000532 // Not live in, but before the first use.
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000533 if (IntI.start() < BI.FirstUse) {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000534 BC.Entry = SpillPlacement::PrefSpill;
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000535 // If the block contains a kill from an earlier split, never split
536 // again in the same block.
537 if (!BI.LiveThrough && !SA->isOriginalEndpoint(BI.Kill))
538 BC.Entry = SpillPlacement::MustSpill;
539 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000540 }
541
542 // Does interference overlap the uses in the entry segment
543 // [FirstUse;Kill)?
544 if (BI.LiveIn && !BI.OverlapEntry) {
545 IntI.advanceTo(BI.FirstUse);
546 if (!IntI.valid())
547 break;
548 // A live-through interval has no kill.
549 // Check [FirstUse;LastUse) instead.
550 if (IntI.start() < (BI.LiveThrough ? BI.LastUse : BI.Kill))
551 BI.OverlapEntry = true;
552 }
553
554 // Does interference overlap the uses in the exit segment [Def;LastUse)?
555 if (BI.LiveOut && !BI.LiveThrough && !BI.OverlapExit) {
556 IntI.advanceTo(BI.Def);
557 if (!IntI.valid())
558 break;
559 if (IntI.start() < BI.LastUse)
560 BI.OverlapExit = true;
561 }
562
563 // Check interference on exit.
564 if (BI.LiveOut && BC.Exit != SpillPlacement::MustSpill) {
565 // Check interference between LastUse and Stop.
566 if (BC.Exit != SpillPlacement::PrefSpill) {
567 IntI.advanceTo(BI.LastUse);
568 if (!IntI.valid())
569 break;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000570 if (IntI.start() < BI.Stop) {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000571 BC.Exit = SpillPlacement::PrefSpill;
Jakob Stoklund Olesen06c0f252011-02-21 23:09:46 +0000572 // Avoid splitting twice in the same block.
573 if (!BI.LiveThrough && !SA->isOriginalEndpoint(BI.Def))
574 BC.Exit = SpillPlacement::MustSpill;
575 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000576 }
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000577 }
578 }
579 }
580
581 // Accumulate a local cost of this interference pattern.
582 float LocalCost = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000583 for (unsigned i = 0, e = SA->LiveBlocks.size(); i != e; ++i) {
584 SplitAnalysis::BlockInfo &BI = SA->LiveBlocks[i];
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000585 if (!BI.Uses)
586 continue;
587 SpillPlacement::BlockConstraint &BC = SpillConstraints[i];
588 unsigned Inserts = 0;
589
590 // Do we need spill code for the entry segment?
591 if (BI.LiveIn)
592 Inserts += BI.OverlapEntry || BC.Entry != SpillPlacement::PrefReg;
593
594 // For the exit segment?
595 if (BI.LiveOut)
596 Inserts += BI.OverlapExit || BC.Exit != SpillPlacement::PrefReg;
597
598 // The local cost of spill code in this block is the block frequency times
599 // the number of spill instructions inserted.
600 if (Inserts)
Jakob Stoklund Olesen40a42a22011-03-04 00:58:40 +0000601 LocalCost += Inserts * SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000602 }
603 DEBUG(dbgs() << "Local cost of " << PrintReg(PhysReg, TRI) << " = "
604 << LocalCost << '\n');
605 return LocalCost;
606}
607
608/// calcGlobalSplitCost - Return the global split cost of following the split
609/// pattern in LiveBundles. This cost should be added to the local cost of the
610/// interference pattern in SpillConstraints.
611///
612float RAGreedy::calcGlobalSplitCost(const BitVector &LiveBundles) {
613 float GlobalCost = 0;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000614 for (unsigned i = 0, e = SpillConstraints.size(); i != e; ++i) {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000615 SpillPlacement::BlockConstraint &BC = SpillConstraints[i];
616 unsigned Inserts = 0;
617 // Broken entry preference?
618 Inserts += LiveBundles[Bundles->getBundle(BC.Number, 0)] !=
619 (BC.Entry == SpillPlacement::PrefReg);
620 // Broken exit preference?
621 Inserts += LiveBundles[Bundles->getBundle(BC.Number, 1)] !=
622 (BC.Exit == SpillPlacement::PrefReg);
623 if (Inserts)
Jakob Stoklund Olesen40a42a22011-03-04 00:58:40 +0000624 GlobalCost += Inserts * SpillPlacer->getBlockFrequency(BC.Number);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000625 }
Jakob Stoklund Olesenfb698102011-03-04 18:08:26 +0000626 DEBUG({
627 dbgs() << "Global cost = " << GlobalCost << " with bundles";
628 for (int i = LiveBundles.find_first(); i>=0; i = LiveBundles.find_next(i))
629 dbgs() << " EB#" << i;
630 dbgs() << ".\n";
631 });
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000632 return GlobalCost;
633}
634
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000635/// splitAroundRegion - Split VirtReg around the region determined by
636/// LiveBundles. Make an effort to avoid interference from PhysReg.
637///
638/// The 'register' interval is going to contain as many uses as possible while
639/// avoiding interference. The 'stack' interval is the complement constructed by
640/// SplitEditor. It will contain the rest.
641///
642void RAGreedy::splitAroundRegion(LiveInterval &VirtReg, unsigned PhysReg,
643 const BitVector &LiveBundles,
644 SmallVectorImpl<LiveInterval*> &NewVRegs) {
645 DEBUG({
646 dbgs() << "Splitting around region for " << PrintReg(PhysReg, TRI)
647 << " with bundles";
648 for (int i = LiveBundles.find_first(); i>=0; i = LiveBundles.find_next(i))
649 dbgs() << " EB#" << i;
650 dbgs() << ".\n";
651 });
652
653 // First compute interference ranges in the live blocks.
654 typedef std::pair<SlotIndex, SlotIndex> IndexPair;
655 SmallVector<IndexPair, 8> InterferenceRanges;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000656 InterferenceRanges.resize(SA->LiveBlocks.size());
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000657 for (const unsigned *AI = TRI->getOverlaps(PhysReg); *AI; ++AI) {
658 if (!query(VirtReg, *AI).checkInterference())
659 continue;
660 LiveIntervalUnion::SegmentIter IntI =
661 PhysReg2LiveUnion[*AI].find(VirtReg.beginIndex());
662 if (!IntI.valid())
663 continue;
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000664 for (unsigned i = 0, e = SA->LiveBlocks.size(); i != e; ++i) {
665 const SplitAnalysis::BlockInfo &BI = SA->LiveBlocks[i];
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000666 IndexPair &IP = InterferenceRanges[i];
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000667
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000668 // Skip interference-free blocks.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000669 if (IntI.start() >= BI.Stop)
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000670 continue;
671
672 // First interference in block.
673 if (BI.LiveIn) {
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000674 IntI.advanceTo(BI.Start);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000675 if (!IntI.valid())
676 break;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000677 if (IntI.start() >= BI.Stop)
Jakob Stoklund Olesen2dfbb3e2011-02-03 20:29:43 +0000678 continue;
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000679 if (!IP.first.isValid() || IntI.start() < IP.first)
680 IP.first = IntI.start();
681 }
682
683 // Last interference in block.
684 if (BI.LiveOut) {
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000685 IntI.advanceTo(BI.Stop);
686 if (!IntI.valid() || IntI.start() >= BI.Stop)
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000687 --IntI;
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000688 if (IntI.stop() <= BI.Start)
Jakob Stoklund Olesen2dfbb3e2011-02-03 20:29:43 +0000689 continue;
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000690 if (!IP.second.isValid() || IntI.stop() > IP.second)
691 IP.second = IntI.stop();
692 }
693 }
694 }
695
696 SmallVector<LiveInterval*, 4> SpillRegs;
697 LiveRangeEdit LREdit(VirtReg, NewVRegs, SpillRegs);
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000698 SE->reset(LREdit);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000699
700 // Create the main cross-block interval.
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000701 SE->openIntv();
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000702
703 // First add all defs that are live out of a block.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000704 for (unsigned i = 0, e = SA->LiveBlocks.size(); i != e; ++i) {
705 SplitAnalysis::BlockInfo &BI = SA->LiveBlocks[i];
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000706 bool RegIn = LiveBundles[Bundles->getBundle(BI.MBB->getNumber(), 0)];
707 bool RegOut = LiveBundles[Bundles->getBundle(BI.MBB->getNumber(), 1)];
708
709 // Should the register be live out?
710 if (!BI.LiveOut || !RegOut)
711 continue;
712
713 IndexPair &IP = InterferenceRanges[i];
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000714 DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " -> EB#"
Jakob Stoklund Olesen2dfbb3e2011-02-03 20:29:43 +0000715 << Bundles->getBundle(BI.MBB->getNumber(), 1)
716 << " intf [" << IP.first << ';' << IP.second << ')');
717
718 // The interference interval should either be invalid or overlap MBB.
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000719 assert((!IP.first.isValid() || IP.first < BI.Stop) && "Bad interference");
720 assert((!IP.second.isValid() || IP.second > BI.Start)
721 && "Bad interference");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000722
723 // Check interference leaving the block.
Jakob Stoklund Olesen2dfbb3e2011-02-03 20:29:43 +0000724 if (!IP.second.isValid()) {
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000725 // Block is interference-free.
726 DEBUG(dbgs() << ", no interference");
727 if (!BI.Uses) {
728 assert(BI.LiveThrough && "No uses, but not live through block?");
729 // Block is live-through without interference.
730 DEBUG(dbgs() << ", no uses"
731 << (RegIn ? ", live-through.\n" : ", stack in.\n"));
732 if (!RegIn)
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000733 SE->enterIntvAtEnd(*BI.MBB);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000734 continue;
735 }
736 if (!BI.LiveThrough) {
737 DEBUG(dbgs() << ", not live-through.\n");
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000738 SE->useIntv(SE->enterIntvBefore(BI.Def), BI.Stop);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000739 continue;
740 }
741 if (!RegIn) {
742 // Block is live-through, but entry bundle is on the stack.
743 // Reload just before the first use.
744 DEBUG(dbgs() << ", not live-in, enter before first use.\n");
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000745 SE->useIntv(SE->enterIntvBefore(BI.FirstUse), BI.Stop);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000746 continue;
747 }
748 DEBUG(dbgs() << ", live-through.\n");
749 continue;
750 }
751
752 // Block has interference.
753 DEBUG(dbgs() << ", interference to " << IP.second);
Jakob Stoklund Olesenfe3f99f2011-02-05 01:06:39 +0000754
755 if (!BI.LiveThrough && IP.second <= BI.Def) {
756 // The interference doesn't reach the outgoing segment.
757 DEBUG(dbgs() << " doesn't affect def from " << BI.Def << '\n');
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000758 SE->useIntv(BI.Def, BI.Stop);
Jakob Stoklund Olesenfe3f99f2011-02-05 01:06:39 +0000759 continue;
760 }
761
762
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000763 if (!BI.Uses) {
764 // No uses in block, avoid interference by reloading as late as possible.
765 DEBUG(dbgs() << ", no uses.\n");
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000766 SlotIndex SegStart = SE->enterIntvAtEnd(*BI.MBB);
Jakob Stoklund Olesende710952011-02-05 01:06:36 +0000767 assert(SegStart >= IP.second && "Couldn't avoid interference");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000768 continue;
769 }
Jakob Stoklund Olesenfe3f99f2011-02-05 01:06:39 +0000770
Jakob Stoklund Olesen8a2bbde2011-02-08 23:26:48 +0000771 if (IP.second.getBoundaryIndex() < BI.LastUse) {
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000772 // There are interference-free uses at the end of the block.
773 // Find the first use that can get the live-out register.
Jakob Stoklund Olesenc0de9952011-01-20 17:45:23 +0000774 SmallVectorImpl<SlotIndex>::const_iterator UI =
Jakob Stoklund Olesenfe3f99f2011-02-05 01:06:39 +0000775 std::lower_bound(SA->UseSlots.begin(), SA->UseSlots.end(),
776 IP.second.getBoundaryIndex());
Jakob Stoklund Olesenc0de9952011-01-20 17:45:23 +0000777 assert(UI != SA->UseSlots.end() && "Couldn't find last use");
778 SlotIndex Use = *UI;
Jakob Stoklund Olesenc0de9952011-01-20 17:45:23 +0000779 assert(Use <= BI.LastUse && "Couldn't find last use");
Jakob Stoklund Olesen8a2bbde2011-02-08 23:26:48 +0000780 // Only attempt a split befroe the last split point.
781 if (Use.getBaseIndex() <= BI.LastSplitPoint) {
782 DEBUG(dbgs() << ", free use at " << Use << ".\n");
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000783 SlotIndex SegStart = SE->enterIntvBefore(Use);
Jakob Stoklund Olesen8a2bbde2011-02-08 23:26:48 +0000784 assert(SegStart >= IP.second && "Couldn't avoid interference");
785 assert(SegStart < BI.LastSplitPoint && "Impossible split point");
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000786 SE->useIntv(SegStart, BI.Stop);
Jakob Stoklund Olesen8a2bbde2011-02-08 23:26:48 +0000787 continue;
788 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000789 }
790
791 // Interference is after the last use.
792 DEBUG(dbgs() << " after last use.\n");
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000793 SlotIndex SegStart = SE->enterIntvAtEnd(*BI.MBB);
Jakob Stoklund Olesende710952011-02-05 01:06:36 +0000794 assert(SegStart >= IP.second && "Couldn't avoid interference");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000795 }
796
797 // Now all defs leading to live bundles are handled, do everything else.
Jakob Stoklund Olesenf0ac26c2011-02-09 22:50:26 +0000798 for (unsigned i = 0, e = SA->LiveBlocks.size(); i != e; ++i) {
799 SplitAnalysis::BlockInfo &BI = SA->LiveBlocks[i];
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000800 bool RegIn = LiveBundles[Bundles->getBundle(BI.MBB->getNumber(), 0)];
801 bool RegOut = LiveBundles[Bundles->getBundle(BI.MBB->getNumber(), 1)];
802
803 // Is the register live-in?
804 if (!BI.LiveIn || !RegIn)
805 continue;
806
807 // We have an incoming register. Check for interference.
808 IndexPair &IP = InterferenceRanges[i];
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000809
810 DEBUG(dbgs() << "EB#" << Bundles->getBundle(BI.MBB->getNumber(), 0)
811 << " -> BB#" << BI.MBB->getNumber());
812
813 // Check interference entering the block.
Jakob Stoklund Olesen2dfbb3e2011-02-03 20:29:43 +0000814 if (!IP.first.isValid()) {
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000815 // Block is interference-free.
816 DEBUG(dbgs() << ", no interference");
817 if (!BI.Uses) {
818 assert(BI.LiveThrough && "No uses, but not live through block?");
819 // Block is live-through without interference.
820 if (RegOut) {
821 DEBUG(dbgs() << ", no uses, live-through.\n");
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000822 SE->useIntv(BI.Start, BI.Stop);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000823 } else {
824 DEBUG(dbgs() << ", no uses, stack-out.\n");
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000825 SE->leaveIntvAtTop(*BI.MBB);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000826 }
827 continue;
828 }
829 if (!BI.LiveThrough) {
830 DEBUG(dbgs() << ", killed in block.\n");
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000831 SE->useIntv(BI.Start, SE->leaveIntvAfter(BI.Kill));
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000832 continue;
833 }
834 if (!RegOut) {
835 // Block is live-through, but exit bundle is on the stack.
836 // Spill immediately after the last use.
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000837 if (BI.LastUse < BI.LastSplitPoint) {
838 DEBUG(dbgs() << ", uses, stack-out.\n");
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000839 SE->useIntv(BI.Start, SE->leaveIntvAfter(BI.LastUse));
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000840 continue;
841 }
842 // The last use is after the last split point, it is probably an
843 // indirect jump.
844 DEBUG(dbgs() << ", uses at " << BI.LastUse << " after split point "
845 << BI.LastSplitPoint << ", stack-out.\n");
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000846 SlotIndex SegEnd = SE->leaveIntvBefore(BI.LastSplitPoint);
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000847 SE->useIntv(BI.Start, SegEnd);
Jakob Stoklund Olesen5c716bd2011-02-08 18:50:21 +0000848 // Run a double interval from the split to the last use.
849 // This makes it possible to spill the complement without affecting the
850 // indirect branch.
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000851 SE->overlapIntv(SegEnd, BI.LastUse);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000852 continue;
853 }
854 // Register is live-through.
855 DEBUG(dbgs() << ", uses, live-through.\n");
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000856 SE->useIntv(BI.Start, BI.Stop);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000857 continue;
858 }
859
860 // Block has interference.
861 DEBUG(dbgs() << ", interference from " << IP.first);
Jakob Stoklund Olesenfe3f99f2011-02-05 01:06:39 +0000862
863 if (!BI.LiveThrough && IP.first >= BI.Kill) {
864 // The interference doesn't reach the outgoing segment.
865 DEBUG(dbgs() << " doesn't affect kill at " << BI.Kill << '\n');
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000866 SE->useIntv(BI.Start, BI.Kill);
Jakob Stoklund Olesenfe3f99f2011-02-05 01:06:39 +0000867 continue;
868 }
869
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000870 if (!BI.Uses) {
871 // No uses in block, avoid interference by spilling as soon as possible.
872 DEBUG(dbgs() << ", no uses.\n");
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000873 SlotIndex SegEnd = SE->leaveIntvAtTop(*BI.MBB);
Jakob Stoklund Olesende710952011-02-05 01:06:36 +0000874 assert(SegEnd <= IP.first && "Couldn't avoid interference");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000875 continue;
876 }
Jakob Stoklund Olesenfe3f99f2011-02-05 01:06:39 +0000877 if (IP.first.getBaseIndex() > BI.FirstUse) {
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000878 // There are interference-free uses at the beginning of the block.
879 // Find the last use that can get the register.
Jakob Stoklund Olesenc0de9952011-01-20 17:45:23 +0000880 SmallVectorImpl<SlotIndex>::const_iterator UI =
Jakob Stoklund Olesenfe3f99f2011-02-05 01:06:39 +0000881 std::lower_bound(SA->UseSlots.begin(), SA->UseSlots.end(),
882 IP.first.getBaseIndex());
Jakob Stoklund Olesenc0de9952011-01-20 17:45:23 +0000883 assert(UI != SA->UseSlots.begin() && "Couldn't find first use");
884 SlotIndex Use = (--UI)->getBoundaryIndex();
885 DEBUG(dbgs() << ", free use at " << *UI << ".\n");
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000886 SlotIndex SegEnd = SE->leaveIntvAfter(Use);
Jakob Stoklund Olesende710952011-02-05 01:06:36 +0000887 assert(SegEnd <= IP.first && "Couldn't avoid interference");
Jakob Stoklund Olesen36d61862011-03-03 03:41:29 +0000888 SE->useIntv(BI.Start, SegEnd);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000889 continue;
890 }
891
892 // Interference is before the first use.
893 DEBUG(dbgs() << " before first use.\n");
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000894 SlotIndex SegEnd = SE->leaveIntvAtTop(*BI.MBB);
Jakob Stoklund Olesende710952011-02-05 01:06:36 +0000895 assert(SegEnd <= IP.first && "Couldn't avoid interference");
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000896 }
897
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000898 SE->closeIntv();
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000899
900 // FIXME: Should we be more aggressive about splitting the stack region into
901 // per-block segments? The current approach allows the stack region to
902 // separate into connected components. Some components may be allocatable.
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +0000903 SE->finish();
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +0000904 ++NumGlobalSplits;
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000905
Jakob Stoklund Olesen9b3d24b2011-02-04 19:33:07 +0000906 if (VerifyEnabled) {
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000907 MF->verify(this, "After splitting live range around region");
Jakob Stoklund Olesen9b3d24b2011-02-04 19:33:07 +0000908
909#ifndef NDEBUG
910 // Make sure that at least one of the new intervals can allocate to PhysReg.
911 // That was the whole point of splitting the live range.
912 bool found = false;
913 for (LiveRangeEdit::iterator I = LREdit.begin(), E = LREdit.end(); I != E;
914 ++I)
915 if (!checkUncachedInterference(**I, PhysReg)) {
916 found = true;
917 break;
918 }
919 assert(found && "No allocatable intervals after pointless splitting");
920#endif
921 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000922}
923
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000924unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order,
925 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000926 BitVector LiveBundles, BestBundles;
927 float BestCost = 0;
928 unsigned BestReg = 0;
929 Order.rewind();
930 while (unsigned PhysReg = Order.next()) {
931 float Cost = calcInterferenceInfo(VirtReg, PhysReg);
932 if (BestReg && Cost >= BestCost)
933 continue;
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000934
935 SpillPlacer->placeSpills(SpillConstraints, LiveBundles);
936 // No live bundles, defer to splitSingleBlocks().
937 if (!LiveBundles.any())
938 continue;
939
940 Cost += calcGlobalSplitCost(LiveBundles);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000941 if (!BestReg || Cost < BestCost) {
942 BestReg = PhysReg;
943 BestCost = Cost;
944 BestBundles.swap(LiveBundles);
945 }
946 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000947
948 if (!BestReg)
949 return 0;
950
951 splitAroundRegion(VirtReg, BestReg, BestBundles, NewVRegs);
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +0000952 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Region);
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +0000953 return 0;
954}
955
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +0000956
957//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +0000958// Local Splitting
959//===----------------------------------------------------------------------===//
960
961
962/// calcGapWeights - Compute the maximum spill weight that needs to be evicted
963/// in order to use PhysReg between two entries in SA->UseSlots.
964///
965/// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1].
966///
967void RAGreedy::calcGapWeights(unsigned PhysReg,
968 SmallVectorImpl<float> &GapWeight) {
969 assert(SA->LiveBlocks.size() == 1 && "Not a local interval");
970 const SplitAnalysis::BlockInfo &BI = SA->LiveBlocks.front();
971 const SmallVectorImpl<SlotIndex> &Uses = SA->UseSlots;
972 const unsigned NumGaps = Uses.size()-1;
973
974 // Start and end points for the interference check.
975 SlotIndex StartIdx = BI.LiveIn ? BI.FirstUse.getBaseIndex() : BI.FirstUse;
976 SlotIndex StopIdx = BI.LiveOut ? BI.LastUse.getBoundaryIndex() : BI.LastUse;
977
978 GapWeight.assign(NumGaps, 0.0f);
979
980 // Add interference from each overlapping register.
981 for (const unsigned *AI = TRI->getOverlaps(PhysReg); *AI; ++AI) {
982 if (!query(const_cast<LiveInterval&>(SA->getParent()), *AI)
983 .checkInterference())
984 continue;
985
986 // We know that VirtReg is a continuous interval from FirstUse to LastUse,
987 // so we don't need InterferenceQuery.
988 //
989 // Interference that overlaps an instruction is counted in both gaps
990 // surrounding the instruction. The exception is interference before
991 // StartIdx and after StopIdx.
992 //
993 LiveIntervalUnion::SegmentIter IntI = PhysReg2LiveUnion[*AI].find(StartIdx);
994 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
995 // Skip the gaps before IntI.
996 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
997 if (++Gap == NumGaps)
998 break;
999 if (Gap == NumGaps)
1000 break;
1001
1002 // Update the gaps covered by IntI.
1003 const float weight = IntI.value()->weight;
1004 for (; Gap != NumGaps; ++Gap) {
1005 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
1006 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
1007 break;
1008 }
1009 if (Gap == NumGaps)
1010 break;
1011 }
1012 }
1013}
1014
1015/// getPrevMappedIndex - Return the slot index of the last non-copy instruction
1016/// before MI that has a slot index. If MI is the first mapped instruction in
1017/// its block, return the block start index instead.
1018///
1019SlotIndex RAGreedy::getPrevMappedIndex(const MachineInstr *MI) {
1020 assert(MI && "Missing MachineInstr");
1021 const MachineBasicBlock *MBB = MI->getParent();
1022 MachineBasicBlock::const_iterator B = MBB->begin(), I = MI;
1023 while (I != B)
1024 if (!(--I)->isDebugValue() && !I->isCopy())
1025 return Indexes->getInstructionIndex(I);
1026 return Indexes->getMBBStartIdx(MBB);
1027}
1028
1029/// calcPrevSlots - Fill in the PrevSlot array with the index of the previous
1030/// real non-copy instruction for each instruction in SA->UseSlots.
1031///
1032void RAGreedy::calcPrevSlots() {
1033 const SmallVectorImpl<SlotIndex> &Uses = SA->UseSlots;
1034 PrevSlot.clear();
1035 PrevSlot.reserve(Uses.size());
1036 for (unsigned i = 0, e = Uses.size(); i != e; ++i) {
1037 const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]);
1038 PrevSlot.push_back(getPrevMappedIndex(MI).getDefIndex());
1039 }
1040}
1041
1042/// nextSplitPoint - Find the next index into SA->UseSlots > i such that it may
1043/// be beneficial to split before UseSlots[i].
1044///
1045/// 0 is always a valid split point
1046unsigned RAGreedy::nextSplitPoint(unsigned i) {
1047 const SmallVectorImpl<SlotIndex> &Uses = SA->UseSlots;
1048 const unsigned Size = Uses.size();
1049 assert(i != Size && "No split points after the end");
1050 // Allow split before i when Uses[i] is not adjacent to the previous use.
1051 while (++i != Size && PrevSlot[i].getBaseIndex() <= Uses[i-1].getBaseIndex())
1052 ;
1053 return i;
1054}
1055
1056/// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only
1057/// basic block.
1058///
1059unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1060 SmallVectorImpl<LiveInterval*> &NewVRegs) {
1061 assert(SA->LiveBlocks.size() == 1 && "Not a local interval");
1062 const SplitAnalysis::BlockInfo &BI = SA->LiveBlocks.front();
1063
1064 // Note that it is possible to have an interval that is live-in or live-out
1065 // while only covering a single block - A phi-def can use undef values from
1066 // predecessors, and the block could be a single-block loop.
1067 // We don't bother doing anything clever about such a case, we simply assume
1068 // that the interval is continuous from FirstUse to LastUse. We should make
1069 // sure that we don't do anything illegal to such an interval, though.
1070
1071 const SmallVectorImpl<SlotIndex> &Uses = SA->UseSlots;
1072 if (Uses.size() <= 2)
1073 return 0;
1074 const unsigned NumGaps = Uses.size()-1;
1075
1076 DEBUG({
1077 dbgs() << "tryLocalSplit: ";
1078 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
1079 dbgs() << ' ' << SA->UseSlots[i];
1080 dbgs() << '\n';
1081 });
1082
1083 // For every use, find the previous mapped non-copy instruction.
1084 // We use this to detect valid split points, and to estimate new interval
1085 // sizes.
1086 calcPrevSlots();
1087
1088 unsigned BestBefore = NumGaps;
1089 unsigned BestAfter = 0;
1090 float BestDiff = 0;
1091
Jakob Stoklund Olesen40a42a22011-03-04 00:58:40 +00001092 const float blockFreq = SpillPlacer->getBlockFrequency(BI.MBB->getNumber());
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001093 SmallVector<float, 8> GapWeight;
1094
1095 Order.rewind();
1096 while (unsigned PhysReg = Order.next()) {
1097 // Keep track of the largest spill weight that would need to be evicted in
1098 // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1].
1099 calcGapWeights(PhysReg, GapWeight);
1100
1101 // Try to find the best sequence of gaps to close.
1102 // The new spill weight must be larger than any gap interference.
1103
1104 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
1105 unsigned SplitBefore = 0, SplitAfter = nextSplitPoint(1) - 1;
1106
1107 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1108 // It is the spill weight that needs to be evicted.
1109 float MaxGap = GapWeight[0];
1110 for (unsigned i = 1; i != SplitAfter; ++i)
1111 MaxGap = std::max(MaxGap, GapWeight[i]);
1112
1113 for (;;) {
1114 // Live before/after split?
1115 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1116 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut;
1117
1118 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << ' '
1119 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1120 << " i=" << MaxGap);
1121
1122 // Stop before the interval gets so big we wouldn't be making progress.
1123 if (!LiveBefore && !LiveAfter) {
1124 DEBUG(dbgs() << " all\n");
1125 break;
1126 }
1127 // Should the interval be extended or shrunk?
1128 bool Shrink = true;
1129 if (MaxGap < HUGE_VALF) {
1130 // Estimate the new spill weight.
1131 //
1132 // Each instruction reads and writes the register, except the first
1133 // instr doesn't read when !FirstLive, and the last instr doesn't write
1134 // when !LastLive.
1135 //
1136 // We will be inserting copies before and after, so the total number of
1137 // reads and writes is 2 * EstUses.
1138 //
1139 const unsigned EstUses = 2*(SplitAfter - SplitBefore) +
1140 2*(LiveBefore + LiveAfter);
1141
1142 // Try to guess the size of the new interval. This should be trivial,
1143 // but the slot index of an inserted copy can be a lot smaller than the
1144 // instruction it is inserted before if there are many dead indexes
1145 // between them.
1146 //
1147 // We measure the distance from the instruction before SplitBefore to
1148 // get a conservative estimate.
1149 //
1150 // The final distance can still be different if inserting copies
1151 // triggers a slot index renumbering.
1152 //
1153 const float EstWeight = normalizeSpillWeight(blockFreq * EstUses,
1154 PrevSlot[SplitBefore].distance(Uses[SplitAfter]));
1155 // Would this split be possible to allocate?
1156 // Never allocate all gaps, we wouldn't be making progress.
1157 float Diff = EstWeight - MaxGap;
1158 DEBUG(dbgs() << " w=" << EstWeight << " d=" << Diff);
1159 if (Diff > 0) {
1160 Shrink = false;
1161 if (Diff > BestDiff) {
1162 DEBUG(dbgs() << " (best)");
1163 BestDiff = Diff;
1164 BestBefore = SplitBefore;
1165 BestAfter = SplitAfter;
1166 }
1167 }
1168 }
1169
1170 // Try to shrink.
1171 if (Shrink) {
1172 SplitBefore = nextSplitPoint(SplitBefore);
1173 if (SplitBefore < SplitAfter) {
1174 DEBUG(dbgs() << " shrink\n");
1175 // Recompute the max when necessary.
1176 if (GapWeight[SplitBefore - 1] >= MaxGap) {
1177 MaxGap = GapWeight[SplitBefore];
1178 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i)
1179 MaxGap = std::max(MaxGap, GapWeight[i]);
1180 }
1181 continue;
1182 }
1183 MaxGap = 0;
1184 }
1185
1186 // Try to extend the interval.
1187 if (SplitAfter >= NumGaps) {
1188 DEBUG(dbgs() << " end\n");
1189 break;
1190 }
1191
1192 DEBUG(dbgs() << " extend\n");
1193 for (unsigned e = nextSplitPoint(SplitAfter + 1) - 1;
1194 SplitAfter != e; ++SplitAfter)
1195 MaxGap = std::max(MaxGap, GapWeight[SplitAfter]);
1196 continue;
1197 }
1198 }
1199
1200 // Didn't find any candidates?
1201 if (BestBefore == NumGaps)
1202 return 0;
1203
1204 DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore]
1205 << '-' << Uses[BestAfter] << ", " << BestDiff
1206 << ", " << (BestAfter - BestBefore + 1) << " instrs\n");
1207
1208 SmallVector<LiveInterval*, 4> SpillRegs;
1209 LiveRangeEdit LREdit(VirtReg, NewVRegs, SpillRegs);
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001210 SE->reset(LREdit);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001211
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001212 SE->openIntv();
1213 SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]);
1214 SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]);
1215 SE->useIntv(SegStart, SegStop);
1216 SE->closeIntv();
1217 SE->finish();
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001218 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Local);
Jakob Stoklund Olesen0db841f2011-02-17 22:53:48 +00001219 ++NumLocalSplits;
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001220
1221 return 0;
1222}
1223
1224//===----------------------------------------------------------------------===//
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001225// Live Range Splitting
1226//===----------------------------------------------------------------------===//
1227
1228/// trySplit - Try to split VirtReg or one of its interferences, making it
1229/// assignable.
1230/// @return Physreg when VirtReg may be assigned and/or new NewVRegs.
1231unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order,
1232 SmallVectorImpl<LiveInterval*>&NewVRegs) {
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001233 // Local intervals are handled separately.
Jakob Stoklund Olesena2ebf602011-02-19 00:38:40 +00001234 if (LIS->intervalIsInOneMBB(VirtReg)) {
1235 NamedRegionTimer T("Local Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001236 SA->analyze(&VirtReg);
Jakob Stoklund Olesen034a80d2011-02-17 19:13:53 +00001237 return tryLocalSplit(VirtReg, Order, NewVRegs);
Jakob Stoklund Olesena2ebf602011-02-19 00:38:40 +00001238 }
1239
1240 NamedRegionTimer T("Global Splitting", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001241
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001242 // Don't iterate global splitting.
1243 // Move straight to spilling if this range was produced by a global split.
1244 LiveRangeStage Stage = getStage(VirtReg);
1245 if (Stage >= RS_Block)
1246 return 0;
1247
1248 SA->analyze(&VirtReg);
1249
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001250 // First try to split around a region spanning multiple blocks.
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001251 if (Stage < RS_Region) {
1252 unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs);
1253 if (PhysReg || !NewVRegs.empty())
1254 return PhysReg;
1255 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001256
1257 // Then isolate blocks with multiple uses.
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001258 if (Stage < RS_Block) {
1259 SplitAnalysis::BlockPtrSet Blocks;
1260 if (SA->getMultiUseBlocks(Blocks)) {
1261 SmallVector<LiveInterval*, 4> SpillRegs;
1262 LiveRangeEdit LREdit(VirtReg, NewVRegs, SpillRegs);
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001263 SE->reset(LREdit);
1264 SE->splitSingleBlocks(Blocks);
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001265 setStage(NewVRegs.begin(), NewVRegs.end(), RS_Block);
1266 if (VerifyEnabled)
1267 MF->verify(this, "After splitting live range around basic blocks");
1268 }
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001269 }
1270
1271 // Don't assign any physregs.
1272 return 0;
1273}
1274
1275
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001276//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001277// Main Entry Point
1278//===----------------------------------------------------------------------===//
1279
1280unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001281 SmallVectorImpl<LiveInterval*> &NewVRegs) {
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001282 LiveRangeStage Stage = getStage(VirtReg);
1283 if (Stage == RS_Original)
1284 LRStage[VirtReg.reg] = RS_Second;
1285
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001286 // First try assigning a free register.
Jakob Stoklund Olesendd479e92010-12-10 22:21:05 +00001287 AllocationOrder Order(VirtReg.reg, *VRM, ReservedRegs);
1288 while (unsigned PhysReg = Order.next()) {
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001289 if (!checkPhysRegInterference(VirtReg, PhysReg))
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001290 return PhysReg;
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001291 }
Andrew Trickb853e6c2010-12-09 18:15:21 +00001292
Jakob Stoklund Olesen98c81412011-02-23 00:29:52 +00001293 if (unsigned PhysReg = tryReassign(VirtReg, Order, NewVRegs))
1294 return PhysReg;
1295
1296 if (unsigned PhysReg = tryEvict(VirtReg, Order, NewVRegs))
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +00001297 return PhysReg;
Andrew Trickb853e6c2010-12-09 18:15:21 +00001298
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001299 assert(NewVRegs.empty() && "Cannot append to existing NewVRegs");
1300
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +00001301 // The first time we see a live range, don't try to split or spill.
1302 // Wait until the second time, when all smaller ranges have been allocated.
1303 // This gives a better picture of the interference to split around.
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001304 if (Stage == RS_Original) {
Jakob Stoklund Olesen107d3662011-02-24 23:21:36 +00001305 NewVRegs.push_back(&VirtReg);
1306 return 0;
1307 }
1308
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001309 assert(Stage < RS_Spill && "Cannot allocate after spilling");
1310
Jakob Stoklund Olesen46c83c82010-12-14 00:37:49 +00001311 // Try splitting VirtReg or interferences.
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001312 unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs);
1313 if (PhysReg || !NewVRegs.empty())
Jakob Stoklund Olesenb64d92e2010-12-14 00:37:44 +00001314 return PhysReg;
1315
Jakob Stoklund Olesen770d42d2010-12-22 22:01:30 +00001316 // Finally spill VirtReg itself.
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001317 NamedRegionTimer T("Spiller", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001318 SmallVector<LiveInterval*, 1> pendingSpills;
Jakob Stoklund Olesenccdb3fc2011-01-19 22:11:48 +00001319 spiller().spill(&VirtReg, NewVRegs, pendingSpills);
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001320
1321 // The live virtual register requesting allocation was spilled, so tell
1322 // the caller not to allocate anything during this round.
1323 return 0;
1324}
1325
1326bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
1327 DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n"
1328 << "********** Function: "
1329 << ((Value*)mf.getFunction())->getName() << '\n');
1330
1331 MF = &mf;
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +00001332 if (VerifyEnabled)
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +00001333 MF->verify(this, "Before greedy register allocator");
Jakob Stoklund Olesenaf249642010-12-17 23:16:35 +00001334
Jakob Stoklund Olesen4680dec2010-12-10 23:49:00 +00001335 RegAllocBase::init(getAnalysis<VirtRegMap>(), getAnalysis<LiveIntervals>());
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001336 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesenf428eb62010-12-17 23:16:32 +00001337 DomTree = &getAnalysis<MachineDominatorTree>();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001338 ReservedRegs = TRI->getReservedRegs(*MF);
Jakob Stoklund Olesenf6dff842010-12-10 22:54:44 +00001339 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM));
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +00001340 Loops = &getAnalysis<MachineLoopInfo>();
1341 LoopRanges = &getAnalysis<MachineLoopRanges>();
Jakob Stoklund Olesenb5fa9332011-01-18 21:13:27 +00001342 Bundles = &getAnalysis<EdgeBundles>();
1343 SpillPlacer = &getAnalysis<SpillPlacement>();
1344
Jakob Stoklund Olesen1b847de2011-02-19 00:53:42 +00001345 SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops));
Jakob Stoklund Olesenbece06f2011-03-03 01:29:13 +00001346 SE.reset(new SplitEditor(*SA, *LIS, *VRM, *DomTree));
Jakob Stoklund Olesen22a1df62011-03-01 21:10:07 +00001347 LRStage.clear();
1348 LRStage.resize(MRI->getNumVirtRegs());
Jakob Stoklund Olesend0bb5e22010-12-15 23:46:13 +00001349
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001350 allocatePhysRegs();
1351 addMBBLiveIns(MF);
Jakob Stoklund Olesen8a61da82011-02-08 21:13:03 +00001352 LIS->addKillFlags();
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001353
1354 // Run rewriter
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001355 {
1356 NamedRegionTimer T("Rewriter", TimerGroupName, TimePassesIsEnabled);
Jakob Stoklund Olesenba05c012011-02-18 22:03:18 +00001357 VRM->rewrite(Indexes);
Jakob Stoklund Olesen533f58e2010-12-11 00:19:56 +00001358 }
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +00001359
1360 // The pass output is in VirtRegMap. Release all the transient data.
1361 releaseMemory();
1362
1363 return true;
1364}