_mm_stream_si128
Classification
SSE_ALL, Store, CPUID Test: SSE2
Header File
emmintrin.h
Instruction
MOVNTDQ m128, xmm
Synopsis
 _mm_stream_si128(__m128i* mem_addr, __m128i a);
Description
Store 128-bits of integer data from "a" into memory using a non-temporal memory hint. "mem_addr" must be aligned on a 16-byte boundary or a general-protection exception may be generated.
Operation
MEM[mem_addr+127:mem_addr] := a[127:0]