LUTI2

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.

Advanced SIMD
(FEAT_LUT)

313029282726252423222120191817161514131211109876543210
010011101x0Rm0lenop00RnRd
Qop2

Byte (op2 == 10 && op == 1)

LUTI2 <Vd>.16B, { <Vn>.16B }, <Vm>[<index>]

Halfword (op2 == 11)

LUTI2 <Vd>.8H, { <Vn>.8H }, <Vm>[<index>]

if !IsFeatureImplemented(FEAT_LUT) then UNDEFINED; if op2 == '10' && op == '0' then UNDEFINED; integer isize = 2; integer esize = if op2 == '10' then 8 else 16; integer n = UInt(Rn); integer m = UInt(Rm); integer d = UInt(Rd); integer part = if op2 == '10' then UInt(len) else UInt(len:op);

Assembler Symbols

<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.

<index>

For the byte variant: is the vector segment index, in the range 0 to 3, encoded in the "len" field.

For the halfword variant: is the vector segment index, in the range 0 to 7, encoded in the "len:op" fields.

Operation

CheckFPAdvSIMDEnabled64(); integer elements = 128 DIV esize; integer ibase = elements * part; bits(128) indices = V[m, 128]; bits(128) table = V[n, 128]; bits(128) result; for e = 0 to elements-1 integer index = UInt(Elem[indices, ibase+e, isize]); Elem[result, e, esize] = Elem[table, index, esize]; V[d, 128] = result;

Operational information

If PSTATE.DIT is 1:


Internal version only: aarchmrs v2023-12_rel, pseudocode v2023-12_rel, sve v2023-12_rel ; Build timestamp: 2023-12-15T16:46

Copyright © 2010-2023 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.