diff options
| author | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2016-11-01 09:42:32 +0000 |
|---|---|---|
| committer | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2016-11-01 09:42:32 +0000 |
| commit | e70fa63390321145b5debb398c6173e2bdfe52e4 (patch) | |
| tree | e06346da62100dbd9d41ff05a462981b69d0e12e /llvm/test | |
| parent | c4681203e1f643550ae2fa66d354ebe3d8584307 (diff) | |
| download | bcm5719-llvm-e70fa63390321145b5debb398c6173e2bdfe52e4.tar.gz bcm5719-llvm-e70fa63390321145b5debb398c6173e2bdfe52e4.zip | |
[PowerPC] Implement vector shift builtins - llvm portion
This patch corresponds to review https://reviews.llvm.org/D26095.
Committing on behalf of Tony Jiang.
llvm-svn: 285681
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/vsx-p9.ll | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/vsx-p9.ll b/llvm/test/CodeGen/PowerPC/vsx-p9.ll index 1b092cfe4b1..6514bc9e97f 100644 --- a/llvm/test/CodeGen/PowerPC/vsx-p9.ll +++ b/llvm/test/CodeGen/PowerPC/vsx-p9.ll @@ -167,4 +167,27 @@ entry: ; Function Attrs: nounwind readnone declare <2 x double> @llvm.ppc.vsx.xviexpdp(<2 x i64>, <2 x i64>) +define <16 x i8> @testVSLV(<16 x i8> %a, <16 x i8> %b) { +entry: + %0 = tail call <16 x i8> @llvm.ppc.altivec.vslv(<16 x i8> %a, <16 x i8> %b) + ret <16 x i8> %0 +; CHECK-LABEL: testVSLV +; CHECK: vslv 2, 2, 3 +; CHECK: blr +} +; Function Attrs: nounwind readnone +declare <16 x i8> @llvm.ppc.altivec.vslv(<16 x i8>, <16 x i8>) + +; Function Attrs: nounwind readnone +define <16 x i8> @testVSRV(<16 x i8> %a, <16 x i8> %b) { +entry: + %0 = tail call <16 x i8> @llvm.ppc.altivec.vsrv(<16 x i8> %a, <16 x i8> %b) + ret <16 x i8> %0 +; CHECK-LABEL: testVSRV +; CHECK: vsrv 2, 2, 3 +; CHECK: blr +} +; Function Attrs: nounwind readnone +declare <16 x i8> @llvm.ppc.altivec.vsrv(<16 x i8>, <16 x i8>) + declare void @sink(...) |

