Home
last modified time | relevance | path

Searched refs:vmovdqa (Results 1 – 6 of 6) sorted by relevance

/art/compiler/utils/x86/
Dassembler_x86_test.cc613 DriverStr(RepeatFF(&x86::X86Assembler::vmovdqa, "vmovdqa %{reg2}, %{reg1}"), "vmovdqa"); in TEST_F()
625 DriverStr(RepeatFA(&x86::X86Assembler::vmovdqa, "vmovdqa {mem}, %{reg}"), "vmovdqa_load"); in TEST_F()
637 DriverStr(RepeatAF(&x86::X86Assembler::vmovdqa, "vmovdqa %{reg}, {mem}"), "vmovdqa_store"); in TEST_F()
Dassembler_x86.h469 void vmovdqa(XmmRegister dst, XmmRegister src); // move
470 void vmovdqa(XmmRegister dst, const Address& src); // load aligned
472 void vmovdqa(const Address& dst, XmmRegister src); // store aligned
Dassembler_x86.cc1186 vmovdqa(dst, src); in movdqa()
1197 void X86Assembler::vmovdqa(XmmRegister dst, XmmRegister src) { in vmovdqa() function in art::x86::X86Assembler
1217 vmovdqa(dst, src); in movdqa()
1228 void X86Assembler::vmovdqa(XmmRegister dst, const Address& src) { in vmovdqa() function in art::x86::X86Assembler
1279 vmovdqa(dst, src); in movdqa()
1290 void X86Assembler::vmovdqa(const Address& dst, XmmRegister src) { in vmovdqa() function in art::x86::X86Assembler
/art/compiler/utils/x86_64/
Dassembler_x86_64.h501 void vmovdqa(XmmRegister dst, XmmRegister src); // move
502 void vmovdqa(XmmRegister dst, const Address& src); // load aligned
503 void vmovdqa(const Address& dst, XmmRegister src); // store aligned
Dassembler_x86_64.cc1552 vmovdqa(dst, src); in movdqa()
1564 void X86_64Assembler::vmovdqa(XmmRegister dst, XmmRegister src) { in vmovdqa() function in art::x86_64::X86_64Assembler
1613 vmovdqa(dst, src); in movdqa()
1625 void X86_64Assembler::vmovdqa(XmmRegister dst, const Address& src) { in vmovdqa() function in art::x86_64::X86_64Assembler
1722 vmovdqa(dst, src); in movdqa()
1734 void X86_64Assembler::vmovdqa(const Address& dst, XmmRegister src) { in vmovdqa() function in art::x86_64::X86_64Assembler
Dassembler_x86_64_test.cc1262 DriverStr(RepeatFF(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa %{reg2}, %{reg1}"), "vmovdqa"); in TEST_F()
1274 DriverStr(RepeatAF(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa %{reg}, {mem}"), "vmovdqa_s"); in TEST_F()
1286 DriverStr(RepeatFA(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa {mem}, %{reg}"), "vmovdqa_l"); in TEST_F()