FRINT32Z (vector)
Floating-point round to 32-bit integer toward zero (vector)
This instruction rounds a vector of floating-point values in the SIMD&FP source register to integral floating-point
values that fit into a 32-bit integer size using the Round towards Zero rounding mode,
and writes the result to the SIMD&FP destination register.
A zero input returns a zero result with the same sign. When one of the result values is not numerically equal to
the corresponding input value, an Inexact exception is raised. When an input is infinite, NaN or out-of-range,
the instruction returns for the corresponding result value the most negative integer representable in the destination size,
and an Invalid Operation floating-point exception is raised.
A floating-point exception can be generated by this instruction.
Depending on the settings in FPCR,
the exception results in either a flag being set in FPSR,
or a synchronous exception being generated.
For more information, see
Floating-point exception traps.
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.
0
0
0
1
1
1
0
0
1
0
0
0
0
1
1
1
1
0
1
0
FRINT32Z <Vd>.<T>, <Vn>.<T>
if !IsFeatureImplemented(FEAT_FRINTTS) then UNDEFINED;
if sz:Q == '10' then UNDEFINED;
constant integer d = UInt(Rd);
constant integer n = UInt(Rn);
constant integer esize = 32 << UInt(sz);
constant integer datasize = 64 << UInt(Q);
constant integer elements = datasize DIV esize;
constant integer intsize = 32;
constant FPRounding rounding = FPRounding_ZERO;
<Vd>
Is the name of the SIMD&FP destination register, encoded in the "Rd" field.
<T>
Is an arrangement specifier,
sz
Q
<T>
0
0
2S
0
1
4S
1
0
RESERVED
1
1
2D
<Vn>
Is the name of the SIMD&FP source register, encoded in the "Rn" field.
CheckFPAdvSIMDEnabled64();
constant bits(datasize) operand = V[n, datasize];
bits(datasize) result;
bits(esize) element;
for e = 0 to elements-1
element = Elem[operand, e, esize];
Elem[result, e, esize] = FPRoundIntN(element, FPCR, rounding, intsize);
V[d, datasize] = result;