| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 56 ReadObjCLibraryIfNeeded(process->GetTarget().GetImages()); in AppleObjCRuntime() 224 const ModuleList &modules = process->GetTarget().GetImages(); in GetObjCModule() 238 const ModuleList &modules = m_process->GetTarget().GetImages(); in GetPrintForDebuggerAddr() 322 const ModuleList &modules = m_process->GetTarget().GetImages(); in GetFoundationVersion() 380 for (ModuleSP module_sp : target.GetImages().Modules()) { in GetObjCVersion() 463 target.GetImages().FindSymbolsWithNameAndType(s_method_signature, in CalculateHasNewLiteralsAndIndexing() 466 target.GetImages().FindSymbolsWithNameAndType(s_arclite_method_signature, in CalculateHasNewLiteralsAndIndexing()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionValueUUID.cpp | 71 const size_t num_modules = target->GetImages().GetSize(); in AutoComplete() 73 ModuleSP module_sp(target->GetImages().GetModuleAtIndex(i)); in AutoComplete()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectSource.cpp | 380 (m_module_list.GetSize() > 0) ? m_module_list : target->GetImages(); in DumpLinesInFunctions() 469 if (!GetSymbolContextsForAddress(target->GetImages(), m_options.address, in DumpLinesForAddress() 492 (m_module_list.GetSize() > 0) ? m_module_list : target->GetImages(); in DumpLinesForFile() 568 target->GetImages().FindModules(module_spec, m_module_list); in DoExecute() 578 } else if (target->GetImages().GetSize() == 0) { in DoExecute() 891 target->GetImages().FindModules(module_spec, matching_modules); in FindMatchingFunctions() 898 target->GetImages().FindFunctions(name, eFunctionNameTypeAuto, in FindMatchingFunctions() 914 target->GetImages().FindModules(module_spec, matching_modules); in FindMatchingFunctionSymbols() 920 target->GetImages().FindFunctionSymbols(name, eFunctionNameTypeAuto, in FindMatchingFunctionSymbols() 1014 const ModuleList &module_list = target->GetImages(); in DoExecute() [all …]
|
| H A D | CommandObjectTarget.cpp | 923 target->GetImages().FindFirstModule(module_spec)); in DoExecute() 945 target->GetImages().FindCompileUnits( in DoExecute() 1751 target->GetImages().FindModules(module_spec, module_list); in FindModulesByName() 1996 const ModuleList &module_list = target->GetImages(); in DoExecute() 2086 const size_t num_modules = target->GetImages().GetSize(); in DoExecute() 2162 const ModuleList &module_list = target->GetImages(); in DoExecute() 2238 const ModuleList &target_modules = target->GetImages(); in DoExecute() 2326 const ModuleList &target_modules = target->GetImages(); in DoExecute() 2620 ModuleList &module_list = target->GetImages(); in DoExecute() 2960 module_list_ptr = &target->GetImages(); in DoExecute() [all …]
|
| H A D | CommandObjectDisassemble.cpp | 259 for (lldb::ModuleSP module_sp : target.GetImages().Modules()) { in GetContainingAddressRanges() 330 GetSelectedTarget().GetImages().FindFunctions( in GetNameRanges()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ |
| H A D | CPPLanguageRuntime.cpp | 213 target.GetImages().ResolveSymbolContextForAddress( in FindLibCppStdFunctionCallableInfo() 254 target.GetImages().ResolveSymbolContextForAddress( in FindLibCppStdFunctionCallableInfo() 359 target_sp->GetImages().ResolveSymbolContextForAddress( in GetStepThroughTrampolinePlan()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | InferiorCallPOSIX.cpp | 47 process->GetTarget().GetImages().FindFunctions( in InferiorCallMmap() 141 process->GetTarget().GetImages().FindFunctions( in InferiorCallMunmap()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | DynamicLoader.cpp | 155 ModuleList &modules = target.GetImages(); in LoadModuleAtAddress() 212 target.GetImages().AppendIfNeeded(module_sp); in LoadModuleAtAddress()
|
| H A D | SearchFilter.cpp | 261 for (ModuleSP module_sp : m_target_sp->GetImages().Modules()) { in DoModuleIteration() 425 const ModuleList &target_modules = m_target_sp->GetImages(); in Search() 428 for (ModuleSP module_sp : m_target_sp->GetImages().Modules()) { in Search() 542 for (ModuleSP module_sp : m_target_sp->GetImages().Modules()) { in Search() 740 for (ModuleSP module_sp : m_target_sp->GetImages().Modules()) { in Search()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 173 ModuleList &module_list = target.GetImages(); in DidAttach() 179 ModuleList &module_list = target.GetImages(); in DidLaunch() 291 ModuleList &module_list = target.GetImages(); in ReadJITDescriptorImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBTarget.cpp | 1664 target_sp->GetImages().AppendIfNeeded(module.GetSP()); in AddModule() 1677 num = target_sp->GetImages().GetSize(); in GetNumModules() 1698 sb_module.SetSP(target_sp->GetImages().FindFirstModule(module_spec)); in FindModule() 1710 target_sp->GetImages().FindCompileUnits(*sb_file_spec, *sb_sc_list); in FindCompileUnits() 1776 module_sp = target_sp->GetImages().GetModuleAtIndex(idx); in GetModuleAtIndex() 1788 return target_sp->GetImages().Remove(module.GetSP()); in RemoveModule() 1837 target_sp->GetImages().FindFunctions(ConstString(name), mask, symbols_ok, in FindFunctions() 1866 target_sp->GetImages().FindFunctions( in FindGlobalFunctions() 1885 const ModuleList &module_list = target_sp->GetImages(); in FindFirstType() 1937 ModuleList &images = target_sp->GetImages(); in FindTypes() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.cpp | 72 target.GetImages().ResolveSymbolContextForAddress( in GetTypeInfoFromVTableAddress() 107 target.GetImages().FindTypes(nullptr, ConstString(lookup_name), in GetTypeInfoFromVTableAddress() 557 const ModuleList &modules = m_process->GetTarget().GetImages(); in GetExceptionObjectForThread()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | UtilityFunction.cpp | 54 process_sp->GetTarget().GetImages().Remove(jit_module_sp); in ~UtilityFunction()
|
| H A D | FunctionCaller.cpp | 59 process_sp->GetTarget().GetImages().Remove(jit_module_sp); in ~FunctionCaller() 103 process->GetTarget().GetImages().Append(jit_module_sp, in WriteFunctionWrapper()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTSource.cpp | 239 const ModuleList &module_list = m_target->GetImages(); in FindCompleteType() 615 m_target->GetImages().FindTypes(module_sp.get(), name, exact_match, 1, in FindExternalVisibleDecls() 684 for (lldb::ModuleSP image : m_target->GetImages().Modules()) { in FillNamespaceMap() 989 m_target->GetImages().FindFunctions( in FindObjCMethodDecls() 1002 m_target->GetImages().FindFunctions( in FindObjCMethodDecls() 1015 m_target->GetImages().FindFunctions( in FindObjCMethodDecls() 1657 for (lldb::ModuleSP image : m_target->GetImages().Modules()) { in CompleteNamespaceMap()
|
| H A D | ClangUtilityFunction.cpp | 154 target->GetImages().Append(jit_module_sp); in Install()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/ |
| H A D | DynamicLoaderStatic.cpp | 80 const ModuleList &module_list = m_process->GetTarget().GetImages(); in LoadAllImagesAtFileAddresses()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | SymbolContext.cpp | 817 target.GetImages().FindFirstModule(reexport_module_spec); in FindBestGlobalDataSymbol() 823 target.GetImages().FindFirstModule(reexport_module_spec); in FindBestGlobalDataSymbol() 906 target.GetImages().FindSymbolsWithNameAndType(name, eSymbolTypeAny, in FindBestGlobalDataSymbol() 965 m_target_sp->GetImages().FindFirstModule(module_spec)); in AddSpecification() 1111 m_target_sp->GetImages().ResolveSymbolContextForAddress( in AddressMatches()
|
| H A D | Symbol.cpp | 422 module_sp = target.GetImages().FindFirstModule(module_spec); in ResolveReExportedSymbolInModuleSpec() 428 module_sp = target.GetImages().FindFirstModule(module_spec); in ResolveReExportedSymbolInModuleSpec()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DynamicLoaderPOSIXDYLD.cpp | 421 ModuleList &loaded_modules = m_process->GetTarget().GetImages(); in RefreshModules() 498 const ModuleList &images = target.GetImages(); in GetStepThroughTrampolinePlan() 548 m_process->GetTarget().GetImages().AppendIfNeeded(module_sp); in LoadVDSO()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/MemoryHistory/asan/ |
| H A D | MemoryHistoryASan.cpp | 39 for (ModuleSP module_sp : target.GetImages().Modules()) { in LLDB_PLUGIN_DEFINE()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverAddress.cpp | 133 ModuleSP module_sp = target.GetImages().FindFirstModule(module_spec); in SearchCallback()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 359 ModuleList &loaded_modules = m_process->GetTarget().GetImages(); in RefreshModules() 430 const ModuleList &images = target.GetImages(); in GetStepThroughTrampolinePlan()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | TypeFormat.cpp | 161 const ModuleList &images(target_sp->GetImages()); in FormatObject()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| H A D | ProcessMinidump.cpp | 420 ModuleList &modules = GetTarget().GetImages(); in BuildMemoryRegions() 530 GetTarget().GetImages().Remove(module_sp); in GetOrCreateModule() 609 GetTarget().GetImages().Append(module_sp, true /* notify */); in ReadModuleList()
|