xref: /openbmc/qemu/target/hexagon/translate.c (revision 4d13bb51)
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 #define QEMU_GENERATE
198b453a2bSTaylor Simpson #include "qemu/osdep.h"
208b453a2bSTaylor Simpson #include "cpu.h"
218b453a2bSTaylor Simpson #include "tcg/tcg-op.h"
22a82dd548STaylor Simpson #include "tcg/tcg-op-gvec.h"
238b453a2bSTaylor Simpson #include "exec/cpu_ldst.h"
248b453a2bSTaylor Simpson #include "exec/log.h"
258b453a2bSTaylor Simpson #include "internal.h"
268b453a2bSTaylor Simpson #include "attribs.h"
278b453a2bSTaylor Simpson #include "insn.h"
288b453a2bSTaylor Simpson #include "decode.h"
298b453a2bSTaylor Simpson #include "translate.h"
308b453a2bSTaylor Simpson #include "printinsn.h"
318b453a2bSTaylor Simpson 
3210849c26STaylor Simpson #include "analyze_funcs_generated.c.inc"
3310849c26STaylor Simpson 
3410849c26STaylor Simpson typedef void (*AnalyzeInsn)(DisasContext *ctx);
3510849c26STaylor Simpson static const AnalyzeInsn opcode_analyze[XX_LAST_OPCODE] = {
3610849c26STaylor Simpson #define OPCODE(X)    [X] = analyze_##X
3710849c26STaylor Simpson #include "opcodes_def_generated.h.inc"
3810849c26STaylor Simpson #undef OPCODE
3910849c26STaylor Simpson };
4010849c26STaylor Simpson 
418b453a2bSTaylor Simpson TCGv hex_gpr[TOTAL_PER_THREAD_REGS];
428b453a2bSTaylor Simpson TCGv hex_pred[NUM_PREGS];
438b453a2bSTaylor Simpson TCGv hex_this_PC;
448b453a2bSTaylor Simpson TCGv hex_slot_cancelled;
458b453a2bSTaylor Simpson TCGv hex_branch_taken;
468b453a2bSTaylor Simpson TCGv hex_new_value[TOTAL_PER_THREAD_REGS];
478b453a2bSTaylor Simpson TCGv hex_reg_written[TOTAL_PER_THREAD_REGS];
488b453a2bSTaylor Simpson TCGv hex_new_pred_value[NUM_PREGS];
498b453a2bSTaylor Simpson TCGv hex_pred_written;
508b453a2bSTaylor Simpson TCGv hex_store_addr[STORES_MAX];
518b453a2bSTaylor Simpson TCGv hex_store_width[STORES_MAX];
528b453a2bSTaylor Simpson TCGv hex_store_val32[STORES_MAX];
538b453a2bSTaylor Simpson TCGv_i64 hex_store_val64[STORES_MAX];
548b453a2bSTaylor Simpson TCGv hex_pkt_has_store_s1;
558b453a2bSTaylor Simpson TCGv hex_dczero_addr;
568b453a2bSTaylor Simpson TCGv hex_llsc_addr;
578b453a2bSTaylor Simpson TCGv hex_llsc_val;
588b453a2bSTaylor Simpson TCGv_i64 hex_llsc_val_i64;
59a82dd548STaylor Simpson TCGv hex_VRegs_updated;
60a82dd548STaylor Simpson TCGv hex_QRegs_updated;
61a82dd548STaylor Simpson TCGv hex_vstore_addr[VSTORES_MAX];
62a82dd548STaylor Simpson TCGv hex_vstore_size[VSTORES_MAX];
63a82dd548STaylor Simpson TCGv hex_vstore_pending[VSTORES_MAX];
648b453a2bSTaylor Simpson 
658b453a2bSTaylor Simpson static const char * const hexagon_prednames[] = {
668b453a2bSTaylor Simpson   "p0", "p1", "p2", "p3"
678b453a2bSTaylor Simpson };
688b453a2bSTaylor Simpson 
69a82dd548STaylor Simpson intptr_t ctx_future_vreg_off(DisasContext *ctx, int regnum,
70a82dd548STaylor Simpson                           int num, bool alloc_ok)
71a82dd548STaylor Simpson {
72a82dd548STaylor Simpson     intptr_t offset;
73a82dd548STaylor Simpson 
74a82dd548STaylor Simpson     /* See if it is already allocated */
75a82dd548STaylor Simpson     for (int i = 0; i < ctx->future_vregs_idx; i++) {
76a82dd548STaylor Simpson         if (ctx->future_vregs_num[i] == regnum) {
77a82dd548STaylor Simpson             return offsetof(CPUHexagonState, future_VRegs[i]);
78a82dd548STaylor Simpson         }
79a82dd548STaylor Simpson     }
80a82dd548STaylor Simpson 
81a82dd548STaylor Simpson     g_assert(alloc_ok);
82a82dd548STaylor Simpson     offset = offsetof(CPUHexagonState, future_VRegs[ctx->future_vregs_idx]);
83a82dd548STaylor Simpson     for (int i = 0; i < num; i++) {
84a82dd548STaylor Simpson         ctx->future_vregs_num[ctx->future_vregs_idx + i] = regnum++;
85a82dd548STaylor Simpson     }
86a82dd548STaylor Simpson     ctx->future_vregs_idx += num;
87a82dd548STaylor Simpson     g_assert(ctx->future_vregs_idx <= VECTOR_TEMPS_MAX);
88a82dd548STaylor Simpson     return offset;
89a82dd548STaylor Simpson }
90a82dd548STaylor Simpson 
91a82dd548STaylor Simpson intptr_t ctx_tmp_vreg_off(DisasContext *ctx, int regnum,
92a82dd548STaylor Simpson                           int num, bool alloc_ok)
93a82dd548STaylor Simpson {
94a82dd548STaylor Simpson     intptr_t offset;
95a82dd548STaylor Simpson 
96a82dd548STaylor Simpson     /* See if it is already allocated */
97a82dd548STaylor Simpson     for (int i = 0; i < ctx->tmp_vregs_idx; i++) {
98a82dd548STaylor Simpson         if (ctx->tmp_vregs_num[i] == regnum) {
99a82dd548STaylor Simpson             return offsetof(CPUHexagonState, tmp_VRegs[i]);
100a82dd548STaylor Simpson         }
101a82dd548STaylor Simpson     }
102a82dd548STaylor Simpson 
103a82dd548STaylor Simpson     g_assert(alloc_ok);
104a82dd548STaylor Simpson     offset = offsetof(CPUHexagonState, tmp_VRegs[ctx->tmp_vregs_idx]);
105a82dd548STaylor Simpson     for (int i = 0; i < num; i++) {
106a82dd548STaylor Simpson         ctx->tmp_vregs_num[ctx->tmp_vregs_idx + i] = regnum++;
107a82dd548STaylor Simpson     }
108a82dd548STaylor Simpson     ctx->tmp_vregs_idx += num;
109a82dd548STaylor Simpson     g_assert(ctx->tmp_vregs_idx <= VECTOR_TEMPS_MAX);
110a82dd548STaylor Simpson     return offset;
111a82dd548STaylor Simpson }
112a82dd548STaylor Simpson 
113743debbcSTaylor Simpson static void gen_exception_raw(int excp)
1148b453a2bSTaylor Simpson {
11523803bbeSPhilippe Mathieu-Daudé     gen_helper_raise_exception(cpu_env, tcg_constant_i32(excp));
1168b453a2bSTaylor Simpson }
1178b453a2bSTaylor Simpson 
118743debbcSTaylor Simpson static void gen_exec_counters(DisasContext *ctx)
1198b453a2bSTaylor Simpson {
120743debbcSTaylor Simpson     tcg_gen_addi_tl(hex_gpr[HEX_REG_QEMU_PKT_CNT],
121743debbcSTaylor Simpson                     hex_gpr[HEX_REG_QEMU_PKT_CNT], ctx->num_packets);
122743debbcSTaylor Simpson     tcg_gen_addi_tl(hex_gpr[HEX_REG_QEMU_INSN_CNT],
123743debbcSTaylor Simpson                     hex_gpr[HEX_REG_QEMU_INSN_CNT], ctx->num_insns);
124a82dd548STaylor Simpson     tcg_gen_addi_tl(hex_gpr[HEX_REG_QEMU_HVX_CNT],
125a82dd548STaylor Simpson                     hex_gpr[HEX_REG_QEMU_HVX_CNT], ctx->num_hvx_insns);
126743debbcSTaylor Simpson }
127743debbcSTaylor Simpson 
1281b9a7f2aSTaylor Simpson static bool use_goto_tb(DisasContext *ctx, target_ulong dest)
1291b9a7f2aSTaylor Simpson {
1301b9a7f2aSTaylor Simpson     return translator_use_goto_tb(&ctx->base, dest);
1311b9a7f2aSTaylor Simpson }
1321b9a7f2aSTaylor Simpson 
1331b9a7f2aSTaylor Simpson static void gen_goto_tb(DisasContext *ctx, int idx, target_ulong dest)
1341b9a7f2aSTaylor Simpson {
1351b9a7f2aSTaylor Simpson     if (use_goto_tb(ctx, dest)) {
1361b9a7f2aSTaylor Simpson         tcg_gen_goto_tb(idx);
1371b9a7f2aSTaylor Simpson         tcg_gen_movi_tl(hex_gpr[HEX_REG_PC], dest);
1381b9a7f2aSTaylor Simpson         tcg_gen_exit_tb(ctx->base.tb, idx);
1391b9a7f2aSTaylor Simpson     } else {
1401b9a7f2aSTaylor Simpson         tcg_gen_movi_tl(hex_gpr[HEX_REG_PC], dest);
1411b9a7f2aSTaylor Simpson         tcg_gen_lookup_and_goto_ptr();
1421b9a7f2aSTaylor Simpson     }
1431b9a7f2aSTaylor Simpson }
1441b9a7f2aSTaylor Simpson 
145743debbcSTaylor Simpson static void gen_end_tb(DisasContext *ctx)
146743debbcSTaylor Simpson {
147564b2040STaylor Simpson     Packet *pkt = ctx->pkt;
148564b2040STaylor Simpson 
149743debbcSTaylor Simpson     gen_exec_counters(ctx);
1501b9a7f2aSTaylor Simpson 
1511b9a7f2aSTaylor Simpson     if (ctx->branch_cond != TCG_COND_NEVER) {
1521b9a7f2aSTaylor Simpson         if (ctx->branch_cond != TCG_COND_ALWAYS) {
1531b9a7f2aSTaylor Simpson             TCGLabel *skip = gen_new_label();
1541b9a7f2aSTaylor Simpson             tcg_gen_brcondi_tl(ctx->branch_cond, hex_branch_taken, 0, skip);
1551b9a7f2aSTaylor Simpson             gen_goto_tb(ctx, 0, ctx->branch_dest);
1561b9a7f2aSTaylor Simpson             gen_set_label(skip);
1571b9a7f2aSTaylor Simpson             gen_goto_tb(ctx, 1, ctx->next_PC);
1581b9a7f2aSTaylor Simpson         } else {
1591b9a7f2aSTaylor Simpson             gen_goto_tb(ctx, 0, ctx->branch_dest);
1601b9a7f2aSTaylor Simpson         }
161564b2040STaylor Simpson     } else if (ctx->is_tight_loop &&
162564b2040STaylor Simpson                pkt->insn[pkt->num_insns - 1].opcode == J2_endloop0) {
163564b2040STaylor Simpson         /*
164564b2040STaylor Simpson          * When we're in a tight loop, we defer the endloop0 processing
165564b2040STaylor Simpson          * to take advantage of direct block chaining
166564b2040STaylor Simpson          */
167564b2040STaylor Simpson         TCGLabel *skip = gen_new_label();
168564b2040STaylor Simpson         tcg_gen_brcondi_tl(TCG_COND_LEU, hex_gpr[HEX_REG_LC0], 1, skip);
169564b2040STaylor Simpson         tcg_gen_subi_tl(hex_gpr[HEX_REG_LC0], hex_gpr[HEX_REG_LC0], 1);
170564b2040STaylor Simpson         gen_goto_tb(ctx, 0, ctx->base.tb->pc);
171564b2040STaylor Simpson         gen_set_label(skip);
172564b2040STaylor Simpson         gen_goto_tb(ctx, 1, ctx->next_PC);
1731b9a7f2aSTaylor Simpson     } else {
1741b9a7f2aSTaylor Simpson         tcg_gen_lookup_and_goto_ptr();
1751b9a7f2aSTaylor Simpson     }
1761b9a7f2aSTaylor Simpson 
177743debbcSTaylor Simpson     ctx->base.is_jmp = DISAS_NORETURN;
178743debbcSTaylor Simpson }
179743debbcSTaylor Simpson 
180743debbcSTaylor Simpson static void gen_exception_end_tb(DisasContext *ctx, int excp)
181743debbcSTaylor Simpson {
182743debbcSTaylor Simpson     gen_exec_counters(ctx);
183613653e5STaylor Simpson     tcg_gen_movi_tl(hex_gpr[HEX_REG_PC], ctx->next_PC);
184743debbcSTaylor Simpson     gen_exception_raw(excp);
185743debbcSTaylor Simpson     ctx->base.is_jmp = DISAS_NORETURN;
186743debbcSTaylor Simpson 
1878b453a2bSTaylor Simpson }
1888b453a2bSTaylor Simpson 
1898b453a2bSTaylor Simpson #define PACKET_BUFFER_LEN              1028
1908b453a2bSTaylor Simpson static void print_pkt(Packet *pkt)
1918b453a2bSTaylor Simpson {
1928b453a2bSTaylor Simpson     GString *buf = g_string_sized_new(PACKET_BUFFER_LEN);
1938b453a2bSTaylor Simpson     snprint_a_pkt_debug(buf, pkt);
1948b453a2bSTaylor Simpson     HEX_DEBUG_LOG("%s", buf->str);
1958b453a2bSTaylor Simpson     g_string_free(buf, true);
1968b453a2bSTaylor Simpson }
19785580a65STaylor Simpson #define HEX_DEBUG_PRINT_PKT(pkt) \
19885580a65STaylor Simpson     do { \
19985580a65STaylor Simpson         if (HEX_DEBUG) { \
20085580a65STaylor Simpson             print_pkt(pkt); \
20185580a65STaylor Simpson         } \
20285580a65STaylor Simpson     } while (0)
2038b453a2bSTaylor Simpson 
2048b453a2bSTaylor Simpson static int read_packet_words(CPUHexagonState *env, DisasContext *ctx,
2058b453a2bSTaylor Simpson                              uint32_t words[])
2068b453a2bSTaylor Simpson {
2078b453a2bSTaylor Simpson     bool found_end = false;
2088b453a2bSTaylor Simpson     int nwords, max_words;
2098b453a2bSTaylor Simpson 
2108b453a2bSTaylor Simpson     memset(words, 0, PACKET_WORDS_MAX * sizeof(uint32_t));
2118b453a2bSTaylor Simpson     for (nwords = 0; !found_end && nwords < PACKET_WORDS_MAX; nwords++) {
212a27c100cSTaylor Simpson         words[nwords] =
2134e116893SIlya Leoshkevich             translator_ldl(env, &ctx->base,
2144e116893SIlya Leoshkevich                            ctx->base.pc_next + nwords * sizeof(uint32_t));
2158b453a2bSTaylor Simpson         found_end = is_packet_end(words[nwords]);
2168b453a2bSTaylor Simpson     }
2178b453a2bSTaylor Simpson     if (!found_end) {
2188b453a2bSTaylor Simpson         /* Read too many words without finding the end */
2198b453a2bSTaylor Simpson         return 0;
2208b453a2bSTaylor Simpson     }
2218b453a2bSTaylor Simpson 
2228b453a2bSTaylor Simpson     /* Check for page boundary crossing */
2238b453a2bSTaylor Simpson     max_words = -(ctx->base.pc_next | TARGET_PAGE_MASK) / sizeof(uint32_t);
2248b453a2bSTaylor Simpson     if (nwords > max_words) {
2258b453a2bSTaylor Simpson         /* We can only cross a page boundary at the beginning of a TB */
2268b453a2bSTaylor Simpson         g_assert(ctx->base.num_insns == 1);
2278b453a2bSTaylor Simpson     }
2288b453a2bSTaylor Simpson 
2298b453a2bSTaylor Simpson     HEX_DEBUG_LOG("decode_packet: pc = 0x%x\n", ctx->base.pc_next);
2308b453a2bSTaylor Simpson     HEX_DEBUG_LOG("    words = { ");
2318b453a2bSTaylor Simpson     for (int i = 0; i < nwords; i++) {
2328b453a2bSTaylor Simpson         HEX_DEBUG_LOG("0x%x, ", words[i]);
2338b453a2bSTaylor Simpson     }
2348b453a2bSTaylor Simpson     HEX_DEBUG_LOG("}\n");
2358b453a2bSTaylor Simpson 
2368b453a2bSTaylor Simpson     return nwords;
2378b453a2bSTaylor Simpson }
2388b453a2bSTaylor Simpson 
2398b453a2bSTaylor Simpson static bool check_for_attrib(Packet *pkt, int attrib)
2408b453a2bSTaylor Simpson {
2418b453a2bSTaylor Simpson     for (int i = 0; i < pkt->num_insns; i++) {
2428b453a2bSTaylor Simpson         if (GET_ATTRIB(pkt->insn[i].opcode, attrib)) {
2438b453a2bSTaylor Simpson             return true;
2448b453a2bSTaylor Simpson         }
2458b453a2bSTaylor Simpson     }
2468b453a2bSTaylor Simpson     return false;
2478b453a2bSTaylor Simpson }
2488b453a2bSTaylor Simpson 
2498b453a2bSTaylor Simpson static bool need_slot_cancelled(Packet *pkt)
2508b453a2bSTaylor Simpson {
2518b453a2bSTaylor Simpson     return check_for_attrib(pkt, A_CONDEXEC);
2528b453a2bSTaylor Simpson }
2538b453a2bSTaylor Simpson 
2548b453a2bSTaylor Simpson static bool need_pred_written(Packet *pkt)
2558b453a2bSTaylor Simpson {
2568b453a2bSTaylor Simpson     return check_for_attrib(pkt, A_WRITES_PRED_REG);
2578b453a2bSTaylor Simpson }
2588b453a2bSTaylor Simpson 
259613653e5STaylor Simpson static bool need_next_PC(DisasContext *ctx)
260613653e5STaylor Simpson {
261613653e5STaylor Simpson     Packet *pkt = ctx->pkt;
262613653e5STaylor Simpson 
263613653e5STaylor Simpson     /* Check for conditional control flow or HW loop end */
264613653e5STaylor Simpson     for (int i = 0; i < pkt->num_insns; i++) {
265613653e5STaylor Simpson         uint16_t opcode = pkt->insn[i].opcode;
266613653e5STaylor Simpson         if (GET_ATTRIB(opcode, A_CONDEXEC) && GET_ATTRIB(opcode, A_COF)) {
267613653e5STaylor Simpson             return true;
268613653e5STaylor Simpson         }
269613653e5STaylor Simpson         if (GET_ATTRIB(opcode, A_HWLOOP0_END) ||
270613653e5STaylor Simpson             GET_ATTRIB(opcode, A_HWLOOP1_END)) {
271613653e5STaylor Simpson             return true;
272613653e5STaylor Simpson         }
273613653e5STaylor Simpson     }
274613653e5STaylor Simpson     return false;
275613653e5STaylor Simpson }
276613653e5STaylor Simpson 
27710849c26STaylor Simpson /*
27810849c26STaylor Simpson  * The opcode_analyze functions mark most of the writes in a packet
27910849c26STaylor Simpson  * However, there are some implicit writes marked as attributes
28010849c26STaylor Simpson  * of the applicable instructions.
28110849c26STaylor Simpson  */
28210849c26STaylor Simpson static void mark_implicit_reg_write(DisasContext *ctx, int attrib, int rnum)
28310849c26STaylor Simpson {
28410849c26STaylor Simpson     uint16_t opcode = ctx->insn->opcode;
28510849c26STaylor Simpson     if (GET_ATTRIB(opcode, attrib)) {
28610849c26STaylor Simpson         /*
28710849c26STaylor Simpson          * USR is used to set overflow and FP exceptions,
28810849c26STaylor Simpson          * so treat it as conditional
28910849c26STaylor Simpson          */
29010849c26STaylor Simpson         bool is_predicated = GET_ATTRIB(opcode, A_CONDEXEC) ||
29110849c26STaylor Simpson                              rnum == HEX_REG_USR;
29210849c26STaylor Simpson 
29310849c26STaylor Simpson         /* LC0/LC1 is conditionally written by endloop instructions */
29410849c26STaylor Simpson         if ((rnum == HEX_REG_LC0 || rnum == HEX_REG_LC1) &&
29510849c26STaylor Simpson             (opcode == J2_endloop0 ||
29610849c26STaylor Simpson              opcode == J2_endloop1 ||
29710849c26STaylor Simpson              opcode == J2_endloop01)) {
29810849c26STaylor Simpson             is_predicated = true;
29910849c26STaylor Simpson         }
30010849c26STaylor Simpson 
30110849c26STaylor Simpson         ctx_log_reg_write(ctx, rnum, is_predicated);
30210849c26STaylor Simpson     }
30310849c26STaylor Simpson }
30410849c26STaylor Simpson 
30510849c26STaylor Simpson static void mark_implicit_reg_writes(DisasContext *ctx)
30610849c26STaylor Simpson {
30710849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_IMPLICIT_WRITES_FP,  HEX_REG_FP);
30810849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_IMPLICIT_WRITES_SP,  HEX_REG_SP);
30910849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_IMPLICIT_WRITES_LR,  HEX_REG_LR);
31010849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_IMPLICIT_WRITES_LC0, HEX_REG_LC0);
31110849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_IMPLICIT_WRITES_SA0, HEX_REG_SA0);
31210849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_IMPLICIT_WRITES_LC1, HEX_REG_LC1);
31310849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_IMPLICIT_WRITES_SA1, HEX_REG_SA1);
31410849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_IMPLICIT_WRITES_USR, HEX_REG_USR);
31510849c26STaylor Simpson     mark_implicit_reg_write(ctx, A_FPOP, HEX_REG_USR);
31610849c26STaylor Simpson }
31710849c26STaylor Simpson 
31810849c26STaylor Simpson static void mark_implicit_pred_write(DisasContext *ctx, int attrib, int pnum)
31910849c26STaylor Simpson {
32010849c26STaylor Simpson     if (GET_ATTRIB(ctx->insn->opcode, attrib)) {
32110849c26STaylor Simpson         ctx_log_pred_write(ctx, pnum);
32210849c26STaylor Simpson     }
32310849c26STaylor Simpson }
32410849c26STaylor Simpson 
32510849c26STaylor Simpson static void mark_implicit_pred_writes(DisasContext *ctx)
32610849c26STaylor Simpson {
32710849c26STaylor Simpson     mark_implicit_pred_write(ctx, A_IMPLICIT_WRITES_P0, 0);
32810849c26STaylor Simpson     mark_implicit_pred_write(ctx, A_IMPLICIT_WRITES_P1, 1);
32910849c26STaylor Simpson     mark_implicit_pred_write(ctx, A_IMPLICIT_WRITES_P2, 2);
33010849c26STaylor Simpson     mark_implicit_pred_write(ctx, A_IMPLICIT_WRITES_P3, 3);
33110849c26STaylor Simpson }
33210849c26STaylor Simpson 
33310849c26STaylor Simpson static void analyze_packet(DisasContext *ctx)
33410849c26STaylor Simpson {
33510849c26STaylor Simpson     Packet *pkt = ctx->pkt;
336*4d13bb51STaylor Simpson     ctx->need_pkt_has_store_s1 = false;
33710849c26STaylor Simpson     for (int i = 0; i < pkt->num_insns; i++) {
33810849c26STaylor Simpson         Insn *insn = &pkt->insn[i];
33910849c26STaylor Simpson         ctx->insn = insn;
34010849c26STaylor Simpson         if (opcode_analyze[insn->opcode]) {
34110849c26STaylor Simpson             opcode_analyze[insn->opcode](ctx);
34210849c26STaylor Simpson         }
34310849c26STaylor Simpson         mark_implicit_reg_writes(ctx);
34410849c26STaylor Simpson         mark_implicit_pred_writes(ctx);
34510849c26STaylor Simpson     }
34610849c26STaylor Simpson }
34710849c26STaylor Simpson 
3481e536334STaylor Simpson static void gen_start_packet(DisasContext *ctx)
3498b453a2bSTaylor Simpson {
3501e536334STaylor Simpson     Packet *pkt = ctx->pkt;
3518b453a2bSTaylor Simpson     target_ulong next_PC = ctx->base.pc_next + pkt->encod_pkt_size_in_bytes;
3528b453a2bSTaylor Simpson     int i;
3538b453a2bSTaylor Simpson 
3548b453a2bSTaylor Simpson     /* Clear out the disassembly context */
355613653e5STaylor Simpson     ctx->next_PC = next_PC;
3568b453a2bSTaylor Simpson     ctx->reg_log_idx = 0;
3578b453a2bSTaylor Simpson     bitmap_zero(ctx->regs_written, TOTAL_PER_THREAD_REGS);
35810849c26STaylor Simpson     bitmap_zero(ctx->predicated_regs, TOTAL_PER_THREAD_REGS);
3598b453a2bSTaylor Simpson     ctx->preg_log_idx = 0;
3606c677c60STaylor Simpson     bitmap_zero(ctx->pregs_written, NUM_PREGS);
361a82dd548STaylor Simpson     ctx->future_vregs_idx = 0;
362a82dd548STaylor Simpson     ctx->tmp_vregs_idx = 0;
363a82dd548STaylor Simpson     ctx->vreg_log_idx = 0;
364a82dd548STaylor Simpson     bitmap_zero(ctx->vregs_updated_tmp, NUM_VREGS);
365a82dd548STaylor Simpson     bitmap_zero(ctx->vregs_updated, NUM_VREGS);
366a82dd548STaylor Simpson     bitmap_zero(ctx->vregs_select, NUM_VREGS);
367a82dd548STaylor Simpson     ctx->qreg_log_idx = 0;
3688b453a2bSTaylor Simpson     for (i = 0; i < STORES_MAX; i++) {
3698b453a2bSTaylor Simpson         ctx->store_width[i] = 0;
3708b453a2bSTaylor Simpson     }
37192cfa25fSTaylor Simpson     ctx->s1_store_processed = false;
372a82dd548STaylor Simpson     ctx->pre_commit = true;
3738b453a2bSTaylor Simpson 
37410849c26STaylor Simpson     analyze_packet(ctx);
37510849c26STaylor Simpson 
376*4d13bb51STaylor Simpson     if (ctx->need_pkt_has_store_s1) {
377*4d13bb51STaylor Simpson         tcg_gen_movi_tl(hex_pkt_has_store_s1, pkt->pkt_has_store_s1);
378*4d13bb51STaylor Simpson     }
379*4d13bb51STaylor Simpson 
38010849c26STaylor Simpson     /*
38110849c26STaylor Simpson      * pregs_written is used both in the analyze phase as well as the code
38210849c26STaylor Simpson      * gen phase, so clear it again.
38310849c26STaylor Simpson      */
38410849c26STaylor Simpson     bitmap_zero(ctx->pregs_written, NUM_PREGS);
38510849c26STaylor Simpson 
38685580a65STaylor Simpson     if (HEX_DEBUG) {
3878b453a2bSTaylor Simpson         /* Handy place to set a breakpoint before the packet executes */
3888b453a2bSTaylor Simpson         gen_helper_debug_start_packet(cpu_env);
3898b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_this_PC, ctx->base.pc_next);
39085580a65STaylor Simpson     }
3918b453a2bSTaylor Simpson 
3928b453a2bSTaylor Simpson     /* Initialize the runtime state for packet semantics */
3938b453a2bSTaylor Simpson     if (need_slot_cancelled(pkt)) {
3948b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_slot_cancelled, 0);
3958b453a2bSTaylor Simpson     }
3968b453a2bSTaylor Simpson     if (pkt->pkt_has_cof) {
397fb67c2bfSTaylor Simpson         if (pkt->pkt_has_multi_cof) {
3988b453a2bSTaylor Simpson             tcg_gen_movi_tl(hex_branch_taken, 0);
399fb67c2bfSTaylor Simpson         }
400613653e5STaylor Simpson         if (need_next_PC(ctx)) {
401613653e5STaylor Simpson             tcg_gen_movi_tl(hex_gpr[HEX_REG_PC], next_PC);
402613653e5STaylor Simpson         }
4038b453a2bSTaylor Simpson     }
4048b453a2bSTaylor Simpson     if (need_pred_written(pkt)) {
4058b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_pred_written, 0);
4068b453a2bSTaylor Simpson     }
407a82dd548STaylor Simpson 
40810849c26STaylor Simpson     /* Preload the predicated registers into hex_new_value[i] */
40910849c26STaylor Simpson     if (!bitmap_empty(ctx->predicated_regs, TOTAL_PER_THREAD_REGS)) {
41010849c26STaylor Simpson         int i = find_first_bit(ctx->predicated_regs, TOTAL_PER_THREAD_REGS);
41110849c26STaylor Simpson         while (i < TOTAL_PER_THREAD_REGS) {
41210849c26STaylor Simpson             tcg_gen_mov_tl(hex_new_value[i], hex_gpr[i]);
41310849c26STaylor Simpson             i = find_next_bit(ctx->predicated_regs, TOTAL_PER_THREAD_REGS,
41410849c26STaylor Simpson                               i + 1);
41510849c26STaylor Simpson         }
41610849c26STaylor Simpson     }
41710849c26STaylor Simpson 
418a82dd548STaylor Simpson     if (pkt->pkt_has_hvx) {
419a82dd548STaylor Simpson         tcg_gen_movi_tl(hex_VRegs_updated, 0);
420a82dd548STaylor Simpson         tcg_gen_movi_tl(hex_QRegs_updated, 0);
421a82dd548STaylor Simpson     }
422a82dd548STaylor Simpson }
423a82dd548STaylor Simpson 
4241e536334STaylor Simpson bool is_gather_store_insn(DisasContext *ctx)
425a82dd548STaylor Simpson {
4261e536334STaylor Simpson     Packet *pkt = ctx->pkt;
4271e536334STaylor Simpson     Insn *insn = ctx->insn;
428a82dd548STaylor Simpson     if (GET_ATTRIB(insn->opcode, A_CVI_NEW) &&
429a82dd548STaylor Simpson         insn->new_value_producer_slot == 1) {
430a82dd548STaylor Simpson         /* Look for gather instruction */
431a82dd548STaylor Simpson         for (int i = 0; i < pkt->num_insns; i++) {
432a82dd548STaylor Simpson             Insn *in = &pkt->insn[i];
433a82dd548STaylor Simpson             if (GET_ATTRIB(in->opcode, A_CVI_GATHER) && in->slot == 1) {
434a82dd548STaylor Simpson                 return true;
435a82dd548STaylor Simpson             }
436a82dd548STaylor Simpson         }
437a82dd548STaylor Simpson     }
438a82dd548STaylor Simpson     return false;
4398b453a2bSTaylor Simpson }
4408b453a2bSTaylor Simpson 
4411e536334STaylor Simpson static void mark_store_width(DisasContext *ctx)
442661ad999STaylor Simpson {
4431e536334STaylor Simpson     uint16_t opcode = ctx->insn->opcode;
4441e536334STaylor Simpson     uint32_t slot = ctx->insn->slot;
445661ad999STaylor Simpson     uint8_t width = 0;
446661ad999STaylor Simpson 
447661ad999STaylor Simpson     if (GET_ATTRIB(opcode, A_SCALAR_STORE)) {
448661ad999STaylor Simpson         if (GET_ATTRIB(opcode, A_MEMSIZE_1B)) {
449661ad999STaylor Simpson             width |= 1;
450661ad999STaylor Simpson         }
451661ad999STaylor Simpson         if (GET_ATTRIB(opcode, A_MEMSIZE_2B)) {
452661ad999STaylor Simpson             width |= 2;
453661ad999STaylor Simpson         }
454661ad999STaylor Simpson         if (GET_ATTRIB(opcode, A_MEMSIZE_4B)) {
455661ad999STaylor Simpson             width |= 4;
456661ad999STaylor Simpson         }
457661ad999STaylor Simpson         if (GET_ATTRIB(opcode, A_MEMSIZE_8B)) {
458661ad999STaylor Simpson             width |= 8;
459661ad999STaylor Simpson         }
460661ad999STaylor Simpson         tcg_debug_assert(is_power_of_2(width));
461661ad999STaylor Simpson         ctx->store_width[slot] = width;
462661ad999STaylor Simpson     }
463661ad999STaylor Simpson }
464661ad999STaylor Simpson 
4651e536334STaylor Simpson static void gen_insn(DisasContext *ctx)
4668b453a2bSTaylor Simpson {
4671e536334STaylor Simpson     if (ctx->insn->generate) {
4681e536334STaylor Simpson         ctx->insn->generate(ctx);
4691e536334STaylor Simpson         mark_store_width(ctx);
4708b453a2bSTaylor Simpson     } else {
471743debbcSTaylor Simpson         gen_exception_end_tb(ctx, HEX_EXCP_INVALID_OPCODE);
4728b453a2bSTaylor Simpson     }
4738b453a2bSTaylor Simpson }
4748b453a2bSTaylor Simpson 
4758b453a2bSTaylor Simpson /*
4768b453a2bSTaylor Simpson  * Helpers for generating the packet commit
4778b453a2bSTaylor Simpson  */
4788b453a2bSTaylor Simpson static void gen_reg_writes(DisasContext *ctx)
4798b453a2bSTaylor Simpson {
4808b453a2bSTaylor Simpson     int i;
4818b453a2bSTaylor Simpson 
4828b453a2bSTaylor Simpson     for (i = 0; i < ctx->reg_log_idx; i++) {
4838b453a2bSTaylor Simpson         int reg_num = ctx->reg_log[i];
4848b453a2bSTaylor Simpson 
4858b453a2bSTaylor Simpson         tcg_gen_mov_tl(hex_gpr[reg_num], hex_new_value[reg_num]);
486564b2040STaylor Simpson 
487564b2040STaylor Simpson         /*
488564b2040STaylor Simpson          * ctx->is_tight_loop is set when SA0 points to the beginning of the TB.
489564b2040STaylor Simpson          * If we write to SA0, we have to turn off tight loop handling.
490564b2040STaylor Simpson          */
491564b2040STaylor Simpson         if (reg_num == HEX_REG_SA0) {
492564b2040STaylor Simpson             ctx->is_tight_loop = false;
493564b2040STaylor Simpson         }
4948b453a2bSTaylor Simpson     }
4958b453a2bSTaylor Simpson }
4968b453a2bSTaylor Simpson 
4971e536334STaylor Simpson static void gen_pred_writes(DisasContext *ctx)
4988b453a2bSTaylor Simpson {
4998b453a2bSTaylor Simpson     int i;
5008b453a2bSTaylor Simpson 
5018b453a2bSTaylor Simpson     /* Early exit if the log is empty */
5028b453a2bSTaylor Simpson     if (!ctx->preg_log_idx) {
5038b453a2bSTaylor Simpson         return;
5048b453a2bSTaylor Simpson     }
5058b453a2bSTaylor Simpson 
5068b453a2bSTaylor Simpson     /*
5078b453a2bSTaylor Simpson      * Only endloop instructions will conditionally
5088b453a2bSTaylor Simpson      * write a predicate.  If there are no endloop
5098b453a2bSTaylor Simpson      * instructions, we can use the non-conditional
5108b453a2bSTaylor Simpson      * write of the predicates.
5118b453a2bSTaylor Simpson      */
5121e536334STaylor Simpson     if (ctx->pkt->pkt_has_endloop) {
51323803bbeSPhilippe Mathieu-Daudé         TCGv zero = tcg_constant_tl(0);
5148b453a2bSTaylor Simpson         TCGv pred_written = tcg_temp_new();
5158b453a2bSTaylor Simpson         for (i = 0; i < ctx->preg_log_idx; i++) {
5168b453a2bSTaylor Simpson             int pred_num = ctx->preg_log[i];
5178b453a2bSTaylor Simpson 
5188b453a2bSTaylor Simpson             tcg_gen_andi_tl(pred_written, hex_pred_written, 1 << pred_num);
5198b453a2bSTaylor Simpson             tcg_gen_movcond_tl(TCG_COND_NE, hex_pred[pred_num],
5208b453a2bSTaylor Simpson                                pred_written, zero,
5218b453a2bSTaylor Simpson                                hex_new_pred_value[pred_num],
5228b453a2bSTaylor Simpson                                hex_pred[pred_num]);
5238b453a2bSTaylor Simpson         }
5248b453a2bSTaylor Simpson     } else {
5258b453a2bSTaylor Simpson         for (i = 0; i < ctx->preg_log_idx; i++) {
5268b453a2bSTaylor Simpson             int pred_num = ctx->preg_log[i];
5278b453a2bSTaylor Simpson             tcg_gen_mov_tl(hex_pred[pred_num], hex_new_pred_value[pred_num]);
52885580a65STaylor Simpson             if (HEX_DEBUG) {
5298b453a2bSTaylor Simpson                 /* Do this so HELPER(debug_commit_end) will know */
53085580a65STaylor Simpson                 tcg_gen_ori_tl(hex_pred_written, hex_pred_written,
53185580a65STaylor Simpson                                1 << pred_num);
53285580a65STaylor Simpson             }
5338b453a2bSTaylor Simpson         }
5348b453a2bSTaylor Simpson     }
5358b453a2bSTaylor Simpson }
5368b453a2bSTaylor Simpson 
537a27c100cSTaylor Simpson static void gen_check_store_width(DisasContext *ctx, int slot_num)
5388b453a2bSTaylor Simpson {
53985580a65STaylor Simpson     if (HEX_DEBUG) {
54023803bbeSPhilippe Mathieu-Daudé         TCGv slot = tcg_constant_tl(slot_num);
54123803bbeSPhilippe Mathieu-Daudé         TCGv check = tcg_constant_tl(ctx->store_width[slot_num]);
5428b453a2bSTaylor Simpson         gen_helper_debug_check_store_width(cpu_env, slot, check);
54385580a65STaylor Simpson     }
544a27c100cSTaylor Simpson }
5458b453a2bSTaylor Simpson 
5468b453a2bSTaylor Simpson static bool slot_is_predicated(Packet *pkt, int slot_num)
5478b453a2bSTaylor Simpson {
5488b453a2bSTaylor Simpson     for (int i = 0; i < pkt->num_insns; i++) {
5498b453a2bSTaylor Simpson         if (pkt->insn[i].slot == slot_num) {
5508b453a2bSTaylor Simpson             return GET_ATTRIB(pkt->insn[i].opcode, A_CONDEXEC);
5518b453a2bSTaylor Simpson         }
5528b453a2bSTaylor Simpson     }
5538b453a2bSTaylor Simpson     /* If we get to here, we didn't find an instruction in the requested slot */
5548b453a2bSTaylor Simpson     g_assert_not_reached();
5558b453a2bSTaylor Simpson }
5568b453a2bSTaylor Simpson 
5571e536334STaylor Simpson void process_store(DisasContext *ctx, int slot_num)
5588b453a2bSTaylor Simpson {
5591e536334STaylor Simpson     bool is_predicated = slot_is_predicated(ctx->pkt, slot_num);
5608b453a2bSTaylor Simpson     TCGLabel *label_end = NULL;
5618b453a2bSTaylor Simpson 
5628b453a2bSTaylor Simpson     /*
5638b453a2bSTaylor Simpson      * We may have already processed this store
5648b453a2bSTaylor Simpson      * See CHECK_NOSHUF in macros.h
5658b453a2bSTaylor Simpson      */
5668b453a2bSTaylor Simpson     if (slot_num == 1 && ctx->s1_store_processed) {
5678b453a2bSTaylor Simpson         return;
5688b453a2bSTaylor Simpson     }
56992cfa25fSTaylor Simpson     ctx->s1_store_processed = true;
5708b453a2bSTaylor Simpson 
5718b453a2bSTaylor Simpson     if (is_predicated) {
5728b453a2bSTaylor Simpson         TCGv cancelled = tcg_temp_new();
5738b453a2bSTaylor Simpson         label_end = gen_new_label();
5748b453a2bSTaylor Simpson 
5758b453a2bSTaylor Simpson         /* Don't do anything if the slot was cancelled */
5768b453a2bSTaylor Simpson         tcg_gen_extract_tl(cancelled, hex_slot_cancelled, slot_num, 1);
5778b453a2bSTaylor Simpson         tcg_gen_brcondi_tl(TCG_COND_NE, cancelled, 0, label_end);
5788b453a2bSTaylor Simpson     }
5798b453a2bSTaylor Simpson     {
5807a819de8SRichard Henderson         TCGv address = tcg_temp_new();
5818b453a2bSTaylor Simpson         tcg_gen_mov_tl(address, hex_store_addr[slot_num]);
5828b453a2bSTaylor Simpson 
5838b453a2bSTaylor Simpson         /*
5848b453a2bSTaylor Simpson          * If we know the width from the DisasContext, we can
5858b453a2bSTaylor Simpson          * generate much cleaner code.
5868b453a2bSTaylor Simpson          * Unfortunately, not all instructions execute the fSTORE
5878b453a2bSTaylor Simpson          * macro during code generation.  Anything that uses the
5888b453a2bSTaylor Simpson          * generic helper will have this problem.  Instructions
5898b453a2bSTaylor Simpson          * that use fWRAP to generate proper TCG code will be OK.
5908b453a2bSTaylor Simpson          */
5918b453a2bSTaylor Simpson         switch (ctx->store_width[slot_num]) {
5928b453a2bSTaylor Simpson         case 1:
593a27c100cSTaylor Simpson             gen_check_store_width(ctx, slot_num);
5948b453a2bSTaylor Simpson             tcg_gen_qemu_st8(hex_store_val32[slot_num],
5958b453a2bSTaylor Simpson                              hex_store_addr[slot_num],
5968b453a2bSTaylor Simpson                              ctx->mem_idx);
5978b453a2bSTaylor Simpson             break;
5988b453a2bSTaylor Simpson         case 2:
599a27c100cSTaylor Simpson             gen_check_store_width(ctx, slot_num);
6008b453a2bSTaylor Simpson             tcg_gen_qemu_st16(hex_store_val32[slot_num],
6018b453a2bSTaylor Simpson                               hex_store_addr[slot_num],
6028b453a2bSTaylor Simpson                               ctx->mem_idx);
6038b453a2bSTaylor Simpson             break;
6048b453a2bSTaylor Simpson         case 4:
605a27c100cSTaylor Simpson             gen_check_store_width(ctx, slot_num);
6068b453a2bSTaylor Simpson             tcg_gen_qemu_st32(hex_store_val32[slot_num],
6078b453a2bSTaylor Simpson                               hex_store_addr[slot_num],
6088b453a2bSTaylor Simpson                               ctx->mem_idx);
6098b453a2bSTaylor Simpson             break;
6108b453a2bSTaylor Simpson         case 8:
611a27c100cSTaylor Simpson             gen_check_store_width(ctx, slot_num);
6128b453a2bSTaylor Simpson             tcg_gen_qemu_st64(hex_store_val64[slot_num],
6138b453a2bSTaylor Simpson                               hex_store_addr[slot_num],
6148b453a2bSTaylor Simpson                               ctx->mem_idx);
6158b453a2bSTaylor Simpson             break;
6168b453a2bSTaylor Simpson         default:
6178b453a2bSTaylor Simpson             {
6188b453a2bSTaylor Simpson                 /*
6198b453a2bSTaylor Simpson                  * If we get to here, we don't know the width at
6208b453a2bSTaylor Simpson                  * TCG generation time, we'll use a helper to
6218b453a2bSTaylor Simpson                  * avoid branching based on the width at runtime.
6228b453a2bSTaylor Simpson                  */
62323803bbeSPhilippe Mathieu-Daudé                 TCGv slot = tcg_constant_tl(slot_num);
6248b453a2bSTaylor Simpson                 gen_helper_commit_store(cpu_env, slot);
6258b453a2bSTaylor Simpson             }
6268b453a2bSTaylor Simpson         }
6278b453a2bSTaylor Simpson     }
6288b453a2bSTaylor Simpson     if (is_predicated) {
6298b453a2bSTaylor Simpson         gen_set_label(label_end);
6308b453a2bSTaylor Simpson     }
6318b453a2bSTaylor Simpson }
6328b453a2bSTaylor Simpson 
6331e536334STaylor Simpson static void process_store_log(DisasContext *ctx)
6348b453a2bSTaylor Simpson {
6358b453a2bSTaylor Simpson     /*
6368b453a2bSTaylor Simpson      *  When a packet has two stores, the hardware processes
637c23b5764STaylor Simpson      *  slot 1 and then slot 0.  This will be important when
6388b453a2bSTaylor Simpson      *  the memory accesses overlap.
6398b453a2bSTaylor Simpson      */
6401e536334STaylor Simpson     Packet *pkt = ctx->pkt;
641e2be9a5cSTaylor Simpson     if (pkt->pkt_has_store_s1) {
642e2be9a5cSTaylor Simpson         g_assert(!pkt->pkt_has_dczeroa);
6431e536334STaylor Simpson         process_store(ctx, 1);
6448b453a2bSTaylor Simpson     }
645e2be9a5cSTaylor Simpson     if (pkt->pkt_has_store_s0) {
646e2be9a5cSTaylor Simpson         g_assert(!pkt->pkt_has_dczeroa);
6471e536334STaylor Simpson         process_store(ctx, 0);
6488b453a2bSTaylor Simpson     }
6498b453a2bSTaylor Simpson }
6508b453a2bSTaylor Simpson 
6518b453a2bSTaylor Simpson /* Zero out a 32-bit cache line */
6521e536334STaylor Simpson static void process_dczeroa(DisasContext *ctx)
6538b453a2bSTaylor Simpson {
6541e536334STaylor Simpson     if (ctx->pkt->pkt_has_dczeroa) {
6558b453a2bSTaylor Simpson         /* Store 32 bytes of zero starting at (addr & ~0x1f) */
6568b453a2bSTaylor Simpson         TCGv addr = tcg_temp_new();
65723803bbeSPhilippe Mathieu-Daudé         TCGv_i64 zero = tcg_constant_i64(0);
6588b453a2bSTaylor Simpson 
6598b453a2bSTaylor Simpson         tcg_gen_andi_tl(addr, hex_dczero_addr, ~0x1f);
6608b453a2bSTaylor Simpson         tcg_gen_qemu_st64(zero, addr, ctx->mem_idx);
6618b453a2bSTaylor Simpson         tcg_gen_addi_tl(addr, addr, 8);
6628b453a2bSTaylor Simpson         tcg_gen_qemu_st64(zero, addr, ctx->mem_idx);
6638b453a2bSTaylor Simpson         tcg_gen_addi_tl(addr, addr, 8);
6648b453a2bSTaylor Simpson         tcg_gen_qemu_st64(zero, addr, ctx->mem_idx);
6658b453a2bSTaylor Simpson         tcg_gen_addi_tl(addr, addr, 8);
6668b453a2bSTaylor Simpson         tcg_gen_qemu_st64(zero, addr, ctx->mem_idx);
6678b453a2bSTaylor Simpson     }
6688b453a2bSTaylor Simpson }
6698b453a2bSTaylor Simpson 
670a82dd548STaylor Simpson static bool pkt_has_hvx_store(Packet *pkt)
671a82dd548STaylor Simpson {
672a82dd548STaylor Simpson     int i;
673a82dd548STaylor Simpson     for (i = 0; i < pkt->num_insns; i++) {
674a82dd548STaylor Simpson         int opcode = pkt->insn[i].opcode;
675a82dd548STaylor Simpson         if (GET_ATTRIB(opcode, A_CVI) && GET_ATTRIB(opcode, A_STORE)) {
676a82dd548STaylor Simpson             return true;
677a82dd548STaylor Simpson         }
678a82dd548STaylor Simpson     }
679a82dd548STaylor Simpson     return false;
680a82dd548STaylor Simpson }
681a82dd548STaylor Simpson 
6821e536334STaylor Simpson static void gen_commit_hvx(DisasContext *ctx)
683a82dd548STaylor Simpson {
684a82dd548STaylor Simpson     int i;
685a82dd548STaylor Simpson 
686a82dd548STaylor Simpson     /*
687a82dd548STaylor Simpson      *    for (i = 0; i < ctx->vreg_log_idx; i++) {
688a82dd548STaylor Simpson      *        int rnum = ctx->vreg_log[i];
689a82dd548STaylor Simpson      *        if (ctx->vreg_is_predicated[i]) {
690a82dd548STaylor Simpson      *            if (env->VRegs_updated & (1 << rnum)) {
691a82dd548STaylor Simpson      *                env->VRegs[rnum] = env->future_VRegs[rnum];
692a82dd548STaylor Simpson      *            }
693a82dd548STaylor Simpson      *        } else {
694a82dd548STaylor Simpson      *            env->VRegs[rnum] = env->future_VRegs[rnum];
695a82dd548STaylor Simpson      *        }
696a82dd548STaylor Simpson      *    }
697a82dd548STaylor Simpson      */
698a82dd548STaylor Simpson     for (i = 0; i < ctx->vreg_log_idx; i++) {
699a82dd548STaylor Simpson         int rnum = ctx->vreg_log[i];
700a82dd548STaylor Simpson         bool is_predicated = ctx->vreg_is_predicated[i];
701a82dd548STaylor Simpson         intptr_t dstoff = offsetof(CPUHexagonState, VRegs[rnum]);
702a82dd548STaylor Simpson         intptr_t srcoff = ctx_future_vreg_off(ctx, rnum, 1, false);
703a82dd548STaylor Simpson         size_t size = sizeof(MMVector);
704a82dd548STaylor Simpson 
705a82dd548STaylor Simpson         if (is_predicated) {
706a82dd548STaylor Simpson             TCGv cmp = tcg_temp_new();
707a82dd548STaylor Simpson             TCGLabel *label_skip = gen_new_label();
708a82dd548STaylor Simpson 
709a82dd548STaylor Simpson             tcg_gen_andi_tl(cmp, hex_VRegs_updated, 1 << rnum);
710a82dd548STaylor Simpson             tcg_gen_brcondi_tl(TCG_COND_EQ, cmp, 0, label_skip);
711a82dd548STaylor Simpson             tcg_gen_gvec_mov(MO_64, dstoff, srcoff, size, size);
712a82dd548STaylor Simpson             gen_set_label(label_skip);
713a82dd548STaylor Simpson         } else {
714a82dd548STaylor Simpson             tcg_gen_gvec_mov(MO_64, dstoff, srcoff, size, size);
715a82dd548STaylor Simpson         }
716a82dd548STaylor Simpson     }
717a82dd548STaylor Simpson 
718a82dd548STaylor Simpson     /*
719a82dd548STaylor Simpson      *    for (i = 0; i < ctx->qreg_log_idx; i++) {
720a82dd548STaylor Simpson      *        int rnum = ctx->qreg_log[i];
721a82dd548STaylor Simpson      *        if (ctx->qreg_is_predicated[i]) {
722a82dd548STaylor Simpson      *            if (env->QRegs_updated) & (1 << rnum)) {
723a82dd548STaylor Simpson      *                env->QRegs[rnum] = env->future_QRegs[rnum];
724a82dd548STaylor Simpson      *            }
725a82dd548STaylor Simpson      *        } else {
726a82dd548STaylor Simpson      *            env->QRegs[rnum] = env->future_QRegs[rnum];
727a82dd548STaylor Simpson      *        }
728a82dd548STaylor Simpson      *    }
729a82dd548STaylor Simpson      */
730a82dd548STaylor Simpson     for (i = 0; i < ctx->qreg_log_idx; i++) {
731a82dd548STaylor Simpson         int rnum = ctx->qreg_log[i];
732a82dd548STaylor Simpson         bool is_predicated = ctx->qreg_is_predicated[i];
733a82dd548STaylor Simpson         intptr_t dstoff = offsetof(CPUHexagonState, QRegs[rnum]);
734a82dd548STaylor Simpson         intptr_t srcoff = offsetof(CPUHexagonState, future_QRegs[rnum]);
735a82dd548STaylor Simpson         size_t size = sizeof(MMQReg);
736a82dd548STaylor Simpson 
737a82dd548STaylor Simpson         if (is_predicated) {
738a82dd548STaylor Simpson             TCGv cmp = tcg_temp_new();
739a82dd548STaylor Simpson             TCGLabel *label_skip = gen_new_label();
740a82dd548STaylor Simpson 
741a82dd548STaylor Simpson             tcg_gen_andi_tl(cmp, hex_QRegs_updated, 1 << rnum);
742a82dd548STaylor Simpson             tcg_gen_brcondi_tl(TCG_COND_EQ, cmp, 0, label_skip);
743a82dd548STaylor Simpson             tcg_gen_gvec_mov(MO_64, dstoff, srcoff, size, size);
744a82dd548STaylor Simpson             gen_set_label(label_skip);
745a82dd548STaylor Simpson         } else {
746a82dd548STaylor Simpson             tcg_gen_gvec_mov(MO_64, dstoff, srcoff, size, size);
747a82dd548STaylor Simpson         }
748a82dd548STaylor Simpson     }
749a82dd548STaylor Simpson 
7501e536334STaylor Simpson     if (pkt_has_hvx_store(ctx->pkt)) {
751a82dd548STaylor Simpson         gen_helper_commit_hvx_stores(cpu_env);
752a82dd548STaylor Simpson     }
753a82dd548STaylor Simpson }
754a82dd548STaylor Simpson 
7551e536334STaylor Simpson static void update_exec_counters(DisasContext *ctx)
7568b453a2bSTaylor Simpson {
7571e536334STaylor Simpson     Packet *pkt = ctx->pkt;
7588b453a2bSTaylor Simpson     int num_insns = pkt->num_insns;
7598b453a2bSTaylor Simpson     int num_real_insns = 0;
760a82dd548STaylor Simpson     int num_hvx_insns = 0;
7618b453a2bSTaylor Simpson 
7628b453a2bSTaylor Simpson     for (int i = 0; i < num_insns; i++) {
7638b453a2bSTaylor Simpson         if (!pkt->insn[i].is_endloop &&
7648b453a2bSTaylor Simpson             !pkt->insn[i].part1 &&
7658b453a2bSTaylor Simpson             !GET_ATTRIB(pkt->insn[i].opcode, A_IT_NOP)) {
7668b453a2bSTaylor Simpson             num_real_insns++;
7678b453a2bSTaylor Simpson         }
768a82dd548STaylor Simpson         if (GET_ATTRIB(pkt->insn[i].opcode, A_CVI)) {
769a82dd548STaylor Simpson             num_hvx_insns++;
770a82dd548STaylor Simpson         }
7718b453a2bSTaylor Simpson     }
7728b453a2bSTaylor Simpson 
7738b453a2bSTaylor Simpson     ctx->num_packets++;
7748b453a2bSTaylor Simpson     ctx->num_insns += num_real_insns;
775a82dd548STaylor Simpson     ctx->num_hvx_insns += num_hvx_insns;
7768b453a2bSTaylor Simpson }
7778b453a2bSTaylor Simpson 
7781e536334STaylor Simpson static void gen_commit_packet(DisasContext *ctx)
7798b453a2bSTaylor Simpson {
780c23b5764STaylor Simpson     /*
781c23b5764STaylor Simpson      * If there is more than one store in a packet, make sure they are all OK
782c23b5764STaylor Simpson      * before proceeding with the rest of the packet commit.
783c23b5764STaylor Simpson      *
784c23b5764STaylor Simpson      * dczeroa has to be the only store operation in the packet, so we go
785c23b5764STaylor Simpson      * ahead and process that first.
786c23b5764STaylor Simpson      *
787a82dd548STaylor Simpson      * When there is an HVX store, there can also be a scalar store in either
788a82dd548STaylor Simpson      * slot 0 or slot1, so we create a mask for the helper to indicate what
789a82dd548STaylor Simpson      * work to do.
790a82dd548STaylor Simpson      *
791c23b5764STaylor Simpson      * When there are two scalar stores, we probe the one in slot 0.
792c23b5764STaylor Simpson      *
793c23b5764STaylor Simpson      * Note that we don't call the probe helper for packets with only one
794c23b5764STaylor Simpson      * store.  Therefore, we call process_store_log before anything else
795c23b5764STaylor Simpson      * involved in committing the packet.
796c23b5764STaylor Simpson      */
7971e536334STaylor Simpson     Packet *pkt = ctx->pkt;
798c23b5764STaylor Simpson     bool has_store_s0 = pkt->pkt_has_store_s0;
799c23b5764STaylor Simpson     bool has_store_s1 = (pkt->pkt_has_store_s1 && !ctx->s1_store_processed);
800a82dd548STaylor Simpson     bool has_hvx_store = pkt_has_hvx_store(pkt);
801c23b5764STaylor Simpson     if (pkt->pkt_has_dczeroa) {
802c23b5764STaylor Simpson         /*
803c23b5764STaylor Simpson          * The dczeroa will be the store in slot 0, check that we don't have
804a82dd548STaylor Simpson          * a store in slot 1 or an HVX store.
805c23b5764STaylor Simpson          */
806e2be9a5cSTaylor Simpson         g_assert(!has_store_s1 && !has_hvx_store);
8071e536334STaylor Simpson         process_dczeroa(ctx);
808a82dd548STaylor Simpson     } else if (has_hvx_store) {
809a82dd548STaylor Simpson         TCGv mem_idx = tcg_constant_tl(ctx->mem_idx);
810a82dd548STaylor Simpson 
811a82dd548STaylor Simpson         if (!has_store_s0 && !has_store_s1) {
812a82dd548STaylor Simpson             gen_helper_probe_hvx_stores(cpu_env, mem_idx);
813a82dd548STaylor Simpson         } else {
814a82dd548STaylor Simpson             int mask = 0;
815a82dd548STaylor Simpson             TCGv mask_tcgv;
816a82dd548STaylor Simpson 
817a82dd548STaylor Simpson             if (has_store_s0) {
818a82dd548STaylor Simpson                 mask |= (1 << 0);
819a82dd548STaylor Simpson             }
820a82dd548STaylor Simpson             if (has_store_s1) {
821a82dd548STaylor Simpson                 mask |= (1 << 1);
822a82dd548STaylor Simpson             }
823a82dd548STaylor Simpson             if (has_hvx_store) {
824a82dd548STaylor Simpson                 mask |= (1 << 2);
825a82dd548STaylor Simpson             }
826a82dd548STaylor Simpson             mask_tcgv = tcg_constant_tl(mask);
827a82dd548STaylor Simpson             gen_helper_probe_pkt_scalar_hvx_stores(cpu_env, mask_tcgv, mem_idx);
828a82dd548STaylor Simpson         }
829c23b5764STaylor Simpson     } else if (has_store_s0 && has_store_s1) {
830c23b5764STaylor Simpson         /*
831c23b5764STaylor Simpson          * process_store_log will execute the slot 1 store first,
832c23b5764STaylor Simpson          * so we only have to probe the store in slot 0
833c23b5764STaylor Simpson          */
834f448397aSTaylor Simpson         TCGv mem_idx = tcg_constant_tl(ctx->mem_idx);
835c23b5764STaylor Simpson         gen_helper_probe_pkt_scalar_store_s0(cpu_env, mem_idx);
836c23b5764STaylor Simpson     }
837c23b5764STaylor Simpson 
8381e536334STaylor Simpson     process_store_log(ctx);
839c23b5764STaylor Simpson 
8408b453a2bSTaylor Simpson     gen_reg_writes(ctx);
8411e536334STaylor Simpson     gen_pred_writes(ctx);
842a82dd548STaylor Simpson     if (pkt->pkt_has_hvx) {
8431e536334STaylor Simpson         gen_commit_hvx(ctx);
844a82dd548STaylor Simpson     }
8451e536334STaylor Simpson     update_exec_counters(ctx);
84685580a65STaylor Simpson     if (HEX_DEBUG) {
8478b453a2bSTaylor Simpson         TCGv has_st0 =
84823803bbeSPhilippe Mathieu-Daudé             tcg_constant_tl(pkt->pkt_has_store_s0 && !pkt->pkt_has_dczeroa);
8498b453a2bSTaylor Simpson         TCGv has_st1 =
85023803bbeSPhilippe Mathieu-Daudé             tcg_constant_tl(pkt->pkt_has_store_s1 && !pkt->pkt_has_dczeroa);
8518b453a2bSTaylor Simpson 
8528b453a2bSTaylor Simpson         /* Handy place to set a breakpoint at the end of execution */
8538b453a2bSTaylor Simpson         gen_helper_debug_commit_end(cpu_env, has_st0, has_st1);
8548b453a2bSTaylor Simpson     }
8558b453a2bSTaylor Simpson 
856a82dd548STaylor Simpson     if (pkt->vhist_insn != NULL) {
857a82dd548STaylor Simpson         ctx->pre_commit = false;
8581e536334STaylor Simpson         ctx->insn = pkt->vhist_insn;
8591e536334STaylor Simpson         pkt->vhist_insn->generate(ctx);
860a82dd548STaylor Simpson     }
861a82dd548STaylor Simpson 
8628b453a2bSTaylor Simpson     if (pkt->pkt_has_cof) {
863743debbcSTaylor Simpson         gen_end_tb(ctx);
8648b453a2bSTaylor Simpson     }
8658b453a2bSTaylor Simpson }
8668b453a2bSTaylor Simpson 
8678b453a2bSTaylor Simpson static void decode_and_translate_packet(CPUHexagonState *env, DisasContext *ctx)
8688b453a2bSTaylor Simpson {
8698b453a2bSTaylor Simpson     uint32_t words[PACKET_WORDS_MAX];
8708b453a2bSTaylor Simpson     int nwords;
8718b453a2bSTaylor Simpson     Packet pkt;
8728b453a2bSTaylor Simpson     int i;
8738b453a2bSTaylor Simpson 
8748b453a2bSTaylor Simpson     nwords = read_packet_words(env, ctx, words);
8758b453a2bSTaylor Simpson     if (!nwords) {
876743debbcSTaylor Simpson         gen_exception_end_tb(ctx, HEX_EXCP_INVALID_PACKET);
8778b453a2bSTaylor Simpson         return;
8788b453a2bSTaylor Simpson     }
8798b453a2bSTaylor Simpson 
8808b453a2bSTaylor Simpson     if (decode_packet(nwords, words, &pkt, false) > 0) {
88140085901STaylor Simpson         pkt.pc = ctx->base.pc_next;
8828b453a2bSTaylor Simpson         HEX_DEBUG_PRINT_PKT(&pkt);
8831e536334STaylor Simpson         ctx->pkt = &pkt;
8841e536334STaylor Simpson         gen_start_packet(ctx);
8858b453a2bSTaylor Simpson         for (i = 0; i < pkt.num_insns; i++) {
8861e536334STaylor Simpson             ctx->insn = &pkt.insn[i];
8871e536334STaylor Simpson             gen_insn(ctx);
8888b453a2bSTaylor Simpson         }
8891e536334STaylor Simpson         gen_commit_packet(ctx);
8908b453a2bSTaylor Simpson         ctx->base.pc_next += pkt.encod_pkt_size_in_bytes;
8918b453a2bSTaylor Simpson     } else {
892743debbcSTaylor Simpson         gen_exception_end_tb(ctx, HEX_EXCP_INVALID_PACKET);
8938b453a2bSTaylor Simpson     }
8948b453a2bSTaylor Simpson }
8958b453a2bSTaylor Simpson 
8968b453a2bSTaylor Simpson static void hexagon_tr_init_disas_context(DisasContextBase *dcbase,
8978b453a2bSTaylor Simpson                                           CPUState *cs)
8988b453a2bSTaylor Simpson {
8998b453a2bSTaylor Simpson     DisasContext *ctx = container_of(dcbase, DisasContext, base);
900564b2040STaylor Simpson     uint32_t hex_flags = dcbase->tb->flags;
9018b453a2bSTaylor Simpson 
9028b453a2bSTaylor Simpson     ctx->mem_idx = MMU_USER_IDX;
9038b453a2bSTaylor Simpson     ctx->num_packets = 0;
9048b453a2bSTaylor Simpson     ctx->num_insns = 0;
905a82dd548STaylor Simpson     ctx->num_hvx_insns = 0;
9061b9a7f2aSTaylor Simpson     ctx->branch_cond = TCG_COND_NEVER;
907564b2040STaylor Simpson     ctx->is_tight_loop = FIELD_EX32(hex_flags, TB_FLAGS, IS_TIGHT_LOOP);
9088b453a2bSTaylor Simpson }
9098b453a2bSTaylor Simpson 
9108b453a2bSTaylor Simpson static void hexagon_tr_tb_start(DisasContextBase *db, CPUState *cpu)
9118b453a2bSTaylor Simpson {
9128b453a2bSTaylor Simpson }
9138b453a2bSTaylor Simpson 
9148b453a2bSTaylor Simpson static void hexagon_tr_insn_start(DisasContextBase *dcbase, CPUState *cpu)
9158b453a2bSTaylor Simpson {
9168b453a2bSTaylor Simpson     DisasContext *ctx = container_of(dcbase, DisasContext, base);
9178b453a2bSTaylor Simpson 
9188b453a2bSTaylor Simpson     tcg_gen_insn_start(ctx->base.pc_next);
9198b453a2bSTaylor Simpson }
9208b453a2bSTaylor Simpson 
9218b453a2bSTaylor Simpson static bool pkt_crosses_page(CPUHexagonState *env, DisasContext *ctx)
9228b453a2bSTaylor Simpson {
9238b453a2bSTaylor Simpson     target_ulong page_start = ctx->base.pc_first & TARGET_PAGE_MASK;
9248b453a2bSTaylor Simpson     bool found_end = false;
9258b453a2bSTaylor Simpson     int nwords;
9268b453a2bSTaylor Simpson 
9278b453a2bSTaylor Simpson     for (nwords = 0; !found_end && nwords < PACKET_WORDS_MAX; nwords++) {
9288b453a2bSTaylor Simpson         uint32_t word = cpu_ldl_code(env,
9298b453a2bSTaylor Simpson                             ctx->base.pc_next + nwords * sizeof(uint32_t));
9308b453a2bSTaylor Simpson         found_end = is_packet_end(word);
9318b453a2bSTaylor Simpson     }
9328b453a2bSTaylor Simpson     uint32_t next_ptr =  ctx->base.pc_next + nwords * sizeof(uint32_t);
9338b453a2bSTaylor Simpson     return found_end && next_ptr - page_start >= TARGET_PAGE_SIZE;
9348b453a2bSTaylor Simpson }
9358b453a2bSTaylor Simpson 
9368b453a2bSTaylor Simpson static void hexagon_tr_translate_packet(DisasContextBase *dcbase, CPUState *cpu)
9378b453a2bSTaylor Simpson {
9388b453a2bSTaylor Simpson     DisasContext *ctx = container_of(dcbase, DisasContext, base);
9398b453a2bSTaylor Simpson     CPUHexagonState *env = cpu->env_ptr;
9408b453a2bSTaylor Simpson 
9418b453a2bSTaylor Simpson     decode_and_translate_packet(env, ctx);
9428b453a2bSTaylor Simpson 
9438b453a2bSTaylor Simpson     if (ctx->base.is_jmp == DISAS_NEXT) {
9448b453a2bSTaylor Simpson         target_ulong page_start = ctx->base.pc_first & TARGET_PAGE_MASK;
9458b453a2bSTaylor Simpson         target_ulong bytes_max = PACKET_WORDS_MAX * sizeof(target_ulong);
9468b453a2bSTaylor Simpson 
9478b453a2bSTaylor Simpson         if (ctx->base.pc_next - page_start >= TARGET_PAGE_SIZE ||
9488b453a2bSTaylor Simpson             (ctx->base.pc_next - page_start >= TARGET_PAGE_SIZE - bytes_max &&
9498b453a2bSTaylor Simpson              pkt_crosses_page(env, ctx))) {
9508b453a2bSTaylor Simpson             ctx->base.is_jmp = DISAS_TOO_MANY;
9518b453a2bSTaylor Simpson         }
9528b453a2bSTaylor Simpson 
9538b453a2bSTaylor Simpson         /*
9548b453a2bSTaylor Simpson          * The CPU log is used to compare against LLDB single stepping,
9558b453a2bSTaylor Simpson          * so end the TLB after every packet.
9568b453a2bSTaylor Simpson          */
9577d9ab202STaylor Simpson         HexagonCPU *hex_cpu = env_archcpu(env);
9588b453a2bSTaylor Simpson         if (hex_cpu->lldb_compat && qemu_loglevel_mask(CPU_LOG_TB_CPU)) {
9598b453a2bSTaylor Simpson             ctx->base.is_jmp = DISAS_TOO_MANY;
9608b453a2bSTaylor Simpson         }
9618b453a2bSTaylor Simpson     }
9628b453a2bSTaylor Simpson }
9638b453a2bSTaylor Simpson 
9648b453a2bSTaylor Simpson static void hexagon_tr_tb_stop(DisasContextBase *dcbase, CPUState *cpu)
9658b453a2bSTaylor Simpson {
9668b453a2bSTaylor Simpson     DisasContext *ctx = container_of(dcbase, DisasContext, base);
9678b453a2bSTaylor Simpson 
9688b453a2bSTaylor Simpson     switch (ctx->base.is_jmp) {
9698b453a2bSTaylor Simpson     case DISAS_TOO_MANY:
9708b453a2bSTaylor Simpson         gen_exec_counters(ctx);
9718b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_gpr[HEX_REG_PC], ctx->base.pc_next);
9728b453a2bSTaylor Simpson         tcg_gen_exit_tb(NULL, 0);
9738b453a2bSTaylor Simpson         break;
9748b453a2bSTaylor Simpson     case DISAS_NORETURN:
9758b453a2bSTaylor Simpson         break;
9768b453a2bSTaylor Simpson     default:
9778b453a2bSTaylor Simpson         g_assert_not_reached();
9788b453a2bSTaylor Simpson     }
9798b453a2bSTaylor Simpson }
9808b453a2bSTaylor Simpson 
9818eb806a7SRichard Henderson static void hexagon_tr_disas_log(const DisasContextBase *dcbase,
9828eb806a7SRichard Henderson                                  CPUState *cpu, FILE *logfile)
9838b453a2bSTaylor Simpson {
9848eb806a7SRichard Henderson     fprintf(logfile, "IN: %s\n", lookup_symbol(dcbase->pc_first));
9858eb806a7SRichard Henderson     target_disas(logfile, cpu, dcbase->pc_first, dcbase->tb->size);
9868b453a2bSTaylor Simpson }
9878b453a2bSTaylor Simpson 
9888b453a2bSTaylor Simpson 
9898b453a2bSTaylor Simpson static const TranslatorOps hexagon_tr_ops = {
9908b453a2bSTaylor Simpson     .init_disas_context = hexagon_tr_init_disas_context,
9918b453a2bSTaylor Simpson     .tb_start           = hexagon_tr_tb_start,
9928b453a2bSTaylor Simpson     .insn_start         = hexagon_tr_insn_start,
9938b453a2bSTaylor Simpson     .translate_insn     = hexagon_tr_translate_packet,
9948b453a2bSTaylor Simpson     .tb_stop            = hexagon_tr_tb_stop,
9958b453a2bSTaylor Simpson     .disas_log          = hexagon_tr_disas_log,
9968b453a2bSTaylor Simpson };
9978b453a2bSTaylor Simpson 
998597f9b2dSRichard Henderson void gen_intermediate_code(CPUState *cs, TranslationBlock *tb, int *max_insns,
999306c8721SRichard Henderson                            target_ulong pc, void *host_pc)
10008b453a2bSTaylor Simpson {
10018b453a2bSTaylor Simpson     DisasContext ctx;
10028b453a2bSTaylor Simpson 
1003306c8721SRichard Henderson     translator_loop(cs, tb, max_insns, pc, host_pc,
1004306c8721SRichard Henderson                     &hexagon_tr_ops, &ctx.base);
10058b453a2bSTaylor Simpson }
10068b453a2bSTaylor Simpson 
10078b453a2bSTaylor Simpson #define NAME_LEN               64
10088b453a2bSTaylor Simpson static char new_value_names[TOTAL_PER_THREAD_REGS][NAME_LEN];
10098b453a2bSTaylor Simpson static char reg_written_names[TOTAL_PER_THREAD_REGS][NAME_LEN];
10108b453a2bSTaylor Simpson static char new_pred_value_names[NUM_PREGS][NAME_LEN];
10118b453a2bSTaylor Simpson static char store_addr_names[STORES_MAX][NAME_LEN];
10128b453a2bSTaylor Simpson static char store_width_names[STORES_MAX][NAME_LEN];
10138b453a2bSTaylor Simpson static char store_val32_names[STORES_MAX][NAME_LEN];
10148b453a2bSTaylor Simpson static char store_val64_names[STORES_MAX][NAME_LEN];
1015a82dd548STaylor Simpson static char vstore_addr_names[VSTORES_MAX][NAME_LEN];
1016a82dd548STaylor Simpson static char vstore_size_names[VSTORES_MAX][NAME_LEN];
1017a82dd548STaylor Simpson static char vstore_pending_names[VSTORES_MAX][NAME_LEN];
10188b453a2bSTaylor Simpson 
10198b453a2bSTaylor Simpson void hexagon_translate_init(void)
10208b453a2bSTaylor Simpson {
10218b453a2bSTaylor Simpson     int i;
10228b453a2bSTaylor Simpson 
10238b453a2bSTaylor Simpson     opcode_init();
10248b453a2bSTaylor Simpson 
10258b453a2bSTaylor Simpson     for (i = 0; i < TOTAL_PER_THREAD_REGS; i++) {
10268b453a2bSTaylor Simpson         hex_gpr[i] = tcg_global_mem_new(cpu_env,
10278b453a2bSTaylor Simpson             offsetof(CPUHexagonState, gpr[i]),
10288b453a2bSTaylor Simpson             hexagon_regnames[i]);
10298b453a2bSTaylor Simpson 
10308b453a2bSTaylor Simpson         snprintf(new_value_names[i], NAME_LEN, "new_%s", hexagon_regnames[i]);
10318b453a2bSTaylor Simpson         hex_new_value[i] = tcg_global_mem_new(cpu_env,
10328b453a2bSTaylor Simpson             offsetof(CPUHexagonState, new_value[i]),
10338b453a2bSTaylor Simpson             new_value_names[i]);
10348b453a2bSTaylor Simpson 
103585580a65STaylor Simpson         if (HEX_DEBUG) {
10368b453a2bSTaylor Simpson             snprintf(reg_written_names[i], NAME_LEN, "reg_written_%s",
10378b453a2bSTaylor Simpson                      hexagon_regnames[i]);
10388b453a2bSTaylor Simpson             hex_reg_written[i] = tcg_global_mem_new(cpu_env,
10398b453a2bSTaylor Simpson                 offsetof(CPUHexagonState, reg_written[i]),
10408b453a2bSTaylor Simpson                 reg_written_names[i]);
104185580a65STaylor Simpson         }
10428b453a2bSTaylor Simpson     }
10438b453a2bSTaylor Simpson     for (i = 0; i < NUM_PREGS; i++) {
10448b453a2bSTaylor Simpson         hex_pred[i] = tcg_global_mem_new(cpu_env,
10458b453a2bSTaylor Simpson             offsetof(CPUHexagonState, pred[i]),
10468b453a2bSTaylor Simpson             hexagon_prednames[i]);
10478b453a2bSTaylor Simpson 
10488b453a2bSTaylor Simpson         snprintf(new_pred_value_names[i], NAME_LEN, "new_pred_%s",
10498b453a2bSTaylor Simpson                  hexagon_prednames[i]);
10508b453a2bSTaylor Simpson         hex_new_pred_value[i] = tcg_global_mem_new(cpu_env,
10518b453a2bSTaylor Simpson             offsetof(CPUHexagonState, new_pred_value[i]),
10528b453a2bSTaylor Simpson             new_pred_value_names[i]);
10538b453a2bSTaylor Simpson     }
10548b453a2bSTaylor Simpson     hex_pred_written = tcg_global_mem_new(cpu_env,
10558b453a2bSTaylor Simpson         offsetof(CPUHexagonState, pred_written), "pred_written");
10568b453a2bSTaylor Simpson     hex_this_PC = tcg_global_mem_new(cpu_env,
10578b453a2bSTaylor Simpson         offsetof(CPUHexagonState, this_PC), "this_PC");
10588b453a2bSTaylor Simpson     hex_slot_cancelled = tcg_global_mem_new(cpu_env,
10598b453a2bSTaylor Simpson         offsetof(CPUHexagonState, slot_cancelled), "slot_cancelled");
10608b453a2bSTaylor Simpson     hex_branch_taken = tcg_global_mem_new(cpu_env,
10618b453a2bSTaylor Simpson         offsetof(CPUHexagonState, branch_taken), "branch_taken");
10628b453a2bSTaylor Simpson     hex_pkt_has_store_s1 = tcg_global_mem_new(cpu_env,
10638b453a2bSTaylor Simpson         offsetof(CPUHexagonState, pkt_has_store_s1), "pkt_has_store_s1");
10648b453a2bSTaylor Simpson     hex_dczero_addr = tcg_global_mem_new(cpu_env,
10658b453a2bSTaylor Simpson         offsetof(CPUHexagonState, dczero_addr), "dczero_addr");
10668b453a2bSTaylor Simpson     hex_llsc_addr = tcg_global_mem_new(cpu_env,
10678b453a2bSTaylor Simpson         offsetof(CPUHexagonState, llsc_addr), "llsc_addr");
10688b453a2bSTaylor Simpson     hex_llsc_val = tcg_global_mem_new(cpu_env,
10698b453a2bSTaylor Simpson         offsetof(CPUHexagonState, llsc_val), "llsc_val");
10708b453a2bSTaylor Simpson     hex_llsc_val_i64 = tcg_global_mem_new_i64(cpu_env,
10718b453a2bSTaylor Simpson         offsetof(CPUHexagonState, llsc_val_i64), "llsc_val_i64");
1072a82dd548STaylor Simpson     hex_VRegs_updated = tcg_global_mem_new(cpu_env,
1073a82dd548STaylor Simpson         offsetof(CPUHexagonState, VRegs_updated), "VRegs_updated");
1074a82dd548STaylor Simpson     hex_QRegs_updated = tcg_global_mem_new(cpu_env,
1075a82dd548STaylor Simpson         offsetof(CPUHexagonState, QRegs_updated), "QRegs_updated");
10768b453a2bSTaylor Simpson     for (i = 0; i < STORES_MAX; i++) {
10778b453a2bSTaylor Simpson         snprintf(store_addr_names[i], NAME_LEN, "store_addr_%d", i);
10788b453a2bSTaylor Simpson         hex_store_addr[i] = tcg_global_mem_new(cpu_env,
10798b453a2bSTaylor Simpson             offsetof(CPUHexagonState, mem_log_stores[i].va),
10808b453a2bSTaylor Simpson             store_addr_names[i]);
10818b453a2bSTaylor Simpson 
10828b453a2bSTaylor Simpson         snprintf(store_width_names[i], NAME_LEN, "store_width_%d", i);
10838b453a2bSTaylor Simpson         hex_store_width[i] = tcg_global_mem_new(cpu_env,
10848b453a2bSTaylor Simpson             offsetof(CPUHexagonState, mem_log_stores[i].width),
10858b453a2bSTaylor Simpson             store_width_names[i]);
10868b453a2bSTaylor Simpson 
10878b453a2bSTaylor Simpson         snprintf(store_val32_names[i], NAME_LEN, "store_val32_%d", i);
10888b453a2bSTaylor Simpson         hex_store_val32[i] = tcg_global_mem_new(cpu_env,
10898b453a2bSTaylor Simpson             offsetof(CPUHexagonState, mem_log_stores[i].data32),
10908b453a2bSTaylor Simpson             store_val32_names[i]);
10918b453a2bSTaylor Simpson 
10928b453a2bSTaylor Simpson         snprintf(store_val64_names[i], NAME_LEN, "store_val64_%d", i);
10938b453a2bSTaylor Simpson         hex_store_val64[i] = tcg_global_mem_new_i64(cpu_env,
10948b453a2bSTaylor Simpson             offsetof(CPUHexagonState, mem_log_stores[i].data64),
10958b453a2bSTaylor Simpson             store_val64_names[i]);
10968b453a2bSTaylor Simpson     }
1097a82dd548STaylor Simpson     for (int i = 0; i < VSTORES_MAX; i++) {
1098a82dd548STaylor Simpson         snprintf(vstore_addr_names[i], NAME_LEN, "vstore_addr_%d", i);
1099a82dd548STaylor Simpson         hex_vstore_addr[i] = tcg_global_mem_new(cpu_env,
1100a82dd548STaylor Simpson             offsetof(CPUHexagonState, vstore[i].va),
1101a82dd548STaylor Simpson             vstore_addr_names[i]);
1102a82dd548STaylor Simpson 
1103a82dd548STaylor Simpson         snprintf(vstore_size_names[i], NAME_LEN, "vstore_size_%d", i);
1104a82dd548STaylor Simpson         hex_vstore_size[i] = tcg_global_mem_new(cpu_env,
1105a82dd548STaylor Simpson             offsetof(CPUHexagonState, vstore[i].size),
1106a82dd548STaylor Simpson             vstore_size_names[i]);
1107a82dd548STaylor Simpson 
1108a82dd548STaylor Simpson         snprintf(vstore_pending_names[i], NAME_LEN, "vstore_pending_%d", i);
1109a82dd548STaylor Simpson         hex_vstore_pending[i] = tcg_global_mem_new(cpu_env,
1110a82dd548STaylor Simpson             offsetof(CPUHexagonState, vstore_pending[i]),
1111a82dd548STaylor Simpson             vstore_pending_names[i]);
1112a82dd548STaylor Simpson     }
11138b453a2bSTaylor Simpson }
1114