_mm_stream_load_si128
Microsoft Specific
Emits the Streaming SIMD Extensions 4 (SSE4) instruction movntdqa. This instruction loads data from a specified address.
__m128i _mm_stream_load_si128( __m128i *p );
#include <stdio.h>
#include <smmintrin.h>
int main ()
{
__m128i p;
p.m128i_u32[0] = 0x01234567;
p.m128i_i32[1] = 0x89ABCDEF;
p.m128i_u32[2] = 0xFFEEDDCC;
p.m128i_u32[3] = 0xBBAA9988;
__m128i res = _mm_stream_load_si128(&p);
printf_s("Original p:\t0x%08X\t0x%08X\t0x%08X\t0x%08X\n",
p.m128i_u32[0], p.m128i_u32[1],
p.m128i_u32[2], p.m128i_u32[3]);
printf_s("Result res:\t0x%08X\t0x%08X\t0x%08X\t0x%08X\n",
res.m128i_u32[0], res.m128i_u32[1],
res.m128i_u32[2], res.m128i_u32[3]);
return 0;
}