From: Nathan Froyd <froydnj@codesourcery.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 1/9] Add TCG ops for various logical operations
Date: Tue, 21 Apr 2009 18:12:09 -0700 [thread overview]
Message-ID: <1240362737-10053-2-git-send-email-froydnj@codesourcery.com> (raw)
In-Reply-To: <1240362737-10053-1-git-send-email-froydnj@codesourcery.com>
andc, orc, nor, nand, and eqv, to be precise.
Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
---
tcg/tcg-opc.h | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/tcg/tcg-opc.h b/tcg/tcg-opc.h
index 3a095fc..e4e1ce4 100644
--- a/tcg/tcg-opc.h
+++ b/tcg/tcg-opc.h
@@ -67,6 +67,22 @@ DEF2(divu2_i32, 2, 3, 0, 0)
DEF2(and_i32, 1, 2, 0, 0)
DEF2(or_i32, 1, 2, 0, 0)
DEF2(xor_i32, 1, 2, 0, 0)
+#ifdef TCG_TARGET_HAS_andc_i32
+DEF2(andc_i32, 1, 2, 0, 0)
+#endif
+#ifdef TCG_TARGET_HAS_eqv_i32
+DEF2(eqv_i32, 1, 2, 0, 0)
+#endif
+#ifdef TCG_TARGET_HAS_nand_i32
+DEF2(nand_i32, 1, 2, 0, 0)
+#endif
+#ifdef TCG_TARGET_HAS_nor_i32
+DEF2(nor_i32, 1, 2, 0, 0)
+#endif
+#ifdef TCG_TARGET_HAS_orc_i32
+DEF2(orc_i32, 1, 2, 0, 0)
+#endif
+
/* shifts/rotates */
DEF2(shl_i32, 1, 2, 0, 0)
DEF2(shr_i32, 1, 2, 0, 0)
@@ -133,6 +149,22 @@ DEF2(divu2_i64, 2, 3, 0, 0)
DEF2(and_i64, 1, 2, 0, 0)
DEF2(or_i64, 1, 2, 0, 0)
DEF2(xor_i64, 1, 2, 0, 0)
+#ifdef TCG_TARGET_HAS_andc_i64
+DEF2(andc_i64, 1, 2, 0, 0)
+#endif
+#ifdef TCG_TARGET_HAS_eqv_i64
+DEF2(eqv_i64, 1, 2, 0, 0)
+#endif
+#ifdef TCG_TARGET_HAS_nand_i64
+DEF2(nand_i64, 1, 2, 0, 0)
+#endif
+#ifdef TCG_TARGET_HAS_nor_i64
+DEF2(nor_i64, 1, 2, 0, 0)
+#endif
+#ifdef TCG_TARGET_HAS_orc_i64
+DEF2(orc_i64, 1, 2, 0, 0)
+#endif
+
/* shifts/rotates */
DEF2(shl_i64, 1, 2, 0, 0)
DEF2(shr_i64, 1, 2, 0, 0)
--
1.6.0.5
next prev parent reply other threads:[~2009-04-22 1:19 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-22 1:12 [Qemu-devel] [PATCH 0/9] tcg: improve logical op support for ppc hosts, v2 Nathan Froyd
2009-04-22 1:12 ` Nathan Froyd [this message]
2009-04-22 1:12 ` [Qemu-devel] [PATCH 2/9] specialize tcg_gen_not_i64 for 32-bit targets Nathan Froyd
2009-04-22 1:12 ` [Qemu-devel] [PATCH 3/9] implement specialized andc_i{32,64} Nathan Froyd
2009-04-22 1:12 ` [Qemu-devel] [PATCH 4/9] implement specialized eqv_{i32,i64} Nathan Froyd
2009-04-22 1:12 ` [Qemu-devel] [PATCH 5/9] implement specialized nand_i{32,64} Nathan Froyd
2009-04-22 1:12 ` [Qemu-devel] [PATCH 6/9] implement specialized nor_i{32,64} Nathan Froyd
2009-04-22 1:12 ` [Qemu-devel] [PATCH 7/9] implement specialized orc_i{32,64} Nathan Froyd
2009-04-22 1:12 ` [Qemu-devel] [PATCH 8/9] Implement new logical instructions for ppc Nathan Froyd
2009-04-22 1:12 ` [Qemu-devel] [PATCH 9/9] Implement new logical instructions for ppc64 Nathan Froyd
2009-04-22 13:44 ` malc
2009-04-22 14:02 ` Nathan Froyd
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=1240362737-10053-2-git-send-email-froydnj@codesourcery.com \
--to=froydnj@codesourcery.com \
--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 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).