Home
last modified time | relevance | path

Searched refs:m_module (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp33 : m_module(module), m_unwinds(), m_scanned_all_unwind_sources(false), in UnwindTable()
48 ObjectFile *object_file = m_module.GetObjectFile(); in Initialize()
57 SectionList *sl = m_module.GetSectionList(); in Initialize()
179 s.Format("UnwindTable for '{0}':\n", m_module.GetFileSpec()); in Dump()
214 SymbolFile *UnwindTable::GetSymbolFile() { return m_module.GetSymbolFile(); } in GetSymbolFile()
216 ArchSpec UnwindTable::GetArchitecture() { return m_module.GetArchitecture(); } in GetArchitecture()
219 if (ObjectFile *object_file = m_module.GetObjectFile()) in GetAllowAssemblyEmulationUnwindPlans()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp149 return DeclForGlobal(global_val, m_module); in DeclForGlobal()
170 ValueSymbolTable &value_symbol_table = m_module->getValueSymbolTable(); in CreateResultVariable()
203 Value *result_value = m_module->getNamedValue(result_name); in CreateResultVariable()
332 (*m_module), result_global->getValueType(), false, /* not constant */ in CreateResultVariable()
344 ConstantInt::get(llvm::Type::getInt64Ty(m_module->getContext()), in CreateResultVariable()
353 MDNode *persistent_global_md = MDNode::get(m_module->getContext(), value_ref); in CreateResultVariable()
355 m_module->getNamedMetadata("clang.global.decl.ptrs"); in CreateResultVariable()
407 Type *i8_ptr_ty = PointerType::getUnqual(m_module->getContext()); in RewriteObjCConstString()
408 Type *i32_ty = Type::getInt32Ty(m_module->getContext()); in RewriteObjCConstString()
409 Type *i8_ty = Type::getInt8Ty(m_module->getContext()); in RewriteObjCConstString()
[all …]
H A DIRDynamicChecks.cpp124 : m_module(module), m_checker_function(checker_function) {} in Instrumenter()
231 llvm::Type::getVoidTy(m_module.getContext()), params, true); in BuildObjectCheckerFunc()
232 PointerType *fun_ptr_ty = PointerType::getUnqual(m_module.getContext()); in BuildObjectCheckerFunc()
240 m_i8ptr_ty = llvm::PointerType::getUnqual(m_module.getContext()); in GetI8PtrTy()
248 m_module.getContext(), in GetIntptrTy()
249 m_module.getDataLayout().getPointerSizeInBits()); in GetIntptrTy()
259 llvm::Module &m_module; ///< The module which is being instrumented member in Instrumenter
H A DIRForTarget.h333 llvm::Module *m_module = nullptr; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h72 llvm::Module *GetModule() { return m_module; } in GetModule()
75 return ((m_module != nullptr) ? m_module->getFunction(m_name.GetStringRef()) in GetFunction()
378 llvm::Module *m_module; ///< Owned by the execution engine variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFIndex.h27 DWARFIndex(Module &module) : m_module(module) {} in DWARFIndex()
97 Module &m_module;
H A DDWARFIndex.cpp90 index.m_module.GetSymbolFile()->GetBackingSymbolFile())), in DIERefCallbackImpl()
107 m_module.ReportErrorIfModifyDetected( in ReportInvalidDIERef()
H A DManualDWARFIndex.cpp76 m_module.GetDescription(module_desc.AsRawOstream(), in Index()
154 m_module.LogMessage( in IndexUnit()
533 m_module.GetArchitecture().GetArchitectureName(), in Dump()
534 m_module.GetObjectFile()->GetFileSpec()); in Dump()
H A DAppleDWARFIndex.cpp238 m_module.LogMessage(log, "FindByNameAndTagAndQualifiedNameHash()"); in GetTypes()
263 m_module.LogMessage(log, "FindByNameAndTag()"); in GetTypes()
H A DDebugNamesDWARFIndex.cpp147 m_module.ReportErrorIfModifyDetected( in GetDIE()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp767 m_module = std::string(option_arg); in SetOptionValue()
783 m_module = ""; in OptionParsingStarting()
796 std::string m_module; member in CommandObjectFrameRecognizerAdd::CommandOptions
872 if (m_options.m_module.empty()) { in DoExecute()
905 RegularExpressionSP(new RegularExpression(m_options.m_module)); in DoExecute()
912 auto module = ConstString(m_options.m_module); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp51 m_module_up(module_up.release()), m_module(m_module_up.get()), in IRExecutionUnit()
266 m_module->print(oss, nullptr); in GetRunnableInfo()
275 llvm::Triple triple(m_module->getTargetTriple()); in GetRunnableInfo()
353 for (llvm::Function &function : *m_module) { in GetRunnableInfo()
407 for (llvm::GlobalVariable &global_var : m_module->globals()) { in GetRunnableInfo()
411 for (llvm::GlobalAlias &global_alias : m_module->aliases()) { in GetRunnableInfo()
940 m_module->getNamedGlobal("llvm.global_ctors"); in GetStaticInitializers()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindTable.h75 Module &m_module; variable
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp86 : m_platform{platform}, m_module{module}, in ExecutableInstaller()
87 m_local_file{m_module->GetFileSpec()},
88 m_remote_file{m_module->GetRemoteInstallFileSpec()} {}
90 void setupRemoteFile() const { m_module->SetPlatformFileSpec(m_remote_file); } in setupRemoteFile()
93 ModuleSP m_module; member
102 : m_platform{platform}, m_module{module}, in MainExecutableInstaller()
103 m_local_file{m_module->GetFileSpec()},
105 getRemoteFileSpec(m_platform, target, m_module, m_local_file)},
109 m_module->SetPlatformFileSpec(m_remote_file); in setupRemoteFile()
116 ModuleSP m_module; member