Home
last modified time | relevance | path

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

/art/libartbase/arch/
Dinstruction_set.cc63 InstructionSet GetInstructionSetFromString(const char* isa_str) { in GetInstructionSetFromString() argument
64 CHECK(isa_str != nullptr); in GetInstructionSetFromString()
66 if (strcmp("arm", isa_str) == 0) { in GetInstructionSetFromString()
68 } else if (strcmp("arm64", isa_str) == 0) { in GetInstructionSetFromString()
70 } else if (strcmp("riscv64", isa_str) == 0) { in GetInstructionSetFromString()
72 } else if (strcmp("x86", isa_str) == 0) { in GetInstructionSetFromString()
74 } else if (strcmp("x86_64", isa_str) == 0) { in GetInstructionSetFromString()
/art/compiler/jni/
Djni_cfi_test.cc45 const char* isa_str, in TestImpl() argument
49 TestImplSized<PointerSize::k64>(isa, isa_str, expected_asm, expected_cfi); in TestImpl()
51 TestImplSized<PointerSize::k32>(isa, isa_str, expected_asm, expected_cfi); in TestImpl()
58 const char* isa_str, in TestImplSized() argument
109 isa_str, in TestImplSized()
/art/compiler/optimizing/
Doptimizing_cfi_test.cc96 const char* isa_str, in Check() argument
105 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in Check()
113 isa_str, in TestImpl() argument
118 Check(isa, isa_str, expected_asm, expected_cfi); in TestImpl()
/art/compiler/
Dcfi_test.h38 void GenerateExpected(FILE* f, InstructionSet isa, const char* isa_str, in GenerateExpected() argument
43 fprintf(f, "static constexpr uint8_t expected_asm_%s[] = {", isa_str); in GenerateExpected()
46 fprintf(f, "static constexpr uint8_t expected_cfi_%s[] = {", isa_str); in GenerateExpected()
/art/dexoptanalyzer/
Ddexoptanalyzer.cc184 const char* isa_str = raw_option + strlen("--isa="); in ParseArgs() local
185 isa_ = GetInstructionSetFromString(isa_str); in ParseArgs()
/art/odrefresh/
Dodrefresh.cc453 const char* isa_str = GetInstructionSetString(isa); in AddDex2OatInstructionSet() local
454 args.emplace_back(StringPrintf("--instruction-set=%s", isa_str)); in AddDex2OatInstructionSet()
965 const char* isa_str = GetInstructionSetString(config_.GetSystemServerIsa()); in GetSystemServerImagePath() local
967 return "{}/oat/{}/{}"_format(Dirname(jar_path), isa_str, image_name); in GetSystemServerImagePath()
1335 const char* isa_str = GetInstructionSetString(isa); in CheckBootClasspathArtifactsAreUpToDate() local
1359 LOG(INFO) << "Boot images on /system OK ({})"_format(isa_str); in CheckBootClasspathArtifactsAreUpToDate()
1364 LOG(INFO) << "Checking boot images /data ({})"_format(isa_str); in CheckBootClasspathArtifactsAreUpToDate()
1381 LOG(INFO) << "Found minimal primary boot image ({})"_format(isa_str); in CheckBootClasspathArtifactsAreUpToDate()
1411 LOG(INFO) << "Boot images on /data OK ({})"_format(isa_str); in CheckBootClasspathArtifactsAreUpToDate()
/art/runtime/
Dparsed_options.cc554 const char* isa_str = reinterpret_cast<const char*>(options[i].second); in ProcessSpecialOptions() local
555 auto&& image_isa = GetInstructionSetFromString(isa_str); in ProcessSpecialOptions()
557 Usage("%s is not a valid instruction set.", isa_str); in ProcessSpecialOptions()
Doat_file_assistant.h190 const std::string& isa_str,
Doat_file_assistant.cc233 const std::string& isa_str, in Create() argument
240 InstructionSet isa = GetInstructionSetFromString(isa_str.c_str()); in Create()
242 *error_msg = StringPrintf("Instruction set '%s' is invalid", isa_str.c_str()); in Create()