AES inverse mix columns.
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 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | Rn | Rd | ||||||||
D |
integer d = UInt(Rd); integer n = UInt(Rn); if ! HaveCryptoExt() then UnallocatedEncoding(); boolean decrypt = (D == '1');
<Vd> |
Is the name of the SIMD&FP destination register, encoded in the "Rd" field. |
<Vn> |
Is the name of the SIMD&FP source register, encoded in the "Rn" field. |
CheckCryptoEnabled64(); bits(128) operand = V[n]; bits(128) result; if decrypt then result = AESInvMixColumns(operand); else result = AESMixColumns(operand); V[d] = result;
Internal version only: isa v27.02, AdvSIMD v26.0, pseudocode v34.2.2 ; Build timestamp: 2018-03-28T19:55
Copyright © 2010-2018 ARM Limited or its affiliates. All rights reserved. This document is Non-Confidential.