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