Bitwise bit clear (vector, immediate)
This instruction reads each vector element from the destination SIMD&FP register, performs a bitwise AND between each result and the complement of an immediate constant, places the result into a vector, and writes the vector to the destination SIMD&FP register.
Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
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 | Q | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | a | b | c | x | x | x | 1 | 0 | 1 | d | e | f | g | h | Rd | ||||
op | cmode | o2 |
if !IsFeatureImplemented(FEAT_AdvSIMD) then EndOfDecode(Decode_UNDEF); constant integer rd = UInt(Rd); constant integer datasize = 64 << UInt(Q); constant bits(64) imm64 = AdvSIMDExpandImm(op, cmode, a:b:c:d:e:f:g:h); constant bits(datasize) imm = Replicate(imm64, datasize DIV 64);
<Vd> |
Is the name of the SIMD&FP register, encoded in the "Rd" field. |
<T> |
For the "16-bit" variant: is an arrangement specifier,
encoded in
| ||||||
For the "32-bit" variant: is an arrangement specifier,
encoded in
|
<imm8> |
Is an 8-bit immediate encoded in "a:b:c:d:e:f:g:h". |
CheckFPAdvSIMDEnabled64(); constant bits(datasize) operand = V[rd, datasize]; V[rd, datasize] = operand AND NOT(imm);
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.