Searched refs:RepeatA (Results 1 – 3 of 3) sorted by relevance
/art/compiler/utils/x86/ |
D | assembler_x86_test.cc | 195 TEST_F(AssemblerX86Test, RepeatA) { in TEST_F() argument 196 EXPECT_EQ("2(%eax,%ebx,1)\n", RepeatA(/*f*/ nullptr, addresses_singleton_, "{mem}")); in TEST_F() 263 DriverStr(RepeatA(&x86::X86Assembler::popl, all_addresses, "popl {mem}"), "popq"); in TEST_F() 302 DriverStr(RepeatA(&x86::X86Assembler::LockCmpxchg8b, in TEST_F() 307 DriverStr(RepeatA(&x86::X86Assembler::filds, "fildl {mem}"), "fildd"); in TEST_F() 311 DriverStr(RepeatA(&x86::X86Assembler::fildl, "fildll {mem}"), "fildl"); in TEST_F() 315 DriverStr(RepeatA(&x86::X86Assembler::fistps, "fistpl {mem}"), "fistps"); in TEST_F() 319 DriverStr(RepeatA(&x86::X86Assembler::fistpl, "fistpll {mem}"), "fistpl"); in TEST_F()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64_test.cc | 452 TEST_F(AssemblerX86_64Test, RepeatA) { in TEST_F() argument 453 EXPECT_EQ("-1(%rax,%rbx,1)\n", RepeatA(/*f*/ nullptr, addresses_singleton_, "{mem}")); in TEST_F() 461 RepeatA(/*f*/ nullptr, "{mem}")); in TEST_F() 546 DriverStr(RepeatA(&x86_64::X86_64Assembler::popq, all_addresses, "popq {mem}"), "popq"); in TEST_F() 2018 DriverStr(RepeatA(&x86_64::X86_64Assembler::filds, in TEST_F() 2024 DriverStr(RepeatA(&x86_64::X86_64Assembler::fildl, in TEST_F() 2030 DriverStr(RepeatA(&x86_64::X86_64Assembler::fistps, in TEST_F() 2036 DriverStr(RepeatA(&x86_64::X86_64Assembler::fistpl, in TEST_F()
|
/art/compiler/utils/ |
D | assembler_test.h | 910 std::string RepeatA(void (Ass::*f)(const Addr&), const std::string& fmt) { in RepeatA() function 911 return RepeatA(f, GetAddresses(), fmt); in RepeatA() 916 std::string RepeatA(void (Ass::*f)(const Addr&), in RepeatA() function
|