TBL

Programmable table lookup/permute using vector of element indices.

Read each element of the second source (index) vector and use it to select an element from the first source (table) vector and place the indexed element in the corresponding element of the destination vector. If an index value is greater than or equal to the number of vector elements then place zero in the destination vector element. Since the index values address a whole vector register this instruction is not vector length agnostic.

313029282726252423222120191817161514131211109876543210
00000101size1Zm001100ZnZd

SVE

TBL <Zd>.<T>, { <Zn>.<T> }, <Zm>.<T>

integer esize = 8 << UInt(size); integer n = UInt(Zn); integer m = UInt(Zm); integer d = UInt(Zd);

Assembler Symbols

<Zd>

Is the name of the destination scalable vector register, encoded in the "Zd" field.

<T> Is the size specifier, encoded in size:
size <T>
00 B
01 H
10 S
11 D
<Zn>

Is the name of the first source scalable vector register, encoded in the "Zn" field.

<Zm>

Is the name of the second source scalable vector register, encoded in the "Zm" field.

Operation

CheckSVEEnabled(); integer elements = VL DIV esize; bits(VL) operand1 = Z[n]; bits(VL) operand2 = Z[m]; bits(VL) result; for e = 0 to elements-1 integer idx = UInt(Elem[operand2, e, esize]); Elem[result, e, esize] = if idx < elements then Elem[operand1, idx, esize] else Zeros(); Z[d] = result;


Release: 00rel4.1-manual

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