LLVM 23.0.0git
RegAllocEvictionAdvisor.h
Go to the documentation of this file.
1//===- RegAllocEvictionAdvisor.h - Interference resolution ------*- C++ -*-===//
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#ifndef LLVM_CODEGEN_REGALLOCEVICTIONADVISOR_H
10#define LLVM_CODEGEN_REGALLOCEVICTIONADVISOR_H
11
12#include "llvm/ADT/Any.h"
13#include "llvm/ADT/ArrayRef.h"
14#include "llvm/ADT/SmallSet.h"
15#include "llvm/ADT/StringRef.h"
19#include "llvm/Config/llvm-config.h"
20#include "llvm/IR/PassManager.h"
21#include "llvm/MC/MCRegister.h"
22#include "llvm/Pass.h"
24
25namespace llvm {
26class AllocationOrder;
27class LiveInterval;
28class LiveIntervals;
29class LiveRegMatrix;
30class MachineFunction;
34class VirtRegMap;
35
37
38// Live ranges pass through a number of stages as we try to allocate them.
39// Some of the stages may also create new live ranges:
40//
41// - Region splitting.
42// - Per-block splitting.
43// - Local splitting.
44// - Spilling.
45//
46// Ranges produced by one of the stages skip the previous stages when they are
47// dequeued. This improves performance because we can skip interference checks
48// that are unlikely to give any results. It also guarantees that the live
49// range splitting algorithm terminates, something that is otherwise hard to
50// ensure.
52 /// Newly created live range that has never been queued.
54
55 /// Only attempt assignment and eviction. Then requeue as RS_Split.
57
58 /// Attempt live range splitting if assignment is impossible.
60
61 /// Attempt more aggressive live range splitting that is guaranteed to make
62 /// progress. This is used for split products that may not be making
63 /// progress.
65
66 /// Live range will be spilled. No more splitting will be attempted.
68
69 /// There is nothing more we can do to this live range. Abort compilation
70 /// if it can't be assigned.
72};
73
74/// Cost of evicting interference - used by default advisor, and the eviction
75/// chain heuristic in RegAllocGreedy.
76// FIXME: this can be probably made an implementation detail of the default
77// advisor, if the eviction chain logic can be refactored.
79 unsigned BrokenHints = 0; ///< Total number of broken hints.
80 float MaxWeight = 0; ///< Maximum spill weight evicted.
81
82 EvictionCost() = default;
83
84 bool isMax() const { return BrokenHints == ~0u; }
85
86 void setMax() { BrokenHints = ~0u; }
87
88 void setBrokenHints(unsigned NHints) { BrokenHints = NHints; }
89
90 bool operator<(const EvictionCost &O) const {
91 return std::tie(BrokenHints, MaxWeight) <
92 std::tie(O.BrokenHints, O.MaxWeight);
93 }
94
95 bool operator>=(const EvictionCost &O) const { return !(*this < O); }
96};
97
98/// Interface to the eviction advisor, which is responsible for making a
99/// decision as to which live ranges should be evicted (if any).
100class RAGreedy;
102public:
105 virtual ~RegAllocEvictionAdvisor() = default;
106
107 /// Find a physical register that can be freed by evicting the FixedRegisters,
108 /// or return NoRegister. The eviction decision is assumed to be correct (i.e.
109 /// no fixed live ranges are evicted) and profitable.
111 const LiveInterval &VirtReg, const AllocationOrder &Order,
112 uint8_t CostPerUseLimit, const SmallVirtRegSet &FixedRegisters) const = 0;
113
114 /// Find out if we can evict the live ranges occupying the given PhysReg,
115 /// which is a hint (preferred register) for VirtReg.
116 virtual bool
118 const SmallVirtRegSet &FixedRegisters) const = 0;
119
120 /// Returns true if the given \p PhysReg is a callee saved register and has
121 /// not been used for allocation yet.
122 bool isUnusedCalleeSavedReg(MCRegister PhysReg) const;
123
124 /// Returns true if this is an urgent eviction.
125 bool isUrgentEviction(const LiveInterval &VirtReg,
126 const LiveInterval &Intf) const;
127
128protected:
130
131 bool canReassign(const LiveInterval &VirtReg, MCRegister FromReg) const;
132
133 // Get the upper limit of elements in the given Order we need to analize.
134 // TODO: is this heuristic, we could consider learning it.
135 std::optional<unsigned> getOrderLimit(const LiveInterval &VirtReg,
136 const AllocationOrder &Order,
137 unsigned CostPerUseLimit) const;
138
139 // Determine if it's worth trying to allocate this reg, given the
140 // CostPerUseLimit
141 // TODO: this is a heuristic component we could consider learning, too.
142 bool canAllocatePhysReg(unsigned CostPerUseLimit, MCRegister PhysReg) const;
143
145 const RAGreedy &RA;
153
154 /// Run or not the local reassignment heuristic. This information is
155 /// obtained from the TargetSubtargetInfo.
157};
158
159/// Common provider for legacy and new pass managers.
160/// This keeps the state for logging, and sets up and holds the provider.
161/// The legacy pass itself used to keep the logging state and provider,
162/// so this extraction helps the NPM analysis to reuse the logic.
163/// TODO: Coalesce this with the NPM analysis when legacy PM is removed.
165public:
166 enum class AdvisorMode : int { Default, Release, Development };
169
171
172 virtual void logRewardIfNeeded(const MachineFunction &MF,
173 llvm::function_ref<float()> GetReward) {}
174
175 virtual std::unique_ptr<RegAllocEvictionAdvisor>
178
179 AdvisorMode getAdvisorMode() const { return Mode; }
180
181protected:
183
184private:
185 const AdvisorMode Mode;
186};
187
188/// ImmutableAnalysis abstraction for fetching the Eviction Advisor. We model it
189/// as an analysis to decouple the user from the implementation insofar as
190/// dependencies on other analyses goes. The motivation for it being an
191/// immutable pass is twofold:
192/// - in the ML implementation case, the evaluator is stateless but (especially
193/// in the development mode) expensive to set up. With an immutable pass, we set
194/// it up once.
195/// - in the 'development' mode ML case, we want to capture the training log
196/// during allocation (this is a log of features encountered and decisions
197/// made), and then measure a score, potentially a few steps after allocation
198/// completes. So we need the properties of an immutable pass to keep the logger
199/// state around until we can make that measurement.
200///
201/// Because we need to offer additional services in 'development' mode, the
202/// implementations of this analysis need to implement RTTI support.
204public:
205 enum class AdvisorMode : int { Default, Release, Development };
206
209 static char ID;
210
211 /// Get an advisor for the given context (i.e. machine function, etc)
213
214 AdvisorMode getAdvisorMode() const { return Mode; }
215 virtual void logRewardIfNeeded(const MachineFunction &MF,
216 function_ref<float()> GetReward) {};
217
218protected:
219 // This analysis preserves everything, and subclasses may have additional
220 // requirements.
221 void getAnalysisUsage(AnalysisUsage &AU) const override {
222 AU.setPreservesAll();
223 }
224 std::unique_ptr<RegAllocEvictionAdvisorProvider> Provider;
225
226private:
227 StringRef getPassName() const override;
228 const AdvisorMode Mode;
229};
230
231/// A MachineFunction analysis for fetching the Eviction Advisor.
232/// This sets up the Provider lazily and caches it.
233/// - in the ML implementation case, the evaluator is stateless but (especially
234/// in the development mode) expensive to set up. With a Module Analysis, we
235/// `require` it and set it up once.
236/// - in the 'development' mode ML case, we want to capture the training log
237/// during allocation (this is a log of features encountered and decisions
238/// made), and then measure a score, potentially a few steps after allocation
239/// completes. So we need a Module analysis to keep the logger state around
240/// until we can make that measurement.
242 : public AnalysisInfoMixin<RegAllocEvictionAdvisorAnalysis> {
243 static AnalysisKey Key;
245
246public:
247 struct Result {
248 // owned by this analysis
250
252 MachineFunctionAnalysisManager::Invalidator &Inv) {
253 // Provider is stateless and constructed only once. Do not get
254 // invalidated.
255 return false;
256 }
257 };
258
260
261private:
262 void
264 LLVMContext &Ctx);
265
266 std::unique_ptr<RegAllocEvictionAdvisorProvider> Provider;
267};
268
269/// Specialization for the API used by the analysis infrastructure to create
270/// an instance of the eviction advisor.
272
273RegAllocEvictionAdvisorAnalysisLegacy *createReleaseModeAdvisorAnalysisLegacy();
274
275RegAllocEvictionAdvisorAnalysisLegacy *
277
280
283
284// TODO: move to RegAllocEvictionAdvisor.cpp when we move implementation
285// out of RegAllocGreedy.cpp
287public:
290
291private:
292 MCRegister tryFindEvictionCandidate(const LiveInterval &,
293 const AllocationOrder &, uint8_t,
294 const SmallVirtRegSet &) const override;
295 bool canEvictHintInterference(const LiveInterval &, MCRegister,
296 const SmallVirtRegSet &) const override;
297 bool canEvictInterferenceBasedOnCost(const LiveInterval &, MCRegister, bool,
298 EvictionCost &,
299 const SmallVirtRegSet &) const;
300 bool shouldEvict(const LiveInterval &A, bool, const LiveInterval &B,
301 bool) const;
302};
303} // namespace llvm
304
305#endif // LLVM_CODEGEN_REGALLOCEVICTIONADVISOR_H
This file provides Any, a non-template class modeled in the spirit of std::any.
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_ATTRIBUTE_RETURNS_NONNULL
Definition Compiler.h:373
Hexagon Hardware Loops
This header defines various interfaces for pass management in LLVM.
print mir2vec MIR2Vec Vocabulary Printer Pass
Definition MIR2Vec.cpp:598
ModuleAnalysisManager MAM
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
SI optimize exec mask operations pre RA
This file defines the SmallSet class.
Represent the analysis usage information of a pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
DefaultEvictionAdvisor(const MachineFunction &MF, const RAGreedy &RA)
ImmutablePass(char &pid)
Definition Pass.h:287
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
LiveInterval - This class represents the liveness of a register, or stack slot.
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
MachineBlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate machine basic b...
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition Pass.cpp:85
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
std::unique_ptr< RegAllocEvictionAdvisorProvider > Provider
RegAllocEvictionAdvisorProvider & getProvider()
Get an advisor for the given context (i.e. machine function, etc)
virtual void logRewardIfNeeded(const MachineFunction &MF, function_ref< float()> GetReward)
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
A MachineFunction analysis for fetching the Eviction Advisor.
Result run(MachineFunction &MF, MachineFunctionAnalysisManager &MAM)
Common provider for legacy and new pass managers.
virtual std::unique_ptr< RegAllocEvictionAdvisor > getAdvisor(const MachineFunction &MF, const RAGreedy &RA, MachineBlockFrequencyInfo *MBFI, MachineLoopInfo *Loops)=0
virtual void logRewardIfNeeded(const MachineFunction &MF, llvm::function_ref< float()> GetReward)
RegAllocEvictionAdvisorProvider(AdvisorMode Mode, LLVMContext &Ctx)
virtual ~RegAllocEvictionAdvisorProvider()=default
const TargetRegisterInfo *const TRI
virtual bool canEvictHintInterference(const LiveInterval &VirtReg, MCRegister PhysReg, const SmallVirtRegSet &FixedRegisters) const =0
Find out if we can evict the live ranges occupying the given PhysReg, which is a hint (preferred regi...
RegAllocEvictionAdvisor(RegAllocEvictionAdvisor &&)=delete
std::optional< unsigned > getOrderLimit(const LiveInterval &VirtReg, const AllocationOrder &Order, unsigned CostPerUseLimit) const
virtual MCRegister tryFindEvictionCandidate(const LiveInterval &VirtReg, const AllocationOrder &Order, uint8_t CostPerUseLimit, const SmallVirtRegSet &FixedRegisters) const =0
Find a physical register that can be freed by evicting the FixedRegisters, or return NoRegister.
const RegisterClassInfo & RegClassInfo
bool isUnusedCalleeSavedReg(MCRegister PhysReg) const
Returns true if the given PhysReg is a callee saved register and has not been used for allocation yet...
RegAllocEvictionAdvisor(const RegAllocEvictionAdvisor &)=delete
bool isUrgentEviction(const LiveInterval &VirtReg, const LiveInterval &Intf) const
Returns true if this is an urgent eviction.
bool canReassign(const LiveInterval &VirtReg, MCRegister FromReg) const
const bool EnableLocalReassign
Run or not the local reassignment heuristic.
virtual ~RegAllocEvictionAdvisor()=default
bool canAllocatePhysReg(unsigned CostPerUseLimit, MCRegister PhysReg) const
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
Definition SmallSet.h:134
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
An efficient, type-erasing, non-owning reference to a callable.
This is an optimization pass for GlobalISel generic memory operations.
SmallSet< Register, 16 > SmallVirtRegSet
RegAllocEvictionAdvisorAnalysisLegacy * createReleaseModeAdvisorAnalysisLegacy()
RegAllocEvictionAdvisorProvider * createDevelopmentModeAdvisorProvider(LLVMContext &Ctx)
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
Pass * callDefaultCtor< RegAllocEvictionAdvisorAnalysisLegacy >()
Specialization for the API used by the analysis infrastructure to create an instance of the eviction ...
@ RS_Split2
Attempt more aggressive live range splitting that is guaranteed to make progress.
@ RS_Spill
Live range will be spilled. No more splitting will be attempted.
@ RS_Split
Attempt live range splitting if assignment is impossible.
@ RS_New
Newly created live range that has never been queued.
@ RS_Done
There is nothing more we can do to this live range.
@ RS_Assign
Only attempt assignment and eviction. Then requeue as RS_Split.
LLVM_ATTRIBUTE_RETURNS_NONNULL RegAllocEvictionAdvisorProvider * createReleaseModeAdvisorProvider(LLVMContext &Ctx)
RegAllocEvictionAdvisorAnalysisLegacy * createDevelopmentModeAdvisorAnalysisLegacy()
A CRTP mix-in that provides informational APIs needed for analysis passes.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition Analysis.h:29
Cost of evicting interference - used by default advisor, and the eviction chain heuristic in RegAlloc...
bool operator>=(const EvictionCost &O) const
EvictionCost()=default
unsigned BrokenHints
Total number of broken hints.
bool operator<(const EvictionCost &O) const
float MaxWeight
Maximum spill weight evicted.
void setBrokenHints(unsigned NHints)
bool invalidate(MachineFunction &MF, const PreservedAnalyses &PA, MachineFunctionAnalysisManager::Invalidator &Inv)