diff --git a/ChangeLog b/ChangeLog index 1447f853100c..288c928c5d05 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2022-12-09 Martin Liska + + * MAINTAINERS: Fix spacing. + 2022-12-07 Arthur Cohen * MAINTAINERS: Add Arthur Cohen as Rust front-end maintainer. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b6ebbf52af6d..59760ed92405 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,54 @@ +2022-12-09 Jiufu Guo + + * config/rs6000/rs6000.cc (rs6000_emit_set_const): Remove copy_rtx. + (rs6000_emit_set_long_const): Likewise. + +2022-12-09 Martin Liska + + * config/i386/i386-builtins.cc (fold_builtin_cpu): Use same path + as for PR103661. + * doc/extend.texi: Fix "x86-64" use. + +2022-12-09 Sebastian Huber + + * config/rtems.h (SUBTARGET_CC1_SPEC): Rename to... + (OS_CC1_SPEC): ...this. + * gcc.cc (SUBTARGET_CC1_SPEC): Rename to... + (OS_CC1_SPEC): ...this. + +2022-12-09 David Malcolm + + * Makefile.in (ANALYZER_OBJS): Update for renaming of + analyzer/region-model-impl-calls.cc to analyzer/kf.cc. + +2022-12-09 liuhongt + + * doc/invoke.texi (x86 options): Document + -mlam={none,u48,u57}. + * config/i386/i386-opts.h (enum lam_type): New enum. + * config/i386/i386.cc (ix86_memtag_can_tag_addresses): New. + (ix86_memtag_set_tag): Ditto. + (ix86_memtag_extract_tag): Ditto. + (ix86_memtag_add_tag): Ditto. + (ix86_memtag_tag_size): Ditto. + (ix86_memtag_untagged_pointer): Ditto. + (TARGET_MEMTAG_CAN_TAG_ADDRESSES): New. + (TARGET_MEMTAG_ADD_TAG): Ditto. + (TARGET_MEMTAG_SET_TAG): Ditto. + (TARGET_MEMTAG_EXTRACT_TAG): Ditto. + (TARGET_MEMTAG_UNTAGGED_POINTER): Ditto. + (TARGET_MEMTAG_TAG_SIZE): Ditto. + (IX86_HWASAN_SHIFT): Ditto. + (IX86_HWASAN_TAG_SIZE): Ditto. + * config/i386/i386-expand.cc (ix86_expand_call): Untag code + pointer. + * config/i386/i386-options.cc (ix86_option_override_internal): + Error when enable -mlam=[u48|u57] for 32-bit code. + * config/i386/i386.opt: Add -mlam=[none|u48|u57]. + * config/i386/i386-protos.h (ix86_memtag_untagged_pointer): + Declare. + (ix86_memtag_can_tag_addresses): Ditto. + 2022-12-08 Marek Polacek * doc/invoke.texi (-fsanitize=address): Suggest options to improve diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 6f787fd296df..039ae27f0093 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221209 +20221210 diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog index 9a4bb25f3db4..911803549c93 100644 --- a/gcc/analyzer/ChangeLog +++ b/gcc/analyzer/ChangeLog @@ -1,3 +1,39 @@ +2022-12-09 David Malcolm + + * analyzer.h (class known_function): Expand comment. + * region-model-impl-calls.cc: Rename to... + * kf.cc: ...this. + * known-function-manager.h (class known_function_manager): Add + leading comment. + +2022-12-09 David Malcolm + + PR analyzer/108003 + * call-summary.cc + (call_summary_replay::convert_region_from_summary_1): Convert + heap_regs_in_use from auto_sbitmap to auto_bitmap. + * region-model-manager.cc + (region_model_manager::get_or_create_region_for_heap_alloc): + Convert from sbitmap to bitmap. + * region-model-manager.h: Likewise. + * region-model.cc + (region_model::get_or_create_region_for_heap_alloc): Convert from + auto_sbitmap to auto_bitmap. + (region_model::get_referenced_base_regions): Likewise. + * region-model.h: Include "bitmap.h" rather than "sbitmap.h". + (region_model::get_referenced_base_regions): Convert from + auto_sbitmap to auto_bitmap. + +2022-12-09 David Malcolm + + * region-model-impl-calls.cc (class kf_memcpy): Rename to... + (class kf_memcpy_memmove): ...this. + (kf_memcpy::impl_call_pre): Rename to... + (kf_memcpy_memmove::impl_call_pre): ...this, and check the src for + poison. + (register_known_functions): Update for above renaming, and + register BUILT_IN_MEMMOVE and BUILT_IN_MEMMOVE_CHK. + 2022-12-06 David Malcolm PR analyzer/107882 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index b53a30631ed8..e57deb55a688 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,24 @@ +2022-12-09 Paul Thomas + + PR fortran/107872 + * resolve.cc (derived_inaccessible): Skip over allocatable components + to prevent an infinite loop. + +2022-12-09 Tobias Burnus + + * dump-parse-tree.cc (show_omp_namelist): Improve OMP_LIST_ALLOCATE + output. + * gfortran.h (struct gfc_omp_namelist): Add 'align' to 'u'. + (gfc_free_omp_namelist): Add bool arg. + * match.cc (gfc_free_omp_namelist): Likewise; free 'u.align'. + * openmp.cc (gfc_free_omp_clauses, gfc_match_omp_clause_reduction, + gfc_match_omp_flush): Update call. + (gfc_match_omp_clauses): Match 'align/allocate modifers in + 'allocate' clause. + (resolve_omp_clauses): Resolve align. + * st.cc (gfc_free_statement): Update call + * trans-openmp.cc (gfc_trans_omp_clauses): Handle 'align'. + 2022-12-08 Harald Anlauf PR fortran/108025 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ee88e157071b..df2b484eac3d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,28 @@ +2022-12-09 Paul Thomas + + PR fortran/107872 + * gfortran.dg/pr107872.f90: New test. + +2022-12-09 Martin Liska + + * gcc.target/i386/builtin_target.c: Add more checks. + +2022-12-09 David Malcolm + + PR analyzer/108003 + * g++.dg/analyzer/pr108003.C: New test. + +2022-12-09 David Malcolm + + * gcc.dg/analyzer/memcpy-1.c (test_8a, test_8b): New tests. + * gcc.dg/analyzer/memmove-1.c: New test, based on memcpy-1.c + * gcc.dg/analyzer/out-of-bounds-1.c (test7): Update expected + result for uninit srcBuf. + * gcc.dg/analyzer/out-of-bounds-5.c (test8, test9): Add + dg-warnings for memcpy from uninit src vla. + * gcc.dg/analyzer/pr104308.c (test_memmove_within_uninit): + Expect creation point note to be missing on riscv*-*-*. + 2022-12-08 Harald Anlauf PR fortran/108025 diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index bfad2c5e1b72..f3e84bec34e2 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,10 @@ +2022-12-09 Tobias Burnus + + * libgomp.texi (5.1 Impl. Status): Split allocate clause/directive + item about 'align'; mark clause as 'Y' and directive as 'N'. + * testsuite/libgomp.fortran/allocate-2.f90: New test. + * testsuite/libgomp.fortran/allocate-3.f90: New test. + 2022-12-06 Marcel Vollweiler * config/gcn/icv-device.c (omp_get_teams_thread_limit): Added to diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog index 2a7ce17c807c..b1c04a7ffb65 100644 --- a/libsanitizer/ChangeLog +++ b/libsanitizer/ChangeLog @@ -1,3 +1,7 @@ +2022-12-09 liuhongt + + * configure.tgt: Enable hwasan for x86-64. + 2022-12-04 Iain Sandoe * configure.tgt: Restrict build to Darwin 16 or newer. diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index a6c4df75c3bc..ad7bc5d2aa8e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,27 @@ +2022-12-09 Jonathan Wakely + + PR libstdc++/108015 + * include/std/chrono (hh_mm_ss): Remove digit separators. + +2022-12-09 Jonathan Wakely + + * include/ext/pb_ds/detail/type_utils.hpp (PB_DS_STATIC_ASSERT): + Add unused attribute to avoid -Wunused-local-typedef warnings. + * testsuite/17_intro/tag_type_explicit_ctor.cc: Add pragma to + ignore -Wunused-variable warnings + +2022-12-09 Jonathan Wakely + + * include/bits/chrono.h (duration_cast, floor, round, abs, ceil) + (time_point_cast): Add [[nodiscard]] attribute and doxygen + comments. + (treat_as_floating_point): Add doxygen commen. + +2022-12-09 Jonathan Wakely + + * include/bits/chrono.h (duration, time_point): Change 'struct' + to 'class'. + 2022-12-07 Jonathan Wakely François Dumont