_mm_load_sd
Classification
Header File
Instruction
MOVSD xmm, m64
Synopsis
_mm_load_sd(double const* mem_addr);
Description
Load a double-precision (64-bit) floating-point element from memory into the lower of "dst", and zero the upper element. "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] := 0