Home
last modified time | relevance | path

Searched refs:GetModule (Results 1 – 25 of 126) sorted by relevance

123456

/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompileUnit.cpp41 GetModule()->CalculateSymbolContext(sc); in CalculateSymbolContext()
49 GetModule()->DumpSymbolContext(s); in DumpSymbolContext()
154 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) in GetLanguage()
165 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) in GetLineTable()
192 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) in GetDebugMacros()
267 SymbolContext sc(GetModule()); in ResolveSymbolContext()
291 GetModule()->GetSymbolFile()->SetLoadDebugInfoEnabled(); in ResolveSymbolContext()
357 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) { in GetIsOptimized()
373 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) { in GetImportedModules()
385 if (SymbolFile *symfile = GetModule()->GetSymbolFile()) in ForEachExternalModule()
[all …]
H A DSymbolFile.cpp36 return GetObjectFile()->GetModule()->GetMutex(); in GetModuleMutex()
45 lldb::ModuleSP module_sp(objfile_sp->GetModule()); in FindPlugin()
182 return m_objfile_sp->GetModule()->GetObjectFile(); in GetMainObjectFile()
234 m_objfile_sp->GetModule()->GetTypeSystemForLanguage(language); in GetTypeSystemForLanguage()
244 ModuleSP module_sp(m_objfile_sp->GetModule()); in GetDebugInfoSize()
/llvm-project-15.0.7/lldb/source/Core/
H A DAddress.cpp92 ModuleSP module_sp(address.GetModule()); in GetByteOrderAndAddressSize()
283 ModuleSP Address::GetModule() const { in GetModule() function in Address
287 module_sp = section_sp->GetModule(); in GetModule()
499 ModuleSP module_sp(GetModule()); in Dump()
704 ModuleSP module_sp(GetModule()); in Dump()
847 return section_sp->GetModule(); in CalculateSymbolContextModule()
948 ModuleSP a_module_sp(a.GetModule()); in CompareModulePointerAndOffset()
949 ModuleSP b_module_sp(b.GetModule()); in CompareModulePointerAndOffset()
986 ModuleSP lhs_module_sp(lhs.GetModule()); in operator <()
987 ModuleSP rhs_module_sp(rhs.GetModule()); in operator <()
[all …]
H A DValueObjectMemory.cpp177 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue()
216 m_error = value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue()
232 lldb::ModuleSP ValueObjectMemory::GetModule() { return m_address.GetModule(); } in GetModule() function in ValueObjectMemory
H A DAddressRange.cpp51 range_sect_sp->GetModule() != addr_sect_sp->GetModule()) in Contains()
184 ModuleSP module_sp(GetBaseAddress().GetModule()); in Dump()
H A DValueObjectVariable.cpp205 m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue()
220 m_value.ConvertToLoadAddress(GetModule().get(), target); in UpdateValue()
234 value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue()
325 lldb::ModuleSP ValueObjectVariable::GetModule() { in GetModule() function in ValueObjectVariable
H A DModuleChild.cpp24 lldb::ModuleSP ModuleChild::GetModule() const { return m_module_wp.lock(); } in GetModule() function in ModuleChild
/llvm-project-15.0.7/lldb/source/Target/
H A DSectionLoadList.cpp68 ModuleSP module_sp(section->GetModule()); in SetSectionLoadAddress()
104 ModuleSP module_sp(section->GetModule()); in SetSectionLoadAddress()
106 ModuleSP curr_module_sp(ats_pos->second->GetModule()); in SetSectionLoadAddress()
143 ModuleSP module_sp = section_sp->GetModule(); in SetSectionUnloaded()
147 section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded()
178 ModuleSP module_sp = section_sp->GetModule(); in SetSectionUnloaded()
181 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded()
/llvm-project-15.0.7/lldb/scripts/android/
H A Dhost_art_bt.py25 if frame.GetModule() and re.match(r'JIT\(.*?\)',
26 frame.GetModule().GetFileSpec().GetFilename()):
72 if frame.GetModule() and re.match(
73 r'JIT\(.*?\)', frame.GetModule().GetFileSpec().GetFilename()):
220 if frame.GetModule():
221 module_name = frame.GetModule().GetFileSpec().GetFilename()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp851 ModuleSP module_sp(die.GetModule()); in ParseFunction()
906 ModuleSP module_sp = comp_unit.GetModule(); in ParseXcodeSDK()
2123 GetObjectFile()->GetModule()->LogMessage( in DeclContextMatchesThisSymbolFile()
2136 GetObjectFile()->GetModule()->LogMessage( in FindGlobalVariables()
2202 GetObjectFile()->GetModule()->LogMessage( in FindGlobalVariables()
2218 GetObjectFile()->GetModule()->LogMessage( in FindGlobalVariables()
2330 GetObjectFile()->GetModule()->LogMessage( in FindFunctions()
2362 GetObjectFile()->GetModule()->LogMessage( in FindFunctions()
2380 GetObjectFile()->GetModule()->LogMessage( in FindFunctions()
2543 GetObjectFile()->GetModule()->LogMessage( in FindNamespace()
[all …]
H A DSymbolFileDWARFDebugMap.cpp75 ModuleSP oso_module_sp(oso_objfile->GetModule()); in GetFileRangeMap()
348 m_objfile_sp->GetModule()->ReportError( in InitOSO()
364 m_objfile_sp->GetModule()->ReportError( in InitOSO()
369 m_objfile_sp->GetModule()->ReportError( in InitOSO()
374 m_objfile_sp->GetModule()->ReportError( in InitOSO()
379 m_objfile_sp->GetModule()->ReportError( in InitOSO()
421 obj_file->GetModule()->ReportError( in GetModuleByCompUnitInfo()
447 oso_arch.SetTriple(m_objfile_sp->GetModule() in GetModuleByCompUnitInfo()
997 if (section_sp->GetModule() != module_sp) { in RemoveFunctionsWithModuleNotEqualTo()
1365 Module *addr_module = addr.GetModule().get(); in LinkOSOAddress()
[all …]
H A DDWARFBaseDIE.cpp77 lldb::ModuleSP DWARFBaseDIE::GetModule() const { in GetModule() function in DWARFBaseDIE
80 return dwarf->GetObjectFile()->GetModule(); in GetModule()
H A DDWARFASTParserClang.cpp442 dwarf->GetObjectFile()->GetModule()->LogMessage( in ParseTypeFromDWARF()
521 dwarf->GetObjectFile()->GetModule()->ReportError( in ParseTypeFromDWARF()
689 dwarf->GetObjectFile()->GetModule()->LogMessage( in ParseTypeModifier()
786 dwarf->GetObjectFile()->GetModule()->LogMessage( in ParseEnum()
856 dwarf->GetObjectFile()->GetModule()->ReportError( in ParseEnum()
1603 dwarf->GetObjectFile()->GetModule()->LogMessage( in ParseStructureLikeDIE()
1628 dwarf->GetObjectFile()->GetModule()->LogMessage( in ParseStructureLikeDIE()
1660 dwarf->GetObjectFile()->GetModule()->LogMessage( in ParseStructureLikeDIE()
1774 dwarf->GetObjectFile()->GetModule()->ReportError( in ParseStructureLikeDIE()
2152 dwarf->GetObjectFile()->GetModule()->GetMutex()); in CompleteTypeFromDWARF()
[all …]
/llvm-project-15.0.7/lldb/test/API/python_api/function_symbol/
H A DTestSymbolAPI.py87 print("UUID:", addr_line1.GetModule().GetUUIDString())
88 self.assertTrue(addr_line1.GetModule().GetUUIDString()
89 == addr_line2.GetModule().GetUUIDString())
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp587 ModuleSP DynamicLoaderDarwinKernel::KextImageInfo::GetModule() { in GetModule() function in DynamicLoaderDarwinKernel::KextImageInfo
987 if (m_kernel.GetModule().get() && m_kernel.GetModule()->GetObjectFile() && in LoadKernelModuleIfNeeded()
988 !m_kernel.GetModule() in LoadKernelModuleIfNeeded()
1001 m_kernel.GetModule()) { in LoadKernelModuleIfNeeded()
1038 if (m_kernel.IsLoaded() && m_kernel.GetModule()) { in LoadKernelModuleIfNeeded()
1041 m_kernel.GetModule()->FindFirstSymbolWithNameAndType( in LoadKernelModuleIfNeeded()
1199 !image_info.GetModule()) { in ParseKextSummaries()
1295 if (image_info.GetModule() && in ParseKextSummaries()
1297 loaded_module_list.AppendIfNeeded(image_info.GetModule()); in ParseKextSummaries()
1322 if (image_info.GetModule()) { in ParseKextSummaries()
[all …]
/llvm-project-15.0.7/lldb/examples/python/
H A Ddiagnose_unwind.py30 if sbaddr.GetModule():
32 module_uuid_str = sbaddr.GetModule().GetUUIDString()
35 if sbaddr.GetModule().GetFileSpec():
36 module_filename = sbaddr.GetModule().GetFileSpec().GetFilename()
54 return sbaddr.GetModule()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBAddress.i124 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 re…
H A DSBSymbolContext.i62 lldb::SBModule GetModule ();
88 …module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setti…
/llvm-project-15.0.7/lldb/test/API/functionalities/disassemble/aarch64-adrp-add/
H A DTestAArch64AdrpAdd.py24 binaryname = f.GetStartAddress().GetModule().GetFileSpec().GetFilename()
41 binaryname = f.GetStartAddress().GetModule().GetFileSpec().GetFilename()
/llvm-project-15.0.7/lldb/test/API/functionalities/type_get_module/
H A DTestTypeGetModule.py72 self.assertEqual(exe_module, cu_type.GetModule())
76 self.assertEqual(exe_module, cu_type.GetModule())
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp133 static_cast<void *>(objfile_up->GetModule().get()), in CreateInstance()
134 objfile_up->GetModule()->GetSpecificationDescription().c_str(), in CreateInstance()
327 new Section(GetModule(), // Module to which this section belongs. in CreateSections()
366 ModuleSP module_sp = GetModule(); in SetLoadAddress()
434 ModuleSP module_sp(GetModule()); in Dump()
/llvm-project-15.0.7/lldb/source/API/
H A DSBSection.cpp53 return section_sp && section_sp->GetModule().get() != nullptr; in operator bool()
154 ModuleSP module_sp(section_sp->GetModule()); in GetFileOffset()
187 ModuleSP module_sp(section_sp->GetModule()); in GetSectionData()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_symbolcontext.py9 obj.GetModule()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DModuleBuilder.cpp101 llvm::Module *GetModule() { in GetModule() function in __anon1a4befbb0111::CodeGeneratorImpl
331 llvm::Module *CodeGenerator::GetModule() { in GetModule() function in CodeGenerator
332 return static_cast<CodeGeneratorImpl*>(this)->GetModule(); in GetModule()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DModuleChild.h45 lldb::ModuleSP GetModule() const;

123456