35#include "llvm/Support/ThreadPool.h"
41#ifdef ENABLE_DEBUG_PRINTF
43#define DEBUG_PRINTF(fmt, ...) printf(fmt, ##__VA_ARGS__)
45#define DEBUG_PRINTF(fmt, ...)
84 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
93 const ImageInfo &image_info,
bool can_create,
bool *did_create_ptr) {
95 *did_create_ptr =
false;
105 if (target_triple.getOS() == llvm::Triple::IOS &&
106 target_triple.getEnvironment() == llvm::Triple::MacABI) {
116 !module_sp->GetUUID().IsValid()) {
119 if (module_sp->GetModificationTime() !=
124 if (module_sp || !can_create)
132 HostInfo::GetArchitecture().IsCompatibleMatch(target.
GetArchitecture())) {
145 std::optional<uint64_t> size;
152 image_info = HostInfo::GetSharedCacheImageInfo(module_spec.
GetUUID(),
156 image_info = HostInfo::GetSharedCacheImageInfo(
160 image_info = HostInfo::GetSharedCacheImageInfo(
178 if (!module_sp || module_sp->GetObjectFile() ==
nullptr) {
179 llvm::Expected<ModuleSP> module_sp_or_err =
m_process->ReadModuleFromMemory(
181 if (
auto err = module_sp_or_err.takeError()) {
183 "Failed to load module from memory: {0}");
186 module_sp = *module_sp_or_err;
190 *did_create_ptr = (
bool)module_sp;
196 const std::vector<lldb::addr_t> &solib_addresses) {
197 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
203 LLDB_LOGF(log,
"Removing %" PRId64
" modules.",
204 (uint64_t)solib_addresses.size());
208 for (
addr_t solib_addr : solib_addresses) {
213 if (module_to_remove.get()) {
214 LLDB_LOGF(log,
"Removing module at address 0x%" PRIx64, solib_addr);
222 if (solib_addr == (*pos).address) {
232 if (unloaded_module_list.
GetSize() > 0) {
236 log,
"DynamicLoaderDarwin::UnloadModules");
238 m_process->GetTarget().GetImages().Remove(unloaded_module_list);
249 std::lock_guard<std::recursive_mutex> guard(target_modules.
GetMutex());
255 if (module_sp && module_sp != dyld_sp) {
257 unloaded_modules_list.
Append(module_sp);
261 if (unloaded_modules_list.
GetSize() != 0) {
265 log,
"DynamicLoaderDarwin::UnloadAllImages");
277 bool changed =
false;
280 ObjectFile *image_object_file =
module->GetObjectFile();
281 if (image_object_file) {
284 std::vector<uint32_t> inaccessible_segment_indexes;
287 const size_t num_segments = info.
segments.size();
288 for (
size_t i = 0; i < num_segments; ++i) {
294 if (info.
segments[i].maxprot == 0) {
295 inaccessible_segment_indexes.push_back(i);
297 const addr_t new_section_load_addr =
299 static ConstString g_section_name_LINKEDIT(
"__LINKEDIT");
306 const bool warn_multiple =
307 section_sp->GetName() != g_section_name_LINKEDIT;
312 LLDB_LOGF(log,
"%s: Omitting zero-size segment %s",
314 info.
segments[i].name.AsCString(
""));
318 if (info.
segments[i].vmsize != section_sp->GetByteSize())
320 "%s: In-memory segment size for %s is 0x%" PRIx64
321 " but file segment size is 0x%" PRIx64,
323 info.
segments[i].name.AsCString(
""),
324 info.
segments[i].vmsize, section_sp->GetByteSize());
326 changed =
m_process->GetTarget().SetSectionLoadAddress(
327 section_sp, new_section_load_addr, warn_multiple);
338 if (changed && !inaccessible_segment_indexes.empty()) {
339 for (uint32_t i = 0; i < inaccessible_segment_indexes.size(); ++i) {
340 const uint32_t seg_idx = inaccessible_segment_indexes[i];
345 static ConstString g_pagezero_section_name(
"__PAGEZERO");
346 if (g_pagezero_section_name == section_sp->GetName()) {
351 m_process->AddInvalidMemoryRegion(pagezero_range);
372 bool changed =
false;
374 ObjectFile *image_object_file =
module->GetObjectFile();
375 if (image_object_file) {
378 const size_t num_segments = info.
segments.size();
379 for (
size_t i = 0; i < num_segments; ++i) {
383 const addr_t old_section_load_addr =
385 if (
m_process->GetTarget().SetSectionUnloaded(
386 section_sp, old_section_load_addr))
390 llvm::formatv(
"unable to find and unload segment named "
391 "'{0}' in '{1}' in macosx dynamic loader plug-in",
392 info.
segments[i].name.AsCString(
"<invalid>"),
409 image_details->GetAsDictionary()->GetValueForKey(
"images");
410 if (images_sp.get() ==
nullptr)
413 image_infos.resize(images_sp->GetAsArray()->GetSize());
415 for (
size_t i = 0; i < image_infos.size(); i++) {
417 images_sp->GetAsArray()->GetItemAtIndex(i);
418 if (image_sp.get() ==
nullptr || image_sp->GetAsDictionary() ==
nullptr)
422 if (!image->
HasKey(
"load_address") ||
423 !image->
HasKey(
"pathname") ||
424 !image->
HasKey(
"mach_header") ||
425 image->
GetValueForKey(
"mach_header")->GetAsDictionary() ==
nullptr ||
426 !image->
HasKey(
"segments") ||
432 image_infos[i].address =
434 image_infos[i].file_spec.SetFile(
436 FileSpec::Style::native);
440 image_infos[i].header.magic =
442 image_infos[i].header.cputype =
444 image_infos[i].header.cpusubtype =
446 image_infos[i].header.filetype =
449 if (image->
HasKey(
"min_version_os_name")) {
450 std::string os_name =
454 if (os_name ==
"macosx")
455 image_infos[i].os_type = llvm::Triple::MacOSX;
456 else if (os_name ==
"ios" || os_name ==
"iphoneos")
457 image_infos[i].os_type = llvm::Triple::IOS;
458 else if (os_name ==
"tvos")
459 image_infos[i].os_type = llvm::Triple::TvOS;
460 else if (os_name ==
"watchos")
461 image_infos[i].os_type = llvm::Triple::WatchOS;
462 else if (os_name ==
"bridgeos")
463 image_infos[i].os_type = llvm::Triple::BridgeOS;
464 else if (os_name ==
"driverkit")
465 image_infos[i].os_type = llvm::Triple::DriverKit;
466 else if (os_name ==
"xros")
467 image_infos[i].os_type = llvm::Triple::XROS;
468 else if (os_name ==
"maccatalyst") {
469 image_infos[i].os_type = llvm::Triple::IOS;
470 image_infos[i].os_env = llvm::Triple::MacABI;
471 }
else if (os_name ==
"iossimulator") {
472 image_infos[i].os_type = llvm::Triple::IOS;
473 image_infos[i].os_env = llvm::Triple::Simulator;
474 }
else if (os_name ==
"tvossimulator") {
475 image_infos[i].os_type = llvm::Triple::TvOS;
476 image_infos[i].os_env = llvm::Triple::Simulator;
477 }
else if (os_name ==
"watchossimulator") {
478 image_infos[i].os_type = llvm::Triple::WatchOS;
479 image_infos[i].os_env = llvm::Triple::Simulator;
480 }
else if (os_name ==
"xrsimulator") {
481 image_infos[i].os_type = llvm::Triple::XROS;
482 image_infos[i].os_env = llvm::Triple::Simulator;
485 if (image->
HasKey(
"min_version_os_sdk")) {
486 image_infos[i].min_version_os_sdk =
496 image_infos[i].header.flags =
499 image_infos[i].header.flags = 0;
502 image_infos[i].header.ncmds =
505 image_infos[i].header.ncmds = 0;
507 if (mh->
HasKey(
"sizeofcmds"))
508 image_infos[i].header.sizeofcmds =
511 image_infos[i].header.sizeofcmds = 0;
515 uint32_t segcount = segments->
GetSize();
516 for (
size_t j = 0; j < segcount; j++) {
534 if (seg->
HasKey(
"initprot"))
545 if (seg->
HasKey(
"nsects"))
551 image_infos[i].segments.push_back(
segment);
554 image_infos[i].uuid.SetFromStringRef(
564 const size_t num_sections = image_infos[i].segments.size();
565 for (
size_t k = 0; k < num_sections; ++k) {
568 if ((image_infos[i].segments[k].fileoff == 0 &&
569 image_infos[i].segments[k].filesize > 0) ||
570 (image_infos[i].segments[k].name ==
"__TEXT")) {
571 image_infos[i].slide =
572 image_infos[i].address - image_infos[i].segments[k].vmaddr;
583 std::vector<std::pair<ImageInfo, ModuleSP>> &images) {
591 const size_t images_size = images.size();
592 for (
size_t i = 0; i < images_size; i++) {
593 const auto &image_info = images[i].first;
594 if (image_info.header.filetype == llvm::MachO::MH_DYLINKER) {
599 if (target_arch.
GetTriple().getEnvironment() == llvm::Triple::Simulator &&
600 image_info.os_type != llvm::Triple::OSType::MacOSX) {
606 if (image_info.header.filetype == llvm::MachO::MH_EXECUTE) {
613 ModuleSP exe_module_sp = images[exe_idx].second;
615 LLDB_LOGF(log,
"Found executable module: %s",
616 exe_module_sp->GetFileSpec().GetPath().c_str());
623 auto exe_triple = exe_module_sp->GetArchitecture().GetTriple();
624 if (target_arch.
GetTriple().isArm64e() &&
625 exe_triple.getArch() == llvm::Triple::aarch64 &&
626 !exe_triple.isArm64e()) {
636 triple.setArchName(exe_triple.getArchName());
645 ModuleSP dyld_sp = images[dyld_idx].second;
648 dyld_sp->GetFileSpec().GetPath().c_str());
658 if (image_info.
header.filetype == llvm::MachO::MH_DYLINKER) {
659 const bool can_create =
true;
676 auto log_err = [log](llvm::StringLiteral err_msg) -> std::nullopt_t {
683 return log_err(
"Couldn't retrieve DYLD module. Cannot get `start` symbol.");
686 dyld_sp->FindFirstSymbolWithNameAndType(
ConstString(
"_dyld_start"));
688 return log_err(
"Cannot find `start` symbol in DYLD module.");
704std::vector<std::pair<DynamicLoaderDarwin::ImageInfo, ModuleSP>>
707 const auto size = image_infos.size();
708 std::vector<std::pair<DynamicLoaderDarwin::ImageInfo, ModuleSP>> images(size);
709 auto LoadImage = [&](
size_t i, ImageInfo::collection::const_iterator it) {
710 const auto &image_info = *it;
711 images[i] = std::make_pair(
714 auto it = image_infos.begin();
715 bool is_parallel_load =
m_process->GetTarget().GetParallelModuleLoad();
716 if (is_parallel_load) {
718 for (
size_t i = 0; i < size; ++i, ++it) {
719 taskGroup.async(LoadImage, i, it);
723 for (
size_t i = 0; i < size; ++i, ++it) {
732 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
738 std::vector<std::pair<ImageInfo, ModuleSP>> &images) {
739 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
746 for (uint32_t idx = 0; idx < images.size(); ++idx) {
747 auto &image_info = images[idx].first;
748 const auto &image_module_sp = images[idx].second;
750 LLDB_LOGF(log,
"Adding new image at address=0x%16.16" PRIx64
".",
752 image_info.PutToLog(log);
756 if (image_module_sp) {
757 ObjectFile *objfile = image_module_sp->GetObjectFile();
764 if (commpage_section) {
766 image_info.GetArchitecture());
770 if (!commpage_image_module_sp) {
776 if (!commpage_image_module_sp ||
777 commpage_image_module_sp->GetObjectFile() ==
nullptr) {
778 llvm::Expected<ModuleSP> module_sp_or_err =
779 m_process->ReadModuleFromMemory(image_info.file_spec,
781 if (
auto err = module_sp_or_err.takeError()) {
783 "Failed to read module from memory: {0}");
789 commpage_image_module_sp = *module_sp_or_err;
790 bool changed =
false;
795 image_info.load_stop_id =
m_process->GetStopID();
816 ArchSpec dyld_spec = image_info.GetArchitecture();
817 auto &dyld_triple = dyld_spec.
GetTriple();
818 if ((dyld_triple.getEnvironment() == llvm::Triple::MacABI &&
819 dyld_triple.getOS() == llvm::Triple::IOS) ||
820 (dyld_triple.getEnvironment() == llvm::Triple::Simulator &&
821 (dyld_triple.getOS() == llvm::Triple::IOS ||
822 dyld_triple.getOS() == llvm::Triple::TvOS ||
823 dyld_triple.getOS() == llvm::Triple::WatchOS ||
824 dyld_triple.getOS() == llvm::Triple::XROS)))
825 image_module_sp->MergeArchitecture(dyld_spec);
829 if (loaded_module_list.
GetSize() > 0) {
832 "DynamicLoaderDarwin::ModulesDidLoad");
833 m_process->GetTarget().ModulesDidLoad(loaded_module_list);
855 if (module_sp.get() ==
nullptr && sym_ctx.
function)
857 if (module_sp.get() ==
nullptr)
861 return objc_runtime !=
nullptr &&
869 LLDB_LOGF(log,
"\t\t%16s [0x%16.16" PRIx64
" - 0x%16.16" PRIx64
")",
874 "\t\t%16s [0x%16.16" PRIx64
" - 0x%16.16" PRIx64
") slide = 0x%" PRIx64,
882 if (
os_env == llvm::Triple::MacABI &&
os_type == llvm::Triple::IOS) {
889 if (
os_env == llvm::Triple::Simulator &&
891 os_type == llvm::Triple::WatchOS ||
os_type == llvm::Triple::XROS)) {
893 "-apple-" + llvm::Triple::getOSTypeName(
os_type) +
904 const size_t num_segments =
segments.size();
905 for (
size_t i = 0; i < num_segments; ++i) {
917 LLDB_LOG(log,
"uuid={} path='{}' (UNLOADED)",
uuid.GetAsString(),
922 for (uint32_t i = 0; i <
segments.size(); ++i)
928 DEBUG_PRINTF(
"DynamicLoaderDarwin::%s() process state = %s\n", __FUNCTION__,
937 DEBUG_PRINTF(
"DynamicLoaderDarwin::%s(%s)\n", __FUNCTION__,
973 StackFrame *current_frame = thread.GetStackFrameAtIndex(0).get();
978 TargetSP target_sp(thread.CalculateTarget());
980 if (current_symbol !=
nullptr) {
981 std::vector<Address> addresses;
988 const ModuleList &images = target_sp->GetImages();
994 Address addr = context.GetFunctionOrSymbolAddress();
995 addresses.push_back(addr);
999 LLDB_LOGF(log,
"Found a trampoline target symbol at 0x%" PRIx64
".",
1006 reexported_symbols);
1008 if (context.symbol) {
1009 const Symbol *actual_symbol =
1011 if (actual_symbol) {
1013 if (actual_symbol_addr.
IsValid()) {
1014 addresses.push_back(actual_symbol_addr);
1019 "Found a re-exported symbol: %s at 0x%" PRIx64
".",
1032 Address addr = context.GetFunctionOrSymbolAddress();
1033 addresses.push_back(addr);
1037 LLDB_LOGF(log,
"Found an indirect target symbol at 0x%" PRIx64
".",
1046 const Symbol *actual_symbol =
1048 if (actual_symbol) {
1053 "Found a re-exported symbol: %s pointing to: %s at 0x%" PRIx64
1058 addresses.push_back(
1064 if (addresses.size() > 0) {
1067 std::vector<lldb::addr_t> load_addrs;
1068 for (
Address address : addresses) {
1073 addr_t resolved_addr = thread.GetProcess()->ResolveIndirectFunction(
1074 &symbol_address,
error);
1075 if (
error.Success()) {
1076 load_addrs.push_back(resolved_addr);
1078 "ResolveIndirectFunction found resolved target for "
1079 "%s at 0x%" PRIx64
".",
1083 load_addrs.push_back(address.GetLoadAddress(target_sp.get()));
1086 thread_plan_sp = std::make_shared<ThreadPlanRunToAddress>(
1087 thread, load_addrs, stop_others);
1094 static const char *g_branch_island_pattern =
"\\.island\\.?[0-9]*$";
1097 bool is_branch_island = g_branch_island_regex.
Execute(current_name);
1098 if (!thread_plan_sp && is_branch_island) {
1099 thread_plan_sp = std::make_shared<ThreadPlanStepInstruction>(
1103 LLDB_LOG(log,
"Stepping one instruction over branch island: '{0}'.",
1107 LLDB_LOGF(log,
"Could not find symbol for step through.");
1110 return thread_plan_sp;
1119 if (!trampoline_name)
1122 static const char *resolver_name_regex =
"(_gc|_non_gc|\\$[A-Za-z0-9\\$]+)$";
1123 std::string equivalent_regex_buf(
"^");
1124 equivalent_regex_buf.append(trampoline_name.
GetCString());
1125 equivalent_regex_buf.append(resolver_name_regex);
1129 equivalent_symbols);
1139 m_process->GetTarget().GetImages().FindModules(module_spec, module_list);
1141 if (module_list.
GetSize() == 1) {
1156 module_sp->FindSymbolsWithNameAndType(
ConstString(
"pthread_getspecific"),
1172 if (!thread_sp || !module_sp)
1175 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
1178 if (!module_sp->ResolveFileAddress(tls_file_addr, tls_addr))
1190 auto evaluate_tls_address = [
this, &thread_sp, &clang_void_ptr_type](
1192 llvm::ArrayRef<addr_t> args) ->
addr_t {
1196 *thread_sp, func_ptr, clang_void_ptr_type, args, options));
1201 exe_ctx, thread_plan_sp, options, execution_errors);
1205 thread_plan_sp->GetReturnValueObject()) {
1227 const uint32_t addr_size =
m_process->GetAddressByteSize();
1228 uint8_t buf[
sizeof(
addr_t) * 3];
1230 const size_t tls_data_size = addr_size * 3;
1232 tls_addr, buf, tls_data_size,
error,
true);
1233 if (bytes_read != tls_data_size ||
error.Fail())
1242 if (tls_thunk != 0) {
1247 const addr_t tls_data = evaluate_tls_address(
1248 thunk_load_addr, llvm::ArrayRef<addr_t>(tls_load_addr));
1262 auto tls_pos = tid_pos->second.find(key);
1263 if (tls_pos != tid_pos->second.end()) {
1264 return tls_pos->second + tls_offset;
1268 if (pthread_getspecific_addr.
IsValid()) {
1269 const addr_t tls_data = evaluate_tls_address(pthread_getspecific_addr,
1270 llvm::ArrayRef<addr_t>(key));
1272 return tls_data + tls_offset;
1280 bool use_new_spi_interface =
true;
1283 if (!version.empty()) {
1284 using namespace llvm;
1285 const Triple::OSType os_type =
1288 auto OlderThan = [os_type, version](llvm::Triple::OSType o,
1289 llvm::VersionTuple v) ->
bool {
1290 return os_type == o && version < v;
1293 if (OlderThan(Triple::MacOSX, VersionTuple(10, 12)))
1294 use_new_spi_interface =
false;
1296 if (OlderThan(Triple::IOS, VersionTuple(10)))
1297 use_new_spi_interface =
false;
1299 if (OlderThan(Triple::TvOS, VersionTuple(10)))
1300 use_new_spi_interface =
false;
1302 if (OlderThan(Triple::WatchOS, VersionTuple(3)))
1303 use_new_spi_interface =
false;
1311 use_new_spi_interface =
false;
1318 use_new_spi_interface =
false;
1321 if (use_new_spi_interface)
1323 log,
"DynamicLoaderDarwin::UseDYLDSPI: Use new DynamicLoader plugin");
1326 log,
"DynamicLoaderDarwin::UseDYLDSPI: Use old DynamicLoader plugin");
1328 return use_new_spi_interface;
static llvm::raw_ostream & error(Stream &strm)
#define DEBUG_PRINTF(fmt,...)
#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,...)
#define LLDB_LOG_VERBOSE(log,...)
A section + offset based address class.
lldb::addr_t GetLoadAddress(Target *target) const
Get the load address.
bool SetLoadAddress(lldb::addr_t load_addr, Target *target, bool allow_section_end=false)
Set the address to represent load_addr.
lldb::ModuleSP GetModule() const
Get accessor for the module for this address.
lldb::addr_t GetOffset() const
Get the section relative offset value.
bool IsValid() const
Check if the object state is valid.
An architecture specification class.
llvm::Triple & GetTriple()
Architecture triple accessor.
bool SetTriple(const llvm::Triple &triple)
Architecture triple setter.
void MergeFrom(const ArchSpec &other)
Merges fields from another ArchSpec into this ArchSpec.
bool IsCompatibleMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, CompatibleMatch).
const char * GetArchitectureName() const
Returns a static string representing the current architecture.
Generic representation of a type in a programming language.
A uniqued constant string class.
const char * GetCString() const
Get the string value as a C string.
const char * AsCString(const char *value_if_empty) const
Get the string value as a C string.
static void ReportWarning(std::string message, std::optional< lldb::user_id_t > debugger_id=std::nullopt, std::once_flag *once=nullptr)
Report warning events.
static llvm::ThreadPoolInterface & GetThreadPool()
Shared thread pool. Use only with ThreadPoolTaskGroup.
lldb_private::ConstString name
void PutToLog(lldb_private::Log *log, lldb::addr_t slide) const
lldb::addr_t GetThreadLocalData(const lldb::ModuleSP module, const lldb::ThreadSP thread, lldb::addr_t tls_file_addr) override
Retrieves the per-module TLS block for a given thread.
bool UpdateDYLDImageInfoFromNewImageInfo(ImageInfo &image_info)
lldb::ModuleSP GetDYLDModule()
bool AlwaysRelyOnEHUnwindInfo(lldb_private::SymbolContext &sym_ctx) override
Ask if the eh_frame information for the given SymbolContext should be relied on even when it's the fi...
virtual bool NeedToDoInitialImageFetch()=0
ImageInfo::collection m_dyld_image_infos
virtual void DoInitialImageFetch()=0
DynamicLoaderDarwin(lldb_private::Process *process)
std::recursive_mutex m_mutex
uint32_t m_dyld_image_infos_stop_id
void PrivateProcessStateChanged(lldb_private::Process *process, lldb::StateType state)
void DidLaunch() override
Called after attaching a process.
lldb::ModuleWP m_dyld_module_wp
lldb::ModuleSP FindTargetModuleForImageInfo(const ImageInfo &image_info, bool can_create, bool *did_create_ptr)
virtual bool SetNotificationBreakpoint()=0
bool AddModulesUsingImageInfos(ImageInfo::collection &image_infos)
void FindEquivalentSymbols(const lldb_private::Symbol *original_symbol, lldb_private::ModuleList &module_list, lldb_private::SymbolContextList &equivalent_symbols) override
Some dynamic loaders provide features where there are a group of symbols "equivalent to" a given symb...
void DidAttach() override
Called after attaching a process.
lldb::ThreadPlanSP GetStepThroughTrampolinePlan(lldb_private::Thread &thread, bool stop_others) override
Provides a plan to step through the dynamic loader trampoline for the current state of thread.
std::vector< std::pair< ImageInfo, lldb::ModuleSP > > PreloadModulesFromImageInfos(const ImageInfo::collection &image_infos)
lldb::ModuleWP m_libpthread_module_wp
bool JSONImageInformationIntoImageInfo(lldb_private::StructuredData::ObjectSP image_details, ImageInfo::collection &image_infos)
bool UpdateImageLoadAddress(lldb_private::Module *module, ImageInfo &info)
std::optional< lldb_private::Address > GetStartAddress() override
Return the start address in the dynamic loader module.
void UpdateSpecialBinariesFromPreloadedModules(std::vector< std::pair< ImageInfo, lldb::ModuleSP > > &images)
void PrivateInitialize(lldb_private::Process *process)
~DynamicLoaderDarwin() override
lldb_private::Address GetPthreadSetSpecificAddress()
void Clear(bool clear_process)
bool AddModulesUsingPreloadedModules(std::vector< std::pair< ImageInfo, lldb::ModuleSP > > &images)
void SetDYLDModule(lldb::ModuleSP &dyld_module_sp)
ThreadIDToTLSMap m_tid_to_tls_map
static bool UseDYLDSPI(lldb_private::Process *process)
lldb_private::Address m_pthread_getspecific_addr
bool UnloadModuleSections(lldb_private::Module *module, ImageInfo &info)
lldb::ModuleSP GetPThreadLibraryModule()
void UnloadImages(const std::vector< lldb::addr_t > &solib_addresses)
virtual bool DidSetNotificationBreakpoint()=0
Process * m_process
The process that this dynamic loader plug-in is tracking.
DynamicLoader(Process *process)
Construct with a process.
virtual bool GetSharedCacheInformation(lldb::addr_t &base_address, UUID &uuid, LazyBool &using_shared_cache, LazyBool &private_shared_cache, lldb_private::FileSpec &shared_cache_path, std::optional< uint64_t > &size)
Get information about the shared cache for a process, if possible.
virtual void UnloadSections(const lldb::ModuleSP module)
Removes the loaded sections from the target in module.
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
const ConstString & GetFilename() const
Filename string const get accessor.
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
ConstString GetPathAsConstString(bool denormalize=true) const
Get the full path as a ConstString.
void SetFilename(ConstString filename)
Filename string set accessor.
static FileSystem & Instance()
const Address & GetAddress() const
Return the address of the function (its entry point).
void PutCString(const char *cstr)
ConstString GetName(NamePreference preference=ePreferDemangled) const
Best name get accessor.
lldb::SymbolSharedCacheUse GetSharedCacheBinaryLoading() const
A collection class for Module objects.
std::recursive_mutex & GetMutex() const
lldb::ModuleSP FindFirstModule(const ModuleSpec &module_spec) const
Finds the first module whose file specification matches module_spec.
bool AppendIfNeeded(const lldb::ModuleSP &new_module, bool notify=true)
Append a module to the module list, if it is not already there.
void FindSymbolsWithNameAndType(ConstString name, lldb::SymbolType symbol_type, SymbolContextList &sc_list) const
static ModuleListProperties & GetGlobalModuleListProperties()
bool Remove(const lldb::ModuleSP &module_sp, bool notify=true)
Remove a module from the module list.
lldb::ModuleSP GetModuleAtIndex(size_t idx) const
Get the module shared pointer for the module at index idx.
void Append(const lldb::ModuleSP &module_sp, bool notify=true)
Append a module to the module list.
void FindSymbolsMatchingRegExAndType(const RegularExpression ®ex, lldb::SymbolType symbol_type, SymbolContextList &sc_list) const
ModuleIterable Modules() const
size_t GetSize() const
Gets the size of the module list.
void LogUUIDAndPaths(Log *log, const char *prefix_cstr)
void SetObjectSize(uint64_t object_size)
ConstString & GetObjectName()
ArchSpec & GetArchitecture()
void SetObjectOffset(uint64_t object_offset)
A class that describes an executable image and its associated object and symbol files.
virtual bool IsModuleObjCLibrary(const lldb::ModuleSP &module_sp)=0
static ObjCLanguageRuntime * Get(Process &process)
A plug-in interface definition class for object file parsers.
virtual lldb::addr_t GetFileOffset() const
Returns the offset into a file at which this object resides.
virtual FileSpec & GetFileSpec()
Get accessor to the object file specification.
virtual SectionList * GetSectionList(bool update_module_section_list=true)
Gets the section list for the currently selected architecture (and object for archives).
virtual lldb::addr_t GetByteSize() const
A plug-in interface definition class for debugging a process.
Range< lldb::addr_t, lldb::addr_t > LoadRange
virtual llvm::VersionTuple GetHostOSVersion()
Sometimes the connection to a process can detect the host OS version that the process is running on.
virtual bool IsLiveDebugSession() const
Check if a process is a live debug session, or a corefile/post-mortem.
Target & GetTarget()
Get the target object pointer for this module.
bool Execute(llvm::StringRef string, llvm::SmallVectorImpl< llvm::StringRef > *matches=nullptr) const
Execute a regular expression match using the compiled regular expression that is already in this obje...
static lldb::TypeSystemClangSP GetForTarget(Target &target, std::optional< IsolatedASTKind > ast_kind=DefaultAST, bool create_on_demand=true)
Returns the scratch TypeSystemClang for the given target.
lldb::SectionSP FindSectionByName(ConstString section_dstr) const
lldb::offset_t GetFileOffset() const
This base class provides an interface to stack frames.
virtual const SymbolContext & GetSymbolContext(lldb::SymbolContextItem resolve_scope)
Provide a SymbolContext for this StackFrame's current pc value.
ObjectSP GetItemAtIndex(size_t idx) const
ObjectSP GetValueForKey(llvm::StringRef key) const
bool HasKey(llvm::StringRef key) const
std::shared_ptr< Object > ObjectSP
Defines a list of symbol context objects.
bool GetContextAtIndex(size_t idx, SymbolContext &sc) const
Get accessor for a symbol context at index idx.
Defines a symbol context baton that can be handed other debug core functions.
Function * function
The Function for a given query.
Symbol * symbol
The Symbol for a given query.
bool IsTrampoline() const
Address & GetAddressRef()
ConstString GetName() const
lldb::SymbolType GetType() const
Address GetAddress() const
Symbol * ResolveReExportedSymbol(Target &target) const
Symbol * CalculateSymbolContextSymbol() override
Module * GetExecutableModulePointer()
lldb::ModuleSP GetOrCreateModule(const ModuleSpec &module_spec, bool notify, Status *error_ptr=nullptr)
Find a binary on the system and return its Module, or return an existing Module that is already in th...
bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr, uint32_t stop_id=SectionLoadHistory::eStopIDNow, bool allow_section_end=false)
bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform=false, bool merge=true)
Set the architecture for this target.
lldb::ModuleSP GetExecutableModule()
Gets the module for the main executable.
virtual size_t ReadMemory(const Address &addr, void *dst, size_t dst_len, Status &error, bool force_live_memory=false, lldb::addr_t *load_addr_ptr=nullptr, bool *did_read_live_memory=nullptr)
const ModuleList & GetImages() const
Get accessor for the images for this process.
const ArchSpec & GetArchitecture() const
void SetExecutableModule(lldb::ModuleSP &module_sp, LoadDependentFiles load_dependent_files=eLoadDependentsDefault)
Set the main executable module.
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.
const char * StateAsCString(lldb::StateType state)
Converts a StateType to a C string.
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
StateType
Process and Thread States.
@ eStateUnloaded
Process is object is valid, but not currently loaded.
@ eStateConnected
Process is connected to remote debug services, but not launched or attached to anything yet.
@ eStateDetached
Process has been detached and can't be examined.
@ eStateStopped
Process or thread is stopped and can be examined.
@ eStateSuspended
Process or thread is in a suspended state as far as the debugger is concerned while other processes o...
@ eStateRunning
Process or thread is running and can't be examined.
@ eStateLaunching
Process is in the process of launching.
@ eStateAttaching
Process is currently trying to attach.
@ eStateExited
Process has exited and can't be examined.
@ eStateStepping
Process or thread is in the process of stepping and can not be examined.
@ eStateCrashed
Process or thread has crashed and can be examined.
ExpressionResults
The results of expression evaluation.
std::shared_ptr< lldb_private::TypeSystemClang > TypeSystemClangSP
std::shared_ptr< lldb_private::Section > SectionSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::Module > ModuleSP
lldb_private::ArchSpec GetArchitecture() const
std::vector< ImageInfo > collection
lldb_private::UUID uuid
UUID for this dylib if it has one, else all zeros.
lldb::addr_t address
Address of mach header for this dylib.
std::string min_version_os_sdk
LC_VERSION_MIN_... SDK.
lldb::addr_t slide
The amount to slide all segments by if there is a global slide.
llvm::MachO::mach_header header
The mach header for this image.
llvm::Triple::OSType os_type
LC_VERSION_MIN_... load command os type.
std::vector< Segment > segments
All segment vmaddr and vmsize pairs for this executable (from memory of inferior).
const Segment * FindSegment(lldb_private::ConstString name) const
lldb_private::FileSpec file_spec
Resolved path for this dylib.
llvm::Triple::EnvironmentType os_env
LC_VERSION_MIN_... load command os environment.
uint32_t load_stop_id
The process stop ID that the sections for this image were loaded.
void PutToLog(lldb_private::Log *log) const
const UUID & GetUUID() const
lldb::DataExtractorSP GetExtractor()