Searched refs:BinOpPred_match (Results 1 – 1 of 1) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | PatternMatch.h | 1029 struct BinOpPred_match : Predicate { struct 1033 BinOpPred_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {} in BinOpPred_match() function 1082 inline BinOpPred_match<LHS, RHS, is_shift_op> m_Shift(const LHS &L, in m_Shift() 1084 return BinOpPred_match<LHS, RHS, is_shift_op>(L, R); in m_Shift() 1089 inline BinOpPred_match<LHS, RHS, is_right_shift_op> m_Shr(const LHS &L, in m_Shr() 1091 return BinOpPred_match<LHS, RHS, is_right_shift_op>(L, R); in m_Shr() 1096 inline BinOpPred_match<LHS, RHS, is_logical_shift_op> 1098 return BinOpPred_match<LHS, RHS, is_logical_shift_op>(L, R); in m_LogicalShift() 1103 inline BinOpPred_match<LHS, RHS, is_bitwiselogic_op> 1105 return BinOpPred_match<LHS, RHS, is_bitwiselogic_op>(L, R); in m_BitwiseLogic() [all …]
|