Home
last modified time | relevance | path

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

/art/compiler/utils/x86/
Dassembler_x86_test.cc230 TEST_F(AssemblerX86Test, RepeatAI) { in TEST_F() argument
232 RepeatAI(/*f*/ nullptr, /*imm_bytes*/ 1U, addresses_singleton_, "{mem} ${imm}")); in TEST_F()
306 DriverStr(RepeatAI(&x86::X86Assembler::addw, /*imm_bytes*/ 2U, "addw ${imm}, {mem}"), "addw"); in TEST_F()
310 DriverStr(RepeatAI(&x86::X86Assembler::andw, /*imm_bytes*/ 2U, "andw ${imm}, {mem}"), "andw"); in TEST_F()
599 DriverStr(RepeatAI(&x86::X86Assembler::testb, /*imm_bytes*/ 1U, "testb ${imm}, {mem}"), "testb"); in TEST_F()
603 DriverStr(RepeatAI(&x86::X86Assembler::testl, /*imm_bytes*/ 4U, "testl ${imm}, {mem}"), "testl"); in TEST_F()
1346 DriverStr(RepeatAI(&x86::X86Assembler::cmpb, in TEST_F()
1352 DriverStr(RepeatAI(&x86::X86Assembler::cmpw, /*imm_bytes*/ 2U, "cmpw ${imm}, {mem}"), "cmpw"); in TEST_F()
/art/compiler/utils/x86_64/
Dassembler_x86_64_test.cc460 TEST_F(AssemblerX86_64Test, RepeatAI) { in TEST_F() argument
462 RepeatAI(/*f*/ nullptr, /*imm_bytes*/ 1U, addresses_singleton_, "{mem} ${imm}")); in TEST_F()
592 RepeatAI(&x86_64::X86_64Assembler::addw, /*imm_bytes*/2U, "addw ${imm}, {mem}"), "addw"); in TEST_F()
921 RepeatAI(&x86_64::X86_64Assembler::andw, /*imm_bytes*/2U, "andw ${imm}, {mem}"), "andw"); in TEST_F()
1106 RepeatAI(&x86_64::X86_64Assembler::cmpw, /*imm_bytes*/ 2U, "cmpw ${imm}, {mem}"), "cmpw"); in TEST_F()
1110 DriverStr(RepeatAI(&x86_64::X86_64Assembler::movq, in TEST_F()
1116 DriverStr(RepeatAI(&x86_64::X86_64Assembler::movl, in TEST_F()
1121 DriverStr(RepeatAI(&x86_64::X86_64Assembler::movw, in TEST_F()
1126 DriverStr(RepeatAI(&x86_64::X86_64Assembler::movb, in TEST_F()
2434 DriverStr(RepeatAI(&x86_64::X86_64Assembler::cmpb, in TEST_F()
[all …]
/art/compiler/utils/
Dassembler_test.h896 std::string RepeatAI(void (Ass::*f)(const Addr&, const Imm&), in RepeatAI() function
899 return RepeatAI(f, imm_bytes, GetAddresses(), fmt); in RepeatAI()
904 std::string RepeatAI(void (Ass::*f)(const Addr&, const Imm&), in RepeatAI() function