public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/104992] New: [missed optimization] x / y * y == x not optimized to x % y == 0
@ 2022-03-20 15:19 tilkax at gmail dot com
  2022-03-20 20:25 ` [Bug tree-optimization/104992] " pinskia at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: tilkax at gmail dot com @ 2022-03-20 15:19 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104992
           Summary: [missed optimization] x / y * y == x not optimized to
                    x % y == 0
           Product: gcc
           Version: 11.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tilkax at gmail dot com
  Target Milestone: ---

This is especially helpful for constant y because checking
division-by-a-constant remainders against zero allows further optimization.

Repro case:

unsigned foo(unsigned x, unsigned y)
{
    return x / y * y == x;
}

GCC -O3:
        mov     eax, edi
        xor     edx, edx
        div     esi
        mov     eax, edi
        sub     eax, edx
        cmp     eax, edi
        sete    al
        movzx   eax, al
        ret

Clang -O3:
        mov     eax, edi
        xor     edx, edx
        div     esi
        xor     eax, eax
        test    edx, edx
        sete    al
        ret

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

end of thread, other threads:[~2024-01-23 12:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-20 15:19 [Bug tree-optimization/104992] New: [missed optimization] x / y * y == x not optimized to x % y == 0 tilkax at gmail dot com
2022-03-20 20:25 ` [Bug tree-optimization/104992] " pinskia at gcc dot gnu.org
2022-03-21  9:37 ` rguenth at gcc dot gnu.org
2022-08-01 13:24 ` cvs-commit at gcc dot gnu.org
2022-08-03 16:00 ` seurer at gcc dot gnu.org
2022-08-11  8:29 ` cvs-commit at gcc dot gnu.org
2024-01-23 12:12 ` xry111 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).