public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/111773] Inconsistent optimization of replaced operator new()
Date: Fri, 13 Oct 2023 06:43:04 +0000	[thread overview]
Message-ID: <bug-111773-4-Qtl2pIhRsg@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-111773-4@http.gcc.gnu.org/bugzilla/>

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |UNCONFIRMED
     Ever confirmed|1                           |0
           Assignee|rguenth at gcc dot gnu.org         |unassigned at gcc dot gnu.org

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
So the second example is fixed, but it's quite a corner-case so probably not
worth backporting.  Given we have a single bugreport for two issues back to
UNCONFIRMED for the first issue.

I agree with Andrew _that_ issue behaves within the constraints of the
standard.
ISTR it says that 'operator new' has to return a pointer that nothing else
points to which means it acts as if it were restrict qualified.  That allows
GCC to conclude x != 0 because it rewrites x == 0 as a - p == 0 and
a == p.  The difference operation cannot be constant folded based on this
but during IPA optimization we inline 'new' which exposes p == a and thus
a - p == 0.

  parent reply	other threads:[~2023-10-13  6:43 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-11 15:59 [Bug c++/111773] New: " vlad at solidsands dot nl
2023-10-11 16:05 ` [Bug c++/111773] " pinskia at gcc dot gnu.org
2023-10-12  8:15 ` [Bug ipa/111773] " rguenth at gcc dot gnu.org
2023-10-12  8:48 ` sjames at gcc dot gnu.org
2023-10-13  6:34 ` cvs-commit at gcc dot gnu.org
2023-10-13  6:43 ` rguenth at gcc dot gnu.org [this message]
2023-10-18 14:09 ` vlad at solidsands dot nl
2023-10-19  6:16 ` rguenth at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-111773-4-Qtl2pIhRsg@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).