Searched refs:BinOp2_match (Results 1 – 1 of 1) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 636 struct BinOp2_match { struct 640 BinOp2_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {} in BinOp2_match() argument 657 inline BinOp2_match<LHS, RHS, Instruction::LShr, Instruction::AShr> argument 659 return BinOp2_match<LHS, RHS, Instruction::LShr, Instruction::AShr>(L, R); in m_Shr() 664 inline BinOp2_match<LHS, RHS, Instruction::LShr, Instruction::Shl> 666 return BinOp2_match<LHS, RHS, Instruction::LShr, Instruction::Shl>(L, R); in m_LogicalShift() 671 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv> 673 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R); in m_IDiv()
|