diff options
author | Jakub Jelinek <jakub@redhat.com> | 2021-10-06 10:40:12 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2021-10-06 10:40:12 +0200 |
commit | ba837323dbda2bca5a1c8a4c78092a88241dcfa3 (patch) | |
tree | d40c513e48bc98f7c1a2f9564bffcb1e6bacbc2c /gcc/tree-pretty-print.c | |
parent | 8892d532d66910e518bc135a851a104322385ca2 (diff) | |
download | gcc-ba837323dbda2bca5a1c8a4c78092a88241dcfa3.zip gcc-ba837323dbda2bca5a1c8a4c78092a88241dcfa3.tar.gz gcc-ba837323dbda2bca5a1c8a4c78092a88241dcfa3.tar.bz2 |
openmp: Optimize for OpenMP atomics 2x__builtin_clear_padding+__builtin_memcmp if possible
For the few long double types that do have padding bits, e.g. on x86
the clear_type_padding_in_mask computed mask is
ff ff ff ff ff ff ff ff ff ff 00 00 for 32-bit and
ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 for 64-bit.
Instead of doing __builtin_clear_padding on both operands that will clear the
last 2 or 6 bytes and then memcmp on the whole 12/16 bytes, we can just
memcmp 10 bytes. The code also handles if the padding would be at the start
or both at the start and end, but everything on byte boundaries only and
non-padding bits being contiguous.
This works around a tree-ssa-dse.c bug (but we need to fix it anyway,
as libstdc++ won't do this and as it can deal with arbitrary types, it even
can't do that generally).
2021-10-06 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/102571
* c-omp.c (c_finish_omp_atomic): Optimize the case where type has
padding, but the non-padding bits are contiguous set of bytes
by adjusting the memcmp call arguments instead of emitting
__builtin_clear_padding and then comparing all the type's bytes.
Diffstat (limited to 'gcc/tree-pretty-print.c')
0 files changed, 0 insertions, 0 deletions