]> gcc.gnu.org Git - gcc.git/commit
openmp: Fix up handling of non-rectangular simd loops with pointer type iterators...
authorJakub Jelinek <jakub@redhat.com>
Fri, 29 Jul 2022 07:49:11 +0000 (09:49 +0200)
committerJakub Jelinek <jakub@redhat.com>
Fri, 29 Jul 2022 07:49:11 +0000 (09:49 +0200)
commit97d32048c04e9787fccadc4bae1c042754503e34
treefc4aa18b0034c09ed0614d1757add4a0fbaedcaa
parent4796d16de657d7c2720471e61432de0f4a5cb6df
openmp: Fix up handling of non-rectangular simd loops with pointer type iterators [PR106449]

There were 2 issues visible on this new testcase, one that we didn't have
special POINTER_TYPE_P handling in a few spots of expand_omp_simd - for
pointers we need to use POINTER_PLUS_EXPR and need to have the non-pointer
part in sizetype, for non-rectangular loop on the other side we can rely on
multiplication factor 1, pointers can't be multiplied, without those changes
we'd ICE.  The other issue was that we put n2 expression directly into a
comparison in a condition and regimplified that, for the &a[512] case that
and with gimplification being destructed that unfortunately meant modification
of original fd->loops[?].n2.  Fixed by unsharing the expression.  This was
causing a runtime failure on the testcase.

2022-07-29  Jakub Jelinek  <jakub@redhat.com>

PR middle-end/106449
* omp-expand.cc (expand_omp_simd): Fix up handling of pointer
iterators in non-rectangular simd loops.  Unshare fd->loops[i].n2
or n2 before regimplifying it inside of a condition.

* testsuite/libgomp.c-c++-common/pr106449.c: New test.
gcc/omp-expand.cc
libgomp/testsuite/libgomp.c-c++-common/pr106449.c [new file with mode: 0644]
This page took 0.061648 seconds and 6 git commands to generate.