Searched refs:MatchMinMax (Results 1 – 1 of 1) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 45429 auto MatchMinMax = [](SDValue V, unsigned Opcode, APInt &Limit) -> SDValue { in detectUSatPattern() local 45437 if (SDValue UMin = MatchMinMax(In, ISD::UMIN, C2)) in detectUSatPattern() 45443 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, C2)) in detectUSatPattern() 45444 if (MatchMinMax(SMin, ISD::SMAX, C1)) in detectUSatPattern() 45448 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, C1)) in detectUSatPattern() 45449 if (SDValue SMin = MatchMinMax(SMax, ISD::SMIN, C2)) in detectUSatPattern() 45472 auto MatchMinMax = [](SDValue V, unsigned Opcode, in detectSSatPattern() local 45490 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, SignedMax)) in detectSSatPattern() 45491 if (SDValue SMax = MatchMinMax(SMin, ISD::SMAX, SignedMin)) in detectSSatPattern() 45494 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, SignedMin)) in detectSSatPattern() [all …]
|