Daily bump.
This commit is contained in:
parent
c8373dc8bf
commit
4341106354
7 changed files with 280 additions and 1 deletions
102
gcc/ChangeLog
102
gcc/ChangeLog
|
@ -1,3 +1,105 @@
|
|||
2023-02-24 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* vec.h (vec<T, A, vl_embed>::m_vecdata): Remove.
|
||||
(vec<T, A, vl_embed>::m_vecpfx): Align as T to avoid
|
||||
changing alignment of vec<T, A, vl_embed> and simplifying
|
||||
address.
|
||||
(vec<T, A, vl_embed>::address): Compute as this + 1.
|
||||
(vec<T, A, vl_embed>::embedded_size): Use sizeof the
|
||||
vector instead of the offset of the m_vecdata member.
|
||||
(auto_vec<T, N>::m_data): Turn storage into
|
||||
uninitialized unsigned char.
|
||||
(auto_vec<T, N>::auto_vec): Allow allocation of one
|
||||
stack member. Initialize m_vec in a special way to
|
||||
avoid later stringop overflow diagnostics.
|
||||
* vec.cc (test_auto_alias): New.
|
||||
(vec_cc_tests): Call it.
|
||||
|
||||
2023-02-24 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* vec.h (vec<T, A, vl_embed>::lower_bound): Adjust to
|
||||
take a const reference to the object, use address to
|
||||
access data.
|
||||
(vec<T, A, vl_embed>::contains): Use address to access data.
|
||||
(vec<T, A, vl_embed>::operator[]): Use address instead of
|
||||
m_vecdata to access data.
|
||||
(vec<T, A, vl_embed>::iterate): Likewise.
|
||||
(vec<T, A, vl_embed>::copy): Likewise.
|
||||
(vec<T, A, vl_embed>::quick_push): Likewise.
|
||||
(vec<T, A, vl_embed>::pop): Likewise.
|
||||
(vec<T, A, vl_embed>::quick_insert): Likewise.
|
||||
(vec<T, A, vl_embed>::ordered_remove): Likewise.
|
||||
(vec<T, A, vl_embed>::unordered_remove): Likewise.
|
||||
(vec<T, A, vl_embed>::block_remove): Likewise.
|
||||
(vec<T, A, vl_heap>::address): Likewise.
|
||||
|
||||
2023-02-24 Martin Liska <mliska@suse.cz>
|
||||
|
||||
PR sanitizer/108834
|
||||
* asan.cc (asan_add_global): Use proper TU name for normal
|
||||
global variables (and aux_base_name for the artificial one).
|
||||
|
||||
2023-02-24 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* config/i386/i386-builtin.def: Update description of BDESC
|
||||
and BDESC_FIRST in file comment to include mask2.
|
||||
|
||||
2023-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
|
||||
|
||||
* config/aarch64/aarch64-cores.def (FLAGS): Update comment.
|
||||
|
||||
2023-02-24 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR middle-end/108854
|
||||
* cgraphclones.cc (duplicate_thunk_for_node): If no parameter
|
||||
changes are needed, copy at least DECL_ARGUMENTS PARM_DECL
|
||||
nodes and adjust their DECL_CONTEXT.
|
||||
|
||||
2023-02-24 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR target/108881
|
||||
* config/i386/i386-builtin.def (__builtin_ia32_cvtne2ps2bf16_v16bf,
|
||||
__builtin_ia32_cvtne2ps2bf16_v16bf_mask,
|
||||
__builtin_ia32_cvtne2ps2bf16_v16bf_maskz,
|
||||
__builtin_ia32_cvtne2ps2bf16_v8bf,
|
||||
__builtin_ia32_cvtne2ps2bf16_v8bf_mask,
|
||||
__builtin_ia32_cvtne2ps2bf16_v8bf_maskz,
|
||||
__builtin_ia32_cvtneps2bf16_v8sf_mask,
|
||||
__builtin_ia32_cvtneps2bf16_v8sf_maskz,
|
||||
__builtin_ia32_cvtneps2bf16_v4sf_mask,
|
||||
__builtin_ia32_cvtneps2bf16_v4sf_maskz,
|
||||
__builtin_ia32_dpbf16ps_v8sf, __builtin_ia32_dpbf16ps_v8sf_mask,
|
||||
__builtin_ia32_dpbf16ps_v8sf_maskz, __builtin_ia32_dpbf16ps_v4sf,
|
||||
__builtin_ia32_dpbf16ps_v4sf_mask,
|
||||
__builtin_ia32_dpbf16ps_v4sf_maskz): Require also
|
||||
OPTION_MASK_ISA_AVX512VL.
|
||||
|
||||
2023-02-24 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* config/riscv/t-rtems: Keep only -mcmodel=medany 64-bit multilibs.
|
||||
Add non-compact 32-bit multilibs.
|
||||
|
||||
2023-02-24 Junxian Zhu <zhujunxian@oss.cipunited.com>
|
||||
|
||||
* config/mips/mips.md (*clo<mode>2): New pattern.
|
||||
|
||||
2023-02-24 Prachi Godbole <prachi.godbole@imgtec.com>
|
||||
|
||||
* config/mips/mips.h (machine_function): New variable
|
||||
use_hazard_barrier_return_p.
|
||||
* config/mips/mips.md (UNSPEC_JRHB): New unspec.
|
||||
(mips_hb_return_internal): New insn pattern.
|
||||
* config/mips/mips.cc (mips_attribute_table): Add attribute
|
||||
use_hazard_barrier_return.
|
||||
(mips_use_hazard_barrier_return_p): New static function.
|
||||
(mips_function_attr_inlinable_p): Likewise.
|
||||
(mips_compute_frame_info): Set use_hazard_barrier_return_p.
|
||||
Emit error for unsupported architecture choice.
|
||||
(mips_function_ok_for_sibcall, mips_can_use_return_insn):
|
||||
Return false for use_hazard_barrier_return.
|
||||
(mips_expand_epilogue): Emit hazard barrier return.
|
||||
* doc/extend.texi: Document use_hazard_barrier_return.
|
||||
|
||||
2023-02-23 Max Filippov <jcmvbkbc@gmail.com>
|
||||
|
||||
* config/xtensa/xtensa-dynconfig.cc (config.h, system.h)
|
||||
|
|
|
@ -1 +1 @@
|
|||
20230224
|
||||
20230225
|
||||
|
|
|
@ -1,3 +1,21 @@
|
|||
2023-02-24 Rimvydas Jasinskas <rimvydas.jas@gmail.com>
|
||||
|
||||
* trans-decl.cc (gfc_finish_var_decl): Apply attribute.
|
||||
(generate_local_decl): Add diagnostic for dummy and local variables.
|
||||
|
||||
2023-02-24 Mikael Morin <mikael@gcc.gnu.org>
|
||||
|
||||
PR fortran/108923
|
||||
* expr.cc (gfc_free_actual_arglist): Free associated_dummy
|
||||
memory.
|
||||
(gfc_copy_actual_arglist): Make a copy of the associated_dummy
|
||||
field if it is set in the original element.
|
||||
|
||||
2023-02-24 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/108924
|
||||
* frontend-passes.cc (do_subscript): Clear used gmp variable.
|
||||
|
||||
2023-02-23 Arsen Arsenović <arsen@aarsen.me>
|
||||
|
||||
* invoke.texi: Reorder index entries around @items.
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2023-02-24 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* be.po, da.po, de.po, el.po, es.po, fi.po, fr.po, hr.po, id.po,
|
||||
ja.po, nl.po, ru.po, sr.po, sv.po, tr.po, uk.po, vi.po, zh_CN.po,
|
||||
zh_TW.po: Update.
|
||||
|
||||
2023-02-10 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* gcc.pot: Regenerate.
|
||||
|
|
|
@ -1,3 +1,39 @@
|
|||
2023-02-24 Rimvydas Jasinskas <rimvydas.jas@gmail.com>
|
||||
|
||||
* gfortran.dg/weak-2.f90: New test.
|
||||
* gfortran.dg/weak-3.f90: New test.
|
||||
|
||||
2023-02-24 Martin Liska <mliska@suse.cz>
|
||||
|
||||
PR sanitizer/108834
|
||||
* c-c++-common/asan/global-overflow-1.c: Test line and column
|
||||
info for a global variable.
|
||||
|
||||
2023-02-24 Alexandre Oliva <oliva@adacore.com>
|
||||
|
||||
PR c++/105224
|
||||
* g++.dg/modules/virt-2_a.C: Skip on arm_eabi.
|
||||
|
||||
2023-02-24 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR middle-end/108854
|
||||
* g++.dg/opt/pr108854.C: New test.
|
||||
|
||||
2023-02-24 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR target/108881
|
||||
* gcc.target/i386/avx512bf16-pr108881.c: New test.
|
||||
|
||||
2023-02-24 Junxian Zhu <zhujunxian@oss.cipunited.com>
|
||||
|
||||
* gcc.target/mips/clz.c: New test.
|
||||
* gcc.target/mips/clo.c: New test.
|
||||
* gcc.target/mips/mips.exp: New option HAS_CLZ.
|
||||
|
||||
2023-02-24 Prachi Godbole <prachi.godbole@imgtec.com>
|
||||
|
||||
* gcc.target/mips/hazard-barrier-return-attribute.c: New test.
|
||||
|
||||
2023-02-23 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
|
||||
|
||||
* gcc.target/xtensa/elim_GP_regmove_0.c: New test.
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2023-02-24 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, fi.po, fr.po,
|
||||
id.po, ja.po, ka.po, nl.po, pt_BR.po, ro.po, ru.po, sr.po, sv.po,
|
||||
tr.po, uk.po, vi.po, zh_CN.po, zh_TW.po: Update.
|
||||
|
||||
2023-02-10 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* cpplib.pot: Regenerate.
|
||||
|
|
|
@ -1,3 +1,114 @@
|
|||
2023-02-24 Matthias Kretz <m.kretz@gsi.de>
|
||||
|
||||
* include/experimental/bits/simd.h: Line breaks and indenting
|
||||
fixed to follow the libstdc++ standard.
|
||||
* include/experimental/bits/simd_builtin.h: Likewise.
|
||||
* include/experimental/bits/simd_fixed_size.h: Likewise.
|
||||
* include/experimental/bits/simd_neon.h: Likewise.
|
||||
* include/experimental/bits/simd_ppc.h: Likewise.
|
||||
* include/experimental/bits/simd_scalar.h: Likewise.
|
||||
* include/experimental/bits/simd_x86.h: Likewise.
|
||||
|
||||
2023-02-24 Matthias Kretz <m.kretz@gsi.de>
|
||||
|
||||
PR libstdc++/108030
|
||||
* include/experimental/bits/simd_fixed_size.h
|
||||
(_SimdImplFixedSize::_S_broadcast): Replace inline with
|
||||
_GLIBCXX_SIMD_INTRINSIC.
|
||||
(_SimdImplFixedSize::_S_generate): Likewise.
|
||||
(_SimdImplFixedSize::_S_load): Likewise.
|
||||
(_SimdImplFixedSize::_S_masked_load): Likewise.
|
||||
(_SimdImplFixedSize::_S_store): Likewise.
|
||||
(_SimdImplFixedSize::_S_masked_store): Likewise.
|
||||
(_SimdImplFixedSize::_S_min): Likewise.
|
||||
(_SimdImplFixedSize::_S_max): Likewise.
|
||||
(_SimdImplFixedSize::_S_complement): Likewise.
|
||||
(_SimdImplFixedSize::_S_unary_minus): Likewise.
|
||||
(_SimdImplFixedSize::_S_plus): Likewise.
|
||||
(_SimdImplFixedSize::_S_minus): Likewise.
|
||||
(_SimdImplFixedSize::_S_multiplies): Likewise.
|
||||
(_SimdImplFixedSize::_S_divides): Likewise.
|
||||
(_SimdImplFixedSize::_S_modulus): Likewise.
|
||||
(_SimdImplFixedSize::_S_bit_and): Likewise.
|
||||
(_SimdImplFixedSize::_S_bit_or): Likewise.
|
||||
(_SimdImplFixedSize::_S_bit_xor): Likewise.
|
||||
(_SimdImplFixedSize::_S_bit_shift_left): Likewise.
|
||||
(_SimdImplFixedSize::_S_bit_shift_right): Likewise.
|
||||
(_SimdImplFixedSize::_S_remquo): Add inline keyword (to be
|
||||
explicit about not always-inline, yet).
|
||||
(_SimdImplFixedSize::_S_isinf): Likewise.
|
||||
(_SimdImplFixedSize::_S_isfinite): Likewise.
|
||||
(_SimdImplFixedSize::_S_isnan): Likewise.
|
||||
(_SimdImplFixedSize::_S_isnormal): Likewise.
|
||||
(_SimdImplFixedSize::_S_signbit): Likewise.
|
||||
|
||||
2023-02-24 Matthias Kretz <m.kretz@gsi.de>
|
||||
|
||||
PR libstdc++/108856
|
||||
* include/experimental/bits/simd_builtin.h
|
||||
(_SimdImplBuiltin::_S_masked_unary): More efficient
|
||||
implementation of masked inc-/decrement for integers and floats
|
||||
without AVX2.
|
||||
* include/experimental/bits/simd_x86.h
|
||||
(_SimdImplX86::_S_masked_unary): New. Use AVX512 masked subtract
|
||||
builtins for masked inc-/decrement.
|
||||
|
||||
2023-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/experimental/executor (executor): Constrain template
|
||||
constructors.
|
||||
|
||||
2023-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/experimental/internet (basic_endpoint): Add missing
|
||||
constexpr to comparison operators.
|
||||
* testsuite/experimental/net/internet/endpoint/cons.cc: New test.
|
||||
|
||||
2023-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/experimental/internet (network_v4::netmask()): Avoid
|
||||
undefined shift.
|
||||
(network_v4::broadcast()): Optimize and fix for targets with
|
||||
uint_least32_t wider than 32 bits.
|
||||
(network_v4::to_string(const Allocator&)): Fix for custom
|
||||
allocators and optimize using to_chars.
|
||||
(operator==(const network_v4&, const network_v4&)): Add missing
|
||||
constexpr.
|
||||
(operator==(const network_v6&, const network_v6&)): Likewise.
|
||||
* testsuite/experimental/net/internet/network/v4/cons.cc: New test.
|
||||
* testsuite/experimental/net/internet/network/v4/members.cc: New test.
|
||||
|
||||
2023-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/experimental/internet (address_4(const bytes_type&)):
|
||||
Use __builtin_bit_cast if available, otherwise convert to
|
||||
network byte order.
|
||||
(address_v4::to_bytes()): Likewise, but convert from network
|
||||
byte order.
|
||||
* testsuite/experimental/net/internet/address/v4/cons.cc: Fix
|
||||
incorrect tests. Check for constexpr too.
|
||||
* testsuite/experimental/net/internet/address/v4/creation.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/net/internet/address/v4/members.cc:
|
||||
Check that bytes_type is a standard-layout type.
|
||||
|
||||
2023-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/experimental/internet (address_v4::to_string):
|
||||
Optimize.
|
||||
* testsuite/experimental/net/internet/address/v4/members.cc:
|
||||
Check more addresses.
|
||||
|
||||
2023-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/ext/aligned_buffer.h (__aligned_buffer): Add
|
||||
diagnostic pragmas.
|
||||
|
||||
2023-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* testsuite/std/format/arguments/lwg3810.cc: Move dg-options
|
||||
before dg-do.
|
||||
|
||||
2023-02-23 Matthias Kretz <m.kretz@gsi.de>
|
||||
|
||||
* testsuite/experimental/simd/tests/reductions.cc: Introduce
|
||||
|
|
Loading…
Add table
Reference in a new issue