/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | UnwindTable.cpp | 33 : 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() 93 ObjectFile *object_file = m_module.GetObjectFile(); in Update() 100 SectionList *sl = m_module.GetSectionList(); in Update() 211 s.Format("UnwindTable for '{0}':\n", m_module.GetFileSpec()); in Dump() 246 SymbolFile *UnwindTable::GetSymbolFile() { return m_module.GetSymbolFile(); } in GetSymbolFile() 248 ArchSpec UnwindTable::GetArchitecture() { return m_module.GetArchitecture(); } in GetArchitecture() 251 if (ObjectFile *object_file = m_module.GetObjectFile()) in GetAllowAssemblyEmulationUnwindPlans()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | IRForTarget.cpp | 151 return DeclForGlobal(global_val, m_module); in DeclForGlobal() 172 ValueSymbolTable &value_symbol_table = m_module->getValueSymbolTable(); in CreateResultVariable() 205 Value *result_value = m_module->getNamedValue(result_name); in CreateResultVariable() 333 (*m_module), result_global->getValueType(), false, /* not constant */ in CreateResultVariable() 345 ConstantInt::get(llvm::Type::getInt64Ty(m_module->getContext()), in CreateResultVariable() 354 MDNode *persistent_global_md = MDNode::get(m_module->getContext(), value_ref); in CreateResultVariable() 356 m_module->getNamedMetadata("clang.global.decl.ptrs"); in CreateResultVariable() 408 Type *i8_ptr_ty = PointerType::getUnqual(m_module->getContext()); in RewriteObjCConstString() 409 Type *i32_ty = Type::getInt32Ty(m_module->getContext()); in RewriteObjCConstString() 410 Type *i8_ty = Type::getInt8Ty(m_module->getContext()); in RewriteObjCConstString() [all …]
|
H A D | IRDynamicChecks.cpp | 137 : 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 D | IRForTarget.h | 333 llvm::Module *m_module = nullptr; 394 llvm::Module *m_module = nullptr; global() variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | IRExecutionUnit.h | 71 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/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFIndex.cpp | 90 index.m_module.GetSymbolFile()->GetBackingSymbolFile())), in DIERefCallbackImpl() 107 m_module.ReportErrorIfModifyDetected( in ReportInvalidDIERef()
|
H A D | DWARFIndex.h | 27 DWARFIndex(Module &module) : m_module(module) {} in DWARFIndex() 80 Module &m_module;
|
H A D | ManualDWARFIndex.cpp | 75 m_module.GetDescription(module_desc.AsRawOstream(), in Index() 148 m_module.LogMessage( in IndexUnit() 508 m_module.GetArchitecture().GetArchitectureName(), in Dump() 509 m_module.GetObjectFile()->GetFileSpec()); in Dump()
|
H A D | AppleDWARFIndex.cpp | 238 m_module.LogMessage(log, "FindByNameAndTagAndQualifiedNameHash()"); in GetTypes() 263 m_module.LogMessage(log, "FindByNameAndTag()"); in GetTypes()
|
H A D | DebugNamesDWARFIndex.cpp | 147 m_module.ReportErrorIfModifyDetected( in GetDIE()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectFrame.cpp | 736 m_module = std::string(option_arg); in SetOptionValue() 752 m_module = ""; in OptionParsingStarting() 765 std::string m_module; member in CommandObjectFrameRecognizerAdd::CommandOptions 841 if (m_options.m_module.empty()) { in DoExecute() 874 RegularExpressionSP(new RegularExpression(m_options.m_module)); in DoExecute() 880 auto module = ConstString(m_options.m_module); in DoExecute()
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | IRExecutionUnit.cpp | 51 m_module_up(module_up.release()), m_module(m_module_up.get()), in IRExecutionUnit() 269 m_module->print(oss, nullptr); in GetRunnableInfo() 280 llvm::Triple triple(m_module->getTargetTriple()); in GetRunnableInfo() 353 for (llvm::Function &function : *m_module) { in GetRunnableInfo() 408 for (llvm::GlobalVariable &global_var : m_module->globals()) { in GetRunnableInfo() 412 for (llvm::GlobalAlias &global_alias : m_module->aliases()) { in GetRunnableInfo() 904 m_module->getNamedGlobal("llvm.global_ctors"); in GetStaticInitializers()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | UnwindTable.h | 75 Module &m_module; variable
|