diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2014-11-26 13:39:53 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-12-23 10:14:53 +0100 |
commit | 0266359e57987d6be53fbcb885f2dd39c1dae940 (patch) | |
tree | 13b522a403166b0401e76f9b83b3864bbd8e829f /translate-all.c | |
parent | 69b058c8818bdd4da48b3b9dd1a5d64490c7df17 (diff) |
cpu-exec: add a new CF_USE_ICOUNT cflag
Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'translate-all.c')
-rw-r--r-- | translate-all.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/translate-all.c b/translate-all.c index c24cfe865b..db2102dd52 100644 --- a/translate-all.c +++ b/translate-all.c @@ -1045,6 +1045,9 @@ TranslationBlock *tb_gen_code(CPUState *cpu, int code_gen_size; phys_pc = get_page_addr_code(env, pc); + if (use_icount) { + cflags |= CF_USE_ICOUNT; + } tb = tb_alloc(pc); if (!tb) { /* flush must be done */ |