2 * Generic intermediate code generation.
4 * Copyright (C) 2016-2017 LluĂs Vilanova <vilanova@ac.upc.edu>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
10 #include "qemu/osdep.h"
11 #include "qemu/error-report.h"
14 #include "tcg/tcg-op.h"
15 #include "exec/exec-all.h"
16 #include "exec/gen-icount.h"
18 #include "exec/translator.h"
19 #include "exec/plugin-gen.h"
20 #include "sysemu/replay.h"
22 /* Pairs with tcg_clear_temp_count.
23 To be called by #TranslatorOps.{translate_insn,tb_stop} if
24 (1) the target is sufficiently clean to support reporting,
25 (2) as and when all temporaries are known to be consumed.
26 For most targets, (2) is at the end of translate_insn. */
27 void translator_loop_temp_check(DisasContextBase
*db
)
29 if (tcg_check_temp_count()) {
30 qemu_log("warning: TCG temporary leaks before "
31 TARGET_FMT_lx
"\n", db
->pc_next
);
35 void translator_loop(const TranslatorOps
*ops
, DisasContextBase
*db
,
36 CPUState
*cpu
, TranslationBlock
*tb
, int max_insns
)
41 /* Initialize DisasContext */
43 db
->pc_first
= tb
->pc
;
44 db
->pc_next
= db
->pc_first
;
45 db
->is_jmp
= DISAS_NEXT
;
47 db
->max_insns
= max_insns
;
48 db
->singlestep_enabled
= cpu
->singlestep_enabled
;
50 ops
->init_disas_context(db
, cpu
);
51 tcg_debug_assert(db
->is_jmp
== DISAS_NEXT
); /* no early exit */
53 /* Reset the temp count so that we can identify leaks */
54 tcg_clear_temp_count();
56 /* Start translating. */
58 ops
->tb_start(db
, cpu
);
59 tcg_debug_assert(db
->is_jmp
== DISAS_NEXT
); /* no early exit */
61 plugin_enabled
= plugin_gen_tb_start(cpu
, tb
);
65 ops
->insn_start(db
, cpu
);
66 tcg_debug_assert(db
->is_jmp
== DISAS_NEXT
); /* no early exit */
69 plugin_gen_insn_start(cpu
, db
);
72 /* Pass breakpoint hits to target for further processing */
73 if (!db
->singlestep_enabled
74 && unlikely(!QTAILQ_EMPTY(&cpu
->breakpoints
))) {
76 QTAILQ_FOREACH(bp
, &cpu
->breakpoints
, entry
) {
77 if (bp
->pc
== db
->pc_next
) {
78 if (ops
->breakpoint_check(db
, cpu
, bp
)) {
84 /* The breakpoint_check hook may use DISAS_TOO_MANY to indicate
85 that only one more instruction is to be executed. Otherwise
86 it should use DISAS_NORETURN when generating an exception,
87 but may use a DISAS_TARGET_* value for Something Else. */
88 if (db
->is_jmp
> DISAS_TOO_MANY
) {
93 /* Disassemble one instruction. The translate_insn hook should
94 update db->pc_next and db->is_jmp to indicate what should be
95 done next -- either exiting this loop or locate the start of
96 the next instruction. */
97 if (db
->num_insns
== db
->max_insns
98 && (tb_cflags(db
->tb
) & CF_LAST_IO
)) {
99 /* Accept I/O on the last instruction. */
101 ops
->translate_insn(db
, cpu
);
103 ops
->translate_insn(db
, cpu
);
106 /* Stop translation if translate_insn so indicated. */
107 if (db
->is_jmp
!= DISAS_NEXT
) {
112 * We can't instrument after instructions that change control
113 * flow although this only really affects post-load operations.
115 if (plugin_enabled
) {
116 plugin_gen_insn_end();
119 /* Stop translation if the output buffer is full,
120 or we have executed all of the allowed instructions. */
121 if (tcg_op_buf_full() || db
->num_insns
>= db
->max_insns
) {
122 db
->is_jmp
= DISAS_TOO_MANY
;
127 /* Emit code to exit the TB, as indicated by db->is_jmp. */
128 ops
->tb_stop(db
, cpu
);
129 gen_tb_end(db
->tb
, db
->num_insns
- bp_insn
);
131 if (plugin_enabled
) {
132 plugin_gen_tb_end(cpu
);
135 /* The disas_log hook may use these values rather than recompute. */
136 db
->tb
->size
= db
->pc_next
- db
->pc_first
;
137 db
->tb
->icount
= db
->num_insns
;
140 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)
141 && qemu_log_in_addr_range(db
->pc_first
)) {
142 FILE *logfile
= qemu_log_lock();
143 qemu_log("----------------\n");
144 ops
->disas_log(db
, cpu
);
146 qemu_log_unlock(logfile
);