public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-3417] Daily bump.
@ 2023-08-24  0:18 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2023-08-24  0:18 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:4e27ba6e2dd85a5ad4751c35270dbd8f277302dd

commit r14-3417-g4e27ba6e2dd85a5ad4751c35270dbd8f277302dd
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Thu Aug 24 00:18:18 2023 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 111 ++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |   2 +-
 gcc/fortran/ChangeLog   |   7 +++
 gcc/testsuite/ChangeLog |  47 ++++++++++++++++++++
 libffi/ChangeLog        |  10 +++++
 libstdc++-v3/ChangeLog  |  19 +++++++++
 6 files changed, 195 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d2a501fb50b3..442911629516 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,114 @@
+2023-08-23  Jivan Hakobyan  <jivanhakobyan9@gmail.com>
+
+	* lra-eliminations.cc (eliminate_regs_in_insn): Use equivalences to
+	to help simplify code further.
+
+2023-08-23  Andrew MacLeod  <amacleod@redhat.com>
+
+	* 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  <amacleod@redhat.com>
+
+	* 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  <rearnsha@arm.com>
+
+	* 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  <rearnsha@arm.com>
+
+	* coretypes.h (rtx_code): Add forward declaration.
+	* rtl.h (rtx_code): Make compatible with forward declaration.
+
+2023-08-23  Uros Bizjak  <ubizjak@gmail.com>
+
+	PR target/111010
+	* config/i386/i386.md (*concat<any_or_plus:mode><dwi>3_3):
+	Merge pattern from *concatditi3_3 and *concatsidi3_3 using
+	DWIH mode iterator.  Disable (=&r,m,m) alternative for
+	32-bit targets.
+	(*concat<any_or_plus:mode><dwi>3_3): Disable (=&r,m,m)
+	alternative for 32-bit targets.
+
+2023-08-23  Zhangjin Liao  <liaozhangjin@eswincomputing.com>
+
+	* config/riscv/bitmanip.md (*<bitmanip_optab>disi2_sext): Add a more
+	appropriate type attribute.
+
+2023-08-23  Lehua Ding  <lehua.ding@rivai.ai>
+
+	* config/riscv/autovec-opt.md (*cond_abs<mode>): New combine pattern.
+	(*copysign<mode>_neg): Ditto.
+	* config/riscv/autovec.md (@vcond_mask_<mode><vm>): Adjust.
+	(<optab><mode>2): Ditto.
+	(cond_<optab><mode>): New.
+	(cond_len_<optab><mode>): 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  <jh@suse.cz>
+
+	* 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  <linkw@linux.ibm.com>
+
+	* 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  <linkw@linux.ibm.com>
+
+	* 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  <linkw@linux.ibm.com>
+
+	* 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  <juzhe.zhong@rivai.ai>
+
+	* config/riscv/riscv-vsetvl.cc
+	(pass_vsetvl::global_eliminate_vsetvl_insn): Fix potential ICE.
+
+2023-08-23  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	* 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  <juzhe.zhong@rivai.ai>
+
+	* config/riscv/vector.md: Add attribute.
+
 2023-08-22  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
 
 	* config/riscv/riscv-vsetvl.cc (change_insn): Clang format.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 47b00c6c0bd5..d736aa1f38ab 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230823
+20230824
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 5996d5211317..622ca91b30d6 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,10 @@
+2023-08-23  Harald Anlauf  <anlauf@gmx.de>
+
+	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  <tobias@codesourcery.com>
 
 	* gfortran.h (enum gfc_omp_defaultmap_category):
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index ce13c7195573..52436a8abec4 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,50 @@
+2023-08-23  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/32986
+	* gfortran.dg/common_28.f90: New test.
+
+2023-08-23  Andrew MacLeod  <amacleod@redhat.com>
+
+	* gcc.dg/pr102983.c: Adjust output expectations.
+	* gcc.dg/pr110918.c: New.
+
+2023-08-23  Lehua Ding  <lehua.ding@rivai.ai>
+
+	* 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  <jh@suse.cz>
+
+	* gcc.dg/tree-ssa/copy-headers-9.c: Update template.
+
+2023-08-23  Jan Hubicka  <jh@suse.cz>
+
+	PR middle-end/110940
+	* gcc.c-torture/compile/pr110940.c: New test.
+
+2023-08-23  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	* gcc.target/riscv/rvv/autovec/gather-scatter/gather_load_run-12.c:
+	Add vsetvli asm.
+
+2023-08-23  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	* gcc.target/riscv/rvv/autovec/partial/live-1.c: Adapt test.
+
 2023-08-22  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/105899
diff --git a/libffi/ChangeLog b/libffi/ChangeLog
index 17488a96f622..e421b0363435 100644
--- a/libffi/ChangeLog
+++ b/libffi/ChangeLog
@@ -1,3 +1,13 @@
+2023-08-23  Lulu Cheng  <chenglulu@loongson.cn>
+
+	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  <nick.alcock@oracle.com>
 
 	* configure: Regenerate.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 8e5c51136221..20fcd90bc0b5 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,22 @@
+2023-08-23  François Dumont  <fdumont@gcc.gnu.org>
+
+	* 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  <jwakely@redhat.com>
 
 	* testsuite/18_support/nested_exception/rethrow_if_nested-term.cc:

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-08-24  0:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-24  0:18 [gcc r14-3417] Daily bump GCC Administrator

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).