public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/107564] New: Fail to recognize overflow check for addition of __uint128_t operands
@ 2022-11-08  0:00 cassio.neri at gmail dot com
  2022-11-08  0:07 ` [Bug tree-optimization/107564] " pinskia at gcc dot gnu.org
  2022-11-08  9:38 ` [Bug target/107564] " rguenth at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: cassio.neri at gmail dot com @ 2022-11-08  0:00 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 107564
           Summary: Fail to recognize overflow check for addition of
                    __uint128_t operands
           Product: gcc
           Version: 12.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: cassio.neri at gmail dot com
  Target Milestone: ---

Consider:

char f128(__uint128_t m, __uint128_t n) {
    #if !defined(USE_BUILTIN_ADD_OVERFLOW)
        m += n;
        return m < n;
    #else
        __uint128_t r;
        return __builtin_add_overflow(m, n, &r);
    #endif
}

When USE_BUILTIN_ADD_OVERFLOW is undefined, GCC fails to recognise this is an
overflow check and with -O3 generates this:

        mov     r8, rdi
        mov     rax, rsi
        mov     rdi, rax
        mov     rsi, r8
        mov     rax, rdx
        mov     rdx, rcx
        add     rsi, rax
        adc     rdi, rcx
        cmp     rsi, rax
        mov     rcx, rdi
        sbb     rcx, rdx
        setc    al
        ret

When USE_BUILTIN_ADD_OVERFLOW is defined, it generates better code but still
suboptimal:

        mov     r8, rdi
        mov     rax, rsi
        mov     rsi, r8
        mov     rdi, rax
        add     rsi, rdx
        adc     rdi, rcx
        setc    al
        ret

For other unsigned integer types GCC generates the same optimal code for both
methods. For instance for uint64_t:

        add     rdi, rsi
        setc    al
        ret

https://godbolt.org/z/bj4M5no4j

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

* [Bug tree-optimization/107564] Fail to recognize overflow check for addition of __uint128_t operands
  2022-11-08  0:00 [Bug tree-optimization/107564] New: Fail to recognize overflow check for addition of __uint128_t operands cassio.neri at gmail dot com
@ 2022-11-08  0:07 ` pinskia at gcc dot gnu.org
  2022-11-08  9:38 ` [Bug target/107564] " rguenth at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-11-08  0:07 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|https://godbolt.org/z/bj4M5 |
                   |no4j                        |

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
https://godbolt.org/z/bj4M5no4j

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

* [Bug target/107564] Fail to recognize overflow check for addition of __uint128_t operands
  2022-11-08  0:00 [Bug tree-optimization/107564] New: Fail to recognize overflow check for addition of __uint128_t operands cassio.neri at gmail dot com
  2022-11-08  0:07 ` [Bug tree-optimization/107564] " pinskia at gcc dot gnu.org
@ 2022-11-08  9:38 ` rguenth at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-11-08  9:38 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |x86_64-*-* i?86-*-*
   Last reconfirmed|                            |2022-11-08
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |NEW
          Component|middle-end                  |target

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

end of thread, other threads:[~2022-11-08  9:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-08  0:00 [Bug tree-optimization/107564] New: Fail to recognize overflow check for addition of __uint128_t operands cassio.neri at gmail dot com
2022-11-08  0:07 ` [Bug tree-optimization/107564] " pinskia at gcc dot gnu.org
2022-11-08  9:38 ` [Bug target/107564] " rguenth 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).