aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vfncvt_xu_f_w.h
blob: 02046e8b97fcd887ebdb247527e6c6872f98b4a5 (plain)
1
2
3
4
5
6
7
8
9
10
// vfncvt.xu.f.w vd, vs2, vm
VI_VFP_NCVT_FP_TO_INT(
  { vd = f16_to_ui8(vs2, softfloat_roundingMode, true); },  // BODY16
  { vd = f32_to_ui16(vs2, softfloat_roundingMode, true); }, // BODY32
  { vd = f64_to_ui32(vs2, softfloat_roundingMode, true); }, // BODY64
  { require_extension(EXT_ZFH); },                          // CHECK16
  { require(p->extension_enabled('F')); },                  // CHECK32
  { require(p->extension_enabled('D')); },                  // CHECK64
  uint                                                      // sign
)