Searched refs:isa_str (Results 1 – 9 of 9) sorted by relevance
/art/libartbase/arch/ |
D | instruction_set.cc | 63 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/ |
D | jni_cfi_test.cc | 45 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/ |
D | optimizing_cfi_test.cc | 96 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/ |
D | cfi_test.h | 38 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/ |
D | dexoptanalyzer.cc | 184 const char* isa_str = raw_option + strlen("--isa="); in ParseArgs() local 185 isa_ = GetInstructionSetFromString(isa_str); in ParseArgs()
|
/art/odrefresh/ |
D | odrefresh.cc | 453 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/ |
D | parsed_options.cc | 554 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()
|
D | oat_file_assistant.h | 190 const std::string& isa_str,
|
D | oat_file_assistant.cc | 233 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()
|