forked from OSchip/llvm-project
8c11bc0cd0
An irreducible SCC is one which has multiple "header" blocks, i.e., blocks with control-flow edges incident from outside the SCC. This pass converts an irreducible SCC into a natural loop by introducing a single new header block and redirecting all the edges on the original headers to this new block. This is a useful workaround for a limitation in the structurizer which, which produces incorrect control flow in the presence of irreducible regions. The AMDGPU backend provides an option to enable this pass before the structurizer, which may eventually be enabled by default. Reviewed By: nhaehnle Differential Revision: https://reviews.llvm.org/D77198 This restores commit |
||
---|---|---|
.. | ||
AMDGPU | ||
workarounds | ||
branch-on-argument.ll | ||
bug36015.ll | ||
invert-condition.ll | ||
invert-constantexpr.ll | ||
loop-continue-phi.ll | ||
loop-multiple-exits.ll | ||
nested-loop-order.ll | ||
no-branch-to-entry.ll | ||
one-loop-multiple-backedges.ll | ||
post-order-traversal-bug.ll | ||
rebuild-ssa-infinite-loop.ll | ||
switch.ll |