Home
last modified time | relevance | path

Searched refs:target_modules (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/binutils/
H A DMakefile.tpl507 FOR target_modules +] \
509 ENDFOR target_modules +]
565 [+ FOR target_modules +]
639 FOR target_modules +] \
641 ENDFOR target_modules +]
693 FOR target_modules +] \
695 ENDFOR target_modules +]
1019 [+ FOR target_modules +]
1130 [+ ENDFOR target_modules +]
1433 ENDFOR target_modules +]
[all …]
H A DChangeLog301 * Makefile.def (target_modules): Add libgcc.
306 lang_env_dependencies to loop over target_modules.
623 * Makefile.def (target_modules): Add libgcc-math target module.
772 * Makefile.def (target_modules): Add libgcc-math target module.
1189 * Makefile.def (target_modules): Add libssp.
1402 * Makefile.def (target_modules): Remove "stage", now unnecessary.
1487 * Makefile.def (target_modules): Remove stage parameter,
2517 * Makefile.def (target_modules) [libiberty]: Don't stage.
2534 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
3254 * Makefile.def (target_modules) [libffi]: Allow installation.
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp38 const ModuleList &target_modules = target.GetImages(); in CreateInstance() local
39 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in CreateInstance()
40 const size_t num_modules = target_modules.GetSize(); in CreateInstance()
42 Module *module_pointer = target_modules.GetModulePointerAtIndexUnlocked(i); in CreateInstance()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DSearchFilter.cpp464 const ModuleList &target_modules = m_target_sp->GetImages(); in Search() local
465 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in Search()
467 const size_t num_modules = target_modules.GetSize(); in Search()
469 Module *module = target_modules.GetModulePointerAtIndexUnlocked(i); in Search()
606 const ModuleList &target_modules = m_target_sp->GetImages(); in Search() local
607 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in Search()
609 const size_t num_modules = target_modules.GetSize(); in Search()
611 Module *module = target_modules.GetModulePointerAtIndexUnlocked(i); in Search()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp362 const ModuleList &target_modules = target.GetImages(); in GetObjCVersion() local
363 std::lock_guard<std::recursive_mutex> gaurd(target_modules.GetMutex()); in GetObjCVersion()
365 size_t num_images = target_modules.GetSize(); in GetObjCVersion()
367 ModuleSP module_sp = target_modules.GetModuleAtIndexUnlocked(i); in GetObjCVersion()
H A DAppleObjCTrampolineHandler.cpp455 const ModuleList &target_modules = target.GetImages(); in InitializeVTableSymbols() local
456 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in InitializeVTableSymbols()
457 size_t num_modules = target_modules.GetSize(); in InitializeVTableSymbols()
461 target_modules.GetModuleAtIndexUnlocked(i))) { in InitializeVTableSymbols()
462 m_objc_module_sp = target_modules.GetModuleAtIndexUnlocked(i); in InitializeVTableSymbols()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp2336 const ModuleList &target_modules = target->GetImages(); in DoExecute() local
2337 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in DoExecute()
2338 const size_t num_modules = target_modules.GetSize(); in DoExecute()
2348 target_modules.GetModulePointerAtIndexUnlocked(image_idx))) in DoExecute()
2430 const ModuleList &target_modules = target->GetImages(); in DoExecute() local
2432 const size_t num_modules = target_modules.GetSize(); in DoExecute()
2440 target_modules.GetModulePointerAtIndexUnlocked(i), in DoExecute()
3957 const ModuleList &target_modules = target->GetImages(); in DoExecute() local
3959 const size_t num_modules = target_modules.GetSize(); in DoExecute()
3963 target_modules.GetModulePointerAtIndexUnlocked(i); in DoExecute()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp3199 const ModuleList &target_modules = GetTarget().GetImages(); in CompleteAttach() local
3200 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in CompleteAttach()
3201 size_t num_modules = target_modules.GetSize(); in CompleteAttach()
3205 ModuleSP module_sp(target_modules.GetModuleAtIndexUnlocked(i)); in CompleteAttach()