Home
last modified time | relevance | path

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

/aosp_15_r20/art/runtime/arch/x86/
H A 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()
[all …]
H A Dinstruction_set_features_x86.h86 std::string GetFeatureString() const override;
H A Dinstruction_set_features_x86.cc335 std::string X86InstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::X86InstructionSetFeatures
/aosp_15_r20/art/runtime/arch/arm64/
H A 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 …]
H A Dinstruction_set_features_arm64.h75 std::string GetFeatureString() const override;
H A Dinstruction_set_features_arm64.cc336 std::string Arm64InstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::Arm64InstructionSetFeatures
/aosp_15_r20/art/runtime/arch/arm/
H A 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()
H A Dinstruction_set_features_arm.h65 std::string GetFeatureString() const override;
H A Dinstruction_set_features_arm.cc333 std::string ArmInstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::ArmInstructionSetFeatures
/aosp_15_r20/art/runtime/arch/x86_64/
H A 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()
/aosp_15_r20/art/runtime/arch/riscv64/
H A Dinstruction_set_features_riscv64.h69 std::string GetFeatureString() const override;
H A Dinstruction_set_features_riscv64.cc111 std::string Riscv64InstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::Riscv64InstructionSetFeatures
/aosp_15_r20/art/runtime/arch/
H A Dinstruction_set_features.h116 virtual std::string GetFeatureString() const = 0;
H A Dinstruction_set_features.cc322 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString(); in operator <<()
/aosp_15_r20/art/compiler/optimizing/
H A Doptimizing_compiler.cc417 std::string features_string = "isa_features:" + features->GetFeatureString(); in DumpInstructionSetFeaturesToCfg()
/aosp_15_r20/art/runtime/
H A Druntime.cc2974 feature_string += features->GetFeatureString(); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
/aosp_15_r20/art/oatdump/
H A Doatdump.cc458 os << features->GetFeatureString() << "\n\n"; in Dump()