提交 c3ca0467 编写于 作者: S Stefan Weil 提交者: Blue Swirl

tci: GETPC() macro must return an uintptr_t

Change the data type of tci_tb_ptr, so GETPC() returns an
uintptr_t now (like for all other TCG targets).

This completes commit 20503968
and fixes builds with TCI.
Signed-off-by: NStefan Weil <sw@weilnetz.de>
Reviewed-by: NEric Blake <eblake@redhat.com>
Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
上级 a896d03b
...@@ -283,7 +283,7 @@ extern int tb_invalidated_flag; ...@@ -283,7 +283,7 @@ extern int tb_invalidated_flag;
/* Alpha and SH4 user mode emulations and Softmmu call GETPC(). /* Alpha and SH4 user mode emulations and Softmmu call GETPC().
For all others, GETPC remains undefined (which makes TCI a little faster. */ For all others, GETPC remains undefined (which makes TCI a little faster. */
# if defined(CONFIG_SOFTMMU) || defined(TARGET_ALPHA) || defined(TARGET_SH4) # if defined(CONFIG_SOFTMMU) || defined(TARGET_ALPHA) || defined(TARGET_SH4)
extern void *tci_tb_ptr; extern uintptr_t tci_tb_ptr;
# define GETPC() tci_tb_ptr # define GETPC() tci_tb_ptr
# endif # endif
#elif defined(__s390__) && !defined(__s390x__) #elif defined(__s390__) && !defined(__s390x__)
......
...@@ -58,7 +58,7 @@ CPUArchState *env; ...@@ -58,7 +58,7 @@ CPUArchState *env;
/* Targets which don't use GETPC also don't need tci_tb_ptr /* Targets which don't use GETPC also don't need tci_tb_ptr
which makes them a little faster. */ which makes them a little faster. */
#if defined(GETPC) #if defined(GETPC)
void *tci_tb_ptr; uintptr_t tci_tb_ptr;
#endif #endif
static tcg_target_ulong tci_reg[TCG_TARGET_NB_REGS]; static tcg_target_ulong tci_reg[TCG_TARGET_NB_REGS];
...@@ -450,7 +450,7 @@ tcg_target_ulong tcg_qemu_tb_exec(CPUArchState *cpustate, uint8_t *tb_ptr) ...@@ -450,7 +450,7 @@ tcg_target_ulong tcg_qemu_tb_exec(CPUArchState *cpustate, uint8_t *tb_ptr)
for (;;) { for (;;) {
#if defined(GETPC) #if defined(GETPC)
tci_tb_ptr = tb_ptr; tci_tb_ptr = (uintptr_t)tb_ptr;
#endif #endif
TCGOpcode opc = tb_ptr[0]; TCGOpcode opc = tb_ptr[0];
#if !defined(NDEBUG) #if !defined(NDEBUG)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册