Lookup table read with 2-bit indices
This instruction copies indexed 8-bit or 16-bit elements from the table vector to the destination vector using packed 2-bit indices from a segment of the source vector. A segment corresponds to a portion of the source vector that is consumed in order to fill the destination vector. The segment is selected by the vector segment index.
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 | 1 | x | 0 | Rm | 0 | len | op | 0 | 0 | Rn | Rd | |||||||||||||
Q | op2 |
if !IsFeatureImplemented(FEAT_AdvSIMD) || !IsFeatureImplemented(FEAT_LUT) then EndOfDecode(Decode_UNDEF); if op2 == '10' && op == '0' then EndOfDecode(Decode_UNDEF); constant integer d = UInt(Rd); constant integer n = UInt(Rn); constant integer m = UInt(Rm); constant integer isize = 2; constant integer esize = if op2 == '10' then 8 else 16; constant integer part = if op2 == '10' then UInt(len) else UInt(len:op);
<Vd> |
Is the name of the SIMD&FP destination register, encoded in the "Rd" field. |
<Vn> |
Is the name of the SIMD&FP table register, encoded in the "Rn" field. |
<Vm> |
Is the name of the SIMD&FP source register, encoded in the "Rm" field. |
CheckFPAdvSIMDEnabled64(); constant integer elements = 128 DIV esize; constant integer ibase = elements * part; constant bits(128) indices = V[m, 128]; constant bits(128) table = V[n, 128]; bits(128) result; for e = 0 to elements-1 constant integer index = UInt(Elem[indices, ibase + e, isize]); Elem[result, e, esize] = Elem[table, index, esize]; V[d, 128] = result;
If PSTATE.DIT is 1:
Internal version only: aarchmrs v2024-12_rel, pseudocode v2024-12_rel ; Build timestamp: 2024-12-15T22:18
Copyright © 2010-2024 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.