[IslAst] Fix InParallelFor nesting.
commitd69b9d5bea82dc316aad90f3368806de8310b730
authorMichael Kruse <llvm@meinersbur.de>
Thu, 27 Sep 2018 13:39:37 +0000 (27 13:39 +0000)
committerMichael Kruse <llvm@meinersbur.de>
Thu, 27 Sep 2018 13:39:37 +0000 (27 13:39 +0000)
treee1ac22c092dc2dc4a9b52362093920187bbd49b4
parentd7f4f7af334ef18799089f1641a0e4f8366d0238
[IslAst] Fix InParallelFor nesting.

IslAst could mark two nested outer loops as "OutermostParallel". It
caused that the code generator tried to OpenMP-parallelize both loops,
which it is not prepared loop.

It was because the recursive AST build algorithm managed a flag
"InParallelFor" to ensure that no nested loop is also marked as
"OutermostParallel". Unfortunatetly the same flag was used by nodes
marked as SIMD, and reset to false after the SIMD node. Since loops can
be marked as SIMD inside "OutermostParallel" loops, the recursive
algorithm again tried to mark loops as "OutermostParellel" although
still nested inside another "OutermostParallel" loop.

The fix exposed another bug: The function "astScheduleDimIsParallel" was
only called when a loop was potentially "OutermostParallel" or
"InnermostParallel", but as a side-effect also determines the minimum
dependence distance. Hence, changing when we need to know whether a loop
is "OutermostParallel" also changed which loop was annotated with
"#pragma minimal dependence distance".

Moreover, some complex condition linked with "InParallelFor" determined
whether a loop should be an "InnermostParallel" loop. It missed some
situations where it would not use mark as such although being inside an
SIMD mark node, and therefore not be annotated using "#pragma simd".

The changes in particular:

1. Split the "InParallelFor" flag into an "InParallelFor" and an
   "InSIMD" flag.

2. Unconditionally call "astScheduleDimIsParallel" for its side-effects
   and store the result in "InParallel" for later use.

3. Simplify the condition when a loop is "InnermostParallel".

Fixes llvm.org/PR33153 and llvm.org/PR38073.

git-svn-id: https://llvm.org/svn/llvm-project/polly/trunk@343212 91177308-0d34-0410-b5e6-96231b3b80d8
include/polly/CodeGen/IslAst.h
lib/CodeGen/IslAst.cpp
test/ScheduleOptimizer/SIMDInParallelFor.ll [new file with mode: 0644]
test/ScheduleOptimizer/full_partial_tile_separation.ll