https://gcc.gnu.org/g:3fafd9cb40e40cc4cc0a201ff150530dc3da7116
commit r15-7201-g3fafd9cb40e40cc4cc0a201ff150530dc3da7116 Author: GCC Administrator <gccadmin@gcc.gnu.org> Date: Sat Jan 25 00:17:46 2025 +0000 Daily bump. Diff: --- gcc/ChangeLog | 264 ++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 6 ++ gcc/jit/ChangeLog | 11 ++ gcc/m2/ChangeLog | 12 +++ gcc/testsuite/ChangeLog | 90 +++++++++++++++++ libgfortran/ChangeLog | 6 ++ 7 files changed, 390 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4665edc25598..90111bb52142 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,267 @@ +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * config/aarch64/aarch64-arches.def (V9_5A): Add CPA. + * config/aarch64/aarch64-option-extensions.def (CPA): New. + * doc/invoke.texi: Document +cpa. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * doc/invoke.texi: Add +wfxt and +xs to armv9.2-a + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * config/aarch64/aarch64-arches.def (V9_5A): New. + * doc/invoke.texi: Document armv9.5-a option. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * common/config/aarch64/aarch64-common.cc: Assert that CRYPTO + bit is not set. + * config/aarch64/aarch64-feature-deps.h + (info<FEAT>.explicit_on): Unset CRYPTO bit. + (cpu_##CORE_IDENT): Ditto. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * common/config/aarch64/aarch64-common.cc + (aarch64_rewrite_selected_cpu): Refactor and inline into... + (aarch64_rewrite_mcpu): this. + * config/aarch64/aarch64-protos.h + (aarch64_rewrite_selected_cpu): Delete. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * common/config/aarch64/aarch64-common.cc + (aarch64_get_arch_string_for_assembler): New. + (aarch64_rewrite_march): New. + (aarch64_rewrite_selected_cpu): Call new function. + * config/aarch64/aarch64-elf.h (ASM_SPEC): Remove identity mapping. + * config/aarch64/aarch64-protos.h + (aarch64_get_arch_string_for_assembler): New. + * config/aarch64/aarch64.cc + (aarch64_declare_function_name): Call new function. + (aarch64_start_file): Ditto. + * config/aarch64/aarch64.h + (EXTRA_SPEC_FUNCTIONS): Use new macro name. + (MCPU_TO_MARCH_SPEC): Rename to... + (MARCH_REWRITE_SPEC): ...this, and extend the spec rule. + (aarch64_rewrite_march): New declaration. + (MCPU_TO_MARCH_SPEC_FUNCTIONS): Rename to... + (AARCH64_BASE_SPEC_FUNCTIONS): ...this, and add new function. + (ASM_CPU_SPEC): Use new macro name. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * common/config/aarch64/aarch64-common.cc + (aarch64_get_all_extension_candidates): Inline into... + (aarch64_print_hint_for_extensions): ...this. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * common/config/aarch64/aarch64-common.cc + (aarch64_get_all_extension_candidates): Move within file. + (aarch64_print_hint_candidates): Move from aarch64.cc. + (aarch64_print_hint_for_extensions): Ditto. + (aarch64_print_hint_for_arch): Ditto. + (aarch64_print_hint_for_core): Ditto. + (enum aarch_parse_opt_result): Ditto. + (aarch64_parse_arch): Ditto. + (aarch64_parse_cpu): Ditto. + (aarch64_parse_tune): Ditto. + (aarch64_validate_march): Ditto. + (aarch64_validate_mcpu): Ditto. + (aarch64_validate_mtune): Ditto. + * config/aarch64/aarch64-protos.h + (aarch64_rewrite_selected_cpu): Move within file. + (aarch64_print_hint_for_extensions): Share function prototype. + (aarch64_print_hint_for_arch): Ditto. + (aarch64_print_hint_for_core): Ditto. + (enum aarch_parse_opt_result): Ditto. + (aarch64_validate_march): Ditto. + (aarch64_validate_mcpu): Ditto. + (aarch64_validate_mtune): Ditto. + (aarch64_get_all_extension_candidates): Unshare prototype. + * config/aarch64/aarch64.cc + (aarch64_parse_arch): Move to aarch64-common.cc. + (aarch64_parse_cpu): Ditto. + (aarch64_parse_tune): Ditto. + (aarch64_print_hint_candidates): Ditto. + (aarch64_print_hint_for_core): Ditto. + (aarch64_print_hint_for_arch): Ditto. + (aarch64_print_hint_for_extensions): Ditto. + (aarch64_validate_mcpu): Ditto. + (aarch64_validate_march): Ditto. + (aarch64_validate_mtune): Ditto. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * config/aarch64/aarch64.cc + (aarch64_print_hint_candidates): New helper function. + (aarch64_print_hint_for_core_or_arch): Inline into callers. + (aarch64_print_hint_for_core): Inline callee and use new helper. + (aarch64_print_hint_for_arch): Ditto. + (aarch64_print_hint_for_extensions): Use new helper. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * config/aarch64/aarch64.cc + (aarch64_print_hint_for_extensions): Receive string as a char *. + (aarch64_parse_arch): Don't return a const struct processor *. + (aarch64_parse_cpu): Ditto. + (aarch64_parse_tune): Ditto. + (aarch64_validate_mtune): Ditto. + (aarch64_validate_mcpu): Ditto, and use temporary variables for + march/mcpu cross-check. + (aarch64_validate_march): Ditto. + (aarch64_override_options): Adjust for changed parameter types. + (aarch64_handle_attr_arch): Ditto. + (aarch64_handle_attr_cpu): Ditto. + (aarch64_handle_attr_tune): Ditto. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * common/config/aarch64/aarch64-common.cc + (struct aarch64_option_extension): Rename to.. + (struct aarch64_extension_info): ...this. + (all_extensions): Update type name. + (struct arch_to_arch_name): Rename to... + (struct aarch64_arch_info): ...this, and rename name field. + (all_architectures): Update type names, and move before... + (struct processor_name_to_arch): ...this. Rename to... + (struct aarch64_processor_info): ...this, rename name field and + add cpu field. + (all_cores): Update type name, and set new field. + (aarch64_parse_extension): Update names. + (aarch64_get_all_extension_candidates): Ditto. + (aarch64_rewrite_selected_cpu): Ditto. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * common/config/aarch64/aarch64-common.cc + (all_cores): Remove explicit generic entry. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * config/aarch64/aarch64-opts.h + (enum aarch64_processor): Rename to... + (enum aarch64_cpu): ...this, and rename the entries. + * config/aarch64/aarch64.cc + (aarch64_type): Rename type and initial value. + (struct processor): Rename member types. + (all_architectures): Rename enum members. + (all_cores): Ditto. + (aarch64_get_tune_cpu): Rename type and enum member. + * config/aarch64/aarch64.h (enum target_cpus): Remove. + (TARGET_CPU_DEFAULT): Rename default value. + (aarch64_tune): Rename type. + * config/aarch64/aarch64.opt: + (selected_tune): Rename type and default value. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * config/aarch64/aarch64.cc (aarch64_override_options): Compare + returned feature masks directly. + +2025-01-24 Vladimir N. Makarov <vmaka...@redhat.com> + + PR target/118497 + * ira-int.h (target_ira_int): Add x_ira_hard_regno_nrefs. + (ira_hard_regno_nrefs): New macro. + * ira.cc (setup_hard_regno_aclass): Remove unused code. Modify + the comment. + (setup_hard_regno_nrefs): New function. + (ira): Call it. + * ira-color.cc (calculate_saved_nregs): Check + ira_hard_regno_nrefs. + +2025-01-24 yxj-github-437 <2457369...@qq.com> + + * config/aarch64/aarch64.cc (aarch64_build_builtin_va_list): Mark + __builtin_va_list as TREE_PUBLIC. + * config/arm/arm.cc (arm_build_builtin_va_list): Likewise. + +2025-01-24 David Malcolm <dmalc...@redhat.com> + + PR sarif-replay/117670 + * Makefile.in (SARIF_REPLAY_INSTALL_NAME): New. + (install-libgdiagnostics): Use it,and exeext, rather than just + sarif-replay. + +2025-01-24 Richard Biener <rguent...@suse.de> + + PR tree-optimization/116010 + * tree-data-ref.cc (contains_ssa_ref_p_1): New function. + (contains_ssa_ref_p): Likewise. + (dr_may_alias_p): Avoid treating unanalyzed base parts without + SSA reference conservatively. + +2025-01-24 Stefan Schulze Frielinghaus <stefa...@gcc.gnu.org> + + * config/s390/s390.h (S390_TDC_POSITIVE_ZERO): Remove. + (S390_TDC_NEGATIVE_ZERO): Remove. + (S390_TDC_POSITIVE_NORMALIZED_BFP_NUMBER): Remove. + (S390_TDC_NEGATIVE_NORMALIZED_BFP_NUMBER): Remove. + (S390_TDC_POSITIVE_DENORMALIZED_BFP_NUMBER): Remove. + (S390_TDC_NEGATIVE_DENORMALIZED_BFP_NUMBER): Remove. + (S390_TDC_POSITIVE_INFINITY): Remove. + (S390_TDC_NEGATIVE_INFINITY): Remove. + (S390_TDC_POSITIVE_QUIET_NAN): Remove. + (S390_TDC_NEGATIVE_QUIET_NAN): Remove. + (S390_TDC_POSITIVE_SIGNALING_NAN): Remove. + (S390_TDC_NEGATIVE_SIGNALING_NAN): Remove. + (S390_TDC_POSITIVE_DENORMALIZED_DFP_NUMBER): Remove. + (S390_TDC_NEGATIVE_DENORMALIZED_DFP_NUMBER): Remove. + (S390_TDC_POSITIVE_NORMALIZED_DFP_NUMBER): Remove. + (S390_TDC_NEGATIVE_NORMALIZED_DFP_NUMBER): Remove. + (S390_TDC_SIGNBIT_SET): Remove. + (S390_TDC_INFINITY): Remove. + * config/s390/s390.md (signbit<mode>2<tf_fpr>): Merge this one + (isinf<mode>2<tf_fpr>): and this one into + (<TDC_CLASS:tdc_insn><mode>2<tf_fpr>): new expander. + (isnormal<mode>2<tf_fpr>): New BFP expander. + (isnormal<mode>2): New DFP expander. + * config/s390/vector.md (signbittf2_vr): Merge this one + (isinftf2_vr): and this one into + (<tdc_insn>tf2_vr): new expander. + (signbittf2): Merge this one + (isinftf2): and this one into + (<tdc_insn>tf2): new expander. + +2025-01-24 Richard Biener <rguent...@suse.de> + + PR tree-optimization/118634 + * tree-ssa-loop-ivcanon.cc (try_unroll_loop_completely): + Dump the number of estimated eliminated insns. + +2025-01-24 Saurabh Jha <saurabh....@arm.com> + + * config/aarch64/aarch64-sve2.md: + (*aarch64_pred_faminmax_fused): Fix to use the correct flags. + * config/aarch64/aarch64.h + (TARGET_SVE_FAMINMAX): Remove. + * config/aarch64/iterators.md: Fix iterators so that famax and + famin use correct flags. + +2025-01-24 Alexandre Oliva <ol...@adacore.com> + + PR tree-optimization/118572 + * gimple-fold.cc (fold_truth_andor_for_ifcombine): Compare as + unsigned the variables whose extension bits are masked out. + +2025-01-24 Alexandre Oliva <ol...@adacore.com> + + * gimple-fold.cc (fold_truth_andor_for_ifcombine): Document + reversep's absence of effects on range tests. Don't reject + reversep mismatches before trying compare swapping. + +2025-01-24 Alexandre Oliva <ol...@adacore.com> + + PR tree-optimization/118514 + * tree-eh.cc (bit_field_ref_in_bounds_p): New. + (tree_could_trap_p) <BIT_FIELD_REF>: Call it. + * gimple-fold.cc (make_bit_field_load): Check trapping status + of replacement load against original load. + 2025-01-23 John David Anglin <dang...@gcc.gnu.org> * config/pa/pa32-regs.h (ADDITIONAL_REGISTER_NAMES): Change diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 56a27e9356ca..da8bd402f29b 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20250124 +20250125 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 62cee4efc3a6..9b64c0d683d8 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2025-01-24 Marek Polacek <pola...@redhat.com> + + PR c++/117153 + * decl2.cc (build_anon_union_vars): Use FIELD for the second operand + of a COMPONENT_REF. + 2025-01-23 Marek Polacek <pola...@redhat.com> PR c++/117602 diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog index 7d35e8c5dfef..97ce9b73d959 100644 --- a/gcc/jit/ChangeLog +++ b/gcc/jit/ChangeLog @@ -1,3 +1,14 @@ +2025-01-24 David Malcolm <dmalc...@redhat.com> + + PR jit/117886 + * jit-recording.cc (reproducer::get_identifier_as_rvalue): Handle + null memento. + (reproducer::get_identifier_as_lvalue): Likewise. + (reproducer::get_identifier_as_type): Likewise. + (recording::ctor::write_reproducer): Use get_identifier_as_rvalue + rather than get_identifier when writing out gcc_jit_rvalue * + expressions. + 2025-01-22 David Malcolm <dmalc...@redhat.com> * dummy-frontend.cc (tree_type_to_jit_type): For POINTER_TYPE, diff --git a/gcc/m2/ChangeLog b/gcc/m2/ChangeLog index 93b5ff1022ba..b6b35a76c906 100644 --- a/gcc/m2/ChangeLog +++ b/gcc/m2/ChangeLog @@ -1,3 +1,15 @@ +2025-01-25 Gaius Mulley <gaiusm...@gmail.com> + + PR modula2/118589 + * gm2-compiler/M2MetaError.mod (symDesc): Add opaque type + description. + * gm2-compiler/M2Quads.mod (BuildDesignatorPointerError): New + procedure. + (BuildDesignatorPointer): Reimplement. + * gm2-compiler/P3Build.bnf (SubDesignator): Tidy up error message. + Use MetaErrorT2 rather than WriteForma1 and use the token pos from + the quad stack. + 2025-01-13 Gaius Mulley <gaiusm...@gmail.com> PR modula2/116557 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f62e58c00112..a6eaf218d5d3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,93 @@ +2025-01-25 Gaius Mulley <gaiusm...@gmail.com> + + PR modula2/118589 + * lib/gm2-dg.exp (gm2.exp): load_lib. + * gm2.dg/pim/fail/badopaque.mod: New test. + * gm2.dg/pim/fail/badopaque2.mod: New test. + * gm2.dg/pim/fail/dg-pim-fail.exp: New test. + * gm2.dg/pim/fail/opaquedefs.def: New test. + * gm2.dg/pim/fail/opaquedefs.mod: New test. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * gcc.target/aarch64/simd/armv9p5.c: New test. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * gcc.target/aarch64/crypto-alias-1.c: New test. + +2025-01-24 Andrew Carlotti <andrew.carlo...@arm.com> + + * gcc.target/aarch64/target_attr_crypto_ice_1.c: Prune warning. + * gcc.target/aarch64/target_attr_crypto_ice_2.c: Ditto. + +2025-01-24 Vladimir N. Makarov <vmaka...@redhat.com> + + PR target/118497 + * gcc.target/i386/pr118497.c: New. + * gcc.target/i386/vartrack-1.c: Modify the regexp. + +2025-01-24 Marek Polacek <pola...@redhat.com> + + PR c++/117153 + * g++.dg/other/anon-union6.C: New test. + * g++.dg/other/anon-union7.C: New test. + +2025-01-24 Torbjörn SVENSSON <torbjorn.svens...@foss.st.com> + + * gcc.target/arm/thumb-bitfld1.c: Use -std=c17. + +2025-01-24 Torbjörn SVENSSON <torbjorn.svens...@foss.st.com> + + PR testsuite/116448 + * gcc.target/arm/vfp-1.c: Use -Os -fno-math-errno. + +2025-01-24 Jerry DeLisle <jvdeli...@gcc.gnu.org> + + PR libfortran/118571 + * gfortran.dg/utf8_3.f03: New test. + +2025-01-24 yxj-github-437 <2457369...@qq.com> + + * g++.dg/modules/builtin-8.C: New test. + +2025-01-24 David Malcolm <dmalc...@redhat.com> + + PR jit/117886 + * jit.dg/all-non-failing-tests.h: Add + test-pr117886-write-reproducer.c. + * jit.dg/test-pr117886-write-reproducer.c: New test. + +2025-01-24 Richard Biener <rguent...@suse.de> + + PR tree-optimization/116010 + * gfortran.dg/vect/vect-8.f90: Adjust. + +2025-01-24 Stefan Schulze Frielinghaus <stefa...@gcc.gnu.org> + + * gcc.target/s390/isfinite-isinf-isnormal-signbit-1.c: New test. + * gcc.target/s390/isfinite-isinf-isnormal-signbit-2.c: New test. + * gcc.target/s390/isfinite-isinf-isnormal-signbit-3.c: New test. + * gcc.target/s390/isfinite-isinf-isnormal-signbit.h: New test. + +2025-01-24 Saurabh Jha <saurabh....@arm.com> + + * gcc.target/aarch64/sve/faminmax_1.c: Fix test to use the + correct flags. + * gcc.target/aarch64/sve/faminmax_2.c: Fix test to use the + correct flags. + * gcc.target/aarch64/sve/faminmax_3.c: New test. + +2025-01-24 Alexandre Oliva <ol...@adacore.com> + + PR tree-optimization/118572 + * gcc.dg/field-merge-24.c: New. + +2025-01-24 Alexandre Oliva <ol...@adacore.com> + + PR tree-optimization/118514 + * gcc.dg/field-merge-23.c: New. + 2025-01-23 Marek Polacek <pola...@redhat.com> PR c++/117602 diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 982b4c72f7a4..2bcfbe9abd9c 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2025-01-24 Jerry DeLisle <jvdeli...@gcc.gnu.org> + + PR libfortran/118571 + * io/write.c (write_utf8_char4): Adjust the src_len to the + format width w_len when greater than zero. + 2025-01-17 Harald Anlauf <anl...@gmx.de> PR libfortran/118536