aboutsummaryrefslogtreecommitdiff
path: root/riscv/decode.h
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2021-12-07 11:17:36 -0800
committerGitHub <noreply@github.com>2021-12-07 11:17:36 -0800
commit522d8a20b7bf4ab5cad0ceaa3b45155fb6d08f76 (patch)
tree8770b9cf3f66939f5f13eb1c5ef541d7cbd2dcc3 /riscv/decode.h
parent49289b07b4418f48494973a48894d75410ac76fd (diff)
parentd177f05b7bd01f25a16e8cc0712fa551bdaeb954 (diff)
downloadspike-522d8a20b7bf4ab5cad0ceaa3b45155fb6d08f76.zip
spike-522d8a20b7bf4ab5cad0ceaa3b45155fb6d08f76.tar.gz
spike-522d8a20b7bf4ab5cad0ceaa3b45155fb6d08f76.tar.bz2
Merge pull request #868 from eopXD/simplify-narrowing-inst
Simplify narrowing instruction
Diffstat (limited to 'riscv/decode.h')
-rw-r--r--riscv/decode.h101
1 files changed, 54 insertions, 47 deletions
diff --git a/riscv/decode.h b/riscv/decode.h
index 4d37530..313d9f0 100644
--- a/riscv/decode.h
+++ b/riscv/decode.h
@@ -794,19 +794,19 @@ static inline bool is_aligned(const unsigned val, const unsigned pos)
auto &vd = P.VU.elt<type_sew_t<x>::type>(rd_num, i, true); \
auto vs2 = P.VU.elt<type_sew_t<x>::type>(rs2_num, i - offset);
-#define VI_NSHIFT_PARAMS(sew1, sew2) \
+#define VI_NARROW_PARAMS(sew1, sew2) \
auto &vd = P.VU.elt<type_usew_t<sew1>::type>(rd_num, i, true); \
auto vs2_u = P.VU.elt<type_usew_t<sew2>::type>(rs2_num, i); \
auto vs2 = P.VU.elt<type_sew_t<sew2>::type>(rs2_num, i); \
auto zimm5 = (type_usew_t<sew1>::type)insn.v_zimm5();
-#define VX_NSHIFT_PARAMS(sew1, sew2) \
+#define VX_NARROW_PARAMS(sew1, sew2) \
auto &vd = P.VU.elt<type_usew_t<sew1>::type>(rd_num, i, true); \
auto vs2_u = P.VU.elt<type_usew_t<sew2>::type>(rs2_num, i); \
auto vs2 = P.VU.elt<type_sew_t<sew2>::type>(rs2_num, i); \
auto rs1 = (type_sew_t<sew1>::type)RS1;
-#define VV_NSHIFT_PARAMS(sew1, sew2) \
+#define VV_NARROW_PARAMS(sew1, sew2) \
auto &vd = P.VU.elt<type_usew_t<sew1>::type>(rd_num, i, true); \
auto vs2_u = P.VU.elt<type_usew_t<sew2>::type>(rs2_num, i); \
auto vs2 = P.VU.elt<type_sew_t<sew2>::type>(rs2_num, i); \
@@ -1174,84 +1174,91 @@ static inline bool is_aligned(const unsigned val, const unsigned pos)
// narrow operation loop
#define VI_VV_LOOP_NARROW(BODY) \
-VI_NARROW_CHECK_COMMON; \
-VI_LOOP_BASE \
-if (sew == e8){ \
- VI_NARROW_SHIFT(e8, e16) \
- BODY; \
-}else if(sew == e16){ \
- VI_NARROW_SHIFT(e16, e32) \
- BODY; \
-}else if(sew == e32){ \
- VI_NARROW_SHIFT(e32, e64) \
- BODY; \
-} \
-VI_LOOP_END
-
-#define VI_NARROW_SHIFT(sew1, sew2) \
- type_usew_t<sew1>::type &vd = P.VU.elt<type_usew_t<sew1>::type>(rd_num, i, true); \
- type_usew_t<sew2>::type vs2_u = P.VU.elt<type_usew_t<sew2>::type>(rs2_num, i); \
- type_usew_t<sew1>::type zimm5 = (type_usew_t<sew1>::type)insn.v_zimm5(); \
- type_sew_t<sew2>::type vs2 = P.VU.elt<type_sew_t<sew2>::type>(rs2_num, i); \
- type_sew_t<sew1>::type vs1 = P.VU.elt<type_sew_t<sew1>::type>(rs1_num, i); \
- type_sew_t<sew1>::type rs1 = (type_sew_t<sew1>::type)RS1;
-
-#define VI_VVXI_LOOP_NARROW(BODY, is_vs1) \
- VI_CHECK_SDS(is_vs1); \
+ VI_CHECK_SDS(true); \
VI_LOOP_BASE \
if (sew == e8){ \
- VI_NARROW_SHIFT(e8, e16) \
+ VV_NARROW_PARAMS(e8, e16) \
BODY; \
- } else if (sew == e16) { \
- VI_NARROW_SHIFT(e16, e32) \
+ }else if(sew == e16){ \
+ VV_NARROW_PARAMS(e16, e32) \
BODY; \
- } else if (sew == e32) { \
- VI_NARROW_SHIFT(e32, e64) \
+ }else if(sew == e32){ \
+ VV_NARROW_PARAMS(e32, e64) \
+ BODY; \
+ } \
+ VI_LOOP_END
+
+#define VI_VX_LOOP_NARROW(BODY) \
+ VI_CHECK_SDS(false); \
+ VI_LOOP_BASE \
+ if (sew == e8){ \
+ VX_NARROW_PARAMS(e8, e16) \
+ BODY; \
+ }else if(sew == e16){ \
+ VX_NARROW_PARAMS(e16, e32) \
+ BODY; \
+ }else if(sew == e32){ \
+ VX_NARROW_PARAMS(e32, e64) \
+ BODY; \
+ } \
+ VI_LOOP_END
+
+#define VI_VI_LOOP_NARROW(BODY) \
+ VI_CHECK_SDS(false); \
+ VI_LOOP_BASE \
+ if (sew == e8){ \
+ VI_NARROW_PARAMS(e8, e16) \
+ BODY; \
+ }else if(sew == e16){ \
+ VI_NARROW_PARAMS(e16, e32) \
+ BODY; \
+ }else if(sew == e32){ \
+ VI_NARROW_PARAMS(e32, e64) \
BODY; \
} \
VI_LOOP_END
-#define VI_VI_LOOP_NSHIFT(BODY, is_vs1) \
- VI_CHECK_SDS(is_vs1); \
+#define VI_VI_LOOP_NSHIFT(BODY) \
+ VI_CHECK_SDS(false); \
VI_LOOP_NSHIFT_BASE \
if (sew == e8){ \
- VI_NSHIFT_PARAMS(e8, e16) \
+ VI_NARROW_PARAMS(e8, e16) \
BODY; \
} else if (sew == e16) { \
- VI_NSHIFT_PARAMS(e16, e32) \
+ VI_NARROW_PARAMS(e16, e32) \
BODY; \
} else if (sew == e32) { \
- VI_NSHIFT_PARAMS(e32, e64) \
+ VI_NARROW_PARAMS(e32, e64) \
BODY; \
} \
VI_LOOP_END
-#define VI_VX_LOOP_NSHIFT(BODY, is_vs1) \
- VI_CHECK_SDS(is_vs1); \
+#define VI_VX_LOOP_NSHIFT(BODY) \
+ VI_CHECK_SDS(false); \
VI_LOOP_NSHIFT_BASE \
if (sew == e8){ \
- VX_NSHIFT_PARAMS(e8, e16) \
+ VX_NARROW_PARAMS(e8, e16) \
BODY; \
} else if (sew == e16) { \
- VX_NSHIFT_PARAMS(e16, e32) \
+ VX_NARROW_PARAMS(e16, e32) \
BODY; \
} else if (sew == e32) { \
- VX_NSHIFT_PARAMS(e32, e64) \
+ VX_NARROW_PARAMS(e32, e64) \
BODY; \
} \
VI_LOOP_END
-#define VI_VV_LOOP_NSHIFT(BODY, is_vs1) \
- VI_CHECK_SDS(is_vs1); \
+#define VI_VV_LOOP_NSHIFT(BODY) \
+ VI_CHECK_SDS(true); \
VI_LOOP_NSHIFT_BASE \
if (sew == e8){ \
- VV_NSHIFT_PARAMS(e8, e16) \
+ VV_NARROW_PARAMS(e8, e16) \
BODY; \
} else if (sew == e16) { \
- VV_NSHIFT_PARAMS(e16, e32) \
+ VV_NARROW_PARAMS(e16, e32) \
BODY; \
} else if (sew == e32) { \
- VV_NSHIFT_PARAMS(e32, e64) \
+ VV_NARROW_PARAMS(e32, e64) \
BODY; \
} \
VI_LOOP_END