blob: f12c456eb30df534e8bab442a3efedaffeb4792f (
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
|
// vsuxb.v and vsxseg[2-8]b.v
require_vector;
require(P.VU.vsew >= e8);
reg_t vl = P.VU.vl;
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 (P.VU.vsew) {
case e8:
if (is_valid)
MMU.store_uint8(baseAddr + index[i],
P.VU.elt<uint8_t>(vs3, vreg_inx), g_vector_mistrap);
break;
case e16:
if (is_valid)
MMU.store_uint8(baseAddr + index[i],
P.VU.elt<uint16_t>(vs3, vreg_inx), g_vector_mistrap);
break;
case e32:
if (is_valid)
MMU.store_uint8(baseAddr + index[i],
P.VU.elt<uint32_t>(vs3, vreg_inx), g_vector_mistrap);
break;
case e64:
if (is_valid)
MMU.store_uint8(baseAddr + index[i],
P.VU.elt<uint64_t>(vs3, vreg_inx), g_vector_mistrap);
break;
}
}
P.VU.vstart = 0;
VI_CHECK_1905
|