2019-01-14 05:21:46 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse2 | FileCheck %s --check-prefixes=CHECK,SSE,SSE2
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse4.1 | FileCheck %s --check-prefixes=CHECK,SSE,SSE41
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse4.2 | FileCheck %s --check-prefixes=CHECK,SSE,SSE42
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx | FileCheck %s --check-prefixes=CHECK,AVX,AVX1
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx2 | FileCheck %s --check-prefixes=CHECK,AVX,AVX2
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx512f | FileCheck %s --check-prefixes=CHECK,AVX,AVX512,AVX512F
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx512bw | FileCheck %s --check-prefixes=CHECK,AVX,AVX512,AVX512BW
|
|
|
|
|
|
|
|
declare i32 @llvm.ssub.sat.i32 (i32, i32)
|
|
|
|
declare i64 @llvm.ssub.sat.i64 (i64, i64)
|
|
|
|
declare <8 x i16> @llvm.ssub.sat.v8i16(<8 x i16>, <8 x i16>)
|
|
|
|
|
2019-01-14 21:47:07 +08:00
|
|
|
; fold (ssub_sat x, undef) -> 0
|
|
|
|
define i32 @combine_undef_i32(i32 %a0) {
|
|
|
|
; CHECK-LABEL: combine_undef_i32:
|
|
|
|
; CHECK: # %bb.0:
|
|
|
|
; CHECK-NEXT: xorl %eax, %eax
|
|
|
|
; CHECK-NEXT: movl %edi, %ecx
|
|
|
|
; CHECK-NEXT: subl %eax, %ecx
|
|
|
|
; CHECK-NEXT: setns %al
|
|
|
|
; CHECK-NEXT: addl $2147483647, %eax # imm = 0x7FFFFFFF
|
|
|
|
; CHECK-NEXT: subl %eax, %edi
|
|
|
|
; CHECK-NEXT: cmovnol %edi, %eax
|
|
|
|
; CHECK-NEXT: retq
|
|
|
|
%res = call i32 @llvm.ssub.sat.i32(i32 %a0, i32 undef)
|
|
|
|
ret i32 %res
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i16> @combine_undef_v8i16(<8 x i16> %a0) {
|
|
|
|
; SSE-LABEL: combine_undef_v8i16:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: psubsw %xmm0, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX-LABEL: combine_undef_v8i16:
|
|
|
|
; AVX: # %bb.0:
|
|
|
|
; AVX-NEXT: vpsubsw %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
|
|
|
%res = call <8 x i16> @llvm.ssub.sat.v8i16(<8 x i16> undef, <8 x i16> %a0)
|
|
|
|
ret <8 x i16> %res
|
|
|
|
}
|
|
|
|
|
2019-01-14 05:21:46 +08:00
|
|
|
; fold (ssub_sat c, 0) -> x
|
|
|
|
define i32 @combine_zero_i32(i32 %a0) {
|
|
|
|
; CHECK-LABEL: combine_zero_i32:
|
|
|
|
; CHECK: # %bb.0:
|
2019-01-14 05:50:24 +08:00
|
|
|
; CHECK-NEXT: movl %edi, %eax
|
2019-01-14 05:21:46 +08:00
|
|
|
; CHECK-NEXT: retq
|
2019-01-14 21:47:07 +08:00
|
|
|
%1 = call i32 @llvm.ssub.sat.i32(i32 %a0, i32 0)
|
2019-01-14 05:21:46 +08:00
|
|
|
ret i32 %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i16> @combine_zero_v8i16(<8 x i16> %a0) {
|
2019-01-14 05:50:24 +08:00
|
|
|
; CHECK-LABEL: combine_zero_v8i16:
|
|
|
|
; CHECK: # %bb.0:
|
|
|
|
; CHECK-NEXT: retq
|
2019-01-14 21:47:07 +08:00
|
|
|
%1 = call <8 x i16> @llvm.ssub.sat.v8i16(<8 x i16> %a0, <8 x i16> zeroinitializer)
|
2019-01-14 05:21:46 +08:00
|
|
|
ret <8 x i16> %1
|
|
|
|
}
|