public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Julian Brown <jules@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc/devel/omp/gcc-11] [og11] Rewrite GOMP_MAP_ATTACH_DETACH mappings unconditionally
Date: Wed,  2 Jun 2021 10:49:49 +0000 (GMT)	[thread overview]
Message-ID: <20210602104949.8B12C396EC47@sourceware.org> (raw)

https://gcc.gnu.org/g:9aa75428f8b7d1e362ff5588c4bc35a50ae1b598

commit 9aa75428f8b7d1e362ff5588c4bc35a50ae1b598
Author: Julian Brown <julian@codesourcery.com>
Date:   Tue May 18 10:10:12 2021 -0700

    [og11] Rewrite GOMP_MAP_ATTACH_DETACH mappings unconditionally
    
    It never makes sense for a GOMP_MAP_ATTACH_DETACH mapping to survive
    beyond gimplify.c, so this patch rewrites such mappings to GOMP_MAP_ATTACH
    or GOMP_MAP_DETACH unconditionally (rather than checking for a list
    of types of OpenACC or OpenMP constructs), in cases where it hasn't
    otherwise been done already in the preceding code.
    
    2021-06-02  Julian Brown  <julian@codesourcery.com>
    
    gcc/
            * gimplify.c (gimplify_scan_omp_clauses): Simplify condition
            for changing GOMP_MAP_ATTACH_DETACH to GOMP_MAP_ATTACH or
            GOMP_MAP_DETACH.

Diff:
---
 gcc/gimplify.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/gcc/gimplify.c b/gcc/gimplify.c
index 5b481b99953..a38cd502aa5 100644
--- a/gcc/gimplify.c
+++ b/gcc/gimplify.c
@@ -9871,15 +9871,7 @@ gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
 		skip_map_struct:
 		  ;
 		}
-	      else if ((code == OACC_ENTER_DATA
-			|| code == OACC_EXIT_DATA
-			|| code == OACC_DATA
-			|| code == OACC_PARALLEL
-			|| code == OACC_KERNELS
-			|| code == OACC_SERIAL
-			|| code == OMP_TARGET_ENTER_DATA
-			|| code == OMP_TARGET_EXIT_DATA)
-		       && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_ATTACH_DETACH)
+	      else if (OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_ATTACH_DETACH)
 		{
 		  gomp_map_kind k = ((code == OACC_EXIT_DATA
 				      || code == OMP_TARGET_EXIT_DATA)


                 reply	other threads:[~2021-06-02 10:49 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20210602104949.8B12C396EC47@sourceware.org \
    --to=jules@gcc.gnu.org \
    --cc=gcc-cvs@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).