Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp33 : m_module(module), m_unwinds(), m_initialized(false), m_mutex(), in UnwindTable()
49 ObjectFile *object_file = m_module.GetObjectFile(); in Initialize()
55 SectionList *sl = m_module.GetSectionList(); in Initialize()
166 s.Format("UnwindTable for '{0}':\n", m_module.GetFileSpec()); in Dump()
201 SymbolFile *UnwindTable::GetSymbolFile() { return m_module.GetSymbolFile(); } in GetSymbolFile()
203 ArchSpec UnwindTable::GetArchitecture() { return m_module.GetArchitecture(); } in GetArchitecture()
206 if (ObjectFile *object_file = m_module.GetObjectFile()) in GetAllowAssemblyEmulationUnwindPlans()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp151 return DeclForGlobal(global_val, m_module); in DeclForGlobal()
409 Type *i32_ty = Type::getInt32Ty(m_module->getContext()); in RewriteObjCConstString()
410 Type *i8_ty = Type::getInt8Ty(m_module->getContext()); in RewriteObjCConstString()
1517 LLVMContext &context(m_module->getContext()); in ReplaceVariables()
1608 m_module = &llvm_module; in runOnModule()
1617 m_module->print(oss, nullptr); in runOnModule()
1664 m_module->print(oss, nullptr); in runOnModule()
1671 for (llvm::Function &function : *m_module) { in runOnModule()
1712 for (llvm::Function &function : *m_module) { in runOnModule()
1725 for (llvm::Function &function : *m_module) { in runOnModule()
[all …]
H A DIRDynamicChecks.cpp137 : m_module(module), m_checker_function(checker_function) {} in Instrumenter()
243 llvm::Type::getVoidTy(m_module.getContext()), params, true); in BuildPointerValidatorFunc()
267 llvm::Type::getVoidTy(m_module.getContext()), params, true); in BuildObjectCheckerFunc()
276 m_i8ptr_ty = llvm::PointerType::getUnqual(m_module.getContext()); in GetI8PtrTy()
283 llvm::DataLayout data_layout(&m_module); in GetIntptrTy()
285 m_intptr_ty = llvm::Type::getIntNTy(m_module.getContext(), in GetIntptrTy()
296 llvm::Module &m_module; ///< The module which is being instrumented member in Instrumenter
H A DIRForTarget.h333 llvm::Module *m_module = nullptr; variable
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h71 llvm::Module *GetModule() { return m_module; } in GetModule()
74 return ((m_module != nullptr) ? m_module->getFunction(m_name.GetStringRef()) in GetFunction()
371 llvm::Module *m_module; ///< Owned by the execution engine variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFIndex.h27 DWARFIndex(Module &module) : m_module(module) {} in DWARFIndex()
80 Module &m_module;
H A DDWARFIndex.cpp95 index.m_module.GetSymbolFile()->GetBackingSymbolFile())), in DIERefCallbackImpl()
112 m_module.ReportErrorIfModifyDetected( in ReportInvalidDIERef()
H A DManualDWARFIndex.cpp72 m_module.GetDescription(module_desc.AsRawOstream(), in Index()
145 m_module.LogMessage( in IndexUnit()
505 m_module.GetArchitecture().GetArchitectureName(), in Dump()
506 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.cpp81 m_module.GetSymbolFile()->GetBackingSymbolFile()); in ProcessEntry()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp780 m_module = std::string(option_arg); in SetOptionValue()
796 m_module = ""; in OptionParsingStarting()
809 std::string m_module; member in CommandObjectFrameRecognizerAdd::CommandOptions
885 if (m_options.m_module.empty()) { in DoExecute()
918 RegularExpressionSP(new RegularExpression(m_options.m_module)); in DoExecute()
924 auto module = ConstString(m_options.m_module); in DoExecute()
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp51 m_module_up(module_up.release()), m_module(m_module_up.get()), in IRExecutionUnit()
270 m_module->print(oss, nullptr); in GetRunnableInfo()
281 llvm::Triple triple(m_module->getTargetTriple()); in GetRunnableInfo()
354 for (llvm::Function &function : *m_module) { in GetRunnableInfo()
409 for (llvm::GlobalVariable &global_var : m_module->globals()) { in GetRunnableInfo()
413 for (llvm::GlobalAlias &global_alias : m_module->aliases()) { in GetRunnableInfo()
903 m_module->getNamedGlobal("llvm.global_ctors"); in GetStaticInitializers()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindTable.h71 Module &m_module; variable