aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2003-08-05 18:52:42 +0000
committerTanya Lattner <tonic@nondot.org>2003-08-05 18:52:42 +0000
commit7526eed38286dbb961024a897929e3d8c35ca5f3 (patch)
tree1ba03436baf1d39228c0b205f71a477ebc2d54ba /test/Transforms
parent9966c03aad031f738718bed3bc00371e358beb5d (diff)
downloadexternal_llvm-7526eed38286dbb961024a897929e3d8c35ca5f3.zip
external_llvm-7526eed38286dbb961024a897929e3d8c35ca5f3.tar.gz
external_llvm-7526eed38286dbb961024a897929e3d8c35ca5f3.tar.bz2
Added LICM test cases to:
1) Check that trapping instructionns that are not guaranteed to execute are not hoisted. 2) Check that trapping instructions that are guaranteed to execute are hoisted. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7613 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r--test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll27
-rw-r--r--test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll20
2 files changed, 47 insertions, 0 deletions
diff --git a/test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll b/test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll
new file mode 100644
index 0000000..67c7d82
--- /dev/null
+++ b/test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll
@@ -0,0 +1,27 @@
+; This testcase tests for a problem where LICM hoists
+; potentially trapping instructions when they are not guaranteed to execute.
+;
+; RUN: as < %s | opt -licm | dis | grep -C 2 "IfUnEqual" | grep div
+
+%X = global int 0
+declare void %foo()
+
+int %test(bool %c) {
+ %A = load int *%X
+ br label %Loop
+Loop:
+ call void %foo()
+ br bool %c, label %LoopTail, label %IfUnEqual
+
+IfUnEqual:
+ %B1 = div int 4, %A ;; Should not hoist this div!
+ br label %LoopTail
+
+LoopTail:
+ %B = phi int [ 0, %Loop ], [ %B1, %IfUnEqual]
+ br bool %c, label %Loop, label %Out
+
+Out:
+ %C = sub int %A, %B
+ ret int %C
+}
diff --git a/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll b/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
new file mode 100644
index 0000000..749024b
--- /dev/null
+++ b/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
@@ -0,0 +1,20 @@
+; This testcase tests to make sure a trapping instruction is hoisted when
+; it is guaranteed to execute.
+;
+; RUN: as < %s | opt -licm | dis | grep -C 2 "test" | grep div
+
+%X = global int 0
+declare void %foo()
+
+int %test(bool %c) {
+ %A = load int *%X
+ br label %Loop
+Loop:
+ call void %foo()
+ %B = div int 4, %A ;; Should have hoisted this div!
+ br bool %c, label %Loop, label %Out
+
+Out:
+ %C = sub int %A, %B
+ ret int %C
+}