[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / combine-fabs.ll
bloba862ea16a748f6c34e5d149d4ba73b8c8f08e3ec
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse4.1 | FileCheck %s --check-prefix=SSE
3 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx2 | FileCheck %s --check-prefix=AVX
6 ; NOTE: this is generated by utils/update_llc_test_checks.py but we can't check NAN types (PR30443),
7 ; so we need to edit it to remove the NAN constant comments
10 ; fabs(c1) -> c2
11 define float @combine_fabs_constant() {
12 ; SSE-LABEL: combine_fabs_constant:
13 ; SSE:       # %bb.0:
14 ; SSE-NEXT:    movss {{.*#+}} xmm0 = [2.0E+0,0.0E+0,0.0E+0,0.0E+0]
15 ; SSE-NEXT:    retq
17 ; AVX-LABEL: combine_fabs_constant:
18 ; AVX:       # %bb.0:
19 ; AVX-NEXT:    vmovss {{.*#+}} xmm0 = [2.0E+0,0.0E+0,0.0E+0,0.0E+0]
20 ; AVX-NEXT:    retq
21   %1 = call float @llvm.fabs.f32(float -2.0)
22   ret float %1
25 define <4 x float> @combine_vec_fabs_constant() {
26 ; SSE-LABEL: combine_vec_fabs_constant:
27 ; SSE:       # %bb.0:
28 ; SSE-NEXT:    movaps {{.*#+}} xmm0 = [0.0E+0,0.0E+0,2.0E+0,2.0E+0]
29 ; SSE-NEXT:    retq
31 ; AVX-LABEL: combine_vec_fabs_constant:
32 ; AVX:       # %bb.0:
33 ; AVX-NEXT:    vmovaps {{.*#+}} xmm0 = [0.0E+0,0.0E+0,2.0E+0,2.0E+0]
34 ; AVX-NEXT:    retq
35   %1 = call <4 x float> @llvm.fabs.v4f32(<4 x float> <float 0.0, float -0.0, float 2.0, float -2.0>)
36   ret <4 x float> %1
39 ; fabs(fabs(x)) -> fabs(x)
40 define float @combine_fabs_fabs(float %a) {
41 ; SSE-LABEL: combine_fabs_fabs:
42 ; SSE:       # %bb.0:
43 ; SSE-NEXT:    andps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm0
44 ; SSE-NEXT:    retq
46 ; AVX-LABEL: combine_fabs_fabs:
47 ; AVX:       # %bb.0:
48 ; AVX-NEXT:    vbroadcastss {{.*#+}} xmm1 = [NaN,NaN,NaN,NaN]
49 ; AVX-NEXT:    vandps %xmm1, %xmm0, %xmm0
50 ; AVX-NEXT:    retq
51   %1 = call float @llvm.fabs.f32(float %a)
52   %2 = call float @llvm.fabs.f32(float %1)
53   ret float %2
56 define <4 x float> @combine_vec_fabs_fabs(<4 x float> %a) {
57 ; SSE-LABEL: combine_vec_fabs_fabs:
58 ; SSE:       # %bb.0:
59 ; SSE-NEXT:    andps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm0
60 ; SSE-NEXT:    retq
62 ; AVX-LABEL: combine_vec_fabs_fabs:
63 ; AVX:       # %bb.0:
64 ; AVX-NEXT:    vbroadcastss {{.*#+}} xmm1 = [NaN,NaN,NaN,NaN]
65 ; AVX-NEXT:    vandps %xmm1, %xmm0, %xmm0
66 ; AVX-NEXT:    retq
67   %1 = call <4 x float> @llvm.fabs.v4f32(<4 x float> %a)
68   %2 = call <4 x float> @llvm.fabs.v4f32(<4 x float> %1)
69   ret <4 x float> %2
72 ; fabs(fneg(x)) -> fabs(x)
73 define float @combine_fabs_fneg(float %a) {
74 ; SSE-LABEL: combine_fabs_fneg:
75 ; SSE:       # %bb.0:
76 ; SSE-NEXT:    andps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm0
77 ; SSE-NEXT:    retq
79 ; AVX-LABEL: combine_fabs_fneg:
80 ; AVX:       # %bb.0:
81 ; AVX-NEXT:    vbroadcastss {{.*#+}} xmm1 = [NaN,NaN,NaN,NaN]
82 ; AVX-NEXT:    vandps %xmm1, %xmm0, %xmm0
83 ; AVX-NEXT:    retq
84   %1 = fsub float -0.0, %a
85   %2 = call float @llvm.fabs.f32(float %1)
86   ret float %2
89 define <4 x float> @combine_vec_fabs_fneg(<4 x float> %a) {
90 ; SSE-LABEL: combine_vec_fabs_fneg:
91 ; SSE:       # %bb.0:
92 ; SSE-NEXT:    andps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm0
93 ; SSE-NEXT:    retq
95 ; AVX-LABEL: combine_vec_fabs_fneg:
96 ; AVX:       # %bb.0:
97 ; AVX-NEXT:    vbroadcastss {{.*#+}} xmm1 = [NaN,NaN,NaN,NaN]
98 ; AVX-NEXT:    vandps %xmm1, %xmm0, %xmm0
99 ; AVX-NEXT:    retq
100   %1 = fsub <4 x float> <float -0.0, float -0.0, float -0.0, float -0.0>, %a
101   %2 = call <4 x float> @llvm.fabs.v4f32(<4 x float> %1)
102   ret <4 x float> %2
105 ; fabs(fcopysign(x, y)) -> fabs(x)
106 define float @combine_fabs_fcopysign(float %a, float %b) {
107 ; SSE-LABEL: combine_fabs_fcopysign:
108 ; SSE:       # %bb.0:
109 ; SSE-NEXT:    andps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm0
110 ; SSE-NEXT:    retq
112 ; AVX-LABEL: combine_fabs_fcopysign:
113 ; AVX:       # %bb.0:
114 ; AVX-NEXT:    vbroadcastss {{.*#+}} xmm1 = [NaN,NaN,NaN,NaN]
115 ; AVX-NEXT:    vandps %xmm1, %xmm0, %xmm0
116 ; AVX-NEXT:    retq
117   %1 = call float @llvm.copysign.f32(float %a, float %b)
118   %2 = call float @llvm.fabs.f32(float %1)
119   ret float %2
122 define <4 x float> @combine_vec_fabs_fcopysign(<4 x float> %a, <4 x float> %b) {
123 ; SSE-LABEL: combine_vec_fabs_fcopysign:
124 ; SSE:       # %bb.0:
125 ; SSE-NEXT:    andps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm0
126 ; SSE-NEXT:    retq
128 ; AVX-LABEL: combine_vec_fabs_fcopysign:
129 ; AVX:       # %bb.0:
130 ; AVX-NEXT:    vbroadcastss {{.*#+}} xmm1 = [NaN,NaN,NaN,NaN]
131 ; AVX-NEXT:    vandps %xmm1, %xmm0, %xmm0
132 ; AVX-NEXT:    retq
133   %1 = call <4 x float> @llvm.copysign.v4f32(<4 x float> %a, <4 x float> %b)
134   %2 = call <4 x float> @llvm.fabs.v4f32(<4 x float> %1)
135   ret <4 x float> %2
138 declare float @llvm.fabs.f32(float %p)
139 declare float @llvm.copysign.f32(float %Mag, float %Sgn)
141 declare <4 x float> @llvm.fabs.v4f32(<4 x float> %p)
142 declare <4 x float> @llvm.copysign.v4f32(<4 x float> %Mag, <4 x float> %Sgn)