SIMD ISAReturn TypeNameArgumentsInstruction Group
Neonuint8x16_tveor3q_u8(uint8x16_t a, uint8x16_t b, uint8x16_t c)Logical / Exclusive OR
Description
Three-way Exclusive OR performs a three-way exclusive OR of the values in the three source SIMD&FP registers, and writes the result to the destination SIMD&FP register.
Results
Vd.16B result
This intrinsic compiles to the following instructions:

EOR3 Vd.16B,Vn.16B,Vm.16B,Va.16B

Argument Preparation
a register: Vn.16Bb c
Architectures
A64

Operation

AArch64.CheckFPAdvSIMDEnabled();

bits(128) Vm = V[m];
bits(128) Vn = V[n];
bits(128) Va = V[a];
V[d] = Vn EOR Vm EOR Va;