blob: 8879da633525f3ecfe78b64092f7b3cec6397067 [file] [log] [blame]
David Turner6a9ef172010-09-09 22:54:36 +02001#include "qemu-timer.h"
2
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08003/* Helpers for instruction counting code generation. */
4
5static TCGArg *icount_arg;
6static int icount_label;
7
8static inline void gen_icount_start(void)
9{
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070010 TCGv_i32 count;
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080011
12 if (!use_icount)
13 return;
14
15 icount_label = gen_new_label();
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070016 count = tcg_temp_local_new_i32();
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080017 tcg_gen_ld_i32(count, cpu_env, offsetof(CPUState, icount_decr.u32));
18 /* This is a horrid hack to allow fixing up the value later. */
19 icount_arg = gen_opparam_ptr + 1;
20 tcg_gen_subi_i32(count, count, 0xdeadbeef);
21
22 tcg_gen_brcondi_i32(TCG_COND_LT, count, 0, icount_label);
23 tcg_gen_st16_i32(count, cpu_env, offsetof(CPUState, icount_decr.u16.low));
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070024 tcg_temp_free_i32(count);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080025}
26
27static void gen_icount_end(TranslationBlock *tb, int num_insns)
28{
29 if (use_icount) {
30 *icount_arg = num_insns;
31 gen_set_label(icount_label);
32 tcg_gen_exit_tb((long)tb + 2);
33 }
34}
35
David 'Digit' Turner92518662010-05-10 23:26:01 -070036static inline void gen_io_start(void)
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080037{
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070038 TCGv_i32 tmp = tcg_const_i32(1);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080039 tcg_gen_st_i32(tmp, cpu_env, offsetof(CPUState, can_do_io));
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070040 tcg_temp_free_i32(tmp);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080041}
42
43static inline void gen_io_end(void)
44{
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070045 TCGv_i32 tmp = tcg_const_i32(0);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080046 tcg_gen_st_i32(tmp, cpu_env, offsetof(CPUState, can_do_io));
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070047 tcg_temp_free_i32(tmp);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080048}