From ce285b17549e806483f6499d7f3d418168116950 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 30 Sep 2011 21:23:06 +0200 Subject: tcg: TCG targets may define tcg_qemu_tb_exec Targets may use a non standard definition of tcg_tb_exec by defining this macro in their tcg_target.h. This is used here by ppc. It will be used by the TCG interpreter, too. Cc: malc Signed-off-by: Stefan Weil --- tcg/tcg.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'tcg/tcg.h') diff --git a/tcg/tcg.h b/tcg/tcg.h index 015f88ae6..ca4807517 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -584,10 +584,9 @@ TCGv_i32 tcg_const_local_i32(int32_t val); TCGv_i64 tcg_const_local_i64(int64_t val); extern uint8_t code_gen_prologue[]; -#if defined(_ARCH_PPC) && !defined(_ARCH_PPC64) -#define tcg_qemu_tb_exec(env, tb_ptr) \ - ((long REGPARM __attribute__ ((longcall)) (*)(void *, void *))code_gen_prologue)(env, tb_ptr) -#else -#define tcg_qemu_tb_exec(env, tb_ptr) \ + +/* TCG targets may use a different definition of tcg_qemu_tb_exec. */ +#if !defined(tcg_qemu_tb_exec) +# define tcg_qemu_tb_exec(env, tb_ptr) \ ((long REGPARM (*)(void *, void *))code_gen_prologue)(env, tb_ptr) #endif -- cgit v1.2.3