This patch adds the VSX logical instructions introduced in the Power ISA 2.07. It...
[oota-llvm.git] / test / CodeGen / PowerPC / vec_veqv_vnand_vorc.ll
1 ; Check the miscellaneous logical vector operations added in P8
2
3 ; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr8 -mattr=-vsx < %s | FileCheck %s
4 ; Test x eqv y
5 define <4 x i32> @test_veqv(<4 x i32> %x, <4 x i32> %y) nounwind {
6        %tmp = xor <4 x i32> %x, %y
7        %ret_val = xor <4 x i32> %tmp, < i32 -1, i32 -1, i32 -1, i32 -1>
8        ret <4 x i32> %ret_val
9 ; CHECK: veqv 2, 2, 3
10 }
11
12 ; Test x vnand y
13 define <4 x i32> @test_vnand(<4 x i32> %x, <4 x i32> %y) nounwind {
14        %tmp = and <4 x i32> %x, %y
15        %ret_val = xor <4 x i32> %tmp, <i32 -1, i32 -1, i32 -1, i32 -1>
16        ret <4 x i32> %ret_val
17 ; CHECK: vnand 2, 2, 3
18 }
19
20 ; Test x vorc y
21 define <4 x i32> @test_vorc(<4 x i32> %x, <4 x i32> %y) nounwind {
22        %tmp = xor <4 x i32> %y, <i32 -1, i32 -1, i32 -1, i32 -1>
23        %ret_val = or <4 x i32> %x, %tmp
24        ret <4 x i32> %ret_val
25 ; CHECK: vorc 2, 2, 3      
26 }