Do these floating-point instructions use vxrm?
No. Ordinary RVV floating-point operations and FP conversions use floating-point frm or an instruction-specified fixed rounding mode; vxrm is for fixed-point rounding instructions.
Narrow wide float to unsigned int in vd, truncating.
VFNCVT.RTZ.XU.F.W performs RVV narrowing floating-point/integer conversion. This form rounds toward zero and does not use frm. The source is 2*SEW wide and the result is SEW wide. Vector FP32/FP64 operation requires the corresponding scalar F/D support; FP16 is controlled by the relevant vector half-precision extensions; do not assume the base V extension includes half-precision arithmetic.
VFNCVT.RTZ.XU.F.W converts element types; first check whether the form is single-width, widening, or narrowing, then check where rounding comes from.
Understand this scenario with real code like «vsetvli t0, a0, e32, m1, ta, ma vfncvt.rtz.xu.f.w v1, v2».
No. Ordinary RVV floating-point operations and FP conversions use floating-point frm or an instruction-specified fixed rounding mode; vxrm is for fixed-point rounding instructions.