From: Chris Lattner Date: Mon, 12 Dec 2005 07:18:59 +0000 (+0000) Subject: new testcase: sra should be able to eliminate all of these alloca's, despite X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fa8f80ae0a6695f78265a9faa822478b5694d48c;p=oota-llvm.git 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 --- diff --git a/test/Transforms/ScalarRepl/AggregatePromote.ll b/test/Transforms/ScalarRepl/AggregatePromote.ll new file mode 100644 index 00000000000..93011fdd644 --- /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 ; [#uses=2] + store long %X, long* %X_addr + %tmp.0 = cast long* %X_addr to int* ; [#uses=1] + %tmp.1 = getelementptr int* %tmp.0, int 1 ; [#uses=1] + %tmp.2 = cast int* %tmp.1 to sbyte* + %tmp.3 = getelementptr sbyte* %tmp.2, int 3 + %tmp.2 = load sbyte* %tmp.3 ; [#uses=1] + ret sbyte %tmp.2 +} + +short %crafty(long %X) { + %a = alloca { long } + %tmp.0 = getelementptr { long }* %a, int 0, uint 0 ; [#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 ; [#uses=1] + %tmp.5 = load short* %tmp.4 ; [#uses=1] + %tmp.8 = getelementptr [4 x short]* %tmp.3, int 0, int 2 ; [#uses=1] + %tmp.9 = load short* %tmp.8 ; [#uses=1] + %tmp.10 = or short %tmp.9, %tmp.5 ; [#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 ; [#uses=1] + %tmp.5 = load short* %tmp.4 ; [#uses=1] + %tmp.8 = getelementptr [4 x short]* %tmp.3, int 0, int 2 ; [#uses=1] + %tmp.9 = load short* %tmp.8 ; [#uses=1] + %tmp.10 = or short %tmp.9, %tmp.5 ; [#uses=1] + ret short %tmp.10 +} +