qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Thiemo Seufer <ths@networkno.de>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4787] T1 is now dead.
Date: Tue, 24 Jun 2008 20:13:20 +0000	[thread overview]
Message-ID: <E1KBEtE-00024D-F7@cvs.savannah.gnu.org> (raw)

Revision: 4787
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4787
Author:   ths
Date:     2008-06-24 20:13:20 +0000 (Tue, 24 Jun 2008)

Log Message:
-----------
T1 is now dead.

Modified Paths:
--------------
    trunk/target-mips/cpu.h
    trunk/target-mips/exec.h
    trunk/target-mips/translate.c

Modified: trunk/target-mips/cpu.h
===================================================================
--- trunk/target-mips/cpu.h	2008-06-24 20:12:33 UTC (rev 4786)
+++ trunk/target-mips/cpu.h	2008-06-24 20:13:20 UTC (rev 4787)
@@ -142,7 +142,6 @@
     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

Modified: trunk/target-mips/exec.h
===================================================================
--- trunk/target-mips/exec.h	2008-06-24 20:12:33 UTC (rev 4786)
+++ trunk/target-mips/exec.h	2008-06-24 20:13:20 UTC (rev 4787)
@@ -12,10 +12,8 @@
 
 #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)

Modified: trunk/target-mips/translate.c
===================================================================
--- trunk/target-mips/translate.c	2008-06-24 20:12:33 UTC (rev 4786)
+++ trunk/target-mips/translate.c	2008-06-24 20:13:20 UTC (rev 4787)
@@ -423,7 +423,7 @@
 };
 
 /* 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 @@
 #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 */

                 reply	other threads:[~2008-06-24 20:13 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1KBEtE-00024D-F7@cvs.savannah.gnu.org \
    --to=ths@networkno.de \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).