Searched refs:GetModule (Results 1 - 25 of 95) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleChild.h45 lldb::ModuleSP GetModule() const;
H A DValueObjectMemory.h55 lldb::ModuleSP GetModule() override;
H A DValueObjectVariable.h54 lldb::ModuleSP GetModule() override;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DModuleChild.cpp24 lldb::ModuleSP ModuleChild::GetModule() const { return m_module_wp.lock(); } function in class:ModuleChild
H A DAddress.cpp91 ModuleSP module_sp(address.GetModule());
145 ModuleSP module_sp(address.GetModule());
282 ModuleSP Address::GetModule() const { function in class:Address
286 module_sp = section_sp->GetModule();
432 ModuleSP module_sp = section_sp->GetModule();
484 ModuleSP module_sp(GetModule());
689 ModuleSP module_sp(GetModule());
803 ModuleSP module_sp(section_sp->GetModule());
817 return section_sp->GetModule();
825 sc.module_sp = section_sp->GetModule();
[all...]
H A DValueObjectMemory.cpp176 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
215 m_error = value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
231 lldb::ModuleSP ValueObjectMemory::GetModule() { return m_address.GetModule(); } function in class:ValueObjectMemory
H A DValueObjectCast.cpp79 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
H A DValueObjectVariable.cpp202 m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
217 m_value.ConvertToLoadAddress(GetModule().get(), target);
231 value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
321 lldb::ModuleSP ValueObjectVariable::GetModule() { function in class:ValueObjectVariable
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbolContext.i40 module = context.GetModule()
62 lldb::SBModule GetModule ();
88 module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
H A DSBAddress.i117 GetModule() and the following grab individual objects for a given address and
124 OR'ed together to more efficiently retrieve multiple symbol objects.") GetModule;
126 GetModule ();
177 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) that this address resides within.''')
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompileUnit.cpp41 GetModule()->CalculateSymbolContext(sc);
44 ModuleSP CompileUnit::CalculateSymbolContextModule() { return GetModule(); }
49 GetModule()->DumpSymbolContext(s);
149 if (SymbolFile *symfile = GetModule()->GetSymbolFile())
160 if (SymbolFile *symfile = GetModule()->GetSymbolFile())
183 if (SymbolFile *symfile = GetModule()->GetSymbolFile())
263 SymbolContext sc(GetModule());
327 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) {
343 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) {
355 if (SymbolFile *symfile = GetModule()
[all...]
H A DSymbolFile.cpp34 return GetObjectFile()->GetModule()->GetMutex();
37 return m_objfile_sp->GetModule()->GetObjectFile();
46 lldb::ModuleSP module_sp(objfile_sp->GetModule());
93 m_objfile_sp->GetModule()->GetTypeSystemForLanguage(language);
H A DSymbolVendor.cpp68 ModuleSP module_sp(GetModule());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DSectionLoadList.cpp67 ModuleSP module_sp(section->GetModule());
103 ModuleSP module_sp(section->GetModule());
105 ModuleSP curr_module_sp(ats_pos->second->GetModule());
142 ModuleSP module_sp = section_sp->GetModule();
146 section_sp->GetModule()->GetFileSpec());
177 ModuleSP module_sp = section_sp->GetModule();
180 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFBaseDIE.cpp77 lldb::ModuleSP DWARFBaseDIE::GetModule() const { function in class:DWARFBaseDIE
80 return dwarf->GetObjectFile()->GetModule();
H A DSymbolFileDWARF.cpp434 m_context(m_objfile_sp->GetModule()->GetSectionList(), dwo_section_list),
459 m_objfile_sp->GetModule()->GetTypeSystemForLanguage(language);
477 *GetObjectFile()->GetModule(), apple_names, apple_namespaces,
487 DebugNamesDWARFIndex::Create(*GetObjectFile()->GetModule(),
500 std::make_unique<ManualDWARFIndex>(*GetObjectFile()->GetModule(), *this);
545 m_objfile_sp->GetModule()->ReportWarning(
570 m_objfile_sp->GetModule()->ReportWarning(
591 ModuleSP module_sp(m_objfile_sp->GetModule());
690 ModuleSP module_sp(m_objfile_sp->GetModule());
820 ModuleSP module_sp = comp_unit.GetModule();
[all...]
H A DDWARFBaseDIE.h97 lldb::ModuleSP GetModule() const;
H A DSymbolFileDWARFDebugMap.cpp75 ModuleSP oso_module_sp(oso_objfile->GetModule());
353 m_objfile_sp->GetModule()->ReportError(
369 m_objfile_sp->GetModule()->ReportError(
374 m_objfile_sp->GetModule()->ReportError(
379 m_objfile_sp->GetModule()->ReportError(
384 m_objfile_sp->GetModule()->ReportError(
427 obj_file->GetModule()->ReportError(
453 oso_arch.SetTriple(m_objfile_sp->GetModule()
460 obj_file->GetModule(), GetCompUnitInfoIndex(comp_unit_info), oso_file,
582 m_objfile_sp->GetModule(), nullpt
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBSymbolContext.h38 lldb::SBModule GetModule();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DModuleBuilder.h60 llvm::Module *GetModule();
64 /// It is illegal to call methods other than GetModule on the
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBAddress.cpp219 SBModule SBAddress::GetModule() { function in class:SBAddress
220 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBModule, SBAddress, GetModule);
224 sb_module.SetSP(m_opaque_up->GetModule());
314 LLDB_REGISTER_METHOD(lldb::SBModule, SBAddress, GetModule, ());
H A DSBSymbolContext.cpp69 SBModule SBSymbolContext::GetModule() { function in class:SBSymbolContext
70 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBModule, SBSymbolContext, GetModule);
247 LLDB_REGISTER_METHOD(lldb::SBModule, SBSymbolContext, GetModule, ());
H A DSBSection.cpp57 return section_sp && section_sp->GetModule().get() != nullptr;
161 ModuleSP module_sp(section_sp->GetModule());
195 ModuleSP module_sp(section_sp->GetModule());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp137 static_cast<void *>(objfile_up->GetModule().get()),
138 objfile_up->GetModule()->GetSpecificationDescription().c_str(),
316 new Section(GetModule(), // Module to which this section belongs.
355 ModuleSP module_sp = GetModule();
423 ModuleSP module_sp(GetModule());
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DModuleBuilder.cpp98 llvm::Module *GetModule() { function in class:__anon1827::CodeGeneratorImpl
312 llvm::Module *CodeGenerator::GetModule() { function in class:CodeGenerator
313 return static_cast<CodeGeneratorImpl*>(this)->GetModule();

Completed in 170 milliseconds

1234