Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp195 case CmpInst::ICMP_SGT: Flavor = SPF_SMAX; break; in matchSelectWithOptionalNotCond()
240 if (SPF == SPF_SMIN || SPF == SPF_SMAX || in getHashValueImpl()
346 if (LSPF == SPF_SMIN || LSPF == SPF_SMAX || in isEqualImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueTracking.cpp1138 if (SPF == SPF_SMAX) { in computeKnownBitsFromOperator()
2410 if (SPF != SPF_SMAX && SPF != SPF_SMIN) in isSignedMinMaxClamp()
4728 return {SPF_SMAX, SPNB_NA, false}; in matchClamp()
4779 case SPF_SMAX: in matchMinMaxOfMinMax()
4869 return {Pred == CmpInst::ICMP_SGT ? SPF_SMIN : SPF_SMAX, SPNB_NA, false}; in matchMinMax()
4876 return {Pred == CmpInst::ICMP_SGT ? SPF_SMAX : SPF_SMIN, SPNB_NA, false}; in matchMinMax()
4906 return {Pred == CmpInst::ICMP_SGT ? SPF_SMIN : SPF_SMAX, SPNB_NA, false}; in matchMinMax()
4912 return {Pred == CmpInst::ICMP_SGT ? SPF_SMAX : SPF_SMIN, SPNB_NA, false}; in matchMinMax()
5042 case ICmpInst::ICMP_SGE: return {SPF_SMAX, SPNB_NA, false}; in matchSelectPattern()
5289 if (SPF == SPF_SMAX) return ICmpInst::ICMP_SGT; in getMinMaxPred()
[all …]
DLazyValueInfo.cpp908 case SPF_SMAX: /// Signed maximum in solveBlockValueSelect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueTracking.h579 SPF_SMAX, /// Signed maximum enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp1568 if ((SPF1 == SPF_SMIN && SPF2 == SPF_SMAX) || in foldSPFofSPF()
1569 (SPF1 == SPF_SMAX && SPF2 == SPF_SMIN) || in foldSPFofSPF()
1584 (SPF1 == SPF_SMAX && CB->sge(*CC))) in foldSPFofSPF()
1592 (SPF1 == SPF_SMAX && CB->slt(*CC))) { in foldSPFofSPF()
1606 (SPF1 == SPF_SMAX && match(C, m_c_SMin(m_Specific(A), m_Specific(B)))))) in foldSPFofSPF()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp3328 case SPF_SMAX: Opc = ISD::SMAX; break; in visitSelect()