aboutsummaryrefslogtreecommitdiffstats
path: root/test/Analysis
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-10-29 00:54:02 +0000
committerDan Gohman <gohman@apple.com>2010-10-29 00:54:02 +0000
commitb338bcb0b4c9d0909d5e1d61917fd1df31edabae (patch)
treeea02cfb05f437b7dc76d8ea4a2cb2c3c515d4065 /test/Analysis
parenteeaae20be02979a5d1459cc479c4533be3c05ed5 (diff)
downloadexternal_llvm-b338bcb0b4c9d0909d5e1d61917fd1df31edabae.zip
external_llvm-b338bcb0b4c9d0909d5e1d61917fd1df31edabae.tar.gz
external_llvm-b338bcb0b4c9d0909d5e1d61917fd1df31edabae.tar.bz2
Add a basic testcase for TBAA-aware DSE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117632 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis')
-rw-r--r--test/Analysis/TypeBasedAliasAnalysis/dse.ll43
1 files changed, 43 insertions, 0 deletions
diff --git a/test/Analysis/TypeBasedAliasAnalysis/dse.ll b/test/Analysis/TypeBasedAliasAnalysis/dse.ll
new file mode 100644
index 0000000..180149a
--- /dev/null
+++ b/test/Analysis/TypeBasedAliasAnalysis/dse.ll
@@ -0,0 +1,43 @@
+; RUN: opt < %s -enable-tbaa -tbaa -basicaa -dse -S | FileCheck %s
+
+; DSE should make use of TBAA.
+
+; CHECK: @test0_yes
+; CHECK-NEXT: load i8* %b
+; CHECK-NEXT: store i8 1, i8* %a
+; CHECK-NEXT: ret i8 %y
+define i8 @test0_yes(i8* %a, i8* %b) nounwind {
+ store i8 0, i8* %a, !tbaa !1
+ %y = load i8* %b, !tbaa !2
+ store i8 1, i8* %a, !tbaa !1
+ ret i8 %y
+}
+
+; CHECK: @test0_no
+; CHECK-NEXT: store i8 0, i8* %a
+; CHECK-NEXT: load i8* %b
+; CHECK-NEXT: store i8 1, i8* %a
+; CHECK-NEXT: ret i8 %y
+define i8 @test0_no(i8* %a, i8* %b) nounwind {
+ store i8 0, i8* %a, !tbaa !3
+ %y = load i8* %b, !tbaa !4
+ store i8 1, i8* %a, !tbaa !3
+ ret i8 %y
+}
+
+; Root note.
+!0 = metadata !{ }
+; Some type.
+!1 = metadata !{ metadata !"foo", metadata !0 }
+; Some other non-aliasing type.
+!2 = metadata !{ metadata !"bar", metadata !0 }
+
+; Some type.
+!3 = metadata !{ metadata !"foo", metadata !0 }
+; Some type in a different type system.
+!4 = metadata !{ metadata !"bar", metadata !"different" }
+
+; Invariant memory.
+!5 = metadata !{ metadata !"qux", metadata !0, i1 1 }
+; Not invariant memory.
+!6 = metadata !{ metadata !"qux", metadata !0, i1 0 }