diff options
| author | David Majnemer <david.majnemer@gmail.com> | 2013-06-04 17:51:58 +0000 |
|---|---|---|
| committer | David Majnemer <david.majnemer@gmail.com> | 2013-06-04 17:51:58 +0000 |
| commit | 29130c5e8d3d49b063859d43b3c00097fbee6ccd (patch) | |
| tree | e35861bac315f3e4992306bdbffcdfe66d16c4bf /llvm/test/Transforms/IndVarSimplify/udiv-invariant-but-traps.ll | |
| parent | 452f1f97bd6df8a94632664e67c5ed905b40897b (diff) | |
| download | bcm5719-llvm-29130c5e8d3d49b063859d43b3c00097fbee6ccd.tar.gz bcm5719-llvm-29130c5e8d3d49b063859d43b3c00097fbee6ccd.zip | |
IndVarSimplify: check if loop invariant expansion can trap
IndVarSimplify is willing to move divide instructions outside of their
loop bodies if they are invariant of the loop. However, it may not be
safe to expand them if we do not know if they can trap.
Instead, check to see if it is not safe to expand the instruction and
skip the expansion.
This fixes PR16041.
Testcase by Rafael Ávila de Espíndola.
llvm-svn: 183239
Diffstat (limited to 'llvm/test/Transforms/IndVarSimplify/udiv-invariant-but-traps.ll')
| -rw-r--r-- | llvm/test/Transforms/IndVarSimplify/udiv-invariant-but-traps.ll | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/llvm/test/Transforms/IndVarSimplify/udiv-invariant-but-traps.ll b/llvm/test/Transforms/IndVarSimplify/udiv-invariant-but-traps.ll new file mode 100644 index 00000000000..b2d2629eb34 --- /dev/null +++ b/llvm/test/Transforms/IndVarSimplify/udiv-invariant-but-traps.ll @@ -0,0 +1,32 @@ +; RUN: opt -indvars -S < %s | FileCheck %s + +@b = common global i32 0, align 4 + +define i32 @foo(i32 %x, i1 %y) { +bb0: + br label %bb1 + +bb1: + br i1 %y, label %bb14, label %bb8 + +bb8: + %i = phi i64 [ %i.next, %bb8 ], [ 0, %bb1 ] + %i.next = add i64 %i, 1 + %div = udiv i32 1, %x + %c = icmp eq i64 %i.next, 6 + br i1 %c, label %bb11, label %bb8 + +bb11: + br i1 %y, label %bb1, label %bb13 + +bb13: + store i32 %div, i32* @b, align 4 + br label %bb14 + +bb14: + ret i32 0 +} + +; CHECK: @foo +; CHECK: bb8: +; CHECK: udiv |

