public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/92568] OpenMP 5 - implicit mapping of scalar with TARGET/ALLOCATABLE/POINTER attribute: shall be 'tofrom' mapped
       [not found] <bug-92568-4@http.gcc.gnu.org/bugzilla/>
@ 2021-06-15 14:07 ` cvs-commit at gcc dot gnu.org
  2021-06-15 14:12 ` burnus at gcc dot gnu.org
  1 sibling, 0 replies; 2+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-06-15 14:07 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tobias Burnus <burnus@gcc.gnu.org>:

https://gcc.gnu.org/g:1de31913d20a467b78904c0e96efd5fbd6facd2c

commit r12-1482-g1de31913d20a467b78904c0e96efd5fbd6facd2c
Author: Tobias Burnus <tobias@codesourcery.com>
Date:   Tue Jun 15 16:06:38 2021 +0200

    Fortran/OpenMP: Extend defaultmap clause for OpenMP 5 [PR92568]

            PR fortran/92568

    gcc/fortran/ChangeLog:

            * dump-parse-tree.c (show_omp_clauses): Update for defaultmap.
            * f95-lang.c (LANG_HOOKS_OMP_ALLOCATABLE_P,
            LANG_HOOKS_OMP_SCALAR_TARGET_P): New.
            * gfortran.h (enum gfc_omp_defaultmap,
            enum gfc_omp_defaultmap_category): New.
            * openmp.c (gfc_match_omp_clauses): Update defaultmap matching.
            * trans-decl.c (gfc_finish_decl_attrs): Set GFC_DECL_SCALAR_TARGET.
            * trans-openmp.c (gfc_omp_allocatable_p, gfc_omp_scalar_target_p):
New.
            (gfc_omp_scalar_p): Take 'ptr_alloc_ok' argument.
            (gfc_trans_omp_clauses, gfc_split_omp_clauses): Update for
            defaultmap changes.
            * trans.h (gfc_omp_scalar_p): Update prototype.
            (gfc_omp_allocatable_p, gfc_omp_scalar_target_p): New.
            (struct lang_decl): Add scalar_target.
            (GFC_DECL_SCALAR_TARGET, GFC_DECL_GET_SCALAR_TARGET): New.

    gcc/ChangeLog:

            * gimplify.c (enum gimplify_defaultmap_kind): Add
GDMK_SCALAR_TARGET.
            (struct gimplify_omp_ctx): Extend defaultmap array by one.
            (new_omp_context): Init defaultmap[GDMK_SCALAR_TARGET].
            (omp_notice_variable): Update type classification for Fortran.
            (gimplify_scan_omp_clauses): Update calls for new argument; handle
            GDMK_SCALAR_TARGET; for Fortran, GDMK_POINTER avoid
GOVD_MAP_0LEN_ARRAY.
            * langhooks-def.h (lhd_omp_scalar_p): Add 'ptr_ok' argument.
            * langhooks.c (lhd_omp_scalar_p): Likewise.
            (LANG_HOOKS_OMP_ALLOCATABLE_P, LANG_HOOKS_OMP_SCALAR_TARGET_P):
New.
            (LANG_HOOKS_DECLS): Add them.
            * langhooks.h (struct lang_hooks_for_decls): Add new hooks, update
            omp_scalar_p pointer type to include the new bool argument.

    libgomp/ChangeLog:

            * testsuite/libgomp.fortran/defaultmap-8.f90: New test.

    gcc/testsuite/ChangeLog:

            * gfortran.dg/gomp/pr99928-1.f90: Uncomment 'defaultmap(none)'.
            * gfortran.dg/gomp/pr99928-2.f90: Uncomment 'defaultmap(none)'.
            * gfortran.dg/gomp/pr99928-3.f90: Uncomment 'defaultmap(none)'.
            * gfortran.dg/gomp/pr99928-4.f90: Uncomment 'defaultmap(none)'.
            * gfortran.dg/gomp/pr99928-5.f90: Uncomment 'defaultmap(none)'.
            * gfortran.dg/gomp/pr99928-6.f90: Uncomment 'defaultmap(none)'.
            * gfortran.dg/gomp/pr99928-8.f90: Uncomment 'defaultmap(none)'.
            * gfortran.dg/gomp/defaultmap-1.f90: New test.
            * gfortran.dg/gomp/defaultmap-2.f90: New test.
            * gfortran.dg/gomp/defaultmap-3.f90: New test.
            * gfortran.dg/gomp/defaultmap-4.f90: New test.
            * gfortran.dg/gomp/defaultmap-5.f90: New test.
            * gfortran.dg/gomp/defaultmap-6.f90: New test.
            * gfortran.dg/gomp/defaultmap-7.f90: New test.

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

* [Bug fortran/92568] OpenMP 5 - implicit mapping of scalar with TARGET/ALLOCATABLE/POINTER attribute: shall be 'tofrom' mapped
       [not found] <bug-92568-4@http.gcc.gnu.org/bugzilla/>
  2021-06-15 14:07 ` [Bug fortran/92568] OpenMP 5 - implicit mapping of scalar with TARGET/ALLOCATABLE/POINTER attribute: shall be 'tofrom' mapped cvs-commit at gcc dot gnu.org
@ 2021-06-15 14:12 ` burnus at gcc dot gnu.org
  1 sibling, 0 replies; 2+ messages in thread
From: burnus at gcc dot gnu.org @ 2021-06-15 14:12 UTC (permalink / raw)
  To: gcc-bugs

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

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #5 from Tobias Burnus <burnus at gcc dot gnu.org> ---
FIXED.

Follow-up issue:
* PR 90742 comment 3 (target/mapping: firstprivate mishandles allocatables)
* PR 100991 - optional scalars misclassified as pointer
  (and firstprivate does not handle absent scalars)

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

end of thread, other threads:[~2021-06-15 14:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-92568-4@http.gcc.gnu.org/bugzilla/>
2021-06-15 14:07 ` [Bug fortran/92568] OpenMP 5 - implicit mapping of scalar with TARGET/ALLOCATABLE/POINTER attribute: shall be 'tofrom' mapped cvs-commit at gcc dot gnu.org
2021-06-15 14:12 ` burnus 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).