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.
36 lines
683 B
36 lines
683 B
//vfslide1up.vf vd, vs2, rs1
|
|
VI_CHECK_SLIDE(true);
|
|
|
|
VI_VFP_LOOP_BASE
|
|
if (i != 0) {
|
|
switch (P.VU.vsew) {
|
|
case e16: {
|
|
VI_XI_SLIDEUP_PARAMS(e16, 1);
|
|
vd = vs2;
|
|
}
|
|
break;
|
|
case e32: {
|
|
VI_XI_SLIDEUP_PARAMS(e32, 1);
|
|
vd = vs2;
|
|
}
|
|
break;
|
|
case e64: {
|
|
VI_XI_SLIDEUP_PARAMS(e64, 1);
|
|
vd = vs2;
|
|
}
|
|
break;
|
|
}
|
|
} else {
|
|
switch (P.VU.vsew) {
|
|
case e16:
|
|
P.VU.elt<float16_t>(rd_num, 0, true) = P.VU.altfmt ? FRS1_BF : FRS1_H;
|
|
break;
|
|
case e32:
|
|
P.VU.elt<float32_t>(rd_num, 0, true) = FRS1_F;
|
|
break;
|
|
case e64:
|
|
P.VU.elt<float64_t>(rd_num, 0, true) = FRS1_D;
|
|
break;
|
|
}
|
|
}
|
|
VI_VFP_LOOP_END
|
|
|