From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 4B8363858C41; Thu, 11 Jan 2024 00:19:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4B8363858C41 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1704932362; bh=TIMIhrld81TwuEqiO9/uxi6GtPWsInQG4sUAG1pPp9M=; h=From:To:Subject:Date:From; b=Frv4ySm9uXJ3kYfMNzehILs/4tgJbVwoYUpV/N5VmNvbHgLrSvmkTK+Kk81oLRwEY /j/qSuXi+tf0sP6lfh/oNYKzRcnPg98ZJAitZhJ44J/5n9gb9W5MtLWDsRPprtOr1R FTGD/8fWfvrESEguBszYqS+oLCXlcDgjp8/UXRjo= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r14-7121] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: c84363b8c5c8b545ea922fd2aa12f14f17990815 X-Git-Newrev: 45af896244145063dccd3137aae774fb9b461c2a Message-Id: <20240111001922.4B8363858C41@sourceware.org> Date: Thu, 11 Jan 2024 00:19:22 +0000 (GMT) List-Id: https://gcc.gnu.org/g:45af896244145063dccd3137aae774fb9b461c2a commit r14-7121-g45af896244145063dccd3137aae774fb9b461c2a Author: GCC Administrator Date: Thu Jan 11 00:18:50 2024 +0000 Daily bump. Diff: --- gcc/ChangeLog | 246 ++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 4 + gcc/testsuite/ChangeLog | 119 +++++++++++++++++++++++ libgomp/ChangeLog | 7 ++ libstdc++-v3/ChangeLog | 5 + 6 files changed, 382 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 55754ed2e60..1151cf0b4b4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,249 @@ +2024-01-10 Juzhe-Zhong + + * config/riscv/riscv.cc (get_common_costs): Switch RVV cost model. + (get_vector_costs): Ditto. + (riscv_builtin_vectorization_cost): Ditto. + +2024-01-10 Juzhe-Zhong + + * config/riscv/riscv-vector-costs.cc (costs::better_main_loop_than_p): Minior tweak. + +2024-01-10 Antoni Boucher + + PR jit/111396 + * ipa-fnsummary.cc (ipa_fnsummary_cc_finalize): Call + ipa_free_size_summary. + * ipa-icf.cc (ipa_icf_cc_finalize): New function. + * ipa-profile.cc (ipa_profile_cc_finalize): New function. + * ipa-prop.cc (ipa_prop_cc_finalize): New function. + * ipa-prop.h (ipa_prop_cc_finalize): New function. + * ipa-sra.cc (ipa_sra_cc_finalize): New function. + * ipa-utils.h (ipa_profile_cc_finalize, ipa_icf_cc_finalize, + ipa_sra_cc_finalize): New functions. + * toplev.cc (toplev::finalize): Call ipa_icf_cc_finalize, + ipa_prop_cc_finalize, ipa_profile_cc_finalize and + ipa_sra_cc_finalize + Include ipa-utils.h. + +2024-01-10 Jin Ma + + * config/riscv/riscv-protos.h (th_int_get_mask): New prototype. + (th_int_get_save_adjustment): Likewise. + (th_int_adjust_cfi_prologue): Likewise. + * config/riscv/riscv.cc (BITSET_P): Moved away from here. + (TH_INT_INTERRUPT): New macro. + (riscv_expand_prologue): Add the processing of XTheadInt. + (riscv_expand_epilogue): Likewise. + * config/riscv/riscv.h (BITSET_P): Moved to here. + * config/riscv/riscv.md: New unspec. + * config/riscv/thead.cc (th_int_get_mask): New function. + (th_int_get_save_adjustment): Likewise. + (th_int_adjust_cfi_prologue): Likewise. + * config/riscv/thead.md (th_int_push): New pattern. + (th_int_pop): new pattern. + +2024-01-10 Tamar Christina + + PR tree-optimization/112468 + * doc/sourcebuild.texi: Document ifn_copysign. + * match.pd: Only apply transformation if target supports the IFN. + +2024-01-10 Andrew Pinski + + PR tree-optimization/112581 + * gimple-if-to-switch.cc (pass_if_to_switch::execute): Call + mark_ssa_maybe_undefs. + * tree-ssa-reassoc.cc (can_reassociate_op_p): Uninitialized + variables can not be reassociated. + (init_range_entry): Check for uninitialized variables too. + (init_reassoc): Call mark_ssa_maybe_undefs. + +2024-01-10 Maciej W. Rozycki + + * config/riscv/riscv.cc (riscv_noce_conversion_profitable_p): + Also handle sign extension. + +2024-01-10 Alex Coplan + + * config/aarch64/aarch64.opt (-mearly-ldp-fusion): Set default + to 0. + (-mlate-ldp-fusion): Likewise. + +2024-01-10 Tamar Christina + + PR tree-optimization/113287 + * tree-vect-stmts.cc (vectorizable_early_exit): Check the flags on edge + instead of using BRANCH_EDGE to determine true edge. + +2024-01-10 Richard Biener + + PR tree-optimization/113078 + * tree-vect-loop.cc (check_reduction_path): Canonicalize + .COND_SUB to .COND_ADD. + +2024-01-10 David Malcolm + + * gcc-urlifier.cc (gcc_urlifier::get_url_suffix_for_option): + Handle prefix mappings before calling find_opt. + (selftest::gcc_urlifier_cc_tests): Add example of urlifying a + "-fno-"-prefixed command-line option. + * opts-common.cc (get_option_prefix_remapping): New. + * opts.h (get_option_prefix_remapping): New decl. + +2024-01-10 David Malcolm + + * diagnostic.cc (diagnostic_context::report_diagnostic): Pass + m_urlifier to pp_output_formatted_text. + * pretty-print.cc: Add #define of INCLUDE_VECTOR. + (obstack_append_string): New overload, taking a length. + (urlify_quoted_string): Pass in an obstack ptr, rather than using + that of the pp's buffer. Generalize to handle trailing text in + the buffer beyond the run of quoted text. + (class quoting_info): New. + (on_begin_quote): New. + (on_end_quote): New. + (pp_format): Refactor phase 1 and phase 2 quoting support, moving + it to calls to on_begin_quote and on_end_quote. + (struct auto_obstack): New. + (quoting_info::handle_phase_3): New. + (pp_output_formatted_text): Add urlifier param. Use it if there + is deferred urlification. Delete m_quotes. + (selftest::pp_printf_with_urlifier): Pass urlifier to + pp_output_formatted_text. + (selftest::test_urlification): Update results for the existing + case of quoted text stradding chunks; add more such test cases. + * pretty-print.h (class quoting_info): New forward decl. + (chunk_info::m_quotes): New field. + (pp_output_formatted_text): Add optional urlifier param. + +2024-01-10 David Malcolm + + * pretty-print.cc (selftest::test_pp_format): Add selftest + coverage for numbered args. + +2024-01-10 Tamar Christina + + PR tree-optimization/113144 + PR tree-optimization/113145 + * tree-vect-loop-manip.cc (slpeel_tree_duplicate_loop_to_edge_cfg): + Update all BB that the original exits dominated. + +2024-01-10 Eric Botcazou + + * dwarf2out.cc (modified_type_die): Extend the support of reverse + storage order to enumeration types if -gstrict-dwarf is not passed. + (gen_enumeration_type_die): Add REVERSE parameter and generate the + DIE immediately after the existing one if it is true. + (gen_tagged_type_die): Add REVERSE parameter and pass it in the + call to gen_enumeration_type_die. + (gen_type_die_with_usage): Add REVERSE parameter and pass it in the + first recursive call as well as the call to gen_tagged_type_die. + (gen_type_die): Add REVERSE parameter and pass it in the call to + gen_type_die_with_usage. + +2024-01-10 Jakub Jelinek + + PR tree-optimization/113120 + * tree-sra.cc (analyze_access_subtree): For BITINT_TYPE + with root->size TYPE_PRECISION don't build anything new. + Otherwise, if root->type is a BITINT_TYPE, use build_bitint_type + rather than build_nonstandard_integer_type. + +2024-01-10 Hongyu Wang + + * config/i386/i386.opt: Adjust document. + * doc/invoke.texi: Add description for + -mapx-inline-asm-use-gpr32. + +2024-01-10 Juzhe-Zhong + + * config/riscv/autovec.md (avg3_floor): Remove. + (avg3_floor): New pattern. + (avg3_ceil): Remove. + (avg3_ceil): New pattern. + (uavg3_floor): Ditto. + (uavg3_ceil): Ditto. + * config/riscv/riscv-protos.h (enum insn_flags): Add for average addition. + (enum insn_type): Ditto. + * config/riscv/riscv-v.cc: Ditto. + * config/riscv/vector-iterators.md (ashiftrt): Remove. + (ASHIFTRT): Ditto. + * config/riscv/vector.md: Add VLS modes. + +2024-01-10 Kewen Lin + + PR target/111480 + * config/rs6000/vsx.md (VCZLSBB): New int iterator. + (vczlsbb_char): New int attribute. + (vclzlsbb_, vctzlsbb_): Merge to ... + (vczlsbb_): ... this. + (*vctzlsbb_zext_): Rename to ... + (*vczlsbb_zext_): ... this, and extend it to + cover vclzlsbb. + +2024-01-10 Kewen Lin + + PR target/112606 + * config/rs6000/rs6000.md (copysign3 IEEE128): Change predicate + of the last argument from altivec_register_operand to any_operand. If + operands[2] is CONST_DOUBLE, emit abs or neg abs depending on its sign + otherwise if it doesn't satisfy altivec_register_operand, force it to + REG using copy_to_mode_reg. + +2024-01-10 Kewen Lin + + PR middle-end/113100 + * builtins.cc (expand_builtin_stack_address): Guard stack point + adjustment with SPARC_STACK_BOUNDARY_HACK. + +2024-01-10 Yang Yujie + + * config/loongarch/genopts/loongarch-strings: Remove explicit-reloc + argument string definitions. + * config/loongarch/loongarch-str.h: Same. + * config/loongarch/genopts/loongarch.opt.in: Mark -m[no-]explicit-relocs + as aliases to -mexplicit-relocs={always,none} + * config/loongarch/loongarch.opt: Regenerate. + * config/loongarch/loongarch.cc: Same. + +2024-01-10 Yang Yujie + + * config/loongarch/loongarch-def.h: Define constants with + enums instead of Macros. + +2024-01-10 Yang Yujie + + * config/loongarch/genopts/loongarch-strings: Rename. + * config/loongarch/genopts/loongarch.opt.in: Same. + * config/loongarch/loongarch-cpu.cc: Same. + * config/loongarch/loongarch-def.cc: Same. + * config/loongarch/loongarch-def.h: Same. + * config/loongarch/loongarch-opts.cc: Same. + * config/loongarch/loongarch-opts.h: Same. + * config/loongarch/loongarch-str.h: Same. + * config/loongarch/loongarch.opt: Same. + +2024-01-10 Yang Yujie + + * config/loongarch/genopts/genstr.sh: Prepend the isa_evolution + variable with the common la_ prefix. + * config/loongarch/genopts/loongarch.opt.in: Mark ISA evolution + flags as saved using TargetVariable. + * config/loongarch/loongarch.opt: Same. + * config/loongarch/loongarch-def.h: Define evolution_set to + mark changes to the -march default. + * config/loongarch/loongarch-driver.cc: Same. + * config/loongarch/loongarch-opts.cc: Same. + * config/loongarch/loongarch-opts.h: Define and use ISA evolution + conditions around the la_target structure. + * config/loongarch/loongarch.cc: Same. + * config/loongarch/loongarch.md: Same. + * config/loongarch/loongarch-builtins.cc: Same. + * config/loongarch/loongarch-c.cc: Same. + * config/loongarch/lasx.md: Same. + * config/loongarch/lsx.md: Same. + * config/loongarch/sync.md: Same. + 2024-01-09 Jeff Law * config/epiphany/constraints.md (Car): Allow -1024..1023, no more, diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 4748a81cfd9..f62216e5602 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240110 +20240111 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a666b3b2dac..7b183c60444 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2024-01-10 Tamar Christina + + * parser.cc (cp_parser_pragma): Initialize to false. + 2024-01-09 Jason Merrill * semantics.cc (is_object_parameter): New. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7ed6f307edd..af068a85bb1 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,122 @@ +2024-01-10 Juzhe-Zhong + + * gcc.dg/vect/costmodel/riscv/rvv/vla_vs_vls-10.c: Fix test. + * gcc.dg/vect/costmodel/riscv/rvv/vla_vs_vls-11.c: Ditto. + * gcc.dg/vect/costmodel/riscv/rvv/vla_vs_vls-12.c: Ditto. + +2024-01-10 Antoni Boucher + + PR jit/111396 + * jit.dg/all-non-failing-tests.h: Add note about test-ggc-bugfix. + * jit.dg/test-ggc-bugfix.c: New test. + +2024-01-10 Jin Ma + + * gcc.target/riscv/xtheadint-push-pop.c: New test. + +2024-01-10 Tamar Christina + + PR tree-optimization/112468 + * gcc.dg/fold-copysign-1.c: Modify tests based on if target supports + IFN_COPYSIGN. + * gcc.dg/pr55152-2.c: Likewise. + * gcc.dg/tree-ssa/abs-4.c: Likewise. + * gcc.dg/tree-ssa/backprop-6.c: Likewise. + * gcc.dg/tree-ssa/copy-sign-2.c: Likewise. + * gcc.dg/tree-ssa/mult-abs-2.c: Likewise. + * lib/target-supports.exp (check_effective_target_ifn_copysign): New. + +2024-01-10 Andrew Pinski + + PR tree-optimization/112581 + * gcc.c-torture/execute/pr112581-1.c: New test. + +2024-01-10 Maciej W. Rozycki + + * gcc.target/riscv/pr105314.c: Fix comment termination. + +2024-01-10 Maciej W. Rozycki + + * gcc.target/riscv/cset-sext-sfb.c: New test. + * gcc.target/riscv/cset-sext-thead.c: New test. + * gcc.target/riscv/cset-sext-ventana.c: New test. + * gcc.target/riscv/cset-sext-zicond.c: New test. + * gcc.target/riscv/cset-sext.c: New test. + +2024-01-10 Jakub Jelinek + + PR tree-optimization/112734 + * gcc.dg/bitint-64.c: New test. + +2024-01-10 Tamar Christina + + PR tree-optimization/113287 + * gcc.dg/vect/vect-early-break_100-pr113287.c: New test. + * gcc.dg/vect/vect-early-break_99-pr113287.c: New test. + +2024-01-10 Richard Biener + + PR tree-optimization/113078 + * gcc.dg/vect/vect-reduc-cond-sub.c: New testcase. + * gcc.target/i386/vect-pr113078.c: Likewise. + +2024-01-10 Julian Brown + + * g++.dg/gomp/bad-array-section-10.C: Adjust diagnostics for C++23 and + up. + +2024-01-10 Julian Brown + + * g++.dg/gomp/array-section-1.C: Fix scan output for 32-bit target. + * g++.dg/gomp/array-section-2.C: Likewise. + * g++.dg/gomp/bad-array-section-4.C: Adjust error output for 32-bit + target. + +2024-01-10 Tamar Christina + + PR tree-optimization/113144 + PR tree-optimization/113145 + * gcc.dg/vect/vect-early-break_94-pr113144.c: New test. + +2024-01-10 Jakub Jelinek + + PR tree-optimization/113297 + * gcc.dg/bitint-63.c: Fix PR number. + +2024-01-10 chenxiaolong + + * gcc.dg/vect/slp-21.c: Add loongarch. + +2024-01-10 chenxiaolong + + * lib/target-supports.exp: Removed an issue with "target keyword" + checking errors on LoongArch architecture. + +2024-01-10 Jakub Jelinek + + PR tree-optimization/113120 + * gcc.dg/bitint-63.c: New test. + +2024-01-10 Juzhe-Zhong + + * gcc.target/riscv/rvv/autovec/vls/avg-1.c: Adapt test. + * gcc.target/riscv/rvv/autovec/vls/avg-2.c: Ditto. + * gcc.target/riscv/rvv/autovec/vls/avg-3.c: Ditto. + * gcc.target/riscv/rvv/autovec/vls/avg-4.c: Ditto. + * gcc.target/riscv/rvv/autovec/vls/avg-5.c: Ditto. + * gcc.target/riscv/rvv/autovec/vls/avg-6.c: Ditto. + * gcc.target/riscv/rvv/autovec/widen/vec-avg-rv32gcv.c: Ditto. + * gcc.target/riscv/rvv/autovec/widen/vec-avg-rv64gcv.c: Ditto. + +2024-01-10 Kewen Lin + + PR testsuite/112751 + * gcc.target/powerpc/pcrel-sibcall-1.c: Replace noinline as noipa. + +2024-01-10 Juzhe-Zhong + + * gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul2-7.c: Add assembler-not check. + 2024-01-09 Jason Merrill * g++.dg/torture/accessor-fixits-9-xobj.C: New test. diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 1ff33781cc0..acdd2113b63 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,10 @@ +2024-01-10 Jakub Jelinek + + PR libgomp/113192 + * configure.ac (FLOCK): Use $libgomp_abs_srcdir/testsuite/flock + instead of \$(abs_top_srcdir)/testsuite/flock. + * configure: Regenerated. + 2024-01-09 Julian Brown * testsuite/libgomp.c++/baseptrs-4.C: Remove commented-out cases that diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 5628341ec3c..5b3e2d84140 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2024-01-11 Patrick Palka + + * include/bits/utility.h (_Nth_type): Use + _GLIBCXX_USE_BUILTIN_TRAIT instead of __has_builtin. + 2024-01-09 Jonathan Wakely * include/bits/unicode-data.h: Regenerate.