From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 76B343856DEA; Fri, 10 Jun 2022 00:17:18 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 76B343856DEA MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-1035] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 29dc90a580bf45f503ed89eb1dc63b5676db776b X-Git-Newrev: e3bba42fb5d64d2b49a9cd3511f8f57e36d46dfe Message-Id: <20220610001718.76B343856DEA@sourceware.org> Date: Fri, 10 Jun 2022 00:17:18 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Jun 2022 00:17:18 -0000 https://gcc.gnu.org/g:e3bba42fb5d64d2b49a9cd3511f8f57e36d46dfe commit r13-1035-ge3bba42fb5d64d2b49a9cd3511f8f57e36d46dfe Author: GCC Administrator Date: Fri Jun 10 00:16:43 2022 +0000 Daily bump. Diff: --- gcc/ChangeLog | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 23 +++++++++++++++++ gcc/po/ChangeLog | 4 +++ gcc/testsuite/ChangeLog | 35 ++++++++++++++++++++++++++ libgcc/ChangeLog | 5 ++++ libgomp/ChangeLog | 19 +++++++++++++++ 7 files changed, 152 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 118cfe0954f..e79c77cf71a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,68 @@ +2022-06-09 Takayuki 'January June' Suwa + + * config/xtensa/xtensa.md (clrsbsi2): New insn pattern. + +2022-06-09 Takayuki 'January June' Suwa + + * config/xtensa/xtensa.md (*andsi3_bitcmpl): + New insn_and_split pattern. + +2022-06-09 Takayuki 'January June' Suwa + + * config/xtensa/xtensa.md (one_cmplsi2): + Rearrange as an insn_and_split pattern. + +2022-06-09 Takayuki 'January June' Suwa + + * config/xtensa/xtensa.md (bswaphi2): New insn pattern. + +2022-06-09 Segher Boessenkool + + * config/rs6000/rs6000.md (FP_ISA3): Delete. + (float2): Rename to... + (float2): ... this. Adjust. + (*float2_internal): Rename to... + (*float2_internal): ... this. Adjust. + (floatuns2): Rename to... + (floatuns2): ... this. Adjust. + (*floatuns2_internal): Rename to... + (*floatuns2_internal): ... this. Adjust. + +2022-06-09 Maciej W. Rozycki + + * config/riscv/riscv.md + (*f_quiet4_default) + (*f_quiet4_snan): Emit a tab + rather than space with FSFLAGS. + +2022-06-09 Tobias Burnus + + * omp-offload.cc (omp_discover_declare_target_tgt_fn_r, + omp_discover_declare_target_fn_r): Don't walk reverse-offload + target regions. + +2022-06-09 Jakub Jelinek + + * doc/invoke.texi (-Waddress): Fix a typo in small example. + Fix typos inptr_t -> intptr_t and uinptr_t -> uintptr_t. + +2022-06-09 Cui,Lili + + PR target/105493 + * config/i386/x86-tune-costs.h (skylake_cost): Raise the gpr load cost + from 4 to 6 and gpr store cost from 6 to 8. Change SSE loads and + unaligned loads cost from {6, 6, 6, 10, 20} to {8, 8, 8, 8, 16}. + (icelake_cost): Ditto. + (alderlake_cost): Raise the gpr store cost from 6 to 8 and SSE loads, + stores and unaligned stores cost from {6, 6, 6, 10, 15} to + {8, 8, 8, 10, 15}. + +2022-06-09 Haochen Gui + + * config/rs6000/rs6000.md (define_split for bswapdi load): Merge shift + and ior insns to one rotate and mask insn. + (define_split for bswapdi register): Likewise. + 2022-06-08 Roger Sayle PR middle-end/105874 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 2b282de2e7d..b3177859c58 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220609 +20220610 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 08b8d284018..0482af799f9 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,26 @@ +2022-06-09 Jakub Jelinek + + PR c++/105871 + * constexpr.cc (cxx_eval_bit_field_ref): For BIT_FIELD_REF with + non-integral result type use fold_ternary too like for BIT_FIELD_REFs + from VECTOR_CST. If fold_ternary returns NULL, diagnose non-constant + expression, set *non_constant_p and return t, instead of returning + NULL. + +2022-06-09 Nathan Sidwell + + * cp-tree.h (module_initializer_kind): Replace with ... + (module_global_init_needed, module_has_import_inits): ... + these. + * decl2.cc (start_objects): Add has_body parm. Reorganize + module initializer creation. + (generate_ctor_or_dtor_function): Adjust. + (c_parse_final_cleanups): Adjust. + (vtv_start_verification_constructor_init_function): Adjust. + * module.cc (module_initializer_kind): Replace with ... + (module_global_init_needed, module_has_import_inits): ... + these. + 2022-06-08 Jason Merrill PR c++/105852 diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog index d1fad8f0c64..4443b48c8ff 100644 --- a/gcc/po/ChangeLog +++ b/gcc/po/ChangeLog @@ -1,3 +1,7 @@ +2022-06-09 Joseph Myers + + * sv.po: Update. + 2022-05-10 Joseph Myers * hr.po: Update. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 443e1c8dd2b..61729343c3f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,38 @@ +2022-06-09 Takayuki 'January June' Suwa + + * gcc.target/xtensa/check_zero_byte.c: New. + +2022-06-09 Takayuki 'January June' Suwa + + * gcc.target/xtensa/one_cmpl_abs.c: New. + +2022-06-09 Jakub Jelinek + + PR c++/105871 + * g++.dg/pr105871.C: New test. + +2022-06-09 Nathan Sidwell + + * g++.dg/modules/init-2_a.C: Check no idempotency. + * g++.dg/modules/init-2_b.C: Check idempotency. + +2022-06-09 Tobias Burnus + + * c-c++-common/gomp/reverse-offload-1.c: New. + +2022-06-09 Cui,Lili + + PR target/105493 + * gcc.target/i386/pr91446.c: Adjust to expect vectorization + * gcc.target/i386/pr99881.c: XFAIL. + * gcc.target/i386/pr105493.c: New. + * g++.target/i386/pr105638.C: Use other sequence checks + instead of vpxor, because code generation changed. + +2022-06-09 Haochen Gui + + * gcc.target/powerpc/pr93453-1.c: New. + 2022-06-08 Jason Merrill PR c++/105852 diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 6e858b56a16..88c860b97f4 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2022-06-09 Takayuki 'January June' Suwa + + * config/xtensa/lib1funcs.S (__clrsbsi2): New function. + * config/xtensa/t-xtensa (LIB1ASMFUNCS): Add _clrsbsi2. + 2022-06-01 H.J. Lu PR libgcc/27576 diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 39d9277bf4e..46a747d4ce3 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,22 @@ +2022-06-09 Jakub Jelinek + + * config/linux/allocator.c: Fix up #include directive. + +2022-06-09 Jakub Jelinek + + * allocator.c: Include dlfcn.h if LIBGOMP_USE_MEMKIND is defined. + (enum gomp_memkind_kind): New type. + (struct omp_allocator_data): Add memkind field if LIBGOMP_USE_MEMKIND + is defined. + (struct gomp_memkind_data): New type. + (memkind_data, memkind_data_once): New variables. + (gomp_init_memkind, gomp_get_memkind): New functions. + (omp_init_allocator): Initialize data.memkind, don't fail for + omp_high_bw_mem_space if libmemkind supports it. + (omp_aligned_alloc, omp_free, omp_aligned_calloc, omp_realloc): Add + memkind support of LIBGOMP_USE_MEMKIND is defined. + * config/linux/allocator.c: New file. + 2022-06-03 Tobias Burnus * libgomp.texi (OpenMP 5.2): Mark scope w/ firstprivate/allocate as Y.