]> Git Repo - qemu.git/commitdiff
T1 is now dead.
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 24 Jun 2008 20:13:20 +0000 (20:13 +0000)
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 24 Jun 2008 20:13:20 +0000 (20:13 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4787 c046a42c-6fe2-441c-8c8c-71466251a162

target-mips/cpu.h
target-mips/exec.h
target-mips/translate.c

index 874ecee5ee0a061017b9179f03e2c0ae3111e5bb..cf7043a57652cc8e0a10c81ba7556ff9dce203b4 100644 (file)
@@ -142,7 +142,6 @@ struct CPUMIPSState {
     target_ulong PC[MIPS_TC_MAX];
 #if TARGET_LONG_BITS > HOST_LONG_BITS
     target_ulong t0;
-    target_ulong t1;
 #endif
     /* temporary hack for FP globals */
 #ifndef USE_HOST_FLOAT_REGS
index 2653d34c7d71ed975fc5e189cab7e92427daad41..6b351da11403c1c220a00cd6d5cabb7bef47ec98 100644 (file)
@@ -12,10 +12,8 @@ register struct CPUMIPSState *env asm(AREG0);
 
 #if TARGET_LONG_BITS > HOST_LONG_BITS
 #define T0 (env->t0)
-#define T1 (env->t1)
 #else
 register target_ulong T0 asm(AREG1);
-register target_ulong T1 asm(AREG2);
 #endif
 
 #if defined (USE_HOST_FLOAT_REGS)
index de2ee218366198aeb5fad285eecfa88a8596357d..106d3559234f391be07dd25d3e3c37f909cf799e 100644 (file)
@@ -423,7 +423,7 @@ enum {
 };
 
 /* global register indices */
-static TCGv cpu_env, current_tc_gprs, current_tc_hi, current_fpu, cpu_T[2];
+static TCGv cpu_env, current_tc_gprs, current_tc_hi, current_fpu, cpu_T[1];
 
 /* FPU TNs, global for now. */
 static TCGv fpu32_T[3], fpu64_T[3], fpu32h_T[3];
@@ -8072,11 +8072,8 @@ static void mips_tcg_init(void)
 #if TARGET_LONG_BITS > HOST_LONG_BITS
     cpu_T[0] = tcg_global_mem_new(TCG_TYPE_TL,
                                   TCG_AREG0, offsetof(CPUState, t0), "T0");
-    cpu_T[1] = tcg_global_mem_new(TCG_TYPE_TL,
-                                  TCG_AREG0, offsetof(CPUState, t1), "T1");
 #else
     cpu_T[0] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG1, "T0");
-    cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1");
 #endif
 
     /* register helpers */
This page took 0.043042 seconds and 4 git commands to generate.