Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
Dinstruction_set_features_x86_test.cc31 EXPECT_EQ(x86_features->GetFeatureString(), in TEST()
32 is_runtime_isa ? X86InstructionSetFeatures::FromCppDefines()->GetFeatureString() in TEST()
47 x86_features->GetFeatureString().c_str()); in TEST()
57 x86_64_features->GetFeatureString().c_str()); in TEST()
72 x86_features->GetFeatureString().c_str()); in TEST()
82 x86_64_features->GetFeatureString().c_str()); in TEST()
97 x86_features->GetFeatureString().c_str()); in TEST()
107 x86_64_features->GetFeatureString().c_str()); in TEST()
122 x86_features->GetFeatureString().c_str()); in TEST()
132 x86_64_features->GetFeatureString().c_str()); in TEST()
Dinstruction_set_features_x86.h85 std::string GetFeatureString() const override;
Dinstruction_set_features_x86.cc302 std::string X86InstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::X86InstructionSetFeatures
/art/runtime/arch/arm64/
Dinstruction_set_features_arm64_test.cc31 EXPECT_STREQ("a53,crc,-lse,-fp16,-dotprod,-sve", arm64_features->GetFeatureString().c_str()); in TEST()
41 cortex_a57_features->GetFeatureString().c_str()); in TEST()
55 cortex_a73_features->GetFeatureString().c_str()); in TEST()
64 cortex_a35_features->GetFeatureString().c_str()); in TEST()
74 EXPECT_STREQ("-a53,crc,-lse,-fp16,-dotprod,-sve", kryo_features->GetFeatureString().c_str()); in TEST()
85 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod,-sve", cortex_a55_features->GetFeatureString().c_str()); in TEST()
105 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod,-sve", cortex_a75_features->GetFeatureString().c_str()); in TEST()
126 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod,-sve", cortex_a76_features->GetFeatureString().c_str()); in TEST()
149 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod,-sve", a76_features->GetFeatureString().c_str()); in TEST()
162 EXPECT_STREQ("a53,crc,-lse,-fp16,-dotprod,-sve", generic_features->GetFeatureString().c_str()); in TEST()
[all …]
Dinstruction_set_features_arm64.h70 std::string GetFeatureString() const override;
Dinstruction_set_features_arm64.cc310 std::string Arm64InstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::Arm64InstructionSetFeatures
/art/runtime/arch/arm/
Dinstruction_set_features_arm_test.cc34 EXPECT_STREQ("div,atomic_ldrd_strd,-armv8a", krait_features->GetFeatureString().c_str()); in TEST()
46 EXPECT_STREQ("div,atomic_ldrd_strd,armv8a", kryo_features->GetFeatureString().c_str()); in TEST()
59 EXPECT_STREQ("-div,-atomic_ldrd_strd,-armv8a", generic_features->GetFeatureString().c_str()); in TEST()
84 EXPECT_STREQ("div,atomic_ldrd_strd,-armv8a", krait_features->GetFeatureString().c_str()); in TEST()
96 EXPECT_STREQ("div,atomic_ldrd_strd,-armv8a", kryo_features->GetFeatureString().c_str()); in TEST()
110 EXPECT_STREQ("div,atomic_ldrd_strd,armv8a", denver_features->GetFeatureString().c_str()); in TEST()
123 EXPECT_STREQ("-div,-atomic_ldrd_strd,-armv8a", generic_features->GetFeatureString().c_str()); in TEST()
Dinstruction_set_features_arm.h64 std::string GetFeatureString() const override;
Dinstruction_set_features_arm.cc318 std::string ArmInstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::ArmInstructionSetFeatures
/art/runtime/arch/x86_64/
Dinstruction_set_features_x86_64_test.cc31 EXPECT_EQ(x86_64_features->GetFeatureString(), in TEST()
32 is_runtime_isa ? X86_64InstructionSetFeatures::FromCppDefines()->GetFeatureString() in TEST()
/art/runtime/arch/
Dinstruction_set_features.h110 virtual std::string GetFeatureString() const = 0;
Dinstruction_set_features.cc277 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString(); in operator <<()
/art/compiler/optimizing/
Doptimizing_compiler.cc447 std::string features_string = "isa_features:" + features->GetFeatureString(); in DumpInstructionSetFeaturesToCfg()
/art/runtime/
Druntime.cc2870 feature_string += features->GetFeatureString(); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
/art/oatdump/
Doatdump.cc435 os << features->GetFeatureString() << "\n\n"; in Dump()