Home
last modified time | relevance | path

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

/art/libartbase/arch/
Dinstruction_set.cc58 InstructionSet GetInstructionSetFromString(const char* isa_str) { in GetInstructionSetFromString() argument
59 CHECK(isa_str != nullptr); in GetInstructionSetFromString()
61 if (strcmp("arm", isa_str) == 0) { in GetInstructionSetFromString()
63 } else if (strcmp("arm64", isa_str) == 0) { in GetInstructionSetFromString()
65 } else if (strcmp("x86", isa_str) == 0) { in GetInstructionSetFromString()
67 } else if (strcmp("x86_64", 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
107 isa_str, in TestImplSized()
/art/compiler/optimizing/
Doptimizing_cfi_test.cc95 const char* isa_str, in Check() argument
104 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in Check()
112 isa_str, in TestImpl() argument
117 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.cc476 const char* isa_str = reinterpret_cast<const char*>(options[i].second); in ProcessSpecialOptions() local
477 auto&& image_isa = GetInstructionSetFromString(isa_str); in ProcessSpecialOptions()
479 Usage("%s is not a valid instruction set.", isa_str); in ProcessSpecialOptions()