You copied the Doc URL to your clipboard.
EOR3
Bitwise exclusive OR of three vectors.
Bitwise exclusive OR the corresponding elements of all three source vectors, and destructively place the results in the corresponding elements of the destination and first source vector. This instruction is unpredicated.
31 | 30 | 29 | 28 | 27 | 26 | 25 | 24 | 23 | 22 | 21 | 20 | 19 | 18 | 17 | 16 | 15 | 14 | 13 | 12 | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | Zm | 0 | 0 | 1 | 1 | 1 | 0 | Zk | Zdn |
if !HaveSVE2() then UNDEFINED; integer m = UInt(Zm); integer k = UInt(Zk); integer dn = UInt(Zdn);
Assembler Symbols
<Zdn> |
Is the name of the first source and destination scalable vector register, encoded in the "Zdn" field. |
<Zm> |
Is the name of the second source scalable vector register, encoded in the "Zm" field. |
<Zk> |
Is the name of the third source scalable vector register, encoded in the "Zk" field. |
Operation
CheckSVEEnabled(); bits(VL) operand1 = Z[dn]; bits(VL) operand2 = Z[m]; bits(VL) operand3 = Z[k]; Z[dn] = operand1 EOR operand2 EOR operand3;