xref: /openbmc/qemu/target/hexagon/translate.c (revision b9dd6ff9)
18b453a2bSTaylor Simpson /*
28b453a2bSTaylor Simpson  *  Copyright(c) 2019-2021 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"
228b453a2bSTaylor Simpson #include "exec/cpu_ldst.h"
238b453a2bSTaylor Simpson #include "exec/log.h"
248b453a2bSTaylor Simpson #include "internal.h"
258b453a2bSTaylor Simpson #include "attribs.h"
268b453a2bSTaylor Simpson #include "insn.h"
278b453a2bSTaylor Simpson #include "decode.h"
288b453a2bSTaylor Simpson #include "translate.h"
298b453a2bSTaylor Simpson #include "printinsn.h"
308b453a2bSTaylor Simpson 
318b453a2bSTaylor Simpson TCGv hex_gpr[TOTAL_PER_THREAD_REGS];
328b453a2bSTaylor Simpson TCGv hex_pred[NUM_PREGS];
338b453a2bSTaylor Simpson TCGv hex_next_PC;
348b453a2bSTaylor Simpson TCGv hex_this_PC;
358b453a2bSTaylor Simpson TCGv hex_slot_cancelled;
368b453a2bSTaylor Simpson TCGv hex_branch_taken;
378b453a2bSTaylor Simpson TCGv hex_new_value[TOTAL_PER_THREAD_REGS];
388b453a2bSTaylor Simpson TCGv hex_reg_written[TOTAL_PER_THREAD_REGS];
398b453a2bSTaylor Simpson TCGv hex_new_pred_value[NUM_PREGS];
408b453a2bSTaylor Simpson TCGv hex_pred_written;
418b453a2bSTaylor Simpson TCGv hex_store_addr[STORES_MAX];
428b453a2bSTaylor Simpson TCGv hex_store_width[STORES_MAX];
438b453a2bSTaylor Simpson TCGv hex_store_val32[STORES_MAX];
448b453a2bSTaylor Simpson TCGv_i64 hex_store_val64[STORES_MAX];
458b453a2bSTaylor Simpson TCGv hex_pkt_has_store_s1;
468b453a2bSTaylor Simpson TCGv hex_dczero_addr;
478b453a2bSTaylor Simpson TCGv hex_llsc_addr;
488b453a2bSTaylor Simpson TCGv hex_llsc_val;
498b453a2bSTaylor Simpson TCGv_i64 hex_llsc_val_i64;
508b453a2bSTaylor Simpson 
518b453a2bSTaylor Simpson static const char * const hexagon_prednames[] = {
528b453a2bSTaylor Simpson   "p0", "p1", "p2", "p3"
538b453a2bSTaylor Simpson };
548b453a2bSTaylor Simpson 
55743debbcSTaylor Simpson static void gen_exception_raw(int excp)
568b453a2bSTaylor Simpson {
5723803bbeSPhilippe Mathieu-Daudé     gen_helper_raise_exception(cpu_env, tcg_constant_i32(excp));
588b453a2bSTaylor Simpson }
598b453a2bSTaylor Simpson 
60743debbcSTaylor Simpson static void gen_exec_counters(DisasContext *ctx)
618b453a2bSTaylor Simpson {
62743debbcSTaylor Simpson     tcg_gen_addi_tl(hex_gpr[HEX_REG_QEMU_PKT_CNT],
63743debbcSTaylor Simpson                     hex_gpr[HEX_REG_QEMU_PKT_CNT], ctx->num_packets);
64743debbcSTaylor Simpson     tcg_gen_addi_tl(hex_gpr[HEX_REG_QEMU_INSN_CNT],
65743debbcSTaylor Simpson                     hex_gpr[HEX_REG_QEMU_INSN_CNT], ctx->num_insns);
66743debbcSTaylor Simpson }
67743debbcSTaylor Simpson 
68743debbcSTaylor Simpson static void gen_end_tb(DisasContext *ctx)
69743debbcSTaylor Simpson {
70743debbcSTaylor Simpson     gen_exec_counters(ctx);
71743debbcSTaylor Simpson     tcg_gen_mov_tl(hex_gpr[HEX_REG_PC], hex_next_PC);
72743debbcSTaylor Simpson     tcg_gen_exit_tb(NULL, 0);
73743debbcSTaylor Simpson     ctx->base.is_jmp = DISAS_NORETURN;
74743debbcSTaylor Simpson }
75743debbcSTaylor Simpson 
76743debbcSTaylor Simpson static void gen_exception_end_tb(DisasContext *ctx, int excp)
77743debbcSTaylor Simpson {
78743debbcSTaylor Simpson     gen_exec_counters(ctx);
79743debbcSTaylor Simpson     tcg_gen_mov_tl(hex_gpr[HEX_REG_PC], hex_next_PC);
80743debbcSTaylor Simpson     gen_exception_raw(excp);
81743debbcSTaylor Simpson     ctx->base.is_jmp = DISAS_NORETURN;
82743debbcSTaylor Simpson 
838b453a2bSTaylor Simpson }
848b453a2bSTaylor Simpson 
858b453a2bSTaylor Simpson #define PACKET_BUFFER_LEN              1028
868b453a2bSTaylor Simpson static void print_pkt(Packet *pkt)
878b453a2bSTaylor Simpson {
888b453a2bSTaylor Simpson     GString *buf = g_string_sized_new(PACKET_BUFFER_LEN);
898b453a2bSTaylor Simpson     snprint_a_pkt_debug(buf, pkt);
908b453a2bSTaylor Simpson     HEX_DEBUG_LOG("%s", buf->str);
918b453a2bSTaylor Simpson     g_string_free(buf, true);
928b453a2bSTaylor Simpson }
9385580a65STaylor Simpson #define HEX_DEBUG_PRINT_PKT(pkt) \
9485580a65STaylor Simpson     do { \
9585580a65STaylor Simpson         if (HEX_DEBUG) { \
9685580a65STaylor Simpson             print_pkt(pkt); \
9785580a65STaylor Simpson         } \
9885580a65STaylor Simpson     } while (0)
998b453a2bSTaylor Simpson 
1008b453a2bSTaylor Simpson static int read_packet_words(CPUHexagonState *env, DisasContext *ctx,
1018b453a2bSTaylor Simpson                              uint32_t words[])
1028b453a2bSTaylor Simpson {
1038b453a2bSTaylor Simpson     bool found_end = false;
1048b453a2bSTaylor Simpson     int nwords, max_words;
1058b453a2bSTaylor Simpson 
1068b453a2bSTaylor Simpson     memset(words, 0, PACKET_WORDS_MAX * sizeof(uint32_t));
1078b453a2bSTaylor Simpson     for (nwords = 0; !found_end && nwords < PACKET_WORDS_MAX; nwords++) {
108a27c100cSTaylor Simpson         words[nwords] =
1094e116893SIlya Leoshkevich             translator_ldl(env, &ctx->base,
1104e116893SIlya Leoshkevich                            ctx->base.pc_next + nwords * sizeof(uint32_t));
1118b453a2bSTaylor Simpson         found_end = is_packet_end(words[nwords]);
1128b453a2bSTaylor Simpson     }
1138b453a2bSTaylor Simpson     if (!found_end) {
1148b453a2bSTaylor Simpson         /* Read too many words without finding the end */
1158b453a2bSTaylor Simpson         return 0;
1168b453a2bSTaylor Simpson     }
1178b453a2bSTaylor Simpson 
1188b453a2bSTaylor Simpson     /* Check for page boundary crossing */
1198b453a2bSTaylor Simpson     max_words = -(ctx->base.pc_next | TARGET_PAGE_MASK) / sizeof(uint32_t);
1208b453a2bSTaylor Simpson     if (nwords > max_words) {
1218b453a2bSTaylor Simpson         /* We can only cross a page boundary at the beginning of a TB */
1228b453a2bSTaylor Simpson         g_assert(ctx->base.num_insns == 1);
1238b453a2bSTaylor Simpson     }
1248b453a2bSTaylor Simpson 
1258b453a2bSTaylor Simpson     HEX_DEBUG_LOG("decode_packet: pc = 0x%x\n", ctx->base.pc_next);
1268b453a2bSTaylor Simpson     HEX_DEBUG_LOG("    words = { ");
1278b453a2bSTaylor Simpson     for (int i = 0; i < nwords; i++) {
1288b453a2bSTaylor Simpson         HEX_DEBUG_LOG("0x%x, ", words[i]);
1298b453a2bSTaylor Simpson     }
1308b453a2bSTaylor Simpson     HEX_DEBUG_LOG("}\n");
1318b453a2bSTaylor Simpson 
1328b453a2bSTaylor Simpson     return nwords;
1338b453a2bSTaylor Simpson }
1348b453a2bSTaylor Simpson 
1358b453a2bSTaylor Simpson static bool check_for_attrib(Packet *pkt, int attrib)
1368b453a2bSTaylor Simpson {
1378b453a2bSTaylor Simpson     for (int i = 0; i < pkt->num_insns; i++) {
1388b453a2bSTaylor Simpson         if (GET_ATTRIB(pkt->insn[i].opcode, attrib)) {
1398b453a2bSTaylor Simpson             return true;
1408b453a2bSTaylor Simpson         }
1418b453a2bSTaylor Simpson     }
1428b453a2bSTaylor Simpson     return false;
1438b453a2bSTaylor Simpson }
1448b453a2bSTaylor Simpson 
1458b453a2bSTaylor Simpson static bool need_pc(Packet *pkt)
1468b453a2bSTaylor Simpson {
1478b453a2bSTaylor Simpson     return check_for_attrib(pkt, A_IMPLICIT_READS_PC);
1488b453a2bSTaylor Simpson }
1498b453a2bSTaylor Simpson 
1508b453a2bSTaylor Simpson static bool need_slot_cancelled(Packet *pkt)
1518b453a2bSTaylor Simpson {
1528b453a2bSTaylor Simpson     return check_for_attrib(pkt, A_CONDEXEC);
1538b453a2bSTaylor Simpson }
1548b453a2bSTaylor Simpson 
1558b453a2bSTaylor Simpson static bool need_pred_written(Packet *pkt)
1568b453a2bSTaylor Simpson {
1578b453a2bSTaylor Simpson     return check_for_attrib(pkt, A_WRITES_PRED_REG);
1588b453a2bSTaylor Simpson }
1598b453a2bSTaylor Simpson 
1608b453a2bSTaylor Simpson static void gen_start_packet(DisasContext *ctx, Packet *pkt)
1618b453a2bSTaylor Simpson {
1628b453a2bSTaylor Simpson     target_ulong next_PC = ctx->base.pc_next + pkt->encod_pkt_size_in_bytes;
1638b453a2bSTaylor Simpson     int i;
1648b453a2bSTaylor Simpson 
1658b453a2bSTaylor Simpson     /* Clear out the disassembly context */
1668b453a2bSTaylor Simpson     ctx->reg_log_idx = 0;
1678b453a2bSTaylor Simpson     bitmap_zero(ctx->regs_written, TOTAL_PER_THREAD_REGS);
1688b453a2bSTaylor Simpson     ctx->preg_log_idx = 0;
1696c677c60STaylor Simpson     bitmap_zero(ctx->pregs_written, NUM_PREGS);
1708b453a2bSTaylor Simpson     for (i = 0; i < STORES_MAX; i++) {
1718b453a2bSTaylor Simpson         ctx->store_width[i] = 0;
1728b453a2bSTaylor Simpson     }
1738b453a2bSTaylor Simpson     tcg_gen_movi_tl(hex_pkt_has_store_s1, pkt->pkt_has_store_s1);
17492cfa25fSTaylor Simpson     ctx->s1_store_processed = false;
1758b453a2bSTaylor Simpson 
17685580a65STaylor Simpson     if (HEX_DEBUG) {
1778b453a2bSTaylor Simpson         /* Handy place to set a breakpoint before the packet executes */
1788b453a2bSTaylor Simpson         gen_helper_debug_start_packet(cpu_env);
1798b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_this_PC, ctx->base.pc_next);
18085580a65STaylor Simpson     }
1818b453a2bSTaylor Simpson 
1828b453a2bSTaylor Simpson     /* Initialize the runtime state for packet semantics */
1838b453a2bSTaylor Simpson     if (need_pc(pkt)) {
1848b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_gpr[HEX_REG_PC], ctx->base.pc_next);
1858b453a2bSTaylor Simpson     }
1868b453a2bSTaylor Simpson     if (need_slot_cancelled(pkt)) {
1878b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_slot_cancelled, 0);
1888b453a2bSTaylor Simpson     }
1898b453a2bSTaylor Simpson     if (pkt->pkt_has_cof) {
1908b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_branch_taken, 0);
1918b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_next_PC, next_PC);
1928b453a2bSTaylor Simpson     }
1938b453a2bSTaylor Simpson     if (need_pred_written(pkt)) {
1948b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_pred_written, 0);
1958b453a2bSTaylor Simpson     }
1968b453a2bSTaylor Simpson }
1978b453a2bSTaylor Simpson 
1988b453a2bSTaylor Simpson /*
1998b453a2bSTaylor Simpson  * The LOG_*_WRITE macros mark most of the writes in a packet
2008b453a2bSTaylor Simpson  * However, there are some implicit writes marked as attributes
2018b453a2bSTaylor Simpson  * of the applicable instructions.
2028b453a2bSTaylor Simpson  */
2038b453a2bSTaylor Simpson static void mark_implicit_reg_write(DisasContext *ctx, Insn *insn,
2048b453a2bSTaylor Simpson                                     int attrib, int rnum)
2058b453a2bSTaylor Simpson {
2068b453a2bSTaylor Simpson     if (GET_ATTRIB(insn->opcode, attrib)) {
207*b9dd6ff9STaylor Simpson         /*
208*b9dd6ff9STaylor Simpson          * USR is used to set overflow and FP exceptions,
209*b9dd6ff9STaylor Simpson          * so treat it as conditional
210*b9dd6ff9STaylor Simpson          */
211*b9dd6ff9STaylor Simpson         bool is_predicated = GET_ATTRIB(insn->opcode, A_CONDEXEC) ||
212*b9dd6ff9STaylor Simpson                              rnum == HEX_REG_USR;
2138b453a2bSTaylor Simpson         if (is_predicated && !is_preloaded(ctx, rnum)) {
2148b453a2bSTaylor Simpson             tcg_gen_mov_tl(hex_new_value[rnum], hex_gpr[rnum]);
2158b453a2bSTaylor Simpson         }
2168b453a2bSTaylor Simpson 
2178b453a2bSTaylor Simpson         ctx_log_reg_write(ctx, rnum);
2188b453a2bSTaylor Simpson     }
2198b453a2bSTaylor Simpson }
2208b453a2bSTaylor Simpson 
2218b453a2bSTaylor Simpson static void mark_implicit_pred_write(DisasContext *ctx, Insn *insn,
2228b453a2bSTaylor Simpson                                      int attrib, int pnum)
2238b453a2bSTaylor Simpson {
2248b453a2bSTaylor Simpson     if (GET_ATTRIB(insn->opcode, attrib)) {
2258b453a2bSTaylor Simpson         ctx_log_pred_write(ctx, pnum);
2268b453a2bSTaylor Simpson     }
2278b453a2bSTaylor Simpson }
2288b453a2bSTaylor Simpson 
2296c677c60STaylor Simpson static void mark_implicit_reg_writes(DisasContext *ctx, Insn *insn)
2308b453a2bSTaylor Simpson {
2318b453a2bSTaylor Simpson     mark_implicit_reg_write(ctx, insn, A_IMPLICIT_WRITES_FP,  HEX_REG_FP);
2328b453a2bSTaylor Simpson     mark_implicit_reg_write(ctx, insn, A_IMPLICIT_WRITES_SP,  HEX_REG_SP);
2338b453a2bSTaylor Simpson     mark_implicit_reg_write(ctx, insn, A_IMPLICIT_WRITES_LR,  HEX_REG_LR);
2348b453a2bSTaylor Simpson     mark_implicit_reg_write(ctx, insn, A_IMPLICIT_WRITES_LC0, HEX_REG_LC0);
2358b453a2bSTaylor Simpson     mark_implicit_reg_write(ctx, insn, A_IMPLICIT_WRITES_SA0, HEX_REG_SA0);
2368b453a2bSTaylor Simpson     mark_implicit_reg_write(ctx, insn, A_IMPLICIT_WRITES_LC1, HEX_REG_LC1);
2378b453a2bSTaylor Simpson     mark_implicit_reg_write(ctx, insn, A_IMPLICIT_WRITES_SA1, HEX_REG_SA1);
238*b9dd6ff9STaylor Simpson     mark_implicit_reg_write(ctx, insn, A_IMPLICIT_WRITES_USR, HEX_REG_USR);
239*b9dd6ff9STaylor Simpson     mark_implicit_reg_write(ctx, insn, A_FPOP, HEX_REG_USR);
2406c677c60STaylor Simpson }
2418b453a2bSTaylor Simpson 
2426c677c60STaylor Simpson static void mark_implicit_pred_writes(DisasContext *ctx, Insn *insn)
2436c677c60STaylor Simpson {
2448b453a2bSTaylor Simpson     mark_implicit_pred_write(ctx, insn, A_IMPLICIT_WRITES_P0, 0);
2458b453a2bSTaylor Simpson     mark_implicit_pred_write(ctx, insn, A_IMPLICIT_WRITES_P1, 1);
2468b453a2bSTaylor Simpson     mark_implicit_pred_write(ctx, insn, A_IMPLICIT_WRITES_P2, 2);
2478b453a2bSTaylor Simpson     mark_implicit_pred_write(ctx, insn, A_IMPLICIT_WRITES_P3, 3);
2488b453a2bSTaylor Simpson }
2498b453a2bSTaylor Simpson 
2508b453a2bSTaylor Simpson static void gen_insn(CPUHexagonState *env, DisasContext *ctx,
2518b453a2bSTaylor Simpson                      Insn *insn, Packet *pkt)
2528b453a2bSTaylor Simpson {
2538b453a2bSTaylor Simpson     if (insn->generate) {
2546c677c60STaylor Simpson         mark_implicit_reg_writes(ctx, insn);
2558b453a2bSTaylor Simpson         insn->generate(env, ctx, insn, pkt);
2566c677c60STaylor Simpson         mark_implicit_pred_writes(ctx, insn);
2578b453a2bSTaylor Simpson     } else {
258743debbcSTaylor Simpson         gen_exception_end_tb(ctx, HEX_EXCP_INVALID_OPCODE);
2598b453a2bSTaylor Simpson     }
2608b453a2bSTaylor Simpson }
2618b453a2bSTaylor Simpson 
2628b453a2bSTaylor Simpson /*
2638b453a2bSTaylor Simpson  * Helpers for generating the packet commit
2648b453a2bSTaylor Simpson  */
2658b453a2bSTaylor Simpson static void gen_reg_writes(DisasContext *ctx)
2668b453a2bSTaylor Simpson {
2678b453a2bSTaylor Simpson     int i;
2688b453a2bSTaylor Simpson 
2698b453a2bSTaylor Simpson     for (i = 0; i < ctx->reg_log_idx; i++) {
2708b453a2bSTaylor Simpson         int reg_num = ctx->reg_log[i];
2718b453a2bSTaylor Simpson 
2728b453a2bSTaylor Simpson         tcg_gen_mov_tl(hex_gpr[reg_num], hex_new_value[reg_num]);
2738b453a2bSTaylor Simpson     }
2748b453a2bSTaylor Simpson }
2758b453a2bSTaylor Simpson 
2768b453a2bSTaylor Simpson static void gen_pred_writes(DisasContext *ctx, Packet *pkt)
2778b453a2bSTaylor Simpson {
2788b453a2bSTaylor Simpson     int i;
2798b453a2bSTaylor Simpson 
2808b453a2bSTaylor Simpson     /* Early exit if the log is empty */
2818b453a2bSTaylor Simpson     if (!ctx->preg_log_idx) {
2828b453a2bSTaylor Simpson         return;
2838b453a2bSTaylor Simpson     }
2848b453a2bSTaylor Simpson 
2858b453a2bSTaylor Simpson     /*
2868b453a2bSTaylor Simpson      * Only endloop instructions will conditionally
2878b453a2bSTaylor Simpson      * write a predicate.  If there are no endloop
2888b453a2bSTaylor Simpson      * instructions, we can use the non-conditional
2898b453a2bSTaylor Simpson      * write of the predicates.
2908b453a2bSTaylor Simpson      */
2918b453a2bSTaylor Simpson     if (pkt->pkt_has_endloop) {
29223803bbeSPhilippe Mathieu-Daudé         TCGv zero = tcg_constant_tl(0);
2938b453a2bSTaylor Simpson         TCGv pred_written = tcg_temp_new();
2948b453a2bSTaylor Simpson         for (i = 0; i < ctx->preg_log_idx; i++) {
2958b453a2bSTaylor Simpson             int pred_num = ctx->preg_log[i];
2968b453a2bSTaylor Simpson 
2978b453a2bSTaylor Simpson             tcg_gen_andi_tl(pred_written, hex_pred_written, 1 << pred_num);
2988b453a2bSTaylor Simpson             tcg_gen_movcond_tl(TCG_COND_NE, hex_pred[pred_num],
2998b453a2bSTaylor Simpson                                pred_written, zero,
3008b453a2bSTaylor Simpson                                hex_new_pred_value[pred_num],
3018b453a2bSTaylor Simpson                                hex_pred[pred_num]);
3028b453a2bSTaylor Simpson         }
3038b453a2bSTaylor Simpson         tcg_temp_free(pred_written);
3048b453a2bSTaylor Simpson     } else {
3058b453a2bSTaylor Simpson         for (i = 0; i < ctx->preg_log_idx; i++) {
3068b453a2bSTaylor Simpson             int pred_num = ctx->preg_log[i];
3078b453a2bSTaylor Simpson             tcg_gen_mov_tl(hex_pred[pred_num], hex_new_pred_value[pred_num]);
30885580a65STaylor Simpson             if (HEX_DEBUG) {
3098b453a2bSTaylor Simpson                 /* Do this so HELPER(debug_commit_end) will know */
31085580a65STaylor Simpson                 tcg_gen_ori_tl(hex_pred_written, hex_pred_written,
31185580a65STaylor Simpson                                1 << pred_num);
31285580a65STaylor Simpson             }
3138b453a2bSTaylor Simpson         }
3148b453a2bSTaylor Simpson     }
3158b453a2bSTaylor Simpson }
3168b453a2bSTaylor Simpson 
317a27c100cSTaylor Simpson static void gen_check_store_width(DisasContext *ctx, int slot_num)
3188b453a2bSTaylor Simpson {
31985580a65STaylor Simpson     if (HEX_DEBUG) {
32023803bbeSPhilippe Mathieu-Daudé         TCGv slot = tcg_constant_tl(slot_num);
32123803bbeSPhilippe Mathieu-Daudé         TCGv check = tcg_constant_tl(ctx->store_width[slot_num]);
3228b453a2bSTaylor Simpson         gen_helper_debug_check_store_width(cpu_env, slot, check);
32385580a65STaylor Simpson     }
324a27c100cSTaylor Simpson }
3258b453a2bSTaylor Simpson 
3268b453a2bSTaylor Simpson static bool slot_is_predicated(Packet *pkt, int slot_num)
3278b453a2bSTaylor Simpson {
3288b453a2bSTaylor Simpson     for (int i = 0; i < pkt->num_insns; i++) {
3298b453a2bSTaylor Simpson         if (pkt->insn[i].slot == slot_num) {
3308b453a2bSTaylor Simpson             return GET_ATTRIB(pkt->insn[i].opcode, A_CONDEXEC);
3318b453a2bSTaylor Simpson         }
3328b453a2bSTaylor Simpson     }
3338b453a2bSTaylor Simpson     /* If we get to here, we didn't find an instruction in the requested slot */
3348b453a2bSTaylor Simpson     g_assert_not_reached();
3358b453a2bSTaylor Simpson }
3368b453a2bSTaylor Simpson 
3378b453a2bSTaylor Simpson void process_store(DisasContext *ctx, Packet *pkt, int slot_num)
3388b453a2bSTaylor Simpson {
3398b453a2bSTaylor Simpson     bool is_predicated = slot_is_predicated(pkt, slot_num);
3408b453a2bSTaylor Simpson     TCGLabel *label_end = NULL;
3418b453a2bSTaylor Simpson 
3428b453a2bSTaylor Simpson     /*
3438b453a2bSTaylor Simpson      * We may have already processed this store
3448b453a2bSTaylor Simpson      * See CHECK_NOSHUF in macros.h
3458b453a2bSTaylor Simpson      */
3468b453a2bSTaylor Simpson     if (slot_num == 1 && ctx->s1_store_processed) {
3478b453a2bSTaylor Simpson         return;
3488b453a2bSTaylor Simpson     }
34992cfa25fSTaylor Simpson     ctx->s1_store_processed = true;
3508b453a2bSTaylor Simpson 
3518b453a2bSTaylor Simpson     if (is_predicated) {
3528b453a2bSTaylor Simpson         TCGv cancelled = tcg_temp_new();
3538b453a2bSTaylor Simpson         label_end = gen_new_label();
3548b453a2bSTaylor Simpson 
3558b453a2bSTaylor Simpson         /* Don't do anything if the slot was cancelled */
3568b453a2bSTaylor Simpson         tcg_gen_extract_tl(cancelled, hex_slot_cancelled, slot_num, 1);
3578b453a2bSTaylor Simpson         tcg_gen_brcondi_tl(TCG_COND_NE, cancelled, 0, label_end);
3588b453a2bSTaylor Simpson         tcg_temp_free(cancelled);
3598b453a2bSTaylor Simpson     }
3608b453a2bSTaylor Simpson     {
3618b453a2bSTaylor Simpson         TCGv address = tcg_temp_local_new();
3628b453a2bSTaylor Simpson         tcg_gen_mov_tl(address, hex_store_addr[slot_num]);
3638b453a2bSTaylor Simpson 
3648b453a2bSTaylor Simpson         /*
3658b453a2bSTaylor Simpson          * If we know the width from the DisasContext, we can
3668b453a2bSTaylor Simpson          * generate much cleaner code.
3678b453a2bSTaylor Simpson          * Unfortunately, not all instructions execute the fSTORE
3688b453a2bSTaylor Simpson          * macro during code generation.  Anything that uses the
3698b453a2bSTaylor Simpson          * generic helper will have this problem.  Instructions
3708b453a2bSTaylor Simpson          * that use fWRAP to generate proper TCG code will be OK.
3718b453a2bSTaylor Simpson          */
3728b453a2bSTaylor Simpson         switch (ctx->store_width[slot_num]) {
3738b453a2bSTaylor Simpson         case 1:
374a27c100cSTaylor Simpson             gen_check_store_width(ctx, slot_num);
3758b453a2bSTaylor Simpson             tcg_gen_qemu_st8(hex_store_val32[slot_num],
3768b453a2bSTaylor Simpson                              hex_store_addr[slot_num],
3778b453a2bSTaylor Simpson                              ctx->mem_idx);
3788b453a2bSTaylor Simpson             break;
3798b453a2bSTaylor Simpson         case 2:
380a27c100cSTaylor Simpson             gen_check_store_width(ctx, slot_num);
3818b453a2bSTaylor Simpson             tcg_gen_qemu_st16(hex_store_val32[slot_num],
3828b453a2bSTaylor Simpson                               hex_store_addr[slot_num],
3838b453a2bSTaylor Simpson                               ctx->mem_idx);
3848b453a2bSTaylor Simpson             break;
3858b453a2bSTaylor Simpson         case 4:
386a27c100cSTaylor Simpson             gen_check_store_width(ctx, slot_num);
3878b453a2bSTaylor Simpson             tcg_gen_qemu_st32(hex_store_val32[slot_num],
3888b453a2bSTaylor Simpson                               hex_store_addr[slot_num],
3898b453a2bSTaylor Simpson                               ctx->mem_idx);
3908b453a2bSTaylor Simpson             break;
3918b453a2bSTaylor Simpson         case 8:
392a27c100cSTaylor Simpson             gen_check_store_width(ctx, slot_num);
3938b453a2bSTaylor Simpson             tcg_gen_qemu_st64(hex_store_val64[slot_num],
3948b453a2bSTaylor Simpson                               hex_store_addr[slot_num],
3958b453a2bSTaylor Simpson                               ctx->mem_idx);
3968b453a2bSTaylor Simpson             break;
3978b453a2bSTaylor Simpson         default:
3988b453a2bSTaylor Simpson             {
3998b453a2bSTaylor Simpson                 /*
4008b453a2bSTaylor Simpson                  * If we get to here, we don't know the width at
4018b453a2bSTaylor Simpson                  * TCG generation time, we'll use a helper to
4028b453a2bSTaylor Simpson                  * avoid branching based on the width at runtime.
4038b453a2bSTaylor Simpson                  */
40423803bbeSPhilippe Mathieu-Daudé                 TCGv slot = tcg_constant_tl(slot_num);
4058b453a2bSTaylor Simpson                 gen_helper_commit_store(cpu_env, slot);
4068b453a2bSTaylor Simpson             }
4078b453a2bSTaylor Simpson         }
4088b453a2bSTaylor Simpson         tcg_temp_free(address);
4098b453a2bSTaylor Simpson     }
4108b453a2bSTaylor Simpson     if (is_predicated) {
4118b453a2bSTaylor Simpson         gen_set_label(label_end);
4128b453a2bSTaylor Simpson     }
4138b453a2bSTaylor Simpson }
4148b453a2bSTaylor Simpson 
4158b453a2bSTaylor Simpson static void process_store_log(DisasContext *ctx, Packet *pkt)
4168b453a2bSTaylor Simpson {
4178b453a2bSTaylor Simpson     /*
4188b453a2bSTaylor Simpson      *  When a packet has two stores, the hardware processes
419c23b5764STaylor Simpson      *  slot 1 and then slot 0.  This will be important when
4208b453a2bSTaylor Simpson      *  the memory accesses overlap.
4218b453a2bSTaylor Simpson      */
4228b453a2bSTaylor Simpson     if (pkt->pkt_has_store_s1 && !pkt->pkt_has_dczeroa) {
4238b453a2bSTaylor Simpson         process_store(ctx, pkt, 1);
4248b453a2bSTaylor Simpson     }
4258b453a2bSTaylor Simpson     if (pkt->pkt_has_store_s0 && !pkt->pkt_has_dczeroa) {
4268b453a2bSTaylor Simpson         process_store(ctx, pkt, 0);
4278b453a2bSTaylor Simpson     }
4288b453a2bSTaylor Simpson }
4298b453a2bSTaylor Simpson 
4308b453a2bSTaylor Simpson /* Zero out a 32-bit cache line */
4318b453a2bSTaylor Simpson static void process_dczeroa(DisasContext *ctx, Packet *pkt)
4328b453a2bSTaylor Simpson {
4338b453a2bSTaylor Simpson     if (pkt->pkt_has_dczeroa) {
4348b453a2bSTaylor Simpson         /* Store 32 bytes of zero starting at (addr & ~0x1f) */
4358b453a2bSTaylor Simpson         TCGv addr = tcg_temp_new();
43623803bbeSPhilippe Mathieu-Daudé         TCGv_i64 zero = tcg_constant_i64(0);
4378b453a2bSTaylor Simpson 
4388b453a2bSTaylor Simpson         tcg_gen_andi_tl(addr, hex_dczero_addr, ~0x1f);
4398b453a2bSTaylor Simpson         tcg_gen_qemu_st64(zero, addr, ctx->mem_idx);
4408b453a2bSTaylor Simpson         tcg_gen_addi_tl(addr, addr, 8);
4418b453a2bSTaylor Simpson         tcg_gen_qemu_st64(zero, addr, ctx->mem_idx);
4428b453a2bSTaylor Simpson         tcg_gen_addi_tl(addr, addr, 8);
4438b453a2bSTaylor Simpson         tcg_gen_qemu_st64(zero, addr, ctx->mem_idx);
4448b453a2bSTaylor Simpson         tcg_gen_addi_tl(addr, addr, 8);
4458b453a2bSTaylor Simpson         tcg_gen_qemu_st64(zero, addr, ctx->mem_idx);
4468b453a2bSTaylor Simpson 
4478b453a2bSTaylor Simpson         tcg_temp_free(addr);
4488b453a2bSTaylor Simpson     }
4498b453a2bSTaylor Simpson }
4508b453a2bSTaylor Simpson 
4518b453a2bSTaylor Simpson static void update_exec_counters(DisasContext *ctx, Packet *pkt)
4528b453a2bSTaylor Simpson {
4538b453a2bSTaylor Simpson     int num_insns = pkt->num_insns;
4548b453a2bSTaylor Simpson     int num_real_insns = 0;
4558b453a2bSTaylor Simpson 
4568b453a2bSTaylor Simpson     for (int i = 0; i < num_insns; i++) {
4578b453a2bSTaylor Simpson         if (!pkt->insn[i].is_endloop &&
4588b453a2bSTaylor Simpson             !pkt->insn[i].part1 &&
4598b453a2bSTaylor Simpson             !GET_ATTRIB(pkt->insn[i].opcode, A_IT_NOP)) {
4608b453a2bSTaylor Simpson             num_real_insns++;
4618b453a2bSTaylor Simpson         }
4628b453a2bSTaylor Simpson     }
4638b453a2bSTaylor Simpson 
4648b453a2bSTaylor Simpson     ctx->num_packets++;
4658b453a2bSTaylor Simpson     ctx->num_insns += num_real_insns;
4668b453a2bSTaylor Simpson }
4678b453a2bSTaylor Simpson 
4688b453a2bSTaylor Simpson static void gen_commit_packet(DisasContext *ctx, Packet *pkt)
4698b453a2bSTaylor Simpson {
470c23b5764STaylor Simpson     /*
471c23b5764STaylor Simpson      * If there is more than one store in a packet, make sure they are all OK
472c23b5764STaylor Simpson      * before proceeding with the rest of the packet commit.
473c23b5764STaylor Simpson      *
474c23b5764STaylor Simpson      * dczeroa has to be the only store operation in the packet, so we go
475c23b5764STaylor Simpson      * ahead and process that first.
476c23b5764STaylor Simpson      *
477c23b5764STaylor Simpson      * When there are two scalar stores, we probe the one in slot 0.
478c23b5764STaylor Simpson      *
479c23b5764STaylor Simpson      * Note that we don't call the probe helper for packets with only one
480c23b5764STaylor Simpson      * store.  Therefore, we call process_store_log before anything else
481c23b5764STaylor Simpson      * involved in committing the packet.
482c23b5764STaylor Simpson      */
483c23b5764STaylor Simpson     bool has_store_s0 = pkt->pkt_has_store_s0;
484c23b5764STaylor Simpson     bool has_store_s1 = (pkt->pkt_has_store_s1 && !ctx->s1_store_processed);
485c23b5764STaylor Simpson     if (pkt->pkt_has_dczeroa) {
486c23b5764STaylor Simpson         /*
487c23b5764STaylor Simpson          * The dczeroa will be the store in slot 0, check that we don't have
488c23b5764STaylor Simpson          * a store in slot 1.
489c23b5764STaylor Simpson          */
490c23b5764STaylor Simpson         g_assert(has_store_s0 && !has_store_s1);
491c23b5764STaylor Simpson         process_dczeroa(ctx, pkt);
492c23b5764STaylor Simpson     } else if (has_store_s0 && has_store_s1) {
493c23b5764STaylor Simpson         /*
494c23b5764STaylor Simpson          * process_store_log will execute the slot 1 store first,
495c23b5764STaylor Simpson          * so we only have to probe the store in slot 0
496c23b5764STaylor Simpson          */
497f448397aSTaylor Simpson         TCGv mem_idx = tcg_constant_tl(ctx->mem_idx);
498c23b5764STaylor Simpson         gen_helper_probe_pkt_scalar_store_s0(cpu_env, mem_idx);
499c23b5764STaylor Simpson     }
500c23b5764STaylor Simpson 
501c23b5764STaylor Simpson     process_store_log(ctx, pkt);
502c23b5764STaylor Simpson 
5038b453a2bSTaylor Simpson     gen_reg_writes(ctx);
5048b453a2bSTaylor Simpson     gen_pred_writes(ctx, pkt);
5058b453a2bSTaylor Simpson     update_exec_counters(ctx, pkt);
50685580a65STaylor Simpson     if (HEX_DEBUG) {
5078b453a2bSTaylor Simpson         TCGv has_st0 =
50823803bbeSPhilippe Mathieu-Daudé             tcg_constant_tl(pkt->pkt_has_store_s0 && !pkt->pkt_has_dczeroa);
5098b453a2bSTaylor Simpson         TCGv has_st1 =
51023803bbeSPhilippe Mathieu-Daudé             tcg_constant_tl(pkt->pkt_has_store_s1 && !pkt->pkt_has_dczeroa);
5118b453a2bSTaylor Simpson 
5128b453a2bSTaylor Simpson         /* Handy place to set a breakpoint at the end of execution */
5138b453a2bSTaylor Simpson         gen_helper_debug_commit_end(cpu_env, has_st0, has_st1);
5148b453a2bSTaylor Simpson     }
5158b453a2bSTaylor Simpson 
5168b453a2bSTaylor Simpson     if (pkt->pkt_has_cof) {
517743debbcSTaylor Simpson         gen_end_tb(ctx);
5188b453a2bSTaylor Simpson     }
5198b453a2bSTaylor Simpson }
5208b453a2bSTaylor Simpson 
5218b453a2bSTaylor Simpson static void decode_and_translate_packet(CPUHexagonState *env, DisasContext *ctx)
5228b453a2bSTaylor Simpson {
5238b453a2bSTaylor Simpson     uint32_t words[PACKET_WORDS_MAX];
5248b453a2bSTaylor Simpson     int nwords;
5258b453a2bSTaylor Simpson     Packet pkt;
5268b453a2bSTaylor Simpson     int i;
5278b453a2bSTaylor Simpson 
5288b453a2bSTaylor Simpson     nwords = read_packet_words(env, ctx, words);
5298b453a2bSTaylor Simpson     if (!nwords) {
530743debbcSTaylor Simpson         gen_exception_end_tb(ctx, HEX_EXCP_INVALID_PACKET);
5318b453a2bSTaylor Simpson         return;
5328b453a2bSTaylor Simpson     }
5338b453a2bSTaylor Simpson 
5348b453a2bSTaylor Simpson     if (decode_packet(nwords, words, &pkt, false) > 0) {
5358b453a2bSTaylor Simpson         HEX_DEBUG_PRINT_PKT(&pkt);
5368b453a2bSTaylor Simpson         gen_start_packet(ctx, &pkt);
5378b453a2bSTaylor Simpson         for (i = 0; i < pkt.num_insns; i++) {
5388b453a2bSTaylor Simpson             gen_insn(env, ctx, &pkt.insn[i], &pkt);
5398b453a2bSTaylor Simpson         }
5408b453a2bSTaylor Simpson         gen_commit_packet(ctx, &pkt);
5418b453a2bSTaylor Simpson         ctx->base.pc_next += pkt.encod_pkt_size_in_bytes;
5428b453a2bSTaylor Simpson     } else {
543743debbcSTaylor Simpson         gen_exception_end_tb(ctx, HEX_EXCP_INVALID_PACKET);
5448b453a2bSTaylor Simpson     }
5458b453a2bSTaylor Simpson }
5468b453a2bSTaylor Simpson 
5478b453a2bSTaylor Simpson static void hexagon_tr_init_disas_context(DisasContextBase *dcbase,
5488b453a2bSTaylor Simpson                                           CPUState *cs)
5498b453a2bSTaylor Simpson {
5508b453a2bSTaylor Simpson     DisasContext *ctx = container_of(dcbase, DisasContext, base);
5518b453a2bSTaylor Simpson 
5528b453a2bSTaylor Simpson     ctx->mem_idx = MMU_USER_IDX;
5538b453a2bSTaylor Simpson     ctx->num_packets = 0;
5548b453a2bSTaylor Simpson     ctx->num_insns = 0;
5558b453a2bSTaylor Simpson }
5568b453a2bSTaylor Simpson 
5578b453a2bSTaylor Simpson static void hexagon_tr_tb_start(DisasContextBase *db, CPUState *cpu)
5588b453a2bSTaylor Simpson {
5598b453a2bSTaylor Simpson }
5608b453a2bSTaylor Simpson 
5618b453a2bSTaylor Simpson static void hexagon_tr_insn_start(DisasContextBase *dcbase, CPUState *cpu)
5628b453a2bSTaylor Simpson {
5638b453a2bSTaylor Simpson     DisasContext *ctx = container_of(dcbase, DisasContext, base);
5648b453a2bSTaylor Simpson 
5658b453a2bSTaylor Simpson     tcg_gen_insn_start(ctx->base.pc_next);
5668b453a2bSTaylor Simpson }
5678b453a2bSTaylor Simpson 
5688b453a2bSTaylor Simpson static bool pkt_crosses_page(CPUHexagonState *env, DisasContext *ctx)
5698b453a2bSTaylor Simpson {
5708b453a2bSTaylor Simpson     target_ulong page_start = ctx->base.pc_first & TARGET_PAGE_MASK;
5718b453a2bSTaylor Simpson     bool found_end = false;
5728b453a2bSTaylor Simpson     int nwords;
5738b453a2bSTaylor Simpson 
5748b453a2bSTaylor Simpson     for (nwords = 0; !found_end && nwords < PACKET_WORDS_MAX; nwords++) {
5758b453a2bSTaylor Simpson         uint32_t word = cpu_ldl_code(env,
5768b453a2bSTaylor Simpson                             ctx->base.pc_next + nwords * sizeof(uint32_t));
5778b453a2bSTaylor Simpson         found_end = is_packet_end(word);
5788b453a2bSTaylor Simpson     }
5798b453a2bSTaylor Simpson     uint32_t next_ptr =  ctx->base.pc_next + nwords * sizeof(uint32_t);
5808b453a2bSTaylor Simpson     return found_end && next_ptr - page_start >= TARGET_PAGE_SIZE;
5818b453a2bSTaylor Simpson }
5828b453a2bSTaylor Simpson 
5838b453a2bSTaylor Simpson static void hexagon_tr_translate_packet(DisasContextBase *dcbase, CPUState *cpu)
5848b453a2bSTaylor Simpson {
5858b453a2bSTaylor Simpson     DisasContext *ctx = container_of(dcbase, DisasContext, base);
5868b453a2bSTaylor Simpson     CPUHexagonState *env = cpu->env_ptr;
5878b453a2bSTaylor Simpson 
5888b453a2bSTaylor Simpson     decode_and_translate_packet(env, ctx);
5898b453a2bSTaylor Simpson 
5908b453a2bSTaylor Simpson     if (ctx->base.is_jmp == DISAS_NEXT) {
5918b453a2bSTaylor Simpson         target_ulong page_start = ctx->base.pc_first & TARGET_PAGE_MASK;
5928b453a2bSTaylor Simpson         target_ulong bytes_max = PACKET_WORDS_MAX * sizeof(target_ulong);
5938b453a2bSTaylor Simpson 
5948b453a2bSTaylor Simpson         if (ctx->base.pc_next - page_start >= TARGET_PAGE_SIZE ||
5958b453a2bSTaylor Simpson             (ctx->base.pc_next - page_start >= TARGET_PAGE_SIZE - bytes_max &&
5968b453a2bSTaylor Simpson              pkt_crosses_page(env, ctx))) {
5978b453a2bSTaylor Simpson             ctx->base.is_jmp = DISAS_TOO_MANY;
5988b453a2bSTaylor Simpson         }
5998b453a2bSTaylor Simpson 
6008b453a2bSTaylor Simpson         /*
6018b453a2bSTaylor Simpson          * The CPU log is used to compare against LLDB single stepping,
6028b453a2bSTaylor Simpson          * so end the TLB after every packet.
6038b453a2bSTaylor Simpson          */
6047d9ab202STaylor Simpson         HexagonCPU *hex_cpu = env_archcpu(env);
6058b453a2bSTaylor Simpson         if (hex_cpu->lldb_compat && qemu_loglevel_mask(CPU_LOG_TB_CPU)) {
6068b453a2bSTaylor Simpson             ctx->base.is_jmp = DISAS_TOO_MANY;
6078b453a2bSTaylor Simpson         }
6088b453a2bSTaylor Simpson     }
6098b453a2bSTaylor Simpson }
6108b453a2bSTaylor Simpson 
6118b453a2bSTaylor Simpson static void hexagon_tr_tb_stop(DisasContextBase *dcbase, CPUState *cpu)
6128b453a2bSTaylor Simpson {
6138b453a2bSTaylor Simpson     DisasContext *ctx = container_of(dcbase, DisasContext, base);
6148b453a2bSTaylor Simpson 
6158b453a2bSTaylor Simpson     switch (ctx->base.is_jmp) {
6168b453a2bSTaylor Simpson     case DISAS_TOO_MANY:
6178b453a2bSTaylor Simpson         gen_exec_counters(ctx);
6188b453a2bSTaylor Simpson         tcg_gen_movi_tl(hex_gpr[HEX_REG_PC], ctx->base.pc_next);
6198b453a2bSTaylor Simpson         tcg_gen_exit_tb(NULL, 0);
6208b453a2bSTaylor Simpson         break;
6218b453a2bSTaylor Simpson     case DISAS_NORETURN:
6228b453a2bSTaylor Simpson         break;
6238b453a2bSTaylor Simpson     default:
6248b453a2bSTaylor Simpson         g_assert_not_reached();
6258b453a2bSTaylor Simpson     }
6268b453a2bSTaylor Simpson }
6278b453a2bSTaylor Simpson 
6288b453a2bSTaylor Simpson static void hexagon_tr_disas_log(const DisasContextBase *dcbase, CPUState *cpu)
6298b453a2bSTaylor Simpson {
6308b453a2bSTaylor Simpson     qemu_log("IN: %s\n", lookup_symbol(dcbase->pc_first));
6318b453a2bSTaylor Simpson     log_target_disas(cpu, dcbase->pc_first, dcbase->tb->size);
6328b453a2bSTaylor Simpson }
6338b453a2bSTaylor Simpson 
6348b453a2bSTaylor Simpson 
6358b453a2bSTaylor Simpson static const TranslatorOps hexagon_tr_ops = {
6368b453a2bSTaylor Simpson     .init_disas_context = hexagon_tr_init_disas_context,
6378b453a2bSTaylor Simpson     .tb_start           = hexagon_tr_tb_start,
6388b453a2bSTaylor Simpson     .insn_start         = hexagon_tr_insn_start,
6398b453a2bSTaylor Simpson     .translate_insn     = hexagon_tr_translate_packet,
6408b453a2bSTaylor Simpson     .tb_stop            = hexagon_tr_tb_stop,
6418b453a2bSTaylor Simpson     .disas_log          = hexagon_tr_disas_log,
6428b453a2bSTaylor Simpson };
6438b453a2bSTaylor Simpson 
6448b453a2bSTaylor Simpson void gen_intermediate_code(CPUState *cs, TranslationBlock *tb, int max_insns)
6458b453a2bSTaylor Simpson {
6468b453a2bSTaylor Simpson     DisasContext ctx;
6478b453a2bSTaylor Simpson 
6488b453a2bSTaylor Simpson     translator_loop(&hexagon_tr_ops, &ctx.base, cs, tb, max_insns);
6498b453a2bSTaylor Simpson }
6508b453a2bSTaylor Simpson 
6518b453a2bSTaylor Simpson #define NAME_LEN               64
6528b453a2bSTaylor Simpson static char new_value_names[TOTAL_PER_THREAD_REGS][NAME_LEN];
6538b453a2bSTaylor Simpson static char reg_written_names[TOTAL_PER_THREAD_REGS][NAME_LEN];
6548b453a2bSTaylor Simpson static char new_pred_value_names[NUM_PREGS][NAME_LEN];
6558b453a2bSTaylor Simpson static char store_addr_names[STORES_MAX][NAME_LEN];
6568b453a2bSTaylor Simpson static char store_width_names[STORES_MAX][NAME_LEN];
6578b453a2bSTaylor Simpson static char store_val32_names[STORES_MAX][NAME_LEN];
6588b453a2bSTaylor Simpson static char store_val64_names[STORES_MAX][NAME_LEN];
6598b453a2bSTaylor Simpson 
6608b453a2bSTaylor Simpson void hexagon_translate_init(void)
6618b453a2bSTaylor Simpson {
6628b453a2bSTaylor Simpson     int i;
6638b453a2bSTaylor Simpson 
6648b453a2bSTaylor Simpson     opcode_init();
6658b453a2bSTaylor Simpson 
66685580a65STaylor Simpson     if (HEX_DEBUG) {
6678b453a2bSTaylor Simpson         if (!qemu_logfile) {
6688b453a2bSTaylor Simpson             qemu_set_log(qemu_loglevel);
6698b453a2bSTaylor Simpson         }
67085580a65STaylor Simpson     }
6718b453a2bSTaylor Simpson 
6728b453a2bSTaylor Simpson     for (i = 0; i < TOTAL_PER_THREAD_REGS; i++) {
6738b453a2bSTaylor Simpson         hex_gpr[i] = tcg_global_mem_new(cpu_env,
6748b453a2bSTaylor Simpson             offsetof(CPUHexagonState, gpr[i]),
6758b453a2bSTaylor Simpson             hexagon_regnames[i]);
6768b453a2bSTaylor Simpson 
6778b453a2bSTaylor Simpson         snprintf(new_value_names[i], NAME_LEN, "new_%s", hexagon_regnames[i]);
6788b453a2bSTaylor Simpson         hex_new_value[i] = tcg_global_mem_new(cpu_env,
6798b453a2bSTaylor Simpson             offsetof(CPUHexagonState, new_value[i]),
6808b453a2bSTaylor Simpson             new_value_names[i]);
6818b453a2bSTaylor Simpson 
68285580a65STaylor Simpson         if (HEX_DEBUG) {
6838b453a2bSTaylor Simpson             snprintf(reg_written_names[i], NAME_LEN, "reg_written_%s",
6848b453a2bSTaylor Simpson                      hexagon_regnames[i]);
6858b453a2bSTaylor Simpson             hex_reg_written[i] = tcg_global_mem_new(cpu_env,
6868b453a2bSTaylor Simpson                 offsetof(CPUHexagonState, reg_written[i]),
6878b453a2bSTaylor Simpson                 reg_written_names[i]);
68885580a65STaylor Simpson         }
6898b453a2bSTaylor Simpson     }
6908b453a2bSTaylor Simpson     for (i = 0; i < NUM_PREGS; i++) {
6918b453a2bSTaylor Simpson         hex_pred[i] = tcg_global_mem_new(cpu_env,
6928b453a2bSTaylor Simpson             offsetof(CPUHexagonState, pred[i]),
6938b453a2bSTaylor Simpson             hexagon_prednames[i]);
6948b453a2bSTaylor Simpson 
6958b453a2bSTaylor Simpson         snprintf(new_pred_value_names[i], NAME_LEN, "new_pred_%s",
6968b453a2bSTaylor Simpson                  hexagon_prednames[i]);
6978b453a2bSTaylor Simpson         hex_new_pred_value[i] = tcg_global_mem_new(cpu_env,
6988b453a2bSTaylor Simpson             offsetof(CPUHexagonState, new_pred_value[i]),
6998b453a2bSTaylor Simpson             new_pred_value_names[i]);
7008b453a2bSTaylor Simpson     }
7018b453a2bSTaylor Simpson     hex_pred_written = tcg_global_mem_new(cpu_env,
7028b453a2bSTaylor Simpson         offsetof(CPUHexagonState, pred_written), "pred_written");
7038b453a2bSTaylor Simpson     hex_next_PC = tcg_global_mem_new(cpu_env,
7048b453a2bSTaylor Simpson         offsetof(CPUHexagonState, next_PC), "next_PC");
7058b453a2bSTaylor Simpson     hex_this_PC = tcg_global_mem_new(cpu_env,
7068b453a2bSTaylor Simpson         offsetof(CPUHexagonState, this_PC), "this_PC");
7078b453a2bSTaylor Simpson     hex_slot_cancelled = tcg_global_mem_new(cpu_env,
7088b453a2bSTaylor Simpson         offsetof(CPUHexagonState, slot_cancelled), "slot_cancelled");
7098b453a2bSTaylor Simpson     hex_branch_taken = tcg_global_mem_new(cpu_env,
7108b453a2bSTaylor Simpson         offsetof(CPUHexagonState, branch_taken), "branch_taken");
7118b453a2bSTaylor Simpson     hex_pkt_has_store_s1 = tcg_global_mem_new(cpu_env,
7128b453a2bSTaylor Simpson         offsetof(CPUHexagonState, pkt_has_store_s1), "pkt_has_store_s1");
7138b453a2bSTaylor Simpson     hex_dczero_addr = tcg_global_mem_new(cpu_env,
7148b453a2bSTaylor Simpson         offsetof(CPUHexagonState, dczero_addr), "dczero_addr");
7158b453a2bSTaylor Simpson     hex_llsc_addr = tcg_global_mem_new(cpu_env,
7168b453a2bSTaylor Simpson         offsetof(CPUHexagonState, llsc_addr), "llsc_addr");
7178b453a2bSTaylor Simpson     hex_llsc_val = tcg_global_mem_new(cpu_env,
7188b453a2bSTaylor Simpson         offsetof(CPUHexagonState, llsc_val), "llsc_val");
7198b453a2bSTaylor Simpson     hex_llsc_val_i64 = tcg_global_mem_new_i64(cpu_env,
7208b453a2bSTaylor Simpson         offsetof(CPUHexagonState, llsc_val_i64), "llsc_val_i64");
7218b453a2bSTaylor Simpson     for (i = 0; i < STORES_MAX; i++) {
7228b453a2bSTaylor Simpson         snprintf(store_addr_names[i], NAME_LEN, "store_addr_%d", i);
7238b453a2bSTaylor Simpson         hex_store_addr[i] = tcg_global_mem_new(cpu_env,
7248b453a2bSTaylor Simpson             offsetof(CPUHexagonState, mem_log_stores[i].va),
7258b453a2bSTaylor Simpson             store_addr_names[i]);
7268b453a2bSTaylor Simpson 
7278b453a2bSTaylor Simpson         snprintf(store_width_names[i], NAME_LEN, "store_width_%d", i);
7288b453a2bSTaylor Simpson         hex_store_width[i] = tcg_global_mem_new(cpu_env,
7298b453a2bSTaylor Simpson             offsetof(CPUHexagonState, mem_log_stores[i].width),
7308b453a2bSTaylor Simpson             store_width_names[i]);
7318b453a2bSTaylor Simpson 
7328b453a2bSTaylor Simpson         snprintf(store_val32_names[i], NAME_LEN, "store_val32_%d", i);
7338b453a2bSTaylor Simpson         hex_store_val32[i] = tcg_global_mem_new(cpu_env,
7348b453a2bSTaylor Simpson             offsetof(CPUHexagonState, mem_log_stores[i].data32),
7358b453a2bSTaylor Simpson             store_val32_names[i]);
7368b453a2bSTaylor Simpson 
7378b453a2bSTaylor Simpson         snprintf(store_val64_names[i], NAME_LEN, "store_val64_%d", i);
7388b453a2bSTaylor Simpson         hex_store_val64[i] = tcg_global_mem_new_i64(cpu_env,
7398b453a2bSTaylor Simpson             offsetof(CPUHexagonState, mem_log_stores[i].data64),
7408b453a2bSTaylor Simpson             store_val64_names[i]);
7418b453a2bSTaylor Simpson     }
7428b453a2bSTaylor Simpson }
743