This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-release-aarch64-build_cross in repository toolchain/ci/gcc.
from 1892a1baa8a Daily bump. adds 1eee5fa5564 tree-optimization/101445 - fix negative stride SLP vect with gaps adds c34da273aa1 Disparage slightly the mask register alternative for bitwis [...] adds 5bde7650caa Revert x86_order_regs_for_local_alloc changes in r12-1669. adds df115674b39 libstdc++: Constrain std::as_writable_bytes [PR101411] adds 760baa2de0e libstdc++: Remove duplicate #include in <string_view> adds 96205c97294 libstdc++: Simplify basic_string_view::ends_with [PR 101361] adds 10a882eec2e fix typo in attr_fnspec::verify adds 8ebcd360858 Generate 128-bit int divide/modulus on power10. new d3344fbe7bc Clean up and virtualize the on-entry cache interface. new f4ed9f2e65a Implement multi-bit aligned accessors for sparse bitmap. new 52f0aa4dee8 Implement a sparse bitmap representation for Rangers on-ent [...] new 263a7e20c88 Don't process lookups for debug statements in Ranger. new 86534c07a39 Disable poor value processing in ranger cache. new f48526b8d2a Adjust on_entry cache to indicate if the value was set properly. new 85c22c517e9 Do not continue propagating values which cannot be set properly. new b977e6b29c6 Fix build_gt and build_lt for signed 1 bit values.
The 8 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/bitmap.c | 108 +++++++ gcc/bitmap.h | 7 + gcc/config/i386/i386.md | 20 +- gcc/config/rs6000/rs6000.md | 34 ++ gcc/gimple-range-cache.cc | 346 ++++++++++++++------- gcc/gimple-range-cache.h | 5 +- gcc/gimple-range.cc | 2 +- gcc/params.opt | 4 + gcc/range-op.cc | 18 +- gcc/testsuite/gcc.dg/pr101223.c | 44 +++ gcc/testsuite/gcc.dg/vect/pr101445.c | 28 ++ gcc/testsuite/gcc.target/i386/bitwise_mask_op-3.c | 6 +- gcc/testsuite/gcc.target/i386/spill_to_mask-1.c | 89 ++++-- gcc/testsuite/gcc.target/i386/spill_to_mask-2.c | 11 +- gcc/testsuite/gcc.target/i386/spill_to_mask-3.c | 11 +- gcc/testsuite/gcc.target/i386/spill_to_mask-4.c | 11 +- gcc/testsuite/gcc.target/powerpc/p10-vdivq-vmodq.c | 27 ++ gcc/tree-ssa-alias.c | 2 +- gcc/tree-vect-stmts.c | 6 + gcc/value-range.h | 9 + libstdc++-v3/include/std/span | 1 + libstdc++-v3/include/std/string_view | 9 +- .../testsuite/23_containers/span/101411.cc | 15 + 23 files changed, 633 insertions(+), 180 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr101223.c create mode 100644 gcc/testsuite/gcc.dg/vect/pr101445.c create mode 100644 gcc/testsuite/gcc.target/powerpc/p10-vdivq-vmodq.c create mode 100644 libstdc++-v3/testsuite/23_containers/span/101411.cc