public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Vineet Gupta <vineetg@rivosinc.com>
To: Palmer Dabbelt <palmer@rivosinc.com>
Cc: jeffreyalaw@gmail.com, gcc-patches@gcc.gnu.org,
	Kito Cheng <kito.cheng@gmail.com>,
	gnu-toolchain@rivosinc.com
Subject: Re: [PATCH] RISC-V: zicond: remove bogus opt2 pattern
Date: Fri, 1 Sep 2023 12:17:22 -0700	[thread overview]
Message-ID: <278fb633-72ff-9767-a547-2076e54a1bff@rivosinc.com> (raw)
In-Reply-To: <mhng-00673168-e510-42ad-bc73-39a40fdf3566@palmer-ri-x1c9a>



On 9/1/23 10:40, Palmer Dabbelt wrote:
>
> Just working through this in email, as there's a lot of 
> double-negatives and I managed to screw up my Linux PR this morning so 
> I may not be thinking that well...
>
> The docs say "(if_then_else test true-value false-value)".  So in this 
> case it's
>
>    test:  (ne (match_operand:X 1 "register_operand" "r") (const_int 0))
>    true:  (match_operand:GPR 2 "register_operand" "r")
>    false: (match_operand:GPR 3 "register_operand" "1") == 
> (match_operand:X 1 "register_operand" "r")
>
> and we're encoding it as
>
>    czero.nez %0,%2,%1
>
> so that's
>
>    rd:  output
>    rs1: on-true
>    rs2: condition (the value inside the ne in RTL)
>
> That looks correct to me: the instruction's condition source register 
> is inside a "(ne ... 0)", but we're doing the cmov.nez so it looks OK.

Yes it is fine, until you end up having both operand 2 and operand 3 
have non-zero values at runtime and somehow match this pattern Then the 
semantics of czero* are not honored.

> It might be easier for everyone to understand if you add a specific 
> testcase for just the broken codegen.  I'm not having luck 
> constructing a small reproducer (though I don't have a clean tree 
> lying around, so I might have screwed something up here).
>
> IIUC something like
>
>    long func(long x, long a) {
>        if (a != 0)
>          return x;
>        return 0;
>    }
>
> should do it, but I'm getting
>
>    func:
>        czero.eqz       a0,a0,a1
>        ret

Unfortunately tests any simpler don't trigger it - they code seqs just 
get optimized away - otherwise Jeff would have found this 3 weeks ago ;-)
Just use gcc/testsuite/gcc.c-torture/execute/pr60003.c

Thx,
-Vineet

      reply	other threads:[~2023-09-01 19:17 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-30 21:57 Vineet Gupta
2023-08-31 13:51 ` Jeff Law
2023-08-31 17:57   ` Vineet Gupta
2023-09-01 13:13     ` Jeff Law
2023-09-01 18:55       ` Vineet Gupta
2023-09-01 17:40     ` Palmer Dabbelt
2023-09-01 19:17       ` Vineet Gupta [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=278fb633-72ff-9767-a547-2076e54a1bff@rivosinc.com \
    --to=vineetg@rivosinc.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=gnu-toolchain@rivosinc.com \
    --cc=jeffreyalaw@gmail.com \
    --cc=kito.cheng@gmail.com \
    --cc=palmer@rivosinc.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).