Home
last modified time | relevance | path

Searched refs:GetImages (Results 1 – 25 of 60) sorted by relevance

123

/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp58 ReadObjCLibraryIfNeeded(process->GetTarget().GetImages()); in AppleObjCRuntime()
232 const ModuleList &modules = process->GetTarget().GetImages(); in GetObjCModule()
246 const ModuleList &modules = m_process->GetTarget().GetImages(); in GetPrintForDebuggerAddr()
330 const ModuleList &modules = m_process->GetTarget().GetImages(); in GetFoundationVersion()
388 for (ModuleSP module_sp : target.GetImages().Modules()) { in GetObjCVersion()
471 target.GetImages().FindSymbolsWithNameAndType(s_method_signature, in CalculateHasNewLiteralsAndIndexing()
474 target.GetImages().FindSymbolsWithNameAndType(s_arclite_method_signature, in CalculateHasNewLiteralsAndIndexing()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueUUID.cpp71 const size_t num_modules = target->GetImages().GetSize(); in AutoComplete()
73 ModuleSP module_sp(target->GetImages().GetModuleAtIndex(i)); in AutoComplete()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp383 (m_module_list.GetSize() > 0) ? m_module_list : target->GetImages(); in DumpLinesInFunctions()
466 if (!GetSymbolContextsForAddress(target->GetImages(), m_options.address, in DumpLinesForAddress()
489 (m_module_list.GetSize() > 0) ? m_module_list : target->GetImages(); in DumpLinesForFile()
557 target->GetImages().FindModules(module_spec, m_module_list); in DoExecute()
567 } else if (target->GetImages().GetSize() == 0) { in DoExecute()
883 target->GetImages().FindModules(module_spec, matching_modules); in FindMatchingFunctions()
890 target->GetImages().FindFunctions(name, eFunctionNameTypeAuto, in FindMatchingFunctions()
905 target->GetImages().FindModules(module_spec, matching_modules); in FindMatchingFunctionSymbols()
911 target->GetImages().FindFunctionSymbols(name, eFunctionNameTypeAuto, in FindMatchingFunctionSymbols()
973 const ModuleList &module_list = target->GetImages(); in DoExecute()
[all …]
H A DCommandObjectTarget.cpp796 target->GetImages().FindGlobalVariables(ConstString(name), UINT32_MAX, in GetVariableCallback()
852 target->GetImages().FindGlobalVariables(regex, UINT32_MAX, in DoExecute()
935 target->GetImages().FindFirstModule(module_spec)); in DoExecute()
957 target->GetImages().FindCompileUnits( in DoExecute()
1817 target->GetImages().FindModules(module_spec, module_list); in FindModulesByName()
1911 target->GetImages()); in DoExecute()
2014 const ModuleList &module_list = target->GetImages(); in DoExecute()
2109 const size_t num_modules = target->GetImages().GetSize(); in DoExecute()
2126 target->GetImages().GetModulePointerAtIndex(image_idx)); in DoExecute()
2243 const ModuleList &module_list = target->GetImages(); in DoExecute()
[all …]
H A DCommandObjectDisassemble.cpp263 for (lldb::ModuleSP module_sp : target.GetImages().Modules()) { in GetContainingAddressRanges()
354 GetSelectedTarget().GetImages().FindFunctions(name, eFunctionNameTypeAuto, in GetNameRanges()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp654 target_sp->GetImages().ResolveSymbolContextForAddress(addr.ref(), scope, in ResolveSymbolContextForAddress()
1559 target_sp->GetImages().AppendIfNeeded(module.GetSP()); in AddModule()
1572 num = target_sp->GetImages().GetSize(); in GetNumModules()
1592 sb_module.SetSP(target_sp->GetImages().FindFirstModule(module_spec)); in FindModule()
1603 target_sp->GetImages().FindCompileUnits(*sb_file_spec, *sb_sc_list); in FindCompileUnits()
1710 module_sp = target_sp->GetImages().GetModuleAtIndex(idx); in GetModuleAtIndex()
1722 return target_sp->GetImages().Remove(module.GetSP()); in RemoveModule()
1767 target_sp->GetImages().FindFunctions(ConstString(name), mask, in FindFunctions()
1789 target_sp->GetImages().FindFunctions(RegularExpression(name_ref), in FindGlobalFunctions()
1793 target_sp->GetImages().FindFunctions( in FindGlobalFunctions()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp215 target.GetImages().ResolveSymbolContextForAddress( in FindLibCppStdFunctionCallableInfo()
256 target.GetImages().ResolveSymbolContextForAddress( in FindLibCppStdFunctionCallableInfo()
361 target_sp->GetImages().ResolveSymbolContextForAddress( in GetStepThroughTrampolinePlan()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp49 process->GetTarget().GetImages().FindFunctions( in InferiorCallMmap()
146 process->GetTarget().GetImages().FindFunctions( in InferiorCallMunmap()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.cpp79 const ModuleList &images = target.GetImages(); in CreateInstance()
104 ReadObjCLibraryIfNeeded(process->GetTarget().GetImages()); in GNUstepObjCRuntime()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp261 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()
H A DDynamicLoader.cpp157 if (ModuleSP module_sp = target.GetImages().FindFirstModule(module_spec)) in FindModuleViaTarget()
283 target.GetImages().AppendIfNeeded(module_sp, false); in LoadBinaryWithUUIDAndAddress()
H A DDebuggerEvents.cpp146 target_sp->GetImages().FindModule(m_module_spec.GetUUID())) { in DoOnRemoval()
/freebsd/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp170 ModuleList &module_list = target.GetImages(); in DidAttach()
176 ModuleList &module_list = target.GetImages(); in DidLaunch()
288 ModuleList &module_list = target.GetImages(); in ReadJITDescriptorImpl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp233 const ModuleList &module_list = m_target->GetImages(); in FindCompleteType()
609 m_target->GetImages().FindTypes(nullptr, query, results); in FindExternalVisibleDecls()
672 for (lldb::ModuleSP image : m_target->GetImages().Modules()) { in FillNamespaceMap()
940 m_target->GetImages().FindFunctions(instance_method_name, in FindObjCMethodDecls()
953 m_target->GetImages().FindFunctions(class_method_name, in FindObjCMethodDecls()
966 m_target->GetImages().FindFunctions(selector_name, in FindObjCMethodDecls()
1408 for (lldb::ModuleSP image : m_target->GetImages().Modules()) { in CompleteNamespaceMap()
H A DClangUtilityFunction.cpp154 target->GetImages().Append(jit_module_sp); in Install()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/wasm-DYLD/
H A DDynamicLoaderWasmDYLD.cpp77 m_process->GetTarget().GetImages().AppendIfNeeded(module_sp); in LoadModuleAtAddress()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/
H A DDynamicLoaderFreeBSDKernel.cpp339 const ModuleList &target_images = target.GetImages(); in LoadImageUsingMemoryModule()
368 ModuleSP existing_module_sp = target.GetImages().FindModule(m_uuid); in LoadImageUsingMemoryModule()
381 target.GetImages().AppendIfNeeded(m_module_sp, false); in LoadImageUsingMemoryModule()
541 ModuleList &modules = m_process->GetTarget().GetImages(); in ParseKmods()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DUtilityFunction.cpp49 process_sp->GetTarget().GetImages().Remove(jit_module_sp); in ~UtilityFunction()
H A DFunctionCaller.cpp61 process_sp->GetTarget().GetImages().Remove(jit_module_sp); in ~FunctionCaller()
117 process->GetTarget().GetImages().Append(jit_module_sp, in WriteFunctionWrapper()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp80 const ModuleList &module_list = m_process->GetTarget().GetImages(); in LoadAllImagesAtFileAddresses()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolContext.cpp825 target.GetImages().FindFirstModule(reexport_module_spec); in FindBestGlobalDataSymbol()
829 target.GetImages().FindFirstModule(reexport_module_spec); in FindBestGlobalDataSymbol()
912 target.GetImages().FindSymbolsWithNameAndType(name, eSymbolTypeAny, in FindBestGlobalDataSymbol()
971 m_target_sp ? m_target_sp->GetImages().FindFirstModule(module_spec) in AddSpecification()
1116 m_target_sp->GetImages().ResolveSymbolContextForAddress( in AddressMatches()
/freebsd/contrib/llvm-project/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp39 for (ModuleSP module_sp : target.GetImages().Modules()) { in LLDB_PLUGIN_DEFINE()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp423 ModuleList &loaded_modules = m_process->GetTarget().GetImages(); in RefreshModules()
507 const ModuleList &images = target.GetImages(); in GetStepThroughTrampolinePlan()
566 m_process->GetTarget().GetImages().AppendIfNeeded(module_sp); in LoadVDSO()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp349 ModuleList &loaded_modules = m_process->GetTarget().GetImages(); in RefreshModules()
420 const ModuleList &images = target.GetImages(); in GetStepThroughTrampolinePlan()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp128 ModuleSP module_sp = target.GetImages().FindFirstModule(module_spec); in SearchCallback()

123