PMOV (to predicate)

Move predicate from vector

Copy a packed bitmap, where bit value 0b1 represents TRUE and bit value 0b0 represents FALSE, from a portion of the source vector register to elements of the destination SVE predicate register.

Because the number of bits in an SVE predicate element scales with the vector element size, the behavior varies according to the specified element size.

The portion index is optional, defaulting to 0 if omitted.

It has encodings from 4 classes: Byte , Doubleword , Halfword and Word

Byte
(FEAT_SVE2p1)

313029282726252423222120191817161514131211109876543210
0000010100101010001110Zn0Pd

PMOV <Pd>.B, <Zn>

if !HaveSVE2p1() && !HaveSME2p1() then UNDEFINED; integer n = UInt(Zn); integer d = UInt(Pd); constant integer esize = 8; constant integer imm = 0;

Doubleword
(FEAT_SVE2p1)

313029282726252423222120191817161514131211109876543210
000001011i3h101i3l0001110Zn0Pd

PMOV <Pd>.D, <Zn>{[<imm>]}

if !HaveSVE2p1() && !HaveSME2p1() then UNDEFINED; integer n = UInt(Zn); integer d = UInt(Pd); constant integer esize = 64; constant integer imm = UInt(i3h:i3l);

Halfword
(FEAT_SVE2p1)

313029282726252423222120191817161514131211109876543210
00000101001011i10001110Zn0Pd

PMOV <Pd>.H, <Zn>{[<imm>]}

if !HaveSVE2p1() && !HaveSME2p1() then UNDEFINED; integer n = UInt(Zn); integer d = UInt(Pd); constant integer esize = 16; constant integer imm = UInt(i1);

Word
(FEAT_SVE2p1)

313029282726252423222120191817161514131211109876543210
0000010101101i20001110Zn0Pd

PMOV <Pd>.S, <Zn>{[<imm>]}

if !HaveSVE2p1() && !HaveSME2p1() then UNDEFINED; integer n = UInt(Zn); integer d = UInt(Pd); constant integer esize = 32; constant integer imm = UInt(i2);

Assembler Symbols

<Pd>

Is the name of the destination scalable predicate register, encoded in the "Pd" field.

<Zn>

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

<imm>

For the doubleword variant: is the optional portion index, in the range 0 to 7, defaulting to 0, encoded in the "i3h:i3l" fields.

For the halfword variant: is the optional portion index, in the range 0 to 1, defaulting to 0, encoded in the "i1" field.

For the word variant: is the optional portion index, in the range 0 to 3, defaulting to 0, encoded in the "i2" field.

Operation

CheckSVEEnabled(); constant integer VL = CurrentVL; constant integer PL = VL DIV 8; constant integer elements = VL DIV esize; bits(VL) operand = Z[n, VL]; bits(PL) result; constant integer psize = esize DIV 8; for e = 0 to elements-1 Elem[result, e, psize] = ZeroExtend(operand<(elements * imm) + e>, psize); P[d, PL] = result;


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.