Home
last modified time | relevance | path

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

/art/runtime/arch/arm64/
Dinstruction_set_features_arm64_test.cc26 std::unique_ptr<const InstructionSetFeatures> arm64_features( in TEST() local
28 ASSERT_TRUE(arm64_features.get() != nullptr) << error_msg; in TEST()
29 EXPECT_EQ(arm64_features->GetInstructionSet(), kArm64); in TEST()
30 EXPECT_TRUE(arm64_features->Equals(arm64_features.get())); in TEST()
31 EXPECT_STREQ("smp,a53", arm64_features->GetFeatureString().c_str()); in TEST()
32 EXPECT_EQ(arm64_features->AsBitmap(), 3U); in TEST()
34 EXPECT_TRUE(arm64_features->AsArm64InstructionSetFeatures()->PreferAcquireRelease()); in TEST()