55#include "llvm/ADT/STLExtras.h"
56#include "llvm/Support/Compiler.h"
57#include "llvm/Support/DJB.h"
58#include "llvm/Support/FileSystem.h"
59#include "llvm/Support/FormatVariadic.h"
60#include "llvm/Support/JSON.h"
61#include "llvm/Support/MemoryBuffer.h"
62#include "llvm/Support/Signals.h"
63#include "llvm/Support/VirtualFileSystem.h"
64#include "llvm/Support/raw_ostream.h"
99 if (g_module_collection ==
nullptr)
102 return *g_module_collection;
111 static std::recursive_mutex *g_module_collection_mutex =
nullptr;
112 if (g_module_collection_mutex ==
nullptr)
113 g_module_collection_mutex =
new std::recursive_mutex;
114 return *g_module_collection_mutex;
118 std::lock_guard<std::recursive_mutex> guard(
124 std::lock_guard<std::recursive_mutex> guard(
127 if (idx < modules.size())
139 std::lock_guard<std::recursive_mutex> guard(
145 LLDB_LOGF(log,
"%p Module::Module((%s) '%s%s%s%s')",
146 static_cast<void *
>(
this),
156 file_size = extractor_sp->GetByteSize();
161 module_spec.
GetFileSpec(), 0, file_size, extractor_sp);
162 if (modules_specs.
GetSize() == 0)
174 matching_module_spec)) {
175 LLDB_LOGF(log,
"Found local object file but the specs didn't match");
182 if (
auto module_spec_extractor_sp = module_spec.
GetExtractor()) {
236 const llvm::sys::TimePoint<> &object_mod_time)
245 std::lock_guard<std::recursive_mutex> guard(
251 LLDB_LOGF(log,
"%p Module::Module((%s) '%s%s%s%s')",
252 static_cast<void *
>(
this),
m_arch.GetArchitectureName(),
260 std::lock_guard<std::recursive_mutex> guard(
268 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
271 std::lock_guard<std::recursive_mutex> guard(
274 ModuleCollection::iterator end = modules.end();
275 ModuleCollection::iterator pos = std::find(modules.begin(), end,
this);
280 LLDB_LOGF(log,
"%p Module::~Module((%s) '%s%s%s%s')",
281 static_cast<void *
>(
this),
m_arch.GetArchitectureName(),
296 size_t size_to_read) {
300 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
303 std::shared_ptr<DataBufferHeap> data_sp =
304 std::make_shared<DataBufferHeap>(size_to_read, 0);
306 const size_t bytes_read =
307 process_sp->ReadMemory(header_addr, data_sp->GetBytes(),
308 data_sp->GetByteSize(), readmem_error);
309 if (bytes_read < size_to_read)
310 data_sp->SetByteSize(bytes_read);
311 if (data_sp->GetByteSize() > 0) {
313 header_addr, data_sp);
316 s.
Printf(
"0x%16.16" PRIx64, header_addr);
326 m_arch.MergeFrom(process_sp->GetTarget().GetArchitecture());
331 "unable to find suitable object file plug-in");
335 "unable to read header from memory: %s", readmem_error.
AsCString());
346 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
350 if (obj_file !=
nullptr) {
359llvm::Expected<TypeSystemSP>
370 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
372 if (num_comp_units == 0)
377 for (
size_t cu_idx = 0; cu_idx < num_comp_units; cu_idx++) {
409 s->
Printf(
", Module{%p}",
static_cast<void *
>(
this));
413 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
415 return symbols->GetNumCompileUnits();
420 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
424 if (index < num_comp_units) {
426 cu_sp = symbols->GetCompileUnitAtIndex(index);
432 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
440 const Address &so_addr, lldb::SymbolContextItem resolve_scope,
442 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
443 uint32_t resolved_flags = 0;
453 if (section_sp && section_sp->GetModule().get() ==
this) {
457 resolved_flags |= eSymbolContextModule;
461 return resolved_flags;
465 if (resolve_scope & eSymbolContextCompUnit ||
466 resolve_scope & eSymbolContextFunction ||
467 resolve_scope & eSymbolContextBlock ||
468 resolve_scope & eSymbolContextLineEntry ||
469 resolve_scope & eSymbolContextVariable) {
480 if (resolve_scope & eSymbolContextSymbol &&
481 !(resolved_flags & eSymbolContextSymbol)) {
484 Symbol *matching_symbol =
nullptr;
487 Symbol *symbol_at_address =
489 if (symbol_at_address &&
491 matching_symbol = symbol_at_address;
494 file_address, [&matching_symbol](
Symbol *symbol) ->
bool {
496 matching_symbol = symbol;
503 sc.
symbol = matching_symbol;
513 if (symtab_objfile && symtab_objfile->
IsStripped()) {
515 if (symfile_objfile != symtab_objfile) {
517 if (symfile_symtab) {
528 resolved_flags |= eSymbolContextSymbol;
536 if (resolve_scope & eSymbolContextSymbol &&
537 !(resolved_flags & eSymbolContextSymbol) && resolve_tail_call_address &&
539 Address previous_addr = so_addr;
540 previous_addr.
Slide(-1);
542 bool do_resolve_tail_call_address =
false;
544 previous_addr, resolve_scope, sc, do_resolve_tail_call_address);
545 if (flags & eSymbolContextSymbol) {
547 if (sc.
GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0,
548 false, addr_range)) {
559 resolved_flags |= flags;
569 return resolved_flags;
573 const char *file_path, uint32_t line,
bool check_inlines,
577 resolve_scope, sc_list);
581 const FileSpec &file_spec, uint32_t line,
bool check_inlines,
583 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
585 "check_inlines = %s, resolve_scope = 0x%8.8x)",
586 file_spec.
GetPath().c_str(), line,
587 check_inlines ?
"yes" :
"no", resolve_scope);
589 const uint32_t initial_count = sc_list.
GetSize();
594 check_inlines,
false);
596 symbols->ResolveSymbolContext(location_spec, resolve_scope, sc_list);
599 return sc_list.
GetSize() - initial_count;
606 symbols->FindGlobalVariables(name, parent_decl_ctx, max_matches, variables);
621 for (
size_t i = 0; i < num_compile_units; ++i) {
637 FunctionNameType name_type_mask,
639 : m_name(name), m_lookup_name(lookup_name), m_language(lang_type) {
640 std::optional<ConstString> basename;
643 if (name_type_mask & eFunctionNameTypeAuto) {
646 if (info.first != eFunctionNameTypeNone) {
648 if (!basename && info.second)
649 basename = info.second;
669 basename = info.second;
670 }
else if (name_type_mask & eFunctionNameTypeFull &&
671 info.first != eFunctionNameTypeNone && !basename &&
675 basename = info.second;
692 ConstString name, lldb::FunctionNameType name_type_mask,
694 std::vector<LanguageType> lang_types;
696 lang_types.push_back(lang_type);
702 if (!llvm::is_contained(lang_types, lang_type))
703 lang_types.push_back(lang_type);
707 if (lang_types.empty())
711 ConstString lookup_name = lookup_name_override ? lookup_name_override : name;
713 std::vector<Module::LookupInfo> infos;
714 infos.reserve(lang_types.size());
717 infos.push_back(info);
729 if (
m_name == function_name)
737 const bool function_name_may_be_mangled =
739 ConstString demangled_function_name = function_name;
740 if (function_name_may_be_mangled) {
741 Mangled mangled_function_name(function_name);
749 return language->DemangledNameContainsPath(
m_name, demangled_function_name);
751 llvm::StringRef function_name_ref = demangled_function_name;
752 return function_name_ref.contains(
m_name);
756 size_t start_idx)
const {
759 size_t i = start_idx;
760 while (i < sc_list.
GetSize()) {
780 size_t i = start_idx;
781 while (i < sc_list.
GetSize()) {
789 std::unique_ptr<Language::MethodName> cpp_method =
791 if (cpp_method->IsValid()) {
792 if (cpp_method->GetContext().empty()) {
793 if (cpp_method->GetBasename().compare(
m_name) != 0) {
798 std::string qualified_name;
799 llvm::StringRef anon_prefix(
"(anonymous namespace)");
800 if (cpp_method->GetContext() == anon_prefix)
801 qualified_name = cpp_method->GetBasename().str();
803 qualified_name = cpp_method->GetScopeQualifiedName();
804 if (qualified_name !=
m_name.GetCString()) {
820 for (
auto &lookup_info : lookup_infos) {
829 symtab->FindFunctionSymbols(lookup_info.GetLookupName(),
830 lookup_info.GetNameTypeMask(), sc_list);
836 FunctionNameType name_type_mask,
839 std::vector<LookupInfo> lookup_infos =
841 for (
auto &lookup_info : lookup_infos) {
842 const size_t old_size = sc_list.
GetSize();
843 FindFunctions(lookup_info, parent_decl_ctx, options, sc_list);
844 if (name_type_mask & eFunctionNameTypeAuto) {
845 const size_t new_size = sc_list.
GetSize();
846 if (old_size < new_size)
847 lookup_info.Prune(sc_list, old_size);
853 FunctionNameType name_type_mask,
854 const ModuleFunctionSearchOptions &options,
855 SymbolContextList &sc_list) {
856 if (compiler_ctx.empty() ||
859 ConstString name = compiler_ctx.back().name;
860 SymbolContextList unfiltered;
861 FindFunctions(name, CompilerDeclContext(), name_type_mask, options,
864 for (
auto &sc : unfiltered)
865 if (sc.function && compiler_ctx.equals(sc.function->GetCompilerContext()))
872 const size_t start_size = sc_list.
GetSize();
882 std::vector<uint32_t> symbol_indexes;
886 const size_t num_matches = symbol_indexes.size();
889 const size_t end_functions_added_index = sc_list.
GetSize();
890 size_t num_functions_added_to_sc_list =
891 end_functions_added_index - start_size;
892 if (num_functions_added_to_sc_list == 0) {
895 for (
size_t i = 0; i < num_matches; ++i) {
903 typedef std::map<lldb::addr_t, uint32_t> FileAddrToIndexMap;
904 FileAddrToIndexMap file_addr_to_index;
905 for (
size_t i = start_size; i < end_functions_added_index; ++i) {
913 FileAddrToIndexMap::const_iterator end = file_addr_to_index.end();
916 for (
size_t i = start_size; i < num_matches; ++i) {
922 FileAddrToIndexMap::const_iterator pos =
923 file_addr_to_index.find(
939 const FileSpec &file, uint32_t line,
941 std::vector<Address> &output_local,
942 std::vector<Address> &output_extern) {
955 if (f && f == function)
956 output_local.push_back(addr);
958 output_extern.push_back(addr);
972 if (requestors.empty())
975 for (
auto debugger_sp : requestors) {
976 if (!debugger_sp->InterruptRequested())
978 if (debugger_sp->GetTargetList().AnyTargetContainsModule(module))
979 interruptors.push_back(debugger_sp);
986 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
990 if (!interruptors.empty()) {
991 for (
auto debugger_sp : interruptors) {
993 "Interrupted fetching symbols for module {0}",
994 this->GetFileSpec());
999 if (obj_file !=
nullptr) {
1042 s << llvm::formatv(
"({0}) ",
m_arch.GetArchitectureName());
1046 const char *filename =
m_file.GetFilename().GetCString();
1051 if (
m_file.GetPath(path,
sizeof(path)))
1057 s << llvm::formatv(
"({0})", object_name);
1072 std::optional<lldb::user_id_t> debugger_id) {
1079 <<
" was compiled with optimization - stepping may behave "
1080 "oddly; variables may not be available.";
1086 LanguageType language, std::optional<lldb::user_id_t> debugger_id) {
1088 ss <<
"This version of LLDB has no plugin for the language \""
1091 "Inspection of frame variables will be limited.";
1097 const llvm::formatv_object_base &payload) {
1106 strm.
PutCString(
"The debug session should be aborted as the original "
1107 "debug information has been overwritten.");
1117 once_ptr = std::make_unique<std::once_flag>();
1118 return once_ptr.get();
1124 std::string msg = payload.str();
1132 std::string msg = payload.str();
1147 Log *log,
const llvm::formatv_object_base &payload) {
1153 std::string back_trace;
1154 llvm::raw_string_ostream stream(back_trace);
1155 llvm::sys::PrintStackTrace(stream);
1162 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
1165 s->
Printf(
"Module %s%s%s%s\n",
m_file.GetPath().c_str(),
1186 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
1216 ReportError(
"failed to load objfile for {0}\nDebugging will be "
1217 "degraded for this module.",
1230 if (obj_file !=
nullptr)
1259 "Module::FindFirstSymbolWithNameAndType (name = %s, type = %i)",
1262 return symtab->FindFirstSymbolWithNameAndType(
1267 Symtab *symtab, std::vector<uint32_t> &symbol_indexes,
1272 size_t num_indices = symbol_indexes.size();
1273 if (num_indices > 0) {
1276 for (
size_t i = 0; i < num_indices; i++) {
1289 symtab->FindFunctionSymbols(name, name_type_mask, sc_list);
1298 std::vector<uint32_t> symbol_indexes;
1299 symtab->FindAllSymbolsWithNameAndType(name, symbol_type, symbol_indexes);
1310 "Module::FindSymbolsMatchingRegExAndType (regex = %s, type = %i)",
1311 regex.
GetText().str().c_str(), symbol_type);
1313 std::vector<uint32_t> symbol_indexes;
1314 symtab->FindAllSymbolsMatchingRexExAndType(
1316 symbol_indexes, mangling_preference);
1322 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
1330 symtab->PreloadSymbols();
1345 if (section_list && symbol_file) {
1368 std::string new_path(file.
GetPath());
1370 if (llvm::StringRef(old_path).starts_with(new_path)) {
1379 for (
size_t idx = num_sections; idx > 0; --idx) {
1382 if (section_sp->GetObjectFile() == obj_file) {
1409 if (sections !=
nullptr) {
1410 size_t num_sections = sections->
GetSize();
1411 for (
size_t sect_idx = 0; sect_idx < num_sections; sect_idx++) {
1425 assert(scripting_fspec);
1432 nullptr, {}, target.shared_from_this());
1449 if (!script_interpreter) {
1462 llvm::SmallDenseMap<FileSpec, LoadScriptFromSymFile> file_specs =
1463 platform_sp->LocateExecutableScriptingResources(target, *
this,
1466 if (!feedback_stream.
Empty())
1469 for (
const auto &[scripting_fspec, load_style] : file_specs) {
1480R
"('{0}' contains a debug script. To run this script in this debug session:
1482 command script import "{1}"
1484To run all discovered debug scripts in this session:
1486 settings set target.load-script-from-symbol-file true
1496 LLDB_LOG(log,
"Auto-loading {0}", scripting_fspec.GetPath());
1500 LLDB_LOG(log,
"Failed to load '{0}'. Remaining scripts won't be loaded.",
1501 scripting_fspec.GetPath());
1518 bool value_is_offset,
bool &changed) {
1520 if (object_file !=
nullptr) {
1521 changed = object_file->
SetLoadAddress(target, value, value_is_offset);
1530 const UUID &uuid = module_ref.
GetUUID();
1537 const FileSpec &file_spec = module_ref.
GetFileSpec();
1548 if (!
m_arch.IsCompatibleMatch(arch))
1561 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
1564 new_spec = *remapped;
1571 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
1581 llvm::vfs::FileSystem &vfs = *llvm::vfs::getRealFileSystem();
1584 llvm::DenseSet<ConstString> searched;
1586 for (
FileSpec current(start_cs.GetStringRef());;) {
1588 if (!searched.insert(directory_cs).second)
1591 map_file.AppendPathComponent(
"compilation-prefix-map.json");
1592 llvm::ErrorOr<std::unique_ptr<llvm::vfs::File>> file =
1593 vfs.openFileForRead(map_file.GetPath());
1594 if (file && *file) {
1595 LLDB_LOG(log,
"found compilation-prefix-map.json at {0}",
1596 map_file.GetPath());
1597 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> buf =
1598 (*file)->getBuffer(map_file.GetPath());
1600 llvm::Expected<llvm::json::Value> val =
1601 llvm::json::parse((*buf)->getBuffer());
1604 map_file.GetPath());
1607 if (llvm::json::Object *obj = val->getAsObject()) {
1608 for (
const llvm::json::Object::value_type &kv : *obj)
1609 if (std::optional<llvm::StringRef> to = kv.second.getAsString()) {
1610 LLDB_LOG(log,
"applying prefix map: '{0}' -> '{1}'", kv.first,
1619 FileSpec parent = current;
1621 if (parent == current)
1630 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
1633 return remapped->GetPath();
1638 llvm::StringRef sysroot) {
1639 auto sdk_path_or_err =
1640 HostInfo::GetSDKRoot(HostInfo::SDKOptions{sdk_name.str()});
1642 if (!sdk_path_or_err) {
1644 toString(sdk_path_or_err.takeError()),
1650 auto sdk_path = *sdk_path_or_err;
1651 if (sdk_path.empty())
1664 "module has arch %s, merging/replacing with arch %s",
1666 arch_spec.
GetTriple().getTriple().c_str());
1674 merged_arch.MergeFrom(arch_spec);
1690 return obj_file->GetVersion();
1691 return llvm::VersionTuple();
1704 std::string identifier;
1705 llvm::raw_string_ostream id_strm(identifier);
1714 return llvm::djbHash(identifier);
1719 llvm::raw_string_ostream strm(key);
1723 strm <<
'-' << llvm::format_hex(
Hash(), 10);
1734 .GetLLDBIndexCachePath()
1736 return g_data_file_cache;
static llvm::raw_ostream & error(Stream &strm)
static lldb::user_id_t g_unique_id
#define REPORT_INTERRUPTION(debugger,...)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOGF(log,...)
#define LLDB_LOG_ERROR(log, error,...)
std::vector< Module * > ModuleCollection
static bool LoadScriptingModule(const FileSpec &scripting_fspec, ScriptInterpreter &script_interpreter, Target &target, Status &error)
static ModuleCollection & GetModuleCollection()
static Debugger::DebuggerList DebuggersOwningModuleRequestingInterruption(Module &module)
#define LLDB_SCOPED_TIMER()
#define LLDB_SCOPED_TIMERF(...)
A section + offset based address range class.
Address & GetBaseAddress()
Get accessor for the base address of the range.
lldb::addr_t GetByteSize() const
Get accessor for the byte size of this range.
"lldb/Core/AddressResolverFileLine.h" This class finds address for source file and line.
size_t GetNumberOfAddresses()
virtual void ResolveAddress(SearchFilter &filter)
AddressRange & GetAddressRangeAtIndex(size_t idx)
A section + offset based address class.
bool ResolveAddressUsingFileSections(lldb::addr_t addr, const SectionList *sections)
Resolve a file virtual address using a section list.
lldb::SectionSP GetSection() const
Get const accessor for the section.
Function * CalculateSymbolContextFunction() const
bool Slide(int64_t offset)
lldb::addr_t GetFileAddress() const
Get the file address.
lldb::addr_t GetOffset() const
Get the section relative offset value.
bool IsSectionOffset() const
Check if an address is section offset.
An architecture specification class.
bool IsValid() const
Tests if this ArchSpec is valid.
llvm::Triple & GetTriple()
Architecture triple accessor.
bool IsCompatibleMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, CompatibleMatch).
const char * GetArchitectureName() const
Returns a static string representing the current architecture.
const FileSpec & GetPrimaryFile() const
Return the primary source spec associated with this compile unit.
void ForeachFunction(llvm::function_ref< bool(const lldb::FunctionSP &)> lambda) const
Apply a lambda to each function in this compile unit.
Represents a generic declaration context in a program.
A uniqued constant string class.
const char * AsCString(const char *value_if_empty=nullptr) const
Get the string value as a C string.
bool IsEmpty() const
Test for empty string.
This class enables data to be cached into a directory using the llvm caching code.
A class to manage flag bits.
static void ReportWarning(std::string message, std::optional< lldb::user_id_t > debugger_id=std::nullopt, std::once_flag *once=nullptr)
Report warning events.
lldb::ScriptLanguage GetScriptLanguage() const
static void ReportError(std::string message, std::optional< lldb::user_id_t > debugger_id=std::nullopt, std::once_flag *once=nullptr)
Report error events.
ScriptInterpreter * GetScriptInterpreter(bool can_create=true, std::optional< lldb::ScriptLanguage > language={})
std::vector< lldb::DebuggerSP > DebuggerList
static DebuggerList DebuggersRequestingInterruption()
static bool Match(const FileSpec &pattern, const FileSpec &file)
Match FileSpec pattern against FileSpec file.
const ConstString & GetFilename() const
Filename string const get accessor.
bool RemoveLastPathComponent()
Removes the last path component by replacing the current path with its parent.
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
void Dump(llvm::raw_ostream &s) const
Dump this object to a Stream.
uint64_t GetByteSize(const FileSpec &file_spec) const
Returns the on-disk size of the given file in bytes.
llvm::sys::TimePoint GetModificationTime(const FileSpec &file_spec) const
Returns the modification time of the given file.
static FileSystem & Instance()
A class that describes a function.
const Address & GetAddress() const
Return the address of the function (its entry point).
static void ForEach(llvm::function_ref< IterationAction(Language *)> callback)
static Language * FindPlugin(lldb::LanguageType language)
static const char * GetNameForLanguageType(lldb::LanguageType language)
Returns the internal LLDB name for the specified language.
virtual std::unique_ptr< Language::MethodName > GetMethodName(ConstString name) const
virtual lldb::LanguageType GetLanguageType() const =0
virtual std::pair< lldb::FunctionNameType, std::optional< ConstString > > GetFunctionNameInfo(ConstString name) const
void PutCString(const char *cstr)
A class that handles mangled names.
ConstString GetDemangledName() const
Demangled name get accessor.
static Mangled::ManglingScheme GetManglingScheme(llvm::StringRef name)
Try to identify the mangling scheme used.
static ModuleListProperties & GetGlobalModuleListProperties()
bool FindMatchingModuleSpec(const ModuleSpec &module_spec, ModuleSpec &match_module_spec) const
uint64_t GetObjectOffset() const
ConstString & GetObjectName()
FileSpec & GetPlatformFileSpec()
ArchSpec & GetArchitecture()
FileSpec & GetSymbolFileSpec()
llvm::sys::TimePoint & GetObjectModificationTime()
lldb::DataExtractorSP GetExtractor() const
A class that encapsulates name lookup information.
lldb::FunctionNameType GetNameTypeMask() const
lldb::LanguageType GetLanguageType() const
ConstString m_lookup_name
The actual name will lookup when calling in the object or symbol file.
lldb::FunctionNameType m_name_type_mask
One or more bits from lldb::FunctionNameType that indicate what kind of names we are looking for.
bool NameMatchesLookupInfo(ConstString function_name, lldb::LanguageType language_type=lldb::eLanguageTypeUnknown) const
lldb::LanguageType m_language
Limit matches to only be for this language.
ConstString m_name
What the user originally typed.
ConstString GetName() const
static std::vector< LookupInfo > MakeLookupInfos(ConstString name, lldb::FunctionNameType name_type_mask, lldb::LanguageType lang_type, ConstString lookup_name_override={})
Creates a vector of lookup infos for function name resolution.
void Prune(SymbolContextList &sc_list, size_t start_idx) const
bool m_match_name_after_lookup
If true, then demangled names that match will need to contain "m_name" in order to be considered a ma...
A class that describes an executable image and its associated object and symbol files.
const lldb_private::UUID & GetUUID()
Get a reference to the UUID value contained in this object.
uint32_t ResolveSymbolContextForFilePath(const char *file_path, uint32_t line, bool check_inlines, lldb::SymbolContextItem resolve_scope, SymbolContextList &sc_list)
Resolve items in the symbol context for a given file and line.
std::atomic< bool > m_did_set_uuid
void ReportWarningOptimization(std::optional< lldb::user_id_t > debugger_id)
PathMappingList m_source_mappings
Module specific source remappings for when you have debug info for a module that doesn't match where ...
llvm::sys::TimePoint m_object_mod_time
virtual ObjectFile * GetObjectFile()
Get the object file representation for the current architecture.
void FindGlobalVariables(ConstString name, const CompilerDeclContext &parent_decl_ctx, size_t max_matches, VariableList &variable_list)
Find global and static variables by name.
void ReportWarning(const char *format, Args &&...args)
FileSpec m_file
The file representation on disk for this module (if there is one).
virtual SymbolFile * GetSymbolFile(bool can_create=true, Stream *feedback_strm=nullptr)
Get the module's symbol file.
static DataFileCache * GetIndexCache()
Get the global index file cache.
std::vector< lldb::SymbolVendorUP > m_old_symfiles
If anyone calls Module::SetSymbolFileFileSpec() and changes the symbol file,.
void ReportWarningUnsupportedLanguage(lldb::LanguageType language, std::optional< lldb::user_id_t > debugger_id)
std::once_flag * GetDiagnosticOnceFlag(llvm::StringRef msg)
void FindCompileUnits(const FileSpec &path, SymbolContextList &sc_list)
Find compile units by partial or full path.
ConstString GetObjectName() const
uint32_t Hash()
Get a unique hash for this module.
lldb::ModuleSP CalculateSymbolContextModule() override
static Module * GetAllocatedModuleAtIndex(size_t idx)
std::optional< std::string > RemapSourceFile(llvm::StringRef path)
Remaps a source file given path into new_path.
std::recursive_mutex m_diagnostic_mutex
bool FindSourceFile(const FileSpec &orig_spec, FileSpec &new_spec)
Finds a source file given a file spec using the module source path remappings (if any).
void FindFunctions(llvm::ArrayRef< LookupInfo > lookup_infos, const CompilerDeclContext &parent_decl_ctx, const ModuleFunctionSearchOptions &options, SymbolContextList &sc_list)
Find functions by a vector of lookup infos.
UUID m_uuid
Each module is assumed to have a unique identifier to help match it up to debug symbols.
llvm::sys::TimePoint m_mod_time
The modification time for this module when it was created.
lldb::CompUnitSP GetCompileUnitAtIndex(size_t idx)
uint32_t ResolveSymbolContextForAddress(const Address &so_addr, lldb::SymbolContextItem resolve_scope, SymbolContext &sc, bool resolve_tail_call_address=false)
Resolve the symbol context for the given address.
void SetFileSpecAndObjectName(const FileSpec &file, ConstString object_name)
std::recursive_mutex m_mutex
A mutex to keep this object happy in multi-threaded environments.
static std::recursive_mutex & GetAllocationModuleCollectionMutex()
bool SetLoadAddress(Target &target, lldb::addr_t value, bool value_is_offset, bool &changed)
Set the load address for all sections in a module to be the file address plus slide.
void SetSymbolFileFileSpec(const FileSpec &file)
void RegisterXcodeSDK(llvm::StringRef sdk, llvm::StringRef sysroot)
This callback will be called by SymbolFile implementations when parsing a compile unit that contains ...
void AddPrefixMapSearchDir(FileSpec dir)
Register a directory to be searched for compilation-prefix-map.json on the first call to RemapSourceF...
void FindSymbolsWithNameAndType(ConstString name, lldb::SymbolType symbol_type, SymbolContextList &sc_list)
void CalculateSymbolContext(SymbolContext *sc) override
Reconstruct the object's symbol context into sc.
FileSpec m_symfile_spec
If this path is valid, then this is the file that will be used as the symbol file for this module.
lldb::DataExtractorSP m_extractor_sp
DataExtractor containing the module image, if it was provided at construction time.
StatsDuration m_symtab_index_time
We store a symbol named index time duration here because we might have an object file and a symbol fi...
bool ResolveFileAddress(lldb::addr_t vm_addr, Address &so_addr)
ArchSpec m_arch
The architecture for this module.
void ReportError(const char *format, Args &&...args)
const FileSpec & GetPlatformFileSpec() const
Get accessor for the module platform file specification.
lldb::SymbolVendorUP m_symfile_up
A pointer to the symbol vendor for this module.
const Symbol * FindFirstSymbolWithNameAndType(ConstString name, lldb::SymbolType symbol_type=lldb::eSymbolTypeAny)
Find a symbol in the object file's symbol table.
llvm::DenseMap< llvm::stable_hash, std::unique_ptr< std::once_flag > > m_shown_diagnostics
A set of hashes of all warnings and errors, to avoid reporting them multiple times to the same Debugg...
Module(const FileSpec &file_spec, const ArchSpec &arch, ConstString object_name=ConstString(), lldb::offset_t object_offset=0, const llvm::sys::TimePoint<> &object_mod_time=llvm::sys::TimePoint<>())
Construct with file specification and architecture.
llvm::VersionTuple GetVersion()
void FindAddressesForLine(const lldb::TargetSP target_sp, const FileSpec &file, uint32_t line, Function *function, std::vector< Address > &output_local, std::vector< Address > &output_extern)
Find addresses by file/line.
void LoadPrefixMapsIfNeeded()
Search each registered directory upward for compilation-prefix-map.json and apply any found mappings ...
void DumpSymbolContext(Stream *s) override
Dump the object's symbol context to the stream s.
void FindFunctionSymbols(ConstString name, uint32_t name_type_mask, SymbolContextList &sc_list)
Find a function symbols in the object file's symbol table.
Symtab * GetSymtab(bool can_create=true)
Get the module's symbol table.
size_t GetNumCompileUnits()
Get the number of compile units for this module.
ConstString m_object_name
The name an object within this module that is selected, or empty of the module is represented by m_fi...
void LogMessage(Log *log, const char *format, Args &&...args)
bool MatchesModuleSpec(const ModuleSpec &module_ref)
~Module() override
Destructor.
static size_t GetNumberAllocatedModules()
ObjectFile * GetMemoryObjectFile(const lldb::ProcessSP &process_sp, lldb::addr_t header_addr, Status &error, size_t size_to_read=512)
Load an object file from memory.
TypeSystemMap m_type_system_map
A map of any type systems associated with this module.
void ForEachTypeSystem(llvm::function_ref< bool(lldb::TypeSystemSP)> callback)
Call callback for each TypeSystem in this Module.
lldb::SectionListUP m_sections_up
Unified section list for module that is used by the ObjectFile and ObjectFile instances for the debug...
bool IsExecutable()
Tells whether this module is capable of being the main executable for a process.
FileSpec m_platform_file
The path to the module on the platform on which it is being debugged.
bool MergeArchitecture(const ArchSpec &arch_spec)
Update the ArchSpec to a more specific variant.
bool FileHasChanged() const
const ArchSpec & GetArchitecture() const
Get const accessor for the module architecture.
void LogMessageVerboseBacktrace(Log *log, const char *format, Args &&...args)
bool GetIsDynamicLinkEditor()
std::string GetCacheKey()
Get a unique cache key for the current module.
virtual SectionList * GetSectionList()
Get the unified section list for the module.
llvm::Expected< lldb::TypeSystemSP > GetTypeSystemForLanguage(lldb::LanguageType language)
void Dump(Stream *s)
Dump a description of this object to a Stream.
uint32_t ResolveSymbolContextsForFileSpec(const FileSpec &file_spec, uint32_t line, bool check_inlines, lldb::SymbolContextItem resolve_scope, SymbolContextList &sc_list)
Resolve items in the symbol context for a given file and line.
lldb::ObjectFileSP m_objfile_sp
A shared pointer to the object file parser for this module as it may or may not be shared with the Sy...
void ReportErrorIfModifyDetected(const char *format, Args &&...args)
void FindSymbolsMatchingRegExAndType(const RegularExpression ®ex, lldb::SymbolType symbol_type, SymbolContextList &sc_list, Mangled::NamePreference mangling_preference=Mangled::ePreferDemangled)
std::atomic< bool > m_did_load_symfile
UnwindTable & GetUnwindTable()
Returns a reference to the UnwindTable for this Module.
std::string GetSpecificationDescription() const
Get the module path and object name.
UnwindTable m_unwind_table
Table of FuncUnwinders objects created for this Module's functions.
const FileSpec & GetFileSpec() const
Get const accessor for the module file specification.
bool IsLoadedInTarget(Target *target)
Tells whether this module has been loaded in the target passed in.
void GetDescription(llvm::raw_ostream &s, lldb::DescriptionLevel level=lldb::eDescriptionLevelFull)
bool m_first_file_changed_log
void SymbolIndicesToSymbolContextList(Symtab *symtab, std::vector< uint32_t > &symbol_indexes, SymbolContextList &sc_list)
llvm::DenseSet< ConstString > m_prefix_map_search_dirs
Directories registered via AddPrefixMapSearchDir, searched lazily on the first call to RemapSourceFil...
const llvm::sys::TimePoint & GetModificationTime() const
virtual void SectionFileAddressesChanged()
Notify the module that the file addresses for the Sections have been updated.
std::atomic< bool > m_did_load_objfile
bool LoadScriptingResourceInTarget(Target *target, Status &error)
void FindTypes(const TypeQuery &query, TypeResults &results)
Find types using a type-matching object that contains all search parameters.
bool SetArchitecture(const ArchSpec &new_arch)
SectionList * GetUnifiedSectionList()
StatsDuration m_symtab_parse_time
See if the module was modified after it was initially opened.
void ParseAllDebugSymbols()
A debugging function that will cause everything in a module to be parsed.
A plug-in interface definition class for object file parsers.
virtual bool SetLoadAddress(Target &target, lldb::addr_t value, bool value_is_offset)
Sets the load address for an entire module, assuming a rigid slide of sections, if possible in the im...
virtual void Dump(Stream *s)=0
Dump a description of this object to a Stream.
static lldb::ObjectFileSP FindPlugin(const lldb::ModuleSP &module_sp, const FileSpec *file_spec, lldb::offset_t file_offset, lldb::offset_t file_size, lldb::DataExtractorSP extractor_sp, lldb::offset_t &data_offset)
Find a ObjectFile plug-in that can parse file_spec.
virtual bool IsStripped()=0
Detect if this object file has been stripped of local symbols.
Symtab * GetSymtab(bool can_create=true)
Gets the symbol table for the currently selected architecture (and object for archives).
virtual bool IsExecutable() const =0
Tells whether this object file is capable of being the main executable for a process.
virtual void ClearSymtab()
Frees the symbol table.
virtual FileSpec & GetFileSpec()
Get accessor to the object file specification.
virtual void CreateSections(SectionList &unified_section_list)=0
virtual void SectionFileAddressesChanged()
Notify the ObjectFile that the file addresses in the Sections for this module have been changed.
static ModuleSpecList GetModuleSpecifications(const FileSpec &file, lldb::offset_t file_offset, lldb::offset_t file_size, lldb::DataExtractorSP=lldb::DataExtractorSP())
virtual UUID GetUUID()=0
Gets the UUID for this object file.
virtual bool GetIsDynamicLinkEditor()
Return true if this file is a dynamic link editor (dyld)
llvm::StringRef GetText() const
Access the regular expression text.
virtual bool LoadScriptingModule(const char *filename, const LoadScriptOptions &options, lldb_private::Status &error, StructuredData::ObjectSP *module_sp=nullptr, FileSpec extra_search_dir={}, lldb::TargetSP loaded_into_target_sp={})
This is a SearchFilter that restricts the search to a given module.
size_t GetNumSections(uint32_t depth) const
bool DeleteSection(size_t idx)
lldb::SectionSP GetSectionAtIndex(size_t idx) const
"lldb/Core/SourceLocationSpec.h" A source location specifier class.
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
const char * GetData() const
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
llvm::raw_ostream & AsRawOstream()
Returns a raw_ostream that forwards the data to this Stream object.
size_t Indent(llvm::StringRef s="")
Indent the current line in the stream.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
void IndentLess(unsigned amount=2)
Decrement the current indentation level.
void IndentMore(unsigned amount=2)
Increment the current indentation level.
Defines a list of symbol context objects.
bool GetContextAtIndex(size_t idx, SymbolContext &sc) const
Get accessor for a symbol context at index idx.
uint32_t GetSize() const
Get accessor for a symbol context list size.
void SetSymbolAtIndex(size_t idx, Symbol *symbol)
Replace the symbol in the symbol context at index idx.
bool RemoveContextAtIndex(size_t idx)
void Append(const SymbolContext &sc)
Append a new symbol context to the list.
Defines a symbol context baton that can be handed other debug core functions.
lldb::LanguageType GetLanguage() const
Function * function
The Function for a given query.
ConstString GetFunctionName(Mangled::NamePreference preference=Mangled::ePreferDemangled) const
Find a name of the innermost function for the symbol context.
Block * block
The Block for a given query.
lldb::ModuleSP module_sp
The Module for a given query.
CompileUnit * comp_unit
The CompileUnit for a given query.
void Clear(bool clear_target)
Clear the object's state.
bool GetAddressRange(uint32_t scope, uint32_t range_idx, bool use_inline_block_range, AddressRange &range) const
Get the address range contained within a symbol context.
Symbol * symbol
The Symbol for a given query.
lldb::TargetSP target_sp
The Target for a given query.
LineEntry line_entry
The LineEntry for a given query.
virtual size_t ParseTypes(CompileUnit &comp_unit)=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.
virtual void PreloadSymbols()
virtual void FindGlobalVariables(ConstString name, const CompilerDeclContext &parent_decl_ctx, uint32_t max_matches, VariableList &variables)
virtual Symtab * GetSymtab(bool can_create=true)=0
virtual size_t ParseFunctions(CompileUnit &comp_unit)=0
virtual size_t ParseBlocksRecursive(Function &func)=0
virtual lldb::CompUnitSP GetCompileUnitAtIndex(uint32_t idx)=0
virtual void FindTypes(const TypeQuery &query, TypeResults &results)
Find types using a type-matching object that contains all search parameters.
virtual void FindFunctions(const Module::LookupInfo &lookup_info, const CompilerDeclContext &parent_decl_ctx, bool include_inlines, SymbolContextList &sc_list)
virtual size_t ParseVariablesForContext(const SymbolContext &sc)=0
virtual ObjectFile * GetObjectFile()=0
virtual void ResetStatistics()
Reset the statistics for the symbol file.
virtual uint32_t ResolveSymbolContext(const Address &so_addr, lldb::SymbolContextItem resolve_scope, SymbolContext &sc)=0
virtual void Dump(Stream &s)=0
static void DownloadSymbolFileAsync(const UUID &uuid)
Locate the symbol file for the given UUID on a background thread.
static SymbolVendor * FindPlugin(const lldb::ModuleSP &module_sp, Stream *feedback_strm)
bool ValueIsAddress() const
Address & GetAddressRef()
lldb::SymbolType GetType() const
Symbol * SymbolAtIndex(size_t idx)
void ForEachSymbolContainingFileAddress(lldb::addr_t file_addr, std::function< bool(Symbol *)> const &callback)
Symbol * FindSymbolAtFileAddress(lldb::addr_t file_addr)
Symbol * FindSymbolContainingFileAddress(lldb::addr_t file_addr)
ObjectFile * GetObjectFile() const
uint32_t AppendSymbolIndexesMatchingRegExAndType(const RegularExpression ®ex, lldb::SymbolType symbol_type, std::vector< uint32_t > &indexes, Mangled::NamePreference name_preference=Mangled::ePreferDemangled)
Debugger & GetDebugger() const
lldb::PlatformSP GetPlatform()
A class that contains all state required for type lookups.
This class tracks the state and results of a TypeQuery.
Represents UUID's of various sizes.
#define LLDB_INVALID_ADDRESS
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
@ eLoadScriptFromSymFileFalse
@ eLoadScriptFromSymFileWarn
std::string toString(FormatterBytecode::OpCodes op)
std::shared_ptr< lldb_private::Function > FunctionSP
ScriptLanguage
Script interpreter types.
std::shared_ptr< lldb_private::TypeSystem > TypeSystemSP
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
std::shared_ptr< lldb_private::Platform > PlatformSP
LanguageType
Programming language type.
@ eLanguageTypeUnknown
Unknown or invalid language value.
@ eLanguageTypeObjC
Objective-C.
@ eLanguageTypeC_plus_plus
ISO C++:1998.
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::Section > SectionSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::DataExtractor > DataExtractorSP
std::shared_ptr< lldb_private::Module > ModuleSP
std::shared_ptr< lldb_private::CompileUnit > CompUnitSP
bool IsValid() const
Check if a line entry object is valid.
void ApplyFileMappings(lldb::TargetSP target_sp)
Apply file mappings from target.source-map to the LineEntry's file.
Options used by Module::FindFunctions.
bool include_inlines
Include inlined functions.
bool include_symbols
Include the symbol table.
UserID(lldb::user_id_t uid=LLDB_INVALID_UID)
Construct with optional user ID.
lldb::user_id_t GetID() const
Get accessor for the user ID.