public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jeff Law <jeffreyalaw@gmail.com>
To: Raphael Moreira Zinsly <rzinsly@ventanamicro.com>,
	gcc-patches@gcc.gnu.org
Subject: Re: [PATCH] RISC-V: Add bext pattern for ZBS
Date: Fri, 5 May 2023 18:31:01 -0600	[thread overview]
Message-ID: <cc783978-9791-af8d-3130-494fa0bc6a64@gmail.com> (raw)
In-Reply-To: <20230504170808.1829411-1-rzinsly@ventanamicro.com>



On 5/4/23 11:08, Raphael Moreira Zinsly wrote:
> When (a & (1 << bit_no)) is tested inside an IF we can use a bit extract.
> 
> 	gcc/ChangeLog:
> 
> 		* config/riscv/bitmanip.md
> 		(bext<mode>): Rename one to avoid name clash.
> 		(branch<X:mode>_bext): New split pattern.
> 
> 	gcc/testsuite/ChangeLog:
> 		* gcc.target/riscv/zbs-bext-02.c: New test.


> ---
>   gcc/config/riscv/bitmanip.md                 | 24 +++++++++++++++++++-
>   gcc/testsuite/gcc.target/riscv/zbs-bext-02.c | 18 +++++++++++++++
>   2 files changed, 41 insertions(+), 1 deletion(-)
>   create mode 100644 gcc/testsuite/gcc.target/riscv/zbs-bext-02.c
> 
> diff --git a/gcc/config/riscv/bitmanip.md b/gcc/config/riscv/bitmanip.md
> index a27fc3e34a1..e29e2d1fa53 100644
> --- a/gcc/config/riscv/bitmanip.md
> +++ b/gcc/config/riscv/bitmanip.md
> @@ -595,7 +595,7 @@
>   ;; When performing `(a & (1UL << bitno)) ? 0 : -1` the combiner
>   ;; usually has the `bitno` typed as X-mode (i.e. no further
>   ;; zero-extension is performed around the bitno).
> -(define_insn "*bext<mode>"
> +(define_insn "*bext<mode>_2"
>     [(set (match_operand:X 0 "register_operand" "=r")
>   	(zero_extract:X (match_operand:X 1 "register_operand" "r")
>   			(const_int 1)
This doesn't make sense to me.  Is it possible this was from an earlier 
version of the patch?

In general when we have  a * prefix, we're allowed to have multiple 
patterns with the same name.  Essentially the pattern names are just for 
debugging purposes, no API is exposed to generate those patterns when 
there's a '*' prefix.


> @@ -720,6 +720,28 @@
>      operands[9] = GEN_INT (clearbit);
>   })
>   
> +;; IF_THEN_ELSE: test for (a & (1 << BIT_NO))
> +(define_insn_and_split "*branch<X:mode>_bext"
> +  [(set (pc)
> +	(if_then_else
> +	  (match_operator 1 "equality_operator"
> +        [(zero_extract:X (match_operand:X 2 "register_operand" "r")
> +                (const_int 1)
> +                (zero_extend:X (match_operand:QI 3 "register_operand" "r")))
> +	    (const_int 0)])
> +	 (label_ref (match_operand 0 "" ""))
> +	 (pc)))
> +   (clobber (match_scratch:X 4 "=&r"))]
Formatting nit.  In general the operands of a rtx operator all line up 
together when we can.  So in this case the (const_int 1) should line up 
under the (match_operand:X 2).  Similarly for the (zero_extend:X).  That 
may require wrapping the zero_extned line.  The way to do that would be 
to bring its match_operand down to a new line, indent it two spaces from 
the open paren of the (zero_extend.



It's been a while since we poked at this, so maybe you've already told 
me before, but would it make sense to use the GPR iterator rather than 
the X iterator?

GPR would result in two patterns that are available to match at the same 
time, one for SI, another for DI.

X also results in two patterns, but only one is available at any given 
time dependent on TARGET_64BIT.

I guess the rest are defined in terms of X, particularly the bext<mode> 
pattern.  So nevermind, keep it as X.

So I think the only things we potentially adjust is to remove the hunk 
which changes the name of the *bext<mode> pattern and the whitespace 
fix.  I think we'll be good to go after those changes.

Jeff

      reply	other threads:[~2023-05-06  0:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-04 17:08 Raphael Moreira Zinsly
2023-05-06  0:31 ` Jeff Law [this message]

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=cc783978-9791-af8d-3130-494fa0bc6a64@gmail.com \
    --to=jeffreyalaw@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=rzinsly@ventanamicro.com \
    /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).