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.
7 lines
362 B
7 lines
362 B
// vfwcvt.f.f.v vd, vs2, vm
|
|
VI_VFP_WCVT_FP_TO_FP(
|
|
{ vd = P.VU.altfmt ? bf16_to_f32(vs2) : f16_to_f32(vs2); }, // BODY16
|
|
{ vd = f32_to_f64(vs2); }, // BODY32
|
|
{ require_zvfbfa_or_zvfhmin }, // CHECK16
|
|
{ require(p->get_isa().get_zvd()); } // CHECK32
|
|
)
|
|
|