Home
last modified time | relevance | path

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

/art/runtime/arch/arm64/
Dinstruction_set_features_arm64_test.cc88 std::unique_ptr<const InstructionSetFeatures> cortex_a75_features( in TEST() local
90 ASSERT_TRUE(cortex_a75_features.get() != nullptr) << error_msg; in TEST()
91 EXPECT_EQ(cortex_a75_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
92 EXPECT_TRUE(cortex_a75_features->Equals(cortex_a75_features.get())); in TEST()
93 EXPECT_FALSE(cortex_a75_features->Equals(cortex_a35_features.get())); in TEST()
94 EXPECT_FALSE(cortex_a75_features->Equals(cortex_a57_features.get())); in TEST()
95 EXPECT_TRUE(cortex_a75_features->HasAtLeast(arm64_features.get())); in TEST()
96 EXPECT_TRUE(cortex_a75_features->HasAtLeast(cortex_a55_features.get())); in TEST()
97 EXPECT_FALSE(cortex_a35_features->HasAtLeast(cortex_a75_features.get())); in TEST()
98 EXPECT_FALSE(cortex_a75_features->AsArm64InstructionSetFeatures()->NeedFixCortexA53_835769()); in TEST()
[all …]