public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2
@ 2024-02-20 10:16 652023330028 at smail dot nju.edu.cn
  2024-02-20 23:50 ` [Bug tree-optimization/114009] " pinskia at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: 652023330028 at smail dot nju.edu.cn @ 2024-02-20 10:16 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 114009
           Summary: Missed optimization: (!a) * a => 0 when a=(a/2)*2
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: 652023330028 at smail dot nju.edu.cn
  Target Milestone: ---

Hello, we noticed that the code below can be optimized as stated in the title
((!a) * a => 0), but gcc -O3 missed it.

Different from PR 113716, this example can be optimized under the option of gcc
-O3 -fwrapv. At the same time, their patterns are different.

https://godbolt.org/z/GrPY1d6o3

int w;
void func(int a) {
    a = (a/2)*2;
    w = (!a) * a;
}

GCC -O3 :
func(int):
        mov     eax, edi
        xor     edx, edx
        shr     eax, 31
        add     eax, edi
        add     edi, 1
        sar     eax
        cmp     edi, 2
        cmova   eax, edx
        add     eax, eax
        mov     DWORD PTR w[rip], eax
        ret

Expected code (GCC -O3 -fwrapv):
func(int):
        mov     DWORD PTR w[rip], 0
        ret

Thank you very much for your time and effort! We look forward to hearing from
you.

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

* [Bug tree-optimization/114009] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
@ 2024-02-20 23:50 ` pinskia at gcc dot gnu.org
  2024-02-20 23:56 ` [Bug tree-optimization/114009] [11/12/13/14 Regression] " pinskia at gcc dot gnu.org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-02-20 23:50 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement

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

* [Bug tree-optimization/114009] [11/12/13/14 Regression] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
  2024-02-20 23:50 ` [Bug tree-optimization/114009] " pinskia at gcc dot gnu.org
@ 2024-02-20 23:56 ` pinskia at gcc dot gnu.org
  2024-02-21  0:03 ` pinskia at gcc dot gnu.org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-02-20 23:56 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |11.5
      Known to work|                            |9.5.0
      Known to fail|                            |10.2.0
           Severity|enhancement                 |normal
            Summary|Missed optimization: (!a) * |[11/12/13/14 Regression]
                   |a => 0 when a=(a/2)*2       |Missed optimization: (!a) *
                   |                            |a => 0 when a=(a/2)*2

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

* [Bug tree-optimization/114009] [11/12/13/14 Regression] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
  2024-02-20 23:50 ` [Bug tree-optimization/114009] " pinskia at gcc dot gnu.org
  2024-02-20 23:56 ` [Bug tree-optimization/114009] [11/12/13/14 Regression] " pinskia at gcc dot gnu.org
@ 2024-02-21  0:03 ` pinskia at gcc dot gnu.org
  2024-02-22 10:21 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-02-21  0:03 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2024-02-21
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.

What is happening is:
`(a/2)*2 == 0` gets optimized to `((unsigned)a) + 1 <= 2` and then we don't
handle:
`((unsigned)a) + 1 <= 2 ? (a/2) : 0` which is just 0. as a has the range of
[-1,1] for the truth side and divide that by 2 is always 0.

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

* [Bug tree-optimization/114009] [11/12/13/14 Regression] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
                   ` (2 preceding siblings ...)
  2024-02-21  0:03 ` pinskia at gcc dot gnu.org
@ 2024-02-22 10:21 ` rguenth at gcc dot gnu.org
  2024-03-05 13:02 ` jakub at gcc dot gnu.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: rguenth at gcc dot gnu.org @ 2024-02-22 10:21 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |85316
           Priority|P3                          |P2


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85316
[Bug 85316] [meta-bug] VRP range propagation missed cases

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

* [Bug tree-optimization/114009] [11/12/13/14 Regression] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
                   ` (3 preceding siblings ...)
  2024-02-22 10:21 ` rguenth at gcc dot gnu.org
@ 2024-03-05 13:02 ` jakub at gcc dot gnu.org
  2024-03-05 14:14 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jakub at gcc dot gnu.org @ 2024-03-05 13:02 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Is the regression marker added for the
r11-2550-gca2b8c082c4f16919071c9f8de8db0b33b54c405 change:
        movl    %edi, %eax
-       xorl    %edx, %edx
+       movl    $0, %edx
        shrl    $31, %eax
        addl    %edi, %eax
+       addl    $1, %edi
        andl    $-2, %eax
-       sete    %dl
-       imull   %edx, %eax
+       cmpl    $2, %edi
+       cmova   %edx, %eax
        movl    %eax, w(%rip)
        ret
or for the r12-5392-g527e54a431473cc497204226a21f2831d2375e66 change:
-       movl    %edi, %eax
-       movl    $0, %edx
-       shrl    $31, %eax
-       addl    %edi, %eax
-       addl    $1, %edi
-       andl    $-2, %eax
-       cmpl    $2, %edi
-       cmova   %edx, %eax
+       leal    1(%rdi), %eax
+       movl    %edi, %edx
+       cmpl    $2, %eax
+       setbe   %al
+       shrl    $31, %edx
+       addl    %edi, %edx
+       movzbl  %al, %eax
+       sarl    %edx
+       imull   %edx, %eax
+       addl    %eax, %eax
or both?  I don't think we ever optimized this without -fwrapv to just 0.

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

