]> git.proxmox.com Git - mirror_qemu.git/blob - target/hexagon/translate.h
Hexagon (target/hexagon) Use direct block chaining for direct jump/branch
[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 TCGCond branch_cond;
61 target_ulong branch_dest;
62 } DisasContext;
63
64 static inline void ctx_log_reg_write(DisasContext *ctx, int rnum)
65 {
66 if (test_bit(rnum, ctx->regs_written)) {
67 HEX_DEBUG_LOG("WARNING: Multiple writes to r%d\n", rnum);
68 }
69 ctx->reg_log[ctx->reg_log_idx] = rnum;
70 ctx->reg_log_idx++;
71 set_bit(rnum, ctx->regs_written);
72 }
73
74 static inline void ctx_log_reg_write_pair(DisasContext *ctx, int rnum)
75 {
76 ctx_log_reg_write(ctx, rnum);
77 ctx_log_reg_write(ctx, rnum + 1);
78 }
79
80 static inline void ctx_log_pred_write(DisasContext *ctx, int pnum)
81 {
82 ctx->preg_log[ctx->preg_log_idx] = pnum;
83 ctx->preg_log_idx++;
84 set_bit(pnum, ctx->pregs_written);
85 }
86
87 static inline bool is_preloaded(DisasContext *ctx, int num)
88 {
89 return test_bit(num, ctx->regs_written);
90 }
91
92 static inline bool is_vreg_preloaded(DisasContext *ctx, int num)
93 {
94 return test_bit(num, ctx->vregs_updated) ||
95 test_bit(num, ctx->vregs_updated_tmp);
96 }
97
98 intptr_t ctx_future_vreg_off(DisasContext *ctx, int regnum,
99 int num, bool alloc_ok);
100 intptr_t ctx_tmp_vreg_off(DisasContext *ctx, int regnum,
101 int num, bool alloc_ok);
102
103 static inline void ctx_log_vreg_write(DisasContext *ctx,
104 int rnum, VRegWriteType type,
105 bool is_predicated)
106 {
107 if (type != EXT_TMP) {
108 ctx->vreg_log[ctx->vreg_log_idx] = rnum;
109 ctx->vreg_is_predicated[ctx->vreg_log_idx] = is_predicated;
110 ctx->vreg_log_idx++;
111
112 set_bit(rnum, ctx->vregs_updated);
113 }
114 if (type == EXT_NEW) {
115 set_bit(rnum, ctx->vregs_select);
116 }
117 if (type == EXT_TMP) {
118 set_bit(rnum, ctx->vregs_updated_tmp);
119 }
120 }
121
122 static inline void ctx_log_vreg_write_pair(DisasContext *ctx,
123 int rnum, VRegWriteType type,
124 bool is_predicated)
125 {
126 ctx_log_vreg_write(ctx, rnum ^ 0, type, is_predicated);
127 ctx_log_vreg_write(ctx, rnum ^ 1, type, is_predicated);
128 }
129
130 static inline void ctx_log_qreg_write(DisasContext *ctx,
131 int rnum, bool is_predicated)
132 {
133 ctx->qreg_log[ctx->qreg_log_idx] = rnum;
134 ctx->qreg_is_predicated[ctx->qreg_log_idx] = is_predicated;
135 ctx->qreg_log_idx++;
136 }
137
138 extern TCGv hex_gpr[TOTAL_PER_THREAD_REGS];
139 extern TCGv hex_pred[NUM_PREGS];
140 extern TCGv hex_this_PC;
141 extern TCGv hex_slot_cancelled;
142 extern TCGv hex_branch_taken;
143 extern TCGv hex_new_value[TOTAL_PER_THREAD_REGS];
144 extern TCGv hex_reg_written[TOTAL_PER_THREAD_REGS];
145 extern TCGv hex_new_pred_value[NUM_PREGS];
146 extern TCGv hex_pred_written;
147 extern TCGv hex_store_addr[STORES_MAX];
148 extern TCGv hex_store_width[STORES_MAX];
149 extern TCGv hex_store_val32[STORES_MAX];
150 extern TCGv_i64 hex_store_val64[STORES_MAX];
151 extern TCGv hex_dczero_addr;
152 extern TCGv hex_llsc_addr;
153 extern TCGv hex_llsc_val;
154 extern TCGv_i64 hex_llsc_val_i64;
155 extern TCGv hex_VRegs_updated;
156 extern TCGv hex_QRegs_updated;
157 extern TCGv hex_vstore_addr[VSTORES_MAX];
158 extern TCGv hex_vstore_size[VSTORES_MAX];
159 extern TCGv hex_vstore_pending[VSTORES_MAX];
160
161 bool is_gather_store_insn(DisasContext *ctx);
162 void process_store(DisasContext *ctx, int slot_num);
163 #endif