Lines Matching defs:FCmp
188 static Value *handleOtherCmpSelSimplifications(Value *TCmp, Value *FCmp,
198 if (match(FCmp, m_Zero()) && impliesPoison(TCmp, Cond))
202 // is equal to "Cond || FCmp".
203 if (match(TCmp, m_One()) && impliesPoison(FCmp, Cond))
204 if (Value *V = simplifyOrInst(Cond, FCmp, Q, MaxRecurse))
208 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
498 Value *FCmp = simplifyCmpSelFalseCase(Pred, FV, RHS, Cond, Q, MaxRecurse);
499 if (!FCmp)
504 if (TCmp == FCmp)
510 return handleOtherCmpSelSimplifications(TCmp, FCmp, Cond, Q, MaxRecurse);
7138 case Instruction::FCmp: