Home
last modified time | relevance | path

Searched refs:movdqu (Results 1 – 8 of 8) sorted by relevance

/art/runtime/arch/x86_64/
Dmemcmp16_x86_64.S56 movdqu (%rsi), %xmm1
57 movdqu (%rdi), %xmm2
76 movdqu (%rdi), %xmm2
81 movdqu 16(%rdi), %xmm2
86 movdqu 32(%rdi), %xmm2
91 movdqu 48(%rdi), %xmm2
98 movdqu 64(%rdi), %xmm2
103 movdqu 80(%rdi), %xmm2
125 movdqu (%rdi), %xmm2
130 movdqu 16(%rdi), %xmm2
[all …]
/art/compiler/utils/x86/
Dassembler_x86_test.cc524 DriverStr(RepeatFA(&x86::X86Assembler::movdqu, "movdqu {mem}, %{reg}"), "movdqu_load"); in TEST_F()
528 DriverStr(RepeatAF(&x86::X86Assembler::movdqu, "movdqu %{reg}, {mem}"), "movdqu_store"); in TEST_F()
Dassembler_x86.h434 void movdqu(XmmRegister dst, const Address& src); // load unaligned
436 void movdqu(const Address& dst, XmmRegister src); // store unaligned
/art/compiler/optimizing/
Dcode_generator_vector_x86_64.cc1136 is_aligned16 ? __ movdqa(reg, address) : __ movdqu(reg, address); in VisitVecLoad()
1149 is_aligned16 ? __ movdqa(reg, address) : __ movdqu(reg, address); in VisitVecLoad()
1185 is_aligned16 ? __ movdqa(address, reg) : __ movdqu(address, reg); in VisitVecStore()
Dcode_generator_vector_x86.cc1163 is_aligned16 ? __ movdqa(reg, address) : __ movdqu(reg, address); in VisitVecLoad()
1176 is_aligned16 ? __ movdqa(reg, address) : __ movdqu(reg, address); in VisitVecLoad()
1212 is_aligned16 ? __ movdqa(address, reg) : __ movdqu(address, reg); in VisitVecStore()
/art/runtime/arch/x86/
Dmemcmp16_x86.S74 movdqu (%eax), %xmm3
75 movdqu (%edx), %xmm0
/art/compiler/utils/x86_64/
Dassembler_x86_64.h470 void movdqu(XmmRegister dst, const Address& src); // load unaligned
472 void movdqu(const Address& dst, XmmRegister src); // store unaligned
Dassembler_x86_64.cc883 void X86_64Assembler::movdqu(XmmRegister dst, const Address& src) { in movdqu() function in art::x86_64::X86_64Assembler
903 void X86_64Assembler::movdqu(const Address& dst, XmmRegister src) { in movdqu() function in art::x86_64::X86_64Assembler