]> git.proxmox.com Git - mirror_qemu.git/blame - target/hexagon/translate.h
Hexagon (target/hexagon) Improve code gen for predicated HVX instructions
[mirror_qemu.git] / target / hexagon / translate.h
CommitLineData
8b453a2b 1/*
10849c26 2 * Copyright(c) 2019-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
8b453a2b
TS
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"
cd617484 22#include "qemu/log.h"
8b453a2b
TS
23#include "cpu.h"
24#include "exec/translator.h"
25#include "tcg/tcg-op.h"
1e536334 26#include "insn.h"
8b453a2b
TS
27#include "internal.h"
28
29typedef struct DisasContext {
30 DisasContextBase base;
1e536334
TS
31 Packet *pkt;
32 Insn *insn;
613653e5 33 uint32_t next_PC;
8b453a2b
TS
34 uint32_t mem_idx;
35 uint32_t num_packets;
36 uint32_t num_insns;
a82dd548 37 uint32_t num_hvx_insns;
8b453a2b
TS
38 int reg_log[REG_WRITES_MAX];
39 int reg_log_idx;
40 DECLARE_BITMAP(regs_written, TOTAL_PER_THREAD_REGS);
10849c26 41 DECLARE_BITMAP(predicated_regs, TOTAL_PER_THREAD_REGS);
8b453a2b
TS
42 int preg_log[PRED_WRITES_MAX];
43 int preg_log_idx;
6c677c60 44 DECLARE_BITMAP(pregs_written, NUM_PREGS);
8b453a2b 45 uint8_t store_width[STORES_MAX];
92cfa25f 46 bool s1_store_processed;
a82dd548
TS
47 int future_vregs_idx;
48 int future_vregs_num[VECTOR_TEMPS_MAX];
49 int tmp_vregs_idx;
50 int tmp_vregs_num[VECTOR_TEMPS_MAX];
51 int vreg_log[NUM_VREGS];
a82dd548
TS
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);
4d6f8420
TS
56 DECLARE_BITMAP(predicated_future_vregs, NUM_VREGS);
57 DECLARE_BITMAP(predicated_tmp_vregs, NUM_VREGS);
a82dd548 58 int qreg_log[NUM_QREGS];
a82dd548
TS
59 int qreg_log_idx;
60 bool pre_commit;
1b9a7f2a
TS
61 TCGCond branch_cond;
62 target_ulong branch_dest;
564b2040 63 bool is_tight_loop;
4d13bb51 64 bool need_pkt_has_store_s1;
8b453a2b
TS
65} DisasContext;
66
10849c26 67static inline void ctx_log_pred_write(DisasContext *ctx, int pnum)
8b453a2b 68{
10849c26
TS
69 if (!test_bit(pnum, ctx->pregs_written)) {
70 ctx->preg_log[ctx->preg_log_idx] = pnum;
71 ctx->preg_log_idx++;
72 set_bit(pnum, ctx->pregs_written);
8b453a2b 73 }
8b453a2b
TS
74}
75
10849c26
TS
76static inline void ctx_log_reg_write(DisasContext *ctx, int rnum,
77 bool is_predicated)
8b453a2b 78{
10849c26
TS
79 if (rnum == HEX_REG_P3_0_ALIASED) {
80 for (int i = 0; i < NUM_PREGS; i++) {
81 ctx_log_pred_write(ctx, i);
82 }
83 } else {
84 if (!test_bit(rnum, ctx->regs_written)) {
85 ctx->reg_log[ctx->reg_log_idx] = rnum;
86 ctx->reg_log_idx++;
87 set_bit(rnum, ctx->regs_written);
88 }
89 if (is_predicated) {
90 set_bit(rnum, ctx->predicated_regs);
91 }
92 }
8b453a2b
TS
93}
94
10849c26
TS
95static inline void ctx_log_reg_write_pair(DisasContext *ctx, int rnum,
96 bool is_predicated)
8b453a2b 97{
10849c26
TS
98 ctx_log_reg_write(ctx, rnum, is_predicated);
99 ctx_log_reg_write(ctx, rnum + 1, is_predicated);
8b453a2b
TS
100}
101
a82dd548
TS
102intptr_t ctx_future_vreg_off(DisasContext *ctx, int regnum,
103 int num, bool alloc_ok);
104intptr_t ctx_tmp_vreg_off(DisasContext *ctx, int regnum,
105 int num, bool alloc_ok);
106
107static inline void ctx_log_vreg_write(DisasContext *ctx,
108 int rnum, VRegWriteType type,
109 bool is_predicated)
110{
111 if (type != EXT_TMP) {
c2b33d0b
TS
112 if (!test_bit(rnum, ctx->vregs_updated)) {
113 ctx->vreg_log[ctx->vreg_log_idx] = rnum;
114 ctx->vreg_log_idx++;
115 set_bit(rnum, ctx->vregs_updated);
116 }
a82dd548
TS
117
118 set_bit(rnum, ctx->vregs_updated);
4d6f8420
TS
119 if (is_predicated) {
120 set_bit(rnum, ctx->predicated_future_vregs);
121 }
a82dd548
TS
122 }
123 if (type == EXT_NEW) {
124 set_bit(rnum, ctx->vregs_select);
125 }
126 if (type == EXT_TMP) {
127 set_bit(rnum, ctx->vregs_updated_tmp);
4d6f8420
TS
128 if (is_predicated) {
129 set_bit(rnum, ctx->predicated_tmp_vregs);
130 }
a82dd548
TS
131 }
132}
133
134static inline void ctx_log_vreg_write_pair(DisasContext *ctx,
135 int rnum, VRegWriteType type,
136 bool is_predicated)
137{
138 ctx_log_vreg_write(ctx, rnum ^ 0, type, is_predicated);
139 ctx_log_vreg_write(ctx, rnum ^ 1, type, is_predicated);
140}
141
142static inline void ctx_log_qreg_write(DisasContext *ctx,
c2b33d0b 143 int rnum)
a82dd548
TS
144{
145 ctx->qreg_log[ctx->qreg_log_idx] = rnum;
a82dd548
TS
146 ctx->qreg_log_idx++;
147}
148
8b453a2b
TS
149extern TCGv hex_gpr[TOTAL_PER_THREAD_REGS];
150extern TCGv hex_pred[NUM_PREGS];
8b453a2b
TS
151extern TCGv hex_this_PC;
152extern TCGv hex_slot_cancelled;
153extern TCGv hex_branch_taken;
154extern TCGv hex_new_value[TOTAL_PER_THREAD_REGS];
155extern TCGv hex_reg_written[TOTAL_PER_THREAD_REGS];
156extern TCGv hex_new_pred_value[NUM_PREGS];
157extern TCGv hex_pred_written;
158extern TCGv hex_store_addr[STORES_MAX];
159extern TCGv hex_store_width[STORES_MAX];
160extern TCGv hex_store_val32[STORES_MAX];
161extern TCGv_i64 hex_store_val64[STORES_MAX];
162extern TCGv hex_dczero_addr;
163extern TCGv hex_llsc_addr;
164extern TCGv hex_llsc_val;
165extern TCGv_i64 hex_llsc_val_i64;
a82dd548
TS
166extern TCGv hex_vstore_addr[VSTORES_MAX];
167extern TCGv hex_vstore_size[VSTORES_MAX];
168extern TCGv hex_vstore_pending[VSTORES_MAX];
8b453a2b 169
1e536334
TS
170bool is_gather_store_insn(DisasContext *ctx);
171void process_store(DisasContext *ctx, int slot_num);
7b84fd04
TS
172
173FIELD(PROBE_PKT_SCALAR_STORE_S0, MMU_IDX, 0, 2)
174FIELD(PROBE_PKT_SCALAR_STORE_S0, IS_PREDICATED, 2, 1)
175
176FIELD(PROBE_PKT_SCALAR_HVX_STORES, HAS_ST0, 0, 1)
177FIELD(PROBE_PKT_SCALAR_HVX_STORES, HAS_ST1, 1, 1)
178FIELD(PROBE_PKT_SCALAR_HVX_STORES, HAS_HVX_STORES, 2, 1)
179FIELD(PROBE_PKT_SCALAR_HVX_STORES, S0_IS_PRED, 3, 1)
180FIELD(PROBE_PKT_SCALAR_HVX_STORES, S1_IS_PRED, 4, 1)
181
8b453a2b 182#endif