_mm_stream_si32
Classification
Header File
Instruction
MOVNTI m32, r32
Synopsis
_mm_stream_si32(int* mem_addr, int a);
Description
Store 32-bit integer "a" into memory using a non-temporal hint to minimize cache pollution. If the cache line containing address "mem_addr" is already in the cache, the cache will be updated.
Operation
MEM[mem_addr+31:mem_addr] := a[31:0]