You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
428 B
10 lines
428 B
// vfwcvt.rtz,xu.f.v vd, vs2, vm
|
|
VI_NON_ALTFMT_INSN
|
|
|
|
VI_VFP_WCVT_FP_TO_INT(
|
|
{ vd = f16_to_ui32(vs2, softfloat_round_minMag, true); }, // BODY16
|
|
{ vd = f32_to_ui64(vs2, softfloat_round_minMag, true); }, // BODY32
|
|
{ require_extension(EXT_ZVFH); }, // CHECK16
|
|
{ require(p->get_isa().get_zvf()); }, // CHECK32
|
|
uint // sign
|
|
)
|
|
|