Home
last modified time | relevance | path

Searched refs:RepeatFA (Results 1 – 3 of 3) sorted by relevance

/aosp12/art/compiler/utils/x86/
H A Dassembler_x86_test.cc248 TEST_F(AssemblerX86Test, RepeatFA) { in TEST_F() argument
252 RepeatFA(/*f*/ nullptr, addresses_singleton_, "%{reg} {mem}")); in TEST_F()
527 DriverStr(RepeatFA(&x86::X86Assembler::comiss, "comiss {mem}, %{reg}"), "comiss"); in TEST_F()
531 DriverStr(RepeatFA(&x86::X86Assembler::ucomiss, "ucomiss {mem}, %{reg}"), "ucomiss"); in TEST_F()
535 DriverStr(RepeatFA(&x86::X86Assembler::comisd, "comisd {mem}, %{reg}"), "comisd"); in TEST_F()
539 DriverStr(RepeatFA(&x86::X86Assembler::ucomisd, "ucomisd {mem}, %{reg}"), "ucomisd"); in TEST_F()
587 DriverStr(RepeatFA(&x86::X86Assembler::movaps, "movaps {mem}, %{reg}"), "movaps_load"); in TEST_F()
611 DriverStr(RepeatFA(&x86::X86Assembler::movups, "movups {mem}, %{reg}"), "movups_load"); in TEST_F()
647 DriverStr(RepeatFA(&x86::X86Assembler::movapd, "movapd {mem}, %{reg}"), "movapd_load"); in TEST_F()
671 DriverStr(RepeatFA(&x86::X86Assembler::movupd, "movupd {mem}, %{reg}"), "movupd_load"); in TEST_F()
[all …]
/aosp12/art/compiler/utils/x86_64/
H A Dassembler_x86_64_test.cc492 TEST_F(AssemblerX86_64Test, RepeatFA) { in TEST_F() argument
493 EXPECT_NE(RepeatFA(/*f*/ nullptr, addresses_singleton_, "%{reg} {mem}"). in TEST_F()
1085 DriverStr(RepeatFA(&x86_64::X86_64Assembler::comiss, "comiss {mem}, %{reg}"), "comiss"); in TEST_F()
1089 DriverStr(RepeatFA(&x86_64::X86_64Assembler::comisd, "comisd {mem}, %{reg}"), "comisd"); in TEST_F()
1093 DriverStr(RepeatFA(&x86_64::X86_64Assembler::ucomiss, "ucomiss {mem}, %{reg}"), "ucomiss"); in TEST_F()
1159 DriverStr(RepeatFA(&x86_64::X86_64Assembler::movaps, "movaps {mem}, %{reg}"), "movaps_l"); in TEST_F()
1183 DriverStr(RepeatFA(&x86_64::X86_64Assembler::movups, "movups {mem}, %{reg}"), "movups_l"); in TEST_F()
1223 DriverStr(RepeatFA(&x86_64::X86_64Assembler::movapd, "movapd {mem}, %{reg}"), "movapd_l"); in TEST_F()
1247 DriverStr(RepeatFA(&x86_64::X86_64Assembler::movupd, "movupd {mem}, %{reg}"), "movupd_l"); in TEST_F()
1287 DriverStr(RepeatFA(&x86_64::X86_64Assembler::movdqa, "movdqa {mem}, %{reg}"), "movdqa_l"); in TEST_F()
[all …]
/aosp12/art/compiler/utils/
H A Dassembler_test.h969 std::string RepeatFA(void (Ass::*f)(FPReg, const Addr&), const std::string& fmt) { in RepeatFA() function
970 return RepeatFA(f, GetAddresses(), fmt); in RepeatFA()
975 std::string RepeatFA(void (Ass::*f)(FPReg, const Addr&), in RepeatFA() function