From: Aurelien Jarno <aurelien@aurel32.net>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [6798] tcg: optimize nor(X, Y, Y), used on PPC for not(X, Y)
Date: Mon, 09 Mar 2009 22:35:23 +0000 [thread overview]
Message-ID: <E1Lgo4B-0007Sy-47@cvs.savannah.gnu.org> (raw)
Revision: 6798
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6798
Author: aurel32
Date: 2009-03-09 22:35:22 +0000 (Mon, 09 Mar 2009)
Log Message:
-----------
tcg: optimize nor(X, Y, Y), used on PPC for not(X, Y)
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Modified Paths:
--------------
trunk/tcg/tcg-op.h
Modified: trunk/tcg/tcg-op.h
===================================================================
--- trunk/tcg/tcg-op.h 2009-03-09 22:35:13 UTC (rev 6797)
+++ trunk/tcg/tcg-op.h 2009-03-09 22:35:22 UTC (rev 6798)
@@ -1545,20 +1545,28 @@
static inline void tcg_gen_nor_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
{
- TCGv_i32 t0;
- t0 = tcg_temp_new_i32();
- tcg_gen_or_i32(t0, arg1, arg2);
- tcg_gen_not_i32(ret, t0);
- tcg_temp_free_i32(t0);
+ if (GET_TCGV_I32(arg1) != GET_TCGV_I32(arg2)) {
+ TCGv_i32 t0;
+ t0 = tcg_temp_new_i32();
+ tcg_gen_or_i32(t0, arg1, arg2);
+ tcg_gen_not_i32(ret, t0);
+ tcg_temp_free_i32(t0);
+ } else {
+ tcg_gen_not_i32(ret, arg1);
+ }
}
static inline void tcg_gen_nor_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
{
- TCGv_i64 t0;
- t0 = tcg_temp_new_i64();
- tcg_gen_or_i64(t0, arg1, arg2);
- tcg_gen_not_i64(ret, t0);
- tcg_temp_free_i64(t0);
+ if (GET_TCGV_I64(arg1) != GET_TCGV_I64(arg2)) {
+ TCGv_i64 t0;
+ t0 = tcg_temp_new_i64();
+ tcg_gen_or_i64(t0, arg1, arg2);
+ tcg_gen_not_i64(ret, t0);
+ tcg_temp_free_i64(t0);
+ } else {
+ tcg_gen_not_i64(ret, arg1);
+ }
}
static inline void tcg_gen_orc_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
next reply other threads:[~2009-03-09 22:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-09 22:35 Aurelien Jarno [this message]
2009-03-10 1:30 ` [Qemu-devel] [6798] tcg: optimize nor(X, Y, Y), used on PPC for not(X, Y) Paul Brook
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=E1Lgo4B-0007Sy-47@cvs.savannah.gnu.org \
--to=aurelien@aurel32.net \
--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 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.