Lines Matching refs:MatchMinMax
50965 auto MatchMinMax = [](SDValue V, unsigned Opcode, APInt &Limit) -> SDValue { in detectUSatPattern() local
50973 if (SDValue UMin = MatchMinMax(In, ISD::UMIN, C2)) in detectUSatPattern()
50979 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, C2)) in detectUSatPattern()
50980 if (MatchMinMax(SMin, ISD::SMAX, C1)) in detectUSatPattern()
50984 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, C1)) in detectUSatPattern()
50985 if (SDValue SMin = MatchMinMax(SMax, ISD::SMIN, C2)) in detectUSatPattern()
51008 auto MatchMinMax = [](SDValue V, unsigned Opcode, in detectSSatPattern() local
51026 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, SignedMax)) in detectSSatPattern()
51027 if (SDValue SMax = MatchMinMax(SMin, ISD::SMAX, SignedMin)) in detectSSatPattern()
51030 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, SignedMin)) in detectSSatPattern()
51031 if (SDValue SMin = MatchMinMax(SMax, ISD::SMIN, SignedMax)) in detectSSatPattern()