public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/90861] OpenACC 'declare' not cleaning up for VLAs
Date: Tue, 06 Oct 2020 14:50:35 +0000	[thread overview]
Message-ID: <bug-90861-4-QNFnAf1GL0@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-90861-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #6 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom de Vries <vries@gcc.gnu.org>:

https://gcc.gnu.org/g:3f2e15c2e66af9cca1dfe24ad7e9692f511ebd06

commit r11-3680-g3f2e15c2e66af9cca1dfe24ad7e9692f511ebd06
Author: Tom de Vries <tdevries@suse.de>
Date:   Tue Oct 6 13:07:25 2020 +0200

    [openacc] Fix acc declare for VLAs

    Consider test-case test.c, with VLA A:
    ...
    int main (void) {
      int N = 1000;
      int A[N];
      #pragma acc declare copy(A)
      return 0;
    }
    ...
    compiled using:
    ...
    $ gcc test.c -fopenacc -S -fdump-tree-all
    ...

    At original, we have:
    ...
      #pragma acc declare map(tofrom:A);
    ...
    but at gimple, we have a map (to:A.1), but not a map (from:A.1):
    ...
      int[0:D.2074] * A.1;

      {
        int A[0:D.2074] [value-expr: *A.1];

        saved_stack.2 = __builtin_stack_save ();
        try
          {
            A.1 = __builtin_alloca_with_align (D.2078, 32);
            #pragma omp target oacc_declare map(to:(*A.1) [len: D.2076])
          }
        finally
          {
            __builtin_stack_restore (saved_stack.2);
          }
      }
    ...

    This is caused by the following incompatibility.  When storing the desired
    from clause in oacc_declare_returns, we use 'A.1' as the key:
    ...
    10898                 oacc_declare_returns->put (decl, c);
    (gdb) call debug_generic_expr (decl)
    A.1
    (gdb) call debug_generic_expr (c)
    map(from:(*A.1))
    ...
    but when looking it up, we use 'A' as the key:
    ...
    (gdb)
    1471                  tree *c = oacc_declare_returns->get (t);
    (gdb) call debug_generic_expr (t)
    A
    ...

    Fix this by extracing the 'A.1' lookup key from 'A' using the decl-expr.

    In addition, unshare the looked up value, to fix avoid running into
    an "incorrect sharing of tree nodes" error.

    Using these two fixes, we get our desired:
    ...
         finally
           {
    +        #pragma omp target oacc_declare map(from:(*A.1))
             __builtin_stack_restore (saved_stack.2);
           }
    ...

    Build on x86_64-linux with nvptx accelerator, tested libgomp.

    gcc/ChangeLog:

    2020-10-06  Tom de Vries  <tdevries@suse.de>

            PR middle-end/90861
            * gimplify.c (gimplify_bind_expr): Handle lookup in
            oacc_declare_returns using key with decl-expr.

    libgomp/ChangeLog:

    2020-10-06  Tom de Vries  <tdevries@suse.de>

            PR middle-end/90861
            * testsuite/libgomp.oacc-c-c++-common/declare-vla.c: Remove xfail.

  parent reply	other threads:[~2020-10-06 14:50 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <bug-90861-4@http.gcc.gnu.org/bugzilla/>
2020-10-06 12:17 ` vries at gcc dot gnu.org
2020-10-06 13:29 ` vries at gcc dot gnu.org
2020-10-06 14:50 ` cvs-commit at gcc dot gnu.org [this message]
2020-10-06 14:52 ` vries at gcc dot gnu.org
2020-10-06 16:31 ` tschwinge at gcc dot gnu.org
2020-10-06 21:35 ` cvs-commit at gcc dot gnu.org
2020-10-06 21:40 ` burnus 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-90861-4-QNFnAf1GL0@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).