* [Qemu-devel] [4306] CRIS: Eliminate a few unneeded moves to/from T0/T1.
@ 2008-05-03 8:36 Edgar E. Iglesias
0 siblings, 0 replies; only message in thread
From: Edgar E. Iglesias @ 2008-05-03 8:36 UTC (permalink / raw)
To: qemu-devel
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.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-05-03 8:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-03 8:36 [Qemu-devel] [4306] CRIS: Eliminate a few unneeded moves to/from T0/T1 Edgar E. Iglesias
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).