Searched refs:RepeatA (Results 1 – 3 of 3) sorted by relevance
/art/compiler/utils/x86/ |
D | assembler_x86_test.cc | 225 TEST_F(AssemblerX86Test, RepeatA) { in TEST_F() argument 226 EXPECT_EQ("2(%eax,%ebx,1)\n", RepeatA(/*f*/ nullptr, addresses_singleton_, "{mem}")); in TEST_F() 293 DriverStr(RepeatA(&x86::X86Assembler::popl, all_addresses, "popl {mem}"), "popq"); in TEST_F() 365 DriverStr(RepeatA(&x86::X86Assembler::LockCmpxchg8b, in TEST_F() 385 DriverStr(RepeatA(&x86::X86Assembler::filds, "fildl {mem}"), "fildd"); in TEST_F() 389 DriverStr(RepeatA(&x86::X86Assembler::fildl, "fildll {mem}"), "fildl"); in TEST_F() 393 DriverStr(RepeatA(&x86::X86Assembler::fistps, "fistpl {mem}"), "fistps"); in TEST_F() 397 DriverStr(RepeatA(&x86::X86Assembler::fistpl, "fistpll {mem}"), "fistpl"); in TEST_F()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64_test.cc | 447 TEST_F(AssemblerX86_64Test, RepeatA) { in TEST_F() argument 448 EXPECT_EQ("-1(%rax,%rbx,1)\n", RepeatA(/*f*/ nullptr, addresses_singleton_, "{mem}")); in TEST_F() 456 RepeatA(/*f*/ nullptr, "{mem}")); in TEST_F() 541 DriverStr(RepeatA(&x86_64::X86_64Assembler::popq, all_addresses, "popq {mem}"), "popq"); in TEST_F() 2034 DriverStr(RepeatA(&x86_64::X86_64Assembler::filds, in TEST_F() 2040 DriverStr(RepeatA(&x86_64::X86_64Assembler::fildl, in TEST_F() 2046 DriverStr(RepeatA(&x86_64::X86_64Assembler::fistps, in TEST_F() 2052 DriverStr(RepeatA(&x86_64::X86_64Assembler::fistpl, in TEST_F()
|
/art/compiler/utils/ |
D | assembler_test.h | 864 std::string RepeatA(void (Ass::*f)(const Addr&), const std::string& fmt) { in RepeatA() function 865 return RepeatA(f, GetAddresses(), fmt); in RepeatA() 870 std::string RepeatA(void (Ass::*f)(const Addr&), in RepeatA() function
|