This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 106efc76c75 darwin, powerpc - adjust the formatting of picbase labels new 9b5009857b5 [PR89433] Refer to OpenACC 'routine' clauses from "omp decl [...] new 5f7ea2eebbe [PR89433] Use 'oacc_verify_routine_clauses' for C/C++ OpenA [...] new 33dacef9991 [PR89433] Repeated use of the C/C++ OpenACC 'routine' directive new 5feffd51c51 OpenACC Profiling Interface (incomplete)
The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 13 + gcc/c-family/ChangeLog | 6 + gcc/c-family/c-attribs.c | 2 +- gcc/c/ChangeLog | 14 + gcc/c/c-parser.c | 50 +- gcc/cp/ChangeLog | 15 + gcc/cp/parser.c | 53 +- gcc/fortran/ChangeLog | 8 + gcc/fortran/f95-lang.c | 2 +- gcc/fortran/trans-decl.c | 18 +- gcc/omp-general.c | 143 +++- gcc/omp-general.h | 2 + gcc/testsuite/ChangeLog | 17 + .../c-c++-common/goacc/classify-routine.c | 4 +- gcc/testsuite/c-c++-common/goacc/routine-2.c | 20 +- gcc/testsuite/c-c++-common/goacc/routine-5.c | 46 +- .../goacc/routine-level-of-parallelism-1.c | 449 +++++++++++++ .../goacc/routine-level-of-parallelism-2.c | 71 ++ .../gfortran.dg/goacc/classify-routine.f95 | 4 +- .../goacc/routine-level-of-parallelism-1.f90 | 6 +- libgomp/ChangeLog | 55 ++ libgomp/Makefile.am | 4 +- libgomp/Makefile.in | 7 +- libgomp/acc_prof.h | 252 ++++++++ libgomp/env.c | 2 + libgomp/libgomp.map | 14 + libgomp/libgomp.texi | 412 ++++++++++++ libgomp/oacc-async.c | 121 +++- libgomp/oacc-cuda.c | 81 ++- libgomp/oacc-init.c | 124 +++- libgomp/oacc-int.h | 29 + libgomp/oacc-mem.c | 113 +++- libgomp/oacc-parallel.c | 460 ++++++++++++- libgomp/oacc-plugin.c | 17 + libgomp/oacc-plugin.h | 7 + libgomp/oacc-profiling.c | 662 +++++++++++++++++++ libgomp/plugin/plugin-nvptx.c | 196 +++++- .../acc_prof-dispatch-1.c | 353 ++++++++++ .../libgomp.oacc-c-c++-common/acc_prof-init-1.c | 316 +++++++++ .../libgomp.oacc-c-c++-common/acc_prof-kernels-1.c | 229 +++++++ .../acc_prof-parallel-1.c | 719 +++++++++++++++++++++ .../acc_prof-valid_bytes-1.c | 226 +++++++ .../libgomp.oacc-c-c++-common/acc_prof-version-1.c | 76 +++ 43 files changed, 5216 insertions(+), 202 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/goacc/routine-level-of-parallelism-1.c create mode 100644 gcc/testsuite/c-c++-common/goacc/routine-level-of-parallelism-2.c create mode 100644 libgomp/acc_prof.h create mode 100644 libgomp/oacc-profiling.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_prof-dispatch-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_prof-init-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_prof-kernels-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_prof-parallel-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_prof-valid_bytes-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc_prof-version-1.c