public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Biener <richard.guenther@gmail.com>
To: Ties Klappe <tg.klappe@gmail.com>
Cc: gcc@gcc.gnu.org
Subject: Re: Nested restrict pointers: missed optimization & client with UB?
Date: Tue, 13 Feb 2024 15:15:58 +0100	[thread overview]
Message-ID: <CAFiYyc2at7uSJ4spfhWWYngmCmF5+XFdWdu_U-sewi2LnW=zBA@mail.gmail.com> (raw)
In-Reply-To: <CAHSOcvAOb5df_R3hF3k7p-57BG5r=VArM8Ybqs6=bP7RDYarSg@mail.gmail.com>

On Tue, Feb 13, 2024 at 2:02 PM Ties Klappe via Gcc <gcc@gcc.gnu.org> wrote:
>
> Hi,
>
> I have two questions related to nested restrict pointers.
> GCC 13.02 with optimization level 3 optimizes the function *foo1* to simply
> return 10.
>
> int foo1(int *restrict *restrict p, int *restrict *restrict q)
> {
>     **p = 10;
>     **q = 11;
>     return **p;
> }
>
> I am curious why the function *foo2* is not optimized in the same way (see
> https://godbolt.org/z/E4cx1c1GP): the first pointer dereference of p and q
> result in the restrict qualified pointer lvalues, which are used to write
> to a disjoint (as promised by the restrict qualifier) location storing an
> integer object. So this should give enough information to perform the
> optimization, i.e. a write via **q cannot change the object **p designates
> if the program has defined behavior.
>
> int foo2(int *restrict *p, int *restrict *q)
> {
>     **p = 10;
>     **q = 11;

this function could do

     int a;
     *p = &a;
     **q = 11;
     **p = 12;
>     return **q;

even when being called as you outline below.

> }
>
> Secondly, if we would have a client *main* invoking *foo1* (see below), the
> optimization would be incorrect if the client does not contain undefined
> behavior. So I am curious how the standard section 6.7.3.1 actually applies
> here: if the program is defined, I would assume both lvalues *p and *q are
> said to be based on xp (xp = *p = *q; = object `*P` *where the standard
> refers to), but is it actually the case that both the *p and *q expressions
> are based on the same object P?
>
> int main() {
>     int x = 0;
>     int* xp = &x;
>
>     int res = foo1(&xp, &xp);
>
>     return 0;
> }
>
> So to wrap up, I have two questions:
>
> 1. Should *foo2* be optimized in the same way as *foo1* and is it simply a
> missed optimization candidate, or is there another reason GCC does not
> optimize it?
> 2. Does the client *main* contain undefined behavior according to GCC, and
> if so, why?
>
> Thank you in advance.

We are optimizing the following which is related at least to the amount
of memory references done.  I'm also curious how the standard reads
here.  Implementation-wise it's a bit difficult to handle the
int ** restrict case, as points-to analysis has to handle *p and *q to
point to an object as if p and q themselves were restrict.  I'm not sure
that doesn't open up things for miscompiles.

int * restrict p;
int * restrict q;
int foo2()
{
    *p = 10;
    *q = 11;
    return *p;
}

int main ()
{
  int x = 0;
  int* xp = &x;
  p = xp;
  q = xp;
  int res = foo1();
  return 0;
}

Richard.

> Kind regards,
> Ties

  reply	other threads:[~2024-02-13 14:16 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-13 13:00 Ties Klappe
2024-02-13 14:15 ` Richard Biener [this message]
2024-02-13 14:29 ` Joseph Myers
2024-02-13 15:25   ` Ties Klappe
2024-02-13 15:33     ` Joseph Myers
2024-02-13 16:06     ` Richard Biener

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='CAFiYyc2at7uSJ4spfhWWYngmCmF5+XFdWdu_U-sewi2LnW=zBA@mail.gmail.com' \
    --to=richard.guenther@gmail.com \
    --cc=gcc@gcc.gnu.org \
    --cc=tg.klappe@gmail.com \
    /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).