Searched refs:movupd (Results 1 - 8 of 8) sorted by relevance

/art/compiler/utils/x86/
H A Dassembler_x86_test.cc504 DriverStr(RepeatFA(&x86::X86Assembler::movupd, "movupd {mem}, %{reg}"), "movupd_load");
508 DriverStr(RepeatAF(&x86::X86Assembler::movupd, "movupd %{reg}, {mem}"), "movupd_store");
H A Dassembler_x86.h407 void movupd(XmmRegister dst, const Address& src); // load unaligned
409 void movupd(const Address& dst, XmmRegister src); // store unaligned
H A Dassembler_x86.cc579 void X86Assembler::movupd(XmmRegister dst, const Address& src) { function in class:art::x86::X86Assembler
597 void X86Assembler::movupd(const Address& dst, XmmRegister src) { function in class:art::x86::X86Assembler
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h446 void movupd(XmmRegister dst, const Address& src); // load unaligned
448 void movupd(const Address& dst, XmmRegister src); // store unaligned
H A Dassembler_x86_64_test.cc1142 DriverStr(RepeatAF(&x86_64::X86_64Assembler::movupd, "movupd %{reg}, {mem}"), "movupd_s");
1146 DriverStr(RepeatFA(&x86_64::X86_64Assembler::movupd, "movupd {mem}, %{reg}"), "movupd_l");
H A Dassembler_x86_64.cc683 void X86_64Assembler::movupd(XmmRegister dst, const Address& src) { function in class:art::x86_64::X86_64Assembler
703 void X86_64Assembler::movupd(const Address& dst, XmmRegister src) { function in class:art::x86_64::X86_64Assembler
/art/compiler/optimizing/
H A Dcode_generator_vector_x86.cc1184 is_aligned16 ? __ movapd(reg, address) : __ movupd(reg, address);
1220 is_aligned16 ? __ movapd(address, reg) : __ movupd(address, reg);
H A Dcode_generator_vector_x86_64.cc1157 is_aligned16 ? __ movapd(reg, address) : __ movupd(reg, address);
1193 is_aligned16 ? __ movapd(address, reg) : __ movupd(address, reg);

Completed in 1376 milliseconds