diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d2a501fb50b..44291162951 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,114 @@ +2023-08-23 Jivan Hakobyan + + * lra-eliminations.cc (eliminate_regs_in_insn): Use equivalences to + to help simplify code further. + +2023-08-23 Andrew MacLeod + + * gimple-range-fold.cc (fold_using_range::range_of_phi): Tweak output. + * gimple-range-phi.cc (phi_group::phi_group): Remove unused members. + Initialize using a range instead of value and edge. + (phi_group::calculate_using_modifier): Use initializer value and + process for relations after trying for iteration convergence. + (phi_group::refine_using_relation): Use initializer range. + (phi_group::dump): Rework the dump output. + (phi_analyzer::process_phi): Allow multiple constant initilizers. + Dump groups immediately as created. + (phi_analyzer::dump): Tweak output. + * gimple-range-phi.h (phi_group::phi_group): Adjust prototype. + (phi_group::initial_value): Delete. + (phi_group::refine_using_relation): Adjust prototype. + (phi_group::m_initial_value): Delete. + (phi_group::m_initial_edge): Delete. + (phi_group::m_vr): Use int_range_max. + * tree-vrp.cc (execute_ranger_vrp): Don't dump phi groups. + +2023-08-23 Andrew MacLeod + + * gimple-range-phi.cc (phi_analyzer::operator[]): Return NULL if + no group was created. + (phi_analyzer::process_phi): Do not create groups of one phi node. + +2023-08-23 Richard Earnshaw + + * target.def (gen_ccmp_first, gen_ccmp_next): Use rtx_code for + CODE, CMP_CODE and BIT_CODE arguments. + * config/aarch64/aarch64.cc (aarch64_gen_ccmp_first): Likewise. + (aarch64_gen_ccmp_next): Likewise. + * doc/tm.texi: Regenerated. + +2023-08-23 Richard Earnshaw + + * coretypes.h (rtx_code): Add forward declaration. + * rtl.h (rtx_code): Make compatible with forward declaration. + +2023-08-23 Uros Bizjak + + PR target/111010 + * config/i386/i386.md (*concat3_3): + Merge pattern from *concatditi3_3 and *concatsidi3_3 using + DWIH mode iterator. Disable (=&r,m,m) alternative for + 32-bit targets. + (*concat3_3): Disable (=&r,m,m) + alternative for 32-bit targets. + +2023-08-23 Zhangjin Liao + + * config/riscv/bitmanip.md (*disi2_sext): Add a more + appropriate type attribute. + +2023-08-23 Lehua Ding + + * config/riscv/autovec-opt.md (*cond_abs): New combine pattern. + (*copysign_neg): Ditto. + * config/riscv/autovec.md (@vcond_mask_): Adjust. + (2): Ditto. + (cond_): New. + (cond_len_): Ditto. + * config/riscv/riscv-protos.h (enum insn_type): New. + (expand_cond_len_unop): New helper func. + * config/riscv/riscv-v.cc (shuffle_merge_patterns): Adjust. + (expand_cond_len_unop): New helper func. + +2023-08-23 Jan Hubicka + + * tree-ssa-loop-ch.cc (enum ch_decision): Fix comment. + (should_duplicate_loop_header_p): Fix return value for static exits. + (ch_base::copy_headers): Improve handling of ch_possible_zero_cost. + +2023-08-23 Kewen Lin + + * tree-vect-stmts.cc (vectorizable_store): Move the handlings on + VMAT_GATHER_SCATTER in the final loop nest to its own loop, + and update the final nest accordingly. + +2023-08-23 Kewen Lin + + * tree-vect-stmts.cc (vectorizable_store): Move the handlings on + VMAT_LOAD_STORE_LANES in the final loop nest to its own loop, + and update the final nest accordingly. + +2023-08-23 Kewen Lin + + * tree-vect-stmts.cc (vectorizable_store): Remove vec oprnds, + adjust vec result_chain, vec_oprnd with auto_vec, and adjust + gvec_oprnds with auto_delete_vec. + +2023-08-23 Juzhe-Zhong + + * config/riscv/riscv-vsetvl.cc + (pass_vsetvl::global_eliminate_vsetvl_insn): Fix potential ICE. + +2023-08-23 Juzhe-Zhong + + * config/riscv/riscv-vsetvl.cc (ge_sew_ratio_unavailable_p): + Fix fuse rule bug. + * config/riscv/riscv-vsetvl.def (DEF_SEW_LMUL_FUSE_RULE): Ditto. + +2023-08-23 Juzhe-Zhong + + * config/riscv/vector.md: Add attribute. + 2023-08-22 Juzhe-Zhong * config/riscv/riscv-vsetvl.cc (change_insn): Clang format. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 47b00c6c0bd..d736aa1f38a 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230823 +20230824 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 5996d521131..622ca91b30d 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,10 @@ +2023-08-23 Harald Anlauf + + PR fortran/32986 + * resolve.cc (is_non_constant_shape_array): Add forward declaration. + (resolve_common_vars): Diagnose automatic array object in COMMON. + (resolve_symbol): Prevent confusing follow-on error. + 2023-08-22 Tobias Burnus * gfortran.h (enum gfc_omp_defaultmap_category): diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ce13c719557..52436a8abec 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,50 @@ +2023-08-23 Harald Anlauf + + PR fortran/32986 + * gfortran.dg/common_28.f90: New test. + +2023-08-23 Andrew MacLeod + + * gcc.dg/pr102983.c: Adjust output expectations. + * gcc.dg/pr110918.c: New. + +2023-08-23 Lehua Ding + + * gcc.target/riscv/rvv/autovec/cond/cond_unary-1.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary-2.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary-3.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary-4.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary-5.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary-6.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary-7.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary-8.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary_run-1.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary_run-2.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary_run-3.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary_run-4.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary_run-5.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary_run-6.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary_run-7.c: New test. + * gcc.target/riscv/rvv/autovec/cond/cond_unary_run-8.c: New test. + +2023-08-23 Jan Hubicka + + * gcc.dg/tree-ssa/copy-headers-9.c: Update template. + +2023-08-23 Jan Hubicka + + PR middle-end/110940 + * gcc.c-torture/compile/pr110940.c: New test. + +2023-08-23 Juzhe-Zhong + + * gcc.target/riscv/rvv/autovec/gather-scatter/gather_load_run-12.c: + Add vsetvli asm. + +2023-08-23 Juzhe-Zhong + + * gcc.target/riscv/rvv/autovec/partial/live-1.c: Adapt test. + 2023-08-22 David Malcolm PR analyzer/105899 diff --git a/libffi/ChangeLog b/libffi/ChangeLog index 17488a96f62..e421b036343 100644 --- a/libffi/ChangeLog +++ b/libffi/ChangeLog @@ -1,3 +1,13 @@ +2023-08-23 Lulu Cheng + + PR libffi/108682 + * configure.host: Add LoongArch support. + * Makefile.am: Likewise. + * Makefile.in: Regenerate. + * src/loongarch64/ffi.c: New file. + * src/loongarch64/ffitarget.h: New file. + * src/loongarch64/sysv.S: New file. + 2023-08-07 Nick Alcock * configure: Regenerate. diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8e5c5113622..20fcd90bc0b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,22 @@ +2023-08-23 François Dumont + + * testsuite/util/replacement_memory_operators.h + (counter::scope): New, capture and reset counter count at construction and + restore it at destruction. + (counter::check_new): Add scope instantiation. + * testsuite/23_containers/unordered_map/96088.cc (main): + Add counter::scope instantiation. + * testsuite/23_containers/unordered_multimap/96088.cc (main): Likewise. + * testsuite/23_containers/unordered_multiset/96088.cc (main): Likewise. + * testsuite/23_containers/unordered_set/96088.cc (main): Likewise. + * testsuite/ext/malloc_allocator/deallocate_local.cc (main): Likewise. + * testsuite/ext/new_allocator/deallocate_local.cc (main): Likewise. + * testsuite/ext/throw_allocator/deallocate_local.cc (main): Likewise. + * testsuite/ext/pool_allocator/allocate_chunk.cc (started): New global. + (operator new(size_t)): Check started. + (main): Set/Unset started. + * testsuite/17_intro/no_library_allocation.cc: New test case. + 2023-08-21 Jonathan Wakely * testsuite/18_support/nested_exception/rethrow_if_nested-term.cc: