blob: 8bd7545536c8cb7c8bb9c33bed8a274fc5e8b979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// vsxe.v and vsxseg[2-8]e.v
require_vector;
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;
|