Home
last modified time | relevance | path

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

/art/compiler/llvm/
Dir_builder.cc31 IRBuilder::IRBuilder(::llvm::LLVMContext& context, ::llvm::Module& module, in IRBuilder() argument
33 : LLVMIRBuilder(context), module_(&module), mdb_(context), java_object_type_(NULL), in IRBuilder()
36 ::llvm::Type* jobject_struct_type = module.getTypeByName("JavaObject"); in IRBuilder()
41 ::llvm::Type* type = module.getTypeByName("Method"); in IRBuilder()
49 type = module.getTypeByName("Thread"); in IRBuilder()
61 art_frame_type_ = module.getTypeByName("ShadowFrame"); in IRBuilder()
Druntime_support_builder_arm.h27 RuntimeSupportBuilderARM(::llvm::LLVMContext& context, ::llvm::Module& module, IRBuilder& irb) in RuntimeSupportBuilderARM() argument
28 : RuntimeSupportBuilder(context, module, irb) {} in RuntimeSupportBuilderARM()
Druntime_support_builder_x86.h27 RuntimeSupportBuilderX86(::llvm::LLVMContext& context, ::llvm::Module& module, IRBuilder& irb) in RuntimeSupportBuilderX86() argument
28 : RuntimeSupportBuilder(context, module, irb) {} in RuntimeSupportBuilderX86()
Dintrinsic_helper.cc94 ::llvm::Module& module) { in IntrinsicHelper() argument
95 IRBuilder irb(context, module, *this); in IntrinsicHelper()
138 info.name_, &module); in IntrinsicHelper()
Druntime_support_builder.cc40 ::llvm::Module& module, in RuntimeSupportBuilder() argument
42 : context_(context), module_(module), irb_(irb) { in RuntimeSupportBuilder()
Dintrinsic_helper.h126 IntrinsicHelper(::llvm::LLVMContext& context, ::llvm::Module& module);
Druntime_support_builder.h42 RuntimeSupportBuilder(::llvm::LLVMContext& context, ::llvm::Module& module, IRBuilder& irb);
Dcompiler_llvm.cc109 ::llvm::Module* makeLLVMModuleContents(::llvm::Module* module);
Dllvm_compilation_unit.cc95 ::llvm::Module* makeLLVMModuleContents(::llvm::Module* module);
Dir_builder.h71 IRBuilder(::llvm::LLVMContext& context, ::llvm::Module& module,
Dgbc_expander.cc663 llvm::Module* module = func->getParent(); in EmitStackOverflowCheck() local
667 llvm::Intrinsic::getDeclaration(module, llvm::Intrinsic::frameaddress); in EmitStackOverflowCheck()
/art/runtime/base/
Dlogging.h142 #define VLOG_IS_ON(module) UNLIKELY(::art::gLogVerbosity.module) argument
143 #define VLOG(module) if (VLOG_IS_ON(module)) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream… argument
144 #define VLOG_STREAM(module) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream() argument
/art/compiler/dex/portable/
Dmir_to_gbc.cc46 ::llvm::Module* makeLLVMModuleContents(::llvm::Module* module);