_mm_xor_si128
Classification
SSE_ALL, Logical, CPUID Test: SSE2
Header File
emmintrin.h
Instruction
PXOR xmm, xmm
Synopsis
 _mm_xor_si128(__m128i a, __m128i b);
Description
Compute the bitwise XOR of 128 bits (representing integer data) in "a" and "b", and store the result in "dst".
Operation
dst[127:0] := (a[127:0] XOR b[127:0])