reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/ValueTracking.cpp
 4773     if (match(TrueVal, m_AnyZeroFP()) && !match(FalseVal, m_AnyZeroFP()) &&
 4774         !cast<Constant>(TrueVal)->containsUndefElement())
 4775       OutputZeroVal = TrueVal;
 4776     else if (match(FalseVal, m_AnyZeroFP()) && !match(TrueVal, m_AnyZeroFP()) &&
 4848   if (TrueVal == CmpRHS && FalseVal == CmpLHS) {
 4859   if (TrueVal == CmpLHS && FalseVal == CmpRHS) {
 4881   if (isKnownNegation(TrueVal, FalseVal)) {
 4888     if (match(TrueVal, MaybeSExtCmpLHS)) {
 4891       LHS = TrueVal;
 4914       RHS = TrueVal;
 4915       if (match(CmpLHS, m_Neg(m_Specific(TrueVal))))
 4931     return matchMinMax(Pred, CmpLHS, CmpRHS, TrueVal, FalseVal, LHS, RHS, Depth);
 4941   return matchFastFloatClamp(Pred, CmpLHS, CmpRHS, TrueVal, FalseVal, LHS, RHS);