Searched refs:GetModule (Results 51 - 75 of 95) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBInstructionList.cpp172 ModuleSP module_sp(addr.GetModule());
H A DSBSymbol.cpp132 ModuleSP module_sp = symbol_addr.GetModule();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectChild.cpp230 value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
H A DSection.cpp270 assert(GetModule().get());
329 ModuleSP module_sp(GetModule());
H A DValueObjectSyntheticFilter.cpp353 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
H A DValueObject.cpp771 ModuleSP module_sp(GetModule());
825 error = m_value.GetValueAsData(&exe_ctx, data, GetModule().get());
2687 m_error = v.GetValueAsData(&exe_ctx, data, GetModule().get());
2689 m_error = m_value.GetValueAsData(&exe_ctx, data, GetModule().get());
3131 ModuleSP ValueObject::GetModule() { function in class:ValueObject
3134 return root->GetModule();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DLLVMUserExpression.cpp95 llvm::Module *module = m_execution_unit_sp->GetModule();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp91 ModuleSP module_sp = resolved_addr.GetModule();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp131 if (addr.GetModule() == runtime_module_sp) // Skip PCs from the runtime.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp144 GetModule(), this, next_section_id++,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp129 cu_sp = std::make_shared<CompileUnit>(m_objfile_sp->GetModule(), nullptr,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DRegisterContextUnwind.cpp149 ModuleSP pc_module_sp(m_current_pc.GetModule());
183 } else if (m_current_pc.GetModule() == m_start_pc.GetModule()) {
334 ModuleSP pc_module_sp(m_current_pc.GetModule());
641 ModuleSP pc_module_sp(m_current_pc.GetModule());
743 ModuleSP pc_module_sp(m_current_pc.GetModule());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp760 module_sp = sym_ctx.symbol->GetAddressRef().GetModule();
763 sym_ctx.function->GetAddressRange().GetBaseAddress().GetModule();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp385 ModuleSP module_sp(GetModule());
424 ModuleSP module_sp(GetModule());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp257 if (sc.module_sp == address.GetModule()) {
453 if (sc.module_sp == address.GetModule()) {
H A DType.cpp719 ModuleSP Type::GetModule() { function in class:Type
721 return m_symbol_file->GetObjectFile()->GetModule();
819 m_module_wp = type_sp->GetModule();
H A DSymtab.cpp80 if (m_objfile->GetModule())
81 object_name = m_objfile->GetModule()->GetObjectName().GetCString();
1006 sc.module_sp = m_objfile->GetModule();
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h71 llvm::Module *GetModule() { return m_module; } function in class:lldb_private::IRExecutionUnit
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp155 if (FCA.GetModule() == runtime_module_sp) // Skip PCs from the runtime.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpoint.cpp559 if (section_sp && section_sp->GetModule() == module_sp) {
606 if (section_sp && section_sp->GetModule() == module_sp) {
681 if (section_sp && section_sp->GetModule() == old_module_sp) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp652 ModuleSP module_sp = GetModule();
1789 GetModule(), this, SegmentID(EnumPHdr.index()),
1827 InfoOr->Segment, GetModule(), // Module to which this section belongs.
1883 GetModule()->ReportWarning(
1894 GetModule()->ReportWarning(
1906 GetModule(), gdd_data_buf, 0, &fspec, 0, gdd_data_buf->GetByteSize()));
1977 ModuleSP module_sp(GetModule());
2694 ModuleSP module_sp(GetModule());
2773 GetModule()->GetUnwindTable().GetEHFrameInfo()) {
2938 ModuleSP module_sp(GetModule());
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFUnit.cpp461 GetSymbolFileDWARF().GetObjectFile()->GetModule()->ReportError(
502 GetSymbolFileDWARF().GetObjectFile()->GetModule()->ReportError(
550 GetSymbolFileDWARF().GetObjectFile()->GetModule()->ReportError(
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1338 if (!ir_for_target.runOnModule(*execution_unit_sp->GetModule())) {
1352 *execution_unit_sp->GetModule(), *execution_unit_sp->GetFunction(),
1404 llvm::Module *module = execution_unit_sp->GetModule();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1228 symbol_file.GetObjectFile()->GetModule()->ReportError(
1338 symbol_file.GetObjectFile()->GetModule()->ReportError(
1397 symbol_file.GetObjectFile()->GetModule()->ReportError(
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h115 lldb::ModuleSP GetModule();

Completed in 282 milliseconds

1234