public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/94846] New: Failure to optimize jnc+inc into adc
@ 2020-04-29 12:05 gabravier at gmail dot com
  2020-04-29 12:12 ` [Bug rtl-optimization/94846] " gabravier at gmail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: gabravier at gmail dot com @ 2020-04-29 12:05 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 94846
           Summary: Failure to optimize jnc+inc into adc
           Product: gcc
           Version: 10.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gabravier at gmail dot com
  Target Milestone: ---

unsigned f(unsigned *p, unsigned x)
{
    unsigned u = *p;
    *p += x;
    if (u > *p)
        ++*p;

    return *p;
}

This is what LLVM outputs with -O3 : 

f(unsigned int*, unsigned int): # @f(unsigned int*, unsigned int)
  mov eax, esi
  add eax, dword ptr [rdi]
  adc eax, 0
  mov dword ptr [rdi], eax
  ret

This is what GCC outputs :

f(unsigned int*, unsigned int):
  mov eax, esi
  add eax, DWORD PTR [rdi]
  jnc .L6
  add eax, 1
.L6:
  mov DWORD PTR [rdi], eax
  ret

GCC should most likely be optimizing this to the same thing as LLVM.

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

end of thread, other threads:[~2021-09-05  0:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-29 12:05 [Bug tree-optimization/94846] New: Failure to optimize jnc+inc into adc gabravier at gmail dot com
2020-04-29 12:12 ` [Bug rtl-optimization/94846] " gabravier at gmail dot com
2020-04-29 13:03 ` gabravier at gmail dot com
2020-11-25 18:05 ` [Bug tree-optimization/94846] " ubizjak at gmail dot com
2020-11-26  8:42 ` rguenth at gcc dot gnu.org
2021-09-05  0:13 ` 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).