summaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/vec-or-02.ll
blob: eeb86e36ff007325316464d6b2d853e15c4f3f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
; Test vector (or (and X, Z), (and Y, (not Z))) patterns.
;
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s

; Test v16i8.
define <16 x i8> @f1(<16 x i8> %val1, <16 x i8> %val2, <16 x i8> %val3) {
; CHECK-LABEL: f1:
; CHECK: vsel %v24, %v24, %v26, %v28
; CHECK: br %r14
  %not = xor <16 x i8> %val3, <i8 -1, i8 -1, i8 -1, i8 -1,
                               i8 -1, i8 -1, i8 -1, i8 -1,
                               i8 -1, i8 -1, i8 -1, i8 -1,
                               i8 -1, i8 -1, i8 -1, i8 -1>
  %and1 = and <16 x i8> %val1, %val3
  %and2 = and <16 x i8> %val2, %not
  %ret = or <16 x i8> %and1, %and2
  ret <16 x i8> %ret
}

; ...and again with the XOR applied to the other operand of the AND.
define <16 x i8> @f2(<16 x i8> %val1, <16 x i8> %val2, <16 x i8> %val3) {
; CHECK-LABEL: f2:
; CHECK: vsel %v24, %v26, %v24, %v28
; CHECK: br %r14
  %not = xor <16 x i8> %val3, <i8 -1, i8 -1, i8 -1, i8 -1,
                               i8 -1, i8 -1, i8 -1, i8 -1,
                               i8 -1, i8 -1, i8 -1, i8 -1,
                               i8 -1, i8 -1, i8 -1, i8 -1>
  %and1 = and <16 x i8> %val1, %not
  %and2 = and <16 x i8> %val2, %val3
  %ret = or <16 x i8> %and1, %and2
  ret <16 x i8> %ret
}

; Test v8i16.
define <8 x i16> @f3(<8 x i16> %val1, <8 x i16> %val2, <8 x i16> %val3) {
; CHECK-LABEL: f3:
; CHECK: vsel %v24, %v24, %v26, %v28
; CHECK: br %r14
  %not = xor <8 x i16> %val3, <i16 -1, i16 -1, i16 -1, i16 -1,
                               i16 -1, i16 -1, i16 -1, i16 -1>
  %and1 = and <8 x i16> %val1, %val3
  %and2 = and <8 x i16> %val2, %not
  %ret = or <8 x i16> %and1, %and2
  ret <8 x i16> %ret
}

; ...and again with the XOR applied to the other operand of the AND.
define <8 x i16> @f4(<8 x i16> %val1, <8 x i16> %val2, <8 x i16> %val3) {
; CHECK-LABEL: f4:
; CHECK: vsel %v24, %v26, %v24, %v28
; CHECK: br %r14
  %not = xor <8 x i16> %val3, <i16 -1, i16 -1, i16 -1, i16 -1,
                               i16 -1, i16 -1, i16 -1, i16 -1>
  %and1 = and <8 x i16> %val1, %not
  %and2 = and <8 x i16> %val2, %val3
  %ret = or <8 x i16> %and1, %and2
  ret <8 x i16> %ret
}

; Test v4i32.
define <4 x i32> @f5(<4 x i32> %val1, <4 x i32> %val2, <4 x i32> %val3) {
; CHECK-LABEL: f5:
; CHECK: vsel %v24, %v24, %v26, %v28
; CHECK: br %r14
  %not = xor <4 x i32> %val3, <i32 -1, i32 -1, i32 -1, i32 -1>
  %and1 = and <4 x i32> %val1, %val3
  %and2 = and <4 x i32> %val2, %not
  %ret = or <4 x i32> %and1, %and2
  ret <4 x i32> %ret
}

; ...and again with the XOR applied to the other operand of the AND.
define <4 x i32> @f6(<4 x i32> %val1, <4 x i32> %val2, <4 x i32> %val3) {
; CHECK-LABEL: f6:
; CHECK: vsel %v24, %v26, %v24, %v28
; CHECK: br %r14
  %not = xor <4 x i32> %val3, <i32 -1, i32 -1, i32 -1, i32 -1>
  %and1 = and <4 x i32> %val1, %not
  %and2 = and <4 x i32> %val2, %val3
  %ret = or <4 x i32> %and1, %and2
  ret <4 x i32> %ret
}

; Test v2i64.
define <2 x i64> @f7(<2 x i64> %val1, <2 x i64> %val2, <2 x i64> %val3) {
; CHECK-LABEL: f7:
; CHECK: vsel %v24, %v24, %v26, %v28
; CHECK: br %r14
  %not = xor <2 x i64> %val3, <i64 -1, i64 -1>
  %and1 = and <2 x i64> %val1, %val3
  %and2 = and <2 x i64> %val2, %not
  %ret = or <2 x i64> %and1, %and2
  ret <2 x i64> %ret
}

; ...and again with the XOR applied to the other operand of the AND.
define <2 x i64> @f8(<2 x i64> %val1, <2 x i64> %val2, <2 x i64> %val3) {
; CHECK-LABEL: f8:
; CHECK: vsel %v24, %v26, %v24, %v28
; CHECK: br %r14
  %not = xor <2 x i64> %val3, <i64 -1, i64 -1>
  %and1 = and <2 x i64> %val1, %not
  %and2 = and <2 x i64> %val2, %val3
  %ret = or <2 x i64> %and1, %and2
  ret <2 x i64> %ret
}