diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-05-19 09:59:34 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2015-06-03 23:56:55 +0200 |
commit | 5a58e884d1d9905a835de2889c8cd73327fe2a94 (patch) | |
tree | 7536fa6b96b41c6204e0a20b2beb49e768081fa0 /tcg/tcg.h | |
parent | 085eb217dfb3ee12e7985c11f71f8a038394735a (diff) | |
download | qemu-5a58e884d1d9905a835de2889c8cd73327fe2a94.zip |
tci: do not use CPUArchState in tcg-target.h
tcg-target.h does not use any QEMU-specific symbols, save for tci's usage
of CPUArchState. Pull that up to tcg/tcg.h.
This will make it possible to include tcg-target.h in cpu-defs.h.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r-- | tcg/tcg.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -927,7 +927,9 @@ static inline unsigned get_mmuidx(TCGMemOpIdx oi) #define TB_EXIT_ICOUNT_EXPIRED 2 #define TB_EXIT_REQUESTED 3 -#if !defined(tcg_qemu_tb_exec) +#ifdef HAVE_TCG_QEMU_TB_EXEC +uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr); +#else # define tcg_qemu_tb_exec(env, tb_ptr) \ ((uintptr_t (*)(void *, void *))tcg_ctx.code_gen_prologue)(env, tb_ptr) #endif |