Home
last modified time | relevance | path

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

/art/libartbase/arch/
Dinstruction_set.cc64 InstructionSet GetInstructionSetFromString(const char* isa_str) { in GetInstructionSetFromString() argument
65 CHECK(isa_str != nullptr); in GetInstructionSetFromString()
67 if (strcmp("arm", isa_str) == 0) { in GetInstructionSetFromString()
69 } else if (strcmp("arm64", isa_str) == 0) { in GetInstructionSetFromString()
71 } else if (strcmp("x86", isa_str) == 0) { in GetInstructionSetFromString()
73 } else if (strcmp("x86_64", isa_str) == 0) { in GetInstructionSetFromString()
75 } else if (strcmp("mips", isa_str) == 0) { in GetInstructionSetFromString()
77 } else if (strcmp("mips64", isa_str) == 0) { in GetInstructionSetFromString()
/art/compiler/jni/
Djni_cfi_test.cc44 const char* isa_str, in TestImpl() argument
48 TestImplSized<PointerSize::k64>(isa, isa_str, expected_asm, expected_cfi); in TestImpl()
50 TestImplSized<PointerSize::k32>(isa, isa_str, expected_asm, expected_cfi); in TestImpl()
57 const char* isa_str, in TestImplSized() argument
100 isa_str, in TestImplSized()
/art/compiler/optimizing/
Doptimizing_cfi_test.cc97 const char* isa_str, in Check() argument
106 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in Check()
114 isa_str, in TestImpl() argument
119 Check(isa, isa_str, expected_asm, expected_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/dexoptanalyzer/
Ddexoptanalyzer.cc190 const char* isa_str = raw_option + strlen("--isa="); in ParseArgs() local
191 isa_ = GetInstructionSetFromString(isa_str); in ParseArgs()
/art/runtime/
Dparsed_options.cc410 const char* isa_str = reinterpret_cast<const char*>(options[i].second); in ProcessSpecialOptions() local
411 auto&& image_isa = GetInstructionSetFromString(isa_str); in ProcessSpecialOptions()
413 Usage("%s is not a valid instruction set.", isa_str); in ProcessSpecialOptions()