Searched refs:BinOpPred_match (Results 1 – 1 of 1) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | PatternMatch.h | 848 struct BinOpPred_match : Predicate { struct 852 BinOpPred_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {} in BinOpPred_match() argument 895 inline BinOpPred_match<LHS, RHS, is_shift_op> m_Shift(const LHS &L, in m_Shift() 897 return BinOpPred_match<LHS, RHS, is_shift_op>(L, R); in m_Shift() 902 inline BinOpPred_match<LHS, RHS, is_right_shift_op> m_Shr(const LHS &L, in m_Shr() 904 return BinOpPred_match<LHS, RHS, is_right_shift_op>(L, R); in m_Shr() 909 inline BinOpPred_match<LHS, RHS, is_logical_shift_op> 911 return BinOpPred_match<LHS, RHS, is_logical_shift_op>(L, R); in m_LogicalShift() 916 inline BinOpPred_match<LHS, RHS, is_bitwiselogic_op> 918 return BinOpPred_match<LHS, RHS, is_bitwiselogic_op>(L, R); in m_BitwiseLogic() [all …]
|