All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: qemu-devel@nongnu.org
Cc: rth@twiddle.net, alistai@xilinx.com, sai.pavan.boddu@xilinx.com,
	edgar.iglesias@xilinx.com
Subject: [Qemu-devel] [PATCH v1 2/7] target-microblaze: dec_barrel: Use extract32
Date: Tue, 20 Jun 2017 18:08:59 +0200	[thread overview]
Message-ID: <1497974944-27050-3-git-send-email-edgar.iglesias@gmail.com> (raw)
In-Reply-To: <1497974944-27050-1-git-send-email-edgar.iglesias@gmail.com>

From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>

Use extract32 instead of opencoding the shifting and masking.
No functional change.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
---
 target/microblaze/translate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/target/microblaze/translate.c b/target/microblaze/translate.c
index 4136a8e..e959de7 100644
--- a/target/microblaze/translate.c
+++ b/target/microblaze/translate.c
@@ -670,8 +670,8 @@ static void dec_barrel(DisasContext *dc)
         return;
     }
 
-    s = dc->imm & (1 << 10);
-    t = dc->imm & (1 << 9);
+    s = extract32(dc->imm, 10, 1);
+    t = extract32(dc->imm, 9, 1);
 
     LOG_DIS("bs%s%s r%d r%d r%d\n",
             s ? "l" : "r", t ? "a" : "l", dc->rd, dc->ra, dc->rb);
-- 
2.7.4

  parent reply	other threads:[~2017-06-20 16:09 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-20 16:08 [Qemu-devel] [PATCH v1 0/7] target-microblaze: Add support for BSXFI Edgar E. Iglesias
2017-06-20 16:08 ` [Qemu-devel] [PATCH v1 1/7] target-microblaze: dec_barrel: Use bool instead of unsigned int Edgar E. Iglesias
2017-06-20 17:44   ` Richard Henderson
2017-06-20 16:08 ` Edgar E. Iglesias [this message]
2017-06-20 17:45   ` [Qemu-devel] [PATCH v1 2/7] target-microblaze: dec_barrel: Use extract32 Richard Henderson
2017-06-20 16:09 ` [Qemu-devel] [PATCH v1 3/7] target-microblaze: dec_barrel: Add braces around if-statements Edgar E. Iglesias
2017-06-20 17:45   ` Richard Henderson
2017-06-20 16:09 ` [Qemu-devel] [PATCH v1 4/7] target-microblaze: dec_barrel: Plug TCG temp leak Edgar E. Iglesias
2017-06-20 17:45   ` Richard Henderson
2017-06-20 16:09 ` [Qemu-devel] [PATCH v1 5/7] target-microblaze: dec_barrel: Add BSEFI Edgar E. Iglesias
2017-06-20 17:43   ` Richard Henderson
2017-06-20 16:09 ` [Qemu-devel] [PATCH v1 6/7] target-microblaze: dec_barrel: Add BSIFI Edgar E. Iglesias
2017-06-20 17:48   ` Richard Henderson
2017-06-20 18:02     ` Edgar E. Iglesias
2017-06-20 16:09 ` [Qemu-devel] [PATCH v1 7/7] target-microblaze: Add CPU version 10.0 Edgar E. Iglesias
2017-06-20 18:04   ` Richard Henderson

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=1497974944-27050-3-git-send-email-edgar.iglesias@gmail.com \
    --to=edgar.iglesias@gmail.com \
    --cc=alistai@xilinx.com \
    --cc=edgar.iglesias@xilinx.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=sai.pavan.boddu@xilinx.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.