LLVM 19.0.0git
RegAllocEvictionAdvisor.cpp
Go to the documentation of this file.
1//===- RegAllocEvictionAdvisor.cpp - eviction advisor ---------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Implementation of the default eviction advisor and of the Analysis pass.
10//
11//===----------------------------------------------------------------------===//
12
14#include "AllocationOrder.h"
15#include "RegAllocGreedy.h"
21#include "llvm/Pass.h"
25
26using namespace llvm;
27
29 "regalloc-enable-advisor", cl::Hidden,
30 cl::init(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default),
31 cl::desc("Enable regalloc advisor mode"),
33 clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default,
34 "default", "Default"),
35 clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Release,
36 "release", "precompiled"),
37 clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Development,
38 "development", "for training")));
39
41 "enable-local-reassign", cl::Hidden,
42 cl::desc("Local reassignment can yield better allocation decisions, but "
43 "may be compile time intensive"),
44 cl::init(false));
45
46namespace llvm {
48 "regalloc-eviction-max-interference-cutoff", cl::Hidden,
49 cl::desc("Number of interferences after which we declare "
50 "an interference unevictable and bail out. This "
51 "is a compilation cost-saving consideration. To "
52 "disable, pass a very large number."),
53 cl::init(10));
54}
55
56#define DEBUG_TYPE "regalloc"
57#ifdef LLVM_HAVE_TF_AOT_REGALLOCEVICTMODEL
58#define LLVM_HAVE_TF_AOT
59#endif
60
63 "Regalloc eviction policy", false, true)
64
65namespace {
66class DefaultEvictionAdvisorAnalysis final
68public:
69 DefaultEvictionAdvisorAnalysis(bool NotAsRequested)
70 : RegAllocEvictionAdvisorAnalysis(AdvisorMode::Default),
71 NotAsRequested(NotAsRequested) {}
72
73 // support for isa<> and dyn_cast.
74 static bool classof(const RegAllocEvictionAdvisorAnalysis *R) {
75 return R->getAdvisorMode() == AdvisorMode::Default;
76 }
77
78private:
79 std::unique_ptr<RegAllocEvictionAdvisor>
80 getAdvisor(const MachineFunction &MF, const RAGreedy &RA) override {
81 return std::make_unique<DefaultEvictionAdvisor>(MF, RA);
82 }
83 bool doInitialization(Module &M) override {
84 if (NotAsRequested)
85 M.getContext().emitError("Requested regalloc eviction advisor analysis "
86 "could not be created. Using default");
88 }
89 const bool NotAsRequested;
90};
91} // namespace
92
94 Pass *Ret = nullptr;
95 switch (Mode) {
96 case RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default:
97 Ret = new DefaultEvictionAdvisorAnalysis(/*NotAsRequested*/ false);
98 break;
99 case RegAllocEvictionAdvisorAnalysis::AdvisorMode::Development:
100#if defined(LLVM_HAVE_TFLITE)
102#endif
103 break;
104 case RegAllocEvictionAdvisorAnalysis::AdvisorMode::Release:
106 break;
107 }
108 if (Ret)
109 return Ret;
110 return new DefaultEvictionAdvisorAnalysis(/*NotAsRequested*/ true);
111}
112
113StringRef RegAllocEvictionAdvisorAnalysis::getPassName() const {
114 switch (getAdvisorMode()) {
116 return "Default Regalloc Eviction Advisor";
118 return "Release mode Regalloc Eviction Advisor";
120 return "Development mode Regalloc Eviction Advisor";
121 }
122 llvm_unreachable("Unknown advisor kind");
123}
124
126 const RAGreedy &RA)
127 : MF(MF), RA(RA), Matrix(RA.getInterferenceMatrix()),
128 LIS(RA.getLiveIntervals()), VRM(RA.getVirtRegMap()),
129 MRI(&VRM->getRegInfo()), TRI(MF.getSubtarget().getRegisterInfo()),
130 RegClassInfo(RA.getRegClassInfo()), RegCosts(TRI->getRegisterCosts(MF)),
131 EnableLocalReassign(EnableLocalReassignment ||
132 MF.getSubtarget().enableRALocalReassignment(
133 MF.getTarget().getOptLevel())) {}
134
135/// shouldEvict - determine if A should evict the assigned live range B. The
136/// eviction policy defined by this function together with the allocation order
137/// defined by enqueue() decides which registers ultimately end up being split
138/// and spilled.
139///
140/// Cascade numbers are used to prevent infinite loops if this function is a
141/// cyclic relation.
142///
143/// @param A The live range to be assigned.
144/// @param IsHint True when A is about to be assigned to its preferred
145/// register.
146/// @param B The live range to be evicted.
147/// @param BreaksHint True when B is already assigned to its preferred register.
148bool DefaultEvictionAdvisor::shouldEvict(const LiveInterval &A, bool IsHint,
149 const LiveInterval &B,
150 bool BreaksHint) const {
151 bool CanSplit = RA.getExtraInfo().getStage(B) < RS_Spill;
152
153 // Be fairly aggressive about following hints as long as the evictee can be
154 // split.
155 if (CanSplit && IsHint && !BreaksHint)
156 return true;
157
158 if (A.weight() > B.weight()) {
159 LLVM_DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight() << '\n');
160 return true;
161 }
162 return false;
163}
164
165/// canEvictHintInterference - return true if the interference for VirtReg
166/// on the PhysReg, which is VirtReg's hint, can be evicted in favor of VirtReg.
167bool DefaultEvictionAdvisor::canEvictHintInterference(
168 const LiveInterval &VirtReg, MCRegister PhysReg,
169 const SmallVirtRegSet &FixedRegisters) const {
170 EvictionCost MaxCost;
171 MaxCost.setBrokenHints(1);
172 return canEvictInterferenceBasedOnCost(VirtReg, PhysReg, true, MaxCost,
173 FixedRegisters);
174}
175
176/// canEvictInterferenceBasedOnCost - Return true if all interferences between
177/// VirtReg and PhysReg can be evicted.
178///
179/// @param VirtReg Live range that is about to be assigned.
180/// @param PhysReg Desired register for assignment.
181/// @param IsHint True when PhysReg is VirtReg's preferred register.
182/// @param MaxCost Only look for cheaper candidates and update with new cost
183/// when returning true.
184/// @returns True when interference can be evicted cheaper than MaxCost.
185bool DefaultEvictionAdvisor::canEvictInterferenceBasedOnCost(
186 const LiveInterval &VirtReg, MCRegister PhysReg, bool IsHint,
187 EvictionCost &MaxCost, const SmallVirtRegSet &FixedRegisters) const {
188 // It is only possible to evict virtual register interference.
189 if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg)
190 return false;
191
192 bool IsLocal = VirtReg.empty() || LIS->intervalIsInOneMBB(VirtReg);
193
194 // Find VirtReg's cascade number. This will be unassigned if VirtReg was never
195 // involved in an eviction before. If a cascade number was assigned, deny
196 // evicting anything with the same or a newer cascade number. This prevents
197 // infinite eviction loops.
198 //
199 // This works out so a register without a cascade number is allowed to evict
200 // anything, and it can be evicted by anything.
201 unsigned Cascade = RA.getExtraInfo().getCascadeOrCurrentNext(VirtReg.reg());
202
204 for (MCRegUnit Unit : TRI->regunits(PhysReg)) {
205 LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, Unit);
206 // If there is 10 or more interferences, chances are one is heavier.
207 const auto &Interferences = Q.interferingVRegs(EvictInterferenceCutoff);
208 if (Interferences.size() >= EvictInterferenceCutoff)
209 return false;
210
211 // Check if any interfering live range is heavier than MaxWeight.
212 for (const LiveInterval *Intf : reverse(Interferences)) {
213 assert(Intf->reg().isVirtual() &&
214 "Only expecting virtual register interference from query");
215
216 // Do not allow eviction of a virtual register if we are in the middle
217 // of last-chance recoloring and this virtual register is one that we
218 // have scavenged a physical register for.
219 if (FixedRegisters.count(Intf->reg()))
220 return false;
221
222 // Never evict spill products. They cannot split or spill.
223 if (RA.getExtraInfo().getStage(*Intf) == RS_Done)
224 return false;
225 // Once a live range becomes small enough, it is urgent that we find a
226 // register for it. This is indicated by an infinite spill weight. These
227 // urgent live ranges get to evict almost anything.
228 //
229 // Also allow urgent evictions of unspillable ranges from a strictly
230 // larger allocation order.
231 bool Urgent =
232 !VirtReg.isSpillable() &&
233 (Intf->isSpillable() ||
236 MRI->getRegClass(Intf->reg())));
237 // Only evict older cascades or live ranges without a cascade.
238 unsigned IntfCascade = RA.getExtraInfo().getCascade(Intf->reg());
239 if (Cascade == IntfCascade)
240 return false;
241
242 if (Cascade < IntfCascade) {
243 if (!Urgent)
244 return false;
245 // We permit breaking cascades for urgent evictions. It should be the
246 // last resort, though, so make it really expensive.
247 Cost.BrokenHints += 10;
248 }
249 // Would this break a satisfied hint?
250 bool BreaksHint = VRM->hasPreferredPhys(Intf->reg());
251 // Update eviction cost.
252 Cost.BrokenHints += BreaksHint;
253 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight());
254 // Abort if this would be too expensive.
255 if (!(Cost < MaxCost))
256 return false;
257 if (Urgent)
258 continue;
259 // Apply the eviction policy for non-urgent evictions.
260 if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
261 return false;
262 // If !MaxCost.isMax(), then we're just looking for a cheap register.
263 // Evicting another local live range in this case could lead to suboptimal
264 // coloring.
265 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) &&
266 (!EnableLocalReassign || !canReassign(*Intf, PhysReg))) {
267 return false;
268 }
269 }
270 }
271 MaxCost = Cost;
272 return true;
273}
274
275MCRegister DefaultEvictionAdvisor::tryFindEvictionCandidate(
276 const LiveInterval &VirtReg, const AllocationOrder &Order,
277 uint8_t CostPerUseLimit, const SmallVirtRegSet &FixedRegisters) const {
278 // Keep track of the cheapest interference seen so far.
279 EvictionCost BestCost;
280 BestCost.setMax();
281 MCRegister BestPhys;
282 auto MaybeOrderLimit = getOrderLimit(VirtReg, Order, CostPerUseLimit);
283 if (!MaybeOrderLimit)
285 unsigned OrderLimit = *MaybeOrderLimit;
286
287 // When we are just looking for a reduced cost per use, don't break any
288 // hints, and only evict smaller spill weights.
289 if (CostPerUseLimit < uint8_t(~0u)) {
290 BestCost.BrokenHints = 0;
291 BestCost.MaxWeight = VirtReg.weight();
292 }
293
294 for (auto I = Order.begin(), E = Order.getOrderLimitEnd(OrderLimit); I != E;
295 ++I) {
296 MCRegister PhysReg = *I;
297 assert(PhysReg);
298 if (!canAllocatePhysReg(CostPerUseLimit, PhysReg) ||
299 !canEvictInterferenceBasedOnCost(VirtReg, PhysReg, false, BestCost,
300 FixedRegisters))
301 continue;
302
303 // Best so far.
304 BestPhys = PhysReg;
305
306 // Stop if the hint can be used.
307 if (I.isHint())
308 break;
309 }
310 return BestPhys;
311}
unsigned const MachineRegisterInfo * MRI
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
Definition: CommandLine.h:693
#define LLVM_DEBUG(X)
Definition: Debug.h:101
Live Register Matrix
#define I(x, y, z)
Definition: MD5.cpp:58
unsigned const TargetRegisterInfo * TRI
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
static cl::opt< bool > EnableLocalReassignment("enable-local-reassign", cl::Hidden, cl::desc("Local reassignment can yield better allocation decisions, but " "may be compile time intensive"), cl::init(false))
static cl::opt< RegAllocEvictionAdvisorAnalysis::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysis::AdvisorMode::Development, "development", "for training")))
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
SI optimize exec mask operations pre RA
Iterator getOrderLimitEnd(unsigned OrderLimit) const
Iterator begin() const
Query interferences between a single live virtual register and a live interval union.
const SmallVectorImpl< const LiveInterval * > & interferingVRegs(unsigned MaxInterferingRegs=std::numeric_limits< unsigned >::max())
LiveInterval - This class represents the liveness of a register, or stack slot.
Definition: LiveInterval.h:687
float weight() const
Definition: LiveInterval.h:719
Register reg() const
Definition: LiveInterval.h:718
bool isSpillable() const
isSpillable - Can this interval be spilled?
Definition: LiveInterval.h:826
MachineBasicBlock * intervalIsInOneMBB(const LiveInterval &LI) const
If LI is confined to a single basic block, return a pointer to that block.
bool empty() const
Definition: LiveInterval.h:382
LiveIntervalUnion::Query & query(const LiveRange &LR, MCRegister RegUnit)
Query a line of the assigned virtual register matrix directly.
@ IK_VirtReg
Virtual register interference.
Definition: LiveRegMatrix.h:90
InterferenceKind checkInterference(const LiveInterval &VirtReg, MCRegister PhysReg)
Check for interference before assigning VirtReg to PhysReg.
iterator_range< MCRegUnitIterator > regunits(MCRegister Reg) const
Returns an iterator range over all regunits for Reg.
Wrapper class representing physical registers. Should be passed by value.
Definition: MCRegister.h:33
static constexpr unsigned NoRegister
Definition: MCRegister.h:52
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
Pass interface - Implemented by all 'passes'.
Definition: Pass.h:94
virtual bool doInitialization(Module &)
doInitialization - Virtual method overridden by subclasses to do any necessary initialization before ...
Definition: Pass.h:119
LiveRangeStage getStage(Register Reg) const
unsigned getCascade(Register Reg) const
unsigned getCascadeOrCurrentNext(Register Reg) const
const ExtraRegInfo & getExtraInfo() const
ImmutableAnalysis abstraction for fetching the Eviction Advisor.
virtual std::unique_ptr< RegAllocEvictionAdvisor > getAdvisor(const MachineFunction &MF, const RAGreedy &RA)=0
Get an advisor for the given context (i.e. machine function, etc)
const TargetRegisterInfo *const TRI
std::optional< unsigned > getOrderLimit(const LiveInterval &VirtReg, const AllocationOrder &Order, unsigned CostPerUseLimit) const
MachineRegisterInfo *const MRI
const RegisterClassInfo & RegClassInfo
RegAllocEvictionAdvisor(const RegAllocEvictionAdvisor &)=delete
bool canReassign(const LiveInterval &VirtReg, MCRegister FromReg) const
const bool EnableLocalReassign
Run or not the local reassignment heuristic.
bool canAllocatePhysReg(unsigned CostPerUseLimit, MCRegister PhysReg) const
unsigned getNumAllocatableRegs(const TargetRegisterClass *RC) const
getNumAllocatableRegs - Returns the number of actually allocatable registers in RC in the current fun...
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
Definition: SmallSet.h:135
size_type count(const T &V) const
count - Return 1 if the element is in the set, 0 otherwise.
Definition: SmallSet.h:166
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
bool hasPreferredPhys(Register VirtReg) const
returns true if VirtReg is assigned to its preferred physreg.
Definition: VirtRegMap.cpp:109
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
Definition: CommandLine.h:718
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
auto reverse(ContainerTy &&C)
Definition: STLExtras.h:419
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
@ RS_Spill
Live range will be spilled. No more splitting will be attempted.
@ RS_Done
There is nothing more we can do to this live range.
Pass * callDefaultCtor< RegAllocEvictionAdvisorAnalysis >()
Specialization for the API used by the analysis infrastructure to create an instance of the eviction ...
RegAllocEvictionAdvisorAnalysis * createReleaseModeAdvisor()
RegAllocEvictionAdvisorAnalysis * createDevelopmentModeAdvisor()
cl::opt< unsigned > EvictInterferenceCutoff
InstructionCost Cost
Cost of evicting interference - used by default advisor, and the eviction chain heuristic in RegAlloc...
unsigned BrokenHints
Total number of broken hints.
float MaxWeight
Maximum spill weight evicted.
void setBrokenHints(unsigned NHints)