Home
last modified time | relevance | path

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

/aosp12/art/runtime/arch/arm64/
H A Dinstruction_set_features_arm64_test.cc108 std::unique_ptr<const InstructionSetFeatures> cortex_a76_features( in TEST() local
110 ASSERT_TRUE(cortex_a76_features.get() != nullptr) << error_msg; in TEST()
111 EXPECT_EQ(cortex_a76_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
112 EXPECT_TRUE(cortex_a76_features->Equals(cortex_a76_features.get())); in TEST()
113 EXPECT_FALSE(cortex_a76_features->Equals(cortex_a35_features.get())); in TEST()
114 EXPECT_FALSE(cortex_a76_features->Equals(cortex_a57_features.get())); in TEST()
115 EXPECT_TRUE(cortex_a76_features->Equals(cortex_a75_features.get())); in TEST()
116 EXPECT_TRUE(cortex_a76_features->HasAtLeast(arm64_features.get())); in TEST()
117 EXPECT_TRUE(cortex_a76_features->HasAtLeast(cortex_a55_features.get())); in TEST()
118 EXPECT_FALSE(cortex_a35_features->HasAtLeast(cortex_a76_features.get())); in TEST()
[all …]