aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vfncvt_rtz_x_f_w.h
blob: 23b4d5e2862ce2f3443238dc1cf2b74e21a73f85 (plain)
1
2
3
4
5
6
7
8
9
10
// vfncvt.rtz.x.f.w vd, vs2, vm
VI_VFP_NCVT_FP_TO_INT(
  { vd = f16_to_i8(vs2, softfloat_round_minMag, true); },  // BODY16
  { vd = f32_to_i16(vs2, softfloat_round_minMag, true); }, // BODY32
  { vd = f64_to_i32(vs2, softfloat_round_minMag, true); }, // BODY64
  { require_extension(EXT_ZFH); },                         // CHECK16
  { require(p->extension_enabled('F')); },                 // CHECK32
  { require(p->extension_enabled('D')); },                 // CHECK64
  int                                                      // sign
)