aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vsuxe_v.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/vsuxe_v.h')
-rw-r--r--riscv/insns/vsuxe_v.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/riscv/insns/vsuxe_v.h b/riscv/insns/vsuxe_v.h
deleted file mode 100644
index 1434876..0000000
--- a/riscv/insns/vsuxe_v.h
+++ /dev/null
@@ -1,13 +0,0 @@
-// vsuxe.v
-reg_t sew = P.VU.vsew;
-require(sew >= e8 && sew <= e64);
-VI_DUPLICATE_VREG(insn.rs2(), P.VU.vlmax);
-if (sew == e8) {
- VI_ST_INDEX(index[i], fn, uint8, 1, false);
-} else if (sew == e16) {
- VI_ST_INDEX(index[i], fn, uint16, 2, false);
-} else if (sew == e32) {
- VI_ST_INDEX(index[i], fn, uint32, 4, false);
-} else if (sew == e64) {
- VI_ST_INDEX(index[i], fn, uint64, 8, false);
-}