diff options
author | Stephen Hines <srhines@google.com> | 2014-12-01 14:51:49 -0800 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-12-02 16:08:10 -0800 |
commit | 37ed9c199ca639565f6ce88105f9e39e898d82d0 (patch) | |
tree | 8fb36d3910e3ee4c4e1b7422f4f017108efc52f5 /test/CodeGen/PowerPC/unal-altivec-wint.ll | |
parent | d2327b22152ced7bc46dc629fc908959e8a52d03 (diff) | |
download | external_llvm-37ed9c199ca639565f6ce88105f9e39e898d82d0.zip external_llvm-37ed9c199ca639565f6ce88105f9e39e898d82d0.tar.gz external_llvm-37ed9c199ca639565f6ce88105f9e39e898d82d0.tar.bz2 |
Update aosp/master LLVM for rebase to r222494.
Change-Id: Ic787f5e0124df789bd26f3f24680f45e678eef2d
Diffstat (limited to 'test/CodeGen/PowerPC/unal-altivec-wint.ll')
-rw-r--r-- | test/CodeGen/PowerPC/unal-altivec-wint.ll | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/unal-altivec-wint.ll b/test/CodeGen/PowerPC/unal-altivec-wint.ll new file mode 100644 index 0000000..7e0963f --- /dev/null +++ b/test/CodeGen/PowerPC/unal-altivec-wint.ll @@ -0,0 +1,48 @@ +; RUN: llc -mcpu=pwr7 < %s | FileCheck %s +target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64" +target triple = "powerpc64-unknown-linux-gnu" + +declare <4 x i32> @llvm.ppc.altivec.lvx(i8*) #1 + +define <4 x i32> @test1(<4 x i32>* %h) #0 { +entry: + %h1 = getelementptr <4 x i32>* %h, i64 1 + %hv = bitcast <4 x i32>* %h1 to i8* + %vl = call <4 x i32> @llvm.ppc.altivec.lvx(i8* %hv) + + %v0 = load <4 x i32>* %h, align 8 + + %a = add <4 x i32> %v0, %vl + ret <4 x i32> %a + +; CHECK-LABEL: @test1 +; CHECK: li [[REG:[0-9]+]], 16 +; CHECK-NOT: li {{[0-9]+}}, 15 +; CHECK-DAG: lvx {{[0-9]+}}, 0, 3 +; CHECK-DAG: lvx {{[0-9]+}}, 3, [[REG]] +; CHECK: blr +} + +declare void @llvm.ppc.altivec.stvx(<4 x i32>, i8*) #0 + +define <4 x i32> @test2(<4 x i32>* %h, <4 x i32> %d) #0 { +entry: + %h1 = getelementptr <4 x i32>* %h, i64 1 + %hv = bitcast <4 x i32>* %h1 to i8* + call void @llvm.ppc.altivec.stvx(<4 x i32> %d, i8* %hv) + + %v0 = load <4 x i32>* %h, align 8 + + ret <4 x i32> %v0 + +; CHECK-LABEL: @test2 +; CHECK: li [[REG:[0-9]+]], 16 +; CHECK-NOT: li {{[0-9]+}}, 15 +; CHECK-DAG: lvx {{[0-9]+}}, 0, 3 +; CHECK-DAG: lvx {{[0-9]+}}, 3, [[REG]] +; CHECK: blr +} + +attributes #0 = { nounwind } +attributes #1 = { nounwind readonly } + |