qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: qemu-devel@nongnu.org, Aurelien Jarno <aurelien@aurel32.net>,
	Richard Henderson <rth@twiddle.net>,
	Yongbok Kim <yongbok.kim@imgtec.com>
Cc: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Subject: [Qemu-devel] [PATCH 6/8] target/mips: optimize bshfl() using extract op
Date: Wed, 10 May 2017 17:05:33 -0300	[thread overview]
Message-ID: <20170510200535.13268-7-f4bug@amsat.org> (raw)
In-Reply-To: <20170510200535.13268-1-f4bug@amsat.org>

Applied using Coccinelle script.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 target/mips/translate.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/target/mips/translate.c b/target/mips/translate.c
index 3022f349cb..96177da9ae 100644
--- a/target/mips/translate.c
+++ b/target/mips/translate.c
@@ -4573,8 +4573,7 @@ static void gen_bshfl (DisasContext *ctx, uint32_t op2, int rt, int rd)
         {
             TCGv t1 = tcg_temp_new();
 
-            tcg_gen_shri_tl(t1, t0, 8);
-            tcg_gen_andi_tl(t1, t1, 0x00FF00FF);
+            tcg_gen_extract_tl(t1, t0, 8, 0x00FF00FF);
             tcg_gen_shli_tl(t0, t0, 8);
             tcg_gen_andi_tl(t0, t0, ~0x00FF00FF);
             tcg_gen_or_tl(t0, t0, t1);
@@ -4593,8 +4592,7 @@ static void gen_bshfl (DisasContext *ctx, uint32_t op2, int rt, int rd)
         {
             TCGv t1 = tcg_temp_new();
 
-            tcg_gen_shri_tl(t1, t0, 8);
-            tcg_gen_andi_tl(t1, t1, 0x00FF00FF00FF00FFULL);
+            tcg_gen_extract_tl(t1, t0, 8, 0x00FF00FF00FF00FFULL);
             tcg_gen_shli_tl(t0, t0, 8);
             tcg_gen_andi_tl(t0, t0, ~0x00FF00FF00FF00FFULL);
             tcg_gen_or_tl(cpu_gpr[rd], t0, t1);
@@ -4605,8 +4603,7 @@ static void gen_bshfl (DisasContext *ctx, uint32_t op2, int rt, int rd)
         {
             TCGv t1 = tcg_temp_new();
 
-            tcg_gen_shri_tl(t1, t0, 16);
-            tcg_gen_andi_tl(t1, t1, 0x0000FFFF0000FFFFULL);
+            tcg_gen_extract_tl(t1, t0, 16, 0x0000FFFF0000FFFFULL);
             tcg_gen_shli_tl(t0, t0, 16);
             tcg_gen_andi_tl(t0, t0, ~0x0000FFFF0000FFFFULL);
             tcg_gen_or_tl(t0, t0, t1);
-- 
2.11.0

  parent reply	other threads:[~2017-05-10 20:06 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-10 20:05 [Qemu-devel] [PATCH 0/8] optimize various tcg_gen() functions using extract op Philippe Mathieu-Daudé
2017-05-10 20:05 ` [Qemu-devel] [PATCH 1/8] coccinelle: add a script to optimize tcg op using tcg_gen_extract() Philippe Mathieu-Daudé
2017-05-10 20:12   ` Eric Blake
2017-05-10 20:23     ` Philippe Mathieu-Daudé
2017-05-10 20:19   ` Richard Henderson
2017-05-10 20:23     ` Eric Blake
2017-05-10 21:27     ` Philippe Mathieu-Daudé
2017-05-10 23:52     ` [Qemu-devel] [RFC PATCH v2] " Philippe Mathieu-Daudé
2017-05-11  0:13       ` Philippe Mathieu-Daudé
2017-05-11  9:03         ` Markus Armbruster
2017-05-12  2:01           ` Philippe Mathieu-Daudé
2017-05-12  2:04             ` Philippe Mathieu-Daudé
2017-05-15  7:04             ` Markus Armbruster
2017-05-10 20:05 ` [Qemu-devel] [PATCH 2/8] target/arm: optimize smul_dual() and neon_trn_u8() using extract op Philippe Mathieu-Daudé
2017-05-10 20:15   ` Eric Blake
2017-05-12  2:49     ` Philippe Mathieu-Daudé
2017-05-10 20:20   ` Richard Henderson
2017-05-10 20:32     ` Philippe Mathieu-Daudé
2017-05-12  1:31       ` Philippe Mathieu-Daudé
2017-05-10 20:05 ` [Qemu-devel] [PATCH 3/8] target/arm: optimize rev16() " Philippe Mathieu-Daudé
2017-05-12  1:54   ` Philippe Mathieu-Daudé
2017-05-10 20:05 ` [Qemu-devel] [PATCH 4/8] target/cris: optimize gen_swapb() " Philippe Mathieu-Daudé
2017-05-12  1:29   ` Philippe Mathieu-Daudé
2017-05-10 20:05 ` [Qemu-devel] [PATCH 5/8] target/m68k: optimize bcd_flags() " Philippe Mathieu-Daudé
2017-05-11  8:41   ` Laurent Vivier
2017-05-12  1:52     ` Philippe Mathieu-Daudé
2017-05-10 20:05 ` Philippe Mathieu-Daudé [this message]
2017-05-12  2:13   ` [Qemu-devel] [PATCH 6/8] target/mips: optimize bshfl() " Philippe Mathieu-Daudé
2017-05-10 20:05 ` [Qemu-devel] [PATCH 7/8] target/ppc: optimize various functions " Philippe Mathieu-Daudé
2017-05-11  0:41   ` David Gibson
2017-05-11  8:46     ` [Qemu-devel] [Qemu-ppc] " Laurent Vivier
2017-05-12  5:13       ` David Gibson
2017-05-11  4:54   ` [Qemu-devel] " Nikunj A Dadhania
2017-05-12  1:48     ` Philippe Mathieu-Daudé
2017-05-12  5:16       ` David Gibson
2017-05-10 20:05 ` [Qemu-devel] [PATCH 8/8] target/sparc: " Philippe Mathieu-Daudé
2017-05-12  1:50   ` Philippe Mathieu-Daudé
2017-05-10 20:20 ` [Qemu-devel] [PATCH 0/8] optimize various tcg_gen() " no-reply
2017-05-12  2:34   ` Philippe Mathieu-Daudé

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=20170510200535.13268-7-f4bug@amsat.org \
    --to=f4bug@amsat.org \
    --cc=aurelien@aurel32.net \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=yongbok.kim@imgtec.com \
    /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).