public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/109053] New: [missed optimization] value-range tracking fails in simple case with __builtin_unreachable
@ 2023-03-07 14:14 avi at scylladb dot com
  2023-03-07 22:00 ` [Bug tree-optimization/109053] " pinskia at gcc dot gnu.org
  2023-03-07 22:14 ` pinskia at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: avi at scylladb dot com @ 2023-03-07 14:14 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 109053
           Summary: [missed optimization] value-range tracking fails in
                    simple case with __builtin_unreachable
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: avi at scylladb dot com
  Target Milestone: ---

I'm trying to use __builtin_unreachable() to inject assumptions about values of
variables into this code. In this case, the fact that a reference count must be
one or greater.

Consider the code:



struct refcounted {
    int* p;
    refcounted() : p(new int(1)) {}
    ~refcounted() {
        assume_stuff();
        if (!--*p) {
            delete p;
        }
    }
    refcounted(const refcounted& x) : p(x.p) {
        assume_stuff();
        ++*p;
        assume_stuff();
    }
    refcounted& operator=(const refcounted& x) {
        assume_stuff();
        x.assume_stuff();
        if (this != &x) {
            ++*x.p;
            if (!--*p) {
                delete p;
            }
            p = x.p;
        }
        assume_stuff();
        x.assume_stuff();
        return *this;
    }

    void assume_stuff() const {
        if (*p <= 0) {
            __builtin_unreachable();
        }
    }
};

refcounted assign(refcounted& a, refcounted& b) {
    auto x = a;
    a = b;
    return x;
}


In the assign() function, although we assign to `a`, we also return it (as
`x`), so there's never a reason to call operator delete. Yet the code does.

assign(refcounted&, refcounted&):
 mov    %rdi,%rax
 mov    (%rsi),%rdi
 mov    %rdi,(%rax)
 addl   $0x1,(%rdi)

; gcc now knows that (%rdi) is 2 or greater

 cmp    %rdx,%rsi
 je     68 <assign(refcounted&, refcounted&)+0x68>
 push   %rbp
 mov    %rdx,%rbp
 push   %rbx
 mov    %rsi,%rbx
 sub    $0x18,%rsp
 mov    (%rdx),%rcx
 addl   $0x1,(%rcx)
 mov    (%rdi),%edx
 sub    $0x1,%edx

; gcc now knows that (%rdi) is 1 or greater

 je     40 <assign(refcounted&, refcounted&)+0x40>


; so how can it be zero? 
; if gcc tracked the ranges correctly, it would have eliminated the branch and
made assign() a leaf function

 mov    %edx,(%rdi)
 mov    %rcx,(%rbx)
 add    $0x18,%rsp
 pop    %rbx
 pop    %rbp
 ret    
 cs nopw 0x0(%rax,%rax,1)
 mov    $0x4,%esi
 mov    %rax,0x8(%rsp)
 call   4f <assign(refcounted&, refcounted&)+0x4f>
    R_X86_64_PLT32 operator delete(void*, unsigned long)-0x4
 mov    0x0(%rbp),%rcx
 mov    0x8(%rsp),%rax
 mov    %rcx,(%rbx)
 add    $0x18,%rsp
 pop    %rbx
 pop    %rbp
 ret    
 nopw   0x0(%rax,%rax,1)
 ret    


Also on: https://godbolt.org/z/Tnehj86hc

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

* [Bug tree-optimization/109053] [missed optimization] value-range tracking fails in simple case with __builtin_unreachable
  2023-03-07 14:14 [Bug tree-optimization/109053] New: [missed optimization] value-range tracking fails in simple case with __builtin_unreachable avi at scylladb dot com
@ 2023-03-07 22:00 ` pinskia at gcc dot gnu.org
  2023-03-07 22:14 ` pinskia at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-03-07 22:00 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement

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

* [Bug tree-optimization/109053] [missed optimization] value-range tracking fails in simple case with __builtin_unreachable
  2023-03-07 14:14 [Bug tree-optimization/109053] New: [missed optimization] value-range tracking fails in simple case with __builtin_unreachable avi at scylladb dot com
  2023-03-07 22:00 ` [Bug tree-optimization/109053] " pinskia at gcc dot gnu.org
@ 2023-03-07 22:14 ` pinskia at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-03-07 22:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I am 100% sure there is an aliasing issue here or rather aliasing is getting in
the way of VRP.

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

end of thread, other threads:[~2023-03-07 22:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-07 14:14 [Bug tree-optimization/109053] New: [missed optimization] value-range tracking fails in simple case with __builtin_unreachable avi at scylladb dot com
2023-03-07 22:00 ` [Bug tree-optimization/109053] " pinskia at gcc dot gnu.org
2023-03-07 22:14 ` 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).