Home
last modified time | relevance | path

Searched refs:isa_ (Results 1 – 9 of 9) sorted by relevance

/art/dexoptanalyzer/
Ddexoptanalyzer.cc157 isa_ = GetInstructionSetFromString(isa_str.c_str()); in ParseArgs()
158 if (isa_ == kNone) { in ParseArgs()
192 const void* isa_opt = reinterpret_cast<const void*>(GetInstructionSetString(isa_)); in CreateRuntime()
226 OatFileAssistant oat_file_assistant(dex_file_.c_str(), isa_, /*load_executable*/ false); in GetDexOptNeeded()
256 InstructionSet isa_; member in art::FINAL
/art/patchoat/
Dpatchoat.h62 delta_(delta), isa_(isa), space_map_(map), timings_(timings) {} in PatchOat()
147 return InstructionSetPointerSize(isa_) == PointerSize::k32; in Is32BitISA()
180 const InstructionSet isa_; variable
Dpatchoat.cc419 const PointerSize pointer_size = InstructionSetPointerSize(isa_); in PatchArtMethods()
425 const PointerSize pointer_size = InstructionSetPointerSize(isa_); in PatchImTables()
436 const PointerSize pointer_size = InstructionSetPointerSize(isa_); in PatchImtConflictTables()
513 const PointerSize pointer_size = InstructionSetPointerSize(isa_); in PatchDexFileArrays()
655 const PointerSize pointer_size = InstructionSetPointerSize(isa_); in VisitObject()
684 const PointerSize pointer_size = InstructionSetPointerSize(isa_); in FixupMethod()
/art/compiler/utils/
Djni_macro_assembler.h235 const InstructionSet isa_; variable
237 explicit JNIMacroLabel(InstructionSet isa) : isa_(isa) {} in JNIMacroLabel()
275 CHECK_EQ(kIsa, label->isa_); in Cast()
/art/compiler/
Delf_writer_quick.cc58 : isa_(isa), in DebugInfoTask()
66 result_ = debug::MakeMiniDebugInfo(isa_, in Run()
78 InstructionSet isa_; member in art::DebugInfoTask
Delf_builder.h510 : isa_(isa), in ElfBuilder()
545 InstructionSet GetIsa() { return isa_; } in GetIsa()
643 Elf_Ehdr elf_header = MakeElfHeader(isa_, features_); in End()
691 if (isa_ == kMips || isa_ == kMips64) { in PrepareDynamicSection()
985 InstructionSet isa_; variable
/art/compiler/optimizing/
Dcodegen_test_utils.h68 : isa_(isa), create_codegen_(create_codegen) { in CodegenTargetConfig()
70 InstructionSet GetInstructionSet() const { return isa_; } in GetInstructionSet()
76 InstructionSet isa_;
/art/runtime/
Doat_file_assistant.cc73 : isa_(isa), in OatFileAssistant()
111 if (DexLocationToOdexFilename(dex_location_, isa_, &odex_file_name, &error_msg)) { in OatFileAssistant()
119 if (DexLocationToOatFilename(dex_location_, isa_, &oat_file_name, &error_msg)) { in OatFileAssistant()
181 std::string lock_file_name = dex_location_ + "." + GetInstructionSetString(isa_) + ".flock"; in Lock()
705 if (!PrepareOdexDirectories(dex_location_, oat_file_name, isa_, error_msg)) { in GenerateOatFileNoChecks()
920 cached_image_info_ = ImageInfo::GetRuntimeImageInfo(isa_, &error_msg); in GetImageInfo()
1147 if (!context->OpenDexFiles(oat_file_assistant_->isa_, classpath_dir)) { in ClassLoaderContextIsOkay()
Doat_file_assistant.h465 const InstructionSet isa_ = kNone; variable