Home
last modified time | relevance | path

Searched refs:exe_module_sp (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp33 const ModuleSpec &module_spec, ModuleSP &exe_module_sp, in ResolveExecutable() argument
74 return GetCachedExecutable(resolved_module_spec, exe_module_sp, in ResolveExecutable()
95 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
117exe_module_sp, module_search_paths_ptr, nullptr, nullptr); in ResolveExecutable()
122 if (error.Fail() || !exe_module_sp || !exe_module_sp->GetObjectFile()) { in ResolveExecutable()
123 exe_module_sp.reset(); in ResolveExecutable()
139 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
143 if (exe_module_sp && exe_module_sp->GetObjectFile()) in ResolveExecutable()
152 if (error.Fail() || !exe_module_sp) { in ResolveExecutable()
H A DTargetList.cpp304 ModuleSP exe_module_sp; in CreateTargetInternal() local
309 error = platform_sp->ResolveExecutable(module_spec, exe_module_sp, in CreateTargetInternal()
315 if (error.Success() && exe_module_sp) { in CreateTargetInternal()
316 if (exe_module_sp->GetObjectFile() == nullptr) { in CreateTargetInternal()
329 target_sp->SetExecutableModule(exe_module_sp, load_dependent_files); in CreateTargetInternal()
331 exe_module_sp->GetFileSpec().GetPath(resolved_bundle_exe_path, in CreateTargetInternal()
334 exe_module_sp->PreloadSymbols(); in CreateTargetInternal()
H A DPlatform.cpp767 lldb::ModuleSP &exe_module_sp, in ResolveExecutable() argument
773 error = ModuleList::GetSharedModule(module_spec, exe_module_sp, in ResolveExecutable()
785 error = ModuleList::GetSharedModule(arch_module_spec, exe_module_sp, in ResolveExecutable()
789 if (error.Success() && exe_module_sp) in ResolveExecutable()
802 lldb::ModuleSP &exe_module_sp, in ResolveRemoteExecutable() argument
817 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveRemoteExecutable()
821 if (exe_module_sp && exe_module_sp->GetObjectFile()) in ResolveRemoteExecutable()
823 exe_module_sp.reset(); in ResolveRemoteExecutable()
833 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveRemoteExecutable()
838 if (exe_module_sp && exe_module_sp->GetObjectFile()) in ResolveRemoteExecutable()
[all …]
H A DProcess.cpp3002 ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); in CompleteAttach() local
3006 exe_module_sp ? exe_module_sp->GetFileSpec() : FileSpec(), in CompleteAttach()
3017 ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); in CompleteAttach() local
3021 exe_module_sp ? exe_module_sp->GetFileSpec() : FileSpec(), in CompleteAttach()
3049 ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); in CompleteAttach() local
3054 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str() in CompleteAttach()
H A DTarget.cpp2413 ModuleSP exe_module_sp(target->GetExecutableModule()); in ImageSearchPathsChanged() local
2414 if (exe_module_sp) in ImageSearchPathsChanged()
2415 target->SetExecutableModule(exe_module_sp, eLoadDependentsYes); in ImageSearchPathsChanged()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp167 ModuleSP exe_module_sp = target->GetExecutableModule(); in DoExecute() local
174 if (exe_module_sp == nullptr && !target->GetProcessLaunchInfo().GetExecutableFile()) { in DoExecute()
233 if (exe_module_sp) in DoExecute()
235 exe_module_sp->GetPlatformFileSpec(), false); in DoExecute()
239 if (exe_module_sp) in DoExecute()
241 exe_module_sp->GetPlatformFileSpec(), true); in DoExecute()
269 if (!exe_module_sp) in DoExecute()
270 exe_module_sp = target->GetExecutableModule(); in DoExecute()
271 if (!exe_module_sp) { in DoExecute()
276 exe_module_sp->GetArchitecture().GetArchitectureName(); in DoExecute()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp175 DebugMapModule(const ModuleSP &exe_module_sp, uint32_t cu_idx, in DebugMapModule() argument
180 m_exe_module_wp(exe_module_sp), m_cu_idx(cu_idx) {} in DebugMapModule()
191 ModuleSP exe_module_sp(m_exe_module_wp.lock()); in GetSymbolFile() local
192 if (exe_module_sp) { in GetSymbolFile()
208 ObjectFile *exe_objfile = exe_module_sp->GetObjectFile(); in GetSymbolFile()
209 SymbolFile *exe_symfile = exe_module_sp->GetSymbolFile(); in GetSymbolFile()
212 oso_symfile->SetDebugMapModule(exe_module_sp); in GetSymbolFile()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp255 lldb::ModuleSP exe_module_sp = GetTarget().GetExecutableModule(); in DoLoadCore() local
256 if (!exe_module_sp) { in DoLoadCore()
264 exe_module_sp = GetTarget().GetOrCreateModule(exe_module_spec, in DoLoadCore()
266 if (exe_module_sp) in DoLoadCore()
267 GetTarget().SetExecutableModule(exe_module_sp, eLoadDependentsNo); in DoLoadCore()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp385 ModuleSP exe_module_sp = target->GetExecutableModule(); in Attach() local
388 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str() in Attach()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h1007 lldb::ModuleSP &exe_module_sp,
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp3574 ModuleSP exe_module_sp = target->GetExecutableModule(); in GetTarget() local
3576 if (exe_module_sp == nullptr) { in GetTarget()