This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-arm-bootstrap in repository toolchain/ci/gcc.
from 5143faee0d0 libgcc: use __builtin_clz and __builtin_ctz in libbid adds 6c420193e86 libgomp: Add new runtime routines omp_target_memcpy_async a [...] new ff171cb13df Use "final" and "override" directly, rather than via macros new 1be715f3160 AArch64: Cleanup CPU option processing code new 48f3f27f607 AArch64: Improve rotate patterns
The 3 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/analyzer/analyzer-pass.cc | 4 +- gcc/analyzer/call-info.h | 8 +- gcc/analyzer/checker-path.h | 52 +- gcc/analyzer/constraint-manager.cc | 4 +- gcc/analyzer/diagnostic-manager.cc | 36 +- gcc/analyzer/engine.cc | 90 ++-- gcc/analyzer/exploded-graph.h | 52 +- gcc/analyzer/feasible-graph.h | 6 +- gcc/analyzer/pending-diagnostic.h | 4 +- gcc/analyzer/region-model-impl-calls.cc | 14 +- gcc/analyzer/region-model.cc | 54 +- gcc/analyzer/region-model.h | 84 +-- gcc/analyzer/region.h | 142 ++--- gcc/analyzer/sm-file.cc | 36 +- gcc/analyzer/sm-malloc.cc | 130 ++--- gcc/analyzer/sm-pattern-test.cc | 14 +- gcc/analyzer/sm-sensitive.cc | 20 +- gcc/analyzer/sm-signal.cc | 24 +- gcc/analyzer/sm-taint.cc | 60 +-- gcc/analyzer/state-purge.h | 4 +- gcc/analyzer/store.cc | 2 +- gcc/analyzer/store.h | 12 +- gcc/analyzer/supergraph.h | 26 +- gcc/analyzer/svalue.h | 178 +++---- gcc/analyzer/trimmed-graph.h | 4 +- gcc/analyzer/varargs.cc | 54 +- gcc/c-family/c-format.cc | 2 +- gcc/c-family/c-pretty-print.h | 2 +- gcc/config.gcc | 43 +- gcc/config/aarch64/aarch64-sve-builtins-base.cc | 260 ++++----- .../aarch64/aarch64-sve-builtins-functions.h | 48 +- gcc/config/aarch64/aarch64-sve-builtins-shapes.cc | 416 +++++++-------- gcc/config/aarch64/aarch64-sve-builtins-sve2.cc | 44 +- gcc/config/aarch64/aarch64.cc | 115 ++-- gcc/config/aarch64/aarch64.h | 9 +- gcc/config/aarch64/aarch64.md | 179 ++++--- gcc/config/aarch64/iterators.md | 11 +- gcc/cp/cxx-pretty-print.h | 2 +- gcc/cp/error.cc | 4 +- gcc/diagnostic-path.h | 12 +- gcc/digraph.cc | 4 +- gcc/gcc-rich-location.h | 6 +- gcc/gimple-array-bounds.cc | 2 +- gcc/gimple-loop-versioning.cc | 4 +- gcc/gimple-range-cache.cc | 12 +- gcc/gimple-range-cache.h | 2 +- gcc/gimple-range-fold.cc | 8 +- gcc/gimple-range-fold.h | 10 +- gcc/gimple-range-tests.cc | 2 +- gcc/gimple-range.h | 8 +- gcc/gimple-ssa-evrp.cc | 26 +- gcc/input.cc | 4 +- gcc/jit/jit-playback.h | 12 +- gcc/jit/jit-recording.cc | 2 +- gcc/jit/jit-recording.h | 586 ++++++++++----------- gcc/json.h | 24 +- gcc/omp-low.cc | 2 + gcc/read-rtl-function.cc | 10 +- gcc/testsuite/gcc.target/aarch64/ror_2.c | 205 +++++++ gcc/testsuite/gcc.target/aarch64/ror_3.c | 131 +++++ gcc/tree-complex.cc | 4 +- gcc/tree-diagnostic-path.cc | 2 +- gcc/tree-ssa-ccp.cc | 8 +- gcc/tree-ssa-copy.cc | 6 +- gcc/tree-vrp.cc | 22 +- gcc/value-query.h | 8 +- gcc/vr-values.h | 12 +- libcpp/lex.cc | 2 +- libgomp/libgomp.map | 2 + libgomp/libgomp.texi | 2 +- libgomp/omp.h.in | 12 + libgomp/omp_lib.f90.in | 40 ++ libgomp/omp_lib.h.in | 41 ++ libgomp/target.c | 290 ++++++++-- libgomp/task.c | 1 + .../libgomp.c-c++-common/target-memcpy-async-1.c | 46 ++ .../libgomp.c-c++-common/target-memcpy-async-2.c | 74 +++ .../target-memcpy-rect-async-1.c | 68 +++ .../target-memcpy-rect-async-2.c | 91 ++++ .../libgomp.fortran/target-memcpy-async-1.f90 | 42 ++ .../libgomp.fortran/target-memcpy-async-2.f90 | 91 ++++ .../libgomp.fortran/target-memcpy-rect-async-1.f90 | 86 +++ .../libgomp.fortran/target-memcpy-rect-async-2.f90 | 117 ++++ 83 files changed, 2788 insertions(+), 1600 deletions(-) create mode 100644 gcc/testsuite/gcc.target/aarch64/ror_2.c create mode 100644 gcc/testsuite/gcc.target/aarch64/ror_3.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-memcpy-async-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-memcpy-async-2.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-memcpy-rect-async-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-memcpy-rect-async-2.c create mode 100644 libgomp/testsuite/libgomp.fortran/target-memcpy-async-1.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/target-memcpy-async-2.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/target-memcpy-rect-async-1.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/target-memcpy-rect-async-2.f90