[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 13/30] Hexagon HVX (target/hexagon) helper overrides for histo
|
From: |
Taylor Simpson |
|
Subject: |
[PATCH v2 13/30] Hexagon HVX (target/hexagon) helper overrides for histogram instructions |
|
Date: |
Thu, 26 Aug 2021 12:35:41 -0500 |
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
---
target/hexagon/gen_tcg_hvx.h | 91 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 91 insertions(+)
diff --git a/target/hexagon/gen_tcg_hvx.h b/target/hexagon/gen_tcg_hvx.h
index b5c6cad..40fcb54 100644
--- a/target/hexagon/gen_tcg_hvx.h
+++ b/target/hexagon/gen_tcg_hvx.h
@@ -18,4 +18,95 @@
#ifndef HEXAGON_GEN_TCG_HVX_H
#define HEXAGON_GEN_TCG_HVX_H
+/*
+ * Histogram instructions
+ *
+ * Note that these instructions operate directly on the vector registers
+ * and therefore happen after commit.
+ *
+ * The generate_<tag> function is called twice
+ * The first time is during the normal TCG generation
+ * ctx->pre_commit is true
+ * In the masked cases, we save the mask to the qtmp temporary
+ * Otherwise, there is nothing to do
+ * The second call is at the end of gen_commit_packet
+ * ctx->pre_commit is false
+ * Generate the call to the helper
+ */
+#define fGEN_TCG_V6_vhist(SHORTCODE) \
+ if (!ctx->pre_commit) { \
+ gen_helper_vhist(cpu_env); \
+ }
+#define fGEN_TCG_V6_vhistq(SHORTCODE) \
+ do { \
+ if (ctx->pre_commit) { \
+ intptr_t dstoff = offsetof(CPUHexagonState, qtmp); \
+ tcg_gen_gvec_mov(MO_64, dstoff, QvV_off, \
+ sizeof(MMVector), sizeof(MMVector)); \
+ } else { \
+ gen_helper_vhistq(cpu_env); \
+ } \
+ } while (0)
+#define fGEN_TCG_V6_vwhist256(SHORTCODE) \
+ if (!ctx->pre_commit) { \
+ gen_helper_vwhist256(cpu_env); \
+ }
+#define fGEN_TCG_V6_vwhist256q(SHORTCODE) \
+ do { \
+ if (ctx->pre_commit) { \
+ intptr_t dstoff = offsetof(CPUHexagonState, qtmp); \
+ tcg_gen_gvec_mov(MO_64, dstoff, QvV_off, \
+ sizeof(MMVector), sizeof(MMVector)); \
+ } else { \
+ gen_helper_vwhist256q(cpu_env); \
+ } \
+ } while (0)
+#define fGEN_TCG_V6_vwhist256_sat(SHORTCODE) \
+ if (!ctx->pre_commit) { \
+ gen_helper_vwhist256_sat(cpu_env); \
+ }
+#define fGEN_TCG_V6_vwhist256q_sat(SHORTCODE) \
+ do { \
+ if (ctx->pre_commit) { \
+ intptr_t dstoff = offsetof(CPUHexagonState, qtmp); \
+ tcg_gen_gvec_mov(MO_64, dstoff, QvV_off, \
+ sizeof(MMVector), sizeof(MMVector)); \
+ } else { \
+ gen_helper_vwhist256q_sat(cpu_env); \
+ } \
+ } while (0)
+#define fGEN_TCG_V6_vwhist128(SHORTCODE) \
+ if (!ctx->pre_commit) { \
+ gen_helper_vwhist128(cpu_env); \
+ }
+#define fGEN_TCG_V6_vwhist128q(SHORTCODE) \
+ do { \
+ if (ctx->pre_commit) { \
+ intptr_t dstoff = offsetof(CPUHexagonState, qtmp); \
+ tcg_gen_gvec_mov(MO_64, dstoff, QvV_off, \
+ sizeof(MMVector), sizeof(MMVector)); \
+ } else { \
+ gen_helper_vwhist128q(cpu_env); \
+ } \
+ } while (0)
+#define fGEN_TCG_V6_vwhist128m(SHORTCODE) \
+ if (!ctx->pre_commit) { \
+ TCGv tcgv_uiV = tcg_const_tl(uiV); \
+ gen_helper_vwhist128m(cpu_env, tcgv_uiV); \
+ tcg_temp_free(tcgv_uiV); \
+ }
+#define fGEN_TCG_V6_vwhist128qm(SHORTCODE) \
+ do { \
+ if (ctx->pre_commit) { \
+ intptr_t dstoff = offsetof(CPUHexagonState, qtmp); \
+ tcg_gen_gvec_mov(MO_64, dstoff, QvV_off, \
+ sizeof(MMVector), sizeof(MMVector)); \
+ } else { \
+ TCGv tcgv_uiV = tcg_const_tl(uiV); \
+ gen_helper_vwhist128qm(cpu_env, tcgv_uiV); \
+ tcg_temp_free(tcgv_uiV); \
+ } \
+ } while (0)
+
+
#endif
--
2.7.4
- [PATCH v2 00/30] Hexagon HVX (target/hexagon) patch series, Taylor Simpson, 2021/08/26
- [PATCH v2 03/30] Hexagon HVX (target/hexagon) register names, Taylor Simpson, 2021/08/26
- [PATCH v2 01/30] Hexagon HVX (target/hexagon) README, Taylor Simpson, 2021/08/26
- [PATCH v2 04/30] Hexagon HVX (target/hexagon) instruction attributes, Taylor Simpson, 2021/08/26
- [PATCH v2 10/30] Hexagon HVX (target/hexagon) instruction utility functions, Taylor Simpson, 2021/08/26
- [PATCH v2 02/30] Hexagon HVX (target/hexagon) add Hexagon Vector eXtensions (HVX) to core, Taylor Simpson, 2021/08/26
- [PATCH v2 11/30] Hexagon HVX (target/hexagon) helper functions, Taylor Simpson, 2021/08/26
- [PATCH v2 12/30] Hexagon HVX (target/hexagon) helper overrides infrastructure, Taylor Simpson, 2021/08/26
- [PATCH v2 07/30] Hexagon HVX (target/hexagon) semantics generator, Taylor Simpson, 2021/08/26
- [PATCH v2 08/30] Hexagon HVX (target/hexagon) semantics generator - part 2, Taylor Simpson, 2021/08/26
- [PATCH v2 13/30] Hexagon HVX (target/hexagon) helper overrides for histogram instructions,
Taylor Simpson <=
- [PATCH v2 09/30] Hexagon HVX (target/hexagon) C preprocessor for decode tree, Taylor Simpson, 2021/08/26
- [PATCH v2 18/30] Hexagon HVX (target/hexagon) helper overrides - vector logical ops, Taylor Simpson, 2021/08/26
- [PATCH v2 14/30] Hexagon HVX (target/hexagon) helper overrides - vector assign & cmov, Taylor Simpson, 2021/08/26
- [PATCH v2 05/30] Hexagon HVX (target/hexagon) macros, Taylor Simpson, 2021/08/26
- [PATCH v2 06/30] Hexagon HVX (target/hexagon) import macro definitions, Taylor Simpson, 2021/08/26
- [PATCH v2 17/30] Hexagon HVX (target/hexagon) helper overrides - vector max/min, Taylor Simpson, 2021/08/26
- [PATCH v2 21/30] Hexagon HVX (target/hexagon) helper overrides - vector loads, Taylor Simpson, 2021/08/26
- [PATCH v2 16/30] Hexagon HVX (target/hexagon) helper overrides - vector shifts, Taylor Simpson, 2021/08/26
- [PATCH v2 22/30] Hexagon HVX (target/hexagon) helper overrides - vector stores, Taylor Simpson, 2021/08/26
- [PATCH v2 20/30] Hexagon HVX (target/hexagon) helper overrides - vector splat and abs, Taylor Simpson, 2021/08/26