target-ppc: remove dead code
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 6 Dec 2008 22:01:01 +0000 (22:01 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 6 Dec 2008 22:01:01 +0000 (22:01 +0000)
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5896 c046a42c-6fe2-441c-8c8c-71466251a162

target-ppc/cpu.h
target-ppc/exec.h
target-ppc/op_helper.h
target-ppc/translate.c

index 3911f28f2dfb807360ee4c5d6e6111d13d0aed3b..a9bd0098cda2757f9f8dda0ba2e7ca88639851cf 100644 (file)
@@ -530,11 +530,7 @@ struct CPUPPCState {
      * during translated code execution
      */
 #if TARGET_LONG_BITS > HOST_LONG_BITS
-    target_ulong t0, t1;
-#endif
-     /* XXX: this is a temporary workaround for i386. cf translate.c comment */
-#if (TARGET_LONG_BITS > HOST_LONG_BITS) || defined(HOST_I386)
-    target_ulong t2;
+    target_ulong t0;
 #endif
 
     /* general purpose registers */
index 4e2802ef815a69ff59adca4679b02dba6d8830b1..cc7c924ac5e620476b81a2719942b6c324744c04 100644 (file)
@@ -35,13 +35,9 @@ register struct CPUPPCState *env asm(AREG0);
 #if TARGET_LONG_BITS > HOST_LONG_BITS
 /* no registers can be used */
 #define T0 (env->t0)
-#define T1 (env->t1)
-#define T2 (env->t2)
 #define TDX "%016" PRIx64
 #else
 register target_ulong T0 asm(AREG1);
-register target_ulong T1 asm(AREG2);
-register target_ulong T2 asm(AREG3);
 #define TDX "%016lx"
 #endif
 
index 1de35a1b0b351f1ba5f1fba2316511ce875adef7..0fc379a8e1469d7f9d21fc04c32b68ad75143a8a 100644 (file)
@@ -18,8 +18,6 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-void do_print_mem_EA (target_ulong EA);
-
 /* Registers load and stores */
 #if defined(TARGET_PPC64)
 void do_store_pri (int prio);
@@ -30,7 +28,6 @@ void ppc_store_dump_spr (int sprn, target_ulong val);
 /* Misc */
 /* POWER / PowerPC 601 specific helpers */
 #if !defined(CONFIG_USER_ONLY)
-void do_POWER_rac (void);
 void do_store_hid0_601 (void);
 #endif
 
index e486c2316e379063e1eca74bc14244a32be425df..b34de137c784d081ce521e9ed68c93427890b116 100644 (file)
@@ -72,7 +72,7 @@ static TCGv_i32 cpu_fpscr;
 static TCGv_i32 cpu_access_type;
 
 /* dyngen register indexes */
-static TCGv cpu_T[3];
+static TCGv cpu_T[1];
 
 #include "gen-icount.h"
 
@@ -88,20 +88,8 @@ void ppc_translate_init(void)
     cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
 #if TARGET_LONG_BITS > HOST_LONG_BITS
     cpu_T[0] = tcg_global_mem_new(TCG_AREG0, offsetof(CPUState, t0), "T0");
-    cpu_T[1] = tcg_global_mem_new(TCG_AREG0, offsetof(CPUState, t1), "T1");
-    cpu_T[2] = tcg_global_mem_new(TCG_AREG0, offsetof(CPUState, t2), "T2");
 #else
     cpu_T[0] = tcg_global_reg_new(TCG_AREG1, "T0");
-    cpu_T[1] = tcg_global_reg_new(TCG_AREG2, "T1");
-#ifdef HOST_I386
-    /* XXX: This is a temporary workaround for i386.
-     *      On i386 qemu_st32 runs out of registers.
-     *      The proper fix is to remove cpu_T.
-     */
-    cpu_T[2] = tcg_global_mem_new(TCG_AREG0, offsetof(CPUState, t2), "T2");
-#else
-    cpu_T[2] = tcg_global_reg_new(TCG_AREG3, "T2");
-#endif
 #endif
 
     p = cpu_reg_names;