Searched defs:compiler_driver (Results 1 - 8 of 8) sorted by relevance

/art/compiler/dex/
H A Dmir_field_info.cc22 #include "driver/compiler_driver.h"
23 #include "driver/compiler_driver-inl.h"
31 void MirIFieldLoweringInfo::Resolve(CompilerDriver* compiler_driver, argument
47 Handle<mirror::DexCache> dex_cache(hs.NewHandle(compiler_driver->GetDexCache(mUnit)));
49 hs.NewHandle(compiler_driver->GetClassLoader(soa, mUnit)));
51 compiler_driver->ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit)));
58 compiler_driver->ResolveField(soa, dex_cache, class_loader, mUnit, field_idx, false);
62 compiler_driver->GetResolvedFieldDexFileLocation(resolved_field,
64 bool is_volatile = compiler_driver->IsFieldVolatile(resolved_field);
66 std::pair<bool, bool> fast_path = compiler_driver
75 Resolve(CompilerDriver* compiler_driver, const DexCompilationUnit* mUnit, MirSFieldLoweringInfo* field_infos, size_t count) argument
[all...]
H A Dmir_method_info.cc19 #include "driver/compiler_driver.h"
21 #include "driver/compiler_driver-inl.h"
29 void MirMethodLoweringInfo::Resolve(CompilerDriver* compiler_driver, argument
49 Handle<mirror::DexCache> dex_cache(hs.NewHandle(compiler_driver->GetDexCache(mUnit)));
51 hs.NewHandle(compiler_driver->GetClassLoader(soa, mUnit)));
53 compiler_driver->ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit)));
66 compiler_driver->ResolveMethod(soa, dex_cache, class_loader, mUnit, it->MethodIndex(),
71 compiler_driver->GetResolvedMethodDexFileLocation(resolved_method,
73 it->vtable_idx_ = compiler_driver->GetResolvedMethodVTableIndex(resolved_method, invoke_type);
76 int fast_path_flags = compiler_driver
[all...]
H A Dcompiler_ir.h25 #include "driver/compiler_driver.h"
52 CompilerDriver* compiler_driver; member in struct:art::CompilationUnit
70 return compiler_driver->GetInstructionSetFeatures();
/art/compiler/
H A Dcompiled_method.cc18 #include "driver/compiler_driver.h"
22 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, argument
24 : compiler_driver_(compiler_driver), instruction_set_(instruction_set),
29 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, argument
31 : compiler_driver_(compiler_driver), instruction_set_(instruction_set),
H A Dimage_writer.h28 #include "driver/compiler_driver.h"
43 explicit ImageWriter(const CompilerDriver& compiler_driver) argument
44 : compiler_driver_(compiler_driver), oat_file_(NULL), image_end_(0),
H A Doat_writer.cc457 const CompilerDriver* compiler_driver = writer_->compiler_driver_; local
459 CompiledClass* compiled_class = compiler_driver->GetCompiledClass(class_ref);
463 } else if (compiler_driver->GetVerificationResults()->IsClassRejected(class_ref)) {
/art/dex2oat/
H A Ddex2oat.cc45 #include "driver/compiler_driver.h"
337 bool PatchOatCode(const CompilerDriver* compiler_driver, File* oat_file, argument
349 return ElfPatcher::Patch(compiler_driver, elf_file.get(), oat_location, error_msg);
/art/compiler/driver/
H A Dcompiler_driver.cc17 #include "compiler_driver.h"
34 #include "compiler_driver-inl.h"
807 CompilerDriver* compiler_driver = reinterpret_cast<CompilerDriver*>(arg); local
809 MaybeAddToImageClasses(hs.NewHandle(object->GetClass()), compiler_driver->image_classes_.get());

Completed in 127 milliseconds