2012-12-06 12:15:58 +01:00
|
|
|
#ifndef GEN_ICOUNT_H
|
2016-06-29 15:29:06 +02:00
|
|
|
#define GEN_ICOUNT_H
|
2012-12-06 12:15:58 +01:00
|
|
|
|
2021-04-22 08:41:28 +02:00
|
|
|
#include "exec/exec-all.h"
|
2010-03-29 21:24:00 +02:00
|
|
|
|
2008-06-30 19:22:19 +02:00
|
|
|
/* Helpers for instruction counting code generation. */
|
2008-06-29 12:43:16 +02:00
|
|
|
|
2017-11-02 15:19:14 +01:00
|
|
|
static TCGOp *icount_start_insn;
|
2008-06-29 12:43:16 +02:00
|
|
|
|
2019-07-25 10:44:49 +02:00
|
|
|
static inline void gen_io_start(void)
|
|
|
|
{
|
2023-02-25 01:53:35 +01:00
|
|
|
tcg_gen_st_i32(tcg_constant_i32(1), cpu_env,
|
2019-07-25 10:44:49 +02:00
|
|
|
offsetof(ArchCPU, parent_obj.can_do_io) -
|
|
|
|
offsetof(ArchCPU, env));
|
|
|
|
}
|
|
|
|
|
2020-10-29 17:49:05 +01:00
|
|
|
static inline void gen_tb_start(const TranslationBlock *tb)
|
2008-06-29 12:43:16 +02:00
|
|
|
{
|
2023-01-30 01:47:48 +01:00
|
|
|
TCGv_i32 count = tcg_temp_new_i32();
|
2008-06-29 12:43:16 +02:00
|
|
|
|
2017-10-10 23:34:37 +02:00
|
|
|
tcg_gen_ld_i32(count, cpu_env,
|
2019-03-28 22:54:23 +01:00
|
|
|
offsetof(ArchCPU, neg.icount_decr.u32) -
|
|
|
|
offsetof(ArchCPU, env));
|
2014-09-19 22:49:15 +02:00
|
|
|
|
2017-07-19 02:46:52 +02:00
|
|
|
if (tb_cflags(tb) & CF_USE_ICOUNT) {
|
2020-04-17 18:31:55 +02:00
|
|
|
/*
|
|
|
|
* We emit a sub with a dummy immediate argument. Keep the insn index
|
|
|
|
* of the sub so that we later (when we know the actual insn count)
|
|
|
|
* can update the argument with the actual insn count.
|
|
|
|
*/
|
|
|
|
tcg_gen_sub_i32(count, count, tcg_constant_i32(0));
|
2017-11-02 15:19:14 +01:00
|
|
|
icount_start_insn = tcg_last_op();
|
2017-01-27 11:25:33 +01:00
|
|
|
}
|
|
|
|
|
2021-11-29 15:09:25 +01:00
|
|
|
/*
|
|
|
|
* Emit the check against icount_decr.u32 to see if we should exit
|
|
|
|
* unless we suppress the check with CF_NOIRQ. If we are using
|
|
|
|
* icount and have suppressed interruption the higher level code
|
|
|
|
* should have ensured we don't run more instructions than the
|
|
|
|
* budget.
|
|
|
|
*/
|
|
|
|
if (tb_cflags(tb) & CF_NOIRQ) {
|
|
|
|
tcg_ctx->exitreq_label = NULL;
|
|
|
|
} else {
|
|
|
|
tcg_ctx->exitreq_label = gen_new_label();
|
|
|
|
tcg_gen_brcondi_i32(TCG_COND_LT, count, 0, tcg_ctx->exitreq_label);
|
|
|
|
}
|
2014-09-19 22:49:15 +02:00
|
|
|
|
2017-07-19 02:46:52 +02:00
|
|
|
if (tb_cflags(tb) & CF_USE_ICOUNT) {
|
2017-10-10 23:34:37 +02:00
|
|
|
tcg_gen_st16_i32(count, cpu_env,
|
2019-03-28 22:54:23 +01:00
|
|
|
offsetof(ArchCPU, neg.icount_decr.u16.low) -
|
|
|
|
offsetof(ArchCPU, env));
|
2021-07-24 15:49:02 +02:00
|
|
|
/*
|
|
|
|
* cpu->can_do_io is cleared automatically here at the beginning of
|
|
|
|
* each translation block. The cost is minimal and only paid for
|
|
|
|
* -icount, plus it would be very easy to forget doing it in the
|
|
|
|
* translator. Doing it here means we don't need a gen_io_end() to
|
|
|
|
* go with gen_io_start().
|
|
|
|
*/
|
|
|
|
tcg_gen_st_i32(tcg_constant_i32(0), cpu_env,
|
|
|
|
offsetof(ArchCPU, parent_obj.can_do_io) -
|
|
|
|
offsetof(ArchCPU, env));
|
2017-01-27 11:25:33 +01:00
|
|
|
}
|
2008-06-29 12:43:16 +02:00
|
|
|
}
|
|
|
|
|
2020-10-29 17:49:05 +01:00
|
|
|
static inline void gen_tb_end(const TranslationBlock *tb, int num_insns)
|
2008-06-29 12:43:16 +02:00
|
|
|
{
|
2017-07-19 02:46:52 +02:00
|
|
|
if (tb_cflags(tb) & CF_USE_ICOUNT) {
|
2020-04-17 18:31:55 +02:00
|
|
|
/*
|
|
|
|
* Update the num_insn immediate parameter now that we know
|
|
|
|
* the actual insn count.
|
|
|
|
*/
|
|
|
|
tcg_set_insn_param(icount_start_insn, 2,
|
|
|
|
tcgv_i32_arg(tcg_constant_i32(num_insns)));
|
2008-06-29 12:43:16 +02:00
|
|
|
}
|
2014-03-30 23:50:30 +02:00
|
|
|
|
2021-11-29 15:09:25 +01:00
|
|
|
if (tcg_ctx->exitreq_label) {
|
|
|
|
gen_set_label(tcg_ctx->exitreq_label);
|
|
|
|
tcg_gen_exit_tb(tb, TB_EXIT_REQUESTED);
|
|
|
|
}
|
2008-06-29 12:43:16 +02:00
|
|
|
}
|
|
|
|
|
2012-12-06 12:15:58 +01:00
|
|
|
#endif
|