This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch openacc-gcc-9-branch in repository gcc.
from b3c9281e6a2 Commit of https://gcc.gnu.org/ml/gcc-patches/2019-07/msg00336.html new 1246da4f164 OpenACC Profiling Interface (incomplete) new b1321d52402 Add changes to profiling interface from OG8 branch
The 2 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: libgomp/ChangeLog.openacc | 87 +++ libgomp/Makefile.am | 5 +- libgomp/Makefile.in | 14 +- libgomp/acc_prof.h | 252 ++++++++ .../nvptx/oacc-profiling-acc_register_library.c | 0 .../config/nvptx/oacc-profiling.c | 0 libgomp/env.c | 2 + libgomp/libgomp.map | 16 +- libgomp/libgomp.texi | 404 ++++++++++++ libgomp/oacc-async.c | 121 +++- libgomp/oacc-cuda.c | 81 ++- libgomp/oacc-init.c | 146 ++++- libgomp/oacc-int.h | 29 + libgomp/oacc-mem.c | 113 +++- libgomp/oacc-parallel.c | 459 ++++++++++++- libgomp/oacc-plugin.c | 17 + libgomp/oacc-plugin.h | 7 + ...gin.h => oacc-profiling-acc_register_library.c} | 19 +- libgomp/oacc-profiling.c | 670 +++++++++++++++++++ libgomp/plugin/plugin-nvptx.c | 194 +++++- .../acc_prof-dispatch-1.c | 351 ++++++++++ .../libgomp.oacc-c-c++-common/acc_prof-init-1.c | 314 +++++++++ .../libgomp.oacc-c-c++-common/acc_prof-kernels-1.c | 236 +++++++ .../acc_prof-parallel-1.c | 717 +++++++++++++++++++++ .../acc_prof-valid_bytes-1.c | 224 +++++++ .../libgomp.oacc-c-c++-common/acc_prof-version-1.c | 74 +++ 26 files changed, 4472 insertions(+), 80 deletions(-) create mode 100644 libgomp/acc_prof.h copy gcc/DEV-PHASE => libgomp/config/nvptx/oacc-profiling-acc_register_library.c (100%) copy gcc/DEV-PHASE => libgomp/config/nvptx/oacc-profiling.c (100%) copy libgomp/{oacc-plugin.h => oacc-profiling-acc_register_library.c} (71%) 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