aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/ScalarRepl/AggregatePromote.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-12-12 07:18:59 +0000
committerChris Lattner <sabre@nondot.org>2005-12-12 07:18:59 +0000
commitfa8f80ae0a6695f78265a9faa822478b5694d48c (patch)
treefb884aad244f5c4ecb20a457ee1b314356d1df6a /test/Transforms/ScalarRepl/AggregatePromote.ll
parent0831310441634c7ac7896074ed1d01b5e50f4f56 (diff)
new testcase: sra should be able to eliminate all of these alloca's, despite
the presense of pointer casts git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24666 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/ScalarRepl/AggregatePromote.ll')
-rw-r--r--test/Transforms/ScalarRepl/AggregatePromote.ll54
1 files changed, 54 insertions, 0 deletions
diff --git a/test/Transforms/ScalarRepl/AggregatePromote.ll b/test/Transforms/ScalarRepl/AggregatePromote.ll
new file mode 100644
index 0000000000..93011fdd64
--- /dev/null
+++ b/test/Transforms/ScalarRepl/AggregatePromote.ll
@@ -0,0 +1,54 @@
+; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | not grep alloca &&
+; RUN: llvm-as < %s | opt -scalarrepl -disable-output
+
+target endian = big
+target pointersize = 32
+target triple = "powerpc-apple-darwin8.0.0"
+
+long %test1(long %X) {
+ %A = alloca long
+ store long %X, long* %A
+ %B = cast long* %A to int*
+ %C = cast int* %B to sbyte*
+ store sbyte 0, sbyte* %C
+ %Y = load long *%A
+ ret long %Y
+}
+
+
+sbyte %test2(long %X) {
+ %X_addr = alloca long ; <long*> [#uses=2]
+ store long %X, long* %X_addr
+ %tmp.0 = cast long* %X_addr to int* ; <int*> [#uses=1]
+ %tmp.1 = getelementptr int* %tmp.0, int 1 ; <int*> [#uses=1]
+ %tmp.2 = cast int* %tmp.1 to sbyte*
+ %tmp.3 = getelementptr sbyte* %tmp.2, int 3
+ %tmp.2 = load sbyte* %tmp.3 ; <int> [#uses=1]
+ ret sbyte %tmp.2
+}
+
+short %crafty(long %X) {
+ %a = alloca { long }
+ %tmp.0 = getelementptr { long }* %a, int 0, uint 0 ; <long*> [#uses=1]
+ store long %X, long* %tmp.0
+ %tmp.3 = cast { long }* %a to [4 x short]* ; <[4 x short]*> [#uses=2]
+ %tmp.4 = getelementptr [4 x short]* %tmp.3, int 0, int 3 ; <short*> [#uses=1]
+ %tmp.5 = load short* %tmp.4 ; <short> [#uses=1]
+ %tmp.8 = getelementptr [4 x short]* %tmp.3, int 0, int 2 ; <short*> [#uses=1]
+ %tmp.9 = load short* %tmp.8 ; <short> [#uses=1]
+ %tmp.10 = or short %tmp.9, %tmp.5 ; <short> [#uses=1]
+ ret short %tmp.10
+}
+
+short %crafty2(long %X) {
+ %a = alloca long
+ store long %X, long* %a
+ %tmp.3 = cast long* %a to [4 x short]* ; <[4 x short]*> [#uses=2]
+ %tmp.4 = getelementptr [4 x short]* %tmp.3, int 0, int 3 ; <short*> [#uses=1]
+ %tmp.5 = load short* %tmp.4 ; <short> [#uses=1]
+ %tmp.8 = getelementptr [4 x short]* %tmp.3, int 0, int 2 ; <short*> [#uses=1]
+ %tmp.9 = load short* %tmp.8 ; <short> [#uses=1]
+ %tmp.10 = or short %tmp.9, %tmp.5 ; <short> [#uses=1]
+ ret short %tmp.10
+}
+