gcc/libgomp/testsuite/libgomp.fortran
Tom de Vries ab3f4b27ab [omp, ftracer] Don't duplicate blocks in SIMT region
When running the libgomp testsuite on x86_64-linux with nvptx accelerator on
the test-case included in this patch, we run into:
...
FAIL: libgomp.fortran/pr95654.f90 -O3 -fomit-frame-pointer -funroll-loops \
  -fpeel-loops -ftracer -finline-functions  execution test
...

The test-case is a minimal version of this FAIL:
...
FAIL: libgomp.fortran/pr66199-5.f90 -O3 -fomit-frame-pointer -funroll-loops \
  -fpeel-loops -ftracer -finline-functions  execution test
...
but that one has stopped failing at commit c2ebf4f10d "openmp: Add support
for non-rect simd and improve collapsed simd support".

The problem is that ftracer duplicates a block containing GOMP_SIMT_VOTE_ANY.

That is, before ftracer we have (dropping the GOMP_SIMT_ prefix):
...
bb4(ENTER_ALLOC)
*----------+
|           \
|            \
|             v
|             *
v             bb8
*<------------*
bb5(VOTE_ANY)
*-------------+
|             |
|             |
|             |
|             |
|             v
|             *
v             bb7(XCHG_IDX)
*<------------*
bb6(EXIT)
...

The XCHG_IDX internal-fn does inter-SIMT-lane communication, which for nvptx
maps onto shfl, an operator which has the requirement that the warp executing
the operator is convergent.  The warp diverges at bb4, and
reconverges at bb5, and does not diverge by going to bb7, so the shfl is
indeed executed by a convergent warp.

After ftracer, we have:
...
bb4(ENTER_ALLOC)
*----------+
|           \
|            \
|             \
|              \
v               v
*               *
bb5(VOTE_ANY)   bb8(VOTE_ANY)
*               *
|\             /|
| \  +--------+ |
|  \/           |
|  /\           |
| /  +----------v
|/              *
v               bb7(XCHG_IDX)
*<--------------*
bb6(EXIT)
...

The warp diverges again at bb5, but does not reconverge again before bb6, so
the shfl is executed by a divergent warp, which causes the FAIL.

Fix this by making ftracer ignore blocks containing ENTER_ALLOC, VOTE_ANY and
EXIT, effectively treating the SIMT region conservatively.

An argument can be made that the test needs to be added in a more
generic place, like gimple_can_duplicate_bb_p or some such, and that ftracer
then needs to use the generic test.  But that's a discussion with a much
broader scope, so I'm leaving that for another patch.

Bootstrapped and reg-tested on x86_64-linux.

Build on x86_64-linux with nvptx accelerator, tested with libgomp.

gcc/ChangeLog:

	PR fortran/95654
	* tracer.c (ignore_bb_p): Ignore GOMP_SIMT_ENTER_ALLOC,
	GOMP_SIMT_VOTE_ANY and GOMP_SIMT_EXIT.

libgomp/ChangeLog:

2020-10-05  Tom de Vries  <tdevries@suse.de>

	PR fortran/95654
	* testsuite/libgomp.fortran/pr95654.f90: New test.
