This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-12 in repository gcc.
from 2e3327d635d libgomp: Fix up some typos in libgomp.texi new 9583738a62a nvptx, libgomp: Move the low-latency allocator code new c77c45a641f amdgcn, libgomp: low-latency allocator
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: gcc/ChangeLog.omp | 7 + gcc/config/gcn/gcn-builtins.def | 2 + gcc/config/gcn/gcn.cc | 16 +- libgomp/ChangeLog.omp | 33 +++ libgomp/basic-allocator.c | 380 +++++++++++++++++++++++++++++ libgomp/config/gcn/allocator.c | 129 ++++++++++ libgomp/config/gcn/libgomp-gcn.h | 6 + libgomp/config/gcn/team.c | 12 + libgomp/config/nvptx/allocator.c | 268 +------------------- libgomp/config/nvptx/team.c | 18 +- libgomp/libgomp.h | 3 - libgomp/plugin/plugin-gcn.c | 35 ++- libgomp/testsuite/libgomp.c/allocators-7.c | 2 +- 13 files changed, 627 insertions(+), 284 deletions(-) create mode 100644 libgomp/basic-allocator.c create mode 100644 libgomp/config/gcn/allocator.c