SIMD ISAReturn TypeNameArgumentsInstruction Group
Neonfloat32_tvmaxnmvq_f32(float32x4_t a)Vector arithmetic / Across vector arithmetic / Maximum across vector (IEEE754)
Description
Floating-point Maximum Number across Vector. This instruction compares all the vector elements in the source SIMD&FP register, and writes the largest of the values as a scalar to the destination SIMD&FP register. All the values in this instruction are floating-point values.
Results
Sd result
This intrinsic compiles to the following instructions:

FMAXNMV Sd,Vn.4S

Argument Preparation
a register: Vn.4S
Architectures
A64

Operation

CheckFPAdvSIMDEnabled64();
bits(datasize) operand = V[n];
boolean altfp = FALSE;
V[d] = Reduce(op, operand, esize, altfp);