2 * Copyright(c) 2019-2021 Qualcomm Innovation Center, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
21 #include "tcg/tcg-op.h"
22 #include "exec/cpu_ldst.h"
28 #include "translate.h"
29 #include "printinsn.h"
31 TCGv hex_gpr
[TOTAL_PER_THREAD_REGS
];
32 TCGv hex_pred
[NUM_PREGS
];
35 TCGv hex_slot_cancelled
;
36 TCGv hex_branch_taken
;
37 TCGv hex_new_value
[TOTAL_PER_THREAD_REGS
];
38 TCGv hex_reg_written
[TOTAL_PER_THREAD_REGS
];
39 TCGv hex_new_pred_value
[NUM_PREGS
];
40 TCGv hex_pred_written
;
41 TCGv hex_store_addr
[STORES_MAX
];
42 TCGv hex_store_width
[STORES_MAX
];
43 TCGv hex_store_val32
[STORES_MAX
];
44 TCGv_i64 hex_store_val64
[STORES_MAX
];
45 TCGv hex_pkt_has_store_s1
;
49 TCGv_i64 hex_llsc_val_i64
;
51 static const char * const hexagon_prednames
[] = {
52 "p0", "p1", "p2", "p3"
55 static void gen_exception_raw(int excp
)
57 TCGv_i32 helper_tmp
= tcg_const_i32(excp
);
58 gen_helper_raise_exception(cpu_env
, helper_tmp
);
59 tcg_temp_free_i32(helper_tmp
);
62 static void gen_exec_counters(DisasContext
*ctx
)
64 tcg_gen_addi_tl(hex_gpr
[HEX_REG_QEMU_PKT_CNT
],
65 hex_gpr
[HEX_REG_QEMU_PKT_CNT
], ctx
->num_packets
);
66 tcg_gen_addi_tl(hex_gpr
[HEX_REG_QEMU_INSN_CNT
],
67 hex_gpr
[HEX_REG_QEMU_INSN_CNT
], ctx
->num_insns
);
70 static void gen_end_tb(DisasContext
*ctx
)
72 gen_exec_counters(ctx
);
73 tcg_gen_mov_tl(hex_gpr
[HEX_REG_PC
], hex_next_PC
);
74 if (ctx
->base
.singlestep_enabled
) {
75 gen_exception_raw(EXCP_DEBUG
);
77 tcg_gen_exit_tb(NULL
, 0);
79 ctx
->base
.is_jmp
= DISAS_NORETURN
;
82 static void gen_exception_end_tb(DisasContext
*ctx
, int excp
)
84 gen_exec_counters(ctx
);
85 tcg_gen_mov_tl(hex_gpr
[HEX_REG_PC
], hex_next_PC
);
86 gen_exception_raw(excp
);
87 ctx
->base
.is_jmp
= DISAS_NORETURN
;
91 #define PACKET_BUFFER_LEN 1028
92 static void print_pkt(Packet
*pkt
)
94 GString
*buf
= g_string_sized_new(PACKET_BUFFER_LEN
);
95 snprint_a_pkt_debug(buf
, pkt
);
96 HEX_DEBUG_LOG("%s", buf
->str
);
97 g_string_free(buf
, true);
99 #define HEX_DEBUG_PRINT_PKT(pkt) \
106 static int read_packet_words(CPUHexagonState
*env
, DisasContext
*ctx
,
109 bool found_end
= false;
110 int nwords
, max_words
;
112 memset(words
, 0, PACKET_WORDS_MAX
* sizeof(uint32_t));
113 for (nwords
= 0; !found_end
&& nwords
< PACKET_WORDS_MAX
; nwords
++) {
115 translator_ldl(env
, ctx
->base
.pc_next
+ nwords
* sizeof(uint32_t));
116 found_end
= is_packet_end(words
[nwords
]);
119 /* Read too many words without finding the end */
123 /* Check for page boundary crossing */
124 max_words
= -(ctx
->base
.pc_next
| TARGET_PAGE_MASK
) / sizeof(uint32_t);
125 if (nwords
> max_words
) {
126 /* We can only cross a page boundary at the beginning of a TB */
127 g_assert(ctx
->base
.num_insns
== 1);
130 HEX_DEBUG_LOG("decode_packet: pc = 0x%x\n", ctx
->base
.pc_next
);
131 HEX_DEBUG_LOG(" words = { ");
132 for (int i
= 0; i
< nwords
; i
++) {
133 HEX_DEBUG_LOG("0x%x, ", words
[i
]);
135 HEX_DEBUG_LOG("}\n");
140 static bool check_for_attrib(Packet
*pkt
, int attrib
)
142 for (int i
= 0; i
< pkt
->num_insns
; i
++) {
143 if (GET_ATTRIB(pkt
->insn
[i
].opcode
, attrib
)) {
150 static bool need_pc(Packet
*pkt
)
152 return check_for_attrib(pkt
, A_IMPLICIT_READS_PC
);
155 static bool need_slot_cancelled(Packet
*pkt
)
157 return check_for_attrib(pkt
, A_CONDEXEC
);
160 static bool need_pred_written(Packet
*pkt
)
162 return check_for_attrib(pkt
, A_WRITES_PRED_REG
);
165 static void gen_start_packet(DisasContext
*ctx
, Packet
*pkt
)
167 target_ulong next_PC
= ctx
->base
.pc_next
+ pkt
->encod_pkt_size_in_bytes
;
170 /* Clear out the disassembly context */
171 ctx
->reg_log_idx
= 0;
172 bitmap_zero(ctx
->regs_written
, TOTAL_PER_THREAD_REGS
);
173 ctx
->preg_log_idx
= 0;
174 bitmap_zero(ctx
->pregs_written
, NUM_PREGS
);
175 for (i
= 0; i
< STORES_MAX
; i
++) {
176 ctx
->store_width
[i
] = 0;
178 tcg_gen_movi_tl(hex_pkt_has_store_s1
, pkt
->pkt_has_store_s1
);
179 ctx
->s1_store_processed
= false;
182 /* Handy place to set a breakpoint before the packet executes */
183 gen_helper_debug_start_packet(cpu_env
);
184 tcg_gen_movi_tl(hex_this_PC
, ctx
->base
.pc_next
);
187 /* Initialize the runtime state for packet semantics */
189 tcg_gen_movi_tl(hex_gpr
[HEX_REG_PC
], ctx
->base
.pc_next
);
191 if (need_slot_cancelled(pkt
)) {
192 tcg_gen_movi_tl(hex_slot_cancelled
, 0);
194 if (pkt
->pkt_has_cof
) {
195 tcg_gen_movi_tl(hex_branch_taken
, 0);
196 tcg_gen_movi_tl(hex_next_PC
, next_PC
);
198 if (need_pred_written(pkt
)) {
199 tcg_gen_movi_tl(hex_pred_written
, 0);
204 * The LOG_*_WRITE macros mark most of the writes in a packet
205 * However, there are some implicit writes marked as attributes
206 * of the applicable instructions.
208 static void mark_implicit_reg_write(DisasContext
*ctx
, Insn
*insn
,
209 int attrib
, int rnum
)
211 if (GET_ATTRIB(insn
->opcode
, attrib
)) {
212 bool is_predicated
= GET_ATTRIB(insn
->opcode
, A_CONDEXEC
);
213 if (is_predicated
&& !is_preloaded(ctx
, rnum
)) {
214 tcg_gen_mov_tl(hex_new_value
[rnum
], hex_gpr
[rnum
]);
217 ctx_log_reg_write(ctx
, rnum
);
221 static void mark_implicit_pred_write(DisasContext
*ctx
, Insn
*insn
,
222 int attrib
, int pnum
)
224 if (GET_ATTRIB(insn
->opcode
, attrib
)) {
225 ctx_log_pred_write(ctx
, pnum
);
229 static void mark_implicit_reg_writes(DisasContext
*ctx
, Insn
*insn
)
231 mark_implicit_reg_write(ctx
, insn
, A_IMPLICIT_WRITES_FP
, HEX_REG_FP
);
232 mark_implicit_reg_write(ctx
, insn
, A_IMPLICIT_WRITES_SP
, HEX_REG_SP
);
233 mark_implicit_reg_write(ctx
, insn
, A_IMPLICIT_WRITES_LR
, HEX_REG_LR
);
234 mark_implicit_reg_write(ctx
, insn
, A_IMPLICIT_WRITES_LC0
, HEX_REG_LC0
);
235 mark_implicit_reg_write(ctx
, insn
, A_IMPLICIT_WRITES_SA0
, HEX_REG_SA0
);
236 mark_implicit_reg_write(ctx
, insn
, A_IMPLICIT_WRITES_LC1
, HEX_REG_LC1
);
237 mark_implicit_reg_write(ctx
, insn
, A_IMPLICIT_WRITES_SA1
, HEX_REG_SA1
);
240 static void mark_implicit_pred_writes(DisasContext
*ctx
, Insn
*insn
)
242 mark_implicit_pred_write(ctx
, insn
, A_IMPLICIT_WRITES_P0
, 0);
243 mark_implicit_pred_write(ctx
, insn
, A_IMPLICIT_WRITES_P1
, 1);
244 mark_implicit_pred_write(ctx
, insn
, A_IMPLICIT_WRITES_P2
, 2);
245 mark_implicit_pred_write(ctx
, insn
, A_IMPLICIT_WRITES_P3
, 3);
248 static void gen_insn(CPUHexagonState
*env
, DisasContext
*ctx
,
249 Insn
*insn
, Packet
*pkt
)
251 if (insn
->generate
) {
252 mark_implicit_reg_writes(ctx
, insn
);
253 insn
->generate(env
, ctx
, insn
, pkt
);
254 mark_implicit_pred_writes(ctx
, insn
);
256 gen_exception_end_tb(ctx
, HEX_EXCP_INVALID_OPCODE
);
261 * Helpers for generating the packet commit
263 static void gen_reg_writes(DisasContext
*ctx
)
267 for (i
= 0; i
< ctx
->reg_log_idx
; i
++) {
268 int reg_num
= ctx
->reg_log
[i
];
270 tcg_gen_mov_tl(hex_gpr
[reg_num
], hex_new_value
[reg_num
]);
274 static void gen_pred_writes(DisasContext
*ctx
, Packet
*pkt
)
278 /* Early exit if the log is empty */
279 if (!ctx
->preg_log_idx
) {
284 * Only endloop instructions will conditionally
285 * write a predicate. If there are no endloop
286 * instructions, we can use the non-conditional
287 * write of the predicates.
289 if (pkt
->pkt_has_endloop
) {
290 TCGv zero
= tcg_const_tl(0);
291 TCGv pred_written
= tcg_temp_new();
292 for (i
= 0; i
< ctx
->preg_log_idx
; i
++) {
293 int pred_num
= ctx
->preg_log
[i
];
295 tcg_gen_andi_tl(pred_written
, hex_pred_written
, 1 << pred_num
);
296 tcg_gen_movcond_tl(TCG_COND_NE
, hex_pred
[pred_num
],
298 hex_new_pred_value
[pred_num
],
302 tcg_temp_free(pred_written
);
304 for (i
= 0; i
< ctx
->preg_log_idx
; i
++) {
305 int pred_num
= ctx
->preg_log
[i
];
306 tcg_gen_mov_tl(hex_pred
[pred_num
], hex_new_pred_value
[pred_num
]);
308 /* Do this so HELPER(debug_commit_end) will know */
309 tcg_gen_ori_tl(hex_pred_written
, hex_pred_written
,
316 static void gen_check_store_width(DisasContext
*ctx
, int slot_num
)
319 TCGv slot
= tcg_const_tl(slot_num
);
320 TCGv check
= tcg_const_tl(ctx
->store_width
[slot_num
]);
321 gen_helper_debug_check_store_width(cpu_env
, slot
, check
);
323 tcg_temp_free(check
);
327 static bool slot_is_predicated(Packet
*pkt
, int slot_num
)
329 for (int i
= 0; i
< pkt
->num_insns
; i
++) {
330 if (pkt
->insn
[i
].slot
== slot_num
) {
331 return GET_ATTRIB(pkt
->insn
[i
].opcode
, A_CONDEXEC
);
334 /* If we get to here, we didn't find an instruction in the requested slot */
335 g_assert_not_reached();
338 void process_store(DisasContext
*ctx
, Packet
*pkt
, int slot_num
)
340 bool is_predicated
= slot_is_predicated(pkt
, slot_num
);
341 TCGLabel
*label_end
= NULL
;
344 * We may have already processed this store
345 * See CHECK_NOSHUF in macros.h
347 if (slot_num
== 1 && ctx
->s1_store_processed
) {
350 ctx
->s1_store_processed
= true;
353 TCGv cancelled
= tcg_temp_new();
354 label_end
= gen_new_label();
356 /* Don't do anything if the slot was cancelled */
357 tcg_gen_extract_tl(cancelled
, hex_slot_cancelled
, slot_num
, 1);
358 tcg_gen_brcondi_tl(TCG_COND_NE
, cancelled
, 0, label_end
);
359 tcg_temp_free(cancelled
);
362 TCGv address
= tcg_temp_local_new();
363 tcg_gen_mov_tl(address
, hex_store_addr
[slot_num
]);
366 * If we know the width from the DisasContext, we can
367 * generate much cleaner code.
368 * Unfortunately, not all instructions execute the fSTORE
369 * macro during code generation. Anything that uses the
370 * generic helper will have this problem. Instructions
371 * that use fWRAP to generate proper TCG code will be OK.
373 switch (ctx
->store_width
[slot_num
]) {
375 gen_check_store_width(ctx
, slot_num
);
376 tcg_gen_qemu_st8(hex_store_val32
[slot_num
],
377 hex_store_addr
[slot_num
],
381 gen_check_store_width(ctx
, slot_num
);
382 tcg_gen_qemu_st16(hex_store_val32
[slot_num
],
383 hex_store_addr
[slot_num
],
387 gen_check_store_width(ctx
, slot_num
);
388 tcg_gen_qemu_st32(hex_store_val32
[slot_num
],
389 hex_store_addr
[slot_num
],
393 gen_check_store_width(ctx
, slot_num
);
394 tcg_gen_qemu_st64(hex_store_val64
[slot_num
],
395 hex_store_addr
[slot_num
],
401 * If we get to here, we don't know the width at
402 * TCG generation time, we'll use a helper to
403 * avoid branching based on the width at runtime.
405 TCGv slot
= tcg_const_tl(slot_num
);
406 gen_helper_commit_store(cpu_env
, slot
);
410 tcg_temp_free(address
);
413 gen_set_label(label_end
);
417 static void process_store_log(DisasContext
*ctx
, Packet
*pkt
)
420 * When a packet has two stores, the hardware processes
421 * slot 1 and then slot 2. This will be important when
422 * the memory accesses overlap.
424 if (pkt
->pkt_has_store_s1
&& !pkt
->pkt_has_dczeroa
) {
425 process_store(ctx
, pkt
, 1);
427 if (pkt
->pkt_has_store_s0
&& !pkt
->pkt_has_dczeroa
) {
428 process_store(ctx
, pkt
, 0);
432 /* Zero out a 32-bit cache line */
433 static void process_dczeroa(DisasContext
*ctx
, Packet
*pkt
)
435 if (pkt
->pkt_has_dczeroa
) {
436 /* Store 32 bytes of zero starting at (addr & ~0x1f) */
437 TCGv addr
= tcg_temp_new();
438 TCGv_i64 zero
= tcg_const_i64(0);
440 tcg_gen_andi_tl(addr
, hex_dczero_addr
, ~0x1f);
441 tcg_gen_qemu_st64(zero
, addr
, ctx
->mem_idx
);
442 tcg_gen_addi_tl(addr
, addr
, 8);
443 tcg_gen_qemu_st64(zero
, addr
, ctx
->mem_idx
);
444 tcg_gen_addi_tl(addr
, addr
, 8);
445 tcg_gen_qemu_st64(zero
, addr
, ctx
->mem_idx
);
446 tcg_gen_addi_tl(addr
, addr
, 8);
447 tcg_gen_qemu_st64(zero
, addr
, ctx
->mem_idx
);
450 tcg_temp_free_i64(zero
);
454 static void update_exec_counters(DisasContext
*ctx
, Packet
*pkt
)
456 int num_insns
= pkt
->num_insns
;
457 int num_real_insns
= 0;
459 for (int i
= 0; i
< num_insns
; i
++) {
460 if (!pkt
->insn
[i
].is_endloop
&&
461 !pkt
->insn
[i
].part1
&&
462 !GET_ATTRIB(pkt
->insn
[i
].opcode
, A_IT_NOP
)) {
468 ctx
->num_insns
+= num_real_insns
;
471 static void gen_commit_packet(DisasContext
*ctx
, Packet
*pkt
)
474 gen_pred_writes(ctx
, pkt
);
475 process_store_log(ctx
, pkt
);
476 process_dczeroa(ctx
, pkt
);
477 update_exec_counters(ctx
, pkt
);
480 tcg_const_tl(pkt
->pkt_has_store_s0
&& !pkt
->pkt_has_dczeroa
);
482 tcg_const_tl(pkt
->pkt_has_store_s1
&& !pkt
->pkt_has_dczeroa
);
484 /* Handy place to set a breakpoint at the end of execution */
485 gen_helper_debug_commit_end(cpu_env
, has_st0
, has_st1
);
487 tcg_temp_free(has_st0
);
488 tcg_temp_free(has_st1
);
491 if (pkt
->pkt_has_cof
) {
496 static void decode_and_translate_packet(CPUHexagonState
*env
, DisasContext
*ctx
)
498 uint32_t words
[PACKET_WORDS_MAX
];
503 nwords
= read_packet_words(env
, ctx
, words
);
505 gen_exception_end_tb(ctx
, HEX_EXCP_INVALID_PACKET
);
509 if (decode_packet(nwords
, words
, &pkt
, false) > 0) {
510 HEX_DEBUG_PRINT_PKT(&pkt
);
511 gen_start_packet(ctx
, &pkt
);
512 for (i
= 0; i
< pkt
.num_insns
; i
++) {
513 gen_insn(env
, ctx
, &pkt
.insn
[i
], &pkt
);
515 gen_commit_packet(ctx
, &pkt
);
516 ctx
->base
.pc_next
+= pkt
.encod_pkt_size_in_bytes
;
518 gen_exception_end_tb(ctx
, HEX_EXCP_INVALID_PACKET
);
522 static void hexagon_tr_init_disas_context(DisasContextBase
*dcbase
,
525 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
527 ctx
->mem_idx
= MMU_USER_IDX
;
528 ctx
->num_packets
= 0;
532 static void hexagon_tr_tb_start(DisasContextBase
*db
, CPUState
*cpu
)
536 static void hexagon_tr_insn_start(DisasContextBase
*dcbase
, CPUState
*cpu
)
538 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
540 tcg_gen_insn_start(ctx
->base
.pc_next
);
543 static bool pkt_crosses_page(CPUHexagonState
*env
, DisasContext
*ctx
)
545 target_ulong page_start
= ctx
->base
.pc_first
& TARGET_PAGE_MASK
;
546 bool found_end
= false;
549 for (nwords
= 0; !found_end
&& nwords
< PACKET_WORDS_MAX
; nwords
++) {
550 uint32_t word
= cpu_ldl_code(env
,
551 ctx
->base
.pc_next
+ nwords
* sizeof(uint32_t));
552 found_end
= is_packet_end(word
);
554 uint32_t next_ptr
= ctx
->base
.pc_next
+ nwords
* sizeof(uint32_t);
555 return found_end
&& next_ptr
- page_start
>= TARGET_PAGE_SIZE
;
558 static void hexagon_tr_translate_packet(DisasContextBase
*dcbase
, CPUState
*cpu
)
560 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
561 CPUHexagonState
*env
= cpu
->env_ptr
;
563 decode_and_translate_packet(env
, ctx
);
565 if (ctx
->base
.is_jmp
== DISAS_NEXT
) {
566 target_ulong page_start
= ctx
->base
.pc_first
& TARGET_PAGE_MASK
;
567 target_ulong bytes_max
= PACKET_WORDS_MAX
* sizeof(target_ulong
);
569 if (ctx
->base
.pc_next
- page_start
>= TARGET_PAGE_SIZE
||
570 (ctx
->base
.pc_next
- page_start
>= TARGET_PAGE_SIZE
- bytes_max
&&
571 pkt_crosses_page(env
, ctx
))) {
572 ctx
->base
.is_jmp
= DISAS_TOO_MANY
;
576 * The CPU log is used to compare against LLDB single stepping,
577 * so end the TLB after every packet.
579 HexagonCPU
*hex_cpu
= env_archcpu(env
);
580 if (hex_cpu
->lldb_compat
&& qemu_loglevel_mask(CPU_LOG_TB_CPU
)) {
581 ctx
->base
.is_jmp
= DISAS_TOO_MANY
;
586 static void hexagon_tr_tb_stop(DisasContextBase
*dcbase
, CPUState
*cpu
)
588 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
590 switch (ctx
->base
.is_jmp
) {
592 gen_exec_counters(ctx
);
593 tcg_gen_movi_tl(hex_gpr
[HEX_REG_PC
], ctx
->base
.pc_next
);
594 if (ctx
->base
.singlestep_enabled
) {
595 gen_exception_raw(EXCP_DEBUG
);
597 tcg_gen_exit_tb(NULL
, 0);
603 g_assert_not_reached();
607 static void hexagon_tr_disas_log(const DisasContextBase
*dcbase
, CPUState
*cpu
)
609 qemu_log("IN: %s\n", lookup_symbol(dcbase
->pc_first
));
610 log_target_disas(cpu
, dcbase
->pc_first
, dcbase
->tb
->size
);
614 static const TranslatorOps hexagon_tr_ops
= {
615 .init_disas_context
= hexagon_tr_init_disas_context
,
616 .tb_start
= hexagon_tr_tb_start
,
617 .insn_start
= hexagon_tr_insn_start
,
618 .translate_insn
= hexagon_tr_translate_packet
,
619 .tb_stop
= hexagon_tr_tb_stop
,
620 .disas_log
= hexagon_tr_disas_log
,
623 void gen_intermediate_code(CPUState
*cs
, TranslationBlock
*tb
, int max_insns
)
627 translator_loop(&hexagon_tr_ops
, &ctx
.base
, cs
, tb
, max_insns
);
631 static char new_value_names
[TOTAL_PER_THREAD_REGS
][NAME_LEN
];
632 static char reg_written_names
[TOTAL_PER_THREAD_REGS
][NAME_LEN
];
633 static char new_pred_value_names
[NUM_PREGS
][NAME_LEN
];
634 static char store_addr_names
[STORES_MAX
][NAME_LEN
];
635 static char store_width_names
[STORES_MAX
][NAME_LEN
];
636 static char store_val32_names
[STORES_MAX
][NAME_LEN
];
637 static char store_val64_names
[STORES_MAX
][NAME_LEN
];
639 void hexagon_translate_init(void)
647 qemu_set_log(qemu_loglevel
);
651 for (i
= 0; i
< TOTAL_PER_THREAD_REGS
; i
++) {
652 hex_gpr
[i
] = tcg_global_mem_new(cpu_env
,
653 offsetof(CPUHexagonState
, gpr
[i
]),
654 hexagon_regnames
[i
]);
656 snprintf(new_value_names
[i
], NAME_LEN
, "new_%s", hexagon_regnames
[i
]);
657 hex_new_value
[i
] = tcg_global_mem_new(cpu_env
,
658 offsetof(CPUHexagonState
, new_value
[i
]),
662 snprintf(reg_written_names
[i
], NAME_LEN
, "reg_written_%s",
663 hexagon_regnames
[i
]);
664 hex_reg_written
[i
] = tcg_global_mem_new(cpu_env
,
665 offsetof(CPUHexagonState
, reg_written
[i
]),
666 reg_written_names
[i
]);
669 for (i
= 0; i
< NUM_PREGS
; i
++) {
670 hex_pred
[i
] = tcg_global_mem_new(cpu_env
,
671 offsetof(CPUHexagonState
, pred
[i
]),
672 hexagon_prednames
[i
]);
674 snprintf(new_pred_value_names
[i
], NAME_LEN
, "new_pred_%s",
675 hexagon_prednames
[i
]);
676 hex_new_pred_value
[i
] = tcg_global_mem_new(cpu_env
,
677 offsetof(CPUHexagonState
, new_pred_value
[i
]),
678 new_pred_value_names
[i
]);
680 hex_pred_written
= tcg_global_mem_new(cpu_env
,
681 offsetof(CPUHexagonState
, pred_written
), "pred_written");
682 hex_next_PC
= tcg_global_mem_new(cpu_env
,
683 offsetof(CPUHexagonState
, next_PC
), "next_PC");
684 hex_this_PC
= tcg_global_mem_new(cpu_env
,
685 offsetof(CPUHexagonState
, this_PC
), "this_PC");
686 hex_slot_cancelled
= tcg_global_mem_new(cpu_env
,
687 offsetof(CPUHexagonState
, slot_cancelled
), "slot_cancelled");
688 hex_branch_taken
= tcg_global_mem_new(cpu_env
,
689 offsetof(CPUHexagonState
, branch_taken
), "branch_taken");
690 hex_pkt_has_store_s1
= tcg_global_mem_new(cpu_env
,
691 offsetof(CPUHexagonState
, pkt_has_store_s1
), "pkt_has_store_s1");
692 hex_dczero_addr
= tcg_global_mem_new(cpu_env
,
693 offsetof(CPUHexagonState
, dczero_addr
), "dczero_addr");
694 hex_llsc_addr
= tcg_global_mem_new(cpu_env
,
695 offsetof(CPUHexagonState
, llsc_addr
), "llsc_addr");
696 hex_llsc_val
= tcg_global_mem_new(cpu_env
,
697 offsetof(CPUHexagonState
, llsc_val
), "llsc_val");
698 hex_llsc_val_i64
= tcg_global_mem_new_i64(cpu_env
,
699 offsetof(CPUHexagonState
, llsc_val_i64
), "llsc_val_i64");
700 for (i
= 0; i
< STORES_MAX
; i
++) {
701 snprintf(store_addr_names
[i
], NAME_LEN
, "store_addr_%d", i
);
702 hex_store_addr
[i
] = tcg_global_mem_new(cpu_env
,
703 offsetof(CPUHexagonState
, mem_log_stores
[i
].va
),
704 store_addr_names
[i
]);
706 snprintf(store_width_names
[i
], NAME_LEN
, "store_width_%d", i
);
707 hex_store_width
[i
] = tcg_global_mem_new(cpu_env
,
708 offsetof(CPUHexagonState
, mem_log_stores
[i
].width
),
709 store_width_names
[i
]);
711 snprintf(store_val32_names
[i
], NAME_LEN
, "store_val32_%d", i
);
712 hex_store_val32
[i
] = tcg_global_mem_new(cpu_env
,
713 offsetof(CPUHexagonState
, mem_log_stores
[i
].data32
),
714 store_val32_names
[i
]);
716 snprintf(store_val64_names
[i
], NAME_LEN
, "store_val64_%d", i
);
717 hex_store_val64
[i
] = tcg_global_mem_new_i64(cpu_env
,
718 offsetof(CPUHexagonState
, mem_log_stores
[i
].data64
),
719 store_val64_names
[i
]);