2012-12-06 15:15:58 +04:00
|
|
|
#ifndef GEN_ICOUNT_H
|
2016-06-29 16:29:06 +03:00
|
|
|
#define GEN_ICOUNT_H
|
2012-12-06 15:15:58 +04:00
|
|
|
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/timer.h"
|
2010-03-29 23:24:00 +04:00
|
|
|
|
2008-06-30 21:22:19 +04:00
|
|
|
/* Helpers for instruction counting code generation. */
|
2008-06-29 14:43:16 +04:00
|
|
|
|
2016-05-12 15:22:26 +03:00
|
|
|
static int icount_start_insn_idx;
|
2015-02-13 23:51:55 +03:00
|
|
|
static TCGLabel *exitreq_label;
|
2008-06-29 14:43:16 +04:00
|
|
|
|
2014-11-26 13:40:05 +03:00
|
|
|
static inline void gen_tb_start(TranslationBlock *tb)
|
2008-06-29 14:43:16 +04:00
|
|
|
{
|
2017-01-27 13:25:33 +03:00
|
|
|
TCGv_i32 count, imm;
|
2013-02-22 22:10:03 +04:00
|
|
|
|
|
|
|
exitreq_label = gen_new_label();
|
2017-01-27 13:25:33 +03:00
|
|
|
if (tb->cflags & CF_USE_ICOUNT) {
|
|
|
|
count = tcg_temp_local_new_i32();
|
|
|
|
} else {
|
|
|
|
count = tcg_temp_new_i32();
|
2014-09-20 00:49:15 +04:00
|
|
|
}
|
2008-06-29 14:43:16 +04:00
|
|
|
|
2017-06-16 21:56:37 +03:00
|
|
|
tcg_gen_ld_i32(count, tcg_ctx.tcg_env,
|
2013-08-26 07:51:49 +04:00
|
|
|
-ENV_OFFSET + offsetof(CPUState, icount_decr.u32));
|
2014-09-20 00:49:15 +04:00
|
|
|
|
2017-01-27 13:25:33 +03:00
|
|
|
if (tb->cflags & CF_USE_ICOUNT) {
|
|
|
|
imm = tcg_temp_new_i32();
|
|
|
|
/* We emit a movi with a dummy immediate argument. Keep the insn index
|
|
|
|
* of the movi so that we later (when we know the actual insn count)
|
|
|
|
* can update the immediate argument with the actual insn count. */
|
|
|
|
icount_start_insn_idx = tcg_op_buf_count();
|
|
|
|
tcg_gen_movi_i32(imm, 0xdeadbeef);
|
|
|
|
|
|
|
|
tcg_gen_sub_i32(count, count, imm);
|
|
|
|
tcg_temp_free_i32(imm);
|
|
|
|
}
|
|
|
|
|
|
|
|
tcg_gen_brcondi_i32(TCG_COND_LT, count, 0, exitreq_label);
|
2014-09-20 00:49:15 +04:00
|
|
|
|
2017-01-27 13:25:33 +03:00
|
|
|
if (tb->cflags & CF_USE_ICOUNT) {
|
2017-06-16 21:56:37 +03:00
|
|
|
tcg_gen_st16_i32(count, tcg_ctx.tcg_env,
|
2017-01-27 13:25:33 +03:00
|
|
|
-ENV_OFFSET + offsetof(CPUState, icount_decr.u16.low));
|
|
|
|
}
|
2008-06-29 14:43:16 +04:00
|
|
|
|
2008-11-17 17:43:54 +03:00
|
|
|
tcg_temp_free_i32(count);
|
2008-06-29 14:43:16 +04:00
|
|
|
}
|
|
|
|
|
2017-06-16 21:56:36 +03:00
|
|
|
static inline void gen_tb_end(TranslationBlock *tb, int num_insns)
|
2008-06-29 14:43:16 +04:00
|
|
|
{
|
2014-11-26 13:40:05 +03:00
|
|
|
if (tb->cflags & CF_USE_ICOUNT) {
|
2016-05-12 15:22:26 +03:00
|
|
|
/* Update the num_insn immediate parameter now that we know
|
|
|
|
* the actual insn count. */
|
|
|
|
tcg_set_insn_param(icount_start_insn_idx, 1, num_insns);
|
2008-06-29 14:43:16 +04:00
|
|
|
}
|
2014-03-31 01:50:30 +04:00
|
|
|
|
2017-01-27 13:25:33 +03:00
|
|
|
gen_set_label(exitreq_label);
|
|
|
|
tcg_gen_exit_tb((uintptr_t)tb + TB_EXIT_REQUESTED);
|
|
|
|
|
2014-09-20 00:49:15 +04:00
|
|
|
/* Terminate the linked list. */
|
2016-06-23 05:42:31 +03:00
|
|
|
tcg_ctx.gen_op_buf[tcg_ctx.gen_op_buf[0].prev].next = 0;
|
2008-06-29 14:43:16 +04:00
|
|
|
}
|
|
|
|
|
2009-09-23 03:19:00 +04:00
|
|
|
static inline void gen_io_start(void)
|
2008-06-29 14:43:16 +04:00
|
|
|
{
|
2008-11-17 17:43:54 +03:00
|
|
|
TCGv_i32 tmp = tcg_const_i32(1);
|
2017-06-16 21:56:37 +03:00
|
|
|
tcg_gen_st_i32(tmp, tcg_ctx.tcg_env,
|
|
|
|
-ENV_OFFSET + offsetof(CPUState, can_do_io));
|
2008-11-17 17:43:54 +03:00
|
|
|
tcg_temp_free_i32(tmp);
|
2008-06-29 14:43:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gen_io_end(void)
|
|
|
|
{
|
2008-11-17 17:43:54 +03:00
|
|
|
TCGv_i32 tmp = tcg_const_i32(0);
|
2017-06-16 21:56:37 +03:00
|
|
|
tcg_gen_st_i32(tmp, tcg_ctx.tcg_env,
|
|
|
|
-ENV_OFFSET + offsetof(CPUState, can_do_io));
|
2008-11-17 17:43:54 +03:00
|
|
|
tcg_temp_free_i32(tmp);
|
2008-06-29 14:43:16 +04:00
|
|
|
}
|
2012-12-06 15:15:58 +04:00
|
|
|
|
|
|
|
#endif
|