Searched refs:m_module (Results 1 - 17 of 17) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp32 : m_module(module), m_unwinds(), m_initialized(false), m_mutex(),
48 ObjectFile *object_file = m_module.GetObjectFile();
54 SectionList *sl = m_module.GetSectionList();
164 s.Format("UnwindTable for '{0}':\n", m_module.GetFileSpec());
199 SymbolFile *UnwindTable::GetSymbolFile() { return m_module.GetSymbolFile(); }
201 ArchSpec UnwindTable::GetArchitecture() { return m_module.GetArchitecture(); }
204 if (ObjectFile *object_file = m_module.GetObjectFile())
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFIndex.h22 DWARFIndex(Module &module) : m_module(module) {}
53 Module &m_module; member in class:lldb_private::DWARFIndex
H A DAppleDWARFIndex.cpp120 m_module.LogMessage(log, "FindByNameAndTagAndQualifiedNameHash()");
143 m_module.LogMessage(log, "FindByNameAndTag()");
180 m_module.ReportErrorIfModifyDetected(
H A DManualDWARFIndex.cpp98 m_module.LogMessage(
456 m_module.GetArchitecture().GetArchitectureName(),
457 m_module.GetObjectFile()->GetFileSpec());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp76 m_module(nullptr), m_decl_map(decl_map),
155 return DeclForGlobal(global_val, m_module);
176 ValueSymbolTable &value_symbol_table = m_module->getValueSymbolTable();
209 Value *result_value = m_module->getNamedValue(result_name);
344 (*m_module), result_global->getType()->getElementType(),
357 ConstantInt::get(llvm::Type::getInt64Ty(m_module->getContext()),
366 MDNode *persistent_global_md = MDNode::get(m_module->getContext(), value_ref);
368 m_module->getNamedMetadata("clang.global.decl.ptrs");
421 Type *i8_ptr_ty = Type::getInt8PtrTy(m_module->getContext());
422 Type *i32_ty = Type::getInt32Ty(m_module
[all...]
H A DIRDynamicChecks.cpp141 : m_module(module), m_checker_function(checker_function),
248 llvm::Type::getVoidTy(m_module.getContext()), params, true);
272 llvm::Type::getVoidTy(m_module.getContext()), params, true);
281 m_i8ptr_ty = llvm::Type::getInt8PtrTy(m_module.getContext());
288 llvm::DataLayout data_layout(&m_module);
290 m_intptr_ty = llvm::Type::getIntNTy(m_module.getContext(),
301 llvm::Module &m_module; ///< The module which is being instrumented member in class:Instrumenter
H A DIRForTarget.h428 llvm::Module *m_module; ///< The module being processed, or NULL if that has member in class:IRForTarget
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindTable.h70 Module &m_module; member in class:lldb_private::UnwindTable
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.h142 : m_module(module), m_name(name), m_slot(slot) {}
146 const RSModuleDescriptor *m_module; member in struct:lldb_private::lldb_renderscript::RSKernelDescriptor
154 : m_module(module), m_name(name) {}
158 const RSModuleDescriptor *m_module; member in struct:lldb_private::lldb_renderscript::RSGlobalDescriptor
168 : m_module(module), m_reduce_name(name), m_init_name(init_name),
177 const RSModuleDescriptor *m_module; member in struct:lldb_private::lldb_renderscript::RSReductionDescriptor
218 RSModuleDescriptor(const lldb::ModuleSP &module) : m_module(module) {}
228 const lldb::ModuleSP m_module; member in class:lldb_private::lldb_renderscript::RSModuleDescriptor
H A DRenderScriptRuntime.cpp839 if (module_desc->m_module != module)
1399 rsm->m_module->GetFileSpec().GetFilename().AsCString());
1627 const ModuleSP module = rsmodule_sp->m_module;
1655 rsmodule_sp->m_module->GetFileSpec().GetFilename().AsCString());
1669 rsmodule_sp->m_module->GetFileSpec().GetFilename().AsCString());
2237 module_sp->m_module->FindGlobalVariables(
2745 if (rs_module->m_module == module_sp) {
2963 assert(m_module);
2965 const Symbol *info_sym = m_module->FindFirstSymbolWithNameAndType(
2975 const FileSpec fs = m_module
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h71 llvm::Module *GetModule() { return m_module; }
74 return ((m_module != nullptr) ? m_module->getFunction(m_name.AsCString())
377 llvm::Module *m_module; ///< Owned by the execution engine member in class:lldb_private::IRExecutionUnit
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp747 m_module = std::string(option_arg);
763 m_module = "";
775 std::string m_module; member in class:CommandObjectFrameRecognizerAdd::CommandOptions
851 if (m_options.m_module.empty()) {
878 RegularExpressionSP(new RegularExpression(m_options.m_module));
883 auto module = ConstString(m_options.m_module);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp46 m_module_up(module_up.release()), m_module(m_module_up.get()),
253 m_module->print(oss, nullptr);
264 llvm::Triple triple(m_module->getTargetTriple());
329 for (llvm::Function &function : *m_module) {
385 for (llvm::GlobalVariable &global_var : m_module->getGlobalList()) {
389 for (llvm::GlobalAlias &global_alias : m_module->getAliasList()) {
981 m_module->getNamedGlobal("llvm.global_ctors");
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.h184 lldb_private::Module *m_module; member in class:ProcessFreeBSD
H A DProcessMonitor.h225 lldb_private::Module *m_module; // The executable image to launch. member in struct:ProcessMonitor::LaunchArgs
H A DProcessFreeBSD.cpp253 m_byte_order(endian::InlHostByteOrder()), m_monitor(NULL), m_module(NULL),
401 m_module = module;
H A DProcessMonitor.cpp675 : OperationArgs(monitor), m_module(module), m_argv(argv),

Completed in 440 milliseconds