LLVM 20.0.0git
ReachingDefAnalysis.h
Go to the documentation of this file.
1//==--- llvm/CodeGen/ReachingDefAnalysis.h - Reaching Def Analysis -*- 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/// \file Reaching Defs Analysis pass.
10///
11/// This pass tracks for each instruction what is the "closest" reaching def of
12/// a given register. It is used by BreakFalseDeps (for clearance calculation)
13/// and ExecutionDomainFix (for arbitrating conflicting domains).
14///
15/// Note that this is different from the usual definition notion of liveness.
16/// The CPU doesn't care whether or not we consider a register killed.
17///
18//
19//===----------------------------------------------------------------------===//
20
21#ifndef LLVM_CODEGEN_REACHINGDEFANALYSIS_H
22#define LLVM_CODEGEN_REACHINGDEFANALYSIS_H
23
24#include "llvm/ADT/DenseMap.h"
30
31namespace llvm {
32
33class MachineBasicBlock;
34class MachineInstr;
35
36/// Thin wrapper around "int" used to store reaching definitions,
37/// using an encoding that makes it compatible with TinyPtrVector.
38/// The 0th LSB is forced zero (and will be used for pointer union tagging),
39/// The 1st LSB is forced one (to make sure the value is non-zero).
41 uintptr_t Encoded;
43 explicit ReachingDef(uintptr_t Encoded) : Encoded(Encoded) {}
44
45public:
46 ReachingDef(std::nullptr_t) : Encoded(0) {}
47 ReachingDef(int Instr) : Encoded(((uintptr_t) Instr << 2) | 2) {}
48 operator int() const { return ((int) Encoded) >> 2; }
49};
50
51template<>
53 static constexpr int NumLowBitsAvailable = 1;
54
55 static inline void *getAsVoidPointer(const ReachingDef &RD) {
56 return reinterpret_cast<void *>(RD.Encoded);
57 }
58
59 static inline ReachingDef getFromVoidPointer(void *P) {
60 return ReachingDef(reinterpret_cast<uintptr_t>(P));
61 }
62
63 static inline ReachingDef getFromVoidPointer(const void *P) {
64 return ReachingDef(reinterpret_cast<uintptr_t>(P));
65 }
66};
67
68// The storage for all reaching definitions.
70public:
71 void init(unsigned NumBlockIDs) { AllReachingDefs.resize(NumBlockIDs); }
72
73 unsigned numBlockIDs() const { return AllReachingDefs.size(); }
74
75 void startBasicBlock(unsigned MBBNumber, unsigned NumRegUnits) {
76 AllReachingDefs[MBBNumber].resize(NumRegUnits);
77 }
78
79 void append(unsigned MBBNumber, unsigned Unit, int Def) {
80 AllReachingDefs[MBBNumber][Unit].push_back(Def);
81 }
82
83 void prepend(unsigned MBBNumber, unsigned Unit, int Def) {
84 auto &Defs = AllReachingDefs[MBBNumber][Unit];
85 Defs.insert(Defs.begin(), Def);
86 }
87
88 void replaceFront(unsigned MBBNumber, unsigned Unit, int Def) {
89 assert(!AllReachingDefs[MBBNumber][Unit].empty());
90 *AllReachingDefs[MBBNumber][Unit].begin() = Def;
91 }
92
93 void clear() { AllReachingDefs.clear(); }
94
95 ArrayRef<ReachingDef> defs(unsigned MBBNumber, unsigned Unit) const {
96 if (AllReachingDefs[MBBNumber].empty())
97 // Block IDs are not necessarily dense.
98 return ArrayRef<ReachingDef>();
99 return AllReachingDefs[MBBNumber][Unit];
100 }
101
102private:
103 /// All reaching defs of a given RegUnit for a given MBB.
104 using MBBRegUnitDefs = TinyPtrVector<ReachingDef>;
105 /// All reaching defs of all reg units for a given MBB
106 using MBBDefsInfo = std::vector<MBBRegUnitDefs>;
107
108 /// All reaching defs of all reg units for all MBBs
109 SmallVector<MBBDefsInfo, 4> AllReachingDefs;
110};
111
112/// This class provides the reaching def analysis.
114private:
115 MachineFunction *MF = nullptr;
116 const TargetRegisterInfo *TRI = nullptr;
117 LoopTraversal::TraversalOrder TraversedMBBOrder;
118 unsigned NumRegUnits = 0;
119 /// Instruction that defined each register, relative to the beginning of the
120 /// current basic block. When a LiveRegsDefInfo is used to represent a
121 /// live-out register, this value is relative to the end of the basic block,
122 /// so it will be a negative number.
123 using LiveRegsDefInfo = std::vector<int>;
124 LiveRegsDefInfo LiveRegs;
125
126 /// Keeps clearance information for all registers. Note that this
127 /// is different from the usual definition notion of liveness. The CPU
128 /// doesn't care whether or not we consider a register killed.
130 OutRegsInfoMap MBBOutRegsInfos;
131
132 /// Current instruction number.
133 /// The first instruction in each basic block is 0.
134 int CurInstr = -1;
135
136 /// Maps instructions to their instruction Ids, relative to the beginning of
137 /// their basic blocks.
139
140 MBBReachingDefsInfo MBBReachingDefs;
141
142 /// Default values are 'nothing happened a long time ago'.
143 const int ReachingDefDefaultVal = -(1 << 21);
144
147
148public:
149 static char ID; // Pass identification, replacement for typeid
150
153 }
154 void releaseMemory() override;
155
156 void getAnalysisUsage(AnalysisUsage &AU) const override {
157 AU.setPreservesAll();
159 }
160
161 bool runOnMachineFunction(MachineFunction &MF) override;
162
167 }
168
169 /// Re-run the analysis.
170 void reset();
171
172 /// Initialize data structures.
173 void init();
174
175 /// Traverse the machine function, mapping definitions.
176 void traverse();
177
178 /// Provides the instruction id of the closest reaching def instruction of
179 /// Reg that reaches MI, relative to the begining of MI's basic block.
181
182 /// Return whether A and B use the same def of Reg.
184 MCRegister Reg) const;
185
186 /// Return whether the reaching def for MI also is live out of its parent
187 /// block.
189
190 /// Return the local MI that produces the live out value for Reg, or
191 /// nullptr for a non-live out or non-local def.
193 MCRegister Reg) const;
194
195 /// If a single MachineInstr creates the reaching definition, then return it.
196 /// Otherwise return null.
198
199 /// If a single MachineInstr creates the reaching definition, for MIs operand
200 /// at Idx, then return it. Otherwise return null.
201 MachineInstr *getMIOperand(MachineInstr *MI, unsigned Idx) const;
202
203 /// If a single MachineInstr creates the reaching definition, for MIs MO,
204 /// then return it. Otherwise return null.
206
207 /// Provide whether the register has been defined in the same basic block as,
208 /// and before, MI.
210
211 /// Return whether the given register is used after MI, whether it's a local
212 /// use or a live out.
214
215 /// Return whether the given register is defined after MI.
217
218 /// Provides the clearance - the number of instructions since the closest
219 /// reaching def instuction of Reg that reaches MI.
221
222 /// Provides the uses, in the same block as MI, of register that MI defines.
223 /// This does not consider live-outs.
225 InstSet &Uses) const;
226
227 /// Search MBB for a definition of Reg and insert it into Defs. If no
228 /// definition is found, recursively search the predecessor blocks for them.
229 void getLiveOuts(MachineBasicBlock *MBB, MCRegister Reg, InstSet &Defs,
230 BlockSet &VisitedBBs) const;
231 void getLiveOuts(MachineBasicBlock *MBB, MCRegister Reg, InstSet &Defs) const;
232
233 /// For the given block, collect the instructions that use the live-in
234 /// value of the provided register. Return whether the value is still
235 /// live on exit.
237 InstSet &Uses) const;
238
239 /// Collect the users of the value stored in Reg, which is defined
240 /// by MI.
241 void getGlobalUses(MachineInstr *MI, MCRegister Reg, InstSet &Uses) const;
242
243 /// Collect all possible definitions of the value stored in Reg, which is
244 /// used by MI.
246 InstSet &Defs) const;
247
248 /// Return whether From can be moved forwards to just before To.
250
251 /// Return whether From can be moved backwards to just after To.
253
254 /// Assuming MI is dead, recursively search the incoming operands which are
255 /// killed by MI and collect those that would become dead.
256 void collectKilledOperands(MachineInstr *MI, InstSet &Dead) const;
257
258 /// Return whether removing this instruction will have no effect on the
259 /// program, returning the redundant use-def chain.
260 bool isSafeToRemove(MachineInstr *MI, InstSet &ToRemove) const;
261
262 /// Return whether removing this instruction will have no effect on the
263 /// program, ignoring the possible effects on some instructions, returning
264 /// the redundant use-def chain.
265 bool isSafeToRemove(MachineInstr *MI, InstSet &ToRemove,
266 InstSet &Ignore) const;
267
268 /// Return whether a MachineInstr could be inserted at MI and safely define
269 /// the given register without affecting the program.
271
272 /// Return whether a MachineInstr could be inserted at MI and safely define
273 /// the given register without affecting the program, ignoring any effects
274 /// on the provided instructions.
276 InstSet &Ignore) const;
277
278private:
279 /// Set up LiveRegs by merging predecessor live-out values.
280 void enterBasicBlock(MachineBasicBlock *MBB);
281
282 /// Update live-out values.
283 void leaveBasicBlock(MachineBasicBlock *MBB);
284
285 /// Process he given basic block.
286 void processBasicBlock(const LoopTraversal::TraversedMBBInfo &TraversedMBB);
287
288 /// Process block that is part of a loop again.
289 void reprocessBasicBlock(MachineBasicBlock *MBB);
290
291 /// Update def-ages for registers defined by MI.
292 /// Also break dependencies on partial defs and undef uses.
293 void processDefs(MachineInstr *);
294
295 /// Utility function for isSafeToMoveForwards/Backwards.
296 template<typename Iterator>
297 bool isSafeToMove(MachineInstr *From, MachineInstr *To) const;
298
299 /// Return whether removing this instruction will have no effect on the
300 /// program, ignoring the possible effects on some instructions, returning
301 /// the redundant use-def chain.
302 bool isSafeToRemove(MachineInstr *MI, InstSet &Visited,
303 InstSet &ToRemove, InstSet &Ignore) const;
304
305 /// Provides the MI, from the given block, corresponding to the Id or a
306 /// nullptr if the id does not refer to the block.
307 MachineInstr *getInstFromId(MachineBasicBlock *MBB, int InstId) const;
308
309 /// Provides the instruction of the closest reaching def instruction of
310 /// Reg that reaches MI, relative to the begining of MI's basic block.
311 MachineInstr *getReachingLocalMIDef(MachineInstr *MI, MCRegister Reg) const;
312};
313
314} // namespace llvm
315
316#endif // LLVM_CODEGEN_REACHINGDEFANALYSIS_H
ReachingDefAnalysis InstSet & ToRemove
ReachingDefAnalysis InstSet InstSet & Ignore
MachineBasicBlock & MBB
BlockVerifier::State From
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
This file defines the DenseMap class.
IRTranslator LLVM IR MI
unsigned Reg
#define P(N)
Remove Loads Into Fake Uses
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallVector 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
void append(unsigned MBBNumber, unsigned Unit, int Def)
ArrayRef< ReachingDef > defs(unsigned MBBNumber, unsigned Unit) const
void replaceFront(unsigned MBBNumber, unsigned Unit, int Def)
void init(unsigned NumBlockIDs)
void prepend(unsigned MBBNumber, unsigned Unit, int Def)
void startBasicBlock(unsigned MBBNumber, unsigned NumRegUnits)
Wrapper class representing physical registers. Should be passed by value.
Definition: MCRegister.h:33
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
Properties which a MachineFunction may have at a given point in time.
MachineFunctionProperties & set(Property P)
Representation of each machine instruction.
Definition: MachineInstr.h:69
MachineOperand class - Representation of each machine instruction operand.
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
This class provides the reaching def analysis.
int getClearance(MachineInstr *MI, MCRegister Reg) const
Provides the clearance - the number of instructions since the closest reaching def instuction of Reg ...
void traverse()
Traverse the machine function, mapping definitions.
bool isSafeToMoveForwards(MachineInstr *From, MachineInstr *To) const
Return whether From can be moved forwards to just before To.
bool isReachingDefLiveOut(MachineInstr *MI, MCRegister Reg) const
Return whether the reaching def for MI also is live out of its parent block.
bool isRegUsedAfter(MachineInstr *MI, MCRegister Reg) const
Return whether the given register is used after MI, whether it's a local use or a live out.
bool getLiveInUses(MachineBasicBlock *MBB, MCRegister Reg, InstSet &Uses) const
For the given block, collect the instructions that use the live-in value of the provided register.
void releaseMemory() override
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memo...
int getReachingDef(MachineInstr *MI, MCRegister Reg) const
Provides the instruction id of the closest reaching def instruction of Reg that reaches MI,...
bool isSafeToRemove(MachineInstr *MI, InstSet &ToRemove) const
Return whether removing this instruction will have no effect on the program, returning the redundant ...
MachineInstr * getMIOperand(MachineInstr *MI, unsigned Idx) const
If a single MachineInstr creates the reaching definition, for MIs operand at Idx, then return it.
void reset()
Re-run the analysis.
MachineInstr * getUniqueReachingMIDef(MachineInstr *MI, MCRegister Reg) const
If a single MachineInstr creates the reaching definition, then return it.
bool hasSameReachingDef(MachineInstr *A, MachineInstr *B, MCRegister Reg) const
Return whether A and B use the same def of Reg.
void init()
Initialize data structures.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
MachineInstr * getLocalLiveOutMIDef(MachineBasicBlock *MBB, MCRegister Reg) const
Return the local MI that produces the live out value for Reg, or nullptr for a non-live out or non-lo...
bool hasLocalDefBefore(MachineInstr *MI, MCRegister Reg) const
Provide whether the register has been defined in the same basic block as, and before,...
void collectKilledOperands(MachineInstr *MI, InstSet &Dead) const
Assuming MI is dead, recursively search the incoming operands which are killed by MI and collect thos...
bool isSafeToMoveBackwards(MachineInstr *From, MachineInstr *To) const
Return whether From can be moved backwards to just after To.
bool isSafeToDefRegAt(MachineInstr *MI, MCRegister Reg) const
Return whether a MachineInstr could be inserted at MI and safely define the given register without af...
void getLiveOuts(MachineBasicBlock *MBB, MCRegister Reg, InstSet &Defs, BlockSet &VisitedBBs) const
Search MBB for a definition of Reg and insert it into Defs.
bool isRegDefinedAfter(MachineInstr *MI, MCRegister Reg) const
Return whether the given register is defined after MI.
void getReachingLocalUses(MachineInstr *MI, MCRegister Reg, InstSet &Uses) const
Provides the uses, in the same block as MI, of register that MI defines.
void getGlobalUses(MachineInstr *MI, MCRegister Reg, InstSet &Uses) const
Collect the users of the value stored in Reg, which is defined by MI.
MachineFunctionProperties getRequiredProperties() const override
void getGlobalReachingDefs(MachineInstr *MI, MCRegister Reg, InstSet &Defs) const
Collect all possible definitions of the value stored in Reg, which is used by MI.
bool runOnMachineFunction(MachineFunction &MF) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
Thin wrapper around "int" used to store reaching definitions, using an encoding that makes it compati...
ReachingDef(std::nullptr_t)
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
Definition: SmallPtrSet.h:363
size_t size() const
Definition: SmallVector.h:78
iterator insert(iterator I, T &&Elt)
Definition: SmallVector.h:805
void resize(size_type N)
Definition: SmallVector.h:638
void push_back(const T &Elt)
Definition: SmallVector.h:413
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1196
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TinyPtrVector - This class is specialized for cases where there are normally 0 or 1 element in a vect...
Definition: TinyPtrVector.h:29
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void initializeReachingDefAnalysisPass(PassRegistry &)
static ReachingDef getFromVoidPointer(const void *P)
static ReachingDef getFromVoidPointer(void *P)
static void * getAsVoidPointer(const ReachingDef &RD)
A traits type that is used to handle pointer types and things that are just wrappers for pointers as ...