Searched refs:arm64_features (Results 1 – 2 of 2) sorted by relevance
/art/runtime/arch/arm64/ |
D | instruction_set_features_arm64_test.cc | 26 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(), InstructionSet::kArm64); in TEST() 30 EXPECT_TRUE(arm64_features->Equals(arm64_features.get())); in TEST() 31 EXPECT_STREQ("a53,crc,-lse,-fp16,-dotprod,-sve", arm64_features->GetFeatureString().c_str()); in TEST() 32 EXPECT_EQ(arm64_features->AsBitmap(), 3U); in TEST() 39 EXPECT_TRUE(cortex_a57_features->HasAtLeast(arm64_features.get())); in TEST() 84 EXPECT_TRUE(cortex_a35_features->HasAtLeast(arm64_features.get())); in TEST() 95 EXPECT_TRUE(cortex_a75_features->HasAtLeast(arm64_features.get())); in TEST() 116 EXPECT_TRUE(cortex_a76_features->HasAtLeast(arm64_features.get())); in TEST() [all …]
|
D | instruction_set_features_arm64.cc | 404 const Arm64InstructionSetFeatures *arm64_features = features->AsArm64InstructionSetFeatures(); in AddRuntimeDetectedFeatures() local 408 arm64_features->has_crc_, in AddRuntimeDetectedFeatures() 409 arm64_features->has_lse_, in AddRuntimeDetectedFeatures() 410 arm64_features->has_fp16_, in AddRuntimeDetectedFeatures() 411 arm64_features->has_dotprod_, in AddRuntimeDetectedFeatures() 412 arm64_features->has_sve_)); in AddRuntimeDetectedFeatures()
|