_mm_loadl_pd
Classification
Header File
Instruction
MOVLPD xmm, m64
Synopsis
_mm_loadl_pd(__m128d a, double const* mem_addr);
Description
Load a double-precision (64-bit) floating-point element from memory into the lower element of "dst", and copy the upper element from "a" to "dst". "mem_addr" does not need to be aligned on any particular boundary.
Operation
dst[63:0] := MEM[mem_addr+63:mem_addr]
dst[127:64] := a[127:64]