public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Philipp Tomsich <ptomsich@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc(refs/vendors/vrull/heads/for-upstream)] RISC-V: Recognize bexti in negated if-conversion
Date: Fri, 18 Nov 2022 11:35:29 +0000 (GMT)	[thread overview]
Message-ID: <20221118113529.3CEFE384F6EA@sourceware.org> (raw)

https://gcc.gnu.org/g:7ee9e758ae0389a4b29b6cba6355bed682b835d2

commit 7ee9e758ae0389a4b29b6cba6355bed682b835d2
Author: Philipp Tomsich <philipp.tomsich@vrull.eu>
Date:   Wed Mar 30 00:01:30 2022 +0200

    RISC-V: Recognize bexti in negated if-conversion
    
    While the positive case "if ((bits >> SHAMT) & 1)" for SHAMT 0..10 can
    trigger conversion into efficient branchless sequences
      - with Zbs (bexti + neg + and)
      - with XVentanaCondOps (andi + vt.maskc)
    the inverted/negated case results in
      andi a5,a0,1024
      seqz a5,a5
      neg a5,a5
      and a5,a5,a1
    due to how the sequence presents to the combine pass.
    
    This adds an additional splitter to reassociate the polarity reversed
    case into bexti + addi, if Zbs is present.
    
    gcc/ChangeLog:
    
        * config/riscv/xventanacondops.md: Add split to reassociate
          "andi + seqz + neg" into "bexti + addi".
    
    Commit-changes: 2
    - Removed spurious empty line at the end of xventanacondops.md.

Diff:
---
 gcc/config/riscv/xventanacondops.md | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/gcc/config/riscv/xventanacondops.md b/gcc/config/riscv/xventanacondops.md
index f2eb886659f..1e01fe1c6de 100644
--- a/gcc/config/riscv/xventanacondops.md
+++ b/gcc/config/riscv/xventanacondops.md
@@ -123,3 +123,13 @@
 {
   operands[2] = GEN_INT(1 << UINTVAL(operands[2]));
 })
+
+(define_split
+  [(set (match_operand:X 0 "register_operand")
+	(neg:X (eq:X (zero_extract:X (match_operand:X 1 "register_operand")
+				     (const_int 1)
+				     (match_operand 2 "immediate_operand"))
+		     (const_int 0))))]
+  "!TARGET_XVENTANACONDOPS && TARGET_ZBS"
+  [(set (match_dup 0) (zero_extract:X (match_dup 1) (const_int 1) (match_dup 2)))
+   (set (match_dup 0) (plus:X (match_dup 0) (const_int -1)))])

             reply	other threads:[~2022-11-18 11:35 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-18 11:35 Philipp Tomsich [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-12-01 13:23 Philipp Tomsich
2022-11-18 20:26 Philipp Tomsich
2022-11-18 20:23 Philipp Tomsich
2022-11-17 22:26 Philipp Tomsich
2022-11-15 15:00 Philipp Tomsich
2022-11-15 14:01 Philipp Tomsich

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=20221118113529.3CEFE384F6EA@sourceware.org \
    --to=ptomsich@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).