Searched refs:vmovdqa (Results 1 – 6 of 6) sorted by relevance
/art/compiler/utils/x86/ |
D | assembler_x86_test.cc | 699 DriverStr(RepeatFF(&x86::X86Assembler::vmovdqa, "vmovdqa %{reg2}, %{reg1}"), "vmovdqa"); in TEST_F() 711 DriverStr(RepeatFA(&x86::X86Assembler::vmovdqa, "vmovdqa {mem}, %{reg}"), "vmovdqa_load"); in TEST_F() 723 DriverStr(RepeatAF(&x86::X86Assembler::vmovdqa, "vmovdqa %{reg}, {mem}"), "vmovdqa_store"); in TEST_F()
|
D | assembler_x86.h | 493 void vmovdqa(XmmRegister dst, XmmRegister src); // move 494 void vmovdqa(XmmRegister dst, const Address& src); // load aligned 496 void vmovdqa(const Address& dst, XmmRegister src); // store aligned
|
D | assembler_x86.cc | 1186 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/ |
D | assembler_x86_64.h | 501 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
|
D | assembler_x86_64.cc | 1552 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
|
D | assembler_x86_64_test.cc | 1267 DriverStr(RepeatFF(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa %{reg2}, %{reg1}"), "vmovdqa"); in TEST_F() 1279 DriverStr(RepeatAF(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa %{reg}, {mem}"), "vmovdqa_s"); in TEST_F() 1291 DriverStr(RepeatFA(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa {mem}, %{reg}"), "vmovdqa_l"); in TEST_F()
|