mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
[InstCombine] split shuffle test to show extra use constraint; NFC
As discussed in D53037, this transform can cause codegen problems if the 1st shuffle has multiple uses. llvm-svn: 353233
This commit is contained in:
parent
a75864e8e1
commit
c8f576a86d
@ -182,10 +182,21 @@ define <2 x i8> @extract_subvector_of_shuffle(<2 x i8> %x, <2 x i8> %y) {
|
||||
ret <2 x i8> %extract_subv
|
||||
}
|
||||
|
||||
; Extra uses are ok.
|
||||
; Undef elements in either mask are ok. Undefs from the 2nd shuffle mask should propagate to the new shuffle.
|
||||
; The type of the inputs does not have to match the output type.
|
||||
|
||||
define <4 x i8> @extract_subvector_of_shuffle_undefs_types(<2 x i8> %x, <2 x i8> %y) {
|
||||
; CHECK-LABEL: @extract_subvector_of_shuffle_undefs_types(
|
||||
; CHECK-NEXT: [[EXTRACT_SUBV:%.*]] = shufflevector <2 x i8> [[X:%.*]], <2 x i8> [[Y:%.*]], <4 x i32> <i32 undef, i32 2, i32 0, i32 undef>
|
||||
; CHECK-NEXT: ret <4 x i8> [[EXTRACT_SUBV]]
|
||||
;
|
||||
%shuf = shufflevector <2 x i8> %x, <2 x i8> %y, <5 x i32> <i32 undef, i32 2, i32 0, i32 1, i32 0>
|
||||
%extract_subv = shufflevector <5 x i8> %shuf, <5 x i8> undef, <4 x i32> <i32 0, i32 1, i32 2, i32 undef>
|
||||
ret <4 x i8> %extract_subv
|
||||
}
|
||||
|
||||
; FIXME: Extra uses are not ok - we should only do the transform when we can eliminate an instruction.
|
||||
|
||||
declare void @use_v5i8(<5 x i8>)
|
||||
|
||||
define <4 x i8> @extract_subvector_of_shuffle_extra_use(<2 x i8> %x, <2 x i8> %y) {
|
||||
@ -723,8 +734,8 @@ define <8 x i8> @pr19730(<16 x i8> %in0) {
|
||||
|
||||
define i32 @pr19737(<4 x i32> %in0) {
|
||||
; CHECK-LABEL: @pr19737(
|
||||
; CHECK-NEXT: [[RV_RHS:%.*]] = extractelement <4 x i32> [[IN0:%.*]], i32 0
|
||||
; CHECK-NEXT: ret i32 [[RV_RHS]]
|
||||
; CHECK-NEXT: [[TMP1:%.*]] = extractelement <4 x i32> [[IN0:%.*]], i32 0
|
||||
; CHECK-NEXT: ret i32 [[TMP1]]
|
||||
;
|
||||
%shuffle.i = shufflevector <4 x i32> zeroinitializer, <4 x i32> %in0, <4 x i32> <i32 0, i32 4, i32 2, i32 6>
|
||||
%neg.i = xor <4 x i32> %shuffle.i, <i32 -1, i32 -1, i32 -1, i32 -1>
|
||||
|
Loading…
Reference in New Issue
Block a user