LLVM 23.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 void processMacroNode(DIMacroNode *Macro, DIMacroFile *CurrentMacroFile);
131 bool addCompileUnit(DICompileUnit *CU);
132 bool addGlobalVariable(DIGlobalVariableExpression *DIG);
133 bool addScope(DIScope *Scope);
134 bool addSubprogram(DISubprogram *SP);
135 bool addType(DIType *DT);
136 bool addMacro(DIMacro *Macro, DIMacroFile *MacroFile);
137
138public:
139 using DIMacroEntry = std::pair<DIMacro *, DIMacroFile *>;
148
150
152
156
157 iterator_range<type_iterator> types() const { return TYs; }
158
159 iterator_range<scope_iterator> scopes() const { return Scopes; }
160
161 iterator_range<macro_iterator> macros() const { return Macros; }
162
163 unsigned compile_unit_count() const { return CUs.size(); }
164 unsigned global_variable_count() const { return GVs.size(); }
165 unsigned subprogram_count() const { return SPs.size(); }
166 unsigned type_count() const { return TYs.size(); }
167 unsigned scope_count() const { return Scopes.size(); }
168 unsigned macro_count() const { return Macros.size(); }
169
170private:
178};
179
180/// Assignment Tracking (at).
181namespace at {
182//
183// Utilities for enumerating storing instructions from an assignment ID.
184//
185/// A range of instructions.
188/// Return a range of instructions (typically just one) that have \p ID
189/// as an attachment.
190/// Iterators invalidated by adding or removing DIAssignID metadata to/from any
191/// instruction (including by deleting or cloning instructions).
193
195 assert(DVR->isDbgAssign() &&
196 "Can't get assignment instructions for non-assign DVR!");
197 return getAssignmentInsts(DVR->getAssignID());
198}
199
200/// Return a range of dbg_assign records for which \p Inst performs the
201/// assignment they encode.
204 if (auto *ID = Inst->getMetadata(LLVMContext::MD_DIAssignID))
205 return cast<DIAssignID>(ID)->getAllDbgVariableRecordUsers();
206 return {};
207}
208
209/// Delete the llvm.dbg.assign intrinsics linked to \p Inst.
211
212/// Replace all uses (and attachments) of \p Old with \p New.
213LLVM_ABI void RAUW(DIAssignID *Old, DIAssignID *New);
214
215/// Remove all Assignment Tracking related intrinsics and metadata from \p F.
217
218/// Calculate the fragment of the variable in \p DAI covered
219/// from (Dest + SliceOffsetInBits) to
220/// to (Dest + SliceOffsetInBits + SliceSizeInBits)
221///
222/// Return false if it can't be calculated for any reason.
223/// Result is set to nullopt if the intersect equals the variable fragment (or
224/// variable size) in DAI.
225///
226/// Result contains a zero-sized fragment if there's no intersect.
227LLVM_ABI bool
229 uint64_t SliceOffsetInBits, uint64_t SliceSizeInBits,
230 const DbgVariableRecord *DVRAssign,
231 std::optional<DIExpression::FragmentInfo> &Result);
232
233/// Replace DIAssignID uses and attachments with IDs from \p Map.
234/// If an ID is unmapped a new ID is generated and added to \p Map.
236 Instruction &I);
237
238/// Helper struct for trackAssignments, below. We don't use the similar
239/// DebugVariable class because trackAssignments doesn't (yet?) understand
240/// partial variables (fragment info) as input and want to make that clear and
241/// explicit using types. In addition, eventually we will want to understand
242/// expressions that modify the base address too, which a DebugVariable doesn't
243/// capture.
244struct VarRecord {
247
249 : Var(DVR->getVariable()), DL(getDebugValueLoc(DVR)) {}
251 friend bool operator<(const VarRecord &LHS, const VarRecord &RHS) {
252 return std::tie(LHS.Var, LHS.DL) < std::tie(RHS.Var, RHS.DL);
253 }
254 friend bool operator==(const VarRecord &LHS, const VarRecord &RHS) {
255 return std::tie(LHS.Var, LHS.DL) == std::tie(RHS.Var, RHS.DL);
256 }
257};
258
259} // namespace at
260
261template <> struct DenseMapInfo<at::VarRecord> {
266
271
272 static unsigned getHashValue(const at::VarRecord &Var) {
273 return hash_combine(Var.Var, Var.DL);
274 }
275
276 static bool isEqual(const at::VarRecord &A, const at::VarRecord &B) {
277 return A == B;
278 }
279};
280
281namespace at {
282/// Map of backing storage to a set of variables that are stored to it.
283/// TODO: Backing storage shouldn't be limited to allocas only. Some local
284/// variables have their storage allocated by the calling function (addresses
285/// passed in with sret & byval parameters).
288
289/// Track assignments to \p Vars between \p Start and \p End.
290
292 const StorageToVarsMap &Vars,
293 const DataLayout &DL, bool DebugPrints = false);
294
295/// Describes properties of a store that has a static size and offset into a
296/// some base storage. Used by the getAssignmentInfo functions.
298 AllocaInst const *Base; ///< Base storage.
299 uint64_t OffsetInBits; ///< Offset into Base.
300 uint64_t SizeInBits; ///< Number of bits stored.
301 bool StoreToWholeAlloca; ///< SizeInBits equals the size of the base storage.
302
307 OffsetInBits == 0 &&
308 SizeInBits == DL.getTypeSizeInBits(Base->getAllocatedType())) {}
309};
310
311LLVM_ABI std::optional<AssignmentInfo> getAssignmentInfo(const DataLayout &DL,
312 const MemIntrinsic *I);
313LLVM_ABI std::optional<AssignmentInfo> getAssignmentInfo(const DataLayout &DL,
314 const StoreInst *SI);
315LLVM_ABI std::optional<AssignmentInfo> getAssignmentInfo(const DataLayout &DL,
316 const AllocaInst *AI);
317
318} // end namespace at
319
320/// Convert @llvm.dbg.declare intrinsics into sets of @llvm.dbg.assign
321/// intrinsics by treating stores to the dbg.declare'd address as assignments
322/// to the variable. Not all kinds of variables are supported yet; those will
323/// be left with their dbg.declare intrinsics.
324/// The pass sets the debug-info-assignment-tracking module flag to true to
325/// indicate assignment tracking has been enabled.
326class AssignmentTrackingPass : public PassInfoMixin<AssignmentTrackingPass> {
327 /// Note: this method does not set the debug-info-assignment-tracking module
328 /// flag.
329 bool runOnFunction(Function &F);
330
331public:
334};
335
336/// Return true if assignment tracking is enabled for module \p M.
338
339} // end namespace llvm
340
341#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:326
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
A pair of DIGlobalVariable and DIExpression.
An imported module (C++ using directive or similar).
Macro Info DWARF-like metadata node.
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:64
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
std::pair< DIMacro *, DIMacroFile * > DIMacroEntry
Definition DebugInfo.h:139
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:165
LLVM_ABI void processModule(const Module &M)
Process entire module and collect debug info anchors.
unsigned type_count() const
Definition DebugInfo.h:166
LLVM_ABI void processSubprogram(DISubprogram *SP)
Process subprogram.
SmallVectorImpl< DICompileUnit * >::const_iterator compile_unit_iterator
Definition DebugInfo.h:140
unsigned macro_count() const
Definition DebugInfo.h:168
LLVM_ABI void processLocation(const Module &M, const DILocation *Loc)
Process debug info location.
LLVM_ABI void reset()
Clear all lists.
SmallVectorImpl< DIMacroEntry >::const_iterator macro_iterator
Definition DebugInfo.h:147
SmallVectorImpl< DIScope * >::const_iterator scope_iterator
Definition DebugInfo.h:146
iterator_range< macro_iterator > macros() const
Definition DebugInfo.h:161
unsigned global_variable_count() const
Definition DebugInfo.h:164
iterator_range< global_variable_expression_iterator > global_variables() const
Definition DebugInfo.h:153
iterator_range< subprogram_iterator > subprograms() const
Definition DebugInfo.h:151
SmallVectorImpl< DIType * >::const_iterator type_iterator
Definition DebugInfo.h:145
SmallVectorImpl< DISubprogram * >::const_iterator subprogram_iterator
Definition DebugInfo.h:142
LLVM_ABI void processVariable(const DILocalVariable *DVI)
Process a DILocalVariable.
iterator_range< type_iterator > types() const
Definition DebugInfo.h:157
iterator_range< scope_iterator > scopes() const
Definition DebugInfo.h:159
unsigned compile_unit_count() const
Definition DebugInfo.h:163
iterator_range< compile_unit_iterator > compile_units() const
Definition DebugInfo.h:149
LLVM_ABI void processDbgRecord(const Module &M, const DbgRecord &DR)
Process a DbgRecord.
unsigned scope_count() const
Definition DebugInfo.h:167
SmallVectorImpl< DIGlobalVariableExpression * >::const_iterator global_variable_expression_iterator
Definition DebugInfo.h:143
A debug info location.
Definition DebugLoc.h:123
BasicBlockListType::iterator iterator
Definition Function.h:70
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
Metadata node.
Definition Metadata.h:1080
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:181
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:186
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:203
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:286
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.
Definition Types.h:26
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:276
static at::VarRecord getEmptyKey()
Definition DebugInfo.h:262
static unsigned getHashValue(const at::VarRecord &Var)
Definition DebugInfo.h:272
static at::VarRecord getTombstoneKey()
Definition DebugInfo.h:267
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:70
AssignmentInfo(const DataLayout &DL, AllocaInst const *Base, uint64_t OffsetInBits, uint64_t SizeInBits)
Definition DebugInfo.h:303
uint64_t OffsetInBits
Offset into Base.
Definition DebugInfo.h:299
uint64_t SizeInBits
Number of bits stored.
Definition DebugInfo.h:300
AllocaInst const * Base
Base storage.
Definition DebugInfo.h:298
bool StoreToWholeAlloca
SizeInBits equals the size of the base storage.
Definition DebugInfo.h:301
Helper struct for trackAssignments, below.
Definition DebugInfo.h:244
VarRecord(DbgVariableRecord *DVR)
Definition DebugInfo.h:248
friend bool operator==(const VarRecord &LHS, const VarRecord &RHS)
Definition DebugInfo.h:254
friend bool operator<(const VarRecord &LHS, const VarRecord &RHS)
Definition DebugInfo.h:251
DILocation * DL
Definition DebugInfo.h:246
VarRecord(DILocalVariable *Var, DILocation *DL)
Definition DebugInfo.h:250
DILocalVariable * Var
Definition DebugInfo.h:245