mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
37e671e894
Added new types to Legalizer. Fixed getSetCCResultType function Added lowering tests. Reviewed by Elena Demikhovsky. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216717 91177308-0d34-0410-b5e6-96231b3b80d8
136 lines
4.3 KiB
LLVM
136 lines
4.3 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=skx | FileCheck %s
|
|
|
|
; CHECK-LABEL: test1
|
|
; CHECK: vpcmpeqb {{.*%k[0-7]}}
|
|
; CHECK: vmovdqu8 {{.*}}%k1
|
|
; CHECK: ret
|
|
define <64 x i8> @test1(<64 x i8> %x, <64 x i8> %y) nounwind {
|
|
%mask = icmp eq <64 x i8> %x, %y
|
|
%max = select <64 x i1> %mask, <64 x i8> %x, <64 x i8> %y
|
|
ret <64 x i8> %max
|
|
}
|
|
|
|
; CHECK-LABEL: test2
|
|
; CHECK: vpcmpgtb {{.*%k[0-7]}}
|
|
; CHECK: vmovdqu8 {{.*}}%k1
|
|
; CHECK: ret
|
|
define <64 x i8> @test2(<64 x i8> %x, <64 x i8> %y) nounwind {
|
|
%mask = icmp sgt <64 x i8> %x, %y
|
|
%max = select <64 x i1> %mask, <64 x i8> %x, <64 x i8> %y
|
|
ret <64 x i8> %max
|
|
}
|
|
|
|
; CHECK-LABEL: @test3
|
|
; CHECK: vpcmplew {{.*%k[0-7]}}
|
|
; CHECK: vmovdqu16
|
|
; CHECK: ret
|
|
define <32 x i16> @test3(<32 x i16> %x, <32 x i16> %y, <32 x i16> %x1) nounwind {
|
|
%mask = icmp sge <32 x i16> %x, %y
|
|
%max = select <32 x i1> %mask, <32 x i16> %x1, <32 x i16> %y
|
|
ret <32 x i16> %max
|
|
}
|
|
|
|
; CHECK-LABEL: test4
|
|
; CHECK: vpcmpnleub {{.*%k[0-7]}}
|
|
; CHECK: vmovdqu8 {{.*}}%k1
|
|
; CHECK: ret
|
|
define <64 x i8> @test4(<64 x i8> %x, <64 x i8> %y) nounwind {
|
|
%mask = icmp ugt <64 x i8> %x, %y
|
|
%max = select <64 x i1> %mask, <64 x i8> %x, <64 x i8> %y
|
|
ret <64 x i8> %max
|
|
}
|
|
|
|
; CHECK-LABEL: test5
|
|
; CHECK: vpcmpeqw (%rdi){{.*%k[0-7]}}
|
|
; CHECK: vmovdqu16
|
|
; CHECK: ret
|
|
define <32 x i16> @test5(<32 x i16> %x, <32 x i16> %x1, <32 x i16>* %yp) nounwind {
|
|
%y = load <32 x i16>* %yp, align 4
|
|
%mask = icmp eq <32 x i16> %x, %y
|
|
%max = select <32 x i1> %mask, <32 x i16> %x, <32 x i16> %x1
|
|
ret <32 x i16> %max
|
|
}
|
|
|
|
; CHECK-LABEL: @test6
|
|
; CHECK: vpcmpgtw (%rdi){{.*%k[0-7]}}
|
|
; CHECK: vmovdqu16
|
|
; CHECK: ret
|
|
define <32 x i16> @test6(<32 x i16> %x, <32 x i16> %x1, <32 x i16>* %y.ptr) nounwind {
|
|
%y = load <32 x i16>* %y.ptr, align 4
|
|
%mask = icmp sgt <32 x i16> %x, %y
|
|
%max = select <32 x i1> %mask, <32 x i16> %x, <32 x i16> %x1
|
|
ret <32 x i16> %max
|
|
}
|
|
|
|
; CHECK-LABEL: @test7
|
|
; CHECK: vpcmplew (%rdi){{.*%k[0-7]}}
|
|
; CHECK: vmovdqu16
|
|
; CHECK: ret
|
|
define <32 x i16> @test7(<32 x i16> %x, <32 x i16> %x1, <32 x i16>* %y.ptr) nounwind {
|
|
%y = load <32 x i16>* %y.ptr, align 4
|
|
%mask = icmp sle <32 x i16> %x, %y
|
|
%max = select <32 x i1> %mask, <32 x i16> %x, <32 x i16> %x1
|
|
ret <32 x i16> %max
|
|
}
|
|
|
|
; CHECK-LABEL: @test8
|
|
; CHECK: vpcmpleuw (%rdi){{.*%k[0-7]}}
|
|
; CHECK: vmovdqu16
|
|
; CHECK: ret
|
|
define <32 x i16> @test8(<32 x i16> %x, <32 x i16> %x1, <32 x i16>* %y.ptr) nounwind {
|
|
%y = load <32 x i16>* %y.ptr, align 4
|
|
%mask = icmp ule <32 x i16> %x, %y
|
|
%max = select <32 x i1> %mask, <32 x i16> %x, <32 x i16> %x1
|
|
ret <32 x i16> %max
|
|
}
|
|
|
|
; CHECK-LABEL: @test9
|
|
; CHECK: vpcmpeqw %zmm{{.*{%k[1-7]}}}
|
|
; CHECK: vmovdqu16
|
|
; CHECK: ret
|
|
define <32 x i16> @test9(<32 x i16> %x, <32 x i16> %y, <32 x i16> %x1, <32 x i16> %y1) nounwind {
|
|
%mask1 = icmp eq <32 x i16> %x1, %y1
|
|
%mask0 = icmp eq <32 x i16> %x, %y
|
|
%mask = select <32 x i1> %mask0, <32 x i1> %mask1, <32 x i1> zeroinitializer
|
|
%max = select <32 x i1> %mask, <32 x i16> %x, <32 x i16> %y
|
|
ret <32 x i16> %max
|
|
}
|
|
|
|
; CHECK-LABEL: @test10
|
|
; CHECK: vpcmpleb %zmm{{.*{%k[1-7]}}}
|
|
; CHECK: vmovdqu8
|
|
; CHECK: ret
|
|
define <64 x i8> @test10(<64 x i8> %x, <64 x i8> %y, <64 x i8> %x1, <64 x i8> %y1) nounwind {
|
|
%mask1 = icmp sge <64 x i8> %x1, %y1
|
|
%mask0 = icmp sle <64 x i8> %x, %y
|
|
%mask = select <64 x i1> %mask0, <64 x i1> %mask1, <64 x i1> zeroinitializer
|
|
%max = select <64 x i1> %mask, <64 x i8> %x, <64 x i8> %x1
|
|
ret <64 x i8> %max
|
|
}
|
|
|
|
; CHECK-LABEL: @test11
|
|
; CHECK: vpcmpgtb (%rdi){{.*{%k[1-7]}}}
|
|
; CHECK: vmovdqu8
|
|
; CHECK: ret
|
|
define <64 x i8> @test11(<64 x i8> %x, <64 x i8>* %y.ptr, <64 x i8> %x1, <64 x i8> %y1) nounwind {
|
|
%mask1 = icmp sgt <64 x i8> %x1, %y1
|
|
%y = load <64 x i8>* %y.ptr, align 4
|
|
%mask0 = icmp sgt <64 x i8> %x, %y
|
|
%mask = select <64 x i1> %mask0, <64 x i1> %mask1, <64 x i1> zeroinitializer
|
|
%max = select <64 x i1> %mask, <64 x i8> %x, <64 x i8> %x1
|
|
ret <64 x i8> %max
|
|
}
|
|
|
|
; CHECK-LABEL: @test12
|
|
; CHECK: vpcmpleuw (%rdi){{.*{%k[1-7]}}}
|
|
; CHECK: vmovdqu16
|
|
; CHECK: ret
|
|
define <32 x i16> @test12(<32 x i16> %x, <32 x i16>* %y.ptr, <32 x i16> %x1, <32 x i16> %y1) nounwind {
|
|
%mask1 = icmp sge <32 x i16> %x1, %y1
|
|
%y = load <32 x i16>* %y.ptr, align 4
|
|
%mask0 = icmp ule <32 x i16> %x, %y
|
|
%mask = select <32 x i1> %mask0, <32 x i1> %mask1, <32 x i1> zeroinitializer
|
|
%max = select <32 x i1> %mask, <32 x i16> %x, <32 x i16> %x1
|
|
ret <32 x i16> %max
|
|
}
|