public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Michael Meissner <meissner@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc(refs/vendors/ibm/heads/int128)] Power10: Add int128_t comparisons.
Date: Thu,  5 Nov 2020 05:58:23 +0000 (GMT)	[thread overview]
Message-ID: <20201105055823.5C13C385DC37@sourceware.org> (raw)

https://gcc.gnu.org/g:131b69ed9617a591d80e27187910d9a6a37eded1

commit 131b69ed9617a591d80e27187910d9a6a37eded1
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Thu Nov 5 00:50:06 2020 -0500

    Power10: Add int128_t comparisons.
    
    gcc/
    2020-11-05  Michael Meissner  <meissner@linux.ibm.com>
    
            * config/rs6000/rs6000.md (cbranchti4): New insn.
            (cmpti_signed): New insn.
            (cmpti_unsigned): New insn.

Diff:
---
 gcc/config/rs6000/rs6000.md | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md
index f76a073d6c9..566ec9b9cac 100644
--- a/gcc/config/rs6000/rs6000.md
+++ b/gcc/config/rs6000/rs6000.md
@@ -11374,6 +11374,17 @@
   DONE;
 })
 
+(define_expand "cbranchti4"
+  [(use (match_operator 0 "comparison_operator"
+         [(match_operand:TI 1 "gpc_reg_operand")
+          (match_operand:TI 2 "gpc_reg_operand")]))
+   (use (match_operand 3))]
+  "TARGET_QUAD_ARITHMETIC && TARGET_POWER10"
+{
+  rs6000_emit_cbranch (TImode, operands);
+  DONE;
+})
+
 (define_expand "cbranch<mode>4"
   [(use (match_operator 0 "comparison_operator"
          [(match_operand:FP 1 "gpc_reg_operand")
@@ -11849,6 +11860,14 @@
   "cmp<wd>%I2 %0,%1,%2"
   [(set_attr "type" "cmp")])
 
+(define_insn "*cmpti_signed"
+  [(set (match_operand:CC 0 "cc_reg_operand" "=y")
+	(compare:CC (match_operand:TI 1 "gpc_reg_operand" "v")
+		    (match_operand:TI 2 "gpc_reg_operand" "v")))]
+  "TARGET_QUAD_ARITHMETIC && TARGET_POWER10"
+  "vcmpsq %0,%1,%2"
+  [(set_attr "type" "veccmp")])
+
 (define_insn "*cmp<mode>_unsigned"
   [(set (match_operand:CCUNS 0 "cc_reg_operand" "=y")
 	(compare:CCUNS (match_operand:GPR 1 "gpc_reg_operand" "r")
@@ -11857,6 +11876,14 @@
   "cmpl<wd>%I2 %0,%1,%2"
   [(set_attr "type" "cmp")])
 
+(define_insn "*cmpti_unsigned"
+  [(set (match_operand:CCUNS 0 "cc_reg_operand" "=y")
+	(compare:CCUNS (match_operand:TI 1 "gpc_reg_operand" "v")
+		       (match_operand:TI 2 "gpc_reg_operand" "v")))]
+  "TARGET_QUAD_ARITHMETIC && TARGET_POWER10"
+  "vcmpuq %0,%1,%2"
+  [(set_attr "type" "veccmp")])
+
 ;; If we are comparing a register for equality with a large constant,
 ;; we can do this with an XOR followed by a compare.  But this is profitable
 ;; only if the large constant is only used for the comparison (and in this


                 reply	other threads:[~2020-11-05  5:58 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20201105055823.5C13C385DC37@sourceware.org \
    --to=meissner@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.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 read-only IMAP folder(s) and NNTP newsgroup(s).