mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-07 19:47:53 +00:00
454315178c
This is the last step in getting constant pattern matchers to allow undef elements in constant vectors. I'm adding a dedicated m_ZeroInt() function and building m_Zero() from that. In most cases, calling code can be updated to use m_ZeroInt() directly when there's no need to match pointers, but I'm leaving that efficiency optimization as a follow-up step because it's not always clear when that's ok. There are just enough icmp folds in InstSimplify that can be used for integer or pointer types, that we probably still want a generic m_Zero() for those cases. Otherwise, we could eliminate it (and possibly add a m_NullPtr() as an alias for isa<ConstantPointerNull>()). We're conservatively returning a full zero vector (zeroinitializer) in InstSimplify/InstCombine on some of these folds (see diffs in InstSimplify), but I'm not sure if that's actually necessary in all cases. We may be able to propagate an undef lane instead. One test where this happens is marked with 'TODO'. llvm-svn: 330550
75 lines
2.0 KiB
LLVM
75 lines
2.0 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt < %s -instsimplify -S | FileCheck %s
|
|
|
|
define i32 @negate_nuw(i32 %x) {
|
|
; CHECK-LABEL: @negate_nuw(
|
|
; CHECK-NEXT: ret i32 0
|
|
;
|
|
%neg = sub nuw i32 0, %x
|
|
ret i32 %neg
|
|
}
|
|
|
|
define <2 x i32> @negate_nuw_vec(<2 x i32> %x) {
|
|
; CHECK-LABEL: @negate_nuw_vec(
|
|
; CHECK-NEXT: ret <2 x i32> zeroinitializer
|
|
;
|
|
%neg = sub nuw <2 x i32> zeroinitializer, %x
|
|
ret <2 x i32> %neg
|
|
}
|
|
|
|
define <2 x i32> @negate_nuw_vec_undef_elt(<2 x i32> %x) {
|
|
; CHECK-LABEL: @negate_nuw_vec_undef_elt(
|
|
; CHECK-NEXT: ret <2 x i32> zeroinitializer
|
|
;
|
|
%neg = sub nuw <2 x i32> <i32 0, i32 undef>, %x
|
|
ret <2 x i32> %neg
|
|
}
|
|
|
|
define i8 @negate_zero_or_minsigned_nsw(i8 %x) {
|
|
; CHECK-LABEL: @negate_zero_or_minsigned_nsw(
|
|
; CHECK-NEXT: ret i8 0
|
|
;
|
|
%signbit = and i8 %x, 128
|
|
%neg = sub nsw i8 0, %signbit
|
|
ret i8 %neg
|
|
}
|
|
|
|
define <2 x i8> @negate_zero_or_minsigned_nsw_vec(<2 x i8> %x) {
|
|
; CHECK-LABEL: @negate_zero_or_minsigned_nsw_vec(
|
|
; CHECK-NEXT: ret <2 x i8> zeroinitializer
|
|
;
|
|
%signbit = shl <2 x i8> %x, <i8 7, i8 7>
|
|
%neg = sub nsw <2 x i8> zeroinitializer, %signbit
|
|
ret <2 x i8> %neg
|
|
}
|
|
|
|
define <2 x i8> @negate_zero_or_minsigned_nsw_vec_undef_elt(<2 x i8> %x) {
|
|
; CHECK-LABEL: @negate_zero_or_minsigned_nsw_vec_undef_elt(
|
|
; CHECK-NEXT: ret <2 x i8> zeroinitializer
|
|
;
|
|
%signbit = shl <2 x i8> %x, <i8 7, i8 7>
|
|
%neg = sub nsw <2 x i8> <i8 undef, i8 0>, %signbit
|
|
ret <2 x i8> %neg
|
|
}
|
|
|
|
define i8 @negate_zero_or_minsigned(i8 %x) {
|
|
; CHECK-LABEL: @negate_zero_or_minsigned(
|
|
; CHECK-NEXT: [[SIGNBIT:%.*]] = shl i8 [[X:%.*]], 7
|
|
; CHECK-NEXT: ret i8 [[SIGNBIT]]
|
|
;
|
|
%signbit = shl i8 %x, 7
|
|
%neg = sub i8 0, %signbit
|
|
ret i8 %neg
|
|
}
|
|
|
|
define <2 x i8> @negate_zero_or_minsigned_vec(<2 x i8> %x) {
|
|
; CHECK-LABEL: @negate_zero_or_minsigned_vec(
|
|
; CHECK-NEXT: [[SIGNBIT:%.*]] = and <2 x i8> [[X:%.*]], <i8 -128, i8 -128>
|
|
; CHECK-NEXT: ret <2 x i8> [[SIGNBIT]]
|
|
;
|
|
%signbit = and <2 x i8> %x, <i8 128, i8 128>
|
|
%neg = sub <2 x i8> zeroinitializer, %signbit
|
|
ret <2 x i8> %neg
|
|
}
|
|
|