tcg/ppc[64]: Only define addend load helpers in softmmu case

Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
malc 2010-03-13 00:27:46 +03:00
parent b1aa27c4ea
commit 35f6b5997a
2 changed files with 5 additions and 0 deletions

View File

@ -36,11 +36,14 @@ static uint8_t *tb_ret_addr;
#endif
#define FAST_PATH
#ifdef CONFIG_SOFTMMU
#if TARGET_PHYS_ADDR_BITS <= 32
#define ADDEND_OFFSET 0
#else
#define ADDEND_OFFSET 4
#endif
#endif
#ifndef GUEST_BASE
#define GUEST_BASE 0

View File

@ -28,11 +28,13 @@ static uint8_t *tb_ret_addr;
#define FAST_PATH
#ifdef CONFIG_SOFTMMU
#if TARGET_PHYS_ADDR_BITS == 32
#define LD_ADDEND LWZ
#else
#define LD_ADDEND LD
#endif
#endif
#if TARGET_LONG_BITS == 32
#define LD_ADDR LWZU