Home
last modified time | relevance | path

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

/art/runtime/arch/arm64/
Dinstruction_set_features_arm64_test.cc77 std::unique_ptr<const InstructionSetFeatures> cortex_a55_features( in TEST() local
79 ASSERT_TRUE(cortex_a55_features.get() != nullptr) << error_msg; in TEST()
80 EXPECT_EQ(cortex_a55_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
81 EXPECT_TRUE(cortex_a55_features->Equals(cortex_a55_features.get())); in TEST()
82 EXPECT_FALSE(cortex_a55_features->Equals(cortex_a35_features.get())); in TEST()
83 EXPECT_FALSE(cortex_a55_features->Equals(cortex_a57_features.get())); in TEST()
85 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod,-sve", cortex_a55_features->GetFeatureString().c_str()); in TEST()
86 EXPECT_EQ(cortex_a55_features->AsBitmap(), 30U); in TEST()
96 EXPECT_TRUE(cortex_a75_features->HasAtLeast(cortex_a55_features.get())); in TEST()
117 EXPECT_TRUE(cortex_a76_features->HasAtLeast(cortex_a55_features.get())); in TEST()