Thanks to visit codestin.com
Credit goes to llvm.org

LLVM 22.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
124protected:
126
127 bool canReassign(const LiveInterval &VirtReg, MCRegister FromReg) const;
128
129 // Get the upper limit of elements in the given Order we need to analize.
130 // TODO: is this heuristic, we could consider learning it.
131 std::optional<unsigned> getOrderLimit(const LiveInterval &VirtReg,
132 const AllocationOrder &Order,
133 unsigned CostPerUseLimit) const;
134
135 // Determine if it's worth trying to allocate this reg, given the
136 // CostPerUseLimit
137 // TODO: this is a heuristic component we could consider learning, too.
138 bool canAllocatePhysReg(unsigned CostPerUseLimit, MCRegister PhysReg) const;
139
141 const RAGreedy &RA;
149
150 /// Run or not the local reassignment heuristic. This information is
151 /// obtained from the TargetSubtargetInfo.
153};
154
155/// Common provider for legacy and new pass managers.
156/// This keeps the state for logging, and sets up and holds the provider.
157/// The legacy pass itself used to keep the logging state and provider,
158/// so this extraction helps the NPM analysis to reuse the logic.
159/// TODO: Coalesce this with the NPM analysis when legacy PM is removed.
161public:
162 enum class AdvisorMode : int { Default, Release, Development };
165
167
168 virtual void logRewardIfNeeded(const MachineFunction &MF,
169 llvm::function_ref<float()> GetReward) {}
170
171 virtual std::unique_ptr<RegAllocEvictionAdvisor>
174
175 AdvisorMode getAdvisorMode() const { return Mode; }
176
177protected:
179
180private:
181 const AdvisorMode Mode;
182};
183
184/// ImmutableAnalysis abstraction for fetching the Eviction Advisor. We model it
185/// as an analysis to decouple the user from the implementation insofar as
186/// dependencies on other analyses goes. The motivation for it being an
187/// immutable pass is twofold:
188/// - in the ML implementation case, the evaluator is stateless but (especially
189/// in the development mode) expensive to set up. With an immutable pass, we set
190/// it up once.
191/// - in the 'development' mode ML case, we want to capture the training log
192/// during allocation (this is a log of features encountered and decisions
193/// made), and then measure a score, potentially a few steps after allocation
194/// completes. So we need the properties of an immutable pass to keep the logger
195/// state around until we can make that measurement.
196///
197/// Because we need to offer additional services in 'development' mode, the
198/// implementations of this analysis need to implement RTTI support.
200public:
201 enum class AdvisorMode : int { Default, Release, Development };
202
205 static char ID;
206
207 /// Get an advisor for the given context (i.e. machine function, etc)
209
210 AdvisorMode getAdvisorMode() const { return Mode; }
211 virtual void logRewardIfNeeded(const MachineFunction &MF,
212 function_ref<float()> GetReward) {};
213
214protected:
215 // This analysis preserves everything, and subclasses may have additional
216 // requirements.
217 void getAnalysisUsage(AnalysisUsage &AU) const override {
218 AU.setPreservesAll();
219 }
220 std::unique_ptr<RegAllocEvictionAdvisorProvider> Provider;
221
222private:
223 StringRef getPassName() const override;
224 const AdvisorMode Mode;
225};
226
227/// A MachineFunction analysis for fetching the Eviction Advisor.
228/// This sets up the Provider lazily and caches it.
229/// - in the ML implementation case, the evaluator is stateless but (especially
230/// in the development mode) expensive to set up. With a Module Analysis, we
231/// `require` it and set it up once.
232/// - in the 'development' mode ML case, we want to capture the training log
233/// during allocation (this is a log of features encountered and decisions
234/// made), and then measure a score, potentially a few steps after allocation
235/// completes. So we need a Module analysis to keep the logger state around
236/// until we can make that measurement.
238 : public AnalysisInfoMixin<RegAllocEvictionAdvisorAnalysis> {
239 static AnalysisKey Key;
241
242public:
243 struct Result {
244 // owned by this analysis
246
248 MachineFunctionAnalysisManager::Invalidator &Inv) {
249 // Provider is stateless and constructed only once. Do not get
250 // invalidated.
251 return false;
252 }
253 };
254
256
257private:
258 void
260 LLVMContext &Ctx);
261
262 std::unique_ptr<RegAllocEvictionAdvisorProvider> Provider;
263};
264
265/// Specialization for the API used by the analysis infrastructure to create
266/// an instance of the eviction advisor.
268
269RegAllocEvictionAdvisorAnalysisLegacy *createReleaseModeAdvisorAnalysisLegacy();
270
271RegAllocEvictionAdvisorAnalysisLegacy *
273
276
279
280// TODO: move to RegAllocEvictionAdvisor.cpp when we move implementation
281// out of RegAllocGreedy.cpp
283public:
286
287private:
288 MCRegister tryFindEvictionCandidate(const LiveInterval &,
289 const AllocationOrder &, uint8_t,
290 const SmallVirtRegSet &) const override;
291 bool canEvictHintInterference(const LiveInterval &, MCRegister,
292 const SmallVirtRegSet &) const override;
293 bool canEvictInterferenceBasedOnCost(const LiveInterval &, MCRegister, bool,
294 EvictionCost &,
295 const SmallVirtRegSet &) const;
296 bool shouldEvict(const LiveInterval &A, bool, const LiveInterval &B,
297 bool) const;
298};
299} // namespace llvm
300
301#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.
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
Shrink Wrap Pass
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.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:41
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:33
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 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:133
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
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.
Definition PassManager.h:93
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)