]> git.proxmox.com Git - mirror_qemu.git/blob - target/hexagon/translate.h
Hexagon (target/hexagon) Remove next_PC from runtime state
[mirror_qemu.git] / target / hexagon / translate.h
1 /*
2 * Copyright(c) 2019-2022 Qualcomm Innovation Center, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef HEXAGON_TRANSLATE_H
19 #define HEXAGON_TRANSLATE_H
20
21 #include "qemu/bitmap.h"
22 #include "qemu/log.h"
23 #include "cpu.h"
24 #include "exec/translator.h"
25 #include "tcg/tcg-op.h"
26 #include "insn.h"
27 #include "internal.h"
28
29 typedef struct DisasContext {
30 DisasContextBase base;
31 Packet *pkt;
32 Insn *insn;
33 uint32_t next_PC;
34 uint32_t mem_idx;
35 uint32_t num_packets;
36 uint32_t num_insns;
37 uint32_t num_hvx_insns;
38 int reg_log[REG_WRITES_MAX];
39 int reg_log_idx;
40 DECLARE_BITMAP(regs_written, TOTAL_PER_THREAD_REGS);
41 int preg_log[PRED_WRITES_MAX];
42 int preg_log_idx;
43 DECLARE_BITMAP(pregs_written, NUM_PREGS);
44 uint8_t store_width[STORES_MAX];
45 bool s1_store_processed;
46 int future_vregs_idx;
47 int future_vregs_num[VECTOR_TEMPS_MAX];
48 int tmp_vregs_idx;
49 int tmp_vregs_num[VECTOR_TEMPS_MAX];
50 int vreg_log[NUM_VREGS];
51 bool vreg_is_predicated[NUM_VREGS];
52 int vreg_log_idx;
53 DECLARE_BITMAP(vregs_updated_tmp, NUM_VREGS);
54 DECLARE_BITMAP(vregs_updated, NUM_VREGS);
55 DECLARE_BITMAP(vregs_select, NUM_VREGS);
56 int qreg_log[NUM_QREGS];
57 bool qreg_is_predicated[NUM_QREGS];
58 int qreg_log_idx;
59 bool pre_commit;
60 } DisasContext;
61
62 static inline void ctx_log_reg_write(DisasContext *ctx, int rnum)
63 {
64 if (test_bit(rnum, ctx->regs_written)) {
65 HEX_DEBUG_LOG("WARNING: Multiple writes to r%d\n", rnum);
66 }
67 ctx->reg_log[ctx->reg_log_idx] = rnum;
68 ctx->reg_log_idx++;
69 set_bit(rnum, ctx->regs_written);
70 }
71
72 static inline void ctx_log_reg_write_pair(DisasContext *ctx, int rnum)
73 {
74 ctx_log_reg_write(ctx, rnum);
75 ctx_log_reg_write(ctx, rnum + 1);
76 }
77
78 static inline void ctx_log_pred_write(DisasContext *ctx, int pnum)
79 {
80 ctx->preg_log[ctx->preg_log_idx] = pnum;
81 ctx->preg_log_idx++;
82 set_bit(pnum, ctx->pregs_written);
83 }
84
85 static inline bool is_preloaded(DisasContext *ctx, int num)
86 {
87 return test_bit(num, ctx->regs_written);
88 }
89
90 static inline bool is_vreg_preloaded(DisasContext *ctx, int num)
91 {
92 return test_bit(num, ctx->vregs_updated) ||
93 test_bit(num, ctx->vregs_updated_tmp);
94 }
95
96 intptr_t ctx_future_vreg_off(DisasContext *ctx, int regnum,
97 int num, bool alloc_ok);
98 intptr_t ctx_tmp_vreg_off(DisasContext *ctx, int regnum,
99 int num, bool alloc_ok);
100
101 static inline void ctx_log_vreg_write(DisasContext *ctx,
102 int rnum, VRegWriteType type,
103 bool is_predicated)
104 {
105 if (type != EXT_TMP) {
106 ctx->vreg_log[ctx->vreg_log_idx] = rnum;
107 ctx->vreg_is_predicated[ctx->vreg_log_idx] = is_predicated;
108 ctx->vreg_log_idx++;
109
110 set_bit(rnum, ctx->vregs_updated);
111 }
112 if (type == EXT_NEW) {
113 set_bit(rnum, ctx->vregs_select);
114 }
115 if (type == EXT_TMP) {
116 set_bit(rnum, ctx->vregs_updated_tmp);
117 }
118 }
119
120 static inline void ctx_log_vreg_write_pair(DisasContext *ctx,
121 int rnum, VRegWriteType type,
122 bool is_predicated)
123 {
124 ctx_log_vreg_write(ctx, rnum ^ 0, type, is_predicated);
125 ctx_log_vreg_write(ctx, rnum ^ 1, type, is_predicated);
126 }
127
128 static inline void ctx_log_qreg_write(DisasContext *ctx,
129 int rnum, bool is_predicated)
130 {
131 ctx->qreg_log[ctx->qreg_log_idx] = rnum;
132 ctx->qreg_is_predicated[ctx->qreg_log_idx] = is_predicated;
133 ctx->qreg_log_idx++;
134 }
135
136 extern TCGv hex_gpr[TOTAL_PER_THREAD_REGS];
137 extern TCGv hex_pred[NUM_PREGS];
138 extern TCGv hex_this_PC;
139 extern TCGv hex_slot_cancelled;
140 extern TCGv hex_branch_taken;
141 extern TCGv hex_new_value[TOTAL_PER_THREAD_REGS];
142 extern TCGv hex_reg_written[TOTAL_PER_THREAD_REGS];
143 extern TCGv hex_new_pred_value[NUM_PREGS];
144 extern TCGv hex_pred_written;
145 extern TCGv hex_store_addr[STORES_MAX];
146 extern TCGv hex_store_width[STORES_MAX];
147 extern TCGv hex_store_val32[STORES_MAX];
148 extern TCGv_i64 hex_store_val64[STORES_MAX];
149 extern TCGv hex_dczero_addr;
150 extern TCGv hex_llsc_addr;
151 extern TCGv hex_llsc_val;
152 extern TCGv_i64 hex_llsc_val_i64;
153 extern TCGv hex_VRegs_updated;
154 extern TCGv hex_QRegs_updated;
155 extern TCGv hex_vstore_addr[VSTORES_MAX];
156 extern TCGv hex_vstore_size[VSTORES_MAX];
157 extern TCGv hex_vstore_pending[VSTORES_MAX];
158
159 bool is_gather_store_insn(DisasContext *ctx);
160 void process_store(DisasContext *ctx, int slot_num);
161 #endif