aboutsummaryrefslogtreecommitdiff
path: root/riscv/decode.h
diff options
context:
space:
mode:
authorChih-Min Chao <chihmin.chao@sifive.com>2020-05-21 19:46:38 -0700
committerChih-Min Chao <chihmin.chao@sifive.com>2020-05-21 20:45:57 -0700
commit7eed9371f79f5c8f4675078d11a0228af9b5f571 (patch)
tree07a0170c3ce8f301b5a79d690898997613a1664c /riscv/decode.h
parentb2ae7abe22e0f0768b4c49d686a93f9c240985da (diff)
downloadspike-7eed9371f79f5c8f4675078d11a0228af9b5f571.zip
spike-7eed9371f79f5c8f4675078d11a0228af9b5f571.tar.gz
spike-7eed9371f79f5c8f4675078d11a0228af9b5f571.tar.bz2
rvv: refine vl length and elemnet size checking
Signed-off-by: Chih-Min Chao <chihmin.chao@sifive.com>
Diffstat (limited to 'riscv/decode.h')
-rw-r--r--riscv/decode.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/riscv/decode.h b/riscv/decode.h
index 1b844c0..55cbfbe 100644
--- a/riscv/decode.h
+++ b/riscv/decode.h
@@ -573,7 +573,7 @@ static inline bool is_aligned(const unsigned val, const unsigned pos)
// vector: loop header and end helper
//
#define VI_GENERAL_LOOP_BASE \
- require(P.VU.vsew == e8 || P.VU.vsew == e16 || P.VU.vsew == e32 || P.VU.vsew == e64); \
+ require(P.VU.vsew >= e8 && P.VU.vsew <= e64); \
require_vector;\
reg_t vl = P.VU.vl; \
reg_t sew = P.VU.vsew; \
@@ -598,7 +598,7 @@ static inline bool is_aligned(const unsigned val, const unsigned pos)
P.VU.vstart = 0;
#define VI_LOOP_CMP_BASE \
- require(P.VU.vsew == e8 || P.VU.vsew == e16 || P.VU.vsew == e32 || P.VU.vsew == e64); \
+ require(P.VU.vsew >= e8 && P.VU.vsew <= e64); \
require_vector;\
reg_t vl = P.VU.vl; \
reg_t sew = P.VU.vsew; \
@@ -910,7 +910,7 @@ static inline bool is_aligned(const unsigned val, const unsigned pos)
// reduction loop - signed
#define VI_LOOP_REDUCTION_BASE(x) \
- require(x == e8 || x == e16 || x == e32 || x == e64); \
+ require(x >= e8 && x <= e64); \
reg_t vl = P.VU.vl; \
reg_t rd_num = insn.rd(); \
reg_t rs1_num = insn.rs1(); \
@@ -941,7 +941,7 @@ static inline bool is_aligned(const unsigned val, const unsigned pos)
// reduction loop - unsgied
#define VI_ULOOP_REDUCTION_BASE(x) \
- require(x == e8 || x == e16 || x == e32 || x == e64); \
+ require(x >= e8 && x <= e64); \
reg_t vl = P.VU.vl; \
reg_t rd_num = insn.rd(); \
reg_t rs1_num = insn.rs1(); \