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.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/riscv/insns/vsuxe_v.h b/riscv/insns/vsuxe_v.h
new file mode 100644
index 0000000..940d8ad
--- /dev/null
+++ b/riscv/insns/vsuxe_v.h
@@ -0,0 +1,38 @@
+// vsxe.v and vsxseg[2-8]e.v
+const reg_t sew = P.VU.vsew;
+const reg_t vl = P.VU.vl;
+require(sew >= e8 && sew <= e64);
+reg_t baseAddr = RS1;
+reg_t stride = insn.rs2();
+reg_t vs3 = insn.rd();
+reg_t vlmax = P.VU.vlmax;
+VI_DUPLICATE_VREG(stride, vlmax);
+for (reg_t i = 0; i < vlmax && vl != 0; ++i) {
+ bool is_valid = true;
+ VI_ELEMENT_SKIP(i);
+ VI_STRIP(i)
+
+ switch (sew) {
+ case e8:
+ if (is_valid)
+ MMU.store_uint8(baseAddr + index[i],
+ P.VU.elt<uint8_t>(vs3, vreg_inx));
+ break;
+ case e16:
+ if (is_valid)
+ MMU.store_uint16(baseAddr + index[i],
+ P.VU.elt<uint16_t>(vs3, vreg_inx));
+ break;
+ case e32:
+ if (is_valid)
+ MMU.store_uint32(baseAddr + index[i],
+ P.VU.elt<uint32_t>(vs3, vreg_inx));
+ break;
+ case e64:
+ if (is_valid)
+ MMU.store_uint64(baseAddr + index[i],
+ P.VU.elt<uint64_t>(vs3, vreg_inx));
+ break;
+ }
+}
+P.VU.vstart = 0;