Home
last modified time | relevance | path

Searched refs:movdqa (Results 1 – 10 of 10) sorted by relevance

/art/runtime/arch/x86/
Dmemcmp16_x86.S139 movdqa (%esi), %xmm0
143 movdqa 16(%esi), %xmm2
149 movdqa %xmm0, %xmm1
150 movdqa 32(%esi), %xmm0
151 movdqa 48(%esi), %xmm2
169 movdqa %xmm0, %xmm1
189 movdqa 16(%esi), %xmm1
190 movdqa %xmm1, %xmm2
194 movdqa 32(%esi), %xmm3
215 movdqa 16(%esi), %xmm0
[all …]
/art/runtime/arch/x86_64/
Dmemcmp16_x86_64.S319 movdqa %xmm2, %xmm1
353 movdqa %xmm2, %xmm1
389 movdqa (%rdi), %xmm2
394 movdqa 16(%rdi), %xmm2
399 movdqa 32(%rdi), %xmm2
404 movdqa 48(%rdi), %xmm2
411 movdqa 64(%rdi), %xmm2
416 movdqa 80(%rdi), %xmm2
439 movdqa (%rdi), %xmm2
444 movdqa 16(%rdi), %xmm2
[all …]
/art/compiler/utils/x86/
Dassembler_x86_test.cc609 DriverStr(RepeatFF(&x86::X86Assembler::movdqa, "movdqa %{reg2}, %{reg1}"), "movdqa"); in TEST_F()
617 DriverStr(RepeatFF(&x86::X86Assembler::movdqa, "vmovdqa %{reg2}, %{reg1}"), "avx_movdqa"); in TEST_F()
621 DriverStr(RepeatFA(&x86::X86Assembler::movdqa, "movdqa {mem}, %{reg}"), "movdqa_load"); in TEST_F()
629 DriverStr(RepeatFA(&x86::X86Assembler::movdqa, "vmovdqa {mem}, %{reg}"), "avx_movdqa_load"); in TEST_F()
633 DriverStr(RepeatAF(&x86::X86Assembler::movdqa, "movdqa %{reg}, {mem}"), "movdqa_store"); in TEST_F()
641 DriverStr(RepeatAF(&x86::X86Assembler::movdqa, "vmovdqa %{reg}, {mem}"), "avx_movdqa_store"); in TEST_F()
Dassembler_x86.h463 void movdqa(XmmRegister dst, XmmRegister src); // move
464 void movdqa(XmmRegister dst, const Address& src); // load aligned
466 void movdqa(const Address& dst, XmmRegister src); // store aligned
Dassembler_x86.cc1184 void X86Assembler::movdqa(XmmRegister dst, XmmRegister src) { in movdqa() function in art::x86::X86Assembler
1215 void X86Assembler::movdqa(XmmRegister dst, const Address& src) { in movdqa() function in art::x86::X86Assembler
1277 void X86Assembler::movdqa(const Address& dst, XmmRegister src) { in movdqa() function in art::x86::X86Assembler
/art/compiler/utils/x86_64/
Dassembler_x86_64_test.cc1258 DriverStr(RepeatFF(&x86_64::X86_64Assembler::movdqa, "movdqa %{reg2}, %{reg1}"), "movdqa"); in TEST_F()
1266 DriverStr(RepeatFF(&x86_64::X86_64Assembler::movdqa, "vmovdqa %{reg2}, %{reg1}"), "avx_movdqa"); in TEST_F()
1270 DriverStr(RepeatAF(&x86_64::X86_64Assembler::movdqa, "movdqa %{reg}, {mem}"), "movdqa_s"); in TEST_F()
1278 DriverStr(RepeatAF(&x86_64::X86_64Assembler::movdqa, "vmovdqa %{reg}, {mem}"), "avx_movdqa_s"); in TEST_F()
1282 DriverStr(RepeatFA(&x86_64::X86_64Assembler::movdqa, "movdqa {mem}, %{reg}"), "movdqa_l"); in TEST_F()
1290 DriverStr(RepeatFA(&x86_64::X86_64Assembler::movdqa, "vmovdqa {mem}, %{reg}"), "avx_movdqa_l"); in TEST_F()
Dassembler_x86_64.h495 void movdqa(XmmRegister dst, XmmRegister src); // move
496 void movdqa(XmmRegister dst, const Address& src); // load aligned
498 void movdqa(const Address& dst, XmmRegister src); // store aligned
Dassembler_x86_64.cc1550 void X86_64Assembler::movdqa(XmmRegister dst, XmmRegister src) { in movdqa() function in art::x86_64::X86_64Assembler
1611 void X86_64Assembler::movdqa(XmmRegister dst, const Address& src) { in movdqa() function in art::x86_64::X86_64Assembler
1720 void X86_64Assembler::movdqa(const Address& dst, XmmRegister src) { in movdqa() function in art::x86_64::X86_64Assembler
/art/compiler/optimizing/
Dcode_generator_vector_x86_64.cc1293 is_aligned16 ? __ movdqa(reg, address) : __ movdqu(reg, address); in VisitVecLoad()
1305 is_aligned16 ? __ movdqa(reg, address) : __ movdqu(reg, address); in VisitVecLoad()
1341 is_aligned16 ? __ movdqa(address, reg) : __ movdqu(address, reg); in VisitVecStore()
Dcode_generator_vector_x86.cc1320 is_aligned16 ? __ movdqa(reg, address) : __ movdqu(reg, address); in VisitVecLoad()
1332 is_aligned16 ? __ movdqa(reg, address) : __ movdqu(reg, address); in VisitVecLoad()
1368 is_aligned16 ? __ movdqa(address, reg) : __ movdqu(address, reg); in VisitVecStore()