xref: /qemu/target/hexagon/translate.h (revision 10849c26)
18b453a2bSTaylor Simpson /*
210849c26STaylor Simpson  *  Copyright(c) 2019-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
38b453a2bSTaylor Simpson  *
48b453a2bSTaylor Simpson  *  This program is free software; you can redistribute it and/or modify
58b453a2bSTaylor Simpson  *  it under the terms of the GNU General Public License as published by
68b453a2bSTaylor Simpson  *  the Free Software Foundation; either version 2 of the License, or
78b453a2bSTaylor Simpson  *  (at your option) any later version.
88b453a2bSTaylor Simpson  *
98b453a2bSTaylor Simpson  *  This program is distributed in the hope that it will be useful,
108b453a2bSTaylor Simpson  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
118b453a2bSTaylor Simpson  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
128b453a2bSTaylor Simpson  *  GNU General Public License for more details.
138b453a2bSTaylor Simpson  *
148b453a2bSTaylor Simpson  *  You should have received a copy of the GNU General Public License
158b453a2bSTaylor Simpson  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
168b453a2bSTaylor Simpson  */
178b453a2bSTaylor Simpson 
188b453a2bSTaylor Simpson #ifndef HEXAGON_TRANSLATE_H
198b453a2bSTaylor Simpson #define HEXAGON_TRANSLATE_H
208b453a2bSTaylor Simpson 
218b453a2bSTaylor Simpson #include "qemu/bitmap.h"
22cd617484SPhilippe Mathieu-Daudé #include "qemu/log.h"
238b453a2bSTaylor Simpson #include "cpu.h"
248b453a2bSTaylor Simpson #include "exec/translator.h"
258b453a2bSTaylor Simpson #include "tcg/tcg-op.h"
261e536334STaylor Simpson #include "insn.h"
278b453a2bSTaylor Simpson #include "internal.h"
288b453a2bSTaylor Simpson 
298b453a2bSTaylor Simpson typedef struct DisasContext {
308b453a2bSTaylor Simpson     DisasContextBase base;
311e536334STaylor Simpson     Packet *pkt;
321e536334STaylor Simpson     Insn *insn;
33613653e5STaylor Simpson     uint32_t next_PC;
348b453a2bSTaylor Simpson     uint32_t mem_idx;
358b453a2bSTaylor Simpson     uint32_t num_packets;
368b453a2bSTaylor Simpson     uint32_t num_insns;
37a82dd548STaylor Simpson     uint32_t num_hvx_insns;
388b453a2bSTaylor Simpson     int reg_log[REG_WRITES_MAX];
398b453a2bSTaylor Simpson     int reg_log_idx;
408b453a2bSTaylor Simpson     DECLARE_BITMAP(regs_written, TOTAL_PER_THREAD_REGS);
4110849c26STaylor Simpson     DECLARE_BITMAP(predicated_regs, TOTAL_PER_THREAD_REGS);
428b453a2bSTaylor Simpson     int preg_log[PRED_WRITES_MAX];
438b453a2bSTaylor Simpson     int preg_log_idx;
446c677c60STaylor Simpson     DECLARE_BITMAP(pregs_written, NUM_PREGS);
458b453a2bSTaylor Simpson     uint8_t store_width[STORES_MAX];
4692cfa25fSTaylor Simpson     bool s1_store_processed;
47a82dd548STaylor Simpson     int future_vregs_idx;
48a82dd548STaylor Simpson     int future_vregs_num[VECTOR_TEMPS_MAX];
49a82dd548STaylor Simpson     int tmp_vregs_idx;
50a82dd548STaylor Simpson     int tmp_vregs_num[VECTOR_TEMPS_MAX];
51a82dd548STaylor Simpson     int vreg_log[NUM_VREGS];
52a82dd548STaylor Simpson     bool vreg_is_predicated[NUM_VREGS];
53a82dd548STaylor Simpson     int vreg_log_idx;
54a82dd548STaylor Simpson     DECLARE_BITMAP(vregs_updated_tmp, NUM_VREGS);
55a82dd548STaylor Simpson     DECLARE_BITMAP(vregs_updated, NUM_VREGS);
56a82dd548STaylor Simpson     DECLARE_BITMAP(vregs_select, NUM_VREGS);
57a82dd548STaylor Simpson     int qreg_log[NUM_QREGS];
58a82dd548STaylor Simpson     bool qreg_is_predicated[NUM_QREGS];
59a82dd548STaylor Simpson     int qreg_log_idx;
60a82dd548STaylor Simpson     bool pre_commit;
611b9a7f2aSTaylor Simpson     TCGCond branch_cond;
621b9a7f2aSTaylor Simpson     target_ulong branch_dest;
63564b2040STaylor Simpson     bool is_tight_loop;
648b453a2bSTaylor Simpson } DisasContext;
658b453a2bSTaylor Simpson 
668b453a2bSTaylor Simpson static inline void ctx_log_pred_write(DisasContext *ctx, int pnum)
678b453a2bSTaylor Simpson {
6810849c26STaylor Simpson     if (!test_bit(pnum, ctx->pregs_written)) {
698b453a2bSTaylor Simpson         ctx->preg_log[ctx->preg_log_idx] = pnum;
708b453a2bSTaylor Simpson         ctx->preg_log_idx++;
716c677c60STaylor Simpson         set_bit(pnum, ctx->pregs_written);
728b453a2bSTaylor Simpson     }
7310849c26STaylor Simpson }
748b453a2bSTaylor Simpson 
7510849c26STaylor Simpson static inline void ctx_log_reg_write(DisasContext *ctx, int rnum,
7610849c26STaylor Simpson                                      bool is_predicated)
778b453a2bSTaylor Simpson {
7810849c26STaylor Simpson     if (rnum == HEX_REG_P3_0_ALIASED) {
7910849c26STaylor Simpson         for (int i = 0; i < NUM_PREGS; i++) {
8010849c26STaylor Simpson             ctx_log_pred_write(ctx, i);
8110849c26STaylor Simpson         }
8210849c26STaylor Simpson     } else {
8310849c26STaylor Simpson         if (!test_bit(rnum, ctx->regs_written)) {
8410849c26STaylor Simpson             ctx->reg_log[ctx->reg_log_idx] = rnum;
8510849c26STaylor Simpson             ctx->reg_log_idx++;
8610849c26STaylor Simpson             set_bit(rnum, ctx->regs_written);
8710849c26STaylor Simpson         }
8810849c26STaylor Simpson         if (is_predicated) {
8910849c26STaylor Simpson             set_bit(rnum, ctx->predicated_regs);
9010849c26STaylor Simpson         }
9110849c26STaylor Simpson     }
9210849c26STaylor Simpson }
9310849c26STaylor Simpson 
9410849c26STaylor Simpson static inline void ctx_log_reg_write_pair(DisasContext *ctx, int rnum,
9510849c26STaylor Simpson                                           bool is_predicated)
9610849c26STaylor Simpson {
9710849c26STaylor Simpson     ctx_log_reg_write(ctx, rnum, is_predicated);
9810849c26STaylor Simpson     ctx_log_reg_write(ctx, rnum + 1, is_predicated);
998b453a2bSTaylor Simpson }
1008b453a2bSTaylor Simpson 
10183853ea0STaylor Simpson static inline bool is_vreg_preloaded(DisasContext *ctx, int num)
10283853ea0STaylor Simpson {
10383853ea0STaylor Simpson     return test_bit(num, ctx->vregs_updated) ||
10483853ea0STaylor Simpson            test_bit(num, ctx->vregs_updated_tmp);
10583853ea0STaylor Simpson }
10683853ea0STaylor Simpson 
107a82dd548STaylor Simpson intptr_t ctx_future_vreg_off(DisasContext *ctx, int regnum,
108a82dd548STaylor Simpson                              int num, bool alloc_ok);
109a82dd548STaylor Simpson intptr_t ctx_tmp_vreg_off(DisasContext *ctx, int regnum,
110a82dd548STaylor Simpson                           int num, bool alloc_ok);
111a82dd548STaylor Simpson 
112a82dd548STaylor Simpson static inline void ctx_log_vreg_write(DisasContext *ctx,
113a82dd548STaylor Simpson                                       int rnum, VRegWriteType type,
114a82dd548STaylor Simpson                                       bool is_predicated)
115a82dd548STaylor Simpson {
116a82dd548STaylor Simpson     if (type != EXT_TMP) {
117a82dd548STaylor Simpson         ctx->vreg_log[ctx->vreg_log_idx] = rnum;
118a82dd548STaylor Simpson         ctx->vreg_is_predicated[ctx->vreg_log_idx] = is_predicated;
119a82dd548STaylor Simpson         ctx->vreg_log_idx++;
120a82dd548STaylor Simpson 
121a82dd548STaylor Simpson         set_bit(rnum, ctx->vregs_updated);
122a82dd548STaylor Simpson     }
123a82dd548STaylor Simpson     if (type == EXT_NEW) {
124a82dd548STaylor Simpson         set_bit(rnum, ctx->vregs_select);
125a82dd548STaylor Simpson     }
126a82dd548STaylor Simpson     if (type == EXT_TMP) {
127a82dd548STaylor Simpson         set_bit(rnum, ctx->vregs_updated_tmp);
128a82dd548STaylor Simpson     }
129a82dd548STaylor Simpson }
130a82dd548STaylor Simpson 
131a82dd548STaylor Simpson static inline void ctx_log_vreg_write_pair(DisasContext *ctx,
132a82dd548STaylor Simpson                                            int rnum, VRegWriteType type,
133a82dd548STaylor Simpson                                            bool is_predicated)
134a82dd548STaylor Simpson {
135a82dd548STaylor Simpson     ctx_log_vreg_write(ctx, rnum ^ 0, type, is_predicated);
136a82dd548STaylor Simpson     ctx_log_vreg_write(ctx, rnum ^ 1, type, is_predicated);
137a82dd548STaylor Simpson }
138a82dd548STaylor Simpson 
139a82dd548STaylor Simpson static inline void ctx_log_qreg_write(DisasContext *ctx,
140a82dd548STaylor Simpson                                       int rnum, bool is_predicated)
141a82dd548STaylor Simpson {
142a82dd548STaylor Simpson     ctx->qreg_log[ctx->qreg_log_idx] = rnum;
143a82dd548STaylor Simpson     ctx->qreg_is_predicated[ctx->qreg_log_idx] = is_predicated;
144a82dd548STaylor Simpson     ctx->qreg_log_idx++;
145a82dd548STaylor Simpson }
146a82dd548STaylor Simpson 
1478b453a2bSTaylor Simpson extern TCGv hex_gpr[TOTAL_PER_THREAD_REGS];
1488b453a2bSTaylor Simpson extern TCGv hex_pred[NUM_PREGS];
1498b453a2bSTaylor Simpson extern TCGv hex_this_PC;
1508b453a2bSTaylor Simpson extern TCGv hex_slot_cancelled;
1518b453a2bSTaylor Simpson extern TCGv hex_branch_taken;
1528b453a2bSTaylor Simpson extern TCGv hex_new_value[TOTAL_PER_THREAD_REGS];
1538b453a2bSTaylor Simpson extern TCGv hex_reg_written[TOTAL_PER_THREAD_REGS];
1548b453a2bSTaylor Simpson extern TCGv hex_new_pred_value[NUM_PREGS];
1558b453a2bSTaylor Simpson extern TCGv hex_pred_written;
1568b453a2bSTaylor Simpson extern TCGv hex_store_addr[STORES_MAX];
1578b453a2bSTaylor Simpson extern TCGv hex_store_width[STORES_MAX];
1588b453a2bSTaylor Simpson extern TCGv hex_store_val32[STORES_MAX];
1598b453a2bSTaylor Simpson extern TCGv_i64 hex_store_val64[STORES_MAX];
1608b453a2bSTaylor Simpson extern TCGv hex_dczero_addr;
1618b453a2bSTaylor Simpson extern TCGv hex_llsc_addr;
1628b453a2bSTaylor Simpson extern TCGv hex_llsc_val;
1638b453a2bSTaylor Simpson extern TCGv_i64 hex_llsc_val_i64;
164a82dd548STaylor Simpson extern TCGv hex_VRegs_updated;
165a82dd548STaylor Simpson extern TCGv hex_QRegs_updated;
166a82dd548STaylor Simpson extern TCGv hex_vstore_addr[VSTORES_MAX];
167a82dd548STaylor Simpson extern TCGv hex_vstore_size[VSTORES_MAX];
168a82dd548STaylor Simpson extern TCGv hex_vstore_pending[VSTORES_MAX];
1698b453a2bSTaylor Simpson 
1701e536334STaylor Simpson bool is_gather_store_insn(DisasContext *ctx);
1711e536334STaylor Simpson void process_store(DisasContext *ctx, int slot_num);
1728b453a2bSTaylor Simpson #endif
173