[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / WidenArith.ll
blob194f614d084bcfd015847bc0ab947c1f0d31b99f
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+avx | FileCheck %s --check-prefix=X86
3 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx | FileCheck %s --check-prefix=X64
5 define <8 x i32> @test(<8 x float> %a, <8 x float> %b) {
6 ; X86-LABEL: test:
7 ; X86:       # %bb.0:
8 ; X86-NEXT:    vaddps %ymm1, %ymm0, %ymm2
9 ; X86-NEXT:    vmulps %ymm0, %ymm1, %ymm1
10 ; X86-NEXT:    vsubps %ymm2, %ymm1, %ymm3
11 ; X86-NEXT:    vcmpltps %ymm1, %ymm0, %ymm0
12 ; X86-NEXT:    vcmpltps %ymm3, %ymm2, %ymm1
13 ; X86-NEXT:    vandps %ymm1, %ymm0, %ymm0
14 ; X86-NEXT:    vandps {{\.?LCPI[0-9]+_[0-9]+}}, %ymm0, %ymm0
15 ; X86-NEXT:    retl
17 ; X64-LABEL: test:
18 ; X64:       # %bb.0:
19 ; X64-NEXT:    vaddps %ymm1, %ymm0, %ymm2
20 ; X64-NEXT:    vmulps %ymm0, %ymm1, %ymm1
21 ; X64-NEXT:    vsubps %ymm2, %ymm1, %ymm3
22 ; X64-NEXT:    vcmpltps %ymm1, %ymm0, %ymm0
23 ; X64-NEXT:    vcmpltps %ymm3, %ymm2, %ymm1
24 ; X64-NEXT:    vandps %ymm1, %ymm0, %ymm0
25 ; X64-NEXT:    vandps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm0, %ymm0
26 ; X64-NEXT:    retq
27  %c1 = fadd <8 x float> %a, %b
28  %b1 = fmul <8 x float> %b, %a
29  %d  = fsub <8 x float> %b1, %c1
30  %res1 = fcmp olt <8 x float> %a, %b1
31  %res2 = fcmp olt <8 x float> %c1, %d
32  %andr = and <8 x i1>%res1, %res2
33  %ex = zext <8 x i1> %andr to <8 x i32>
34  ret <8 x i32>%ex