Home
last modified time | relevance | path

Searched refs:exe_module (Results 1 – 16 of 16) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp49 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in LLDB_PLUGIN_DEFINE() local
50 if (exe_module) { in LLDB_PLUGIN_DEFINE()
51 ObjectFile *object_file = exe_module->GetObjectFile(); in LLDB_PLUGIN_DEFINE()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp422 Module *exe_module = item->GetExecutableModulePointer(); in FindTargetWithExecutableAndArchitecture() local
423 if (!exe_module || in FindTargetWithExecutableAndArchitecture()
424 !FileSpec::Match(exe_file_spec, exe_module->GetFileSpec())) in FindTargetWithExecutableAndArchitecture()
428 exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()); in FindTargetWithExecutableAndArchitecture()
H A DTarget.cpp165 Module *exe_module = GetExecutableModulePointer(); in Dump() local
166 if (exe_module) in Dump()
167 s->PutCString(exe_module->GetFileSpec().GetFilename().GetCString()); in Dump()
2484 Module *exe_module = GetExecutableModulePointer(); in GetEntryPointAddress() local
2487 const bool has_primary_executable = exe_module && exe_module->GetObjectFile(); in GetEntryPointAddress()
2489 Address entry_addr = exe_module->GetObjectFile()->GetEntryPointAddress(); in GetEntryPointAddress()
2515 exe_module->GetFileSpec().GetFilename().GetStringRef() + "\"", in GetEntryPointAddress()
H A DProcess.cpp2465 Module *exe_module = GetTarget().GetExecutableModulePointer(); in Launch() local
2466 if (!exe_module) { in Launch()
2473 exe_module->GetFileSpec().GetPath(local_exec_file_path, in Launch()
2475 exe_module->GetPlatformFileSpec().GetPath(platform_exec_file_path, in Launch()
2477 if (FileSystem::Instance().Exists(exe_module->GetFileSpec())) { in Launch()
2493 error = WillLaunch(exe_module); in Launch()
2501 error = DoLaunch(exe_module, launch_info); in Launch()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObjectRegister.cpp202 if (auto *exe_module = target->GetExecutableModulePointer()) { in GetCompilerTypeImpl() local
204 exe_module->GetTypeSystemForLanguage(eLanguageTypeC); in GetCompilerTypeImpl()
H A DFormatEntity.cpp1164 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in Format() local
1165 if (exe_module) { in Format()
1166 if (DumpFile(s, exe_module->GetFileSpec(), (FileKind)entry.number)) in Format()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h72 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
H A DScriptedProcess.cpp158 Status ScriptedProcess::DoLaunch(Module *exe_module, in DoLaunch() argument
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp150 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in RemoteLaunch() local
151 if (exe_module) in RemoteLaunch()
152 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in RemoteLaunch()
978 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in GetDescription() local
980 if (exe_module) in GetDescription()
981 exe_name = exe_module->GetFileSpec().GetFilename().AsCString(); in GetDescription()
H A DSBTarget.cpp296 if (Module *exe_module = target_sp->GetExecutableModulePointer()) in LaunchSimple() local
297 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), in LaunchSimple()
380 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local
381 if (exe_module) in Launch()
382 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch()
440 Module *exe_module = target_sp->GetExecutableModulePointer(); in Launch() local
441 if (exe_module) in Launch()
442 launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); in Launch()
595 Module *exe_module = target_sp->GetExecutableModulePointer(); in GetExecutable() local
596 if (exe_module) in GetExecutable()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1002 Module *exe_module = target->GetExecutableModulePointer(); in DoExecute() local
1003 if (exe_module) { in DoExecute()
1004 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec(); in DoExecute()
1009 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture(); in DoExecute()
H A DCommandObjectTarget.cpp66 Module *exe_module = target->GetExecutableModulePointer(); in DumpTargetInfo() local
69 if (exe_module) in DumpTargetInfo()
70 exe_valid = exe_module->GetFileSpec().GetPath(exe_path, sizeof(exe_path)); in DumpTargetInfo()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp1391 Module *exe_module = GetObjectFile()->GetModule().get(); in LinkOSOAddress() local
1393 if (addr_module == exe_module) in LinkOSOAddress()
1410 return exe_module->ResolveFileAddress(exe_file_addr, addr); in LinkOSOAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp228 Module *exe_module = target_sp->GetExecutableModulePointer(); in CanDebug() local
229 if (exe_module) { in CanDebug()
230 ObjectFile *exe_objfile = exe_module->GetObjectFile(); in CanDebug()
246 return FileSystem::Instance().Exists(exe_module->GetFileSpec()); in CanDebug()
742 Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module, in DoLaunch() argument
802 ObjectFile *object_file = exe_module->GetObjectFile(); in DoLaunch()
940 exe_module->GetFileSpec().GetFilename().AsCString(), in DoLaunch()
941 exe_module->GetArchitecture().GetArchitectureName()); in DoLaunch()
H A DProcessGDBRemote.h82 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h1009 virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) { in DoLaunch() argument