_mm_loadl_pi
Classification
SSE_ALL, Load, CPUID Test: SSE
Header File
immintrin.h
Instruction
MOVLPS xmm, m64
Synopsis
 _mm_loadl_pi(__m128 a, __m64 const* mem_addr);
Description
Load 2 single-precision (32-bit) floating-point elements from memory into the lower 2 elements of "dst", and copy the upper 2 elements from "a" to "dst". "mem_addr" does not need to be aligned on any particular boundary.
Operation
dst[31:0] := MEM[mem_addr+31:mem_addr]
dst[63:32] := MEM[mem_addr+63:mem_addr+32]
dst[95:64] := a[95:64]
dst[127:96] := a[127:96]