LLDB mainline
SymbolFile.h
Go to the documentation of this file.
1//===-- SymbolFile.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_SYMBOL_SYMBOLFILE_H
10#define LLDB_SYMBOL_SYMBOLFILE_H
11
12#include "lldb/Core/Module.h"
21#include "lldb/Symbol/Type.h"
27#include "lldb/lldb-private.h"
28#include "llvm/ADT/DenseSet.h"
29#include "llvm/ADT/SmallSet.h"
30#include "llvm/Support/Errc.h"
31
32#include <mutex>
33#include <optional>
34#include <unordered_map>
35
36#if defined(LLDB_CONFIGURATION_DEBUG)
37#define ASSERT_MODULE_LOCK(expr) (expr->AssertModuleLock())
38#else
39#define ASSERT_MODULE_LOCK(expr) ((void)0)
40#endif
41
42namespace lldb_private {
43
44/// Provides public interface for all SymbolFiles. Any protected
45/// virtual members should go into SymbolFileCommon; most SymbolFile
46/// implementations should inherit from SymbolFileCommon to override
47/// the behaviors except SymbolFileOnDemand which inherits
48/// public interfaces from SymbolFile and forward to underlying concrete
49/// SymbolFile implementation.
51 /// LLVM RTTI support.
52 static char ID;
53
54public:
55 /// LLVM RTTI support.
56 /// \{
57 virtual bool isA(const void *ClassID) const { return ClassID == &ID; }
58 static bool classof(const SymbolFile *obj) { return obj->isA(&ID); }
59 /// \}
60
61 // Symbol file ability bits.
62 //
63 // Each symbol file can claim to support one or more symbol file abilities.
64 // These get returned from SymbolFile::GetAbilities(). These help us to
65 // determine which plug-in will be best to load the debug information found
66 // in files.
67 enum Abilities {
68 CompileUnits = (1u << 0),
69 LineTables = (1u << 1),
70 Functions = (1u << 2),
71 Blocks = (1u << 3),
72 GlobalVariables = (1u << 4),
73 LocalVariables = (1u << 5),
74 VariableTypes = (1u << 6),
75 kAllAbilities = ((1u << 7) - 1u)
76 };
77
78 static SymbolFile *FindPlugin(lldb::ObjectFileSP objfile_sp);
79
80 // Constructors and Destructors
81 SymbolFile() = default;
82
83 ~SymbolFile() override = default;
84
85 /// SymbolFileOnDemand class overrides this to return the underlying
86 /// backing SymbolFile implementation that loads on-demand.
87 virtual SymbolFile *GetBackingSymbolFile() { return this; }
88
89 /// Get a mask of what this symbol file supports for the object file
90 /// that it was constructed with.
91 ///
92 /// Each symbol file gets to respond with a mask of abilities that
93 /// it supports for each object file. This happens when we are
94 /// trying to figure out which symbol file plug-in will get used
95 /// for a given object file. The plug-in that responds with the
96 /// best mix of "SymbolFile::Abilities" bits set, will get chosen to
97 /// be the symbol file parser. This allows each plug-in to check for
98 /// sections that contain data a symbol file plug-in would need. For
99 /// example the DWARF plug-in requires DWARF sections in a file that
100 /// contain debug information. If the DWARF plug-in doesn't find
101 /// these sections, it won't respond with many ability bits set, and
102 /// we will probably fall back to the symbol table SymbolFile plug-in
103 /// which uses any information in the symbol table. Also, plug-ins
104 /// might check for some specific symbols in a symbol table in the
105 /// case where the symbol table contains debug information (STABS
106 /// and COFF). Not a lot of work should happen in these functions
107 /// as the plug-in might not get selected due to another plug-in
108 /// having more abilities. Any initialization work should be saved
109 /// for "void SymbolFile::InitializeObject()" which will get called
110 /// on the SymbolFile object with the best set of abilities.
111 ///
112 /// \return
113 /// A uint32_t mask containing bits from the SymbolFile::Abilities
114 /// enumeration. Any bits that are set represent an ability that
115 /// this symbol plug-in can parse from the object file.
116 virtual uint32_t GetAbilities() = 0;
117 virtual uint32_t CalculateAbilities() = 0;
118
119 /// Symbols file subclasses should override this to return the Module that
120 /// owns the TypeSystem that this symbol file modifies type information in.
121 virtual std::recursive_mutex &GetModuleMutex() const;
122
123 /// Initialize the SymbolFile object.
124 ///
125 /// The SymbolFile object with the best set of abilities (detected
126 /// in "uint32_t SymbolFile::GetAbilities()) will have this function
127 /// called if it is chosen to parse an object file. More complete
128 /// initialization can happen in this function which will get called
129 /// prior to any other functions in the SymbolFile protocol.
130 virtual void InitializeObject() {}
131
132 /// Whether debug info will be loaded or not.
133 ///
134 /// It will be true for most implementations except SymbolFileOnDemand.
135 virtual bool GetLoadDebugInfoEnabled() { return true; }
136
137 /// Specify debug info should be loaded.
138 ///
139 /// It will be no-op for most implementations except SymbolFileOnDemand.
140 virtual void SetLoadDebugInfoEnabled() {}
141
142 // Compile Unit function calls
143 // Approach 1 - iterator
144 virtual uint32_t GetNumCompileUnits() = 0;
145 virtual lldb::CompUnitSP GetCompileUnitAtIndex(uint32_t idx) = 0;
146
147 virtual Symtab *GetSymtab() = 0;
148
150 /// Return the Xcode SDK comp_unit was compiled against.
151 virtual XcodeSDK ParseXcodeSDK(CompileUnit &comp_unit) { return {}; }
152
153 /// This function exists because SymbolFileDWARFDebugMap may extra compile
154 /// units which aren't exposed as "real" compile units. In every other
155 /// case this function should behave identically as ParseLanguage.
156 virtual llvm::SmallSet<lldb::LanguageType, 4>
158 llvm::SmallSet<lldb::LanguageType, 4> langs;
159 langs.insert(ParseLanguage(comp_unit));
160 return langs;
161 }
162
163 virtual size_t ParseFunctions(CompileUnit &comp_unit) = 0;
164 virtual bool ParseLineTable(CompileUnit &comp_unit) = 0;
165 virtual bool ParseDebugMacros(CompileUnit &comp_unit) = 0;
166
167 /// Apply a lambda to each external lldb::Module referenced by this
168 /// \p comp_unit. Recursively also descends into the referenced external
169 /// modules of any encountered compilation unit.
170 ///
171 /// This function can be used to traverse Clang -gmodules debug
172 /// information, which is stored in DWARF files separate from the
173 /// object files.
174 ///
175 /// \param comp_unit
176 /// When this SymbolFile consists of multiple auxilliary
177 /// SymbolFiles, for example, a Darwin debug map that references
178 /// multiple .o files, comp_unit helps choose the auxilliary
179 /// file. In most other cases comp_unit's symbol file is
180 /// identical with *this.
181 ///
182 /// \param[in] lambda
183 /// The lambda that should be applied to every function. The lambda can
184 /// return true if the iteration should be aborted earlier.
185 ///
186 /// \param visited_symbol_files
187 /// A set of SymbolFiles that were already visited to avoid
188 /// visiting one file more than once.
189 ///
190 /// \return
191 /// If the lambda early-exited, this function returns true to
192 /// propagate the early exit.
194 lldb_private::CompileUnit &comp_unit,
195 llvm::DenseSet<lldb_private::SymbolFile *> &visited_symbol_files,
196 llvm::function_ref<bool(Module &)> lambda) {
197 return false;
198 }
199 virtual bool ParseSupportFiles(CompileUnit &comp_unit,
200 FileSpecList &support_files) = 0;
201 virtual size_t ParseTypes(CompileUnit &comp_unit) = 0;
202 virtual bool ParseIsOptimized(CompileUnit &comp_unit) { return false; }
203
204 virtual bool
206 std::vector<SourceModule> &imported_modules) = 0;
207 virtual size_t ParseBlocksRecursive(Function &func) = 0;
208 virtual size_t ParseVariablesForContext(const SymbolContext &sc) = 0;
209 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0;
210
211 /// The characteristics of an array type.
212 struct ArrayInfo {
213 int64_t first_index = 0;
214 llvm::SmallVector<uint64_t, 1> element_orders;
215 uint32_t byte_stride = 0;
216 uint32_t bit_stride = 0;
217 };
218 /// If \c type_uid points to an array type, return its characteristics.
219 /// To support variable-length array types, this function takes an
220 /// optional \p ExecutionContext. If \c exe_ctx is non-null, the
221 /// dynamic characteristics for that context are returned.
222 virtual std::optional<ArrayInfo>
224 const lldb_private::ExecutionContext *exe_ctx) = 0;
225
226 virtual bool CompleteType(CompilerType &compiler_type) = 0;
228 virtual CompilerDecl GetDeclForUID(lldb::user_id_t uid) { return {}; }
230 return {};
231 }
233 return {};
234 }
235 virtual std::vector<CompilerContext>
237 return {};
238 }
239 virtual uint32_t ResolveSymbolContext(const Address &so_addr,
240 lldb::SymbolContextItem resolve_scope,
241 SymbolContext &sc) = 0;
242
243 /// Get an error that describes why variables might be missing for a given
244 /// symbol context.
245 ///
246 /// If there is an error in the debug information that prevents variables from
247 /// being fetched, this error will get filled in. If there is no debug
248 /// informaiton, no error should be returned. But if there is debug
249 /// information and something prevents the variables from being available a
250 /// valid error should be returned. Valid cases include:
251 /// - compiler option that removes variables (-gline-tables-only)
252 /// - missing external files
253 /// - .dwo files in fission are not accessible or missing
254 /// - .o files on darwin when not using dSYM files that are not accessible
255 /// or missing
256 /// - mismatched exteral files
257 /// - .dwo files in fission where the DWO ID doesn't match
258 /// - .o files on darwin when modification timestamp doesn't match
259 /// - corrupted debug info
260 ///
261 /// \param[in] frame
262 /// The stack frame to use as a basis for the context to check. The frame
263 /// address can be used if there is not debug info due to it not being able
264 /// to be loaded, or if there is a debug info context, like a compile unit,
265 /// or function, it can be used to track down more information on why
266 /// variables are missing.
267 ///
268 /// \returns
269 /// An error specifying why there should have been debug info with variable
270 /// information but the variables were not able to be resolved.
273 if (err.Fail())
275 return err;
276 }
277
278 /// Subclasses will override this function to for GetFrameVariableError().
279 ///
280 /// This allows GetFrameVariableError() to set the member variable
281 /// m_debug_info_had_variable_errors correctly without users having to do it
282 /// manually which is error prone.
284 return Status();
285 }
286 virtual uint32_t
287 ResolveSymbolContext(const SourceLocationSpec &src_location_spec,
288 lldb::SymbolContextItem resolve_scope,
289 SymbolContextList &sc_list);
290
291 virtual void DumpClangAST(Stream &s) {}
292 virtual void FindGlobalVariables(ConstString name,
293 const CompilerDeclContext &parent_decl_ctx,
294 uint32_t max_matches,
295 VariableList &variables);
296 virtual void FindGlobalVariables(const RegularExpression &regex,
297 uint32_t max_matches,
298 VariableList &variables);
299 virtual void FindFunctions(const Module::LookupInfo &lookup_info,
300 const CompilerDeclContext &parent_decl_ctx,
301 bool include_inlines, SymbolContextList &sc_list);
302 virtual void FindFunctions(const RegularExpression &regex,
303 bool include_inlines, SymbolContextList &sc_list);
304 virtual void
305 FindTypes(ConstString name, const CompilerDeclContext &parent_decl_ctx,
306 uint32_t max_matches,
307 llvm::DenseSet<lldb_private::SymbolFile *> &searched_symbol_files,
308 TypeMap &types);
309
310 /// Find types specified by a CompilerContextPattern.
311 /// \param languages
312 /// Only return results in these languages.
313 /// \param searched_symbol_files
314 /// Prevents one file from being visited multiple times.
315 virtual void
316 FindTypes(llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
317 llvm::DenseSet<lldb_private::SymbolFile *> &searched_symbol_files,
318 TypeMap &types);
319
320 virtual void
321 GetMangledNamesForFunction(const std::string &scope_qualified_name,
322 std::vector<ConstString> &mangled_names);
323
325 lldb::TypeClass type_mask,
326 lldb_private::TypeList &type_list) = 0;
327
328 virtual void PreloadSymbols();
329
330 virtual llvm::Expected<lldb::TypeSystemSP>
332
333 /// Finds a namespace of name \ref name and whose parent
334 /// context is \ref parent_decl_ctx.
335 ///
336 /// If \code{.cpp} !parent_decl_ctx.IsValid() \endcode
337 /// then this function will consider all namespaces that
338 /// match the name. If \ref only_root_namespaces is
339 /// true, only consider in the search those DIEs that
340 /// represent top-level namespaces.
341 virtual CompilerDeclContext
342 FindNamespace(ConstString name, const CompilerDeclContext &parent_decl_ctx,
343 bool only_root_namespaces = false) {
344 return CompilerDeclContext();
345 }
346
347 virtual ObjectFile *GetObjectFile() = 0;
348 virtual const ObjectFile *GetObjectFile() const = 0;
350
351 virtual std::vector<std::unique_ptr<CallEdge>>
353 return {};
354 }
355
356 virtual void AddSymbols(Symtab &symtab) {}
357
358 /// Notify the SymbolFile that the file addresses in the Sections
359 /// for this module have been changed.
360 virtual void SectionFileAddressesChanged() = 0;
361
363 virtual ~RegisterInfoResolver(); // anchor
364
365 virtual const RegisterInfo *ResolveName(llvm::StringRef name) const = 0;
367 uint32_t number) const = 0;
368 };
369 virtual lldb::UnwindPlanSP
370 GetUnwindPlan(const Address &address, const RegisterInfoResolver &resolver) {
371 return nullptr;
372 }
373
374 /// Return the number of stack bytes taken up by the parameters to this
375 /// function.
376 virtual llvm::Expected<lldb::addr_t> GetParameterStackSize(Symbol &symbol) {
377 return llvm::createStringError(make_error_code(llvm::errc::not_supported),
378 "Operation not supported.");
379 }
380
381 virtual void Dump(Stream &s) = 0;
382
383 /// Metrics gathering functions
384
385 /// Return the size in bytes of all debug information in the symbol file.
386 ///
387 /// If the debug information is contained in sections of an ObjectFile, then
388 /// this call should add the size of all sections that contain debug
389 /// information. Symbols the symbol tables are not considered debug
390 /// information for this call to make it easy and quick for this number to be
391 /// calculated. If the symbol file is all debug information, the size of the
392 /// entire file should be returned. The default implementation of this
393 /// function will iterate over all sections in a module and add up their
394 /// debug info only section byte sizes.
395 virtual uint64_t GetDebugInfoSize() = 0;
396
397 /// Return the time taken to parse the debug information.
398 ///
399 /// \returns 0.0 if no information has been parsed or if there is
400 /// no computational cost to parsing the debug information.
402
403 /// Return the time it took to index the debug information in the object
404 /// file.
405 ///
406 /// \returns 0.0 if the file doesn't need to be indexed or if it
407 /// hasn't been indexed yet, or a valid duration if it has.
409
410 /// Get the additional modules that this symbol file uses to parse debug info.
411 ///
412 /// Some debug info is stored in stand alone object files that are represented
413 /// by unique modules that will show up in the statistics module list. Return
414 /// a list of modules that are not in the target module list that this symbol
415 /// file is currently using so that they can be tracked and assoicated with
416 /// the module in the statistics.
418
419 /// Accessors for the bool that indicates if the debug info index was loaded
420 /// from, or saved to the module index cache.
421 ///
422 /// In statistics it is handy to know if a module's debug info was loaded from
423 /// or saved to the cache. When the debug info index is loaded from the cache
424 /// startup times can be faster. When the cache is enabled and the debug info
425 /// index is saved to the cache, debug sessions can be slower. These accessors
426 /// can be accessed by the statistics and emitted to help track these costs.
427 /// \{
428 virtual bool GetDebugInfoIndexWasLoadedFromCache() const = 0;
430 virtual bool GetDebugInfoIndexWasSavedToCache() const = 0;
432 /// \}
433
434 /// Accessors for the bool that indicates if there was debug info, but errors
435 /// stopped variables from being able to be displayed correctly. See
436 /// GetFrameVariableError() for details on what are considered errors.
437 virtual bool GetDebugInfoHadFrameVariableErrors() const = 0;
439
440 /// Return true if separate debug info files are supported and this function
441 /// succeeded, false otherwise.
442 ///
443 /// \param[out] d
444 /// If this function succeeded, then this will be a dictionary that
445 /// contains the keys "type", "symfile", and "separate-debug-info-files".
446 /// "type" can be used to assume the structure of each object in
447 /// "separate-debug-info-files".
448 /// \param errors_only
449 /// If true, then only return separate debug info files that encountered
450 /// errors during loading. If false, then return all expected separate
451 /// debug info files, regardless of whether they were successfully loaded.
453 bool errors_only) {
454 return false;
455 };
456
457 virtual lldb::TypeSP
459 std::optional<uint64_t> byte_size, SymbolContextScope *context,
460 lldb::user_id_t encoding_uid,
461 Type::EncodingDataType encoding_uid_type, const Declaration &decl,
462 const CompilerType &compiler_qual_type,
463 Type::ResolveState compiler_type_resolve_state,
464 uint32_t opaque_payload = 0) = 0;
465
466 virtual lldb::TypeSP CopyType(const lldb::TypeSP &other_type) = 0;
467
468 /// Returns a map of compilation unit to the compile option arguments
469 /// associated with that compilation unit.
470 std::unordered_map<lldb::CompUnitSP, Args> GetCompileOptions() {
471 std::unordered_map<lldb::CompUnitSP, Args> args;
472 GetCompileOptions(args);
473 return args;
474 }
475
476protected:
477 void AssertModuleLock();
478
479 virtual void GetCompileOptions(
480 std::unordered_map<lldb::CompUnitSP, lldb_private::Args> &args) {}
481
482private:
483 SymbolFile(const SymbolFile &) = delete;
484 const SymbolFile &operator=(const SymbolFile &) = delete;
485};
486
487/// Containing protected virtual methods for child classes to override.
488/// Most actual SymbolFile implementations should inherit from this class.
490 /// LLVM RTTI support.
491 static char ID;
492
493public:
494 /// LLVM RTTI support.
495 /// \{
496 bool isA(const void *ClassID) const override {
497 return ClassID == &ID || SymbolFile::isA(ClassID);
498 }
499 static bool classof(const SymbolFileCommon *obj) { return obj->isA(&ID); }
500 /// \}
501
502 // Constructors and Destructors
504 : m_objfile_sp(std::move(objfile_sp)) {}
505
506 ~SymbolFileCommon() override = default;
507
508 uint32_t GetAbilities() override {
512 }
513 return m_abilities;
514 }
515
516 Symtab *GetSymtab() override;
517
518 ObjectFile *GetObjectFile() override { return m_objfile_sp.get(); }
519 const ObjectFile *GetObjectFile() const override {
520 return m_objfile_sp.get();
521 }
522 ObjectFile *GetMainObjectFile() override;
523
524 /// Notify the SymbolFile that the file addresses in the Sections
525 /// for this module have been changed.
526 void SectionFileAddressesChanged() override;
527
528 // Compile Unit function calls
529 // Approach 1 - iterator
530 uint32_t GetNumCompileUnits() override;
531 lldb::CompUnitSP GetCompileUnitAtIndex(uint32_t idx) override;
532
533 llvm::Expected<lldb::TypeSystemSP>
535
536 void Dump(Stream &s) override;
537
538 uint64_t GetDebugInfoSize() override;
539
542 }
545 }
546 bool GetDebugInfoIndexWasSavedToCache() const override {
548 }
551 }
554 }
557 }
558
559 /// This function is used to create types that belong to a SymbolFile. The
560 /// symbol file will own a strong reference to the type in an internal type
561 /// list.
563 std::optional<uint64_t> byte_size,
564 SymbolContextScope *context,
565 lldb::user_id_t encoding_uid,
566 Type::EncodingDataType encoding_uid_type,
567 const Declaration &decl,
568 const CompilerType &compiler_qual_type,
569 Type::ResolveState compiler_type_resolve_state,
570 uint32_t opaque_payload = 0) override {
571 lldb::TypeSP type_sp (new Type(
572 uid, this, name, byte_size, context, encoding_uid,
573 encoding_uid_type, decl, compiler_qual_type,
574 compiler_type_resolve_state, opaque_payload));
575 m_type_list.Insert(type_sp);
576 return type_sp;
577 }
578
579 lldb::TypeSP CopyType(const lldb::TypeSP &other_type) override {
580 // Make sure the real symbol file matches when copying types.
581 if (GetBackingSymbolFile() != other_type->GetSymbolFile())
582 return lldb::TypeSP();
583 lldb::TypeSP type_sp(new Type(*other_type));
584 m_type_list.Insert(type_sp);
585 return type_sp;
586 }
587
588protected:
589 virtual uint32_t CalculateNumCompileUnits() = 0;
590 virtual lldb::CompUnitSP ParseCompileUnitAtIndex(uint32_t idx) = 0;
591 virtual TypeList &GetTypeList() { return m_type_list; }
592 void SetCompileUnitAtIndex(uint32_t idx, const lldb::CompUnitSP &cu_sp);
593
594 lldb::ObjectFileSP m_objfile_sp; // Keep a reference to the object file in
595 // case it isn't the same as the module
596 // object file (debug symbols in a separate
597 // file)
598 std::optional<std::vector<lldb::CompUnitSP>> m_compile_units;
600 uint32_t m_abilities = 0;
604 /// Set to true if any variable feteching errors have been found when calling
605 /// GetFrameVariableError(). This will be emitted in the "statistics dump"
606 /// information for a module.
608
609private:
612
613 /// Do not use m_symtab directly, as it may be freed. Use GetSymtab()
614 /// to access it instead.
615 Symtab *m_symtab = nullptr;
616};
617
618} // namespace lldb_private
619
620#endif // LLDB_SYMBOL_SYMBOLFILE_H
A section + offset based address class.
Definition: Address.h:59
A class that describes a compilation unit.
Definition: CompileUnit.h:41
Represents a generic declaration context in a program.
Represents a generic declaration such as a function declaration.
Definition: CompilerDecl.h:28
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
A uniqued constant string class.
Definition: ConstString.h:40
A class that describes the declaration location of a lldb object.
Definition: Declaration.h:24
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A file collection class.
Definition: FileSpecList.h:24
A class that describes a function.
Definition: Function.h:399
A collection class for Module objects.
Definition: ModuleList.h:82
A class that encapsulates name lookup information.
Definition: Module.h:949
A class that describes an executable image and its associated object and symbol files.
Definition: Module.h:88
A plug-in interface definition class for object file parsers.
Definition: ObjectFile.h:44
"lldb/Core/SourceLocationSpec.h" A source location specifier class.
This base class provides an interface to stack frames.
Definition: StackFrame.h:42
std::chrono::duration< double > Duration
Definition: Statistics.h:31
An error handling class.
Definition: Status.h:44
bool Fail() const
Test for error condition.
Definition: Status.cpp:181
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
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.
Definition: SymbolContext.h:33
Containing protected virtual methods for child classes to override.
Definition: SymbolFile.h:489
const SymbolFileCommon & operator=(const SymbolFileCommon &)=delete
~SymbolFileCommon() override=default
bool GetDebugInfoHadFrameVariableErrors() const override
Accessors for the bool that indicates if there was debug info, but errors stopped variables from bein...
Definition: SymbolFile.h:552
void SetDebugInfoIndexWasLoadedFromCache() override
Definition: SymbolFile.h:543
bool GetDebugInfoIndexWasSavedToCache() const override
Definition: SymbolFile.h:546
lldb::CompUnitSP GetCompileUnitAtIndex(uint32_t idx) override
Definition: SymbolFile.cpp:203
ObjectFile * GetObjectFile() override
Definition: SymbolFile.h:518
std::optional< std::vector< lldb::CompUnitSP > > m_compile_units
Definition: SymbolFile.h:598
virtual TypeList & GetTypeList()
Definition: SymbolFile.h:591
uint64_t GetDebugInfoSize() override
Metrics gathering functions.
Definition: SymbolFile.cpp:241
lldb::ObjectFileSP m_objfile_sp
Definition: SymbolFile.h:594
bool isA(const void *ClassID) const override
LLVM RTTI support.
Definition: SymbolFile.h:496
void SetDebugInfoIndexWasSavedToCache() override
Definition: SymbolFile.h:549
Symtab * GetSymtab() override
Definition: SymbolFile.cpp:166
virtual lldb::CompUnitSP ParseCompileUnitAtIndex(uint32_t idx)=0
ObjectFile * GetMainObjectFile() override
Definition: SymbolFile.cpp:180
bool m_debug_info_had_variable_errors
Set to true if any variable feteching errors have been found when calling GetFrameVariableError().
Definition: SymbolFile.h:607
Symtab * m_symtab
Do not use m_symtab directly, as it may be freed.
Definition: SymbolFile.h:615
static char ID
LLVM RTTI support.
Definition: SymbolFile.h:491
void SetCompileUnitAtIndex(uint32_t idx, const lldb::CompUnitSP &cu_sp)
Definition: SymbolFile.cpp:214
SymbolFileCommon(lldb::ObjectFileSP objfile_sp)
Definition: SymbolFile.h:503
void SetDebugInfoHadFrameVariableErrors() override
Definition: SymbolFile.h:555
static bool classof(const SymbolFileCommon *obj)
Definition: SymbolFile.h:499
const ObjectFile * GetObjectFile() const override
Definition: SymbolFile.h:519
uint32_t GetAbilities() override
Get a mask of what this symbol file supports for the object file that it was constructed with.
Definition: SymbolFile.h:508
llvm::Expected< lldb::TypeSystemSP > GetTypeSystemForLanguage(lldb::LanguageType language) override
Definition: SymbolFile.cpp:231
bool GetDebugInfoIndexWasLoadedFromCache() const override
Accessors for the bool that indicates if the debug info index was loaded from, or saved to the module...
Definition: SymbolFile.h:540
uint32_t GetNumCompileUnits() override
Definition: SymbolFile.cpp:193
SymbolFileCommon(const SymbolFileCommon &)=delete
lldb::TypeSP CopyType(const lldb::TypeSP &other_type) override
Definition: SymbolFile.h:579
void SectionFileAddressesChanged() override
Notify the SymbolFile that the file addresses in the Sections for this module have been changed.
Definition: SymbolFile.cpp:184
virtual uint32_t CalculateNumCompileUnits()=0
void Dump(Stream &s) override
Definition: SymbolFile.cpp:253
lldb::TypeSP MakeType(lldb::user_id_t uid, ConstString name, std::optional< uint64_t > byte_size, SymbolContextScope *context, lldb::user_id_t encoding_uid, Type::EncodingDataType encoding_uid_type, const Declaration &decl, const CompilerType &compiler_qual_type, Type::ResolveState compiler_type_resolve_state, uint32_t opaque_payload=0) override
This function is used to create types that belong to a SymbolFile.
Definition: SymbolFile.h:562
Provides public interface for all SymbolFiles.
Definition: SymbolFile.h:50
virtual lldb::TypeSP CopyType(const lldb::TypeSP &other_type)=0
virtual llvm::SmallSet< lldb::LanguageType, 4 > ParseAllLanguages(CompileUnit &comp_unit)
This function exists because SymbolFileDWARFDebugMap may extra compile units which aren't exposed as ...
Definition: SymbolFile.h:157
virtual void ParseDeclsForContext(CompilerDeclContext decl_ctx)
Definition: SymbolFile.h:227
virtual llvm::Expected< lldb::addr_t > GetParameterStackSize(Symbol &symbol)
Return the number of stack bytes taken up by the parameters to this function.
Definition: SymbolFile.h:376
virtual bool GetDebugInfoIndexWasLoadedFromCache() const =0
Accessors for the bool that indicates if the debug info index was loaded from, or saved to the module...
virtual XcodeSDK ParseXcodeSDK(CompileUnit &comp_unit)
Return the Xcode SDK comp_unit was compiled against.
Definition: SymbolFile.h:151
virtual void InitializeObject()
Initialize the SymbolFile object.
Definition: SymbolFile.h:130
virtual bool CompleteType(CompilerType &compiler_type)=0
virtual Type * ResolveTypeUID(lldb::user_id_t type_uid)=0
virtual bool ParseIsOptimized(CompileUnit &comp_unit)
Definition: SymbolFile.h:202
virtual bool isA(const void *ClassID) const
LLVM RTTI support.
Definition: SymbolFile.h:57
~SymbolFile() override=default
virtual bool ForEachExternalModule(lldb_private::CompileUnit &comp_unit, llvm::DenseSet< lldb_private::SymbolFile * > &visited_symbol_files, llvm::function_ref< bool(Module &)> lambda)
Apply a lambda to each external lldb::Module referenced by this comp_unit.
Definition: SymbolFile.h:193
virtual std::vector< CompilerContext > GetCompilerContextForUID(lldb::user_id_t uid)
Definition: SymbolFile.h:236
virtual CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid)
Definition: SymbolFile.h:229
virtual std::vector< std::unique_ptr< CallEdge > > ParseCallEdgesInFunction(UserID func_id)
Definition: SymbolFile.h:352
virtual CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid)
Definition: SymbolFile.h:232
virtual CompilerDecl GetDeclForUID(lldb::user_id_t uid)
Definition: SymbolFile.h:228
virtual const ObjectFile * GetObjectFile() const =0
virtual size_t ParseTypes(CompileUnit &comp_unit)=0
virtual Symtab * GetSymtab()=0
virtual void SectionFileAddressesChanged()=0
Notify the SymbolFile that the file addresses in the Sections for this module have been changed.
virtual void SetLoadDebugInfoEnabled()
Specify debug info should be loaded.
Definition: SymbolFile.h:140
virtual void PreloadSymbols()
Definition: SymbolFile.cpp:32
virtual lldb::UnwindPlanSP GetUnwindPlan(const Address &address, const RegisterInfoResolver &resolver)
Definition: SymbolFile.h:370
virtual SymbolFile * GetBackingSymbolFile()
SymbolFileOnDemand class overrides this to return the underlying backing SymbolFile implementation th...
Definition: SymbolFile.h:87
virtual void FindGlobalVariables(ConstString name, const CompilerDeclContext &parent_decl_ctx, uint32_t max_matches, VariableList &variables)
Definition: SymbolFile.cpp:115
virtual bool GetDebugInfoIndexWasSavedToCache() const =0
virtual StatsDuration::Duration GetDebugInfoParseTime()
Return the time taken to parse the debug information.
Definition: SymbolFile.h:401
virtual size_t ParseFunctions(CompileUnit &comp_unit)=0
virtual ObjectFile * GetMainObjectFile()=0
virtual size_t ParseBlocksRecursive(Function &func)=0
virtual uint32_t GetNumCompileUnits()=0
virtual bool ParseLineTable(CompileUnit &comp_unit)=0
virtual llvm::Expected< lldb::TypeSystemSP > GetTypeSystemForLanguage(lldb::LanguageType language)=0
virtual bool ParseDebugMacros(CompileUnit &comp_unit)=0
static SymbolFile * FindPlugin(lldb::ObjectFileSP objfile_sp)
Definition: SymbolFile.cpp:40
virtual std::recursive_mutex & GetModuleMutex() const
Symbols file subclasses should override this to return the Module that owns the TypeSystem that this ...
Definition: SymbolFile.cpp:36
virtual void FindTypes(ConstString name, const CompilerDeclContext &parent_decl_ctx, uint32_t max_matches, llvm::DenseSet< lldb_private::SymbolFile * > &searched_symbol_files, TypeMap &types)
Definition: SymbolFile.cpp:137
virtual bool GetLoadDebugInfoEnabled()
Whether debug info will be loaded or not.
Definition: SymbolFile.h:135
SymbolFile(const SymbolFile &)=delete
virtual lldb::TypeSP MakeType(lldb::user_id_t uid, ConstString name, std::optional< uint64_t > byte_size, SymbolContextScope *context, lldb::user_id_t encoding_uid, Type::EncodingDataType encoding_uid_type, const Declaration &decl, const CompilerType &compiler_qual_type, Type::ResolveState compiler_type_resolve_state, uint32_t opaque_payload=0)=0
Status GetFrameVariableError(StackFrame &frame)
Get an error that describes why variables might be missing for a given symbol context.
Definition: SymbolFile.h:271
virtual bool GetDebugInfoHadFrameVariableErrors() const =0
Accessors for the bool that indicates if there was debug info, but errors stopped variables from bein...
virtual void GetTypes(lldb_private::SymbolContextScope *sc_scope, lldb::TypeClass type_mask, lldb_private::TypeList &type_list)=0
virtual std::optional< ArrayInfo > GetDynamicArrayInfoForUID(lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx)=0
If type_uid points to an array type, return its characteristics.
virtual void DumpClangAST(Stream &s)
Definition: SymbolFile.h:291
virtual void AddSymbols(Symtab &symtab)
Definition: SymbolFile.h:356
virtual lldb::LanguageType ParseLanguage(CompileUnit &comp_unit)=0
virtual lldb::CompUnitSP GetCompileUnitAtIndex(uint32_t idx)=0
virtual uint64_t GetDebugInfoSize()=0
Metrics gathering functions.
virtual CompilerDeclContext FindNamespace(ConstString name, const CompilerDeclContext &parent_decl_ctx, bool only_root_namespaces=false)
Finds a namespace of name name and whose parent context is parent_decl_ctx.
Definition: SymbolFile.h:342
const SymbolFile & operator=(const SymbolFile &)=delete
virtual void FindTypes(llvm::ArrayRef< CompilerContext > pattern, LanguageSet languages, llvm::DenseSet< lldb_private::SymbolFile * > &searched_symbol_files, TypeMap &types)
Find types specified by a CompilerContextPattern.
virtual bool ParseImportedModules(const SymbolContext &sc, std::vector< SourceModule > &imported_modules)=0
virtual void SetDebugInfoIndexWasSavedToCache()=0
static char ID
LLVM RTTI support.
Definition: SymbolFile.h:52
virtual void FindFunctions(const Module::LookupInfo &lookup_info, const CompilerDeclContext &parent_decl_ctx, bool include_inlines, SymbolContextList &sc_list)
Definition: SymbolFile.cpp:124
virtual void SetDebugInfoHadFrameVariableErrors()=0
virtual ModuleList GetDebugInfoModules()
Get the additional modules that this symbol file uses to parse debug info.
Definition: SymbolFile.h:417
virtual StatsDuration::Duration GetDebugInfoIndexTime()
Return the time it took to index the debug information in the object file.
Definition: SymbolFile.h:408
virtual size_t ParseVariablesForContext(const SymbolContext &sc)=0
virtual uint32_t GetAbilities()=0
Get a mask of what this symbol file supports for the object file that it was constructed with.
static bool classof(const SymbolFile *obj)
Definition: SymbolFile.h:58
virtual uint32_t CalculateAbilities()=0
virtual void GetCompileOptions(std::unordered_map< lldb::CompUnitSP, lldb_private::Args > &args)
Definition: SymbolFile.h:479
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:470
virtual Status CalculateFrameVariableError(StackFrame &frame)
Subclasses will override this function to for GetFrameVariableError().
Definition: SymbolFile.h:283
virtual ObjectFile * GetObjectFile()=0
virtual uint32_t ResolveSymbolContext(const Address &so_addr, lldb::SymbolContextItem resolve_scope, SymbolContext &sc)=0
virtual void GetMangledNamesForFunction(const std::string &scope_qualified_name, std::vector< ConstString > &mangled_names)
Definition: SymbolFile.cpp:133
virtual bool GetSeparateDebugInfo(StructuredData::Dictionary &d, bool errors_only)
Return true if separate debug info files are supported and this function succeeded,...
Definition: SymbolFile.h:452
virtual bool ParseSupportFiles(CompileUnit &comp_unit, FileSpecList &support_files)=0
virtual void Dump(Stream &s)=0
virtual void SetDebugInfoIndexWasLoadedFromCache()=0
void Insert(const lldb::TypeSP &type)
Definition: TypeList.cpp:27
An abstraction for Xcode-style SDKs that works like ArchSpec.
Definition: XcodeSDK.h:24
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::ObjectFile > ObjectFileSP
Definition: lldb-forward.h:363
LanguageType
Programming language type.
std::shared_ptr< lldb_private::Type > TypeSP
Definition: lldb-forward.h:445
std::shared_ptr< lldb_private::UnwindPlan > UnwindPlanSP
Definition: lldb-forward.h:466
uint64_t user_id_t
Definition: lldb-types.h:80
std::shared_ptr< lldb_private::CompileUnit > CompUnitSP
Definition: lldb-forward.h:323
RegisterKind
Register numbering types.
A SmallBitVector that represents a set of source languages (lldb::LanguageType).
Definition: TypeSystem.h:51
Every register is described in detail including its name, alternate name (optional),...
The characteristics of an array type.
Definition: SymbolFile.h:212
llvm::SmallVector< uint64_t, 1 > element_orders
Definition: SymbolFile.h:214
virtual const RegisterInfo * ResolveNumber(lldb::RegisterKind kind, uint32_t number) const =0
virtual const RegisterInfo * ResolveName(llvm::StringRef name) const =0
A mix in class that contains a generic user ID.
Definition: UserID.h:31