acpi: tpm-tis: use AcpiDevAmlIfClass:build_dev_aml to provide device's AML
[qemu.git] / include / exec / gen-icount.h
blobc57204ddad96db706dbbe41881604ae5a3bc03ed
1 #ifndef GEN_ICOUNT_H
2 #define GEN_ICOUNT_H
4 #include "exec/exec-all.h"
5 #include "qemu/timer.h"
7 /* Helpers for instruction counting code generation. */
9 static TCGOp *icount_start_insn;
11 static inline void gen_io_start(void)
13 TCGv_i32 tmp = tcg_const_i32(1);
14 tcg_gen_st_i32(tmp, cpu_env,
15 offsetof(ArchCPU, parent_obj.can_do_io) -
16 offsetof(ArchCPU, env));
17 tcg_temp_free_i32(tmp);
20 static inline void gen_tb_start(const TranslationBlock *tb)
22 TCGv_i32 count;
24 if (tb_cflags(tb) & CF_USE_ICOUNT) {
25 count = tcg_temp_local_new_i32();
26 } else {
27 count = tcg_temp_new_i32();
30 tcg_gen_ld_i32(count, cpu_env,
31 offsetof(ArchCPU, neg.icount_decr.u32) -
32 offsetof(ArchCPU, env));
34 if (tb_cflags(tb) & CF_USE_ICOUNT) {
36 * We emit a sub with a dummy immediate argument. Keep the insn index
37 * of the sub so that we later (when we know the actual insn count)
38 * can update the argument with the actual insn count.
40 tcg_gen_sub_i32(count, count, tcg_constant_i32(0));
41 icount_start_insn = tcg_last_op();
45 * Emit the check against icount_decr.u32 to see if we should exit
46 * unless we suppress the check with CF_NOIRQ. If we are using
47 * icount and have suppressed interruption the higher level code
48 * should have ensured we don't run more instructions than the
49 * budget.
51 if (tb_cflags(tb) & CF_NOIRQ) {
52 tcg_ctx->exitreq_label = NULL;
53 } else {
54 tcg_ctx->exitreq_label = gen_new_label();
55 tcg_gen_brcondi_i32(TCG_COND_LT, count, 0, tcg_ctx->exitreq_label);
58 if (tb_cflags(tb) & CF_USE_ICOUNT) {
59 tcg_gen_st16_i32(count, cpu_env,
60 offsetof(ArchCPU, neg.icount_decr.u16.low) -
61 offsetof(ArchCPU, env));
63 * cpu->can_do_io is cleared automatically here at the beginning of
64 * each translation block. The cost is minimal and only paid for
65 * -icount, plus it would be very easy to forget doing it in the
66 * translator. Doing it here means we don't need a gen_io_end() to
67 * go with gen_io_start().
69 tcg_gen_st_i32(tcg_constant_i32(0), cpu_env,
70 offsetof(ArchCPU, parent_obj.can_do_io) -
71 offsetof(ArchCPU, env));
74 tcg_temp_free_i32(count);
77 static inline void gen_tb_end(const TranslationBlock *tb, int num_insns)
79 if (tb_cflags(tb) & CF_USE_ICOUNT) {
81 * Update the num_insn immediate parameter now that we know
82 * the actual insn count.
84 tcg_set_insn_param(icount_start_insn, 2,
85 tcgv_i32_arg(tcg_constant_i32(num_insns)));
88 if (tcg_ctx->exitreq_label) {
89 gen_set_label(tcg_ctx->exitreq_label);
90 tcg_gen_exit_tb(tb, TB_EXIT_REQUESTED);
94 #endif