EXT

Extract vector from pair of vectors

Copy the indexed byte up to the last byte of the first source vector to the bottom of the result vector, then fill the remainder of the result starting from the first byte of the second source vector. The result is placed destructively in the destination and first source vector, or constructively in the destination vector. This instruction is unpredicated.

An index that is greater than or equal to the vector length in bytes is treated as zero, resulting in the first source vector being copied to the result unchanged.

The Destructive encoding of this instruction might be immediately preceded in program order by a MOVPRFX instruction. The MOVPRFX instruction must conform to all of the following requirements, otherwise the behavior of the MOVPRFX and this instruction is UNPREDICTABLE: The MOVPRFX instruction must be unpredicated. The MOVPRFX instruction must specify the same destination register as this instruction. The destination register must not refer to architectural register state referenced by any other source operand register of this instruction.

It has encodings from 2 classes: Constructive and Destructive

Constructive

313029282726252423222120191817161514131211109876543210
00000101011imm8h000imm8lZnZd

EXT <Zd>.B, { <Zn1>.B, <Zn2>.B }, #<imm>

if !HaveSVE2() && !HaveSME() then UNDEFINED; constant integer esize = 8; integer dst = UInt(Zd); integer s1 = UInt(Zn); integer s2 = (s1 + 1) MOD 32; constant integer position = UInt(imm8h:imm8l) * 8;

Destructive

313029282726252423222120191817161514131211109876543210
00000101001imm8h000imm8lZmZdn

EXT <Zdn>.B, <Zdn>.B, <Zm>.B, #<imm>

if !HaveSVE() && !HaveSME() then UNDEFINED; constant integer esize = 8; integer dst = UInt(Zdn); integer s1 = dst; integer s2 = UInt(Zm); constant integer position = UInt(imm8h:imm8l) * 8;

Assembler Symbols

<Zd>

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

<Zn1>

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

<Zn2>

Is the name of the second scalable vector register of the source multi-vector group, encoded in the "Zn" field.

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

<imm>

Is the unsigned immediate operand, in the range 0 to 255, encoded in the "imm8h:imm8l" fields.

Operation

CheckSVEEnabled(); constant integer VL = CurrentVL; constant integer PL = VL DIV 8; constant integer elements = VL DIV esize; bits(VL) operand1 = Z[s1, VL]; bits(VL) operand2 = Z[s2, VL]; bits(VL) result; bits(VL*2) concat = operand2 : operand1; if position >= VL then result = concat<VL-1:0>; else result = concat<(position+VL)-1:position>; Z[dst, VL] = result;

Operational information

If FEAT_SVE2 is implemented or FEAT_SME is implemented, then 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.