Home | History | Annotate | Download | only in arch

Lines Matching refs:GetInstructionSetString

36 TEST(InstructionSetTest, GetInstructionSetString) {
37 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kArm));
38 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kThumb2));
39 EXPECT_STREQ("arm64", GetInstructionSetString(InstructionSet::kArm64));
40 EXPECT_STREQ("x86", GetInstructionSetString(InstructionSet::kX86));
41 EXPECT_STREQ("x86_64", GetInstructionSetString(InstructionSet::kX86_64));
42 EXPECT_STREQ("mips", GetInstructionSetString(InstructionSet::kMips));
43 EXPECT_STREQ("mips64", GetInstructionSetString(InstructionSet::kMips64));
44 EXPECT_STREQ("none", GetInstructionSetString(InstructionSet::kNone));
63 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA)));