/art/compiler/dex/ |
compiler_ir.h | 27 #include "driver/compiler_driver.h" 47 : compiler_driver(NULL), 76 CompilerDriver* compiler_driver; member in struct:art::CompilationUnit
|
frontend.cc | 20 #include "driver/compiler_driver.h" 124 cu.compiler_driver = &compiler;
|
mir_dataflow.cc | [all...] |
/art/compiler/ |
compiled_method.h | 38 CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, 42 CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set,
|
compiled_method.cc | 18 #include "driver/compiler_driver.h" 22 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, 24 : compiler_driver_(compiler_driver), instruction_set_(instruction_set), code_(nullptr) { 28 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, 30 : compiler_driver_(compiler_driver), instruction_set_(instruction_set), symbol_(symbol) {
|
image_writer.h | 26 #include "driver/compiler_driver.h" 40 explicit ImageWriter(const CompilerDriver& compiler_driver) 41 : compiler_driver_(compiler_driver), oat_file_(NULL), image_end_(0), image_begin_(NULL),
|
Android.mk | 60 driver/compiler_driver.cc \
|
/art/compiler/dex/quick/ |
gen_common.cc | 213 if (cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx, *cu_->dex_file, 235 if (cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx, *cu_->dex_file, 340 bool fast_path = cu_->compiler_driver->ComputeStaticFieldInfo( 426 bool fast_path = cu_->compiler_driver->ComputeStaticFieldInfo( 759 if (!cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx, 777 if (!cu_->compiler_driver->CanAssumeTypeIsPresentInDexCache(*cu_->dex_file, 817 if (!cu_->compiler_driver->CanAssumeStringIsPresentInDexCache( [all...] |
codegen_util.cc | 54 return cu_->compiler_driver->ComputeInstanceFieldInfo( 364 cu_->compiler_driver->AddCodePatch(cu_->dex_file, 380 cu_->compiler_driver->AddMethodPatch(cu_->dex_file, [all...] |
mir_to_lir.cc | 85 cu_->compiler_driver->RequiresConstructorBarrier(Thread::Current(), cu_->dex_file,
|
gen_invoke.cc | [all...] |
/art/compiler/dex/portable/ |
mir_to_gbc.cc | 106 CompilerTls* tls = cu_->compiler_driver->GetTls(); [all...] |
/art/compiler/driver/ |
compiler_driver.cc | 17 #include "compiler_driver.h" 757 CompilerDriver* compiler_driver = reinterpret_cast<CompilerDriver*>(arg); local 758 MaybeAddToImageClasses(object->GetClass(), compiler_driver->image_classes_.get()); [all...] |