[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / X86 / avx512-cmp.ll
blob3f3141e8876c7ca814b231dc2502bf9ccc3e88df
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=+avx512f | FileCheck %s --check-prefix=ALL --check-prefix=KNL
3 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=+avx512f,+avx512bw,+avx512vl,+avx512dq | FileCheck %s --check-prefix=ALL --check-prefix=SKX
5 define double @test1(double %a, double %b) nounwind {
6 ; ALL-LABEL: test1:
7 ; ALL:       ## %bb.0:
8 ; ALL-NEXT:    vucomisd %xmm1, %xmm0
9 ; ALL-NEXT:    jne LBB0_1
10 ; ALL-NEXT:    jnp LBB0_2
11 ; ALL-NEXT:  LBB0_1: ## %l1
12 ; ALL-NEXT:    vsubsd %xmm1, %xmm0, %xmm0
13 ; ALL-NEXT:    retq
14 ; ALL-NEXT:  LBB0_2: ## %l2
15 ; ALL-NEXT:    vaddsd %xmm1, %xmm0, %xmm0
16 ; ALL-NEXT:    retq
17   %tobool = fcmp une double %a, %b
18   br i1 %tobool, label %l1, label %l2
20 l1:
21   %c = fsub double %a, %b
22   ret double %c
23 l2:
24   %c1 = fadd double %a, %b
25   ret double %c1
28 define float @test2(float %a, float %b) nounwind {
29 ; ALL-LABEL: test2:
30 ; ALL:       ## %bb.0:
31 ; ALL-NEXT:    vucomiss %xmm0, %xmm1
32 ; ALL-NEXT:    jbe LBB1_2
33 ; ALL-NEXT:  ## %bb.1: ## %l1
34 ; ALL-NEXT:    vsubss %xmm1, %xmm0, %xmm0
35 ; ALL-NEXT:    retq
36 ; ALL-NEXT:  LBB1_2: ## %l2
37 ; ALL-NEXT:    vaddss %xmm1, %xmm0, %xmm0
38 ; ALL-NEXT:    retq
39   %tobool = fcmp olt float %a, %b
40   br i1 %tobool, label %l1, label %l2
42 l1:
43   %c = fsub float %a, %b
44   ret float %c
45 l2:
46   %c1 = fadd float %a, %b
47   ret float %c1
50 define i32 @test3(float %a, float %b) {
51 ; ALL-LABEL: test3:
52 ; ALL:       ## %bb.0:
53 ; ALL-NEXT:    vcmpeqss %xmm1, %xmm0, %k0
54 ; ALL-NEXT:    kmovw %k0, %eax
55 ; ALL-NEXT:    retq
57   %cmp10.i = fcmp oeq float %a, %b
58   %conv11.i = zext i1 %cmp10.i to i32
59   ret i32 %conv11.i
62 define float @test5(float %p) #0 {
63 ; ALL-LABEL: test5:
64 ; ALL:       ## %bb.0: ## %entry
65 ; ALL-NEXT:    vxorps %xmm1, %xmm1, %xmm1
66 ; ALL-NEXT:    vucomiss %xmm1, %xmm0
67 ; ALL-NEXT:    jne LBB3_1
68 ; ALL-NEXT:    jp LBB3_1
69 ; ALL-NEXT:  ## %bb.2: ## %return
70 ; ALL-NEXT:    retq
71 ; ALL-NEXT:  LBB3_1: ## %if.end
72 ; ALL-NEXT:    vcmpltss %xmm0, %xmm1, %k1
73 ; ALL-NEXT:    vmovss {{.*#+}} xmm0 = mem[0],zero,zero,zero
74 ; ALL-NEXT:    vmovss {{.*}}(%rip), %xmm0 {%k1}
75 ; ALL-NEXT:    retq
76 entry:
77   %cmp = fcmp oeq float %p, 0.000000e+00
78   br i1 %cmp, label %return, label %if.end
80 if.end:                                           ; preds = %entry
81   %cmp1 = fcmp ogt float %p, 0.000000e+00
82   %cond = select i1 %cmp1, float 1.000000e+00, float -1.000000e+00
83   br label %return
85 return:                                           ; preds = %if.end, %entry
86   %retval.0 = phi float [ %cond, %if.end ], [ %p, %entry ]
87   ret float %retval.0
90 define i32 @test6(i32 %a, i32 %b) {
91 ; ALL-LABEL: test6:
92 ; ALL:       ## %bb.0:
93 ; ALL-NEXT:    xorl %eax, %eax
94 ; ALL-NEXT:    cmpl %esi, %edi
95 ; ALL-NEXT:    sete %al
96 ; ALL-NEXT:    retq
97   %cmp = icmp eq i32 %a, %b
98   %res = zext i1 %cmp to i32
99   ret i32 %res
102 define i32 @test7(double %x, double %y) #2 {
103 ; ALL-LABEL: test7:
104 ; ALL:       ## %bb.0: ## %entry
105 ; ALL-NEXT:    xorl %eax, %eax
106 ; ALL-NEXT:    vucomisd %xmm1, %xmm0
107 ; ALL-NEXT:    setne %al
108 ; ALL-NEXT:    retq
109 entry:
110   %0 = fcmp one double %x, %y
111   %or = zext i1 %0 to i32
112   ret i32 %or
115 define i32 @test8(i32 %a1, i32 %a2, i32 %a3) {
116 ; ALL-LABEL: test8:
117 ; ALL:       ## %bb.0:
118 ; ALL-NEXT:    notl %edi
119 ; ALL-NEXT:    xorl $-2147483648, %esi ## imm = 0x80000000
120 ; ALL-NEXT:    testl %edx, %edx
121 ; ALL-NEXT:    movl $1, %eax
122 ; ALL-NEXT:    cmovel %eax, %edx
123 ; ALL-NEXT:    orl %edi, %esi
124 ; ALL-NEXT:    cmovnel %edx, %eax
125 ; ALL-NEXT:    retq
126   %tmp1 = icmp eq i32 %a1, -1
127   %tmp2 = icmp eq i32 %a2, -2147483648
128   %tmp3 = and i1 %tmp1, %tmp2
129   %tmp4 = icmp eq i32 %a3, 0
130   %tmp5 = or i1 %tmp3, %tmp4
131   %res = select i1 %tmp5, i32 1, i32 %a3
132   ret i32 %res
135 define i32 @test9(i64 %a) {
136 ; ALL-LABEL: test9:
137 ; ALL:       ## %bb.0:
138 ; ALL-NEXT:    testb $1, %dil
139 ; ALL-NEXT:    jne LBB7_2
140 ; ALL-NEXT:  ## %bb.1: ## %A
141 ; ALL-NEXT:    movl $6, %eax
142 ; ALL-NEXT:    retq
143 ; ALL-NEXT:  LBB7_2: ## %B
144 ; ALL-NEXT:    movl $7, %eax
145 ; ALL-NEXT:    retq
146  %b = and i64 %a, 1
147  %cmp10.i = icmp eq i64 %b, 0
148  br i1 %cmp10.i, label %A, label %B
150  ret i32 6
152  ret i32 7
155 define i32 @test10(i64 %b, i64 %c, i1 %d) {
156 ; ALL-LABEL: test10:
157 ; ALL:       ## %bb.0:
158 ; ALL-NEXT:    movl %edx, %eax
159 ; ALL-NEXT:    andb $1, %al
160 ; ALL-NEXT:    cmpq %rsi, %rdi
161 ; ALL-NEXT:    sete %cl
162 ; ALL-NEXT:    orb %dl, %cl
163 ; ALL-NEXT:    andb $1, %cl
164 ; ALL-NEXT:    cmpb %cl, %al
165 ; ALL-NEXT:    je LBB8_1
166 ; ALL-NEXT:  ## %bb.2: ## %if.end.i
167 ; ALL-NEXT:    movl $6, %eax
168 ; ALL-NEXT:    retq
169 ; ALL-NEXT:  LBB8_1: ## %if.then.i
170 ; ALL-NEXT:    movl $5, %eax
171 ; ALL-NEXT:    retq
173   %cmp8.i = icmp eq i64 %b, %c
174   %or1 = or i1 %d, %cmp8.i
175   %xor1 = xor i1 %d, %or1
176   br i1 %xor1, label %if.end.i, label %if.then.i
178 if.then.i:
179  ret i32 5
181 if.end.i:
182   ret i32 6