Home | History | Annotate | Download | only in Analysis

Lines Matching full:fcmp

403   Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
404 if (FCmp == Cond) {
407 FCmp = getFalse(Cond->getType());
408 } else if (!FCmp) {
413 FCmp = getFalse(Cond->getType());
418 if (TCmp == FCmp)
428 if (match(FCmp, m_Zero()))
432 // is equal to "Cond || FCmp".
434 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
438 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
3136 // fcmp pred x, undef and fcmp pred undef, x
3144 // fcmp x,x -> true/false. Not all compares are foldable.
3152 // Handle fcmp with constant RHS
4037 case Instruction::FCmp: