public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/111346] New: `X <= MINMAX` pattern is missing :c on the cmp
@ 2023-09-08 21:51 pinskia at gcc dot gnu.org
  2023-09-08 21:52 ` [Bug tree-optimization/111346] " pinskia at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-09-08 21:51 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111346

            Bug ID: 111346
           Summary: `X <= MINMAX` pattern is missing :c on the cmp
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Keywords: internal-improvement, missed-optimization
          Severity: enhancement
          Priority: P3
         Component: tree-optimization
          Assignee: pinskia at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

The pattern:
```
/* X <= MAX(X, Y) -> true
   X > MAX(X, Y) -> false 
   X >= MIN(X, Y) -> true
   X < MIN(X, Y) -> false */
(for minmax (min     min     max     max     )
     cmp    (ge      lt      le      gt      )
 (simplify
  (cmp @0 (minmax:c @0 @1))
  { constant_boolean_node (cmp == GE_EXPR || cmp == LE_EXPR, type); } ))
```
Is missing :c on the cmp which causes us to miss:
MAX(X, Y) >= X -> true
etc.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-09-11  2:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-08 21:51 [Bug tree-optimization/111346] New: `X <= MINMAX` pattern is missing :c on the cmp pinskia at gcc dot gnu.org
2023-09-08 21:52 ` [Bug tree-optimization/111346] " pinskia at gcc dot gnu.org
2023-09-10 20:52 ` pinskia at gcc dot gnu.org
2023-09-10 23:16 ` pinskia at gcc dot gnu.org
2023-09-10 23:18 ` pinskia at gcc dot gnu.org
2023-09-11  2:19 ` cvs-commit at gcc dot gnu.org
2023-09-11  2:20 ` pinskia at gcc dot gnu.org

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).