Home
last modified time | relevance | path

Searched refs:ModuleSP (Results 1 – 25 of 212) sorted by relevance

123456789

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleList.h143 void Append(const lldb::ModuleSP &module_sp, bool notify = true);
158 const lldb::ModuleSP &module_sp,
178 bool ReplaceModule(const lldb::ModuleSP &old_module_sp,
179 const lldb::ModuleSP &new_module_sp);
223 lldb::ModuleSP GetModuleAtIndex(size_t idx) const;
237 lldb::ModuleSP GetModuleAtIndexUnlocked(size_t idx) const;
324 lldb::ModuleSP FindModule(const Module *module_ptr) const;
331 lldb::ModuleSP FindModule(const UUID &uuid) const;
452 static bool RemoveSharedModule(lldb::ModuleSP &module_sp);
457 static lldb::ModuleSP FindSharedModule(const UUID &uuid);
[all …]
H A DModuleChild.h26 ModuleChild(const lldb::ModuleSP &module_sp);
45 lldb::ModuleSP GetModule() const;
52 void SetModule(const lldb::ModuleSP &module_sp);
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp39 ModuleSP module_sp; in SBModule()
94 ModuleSP module_sp(GetSP()); in IsFileBacked()
109 ModuleSP module_sp(GetSP()); in GetFileSpec()
120 ModuleSP module_sp(GetSP()); in GetPlatformFileSpec()
132 ModuleSP module_sp(GetSP()); in SetPlatformFileSpec()
145 ModuleSP module_sp(GetSP()); in GetRemoteInstallFileSpec()
154 ModuleSP module_sp(GetSP()); in SetRemoteInstallFileSpec()
166 ModuleSP module_sp(GetSP()); in GetUUIDBytes()
176 ModuleSP module_sp(GetSP()); in GetUUIDString()
217 ModuleSP module_sp(GetSP()); in ResolveFileAddress()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DDynamicLoader.h198 virtual lldb::addr_t GetThreadLocalData(const lldb::ModuleSP module, in GetThreadLocalData()
208 virtual lldb::ModuleSP LoadModuleAtAddress(const lldb_private::FileSpec &file,
275 static lldb::ModuleSP LoadBinaryWithUUIDAndAddress(
335 lldb::ModuleSP FindModuleViaTarget(const FileSpec &file);
339 lldb::ModuleSP GetTargetExecutable();
349 virtual void UpdateLoadedSections(lldb::ModuleSP module,
356 void UpdateLoadedSectionsCommon(lldb::ModuleSP module, lldb::addr_t base_addr,
362 virtual void UnloadSections(const lldb::ModuleSP module);
365 void UnloadSectionsCommon(const lldb::ModuleSP module);
368 GetSectionListFromModule(const lldb::ModuleSP module) const;
H A DInstrumentationRuntime.h34 lldb::ModuleSP m_runtime_module;
52 lldb::ModuleSP GetRuntimeModuleSP() { return m_runtime_module; } in GetRuntimeModuleSP()
54 void SetRuntimeModuleSP(lldb::ModuleSP module_sp) { in SetRuntimeModuleSP()
69 virtual bool CheckIfRuntimeIsValid(const lldb::ModuleSP module_sp) = 0;
H A DModuleCache.h52 std::function<Status(const lldb::ModuleSP &, const FileSpec &)>;
58 lldb::ModuleSP &cached_module_sp, bool *did_create_ptr);
66 const ModuleSpec &module_spec, lldb::ModuleSP &cached_module_sp,
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp247 const ModuleSP &module_sp, in ReplaceEquivalent()
261 ModuleSP test_module_sp(m_modules[idx]); in ReplaceEquivalent()
322 ModuleSP module_sp(*pos); in RemoveImpl()
430 ModuleSP module_sp; in GetModuleAtIndexUnlocked()
494 for (const ModuleSP &module_sp : m_modules) in FindFunctions()
501 for (const ModuleSP &module_sp : m_modules) in FindCompileUnits()
548 ModuleSP module_sp; in FindModule()
566 ModuleSP module_sp; in FindModule()
622 ModuleSP module_sp; in FindFirstModule()
626 ModuleSP module_sp(*pos); in FindFirstModule()
[all …]
H A DDynamicLoader.cpp76 ModuleSP DynamicLoader::GetTargetExecutable() { in GetTargetExecutable()
78 ModuleSP executable = target.GetExecutableModule(); in GetTargetExecutable()
115 void DynamicLoader::UpdateLoadedSectionsCommon(ModuleSP module, in UpdateLoadedSectionsCommon()
123 void DynamicLoader::UnloadSections(const ModuleSP module) { in UnloadSections()
127 void DynamicLoader::UnloadSectionsCommon(const ModuleSP module) { in UnloadSectionsCommon()
152 ModuleSP DynamicLoader::FindModuleViaTarget(const FileSpec &file) { in FindModuleViaTarget()
165 ModuleSP DynamicLoader::LoadModuleAtAddress(const FileSpec &file, in LoadModuleAtAddress()
169 if (ModuleSP module_sp = FindModuleViaTarget(file)) { in LoadModuleAtAddress()
188 ModuleSP DynamicLoader::LoadBinaryWithUUIDAndAddress( in LoadBinaryWithUUIDAndAddress()
192 ModuleSP memory_module_sp; in LoadBinaryWithUUIDAndAddress()
[all …]
H A DModuleChild.cpp13 ModuleChild::ModuleChild(const lldb::ModuleSP &module_sp) in ModuleChild()
24 lldb::ModuleSP ModuleChild::GetModule() const { return m_module_wp.lock(); } in GetModule()
26 void ModuleChild::SetModule(const lldb::ModuleSP &module_sp) { in SetModule()
H A DAddress.cpp94 ModuleSP module_sp(address.GetModule()); in GetByteOrderAndAddressSize()
285 ModuleSP Address::GetModule() const { in GetModule()
286 lldb::ModuleSP module_sp; in GetModule()
502 ModuleSP module_sp(GetModule()); in Dump()
709 ModuleSP module_sp(GetModule()); in Dump()
854 return ModuleSP(); in CalculateSymbolContextModule()
954 ModuleSP a_module_sp(a.GetModule()); in CompareModulePointerAndOffset()
955 ModuleSP b_module_sp(b.GetModule()); in CompareModulePointerAndOffset()
992 ModuleSP lhs_module_sp(lhs.GetModule()); in operator <()
993 ModuleSP rhs_module_sp(rhs.GetModule()); in operator <()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.h37 lldb::ModuleSP module);
41 lldb::ModuleSP module);
44 lldb::ModuleSP module);
46 lldb::ModuleSP module);
49 const llvm::APSInt &constant, lldb::ModuleSP module);
53 lldb::ModuleSP module);
H A DDWARFLocationExpression.cpp108 static DWARFExpression MakeLocationExpressionInternal(lldb::ModuleSP module, in MakeLocationExpressionInternal()
134 std::optional<int32_t> relative_offset, lldb::ModuleSP module) { in MakeRegisterBasedLocationExpressionInternal()
159 lldb::ModuleSP module) { in MakeRegisterBasedLocationExpressionInternal()
168 llvm::codeview::RegisterId reg, lldb::ModuleSP module) { in MakeEnregisteredLocationExpression()
173 llvm::codeview::RegisterId reg, int32_t offset, lldb::ModuleSP module) { in MakeRegRelLocationExpression()
185 llvm::StringRef fpo_program, int32_t offset, lldb::ModuleSP module) { in MakeVFrameRelLocationExpression()
205 uint16_t section, uint32_t offset, ModuleSP module) { in MakeGlobalLocationExpression()
229 ModuleSP module) { in MakeConstantLocationExpression()
264 lldb::ModuleSP module) { in MakeEnregisteredLocationExpressionForComposite()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.h51 lldb::addr_t GetThreadLocalData(const lldb::ModuleSP module,
58 lldb::ModuleSP LoadModuleAtAddress(const lldb_private::FileSpec &file,
122 void UpdateLoadedSections(lldb::ModuleSP module, lldb::addr_t link_map_addr,
129 void UnloadSections(const lldb::ModuleSP module) override;
153 lldb::ModuleSP LoadInterpreterModule();
169 void ResolveExecutableModule(lldb::ModuleSP &module_sp);
H A DDynamicLoaderPOSIXDYLD.cpp91 ModuleSP executable_sp = GetTargetExecutable(); in DidAttach()
171 ModuleSP executable; in DidLaunch()
340 ModuleSP interpreter = LoadInterpreterModule(); in SetRendezvousBreakpoint()
417 ModuleSP executable = GetTargetExecutable(); in RefreshModules()
449 ModuleSP module_sp = in RefreshModules()
550 if (ModuleSP module_sp = m_process->ReadModuleFromMemory( in LoadVDSO()
557 ModuleSP DynamicLoaderPOSIXDYLD::LoadInterpreterModule() { in LoadInterpreterModule()
634 ModuleSP executable = GetTargetExecutable(); in LoadAllCurrentModules()
644 ModuleSP module_sp = in LoadAllCurrentModules()
801 lldb::ModuleSP &module_sp) { in ResolveExecutableModule()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.h45 lldb::addr_t GetThreadLocalData(const lldb::ModuleSP module,
91 void UpdateLoadedSections(lldb::ModuleSP module, lldb::addr_t link_map_addr,
98 void UnloadSections(const lldb::ModuleSP module) override;
124 lldb::ModuleSP GetTargetExecutable();
131 GetSectionListFromModule(const lldb::ModuleSP module) const;
H A DDynamicLoaderHexagonDYLD.cpp53 ModuleSP module = proc->GetTarget().GetExecutableModule(); in LLDB_PLUGIN_DEFINE()
115 ModuleSP executable; in DidAttach()
163 ModuleSP DynamicLoaderHexagonDYLD::GetTargetExecutable() { in GetTargetExecutable()
165 ModuleSP executable = target.GetExecutableModule(); in GetTargetExecutable()
178 ModuleSP module_sp(new Module(module_spec)); in GetTargetExecutable()
207 void DynamicLoaderHexagonDYLD::UpdateLoadedSections(ModuleSP module, in UpdateLoadedSections()
241 void DynamicLoaderHexagonDYLD::UnloadSections(const ModuleSP module) { in UnloadSections()
358 ModuleSP module_sp = in RefreshModules()
467 ModuleSP executable = GetTargetExecutable(); in LoadAllCurrentModules()
473 ModuleSP module_sp = in LoadAllCurrentModules()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.h65 bool IsModuleObjCLibrary(const lldb::ModuleSP &module_sp) override;
67 bool ReadObjCLibrary(const lldb::ModuleSP &module_sp) override;
76 lldb::ModuleSP GetObjCModule();
113 static bool AppleIsModuleObjCLibrary(const lldb::ModuleSP &module_sp);
116 lldb::ModuleSP &objc_module_sp);
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp824 return ModuleSP(); in GetModule()
1011 ModuleSP module_sp; in IsValid()
1033 ModuleSP module_sp; in GetName()
1043 ModuleSP module_sp; in GetDisplayTypeName()
1053 ModuleSP module_sp; in GetPointerType()
1065 ModuleSP module_sp; in GetPointeeType()
1077 ModuleSP module_sp; in GetReferenceType()
1089 ModuleSP module_sp; in GetTypedefedType()
1101 ModuleSP module_sp; in GetDereferencedType()
1113 ModuleSP module_sp; in GetUnqualifiedType()
[all …]
H A DSymbolVendor.cpp26 SymbolVendor *SymbolVendor::FindPlugin(const lldb::ModuleSP &module_sp, in FindPlugin()
60 SymbolVendor::SymbolVendor(const lldb::ModuleSP &module_sp) in SymbolVendor()
65 ModuleSP module_sp(GetModule()); in AddSymbolFileRepresentation()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.h32 void OnLoadModule(lldb::ModuleSP module_sp, const ModuleSpec module_spec,
45 lldb::addr_t GetLoadAddress(lldb::ModuleSP executable);
48 std::map<lldb::ModuleSP, lldb::addr_t> m_loaded_modules;
H A DDynamicLoaderWindowsDYLD.cpp62 void DynamicLoaderWindowsDYLD::OnLoadModule(lldb::ModuleSP module_sp, in OnLoadModule()
87 ModuleSP module_sp = resolved_addr.GetModule(); in OnUnloadModule()
97 lldb::addr_t DynamicLoaderWindowsDYLD::GetLoadAddress(ModuleSP executable) { in GetLoadAddress()
124 ModuleSP executable = GetTargetExecutable(); in DidAttach()
154 ModuleSP executable = GetTargetExecutable(); in DidLaunch()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.h20 ObjectContainerMachOFileset(const lldb::ModuleSP &module_sp,
26 ObjectContainerMachOFileset(const lldb::ModuleSP &module_sp,
43 CreateInstance(const lldb::ModuleSP &module_sp, lldb::DataBufferSP &data_sp,
48 const lldb::ModuleSP &module_sp, lldb::WritableDataBufferSP data_sp,
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpressionList.h31 DWARFExpressionList(lldb::ModuleSP module_sp, in DWARFExpressionList()
37 DWARFExpressionList(lldb::ModuleSP module_sp, DWARFExpression expr, in DWARFExpressionList()
81 lldb::ModuleSP new_module_sp,
114 void SetModule(const lldb::ModuleSP &module) { m_module_wp = module; } in SetModule()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBModule.h307 explicit SBModule(const lldb::ModuleSP &module_sp);
309 ModuleSP GetSP() const;
311 void SetSP(const ModuleSP &module_sp);
313 lldb::ModuleSP m_opaque_sp;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/wasm-DYLD/
H A DDynamicLoaderWasmDYLD.cpp68 lldb::ModuleSP DynamicLoaderWasmDYLD::LoadModuleAtAddress( in LoadModuleAtAddress()
71 if (ModuleSP module_sp = DynamicLoader::LoadModuleAtAddress( in LoadModuleAtAddress()
75 if (ModuleSP module_sp = m_process->ReadModuleFromMemory(file, base_addr)) { in LoadModuleAtAddress()

123456789