Home
last modified time | relevance | path

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

/art/runtime/arch/
Dinstruction_set.cc48 InstructionSet GetInstructionSetFromString(const char* isa_str) { in GetInstructionSetFromString() argument
49 CHECK(isa_str != nullptr); in GetInstructionSetFromString()
51 if (strcmp("arm", isa_str) == 0) { in GetInstructionSetFromString()
53 } else if (strcmp("arm64", isa_str) == 0) { in GetInstructionSetFromString()
55 } else if (strcmp("x86", isa_str) == 0) { in GetInstructionSetFromString()
57 } else if (strcmp("x86_64", isa_str) == 0) { in GetInstructionSetFromString()
59 } else if (strcmp("mips", isa_str) == 0) { in GetInstructionSetFromString()
61 } else if (strcmp("mips64", isa_str) == 0) { in GetInstructionSetFromString()
/art/compiler/jni/
Djni_cfi_test.cc38 void TestImpl(InstructionSet isa, const char* isa_str, in TestImpl() argument
67 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in TestImpl()
/art/compiler/
Dcfi_test.h37 void GenerateExpected(FILE* f, InstructionSet isa, const char* isa_str, in GenerateExpected() argument
42 fprintf(f, "static constexpr uint8_t expected_asm_%s[] = {", isa_str); in GenerateExpected()
45 fprintf(f, "static constexpr uint8_t expected_cfi_%s[] = {", isa_str); in GenerateExpected()
/art/compiler/optimizing/
Doptimizing_cfi_test.cc39 void TestImpl(InstructionSet isa, const char* isa_str, in TestImpl() argument
86 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in TestImpl()
/art/compiler/dex/quick/
Dquick_cfi_test.cc46 void TestImpl(InstructionSet isa, const char* isa_str, in TestImpl() argument
115 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in TestImpl()
/art/runtime/
Dparsed_options.cc311 const char* isa_str = reinterpret_cast<const char*>(options[i].second); in ProcessSpecialOptions() local
312 auto&& image_isa = GetInstructionSetFromString(isa_str); in ProcessSpecialOptions()
314 Usage("%s is not a valid instruction set.", isa_str); in ProcessSpecialOptions()
/art/patchoat/
Dpatchoat.cc987 const char* isa_str = option.substr(strlen("--instruction-set=")).data(); in patchoat() local
988 isa = GetInstructionSetFromString(isa_str); in patchoat()
990 Usage("Unknown or invalid instruction set %s", isa_str); in patchoat()