Searched refs:MaxMin_match (Results 1 – 1 of 1) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 951 struct MaxMin_match { struct 955 MaxMin_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {} in MaxMin_match() function 1041 inline MaxMin_match<ICmpInst, LHS, RHS, smax_pred_ty> m_SMax(const LHS &L, in m_SMax() 1043 return MaxMin_match<ICmpInst, LHS, RHS, smax_pred_ty>(L, R); in m_SMax() 1047 inline MaxMin_match<ICmpInst, LHS, RHS, smin_pred_ty> m_SMin(const LHS &L, in m_SMin() 1049 return MaxMin_match<ICmpInst, LHS, RHS, smin_pred_ty>(L, R); in m_SMin() 1053 inline MaxMin_match<ICmpInst, LHS, RHS, umax_pred_ty> m_UMax(const LHS &L, in m_UMax() 1055 return MaxMin_match<ICmpInst, LHS, RHS, umax_pred_ty>(L, R); in m_UMax() 1059 inline MaxMin_match<ICmpInst, LHS, RHS, umin_pred_ty> m_UMin(const LHS &L, in m_UMin() 1061 return MaxMin_match<ICmpInst, LHS, RHS, umin_pred_ty>(L, R); in m_UMin() [all …]
|