* [Bug tree-optimization/114009] [11/12/13/14 Regression] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
                   ` (4 preceding siblings ...)
  2024-03-05 13:02 ` jakub at gcc dot gnu.org
@ 2024-03-05 14:14 ` jakub at gcc dot gnu.org
  2024-03-05 14:24 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jakub at gcc dot gnu.org @ 2024-03-05 14:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
That said, I fail to see why the a/2*2 in there matters.
a*!a is simply always 0 for integral types, both signed and unsigned, including
signed 1-bit precision.  If a is 0, the result is 0*1 (or for the last one
0*-1), if a is non-zero, then the result is a*0.

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

* [Bug tree-optimization/114009] [11/12/13/14 Regression] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
                   ` (5 preceding siblings ...)
  2024-03-05 14:14 ` jakub at gcc dot gnu.org
@ 2024-03-05 14:24 ` jakub at gcc dot gnu.org
  2024-03-07  7:47 ` cvs-commit at gcc dot gnu.org
  2024-03-15  9:45 ` jakub at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: jakub at gcc dot gnu.org @ 2024-03-05 14:24 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 57615
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=57615&action=edit
gcc14-pr114009.patch

Untested fix.

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

* [Bug tree-optimization/114009] [11/12/13/14 Regression] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
                   ` (6 preceding siblings ...)
  2024-03-05 14:24 ` jakub at gcc dot gnu.org
@ 2024-03-07  7:47 ` cvs-commit at gcc dot gnu.org
  2024-03-15  9:45 ` jakub at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-03-07  7:47 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:95b6ee96348041eaee9133f082b57f3e57ef0b11

commit r14-9350-g95b6ee96348041eaee9133f082b57f3e57ef0b11
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Thu Mar 7 08:43:16 2024 +0100

    match.pd: Optimize a * !a to 0 [PR114009]

    The following patch attempts to fix an optimization regression through
    adding a simple simplification.  We already have the
    /* (m1 CMP m2) * d -> (m1 CMP m2) ? d : 0  */
    (if (!canonicalize_math_p ())
     (for cmp (tcc_comparison)
      (simplify
       (mult:c (convert (cmp@0 @1 @2)) @3)
       (if (INTEGRAL_TYPE_P (type)
            && INTEGRAL_TYPE_P (TREE_TYPE (@0)))
         (cond @0 @3 { build_zero_cst (type); })))
    optimization which otherwise triggers during the a * !a multiplication,
    but that is done only late and we aren't able through range assumptions
    optimize it yet anyway.

    The patch adds a specific simplification for it.
    If a is zero, then a * !a will be 0 * 1 (or for signed 1-bit 0 * -1)
    and so 0.
    If a is non-zero, then a * !a will be a * 0 and so again 0.
    THe pattern is valid for scalar integers, complex integers and vector
types,
    but I think will actually trigger only for the scalar integers.  For
    vector types I've added other two with VEC_COND_EXPR in it, for complex
    there are different GENERIC trees to match and it is something that likely
    would be never matched in GIMPLE, so I didn't handle that.

    2024-03-07  Jakub Jelinek  <jakub@redhat.com>

            PR tree-optimization/114009
            * genmatch.cc (decision_tree::gen): Emit ARG_UNUSED for captures
            argument even for GENERIC, not just for GIMPLE.
            * match.pd (a * !a -> 0): New simplifications.

            * gcc.dg/tree-ssa/pr114009.c: New test.

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

* [Bug tree-optimization/114009] [11/12/13/14 Regression] Missed optimization: (!a) * a => 0 when a=(a/2)*2
  2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
                   ` (7 preceding siblings ...)
  2024-03-07  7:47 ` cvs-commit at gcc dot gnu.org
@ 2024-03-15  9:45 ` jakub at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: jakub at gcc dot gnu.org @ 2024-03-15  9:45 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|11.5                        |14.0

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed for GCC 14+.  No plans to backport.

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

end of thread, other threads:[~2024-03-15  9:45 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-20 10:16 [Bug tree-optimization/114009] New: Missed optimization: (!a) * a => 0 when a=(a/2)*2 652023330028 at smail dot nju.edu.cn
2024-02-20 23:50 ` [Bug tree-optimization/114009] " pinskia at gcc dot gnu.org
2024-02-20 23:56 ` [Bug tree-optimization/114009] [11/12/13/14 Regression] " pinskia at gcc dot gnu.org
2024-02-21  0:03 ` pinskia at gcc dot gnu.org
2024-02-22 10:21 ` rguenth at gcc dot gnu.org
2024-03-05 13:02 ` jakub at gcc dot gnu.org
2024-03-05 14:14 ` jakub at gcc dot gnu.org
2024-03-05 14:24 ` jakub at gcc dot gnu.org
2024-03-07  7:47 ` cvs-commit at gcc dot gnu.org
2024-03-15  9:45 ` jakub 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).