Searched refs:vmovdqa (Results 1 – 6 of 6) sorted by relevance
/art/compiler/utils/x86/ |
D | assembler_x86_test.cc | 715 DriverStr(RepeatFF(&x86::X86Assembler::vmovdqa, "vmovdqa %{reg2}, %{reg1}"), "vmovdqa"); in TEST_F() 727 DriverStr(RepeatFA(&x86::X86Assembler::vmovdqa, "vmovdqa {mem}, %{reg}"), "vmovdqa_load"); in TEST_F() 739 DriverStr(RepeatAF(&x86::X86Assembler::vmovdqa, "vmovdqa %{reg}, {mem}"), "vmovdqa_store"); in TEST_F()
|
D | assembler_x86.h | 537 void vmovdqa(XmmRegister dst, XmmRegister src); // move 538 void vmovdqa(XmmRegister dst, const Address& src); // load aligned 540 void vmovdqa(const Address& dst, XmmRegister src); // store aligned
|
D | assembler_x86.cc | 1223 vmovdqa(dst, src); in movdqa() 1234 void X86Assembler::vmovdqa(XmmRegister dst, XmmRegister src) { in vmovdqa() function in art::x86::X86Assembler 1254 vmovdqa(dst, src); in movdqa() 1265 void X86Assembler::vmovdqa(XmmRegister dst, const Address& src) { in vmovdqa() function in art::x86::X86Assembler 1316 vmovdqa(dst, src); in movdqa() 1327 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 | 569 void vmovdqa(XmmRegister dst, XmmRegister src); // move 570 void vmovdqa(XmmRegister dst, const Address& src); // load aligned 571 void vmovdqa(const Address& dst, XmmRegister src); // store aligned
|
D | assembler_x86_64_test.cc | 1397 DriverStr(RepeatFF(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa %{reg2}, %{reg1}"), "vmovdqa"); in TEST_F() 1409 DriverStr(RepeatAF(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa %{reg}, {mem}"), "vmovdqa_s"); in TEST_F() 1421 DriverStr(RepeatFA(&x86_64::X86_64Assembler::vmovdqa, "vmovdqa {mem}, %{reg}"), "vmovdqa_l"); in TEST_F()
|
D | assembler_x86_64.cc | 1597 vmovdqa(dst, src); in movdqa() 1609 void X86_64Assembler::vmovdqa(XmmRegister dst, XmmRegister src) { in vmovdqa() function in art::x86_64::X86_64Assembler 1658 vmovdqa(dst, src); in movdqa() 1670 void X86_64Assembler::vmovdqa(XmmRegister dst, const Address& src) { in vmovdqa() function in art::x86_64::X86_64Assembler 1767 vmovdqa(dst, src); in movdqa() 1779 void X86_64Assembler::vmovdqa(const Address& dst, XmmRegister src) { in vmovdqa() function in art::x86_64::X86_64Assembler
|