uminv
Vector Unsigned Minimum Across
UMINV <V><d>, <Vn>.<T>
Finds the minimum unsigned value across the vector.
Pseudocode Operation
result ← Vn[0]
for i = 1 to elements_in_vector - 1
result ← min_unsigned(result, Vn[i])
Vd[result_element_index] ← result
Vd[upper_bits] ← 0
Example
UMINV Vd, v1.4s.T
Encoding
Binary Layout
0
31
Q
30
1
29
01110
28:24
size
23:22
11000
21:17
1
16
101010
15:10
Rn
9:5
Rd
4:0
Operands
-
Vd
Dest Scalar -
Vn
Src Vector
Reference
View in Arm A64 ISA Reference ↗
Arm A64 ISA
Instruction Forms
| Encoding | Instruction | ISA | Bit pattern | ||
|---|---|---|---|---|---|
| 0x2E31A800 | UMINV <V><d>, <Vn>.<T> | A64 | 0 | Q | 1 | 01110 | size | 11000 | 1 | 101010 | Rn | Rd | ||
| 0x040B2000 | UMINV <V><d>, <Pg>, <Zn>.<T> | A64 | 00000100 | size | 0010 | 1 | 1 | 001 | Pg | Zn | Vd |
Description
Unsigned Minimum across Vector. This instruction compares all the vector elements in the source SIMD&FP register, and writes the smallest of the values as a scalar to the destination SIMD&FP register. All the values in this instruction are unsigned integer values. 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.
Operation
CheckFPAdvSIMDEnabled64();
bits(datasize) operand = V[n, datasize];
integer maxmin;
integer element;
maxmin = Int(Elem[operand, 0, esize], unsigned);
for e = 1 to elements-1
element = Int(Elem[operand, e, esize], unsigned);
maxmin = if min then Min(maxmin, element) else Max(maxmin, element);
V[d, esize] = maxmin<esize-1:0>;