qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4306] CRIS: Eliminate a few unneeded moves to/from T0/T1.
Date: Sat, 03 May 2008 08:36:16 +0000	[thread overview]
Message-ID: <E1JsDE8-0002mt-A7@cvs.savannah.gnu.org> (raw)

Revision: 4306
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4306
Author:   edgar_igl
Date:     2008-05-03 08:36:16 +0000 (Sat, 03 May 2008)

Log Message:
-----------
CRIS: Eliminate a few unneeded moves to/from T0/T1.

Modified Paths:
--------------
    trunk/target-cris/translate.c

Modified: trunk/target-cris/translate.c
===================================================================
--- trunk/target-cris/translate.c	2008-05-03 08:35:16 UTC (rev 4305)
+++ trunk/target-cris/translate.c	2008-05-03 08:36:16 UTC (rev 4306)
@@ -449,11 +449,10 @@
 	tb = dc->tb;
 	if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK)) {
 		tcg_gen_goto_tb(n);
-		tcg_gen_movi_tl(cpu_T[0], dest);
-		t_gen_mov_env_TN(pc, cpu_T[0]);
+		tcg_gen_movi_tl(env_pc, dest);
 		tcg_gen_exit_tb((long)tb + n);
 	} else {
-		t_gen_mov_env_TN(pc, cpu_T[0]);
+		tcg_gen_mov_tl(env_pc, cpu_T[0]);
 		tcg_gen_exit_tb(0);
 	}
 }
@@ -916,6 +915,8 @@
 		tcg_gen_ext8s_i32(d, s);
 	else if (size == 2)
 		tcg_gen_ext16s_i32(d, s);
+	else
+		tcg_gen_mov_tl(d, s);
 }
 
 static inline void t_gen_zext(TCGv d, TCGv s, int size)
@@ -925,6 +926,8 @@
 		tcg_gen_andi_i32(d, s, 0xff);
 	else if (size == 2)
 		tcg_gen_andi_i32(d, s, 0xffff);
+	else
+		tcg_gen_mov_tl(d, s);
 }
 
 #if DISAS_CRIS
@@ -968,11 +971,10 @@
 static void dec_prep_move_r(DisasContext *dc, int rs, int rd,
 			    int size, int s_ext)
 {
-	t_gen_mov_TN_reg(cpu_T[1], rs);
 	if (s_ext)
-		t_gen_sext(cpu_T[1], cpu_T[1], size);
+		t_gen_sext(cpu_T[1], cpu_R[rs], size);
 	else
-		t_gen_zext(cpu_T[1], cpu_T[1], size);
+		t_gen_zext(cpu_T[1], cpu_R[rs], size);
 }
 
 /* Prepare T0 and T1 for a register alu operation.
@@ -983,11 +985,10 @@
 {
 	dec_prep_move_r(dc, rs, rd, size, s_ext);
 
-	t_gen_mov_TN_reg(cpu_T[0], rd);
 	if (s_ext)
-		t_gen_sext(cpu_T[0], cpu_T[0], size);
+		t_gen_sext(cpu_T[0], cpu_R[rd], size);
 	else
-		t_gen_zext(cpu_T[0], cpu_T[0], size);
+		t_gen_zext(cpu_T[0], cpu_R[rd], size);
 }
 
 /* Prepare T0 and T1 for a memory + alu operation.

                 reply	other threads:[~2008-05-03  8:36 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=E1JsDE8-0002mt-A7@cvs.savannah.gnu.org \
    --to=edgar.iglesias@gmail.com \
    --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).