diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-01 21:51:40 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-01 21:51:40 +0000 |
commit | 2f4011767ba7c0bf604bd4b24d91bc4e00e778fc (patch) | |
tree | 8cb26f7ca4798428b8c68c053d2ab258243b468d | |
parent | a97fed52e57385fc749e6f6ef95be7ebdb81ba9b (diff) | |
download | qemu-2f4011767ba7c0bf604bd4b24d91bc4e00e778fc.tar.gz qemu-2f4011767ba7c0bf604bd4b24d91bc4e00e778fc.tar.bz2 qemu-2f4011767ba7c0bf604bd4b24d91bc4e00e778fc.zip |
Fix nasty sign-extensions when running 32 bits CPU in the 64 bits emulator
on 32 bits hosts.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3312 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | target-ppc/op.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c index 72fd483463..2c02350315 100644 --- a/target-ppc/op.c +++ b/target-ppc/op.c @@ -180,7 +180,7 @@ void OPPROTO op_set_T1_64 (void) #if 0 // unused void OPPROTO op_set_T2 (void) { - T2 = PARAM1; + T2 = (uint32_t)PARAM1; RETURN(); } #endif @@ -572,7 +572,7 @@ void OPPROTO op_getbit_T1 (void) void OPPROTO op_setcrfbit (void) { - T1 = (T1 & PARAM1) | (T0 << PARAM2); + T1 = (T1 & (uint32_t)PARAM1) | (T0 << PARAM2); RETURN(); } @@ -1146,7 +1146,7 @@ void OPPROTO op_subfic (void) #if defined(TARGET_PPC64) void OPPROTO op_subfic_64 (void) { - T0 = PARAM1 + ~T0 + 1; + T0 = (int64_t)PARAM1 + ~T0 + 1; if ((uint64_t)T0 <= (uint64_t)PARAM1) { xer_ca = 1; } else { @@ -1388,26 +1388,26 @@ void OPPROTO op_andc (void) /* andi. */ void OPPROTO op_andi_T0 (void) { - T0 &= PARAM1; + T0 &= (uint32_t)PARAM1; RETURN(); } void OPPROTO op_andi_T1 (void) { - T1 &= PARAM1; + T1 &= (uint32_t)PARAM1; RETURN(); } #if defined(TARGET_PPC64) void OPPROTO op_andi_T0_64 (void) { - T0 &= ((uint64_t)PARAM1 << 32) | PARAM2; + T0 &= ((uint64_t)PARAM1 << 32) | (uint64_t)PARAM2; RETURN(); } void OPPROTO op_andi_T1_64 (void) { - T1 &= ((uint64_t)PARAM1 << 32) | PARAM2; + T1 &= ((uint64_t)PARAM1 << 32) | (uint64_t)PARAM2; RETURN(); } #endif @@ -1496,7 +1496,7 @@ void OPPROTO op_orc (void) /* ori */ void OPPROTO op_ori (void) { - T0 |= PARAM1; + T0 |= (uint32_t)PARAM1; RETURN(); } @@ -1510,7 +1510,7 @@ void OPPROTO op_xor (void) /* xori */ void OPPROTO op_xori (void) { - T0 ^= PARAM1; + T0 ^= (uint32_t)PARAM1; RETURN(); } @@ -2229,7 +2229,7 @@ void OPPROTO op_POWER_nabso (void) void OPPROTO op_POWER_rlmi (void) { T0 = rotl32(T0, T2) & PARAM1; - T0 |= T1 & PARAM2; + T0 |= T1 & (uint32_t)PARAM2; RETURN(); } |