Home
last modified time | relevance | path

Searched refs:MatchMinMax (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp48635 auto MatchMinMax = [](SDValue V, unsigned Opcode, APInt &Limit) -> SDValue { in detectUSatPattern() local
48643 if (SDValue UMin = MatchMinMax(In, ISD::UMIN, C2)) in detectUSatPattern()
48649 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, C2)) in detectUSatPattern()
48650 if (MatchMinMax(SMin, ISD::SMAX, C1)) in detectUSatPattern()
48654 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, C1)) in detectUSatPattern()
48655 if (SDValue SMin = MatchMinMax(SMax, ISD::SMIN, C2)) in detectUSatPattern()
48678 auto MatchMinMax = [](SDValue V, unsigned Opcode, in detectSSatPattern() local
48696 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, SignedMax)) in detectSSatPattern()
48697 if (SDValue SMax = MatchMinMax(SMin, ISD::SMAX, SignedMin)) in detectSSatPattern()
48700 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, SignedMin)) in detectSSatPattern()
[all …]