Lines Matching refs:module

107 static DWARFExpression MakeLocationExpressionInternal(lldb::ModuleSP module,  in MakeLocationExpressionInternal()  argument
109 const ArchSpec &architecture = module->GetArchitecture(); in MakeLocationExpressionInternal()
125 DWARFExpression result(module, extractor, nullptr); in MakeLocationExpressionInternal()
133 lldb::ModuleSP module) { in MakeRegisterBasedLocationExpressionInternal() argument
135 module, [&](Stream &stream, RegisterKind &register_kind) -> bool { in MakeRegisterBasedLocationExpressionInternal()
137 module->GetArchitecture().GetMachine(), reg, register_kind); in MakeRegisterBasedLocationExpressionInternal()
162 llvm::codeview::RegisterId reg, lldb::ModuleSP module) { in MakeEnregisteredLocationExpression() argument
163 return MakeRegisterBasedLocationExpressionInternal(reg, llvm::None, module); in MakeEnregisteredLocationExpression()
167 llvm::codeview::RegisterId reg, int32_t offset, lldb::ModuleSP module) { in MakeRegRelLocationExpression() argument
168 return MakeRegisterBasedLocationExpressionInternal(reg, offset, module); in MakeRegRelLocationExpression()
179 llvm::StringRef fpo_program, int32_t offset, lldb::ModuleSP module) { in MakeVFrameRelLocationExpression() argument
181 module, [&](Stream &stream, RegisterKind &register_kind) -> bool { in MakeVFrameRelLocationExpression()
182 const ArchSpec &architecture = module->GetArchitecture(); in MakeVFrameRelLocationExpression()
199 uint16_t section, uint32_t offset, ModuleSP module) { in MakeGlobalLocationExpression() argument
201 assert(module); in MakeGlobalLocationExpression()
204 module, [&](Stream &stream, RegisterKind &register_kind) -> bool { in MakeGlobalLocationExpression()
207 SectionList *section_list = module->GetSectionList(); in MakeGlobalLocationExpression()
223 ModuleSP module) { in MakeConstantLocationExpression() argument
224 const ArchSpec &architecture = module->GetArchitecture(); in MakeConstantLocationExpression()