From: Nathan Froyd <froydnj@codesourcery.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 8/9] Implement new logical instructions for ppc
Date: Tue, 21 Apr 2009 18:12:16 -0700 [thread overview]
Message-ID: <1240362737-10053-9-git-send-email-froydnj@codesourcery.com> (raw)
In-Reply-To: <1240362737-10053-1-git-send-email-froydnj@codesourcery.com>
Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
---
tcg/ppc/tcg-target.c | 26 ++++++++++++++++++++++++++
tcg/ppc/tcg-target.h | 5 +++++
2 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/tcg/ppc/tcg-target.c b/tcg/ppc/tcg-target.c
index e3f4b59..4e83982 100644
--- a/tcg/ppc/tcg-target.c
+++ b/tcg/ppc/tcg-target.c
@@ -332,6 +332,11 @@ static int tcg_target_const_match(tcg_target_long val,
#define EXTSB XO31(954)
#define EXTSH XO31(922)
+#define NAND XO31(476)
+#define NOR XO31(124)
+#define EQV XO31(284)
+#define ANDC XO31( 60)
+#define ORC XO31(412)
#define ADD XO31(266)
#define ADDE XO31(138)
#define ADDC XO31( 10)
@@ -1261,6 +1266,22 @@ static void tcg_out_op(TCGContext *s, int opc, const TCGArg *args,
tcg_out32 (s, XOR | SAB (args[1], args[0], args[2]));
break;
+ case INDEX_op_andc_i32:
+ tcg_out32 (s, ANDC | SAB (args[0], args[1], args[2]));
+ break;
+ case INDEX_op_eqv_i32:
+ tcg_out32 (s, EQV | SAB (args[0], args[1], args[2]));
+ break;
+ case INDEX_op_nand_i32:
+ tcg_out32 (s, NAND | SAB (args[0], args[1], args[2]));
+ break;
+ case INDEX_op_nor_i32:
+ tcg_out32 (s, NOR | SAB (args[0], args[1], args[2]));
+ break;
+ case INDEX_op_orc_i32:
+ tcg_out32 (s, ORC | SAB (args[0], args[1], args[2]));
+ break;
+
case INDEX_op_mul_i32:
if (const_args[2]) {
if (args[2] == (int16_t) args[2])
@@ -1456,6 +1477,11 @@ static const TCGTargetOpDef ppc_op_defs[] = {
{ INDEX_op_and_i32, { "r", "r", "ri" } },
{ INDEX_op_or_i32, { "r", "r", "ri" } },
{ INDEX_op_xor_i32, { "r", "r", "ri" } },
+ { INDEX_op_andc_i32, { "r", "r", "r" } },
+ { INDEX_op_eqv_i32, { "r", "r", "r" } },
+ { INDEX_op_nand_i32, { "r", "r", "r" } },
+ { INDEX_op_nor_i32, { "r", "r", "r" } },
+ { INDEX_op_orc_i32, { "r", "r", "r" } },
{ INDEX_op_shl_i32, { "r", "r", "ri" } },
{ INDEX_op_shr_i32, { "r", "r", "ri" } },
diff --git a/tcg/ppc/tcg-target.h b/tcg/ppc/tcg-target.h
index 5faf730..385f0ff 100644
--- a/tcg/ppc/tcg-target.h
+++ b/tcg/ppc/tcg-target.h
@@ -81,6 +81,11 @@ enum {
#define TCG_TARGET_HAS_div_i32
#define TCG_TARGET_HAS_ext8s_i32
#define TCG_TARGET_HAS_ext16s_i32
+#define TCG_TARGET_HAS_andc_i32
+#define TCG_TARGET_HAS_eqv_i32
+#define TCG_TARGET_HAS_nand_i32
+#define TCG_TARGET_HAS_nor_i32
+#define TCG_TARGET_HAS_orc_i32
#define TCG_AREG0 TCG_REG_R27
#define TCG_AREG1 TCG_REG_R24
--
1.6.0.5
next prev parent reply other threads:[~2009-04-22 6:39 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 ` [Qemu-devel] [PATCH 1/9] Add TCG ops for various logical operations Nathan Froyd
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 ` Nathan Froyd [this message]
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-9-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).