LLDB mainline
SymbolFileDWARF.h
Go to the documentation of this file.
1//===-- SymbolFileDWARF.h --------------------------------------*- 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 LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_SYMBOLFILEDWARF_H
10#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_SYMBOLFILEDWARF_H
11
12#include <list>
13#include <map>
14#include <mutex>
15#include <optional>
16#include <unordered_map>
17#include <vector>
18
19#include "llvm/ADT/DenseMap.h"
20#include "llvm/ADT/SetVector.h"
21#include "llvm/Support/Threading.h"
22
24#include "lldb/Core/dwarf.h"
31#include "lldb/Utility/Flags.h"
34#include "lldb/lldb-private.h"
35
36#include "DWARFContext.h"
37#include "DWARFDataExtractor.h"
38#include "DWARFDefines.h"
39#include "DWARFIndex.h"
40#include "UniqueDWARFASTType.h"
41
43
44namespace llvm {
45class DWARFDebugAbbrev;
46} // namespace llvm
47
48namespace lldb_private::plugin {
49namespace dwarf {
50// Forward Declarations for this DWARF plugin
51class DebugMapModule;
54class DWARFDebugInfo;
56class DWARFDebugLine;
58class DWARFFormValue;
59class DWARFTypeUnit;
62class SymbolFileDWARFDwp;
63
64#define DIE_IS_BEING_PARSED ((lldb_private::Type *)1)
65
67 /// LLVM RTTI support.
68 static char ID;
69
70public:
71 /// LLVM RTTI support.
72 /// \{
73 bool isA(const void *ClassID) const override {
74 return ClassID == &ID || SymbolFileCommon::isA(ClassID);
75 }
76 static bool classof(const SymbolFile *obj) { return obj->isA(&ID); }
77 /// \}
78
80 friend class SymbolFileDWARFDwo;
81 friend class DebugMapModule;
82 friend class DWARFCompileUnit;
83 friend class DWARFDIE;
84 friend class DWARFASTParser;
85
86 // Static Functions
87 static void Initialize();
88
89 static void Terminate();
90
91 static void DebuggerInitialize(Debugger &debugger);
92
93 static llvm::StringRef GetPluginNameStatic() { return "dwarf"; }
94
95 static llvm::StringRef GetPluginDescriptionStatic();
96
98
99 // Constructors and Destructors
100
101 SymbolFileDWARF(lldb::ObjectFileSP objfile_sp, SectionList *dwo_section_list);
102
104
105 uint32_t CalculateAbilities() override;
106
107 void InitializeObject() override;
108
109 // Compile Unit function calls
110
111 lldb::LanguageType ParseLanguage(CompileUnit &comp_unit) override;
112
113 XcodeSDK ParseXcodeSDK(CompileUnit &comp_unit) override;
114
115 size_t ParseFunctions(CompileUnit &comp_unit) override;
116
117 bool ParseLineTable(CompileUnit &comp_unit) override;
118
119 bool ParseDebugMacros(CompileUnit &comp_unit) override;
120
121 bool ForEachExternalModule(CompileUnit &, llvm::DenseSet<SymbolFile *> &,
122 llvm::function_ref<bool(Module &)>) override;
123
124 bool ParseSupportFiles(CompileUnit &comp_unit,
125 SupportFileList &support_files) override;
126
127 bool ParseIsOptimized(CompileUnit &comp_unit) override;
128
129 size_t ParseTypes(CompileUnit &comp_unit) override;
130
131 bool
133 std::vector<SourceModule> &imported_modules) override;
134
135 size_t ParseBlocksRecursive(Function &func) override;
136
137 size_t ParseVariablesForContext(const SymbolContext &sc) override;
138
139 std::optional<ArrayInfo>
141 const ExecutionContext *exe_ctx) override;
142
143 bool CompleteType(CompilerType &compiler_type) override;
144
145 Type *ResolveType(const DWARFDIE &die, bool assert_not_being_parsed = true,
146 bool resolve_function_context = false);
147
149
151
153
154 std::vector<CompilerContext>
156
157 void ParseDeclsForContext(CompilerDeclContext decl_ctx) override;
158
159 uint32_t ResolveSymbolContext(const Address &so_addr,
160 lldb::SymbolContextItem resolve_scope,
161 SymbolContext &sc) override;
162
164
165 uint32_t ResolveSymbolContext(const SourceLocationSpec &src_location_spec,
166 lldb::SymbolContextItem resolve_scope,
167 SymbolContextList &sc_list) override;
168
170 const CompilerDeclContext &parent_decl_ctx,
171 uint32_t max_matches,
172 VariableList &variables) override;
173
174 void FindGlobalVariables(const RegularExpression &regex, uint32_t max_matches,
175 VariableList &variables) override;
176
177 void FindFunctions(const Module::LookupInfo &lookup_info,
178 const CompilerDeclContext &parent_decl_ctx,
179 bool include_inlines, SymbolContextList &sc_list) override;
180
181 void FindFunctions(const RegularExpression &regex, bool include_inlines,
182 SymbolContextList &sc_list) override;
183
184 void
185 GetMangledNamesForFunction(const std::string &scope_qualified_name,
186 std::vector<ConstString> &mangled_names) override;
187
188 uint64_t GetDebugInfoSize(bool load_all_debug_info = false) override;
189
190 void FindTypes(const lldb_private::TypeQuery &match,
191 lldb_private::TypeResults &results) override;
192
193 void GetTypes(SymbolContextScope *sc_scope, lldb::TypeClass type_mask,
194 TypeList &type_list) override;
195
196 llvm::Expected<lldb::TypeSystemSP>
198
200 const CompilerDeclContext &parent_decl_ctx,
201 bool only_root_namespaces) override;
202
203 void PreloadSymbols() override;
204
205 std::recursive_mutex &GetModuleMutex() const override;
206
207 // PluginInterface protocol
208 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
209
210 llvm::DWARFDebugAbbrev *DebugAbbrev();
211
213
214 static bool SupportedVersion(uint16_t version);
215
218
219 bool HasForwardDeclForCompilerType(const CompilerType &compiler_type);
220
222
223 virtual void
224 GetObjCMethods(ConstString class_name,
225 llvm::function_ref<IterationAction(DWARFDIE die)> callback);
226
228
230
232
233 typedef std::map<ConstString, lldb::ModuleSP> ExternalTypeModuleMap;
234
235 /// Return the list of Clang modules imported by this SymbolFile.
239
240 /// Given a DIERef, find the correct SymbolFileDWARF.
241 ///
242 /// A DIERef contains a file index that can uniquely identify a N_OSO file for
243 /// DWARF in .o files on mac, or a .dwo or .dwp file index for split DWARF.
244 /// Calling this function will find the correct symbol file to use so that
245 /// further lookups can be done on the correct symbol file so that the DIE
246 /// offset makes sense in the DIERef.
247 virtual SymbolFileDWARF *GetDIERefSymbolFile(const DIERef &die_ref);
248
249 virtual DWARFDIE GetDIE(const DIERef &die_ref);
250
252
253 std::shared_ptr<SymbolFileDWARFDwo>
255 const DWARFDebugInfoEntry &cu_die);
256
257 /// If this is a DWARF object with a single CU, return its DW_AT_dwo_id.
258 std::optional<uint64_t> GetDWOId();
259
260 /// Given a DWO DWARFUnit, find the corresponding skeleton DWARFUnit
261 /// in the main symbol file. DWP files can have their DWARFUnits
262 /// parsed without the skeleton compile units having been parsed, so
263 /// sometimes we need to find the skeleton compile unit for a DWO
264 /// DWARFUnit so we can fill in this link. Currently unless the
265 /// skeleton compile unit has been parsed _and_ the Unit DIE has been
266 /// parsed, the DWO unit will not have a backward link setup correctly
267 /// which was causing crashes due to an assertion that was firing
268 /// in SymbolFileDWARF::GetCompUnitForDWARFCompUnit().
270
271 static bool DIEInDeclContext(const CompilerDeclContext &parent_decl_ctx,
272 const DWARFDIE &die,
273 bool only_root_namespaces = false);
274
275 std::vector<std::unique_ptr<CallEdge>>
276 ParseCallEdgesInFunction(UserID func_id) override;
277
278 void Dump(Stream &s) override;
279
280 void DumpClangAST(Stream &s, llvm::StringRef filter,
281 bool show_colors) override;
282
283 /// List separate dwo files.
284 bool GetSeparateDebugInfo(StructuredData::Dictionary &d, bool errors_only,
285 bool load_all_debug_info = false) override;
286
287 /// Gets statistics about dwo files associated with this symbol file.
288 /// For split-dwarf files, this reports the counts for successfully loaded DWO
289 /// CUs, total DWO CUs, and the number of DWO CUs with loading errors.
290 /// For non-split-dwarf files, this reports 0 for all.
291 DWOStats GetDwoStats() override;
292
294
295 const std::shared_ptr<SymbolFileDWARFDwo> &GetDwpSymbolFile();
296
297 FileSpec GetFile(DWARFUnit &unit, size_t file_idx);
298
299 static llvm::Expected<lldb::TypeSystemSP> GetTypeSystem(DWARFUnit &unit);
300
302
303 // CompilerDecl related functions
304
305 static CompilerDecl GetDecl(const DWARFDIE &die);
306
308
310
311 static lldb::LanguageType LanguageTypeFromDWARF(uint64_t val);
312
314 /// Same as GetLanguage() but reports all C++ versions as C++ (no version).
316
321
323
324 void ResetStatistics() override;
325
326 virtual lldb::offset_t
328 const lldb::offset_t data_offset,
329 const uint8_t op) const {
330 return LLDB_INVALID_OFFSET;
331 }
332
333 virtual bool ParseVendorDWARFOpcode(uint8_t op, const DataExtractor &opcodes,
334 lldb::offset_t &offset,
335 RegisterContext *reg_ctx,
336 lldb::RegisterKind reg_kind,
337 std::vector<Value> &stack) const {
338 return false;
339 }
340
342
343 std::optional<uint64_t> GetFileIndex() const { return m_file_index; }
344 void SetFileIndex(std::optional<uint64_t> file_index) {
345 m_file_index = file_index;
346 }
347
348 virtual llvm::DenseMap<const DWARFDebugInfoEntry *, Type *> &GetDIEToType();
349
350 virtual llvm::DenseMap<lldb::opaque_compiler_type_t, DIERef> &
352
353 typedef llvm::DenseMap<const DWARFDebugInfoEntry *, lldb::VariableSP>
355
357
359
360 bool ClassOrStructIsVirtual(const DWARFDIE &die);
361
363
364 virtual DWARFDIE FindDefinitionDIE(const DWARFDIE &die);
365
367 const DWARFDIE &die, ConstString type_name, bool must_be_implementation);
368
369 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
370
371 Type *ResolveTypeUID(const DWARFDIE &die, bool assert_not_being_parsed);
372
373 Type *ResolveTypeUID(const DIERef &die_ref);
374
375 /// Returns the DWARFIndex for this symbol, if it exists.
376 DWARFIndex *getIndex() { return m_index.get(); }
377
378private:
379 /// Find the definition DIE for the specified \c label in this
380 /// SymbolFile.
381 ///
382 /// \returns A valid definition DIE on success.
383 llvm::Expected<DWARFDIE>
385 const DWARFDIE &declaration);
386
387protected:
389 const SymbolFileDWARF &operator=(const SymbolFileDWARF &) = delete;
390
391 virtual void LoadSectionData(lldb::SectionType sect_type,
392 DWARFDataExtractor &data);
393
395
396 uint32_t CalculateNumCompileUnits() override;
397
398 lldb::CompUnitSP ParseCompileUnitAtIndex(uint32_t index) override;
399
400 TypeList &GetTypeList() override;
401
403
405
407
408 bool GetFunction(const DWARFDIE &die, SymbolContext &sc);
409
410 Function *ParseFunction(CompileUnit &comp_unit, const DWARFDIE &die);
411
412 size_t ParseBlocksRecursive(CompileUnit &comp_unit, Block *parent_block,
413 DWARFDIE die, lldb::addr_t function_file_addr);
414
415 size_t ParseTypes(const SymbolContext &sc, const DWARFDIE &die,
416 bool parse_siblings, bool parse_children);
417
418 lldb::TypeSP ParseType(const SymbolContext &sc, const DWARFDIE &die,
419 bool *type_is_new);
420
421 bool ParseSupportFiles(DWARFUnit &dwarf_cu, const lldb::ModuleSP &module,
422 SupportFileList &support_files);
423
425 const DWARFDIE &die,
426 const lldb::addr_t func_low_pc);
428 const DWARFDIE &die);
429
431 const DWARFDIE &die,
432 VariableList &cc_variable_list);
433
435 const DWARFDIE &die,
436 const lldb::addr_t func_low_pc);
437
439 const DWARFDIE &die,
440 lldb::addr_t func_low_pc,
441 DIEArray &accumulator);
442
443 size_t PopulateBlockVariableList(VariableList &variable_list,
444 const SymbolContext &sc,
445 llvm::ArrayRef<DIERef> variable_dies,
446 lldb::addr_t func_low_pc);
447
449 DIEArray &&variable_dies);
450
451 llvm::Expected<SymbolContext>
453
454 // Given a die_offset, figure out the symbol context representing that die.
455 bool ResolveFunction(const DWARFDIE &die, bool include_inlines,
456 SymbolContextList &sc_list);
457
458 /// Resolve functions and (possibly) blocks for the given file address and a
459 /// compile unit. The compile unit comes from the sc argument and it must be
460 /// set. The results of the lookup (if any) are written back to the symbol
461 /// context.
462 void ResolveFunctionAndBlock(lldb::addr_t file_vm_addr, bool lookup_block,
463 SymbolContext &sc);
464
465 Symbol *GetObjCClassSymbol(ConstString objc_class_name);
466
468 bool resolve_function_context = false);
469
470 void SetDebugMapModule(const lldb::ModuleSP &module_sp) {
471 m_debug_map_module_wp = module_sp;
472 }
473
475 FindBlockContainingSpecification(const DIERef &func_die_ref,
476 dw_offset_t spec_block_die_offset);
477
480 dw_offset_t spec_block_die_offset);
481
482 bool ClassContainsSelector(const DWARFDIE &class_die, ConstString selector);
483
484 /// Parse call site entries (DW_TAG_call_site), including any nested call site
485 /// parameters (DW_TAG_call_site_parameter).
486 std::vector<std::unique_ptr<CallEdge>>
487 CollectCallEdges(lldb::ModuleSP module, DWARFDIE function_die);
488
489 /// If this symbol file is linked to by a debug map (see
490 /// SymbolFileDWARFDebugMap), and \p file_addr is a file address relative to
491 /// an object file, adjust \p file_addr so that it is relative to the main
492 /// binary. Returns the adjusted address, or \p file_addr if no adjustment is
493 /// needed, on success and LLDB_INVALID_ADDRESS otherwise.
495
496 bool FixupAddress(Address &addr);
497
498 typedef llvm::SetVector<Type *> TypeSet;
499
500 void GetTypes(const DWARFDIE &die, dw_offset_t min_die_offset,
501 dw_offset_t max_die_offset, uint32_t type_mask,
502 TypeSet &type_set);
503
506
508
510
512 std::optional<uint32_t> GetDWARFUnitIndex(uint32_t cu_idx);
513
515
517
518 void InitializeFirstCodeAddressRecursive(const SectionList &section_list);
519
521
522 void
523 GetCompileOptions(std::unordered_map<lldb::CompUnitSP, Args> &args) override;
524
527
528 llvm::once_flag m_dwp_symfile_once_flag;
529 std::shared_ptr<SymbolFileDWARFDwo> m_dwp_symfile;
530
532
533 llvm::once_flag m_info_once_flag;
534 std::unique_ptr<DWARFDebugInfo> m_info;
535
536 std::unique_ptr<llvm::DWARFDebugAbbrev> m_abbr;
537 std::unique_ptr<GlobalVariableMap> m_global_aranges_up;
538
539 typedef std::unordered_map<lldb::offset_t, DebugMacrosSP> DebugMacrosMap;
541
543 std::unique_ptr<DWARFIndex> m_index;
545
546 typedef std::set<DIERef> DIERefSet;
547 typedef llvm::StringMap<DIERefSet> NameToOffsetMap;
550 // A map from DIE to lldb_private::Type. For record type, the key might be
551 // either declaration DIE or definition DIE.
552 llvm::DenseMap<const DWARFDebugInfoEntry *, Type *> m_die_to_type;
554 // A map from CompilerType to the struct/class/union/enum DIE (might be a
555 // declaration or a definition) that is used to construct it.
556 llvm::DenseMap<lldb::opaque_compiler_type_t, DIERef>
558 llvm::DenseMap<dw_offset_t, std::unique_ptr<SupportFileList>>
560 std::vector<uint32_t> m_lldb_cu_to_dwarf_unit;
561 /// DWARF does not provide a good way for traditional (concatenating) linkers
562 /// to invalidate debug info describing dead-stripped code. These linkers will
563 /// keep the debug info but resolve any addresses referring to such code as
564 /// zero (BFD) or a small positive integer (zero + relocation addend -- GOLD).
565 /// Try to filter out this debug info by comparing it to the lowest code
566 /// address in the module.
569 std::atomic_flag m_dwo_warning_issued = ATOMIC_FLAG_INIT;
570 /// If this DWARF file a .DWO file or a DWARF .o file on mac when
571 /// no dSYM file is being used, this file index will be set to a
572 /// valid value that can be used in DIERef objects which will contain
573 /// an index that identifies the .DWO or .o file.
574 std::optional<uint64_t> m_file_index;
575};
576
577} // namespace dwarf
578} // namespace lldb_private::plugin
579
580#endif // LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_SYMBOLFILEDWARF_H
A section + offset based address class.
Definition Address.h:62
A class that describes a single lexical block.
Definition Block.h:41
A class that describes a compilation unit.
Definition CompileUnit.h:43
Represents a generic declaration context in a program.
Represents a generic declaration such as a function declaration.
Generic representation of a type in a programming language.
A uniqued constant string class.
Definition ConstString.h:40
An data extractor class.
A class to manage flag bits.
Definition Debugger.h:80
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A file utility class.
Definition FileSpec.h:57
A class that describes a function.
Definition Function.h:400
A class that encapsulates name lookup information.
Definition Module.h:916
A class that describes an executable image and its associated object and symbol files.
Definition Module.h:90
"lldb/Core/SourceLocationSpec.h" A source location specifier class.
This base class provides an interface to stack frames.
Definition StackFrame.h:44
std::chrono::duration< double > Duration
Definition Statistics.h:37
An error handling class.
Definition Status.h:118
A stream class that can stream formatted output to a file.
Definition Stream.h:28
A list of support files for a CompileUnit.
Defines a list of symbol context objects.
"lldb/Symbol/SymbolContextScope.h" Inherit from this if your object is part of a symbol context and c...
Defines a symbol context baton that can be handed other debug core functions.
bool isA(const void *ClassID) const override
LLVM RTTI support.
Definition SymbolFile.h:544
SymbolFileCommon(lldb::ObjectFileSP objfile_sp)
Definition SymbolFile.h:551
Provides public interface for all SymbolFiles.
Definition SymbolFile.h:51
virtual bool isA(const void *ClassID) const
LLVM RTTI support.
Definition SymbolFile.h:58
std::unordered_map< lldb::CompUnitSP, Args > GetCompileOptions()
Returns a map of compilation unit to the compile option arguments associated with that compilation un...
Definition SymbolFile.h:516
A class that contains all state required for type lookups.
Definition Type.h:104
This class tracks the state and results of a TypeQuery.
Definition Type.h:344
An abstraction for Xcode-style SDKs that works like ArchSpec.
Definition XcodeSDK.h:25
Identifies a DWARF debug info entry within a given Module.
Definition DIERef.h:31
DWARFDebugInfoEntry objects assume that they are living in one big vector and do pointer arithmetic o...
CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) override
static CompilerDeclContext GetContainingDeclContext(const DWARFDIE &die)
static bool SupportedVersion(uint16_t version)
std::optional< uint32_t > GetDWARFUnitIndex(uint32_t cu_idx)
CompileUnit * GetCompUnitForDWARFCompUnit(DWARFCompileUnit &dwarf_cu)
lldb::ModuleSP GetExternalModule(ConstString name)
void FindGlobalVariables(ConstString name, const CompilerDeclContext &parent_decl_ctx, uint32_t max_matches, VariableList &variables) override
virtual DWARFDIE FindDefinitionDIE(const DWARFDIE &die)
DWARFDIE FindBlockContainingSpecification(const DIERef &func_die_ref, dw_offset_t spec_block_die_offset)
lldb::VariableSP ParseVariableDIE(const SymbolContext &sc, const DWARFDIE &die, const lldb::addr_t func_low_pc)
static DWARFASTParser * GetDWARFParser(DWARFUnit &unit)
static lldb::LanguageType GetLanguageFamily(DWARFUnit &unit)
Same as GetLanguage() but reports all C++ versions as C++ (no version).
bool ForEachExternalModule(CompileUnit &, llvm::DenseSet< SymbolFile * > &, llvm::function_ref< bool(Module &)>) override
static bool classof(const SymbolFile *obj)
std::unique_ptr< DWARFDebugInfo > m_info
bool DeclContextMatchesThisSymbolFile(const CompilerDeclContext &decl_ctx)
void GetMangledNamesForFunction(const std::string &scope_qualified_name, std::vector< ConstString > &mangled_names) override
std::map< ConstString, lldb::ModuleSP > ExternalTypeModuleMap
size_t PopulateBlockVariableList(VariableList &variable_list, const SymbolContext &sc, llvm::ArrayRef< DIERef > variable_dies, lldb::addr_t func_low_pc)
Type * ResolveType(const DWARFDIE &die, bool assert_not_being_parsed=true, bool resolve_function_context=false)
DWOStats GetDwoStats() override
Gets statistics about dwo files associated with this symbol file.
virtual llvm::DenseMap< lldb::opaque_compiler_type_t, DIERef > & GetForwardDeclCompilerTypeToDIE()
llvm::DenseMap< const DWARFDebugInfoEntry *, lldb::VariableSP > DIEToVariableSP
size_t ParseVariablesInFunctionContextRecursive(const SymbolContext &sc, const DWARFDIE &die, lldb::addr_t func_low_pc, DIEArray &accumulator)
virtual lldb::TypeSP FindCompleteObjCDefinitionTypeForDIE(const DWARFDIE &die, ConstString type_name, bool must_be_implementation)
const std::shared_ptr< SymbolFileDWARFDwo > & GetDwpSymbolFile()
std::recursive_mutex & GetModuleMutex() const override
Symbols file subclasses should override this to return the Module that owns the TypeSystem that this ...
bool GetSeparateDebugInfo(StructuredData::Dictionary &d, bool errors_only, bool load_all_debug_info=false) override
List separate dwo files.
uint32_t ResolveSymbolContext(const SourceLocationSpec &src_location_spec, lldb::SymbolContextItem resolve_scope, SymbolContextList &sc_list) override
llvm::Expected< DWARFDIE > FindFunctionDefinition(const FunctionCallLabel &label, const DWARFDIE &declaration)
Find the definition DIE for the specified label in this SymbolFile.
virtual llvm::DenseMap< const DWARFDebugInfoEntry *, Type * > & GetDIEToType()
virtual DWARFCompileUnit * GetDWARFCompileUnit(CompileUnit *comp_unit)
Function * ParseFunction(CompileUnit &comp_unit, const DWARFDIE &die)
lldb::TypeSP GetTypeForDIE(const DWARFDIE &die, bool resolve_function_context=false)
llvm::Expected< SymbolContext > ResolveFunctionCallLabel(FunctionCallLabel &label) override
Resolves the function corresponding to the specified LLDB function call label.
lldb::addr_t m_first_code_address
DWARF does not provide a good way for traditional (concatenating) linkers to invalidate debug info de...
ConstString ConstructFunctionDemangledName(const DWARFDIE &die)
void SetDebugMapModule(const lldb::ModuleSP &module_sp)
DWARFUnit * GetSkeletonUnit(DWARFUnit *dwo_unit)
Given a DWO DWARFUnit, find the corresponding skeleton DWARFUnit in the main symbol file.
FileSpec GetFile(DWARFUnit &unit, size_t file_idx)
std::shared_ptr< SymbolFileDWARFDwo > m_dwp_symfile
void DumpClangAST(Stream &s, llvm::StringRef filter, bool show_colors) override
void InitializeFirstCodeAddressRecursive(const SectionList &section_list)
std::unique_ptr< llvm::DWARFDebugAbbrev > m_abbr
llvm::DenseMap< lldb::opaque_compiler_type_t, DIERef > m_forward_decl_compiler_type_to_die
DWARFUnit * GetNextUnparsedDWARFCompileUnit(DWARFUnit *prev_cu)
std::vector< CompilerContext > GetCompilerContextForUID(lldb::user_id_t uid) override
virtual DWARFDIE GetDIE(const DIERef &die_ref)
std::unique_ptr< GlobalVariableMap > m_global_aranges_up
virtual lldb::offset_t GetVendorDWARFOpcodeSize(const DataExtractor &data, const lldb::offset_t data_offset, const uint8_t op) const
DWARFIndex * getIndex()
Returns the DWARFIndex for this symbol, if it exists.
uint64_t GetDebugInfoSize(bool load_all_debug_info=false) override
Metrics gathering functions.
void FindTypes(const lldb_private::TypeQuery &match, lldb_private::TypeResults &results) override
Find types using a type-matching object that contains all search parameters.
static CompilerDecl GetDecl(const DWARFDIE &die)
void ResolveFunctionAndBlock(lldb::addr_t file_vm_addr, bool lookup_block, SymbolContext &sc)
Resolve functions and (possibly) blocks for the given file address and a compile unit.
void ResetStatistics() override
Reset the statistics for the symbol file.
size_t ParseVariablesForContext(const SymbolContext &sc) override
std::optional< ArrayInfo > GetDynamicArrayInfoForUID(lldb::user_id_t type_uid, const ExecutionContext *exe_ctx) override
If type_uid points to an array type, return its characteristics.
size_t ParseBlocksRecursive(Function &func) override
Type * ResolveTypeUID(lldb::user_id_t type_uid) override
static lldb::LanguageType GetLanguage(DWARFUnit &unit)
llvm::DenseMap< dw_offset_t, std::unique_ptr< SupportFileList > > m_type_unit_support_files
size_t ParseFunctions(CompileUnit &comp_unit) override
bool ParseDebugMacros(CompileUnit &comp_unit) override
static SymbolFile * CreateInstance(lldb::ObjectFileSP objfile_sp)
bool ClassContainsSelector(const DWARFDIE &class_die, ConstString selector)
bool ParseSupportFiles(CompileUnit &comp_unit, SupportFileList &support_files) override
XcodeSDK ParseXcodeSDK(CompileUnit &comp_unit) override
Return the Xcode SDK comp_unit was compiled against.
bool ParseImportedModules(const SymbolContext &sc, std::vector< SourceModule > &imported_modules) override
std::optional< uint64_t > GetDWOId()
If this is a DWARF object with a single CU, return its DW_AT_dwo_id.
void GetTypes(SymbolContextScope *sc_scope, lldb::TypeClass type_mask, TypeList &type_list) override
void ParseDeclsForContext(CompilerDeclContext decl_ctx) override
std::unordered_map< lldb::offset_t, DebugMacrosSP > DebugMacrosMap
size_t ParseTypes(CompileUnit &comp_unit) override
std::shared_ptr< SymbolFileDWARFDwo > GetDwoSymbolFileForCompileUnit(DWARFUnit &dwarf_cu, const DWARFDebugInfoEntry &cu_die)
SymbolFileDWARF(lldb::ObjectFileSP objfile_sp, SectionList *dwo_section_list)
lldb::VariableSP ParseVariableDIECached(const SymbolContext &sc, const DWARFDIE &die)
StatsDuration::Duration GetDebugInfoIndexTime() override
Return the time it took to index the debug information in the object file.
bool CompleteType(CompilerType &compiler_type) override
bool ParseLineTable(CompileUnit &comp_unit) override
bool ResolveFunction(const DWARFDIE &die, bool include_inlines, SymbolContextList &sc_list)
bool ParseIsOptimized(CompileUnit &comp_unit) override
std::vector< std::unique_ptr< CallEdge > > CollectCallEdges(lldb::ModuleSP module, DWARFDIE function_die)
Parse call site entries (DW_TAG_call_site), including any nested call site parameters (DW_TAG_call_si...
DIEArray MergeBlockAbstractParameters(const DWARFDIE &block_die, DIEArray &&variable_dies)
DWARFDIE GetDeclContextDIEContainingDIE(const DWARFDIE &die)
void SetFileIndex(std::optional< uint64_t > file_index)
void InitializeObject() override
Initialize the SymbolFile object.
void ParseAndAppendGlobalVariable(const SymbolContext &sc, const DWARFDIE &die, VariableList &cc_variable_list)
static llvm::Expected< lldb::TypeSystemSP > GetTypeSystem(DWARFUnit &unit)
void FindFunctions(const Module::LookupInfo &lookup_info, const CompilerDeclContext &parent_decl_ctx, bool include_inlines, SymbolContextList &sc_list) override
static bool DIEInDeclContext(const CompilerDeclContext &parent_decl_ctx, const DWARFDIE &die, bool only_root_namespaces=false)
uint32_t ResolveSymbolContext(const Address &so_addr, lldb::SymbolContextItem resolve_scope, SymbolContext &sc) override
bool HasForwardDeclForCompilerType(const CompilerType &compiler_type)
StatsDuration::Duration GetDebugInfoParseTime() override
Return the time taken to parse the debug information.
const SymbolFileDWARF & operator=(const SymbolFileDWARF &)=delete
lldb::CompUnitSP ParseCompileUnit(DWARFCompileUnit &dwarf_cu)
CompilerDeclContext FindNamespace(ConstString name, const CompilerDeclContext &parent_decl_ctx, bool only_root_namespaces) override
Finds a namespace of name name and whose parent context is parent_decl_ctx.
lldb::CompUnitSP ParseCompileUnitAtIndex(uint32_t index) override
static lldb::LanguageType LanguageTypeFromDWARF(uint64_t val)
lldb::TypeSP ParseType(const SymbolContext &sc, const DWARFDIE &die, bool *type_is_new)
static DWARFDIE GetParentSymbolContextDIE(const DWARFDIE &die)
std::vector< std::unique_ptr< CallEdge > > ParseCallEdgesInFunction(UserID func_id) override
lldb::addr_t FixupAddress(lldb::addr_t file_addr)
If this symbol file is linked to by a debug map (see SymbolFileDWARFDebugMap), and file_addr is a fil...
virtual void GetObjCMethods(ConstString class_name, llvm::function_ref< IterationAction(DWARFDIE die)> callback)
llvm::Expected< lldb::TypeSystemSP > GetTypeSystemForLanguage(lldb::LanguageType language) override
bool isA(const void *ClassID) const override
LLVM RTTI support.
CompilerDecl GetDeclForUID(lldb::user_id_t uid) override
virtual bool ParseVendorDWARFOpcode(uint8_t op, const DataExtractor &opcodes, lldb::offset_t &offset, RegisterContext *reg_ctx, lldb::RegisterKind reg_kind, std::vector< Value > &stack) const
virtual SymbolFileDWARF * GetDIERefSymbolFile(const DIERef &die_ref)
Given a DIERef, find the correct SymbolFileDWARF.
std::optional< uint64_t > m_file_index
If this DWARF file a .DWO file or a DWARF .o file on mac when no dSYM file is being used,...
lldb::LanguageType ParseLanguage(CompileUnit &comp_unit) override
CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) override
static void DebuggerInitialize(Debugger &debugger)
RangeDataVector< lldb::addr_t, lldb::addr_t, Variable * > GlobalVariableMap
size_t ParseVariablesInFunctionContext(const SymbolContext &sc, const DWARFDIE &die, const lldb::addr_t func_low_pc)
const ExternalTypeModuleMap & getExternalTypeModules() const
Return the list of Clang modules imported by this SymbolFile.
llvm::DenseMap< const DWARFDebugInfoEntry *, Type * > m_die_to_type
SymbolFileDWARF(const SymbolFileDWARF &)=delete
bool GetFunction(const DWARFDIE &die, SymbolContext &sc)
const SupportFileList * GetTypeUnitSupportFiles(DWARFTypeUnit &tu)
llvm::StringMap< DIERefSet > NameToOffsetMap
std::optional< uint64_t > GetFileIndex() const
Symbol * GetObjCClassSymbol(ConstString objc_class_name)
static CompilerDeclContext GetDeclContext(const DWARFDIE &die)
virtual UniqueDWARFASTTypeMap & GetUniqueDWARFASTTypeMap()
virtual void LoadSectionData(lldb::SectionType sect_type, DWARFDataExtractor &data)
Status CalculateFrameVariableError(StackFrame &frame) override
Subclasses will override this function to for GetFrameVariableError().
uint64_t dw_offset_t
Definition dwarf.h:24
#define LLDB_INVALID_ADDRESS
#define LLDB_INVALID_OFFSET
std::vector< DIERef > DIEArray
Definition DIERef.h:136
std::shared_ptr< DebugMacros > DebugMacrosSP
Definition DebugMacros.h:22
IterationAction
Useful for callbacks whose return type indicates whether to continue iteration or short-circuit.
std::weak_ptr< lldb_private::Module > ModuleWP
uint64_t offset_t
Definition lldb-types.h:85
std::shared_ptr< lldb_private::ObjectFile > ObjectFileSP
LanguageType
Programming language type.
std::shared_ptr< lldb_private::Type > TypeSP
std::shared_ptr< lldb_private::Variable > VariableSP
uint64_t user_id_t
Definition lldb-types.h:82
uint64_t addr_t
Definition lldb-types.h:80
std::shared_ptr< lldb_private::Module > ModuleSP
std::shared_ptr< lldb_private::CompileUnit > CompUnitSP
RegisterKind
Register numbering types.
Holds statistics about DWO (Debug With Object) files.
Definition Statistics.h:127
Holds parsed information about a function call label that LLDB attaches as an AsmLabel to function AS...
Definition Expression.h:110
A mix in class that contains a generic user ID.
Definition UserID.h:31