Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp49958 auto MatchMinMax = [](SDValue V, unsigned Opcode, APInt &Limit) -> SDValue { in detectUSatPattern() local
49966 if (SDValue UMin = MatchMinMax(In, ISD::UMIN, C2)) in detectUSatPattern()
49972 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, C2)) in detectUSatPattern()
49973 if (MatchMinMax(SMin, ISD::SMAX, C1)) in detectUSatPattern()
49977 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, C1)) in detectUSatPattern()
49978 if (SDValue SMin = MatchMinMax(SMax, ISD::SMIN, C2)) in detectUSatPattern()
50001 auto MatchMinMax = [](SDValue V, unsigned Opcode, in detectSSatPattern() local
50019 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, SignedMax)) in detectSSatPattern()
50020 if (SDValue SMax = MatchMinMax(SMin, ISD::SMAX, SignedMin)) in detectSSatPattern()
50023 if (SDValue SMax = MatchMinMax(In, ISD::SMAX, SignedMin)) in detectSSatPattern()
[all …]