Home
last modified time | relevance | path

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

/art/runtime/arch/arm/
Dinstruction_set_features_arm_test.cc32 EXPECT_TRUE(krait_features->AsArmInstructionSetFeatures()->HasDivideInstruction()); in TEST()
33 EXPECT_TRUE(krait_features->AsArmInstructionSetFeatures()->HasAtomicLdrdAndStrd()); in TEST()
44 EXPECT_TRUE(kryo_features->AsArmInstructionSetFeatures()->HasDivideInstruction()); in TEST()
45 EXPECT_TRUE(kryo_features->AsArmInstructionSetFeatures()->HasAtomicLdrdAndStrd()); in TEST()
57 EXPECT_FALSE(generic_features->AsArmInstructionSetFeatures()->HasDivideInstruction()); in TEST()
58 EXPECT_FALSE(generic_features->AsArmInstructionSetFeatures()->HasAtomicLdrdAndStrd()); in TEST()
82 EXPECT_TRUE(krait_features->AsArmInstructionSetFeatures()->HasDivideInstruction()); in TEST()
83 EXPECT_TRUE(krait_features->AsArmInstructionSetFeatures()->HasAtomicLdrdAndStrd()); in TEST()
94 EXPECT_TRUE(kryo_features->AsArmInstructionSetFeatures()->HasDivideInstruction()); in TEST()
95 EXPECT_TRUE(kryo_features->AsArmInstructionSetFeatures()->HasAtomicLdrdAndStrd()); in TEST()
[all …]
Dinstruction_set_features_arm.cc274 const ArmInstructionSetFeatures* other_as_arm = other->AsArmInstructionSetFeatures(); in Equals()
284 const ArmInstructionSetFeatures* other_as_arm = other->AsArmInstructionSetFeatures(); in HasAtLeast()
/art/runtime/arch/
Dinstruction_set_features.h110 const ArmInstructionSetFeatures* AsArmInstructionSetFeatures() const;
Dinstruction_set_features.cc223 const ArmInstructionSetFeatures* InstructionSetFeatures::AsArmInstructionSetFeatures() const { in AsArmInstructionSetFeatures() function in art::InstructionSetFeatures
/art/compiler/optimizing/
Dcode_generator_arm_vixl.cc1025 return *GetCompilerOptions().GetInstructionSetFeatures()->AsArmInstructionSetFeatures(); in GetInstructionSetFeatures()