qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5600] target-ppc: use the new subfi wrapper
@ 2008-11-02  8:23 Aurelien Jarno
  0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2008-11-02  8:23 UTC (permalink / raw)
  To: qemu-devel

Revision: 5600
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5600
Author:   aurel32
Date:     2008-11-02 08:23:14 +0000 (Sun, 02 Nov 2008)

Log Message:
-----------
target-ppc: use the new subfi wrapper

(...and fix rldnm)

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

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

Modified: trunk/target-ppc/translate.c
===================================================================
--- trunk/target-ppc/translate.c	2008-11-02 08:23:04 UTC (rev 5599)
+++ trunk/target-ppc/translate.c	2008-11-02 08:23:14 UTC (rev 5600)
@@ -1747,7 +1747,7 @@
 GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
 {
     uint32_t mb, me;
-    TCGv t0, t1, t2, t3;
+    TCGv t0, t1, t2;
 
     mb = MB(ctx->opcode);
     me = ME(ctx->opcode);
@@ -1757,9 +1757,7 @@
     tcg_gen_ext32u_tl(t1, cpu_gpr[rS(ctx->opcode)]);
     t2 = tcg_temp_new(TCG_TYPE_TL);
     tcg_gen_shl_tl(t2, t1, t0);
-    t3 = tcg_const_tl(32);
-    tcg_gen_sub_tl(t0, t3, t0);
-    tcg_temp_free(t3);
+    tcg_gen_subfi_tl(t0, 32, t0);
     tcg_gen_shr_tl(t1, t1, t0);
     tcg_temp_free(t0);
     tcg_gen_or_tl(t2, t2, t1);
@@ -1872,7 +1870,7 @@
 static always_inline void gen_rldnm (DisasContext *ctx, uint32_t mb,
                                      uint32_t me)
 {
-    TCGv t0, t1, t2;
+    TCGv t0, t1;
 
     mb = MB(ctx->opcode);
     me = ME(ctx->opcode);
@@ -1880,9 +1878,7 @@
     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
     t1 = tcg_temp_new(TCG_TYPE_TL);
     tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t0);
-    t2 = tcg_const_tl(32);
-    tcg_gen_sub_tl(t0, t2, t0);
-    tcg_temp_free(t2);
+    tcg_gen_subfi_tl(t0, 64, t0);
     tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
     tcg_gen_or_tl(t1, t1, t0);
     tcg_temp_free(t0);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-11-02  8:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-02  8:23 [Qemu-devel] [5600] target-ppc: use the new subfi wrapper Aurelien Jarno

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).