mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
[InstCombine] use 'match' to handle vectors and simplify code
This is another step towards completely removing the fake binop queries for not/neg/fneg. llvm-svn: 345036
This commit is contained in:
parent
e4ec3df7e4
commit
1425492643
@ -1989,8 +1989,9 @@ Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
|
||||
}
|
||||
}
|
||||
|
||||
if (BinaryOperator::isNot(CondVal)) {
|
||||
SI.setOperand(0, BinaryOperator::getNotArgument(CondVal));
|
||||
Value *NotCond;
|
||||
if (match(CondVal, m_Not(m_Value(NotCond)))) {
|
||||
SI.setOperand(0, NotCond);
|
||||
SI.setOperand(1, FalseVal);
|
||||
SI.setOperand(2, TrueVal);
|
||||
SI.swapProfMetadata();
|
||||
|
@ -322,13 +322,12 @@ define <2 x i32> @not_cond_vec(<2 x i1> %c, <2 x i32> %tv, <2 x i32> %fv) {
|
||||
ret <2 x i32> %r
|
||||
}
|
||||
|
||||
; FIXME: Should match vector 'not' with undef element. After that...
|
||||
; Should match vector 'not' with undef element.
|
||||
; The condition is inverted, and the select ops are swapped. The metadata should be swapped.
|
||||
|
||||
define <2 x i32> @not_cond_vec_undef(<2 x i1> %c, <2 x i32> %tv, <2 x i32> %fv) {
|
||||
; CHECK-LABEL: @not_cond_vec_undef(
|
||||
; CHECK-NEXT: [[NOTC:%.*]] = xor <2 x i1> [[C:%.*]], <i1 undef, i1 true>
|
||||
; CHECK-NEXT: [[R:%.*]] = select <2 x i1> [[NOTC]], <2 x i32> [[TV:%.*]], <2 x i32> [[FV:%.*]], !prof ![[$MD1]]
|
||||
; CHECK-NEXT: [[R:%.*]] = select <2 x i1> [[C:%.*]], <2 x i32> [[FV:%.*]], <2 x i32> [[TV:%.*]], !prof ![[$MD3]]
|
||||
; CHECK-NEXT: ret <2 x i32> [[R]]
|
||||
;
|
||||
%notc = xor <2 x i1> %c, <i1 undef, i1 true>
|
||||
|
@ -293,8 +293,7 @@ for.end: ; preds = %for.body
|
||||
; CHECK-NEXT: [[BROADCAST_SPLAT6:%.*]] = shufflevector <4 x i32> [[BROADCAST_SPLATINSERT5]], <4 x i32> undef, <4 x i32> zeroinitializer
|
||||
; CHECK-NEXT: [[TMP2:%.*]] = insertelement <4 x i1> undef, i1 [[CMP]], i32 3
|
||||
; CHECK-NEXT: [[TMP3:%.*]] = insertelement <4 x i32> undef, i32 [[K]], i32 3
|
||||
; CHECK-NEXT: [[TMP4:%.*]] = xor <4 x i1> [[TMP2]], <i1 undef, i1 undef, i1 undef, i1 true>
|
||||
; CHECK-NEXT: [[PREDPHI:%.*]] = select <4 x i1> [[TMP4]], <4 x i32> [[TMP3]], <4 x i32> [[BROADCAST_SPLAT6]]
|
||||
; CHECK-NEXT: [[PREDPHI:%.*]] = select <4 x i1> [[TMP2]], <4 x i32> [[BROADCAST_SPLAT6]], <4 x i32> [[TMP3]]
|
||||
; CHECK-NEXT: [[TMP5:%.*]] = extractelement <4 x i32> [[PREDPHI]], i32 3
|
||||
; CHECK-NEXT: br label [[VECTOR_BODY:%.*]]
|
||||
; CHECK: vector.body:
|
||||
|
Loading…
Reference in New Issue
Block a user