LLVM 22.0.0git
DebugInfo.h
Go to the documentation of this file.
1//===- DebugInfo.h - Debug Information Helpers ------------------*- 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// This file defines a bunch of datatypes that are useful for creating and
10// walking debug info in LLVM IR form. They essentially provide wrappers around
11// the information in the global variables that's needed when constructing the
12// DWARF information.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_IR_DEBUGINFO_H
17#define LLVM_IR_DEBUGINFO_H
18
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/ADT/SetVector.h"
23#include "llvm/ADT/SmallSet.h"
27#include "llvm/IR/DataLayout.h"
29#include "llvm/IR/PassManager.h"
31#include <optional>
32
33namespace llvm {
34
35class DbgDeclareInst;
36class DbgValueInst;
39class Instruction;
40class Module;
41
42/// Finds dbg.declare records declaring local variables as living in the
43/// memory that 'V' points to.
45/// As above, for DVRValues.
47/// As above, for DVRDeclareValues.
49
50/// Finds the debug info records describing a value.
51LLVM_ABI void
53 SmallVectorImpl<DbgVariableRecord *> &DbgVariableRecords);
54/// Finds the dbg.values describing a value.
55LLVM_ABI void
57 SmallVectorImpl<DbgVariableRecord *> &DbgVariableRecords);
58
59/// Find subprogram that is enclosing this scope.
61
62/// Produce a DebugLoc to use for each dbg.declare that is promoted to a
63/// dbg.value.
65
66/// Strip debug info in the module if it exists.
67///
68/// To do this, we remove all calls to the debugger intrinsics and any named
69/// metadata for debugging. We also remove debug locations for instructions.
70/// Return true if module is modified.
73
74/// Downgrade the debug info in a module to contain only line table information.
75///
76/// In order to convert debug info to what -gline-tables-only would have
77/// created, this does the following:
78/// 1) Delete all debug intrinsics.
79/// 2) Delete all non-CU named metadata debug info nodes.
80/// 3) Create new DebugLocs for each instruction.
81/// 4) Create a new CU debug info, and similarly for every metadata node
82/// that's reachable from the CU debug info.
83/// All debug type metadata nodes are unreachable and garbage collected.
85
86/// Update the debug locations contained within the MD_loop metadata attached
87/// to the instruction \p I, if one exists. \p Updater is applied to Metadata
88/// operand in the MD_loop metadata: the returned value is included in the
89/// updated loop metadata node if it is non-null.
90LLVM_ABI void
92 function_ref<Metadata *(Metadata *)> Updater);
93
94/// Return Debug Info Metadata Version by checking module flags.
96
97/// Utility to find all debug info in a module.
98///
99/// DebugInfoFinder tries to list all debug info MDNodes used in a module. To
100/// list debug info MDNodes used by an instruction, DebugInfoFinder uses
101/// processDeclare, processValue and processLocation to handle DbgDeclareInst,
102/// DbgValueInst and DbgLoc attached to instructions. processModule will go
103/// through all DICompileUnits in llvm.dbg.cu and list debug info MDNodes
104/// used by the CUs.
106public:
107 /// Process entire module and collect debug info anchors.
108 LLVM_ABI void processModule(const Module &M);
109 /// Process a single instruction and collect debug info anchors.
110 LLVM_ABI void processInstruction(const Module &M, const Instruction &I);
111
112 /// Process a DILocalVariable.
114 /// Process debug info location.
115 LLVM_ABI void processLocation(const Module &M, const DILocation *Loc);
116 /// Process a DbgRecord.
117 LLVM_ABI void processDbgRecord(const Module &M, const DbgRecord &DR);
118
119 /// Process subprogram.
121
122 /// Clear all lists.
123 LLVM_ABI void reset();
124
125private:
126 void processCompileUnit(DICompileUnit *CU);
127 void processScope(DIScope *Scope);
128 void processType(DIType *DT);
129 void processImportedEntity(const DIImportedEntity *Import);
130 bool addCompileUnit(DICompileUnit *CU);
131 bool addGlobalVariable(DIGlobalVariableExpression *DIG);
132 bool addScope(DIScope *Scope);
133 bool addSubprogram(DISubprogram *SP);
134 bool addType(DIType *DT);
135
136public:
144
146
148
152
153 iterator_range<type_iterator> types() const { return TYs; }
154
155 iterator_range<scope_iterator> scopes() const { return Scopes; }
156
157 unsigned compile_unit_count() const { return CUs.size(); }
158 unsigned global_variable_count() const { return GVs.size(); }
159 unsigned subprogram_count() const { return SPs.size(); }
160 unsigned type_count() const { return TYs.size(); }
161 unsigned scope_count() const { return Scopes.size(); }
162
163private:
170};
171
172/// Assignment Tracking (at).
173namespace at {
174//
175// Utilities for enumerating storing instructions from an assignment ID.
176//
177/// A range of instructions.
180/// Return a range of instructions (typically just one) that have \p ID
181/// as an attachment.
182/// Iterators invalidated by adding or removing DIAssignID metadata to/from any
183/// instruction (including by deleting or cloning instructions).
185
187 assert(DVR->isDbgAssign() &&
188 "Can't get assignment instructions for non-assign DVR!");
189 return getAssignmentInsts(DVR->getAssignID());
190}
191
192/// Return a range of dbg_assign records for which \p Inst performs the
193/// assignment they encode.
196 if (auto *ID = Inst->getMetadata(LLVMContext::MD_DIAssignID))
197 return cast<DIAssignID>(ID)->getAllDbgVariableRecordUsers();
198 return {};
199}
200
201/// Delete the llvm.dbg.assign intrinsics linked to \p Inst.
203
204/// Replace all uses (and attachments) of \p Old with \p New.
205LLVM_ABI void RAUW(DIAssignID *Old, DIAssignID *New);
206
207/// Remove all Assignment Tracking related intrinsics and metadata from \p F.
209
210/// Calculate the fragment of the variable in \p DAI covered
211/// from (Dest + SliceOffsetInBits) to
212/// to (Dest + SliceOffsetInBits + SliceSizeInBits)
213///
214/// Return false if it can't be calculated for any reason.
215/// Result is set to nullopt if the intersect equals the variable fragment (or
216/// variable size) in DAI.
217///
218/// Result contains a zero-sized fragment if there's no intersect.
219LLVM_ABI bool
221 uint64_t SliceOffsetInBits, uint64_t SliceSizeInBits,
222 const DbgVariableRecord *DVRAssign,
223 std::optional<DIExpression::FragmentInfo> &Result);
224
225/// Replace DIAssignID uses and attachments with IDs from \p Map.
226/// If an ID is unmapped a new ID is generated and added to \p Map.
228 Instruction &I);
229
230/// Helper struct for trackAssignments, below. We don't use the similar
231/// DebugVariable class because trackAssignments doesn't (yet?) understand
232/// partial variables (fragment info) as input and want to make that clear and
233/// explicit using types. In addition, eventually we will want to understand
234/// expressions that modify the base address too, which a DebugVariable doesn't
235/// capture.
236struct VarRecord {
239
241 : Var(DVR->getVariable()), DL(getDebugValueLoc(DVR)) {}
243 friend bool operator<(const VarRecord &LHS, const VarRecord &RHS) {
244 return std::tie(LHS.Var, LHS.DL) < std::tie(RHS.Var, RHS.DL);
245 }
246 friend bool operator==(const VarRecord &LHS, const VarRecord &RHS) {
247 return std::tie(LHS.Var, LHS.DL) == std::tie(RHS.Var, RHS.DL);
248 }
249};
250
251} // namespace at
252
253template <> struct DenseMapInfo<at::VarRecord> {
258
263
264 static unsigned getHashValue(const at::VarRecord &Var) {
265 return hash_combine(Var.Var, Var.DL);
266 }
267
268 static bool isEqual(const at::VarRecord &A, const at::VarRecord &B) {
269 return A == B;
270 }
271};
272
273namespace at {
274/// Map of backing storage to a set of variables that are stored to it.
275/// TODO: Backing storage shouldn't be limited to allocas only. Some local
276/// variables have their storage allocated by the calling function (addresses
277/// passed in with sret & byval parameters).
280
281/// Track assignments to \p Vars between \p Start and \p End.
282
284 const StorageToVarsMap &Vars,
285 const DataLayout &DL, bool DebugPrints = false);
286
287/// Describes properties of a store that has a static size and offset into a
288/// some base storage. Used by the getAssignmentInfo functions.
290 AllocaInst const *Base; ///< Base storage.
291 uint64_t OffsetInBits; ///< Offset into Base.
292 uint64_t SizeInBits; ///< Number of bits stored.
293 bool StoreToWholeAlloca; ///< SizeInBits equals the size of the base storage.
294
299 OffsetInBits == 0 &&
300 SizeInBits == DL.getTypeSizeInBits(Base->getAllocatedType())) {}
301};
302
303LLVM_ABI std::optional<AssignmentInfo> getAssignmentInfo(const DataLayout &DL,
304 const MemIntrinsic *I);
305LLVM_ABI std::optional<AssignmentInfo> getAssignmentInfo(const DataLayout &DL,
306 const StoreInst *SI);
307LLVM_ABI std::optional<AssignmentInfo> getAssignmentInfo(const DataLayout &DL,
308 const AllocaInst *AI);
309
310} // end namespace at
311
312/// Convert @llvm.dbg.declare intrinsics into sets of @llvm.dbg.assign
313/// intrinsics by treating stores to the dbg.declare'd address as assignments
314/// to the variable. Not all kinds of variables are supported yet; those will
315/// be left with their dbg.declare intrinsics.
316/// The pass sets the debug-info-assignment-tracking module flag to true to
317/// indicate assignment tracking has been enabled.
318class AssignmentTrackingPass : public PassInfoMixin<AssignmentTrackingPass> {
319 /// Note: this method does not set the debug-info-assignment-tracking module
320 /// flag.
321 bool runOnFunction(Function &F);
322
323public:
326};
327
328/// Return true if assignment tracking is enabled for module \p M.
330
331} // end namespace llvm
332
333#endif // LLVM_IR_DEBUGINFO_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_ABI
Definition Compiler.h:213
This file defines DenseMapInfo traits for DenseMap.
This header defines various interfaces for pass management in LLVM.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
This file contains some templates that are useful if you are working with the STL at all.
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallSet class.
This file defines the SmallVector class.
Value * RHS
Value * LHS
an instruction to allocate memory on the stack
Convert @llvm.dbg.declare intrinsics into sets of @llvm.dbg.assign intrinsics by treating stores to t...
Definition DebugInfo.h:318
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
A pair of DIGlobalVariable and DIExpression.
An imported module (C++ using directive or similar).
Base class for scope-like contexts.
Subprogram description. Uses SubclassData1.
Base class for types.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:63
This represents the llvm.dbg.declare instruction.
Base class for non-instruction debug metadata records that have positions within IR.
This represents the llvm.dbg.value instruction.
This is the common base class for debug info intrinsics for variables.
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LLVM_ABI DIAssignID * getAssignID() const
Utility to find all debug info in a module.
Definition DebugInfo.h:105
LLVM_ABI void processInstruction(const Module &M, const Instruction &I)
Process a single instruction and collect debug info anchors.
unsigned subprogram_count() const
Definition DebugInfo.h:159
LLVM_ABI void processModule(const Module &M)
Process entire module and collect debug info anchors.
unsigned type_count() const
Definition DebugInfo.h:160
LLVM_ABI void processSubprogram(DISubprogram *SP)
Process subprogram.
SmallVectorImpl< DICompileUnit * >::const_iterator compile_unit_iterator
Definition DebugInfo.h:137
LLVM_ABI void processLocation(const Module &M, const DILocation *Loc)
Process debug info location.
LLVM_ABI void reset()
Clear all lists.
SmallVectorImpl< DIScope * >::const_iterator scope_iterator
Definition DebugInfo.h:143
unsigned global_variable_count() const
Definition DebugInfo.h:158
iterator_range< global_variable_expression_iterator > global_variables() const
Definition DebugInfo.h:149
iterator_range< subprogram_iterator > subprograms() const
Definition DebugInfo.h:147
SmallVectorImpl< DIType * >::const_iterator type_iterator
Definition DebugInfo.h:142
SmallVectorImpl< DISubprogram * >::const_iterator subprogram_iterator
Definition DebugInfo.h:139
LLVM_ABI void processVariable(const DILocalVariable *DVI)
Process a DILocalVariable.
iterator_range< type_iterator > types() const
Definition DebugInfo.h:153
iterator_range< scope_iterator > scopes() const
Definition DebugInfo.h:155
unsigned compile_unit_count() const
Definition DebugInfo.h:157
iterator_range< compile_unit_iterator > compile_units() const
Definition DebugInfo.h:145
LLVM_ABI void processDbgRecord(const Module &M, const DbgRecord &DR)
Process a DbgRecord.
unsigned scope_count() const
Definition DebugInfo.h:161
SmallVectorImpl< DIGlobalVariableExpression * >::const_iterator global_variable_expression_iterator
Definition DebugInfo.h:140
A debug info location.
Definition DebugLoc.h:124
BasicBlockListType::iterator iterator
Definition Function.h:69
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
Metadata node.
Definition Metadata.h:1078
This is the common base class for memset/memcpy/memmove.
Root of the metadata hierarchy.
Definition Metadata.h:64
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
typename SuperClass::const_iterator const_iterator
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
TinyPtrVector - This class is specialized for cases where there are normally 0 or 1 element in a vect...
LLVM Value Representation.
Definition Value.h:75
An efficient, type-erasing, non-owning reference to a callable.
A range adaptor for a pair of iterators.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
Assignment Tracking (at).
Definition DebugInfo.h:173
LLVM_ABI void deleteAll(Function *F)
Remove all Assignment Tracking related intrinsics and metadata from F.
LLVM_ABI AssignmentInstRange getAssignmentInsts(DIAssignID *ID)
Return a range of instructions (typically just one) that have ID as an attachment.
iterator_range< SmallVectorImpl< Instruction * >::iterator > AssignmentInstRange
A range of instructions.
Definition DebugInfo.h:178
LLVM_ABI void trackAssignments(Function::iterator Start, Function::iterator End, const StorageToVarsMap &Vars, const DataLayout &DL, bool DebugPrints=false)
Track assignments to Vars between Start and End.
LLVM_ABI void remapAssignID(DenseMap< DIAssignID *, DIAssignID * > &Map, Instruction &I)
Replace DIAssignID uses and attachments with IDs from Map.
SmallVector< DbgVariableRecord * > getDVRAssignmentMarkers(const Instruction *Inst)
Return a range of dbg_assign records for which Inst performs the assignment they encode.
Definition DebugInfo.h:195
LLVM_ABI void deleteAssignmentMarkers(const Instruction *Inst)
Delete the llvm.dbg.assign intrinsics linked to Inst.
LLVM_ABI std::optional< AssignmentInfo > getAssignmentInfo(const DataLayout &DL, const MemIntrinsic *I)
DenseMap< const AllocaInst *, SmallSetVector< VarRecord, 2 > > StorageToVarsMap
Map of backing storage to a set of variables that are stored to it.
Definition DebugInfo.h:278
LLVM_ABI void RAUW(DIAssignID *Old, DIAssignID *New)
Replace all uses (and attachments) of Old with New.
LLVM_ABI bool calculateFragmentIntersect(const DataLayout &DL, const Value *Dest, uint64_t SliceOffsetInBits, uint64_t SliceSizeInBits, const DbgVariableRecord *DVRAssign, std::optional< DIExpression::FragmentInfo > &Result)
Calculate the fragment of the variable in DAI covered from (Dest + SliceOffsetInBits) to to (Dest + S...
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI void findDbgValues(Value *V, SmallVectorImpl< DbgVariableRecord * > &DbgVariableRecords)
Finds the dbg.values describing a value.
LLVM_ABI bool stripDebugInfo(Function &F)
@ Import
Import information from summary.
Definition IPO.h:56
LLVM_ABI bool stripNonLineTableDebugInfo(Module &M)
Downgrade the debug info in a module to contain only line table information.
LLVM_ABI TinyPtrVector< DbgVariableRecord * > findDVRValues(Value *V)
As above, for DVRValues.
Definition DebugInfo.cpp:82
LLVM_ABI unsigned getDebugMetadataVersionFromModule(const Module &M)
Return Debug Info Metadata Version by checking module flags.
LLVM_ABI bool StripDebugInfo(Module &M)
Strip debug info in the module if it exists.
LLVM_ABI bool isAssignmentTrackingEnabled(const Module &M)
Return true if assignment tracking is enabled for module M.
LLVM_ABI DebugLoc getDebugValueLoc(DbgVariableRecord *DVR)
Produce a DebugLoc to use for each dbg.declare that is promoted to a dbg.value.
LLVM_ABI TinyPtrVector< DbgVariableRecord * > findDVRDeclareValues(Value *V)
As above, for DVRDeclareValues.
Definition DebugInfo.cpp:65
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
LLVM_ABI TinyPtrVector< DbgVariableRecord * > findDVRDeclares(Value *V)
Finds dbg.declare records declaring local variables as living in the memory that 'V' points to.
Definition DebugInfo.cpp:48
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
hash_code hash_combine(const Ts &...args)
Combine values into a single hash_code.
Definition Hashing.h:592
LLVM_ABI void updateLoopMetadataDebugLocations(Instruction &I, function_ref< Metadata *(Metadata *)> Updater)
Update the debug locations contained within the MD_loop metadata attached to the instruction I,...
LLVM_ABI void findDbgUsers(Value *V, SmallVectorImpl< DbgVariableRecord * > &DbgVariableRecords)
Finds the debug info records describing a value.
LLVM_ABI DISubprogram * getDISubprogram(const MDNode *Scope)
Find subprogram that is enclosing this scope.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Definition MIRParser.h:39
static bool isEqual(const at::VarRecord &A, const at::VarRecord &B)
Definition DebugInfo.h:268
static at::VarRecord getEmptyKey()
Definition DebugInfo.h:254
static unsigned getHashValue(const at::VarRecord &Var)
Definition DebugInfo.h:264
static at::VarRecord getTombstoneKey()
Definition DebugInfo.h:259
An information struct used to provide DenseMap with the various necessary components for a given valu...
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition PassManager.h:69
AssignmentInfo(const DataLayout &DL, AllocaInst const *Base, uint64_t OffsetInBits, uint64_t SizeInBits)
Definition DebugInfo.h:295
uint64_t OffsetInBits
Offset into Base.
Definition DebugInfo.h:291
uint64_t SizeInBits
Number of bits stored.
Definition DebugInfo.h:292
AllocaInst const * Base
Base storage.
Definition DebugInfo.h:290
bool StoreToWholeAlloca
SizeInBits equals the size of the base storage.
Definition DebugInfo.h:293
Helper struct for trackAssignments, below.
Definition DebugInfo.h:236
VarRecord(DbgVariableRecord *DVR)
Definition DebugInfo.h:240
friend bool operator==(const VarRecord &LHS, const VarRecord &RHS)
Definition DebugInfo.h:246
friend bool operator<(const VarRecord &LHS, const VarRecord &RHS)
Definition DebugInfo.h:243
DILocation * DL
Definition DebugInfo.h:238
VarRecord(DILocalVariable *Var, DILocation *DL)
Definition DebugInfo.h:242
DILocalVariable * Var
Definition DebugInfo.h:237