Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
Dinstruction_set_features_x86_test.cc31 x86_features->GetFeatureString().c_str()); in TEST()
44 x86_features->GetFeatureString().c_str()); in TEST()
54 x86_default_features->GetFeatureString().c_str()); in TEST()
64 x86_64_features->GetFeatureString().c_str()); in TEST()
81 x86_features->GetFeatureString().c_str()); in TEST()
91 x86_default_features->GetFeatureString().c_str()); in TEST()
101 x86_64_features->GetFeatureString().c_str()); in TEST()
118 x86_features->GetFeatureString().c_str()); in TEST()
128 x86_default_features->GetFeatureString().c_str()); in TEST()
138 x86_64_features->GetFeatureString().c_str()); in TEST()
[all …]
Dinstruction_set_features_x86.h62 std::string GetFeatureString() const override;
Dinstruction_set_features_x86.cc270 std::string X86InstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::X86InstructionSetFeatures
/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.h61 std::string GetFeatureString() const override;
Dinstruction_set_features_arm.cc296 std::string ArmInstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::ArmInstructionSetFeatures
/art/runtime/arch/arm64/
Dinstruction_set_features_arm64_test.cc31 EXPECT_STREQ("a53,crc,-lse,-fp16,-dotprod", arm64_features->GetFeatureString().c_str()); in TEST()
40 EXPECT_STREQ("a53,crc,-lse,-fp16,-dotprod", cortex_a57_features->GetFeatureString().c_str()); in TEST()
52 EXPECT_STREQ("a53,crc,-lse,-fp16,-dotprod", cortex_a73_features->GetFeatureString().c_str()); in TEST()
60 EXPECT_STREQ("-a53,crc,-lse,-fp16,-dotprod", cortex_a35_features->GetFeatureString().c_str()); in TEST()
70 EXPECT_STREQ("-a53,crc,-lse,-fp16,-dotprod", kryo_features->GetFeatureString().c_str()); in TEST()
81 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod", cortex_a55_features->GetFeatureString().c_str()); in TEST()
100 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod", cortex_a75_features->GetFeatureString().c_str()); in TEST()
120 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod", cortex_a76_features->GetFeatureString().c_str()); in TEST()
142 EXPECT_STREQ("-a53,crc,lse,fp16,dotprod", a76_features->GetFeatureString().c_str()); in TEST()
154 EXPECT_STREQ("a53,crc,-lse,-fp16,-dotprod", generic_features->GetFeatureString().c_str()); in TEST()
[all …]
Dinstruction_set_features_arm64.h64 std::string GetFeatureString() const override;
Dinstruction_set_features_arm64.cc267 std::string Arm64InstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::Arm64InstructionSetFeatures
/art/runtime/arch/mips64/
Dinstruction_set_features_mips64_test.cc30 EXPECT_STREQ("msa", mips64_features->GetFeatureString().c_str()); in TEST()
41 EXPECT_STREQ("msa", mips64r6_features->GetFeatureString().c_str()); in TEST()
Dinstruction_set_features_mips64.h59 std::string GetFeatureString() const override;
Dinstruction_set_features_mips64.cc103 std::string Mips64InstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::Mips64InstructionSetFeatures
/art/runtime/arch/mips/
Dinstruction_set_features_mips_test.cc30 EXPECT_STREQ("fpu32,mips2,-msa", mips_features->GetFeatureString().c_str()); in TEST()
41 EXPECT_STREQ("fpu32,-mips2,-msa", mips32r1_features->GetFeatureString().c_str()); in TEST()
57 EXPECT_STREQ("fpu32,mips2,-msa", mips32r2_features->GetFeatureString().c_str()); in TEST()
78 EXPECT_STREQ("-fpu32,mips2,msa", mips32r5_features->GetFeatureString().c_str()); in TEST()
104 EXPECT_STREQ("-fpu32,mips2,r6,msa", mips32r6_features->GetFeatureString().c_str()); in TEST()
Dinstruction_set_features_mips.h61 std::string GetFeatureString() const override;
Dinstruction_set_features_mips.cc187 std::string MipsInstructionSetFeatures::GetFeatureString() const { in GetFeatureString() function in art::MipsInstructionSetFeatures
/art/runtime/arch/x86_64/
Dinstruction_set_features_x86_64_test.cc31 x86_64_features->GetFeatureString().c_str()); in TEST()
/art/runtime/arch/
Dinstruction_set_features.h109 virtual std::string GetFeatureString() const = 0;
Dinstruction_set_features.cc297 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString(); in operator <<()
/art/oatdump/
Doatdump.cc437 os << features->GetFeatureString() << "\n\n"; in Dump()