2020-10-05 08:53:11 +02:00
..
appendix-a
examples-4 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
affinity1.f90
affinity2.f90
aligned1.f03 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
alloc-1.F90 libgomp.fortran/alloc-1.F90: Fix testcase for 32bit size_t 2020-07-15 17:23:04 +02:00
alloc-2.F90 libgomp: Add Fortran routine support for allocators 2020-07-15 08:33:20 +02:00
alloc-3.F libgomp: Add Fortran routine support for allocators 2020-07-15 08:33:20 +02:00
alloc-4.f90 libgomp: Add Fortran routine support for allocators 2020-07-15 08:33:20 +02:00
alloc-5.f90 libgomp: Add Fortran routine support for allocators 2020-07-15 08:33:20 +02:00
alloc-comp-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
alloc-comp-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
alloc-comp-3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable2.f90 libgomp/testsuite - use unique numbers with Fortran's 'stop' 2019-11-04 11:01:22 +01:00
allocatable3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable6.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable7.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable8.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable9.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable10.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable11.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
allocatable12.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
associate1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
associate2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
associate3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
async_io_1.f90
async_io_2.f90
async_io_3.f90
async_io_4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
async_io_5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
async_io_6.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
async_io_7.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
async_io_8.f90
async_io_9.f90 Fixes a hang on an invalid ID in a WAIT statement. 2020-05-23 19:01:43 +02:00
atomic1.f90 re PR fortran/92899 ([OpenMP] ICE in gfc_trans_omp_atomic, at fortran/trans-openmp.c:3769) 2019-12-12 00:58:04 +01:00
cancel-do-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
cancel-do-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
cancel-parallel-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
cancel-parallel-3.f90
cancel-sections-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
cancel-taskgroup-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
character1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
character2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
close_errors_1.f90 Add early return for invalid STATUS for close. 2020-05-14 18:33:24 +02:00
collapse1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
collapse2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
collapse3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
collapse4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
condinc1.f
condinc1.inc
condinc2.f
condinc3.f90
condinc4.f90
crayptr1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
crayptr2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
crayptr3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
critical-hint-1.f90 critical-hint-*.{c,f90}: Move from gcc/testsuite to libgomp/testsuite 2020-07-22 12:14:22 +02:00
critical-hint-2.f90 critical-hint-*.{c,f90}: Move from gcc/testsuite to libgomp/testsuite 2020-07-22 12:14:22 +02:00
declare-simd-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
declare-simd-2.f90
declare-simd-3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
declare-simd-4.f90
declare-target-1.f90
declare-target-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
declare-target-3.f90 OpenMP: Add implicit declare target for nested procedures 2020-09-30 14:59:27 +02:00
depend-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
depend-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
depend-3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
display-affinity-1.f90
do1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
do2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
do_concurrent_5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
doacross1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
doacross2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
doacross3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
fortran.exp re PR testsuite/91884 (libgomp testsuite: (not) using a specific driver for C++, Fortran) 2019-10-09 10:37:44 +02:00
jacobi.f libgomp – spelling fixes, incl. omp_lib.h.in 2019-12-11 12:45:49 +01:00
lastprivate1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
lastprivate2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
lastprivate-conditional-10.f90 Fortran: Fix OpenMP's 'if(simd:' etc. conditions 2020-08-20 13:33:40 +02:00
lib1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
lib2.f
lib3.f
lib4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
lock-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
lock-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
map-alloc-ptr-1.f90 OpenMP/Fortran: Fix (re)mapping of allocatable/pointer arrays [PR96668] 2020-09-15 09:24:47 +02:00
map-alloc-ptr-2.f90 OpenMP/Fortran: Fix (re)mapping of allocatable/pointer arrays [PR96668] 2020-09-15 09:24:47 +02:00
nested1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
nestedfn1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
nestedfn2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
nestedfn3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
nestedfn4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
nestedfn5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_atomic1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_atomic2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_atomic3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_atomic4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_atomic5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_cond1.f libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_cond2.f libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_cond3.F90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_cond4.F90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_hello.f
omp_orphan.f
omp_parse1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_parse2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_parse3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_parse4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
omp_reduction.f
omp_workshare1.f
omp_workshare2.f
openmp_version-1.f libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
openmp_version-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
optional-map.f90 Fortran] OpenMP/OpenACC – fix more issues with OPTIONAL 2020-01-03 13:56:46 +01:00
parloops-exit-first-loop-alt-2.f95 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
parloops-exit-first-loop-alt.f95 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pointer1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pointer2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr25162.f
pr25219.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr27395-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr27395-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr27416-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr27916-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr27916-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr28390.f libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr29629.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr32359.f90
pr32550.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr33880.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr34020.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr35130.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr42162.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr46753.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr48894.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr49792-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr49792-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr63938-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr63938-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr65597.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr66199-1.f90 libgomp - remove dg-run if dg-options O2 is used 2019-11-04 14:18:50 +01:00
pr66199-2.f90 libgomp - remove dg-run if dg-options O2 is used 2019-11-04 14:18:50 +01:00
pr66199-3.f90 [Fortran] OpenMP - permit lastprivate in distribute + SIMD fixes (PR94690) 2020-05-13 10:06:45 +02:00
pr66199-4.f90 [Fortran] OpenMP - permit lastprivate in distribute + SIMD fixes (PR94690) 2020-05-13 10:06:45 +02:00
pr66199-5.f90 libgomp.fortran/pr66199-5.f90: Make stop codes unique 2020-09-22 19:16:34 +02:00
pr66199-6.f90 [Fortran] OpenMP - permit lastprivate in distribute + SIMD fixes (PR94690) 2020-05-13 10:06:45 +02:00
pr66199-7.f90 [Fortran] OpenMP - permit lastprivate in distribute + SIMD fixes (PR94690) 2020-05-13 10:06:45 +02:00
pr66199-8.f90 [Fortran] OpenMP - permit lastprivate in distribute + SIMD fixes (PR94690) 2020-05-13 10:06:45 +02:00
pr66199-9.f90 [Fortran] OpenMP - permit lastprivate in distribute + SIMD fixes (PR94690) 2020-05-13 10:06:45 +02:00
pr66680.f90
pr71014.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr71734-1.f90
pr71734-2.f90
pr81304.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr81841.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr84418-1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr84418-2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
pr88463-1.f90
pr88463-2.f90
pr90779.f90 libgomp/testsuite – use 'stop' and 'dg-do run' 2019-10-30 11:33:58 +01:00
pr93553.f90 openmp: Handle clauses with gimple sequences in convert_nonlocal_omp_clauses properly 2020-08-08 11:10:30 +02:00
pr95654.f90 [omp, ftracer] Don't duplicate blocks in SIMT region 2020-10-05 08:53:11 +02:00
procptr1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
recursion1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
reduction1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
reduction2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
reduction3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
reduction4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
reduction5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
reduction6.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
reference1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
reference2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
retval1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
retval2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
sharing1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
sharing2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
simd1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
simd2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
simd3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
simd4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
simd5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
simd6.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
simd7.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
stack.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
strassen.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
struct-elem-map-1.f90 libgomp.fortran/struct-elem-map-1.f90: Add char kind=4 tests 2020-07-15 12:34:03 +02:00
tabs1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
tabs2.f libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target6.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target7.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target8.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
target9.f90 Torture testing: 'libgomp.fortran/target9.f90' 2019-11-11 09:50:40 +01:00
target-allocatable-1-1.f90
target-allocatable-1-2.f90
target-enter-data-1.f90 Add 'dg-do run' to 'libgomp.fortran/target-enter-data-1.f90' 2020-04-10 15:44:17 +02:00
target-enter-data-2.F90 Add 'dg-do run' to 'libgomp.fortran/target-enter-data-2.F90' 2020-04-20 23:16:40 +02:00
target-map-1.f90 [Fortran, OpenMP] Fix allocatable-components check (PR67311) 2020-07-14 12:55:53 +02:00
target-print-1-nvptx.f90 Fix 'libgomp.fortran/target-print-1.f90', 'libgomp.oacc-fortran/print-1.f90' for offload target nvptx 2019-11-27 18:50:55 +01:00
target-print-1.f90 Fix 'libgomp.fortran/target-print-1.f90', 'libgomp.oacc-fortran/print-1.f90' for offload target nvptx 2019-11-27 18:50:55 +01:00
target-simd.f90 libgomp/testsuite – use 'stop' and 'dg-do run' 2019-10-30 11:33:58 +01:00
target-var.f90 openmp: ensure variables in offload table are streamed out (PRs 94848 + 95551) 2020-06-08 23:24:57 +02:00
task1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
task2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
task3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
task4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
taskgroup1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
taskloop1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
taskloop2.f90 libgomp - remove dg-run if dg-options O2 is used 2019-11-04 14:18:50 +01:00
taskloop3.f90 libgomp - remove dg-run if dg-options O2 is used 2019-11-04 14:18:50 +01:00
taskloop4.f90 libgomp - remove dg-run if dg-options O2 is used 2019-11-04 14:18:50 +01:00
teams1.f90 re PR fortran/92756 (ICE in lower_omp, at omp-low.c:12988) 2019-12-04 09:47:13 +01:00
teams2.f90 re PR fortran/92756 (ICE in lower_omp, at omp-low.c:12988) 2019-12-04 09:47:13 +01:00
threadprivate1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
threadprivate2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
threadprivate3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
threadprivate4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr6.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr7.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr8.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr9.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr10.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr11.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr12.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr13.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr14.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
udr15.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
use_device_addr-1.f90 [OpenMP/OpenACC/Fortran] Fix mapping of optional (present|absent) arguments 2019-12-06 14:06:53 +01:00
use_device_addr-2.f90 [OpenMP/OpenACC/Fortran] Fix mapping of optional (present|absent) arguments 2019-12-06 14:06:53 +01:00
use_device_addr-3.f90 libgomp/testsuite/*fortran – make 'stop' values unique 2019-12-09 12:21:22 +01:00
use_device_addr-4.f90 libgomp/testsuite/*fortran – make 'stop' values unique 2019-12-09 12:21:22 +01:00
use_device_ptr-1.f90 Torture testing: 'libgomp.fortran/use_device_addr-3.f90', 'libgomp.fortran/use_device_addr-4.f90', 'libgomp.fortran/use_device_ptr-1.f90' 2019-11-11 09:50:29 +01:00
use_device_ptr-optional-1.f90 Fortran] Support absent optional args with use_device_{ptr,addr} 2019-11-11 10:19:29 +01:00
use_device_ptr-optional-2.f90 Torture testing: 'libgomp.fortran/use_device_ptr-optional-2.f90' 2020-04-29 09:24:07 +02:00
use_device_ptr-optional-3.f90 Add 'dg-do run' to 'libgomp.fortran/use_device_ptr-optional-3.f90' [PR94848] 2020-06-18 00:14:46 +02:00
use_intrinsic_1.f90
vla1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
vla2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
vla3.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
vla4.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
vla5.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
vla6.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
vla7.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
vla8.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
workshare1.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00
workshare2.f90 libgomp/testsuite – use 'stop' 2019-10-30 12:44:54 +01:00