Searched refs:BinaryOp_match (Results 1 – 1 of 1) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 374 struct BinaryOp_match { struct 378 BinaryOp_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {} in BinaryOp_match() argument 394 inline BinaryOp_match<LHS, RHS, Instruction::Add> argument 396 return BinaryOp_match<LHS, RHS, Instruction::Add>(L, R); in m_Add() 400 inline BinaryOp_match<LHS, RHS, Instruction::FAdd> 402 return BinaryOp_match<LHS, RHS, Instruction::FAdd>(L, R); in m_FAdd() 406 inline BinaryOp_match<LHS, RHS, Instruction::Sub> 408 return BinaryOp_match<LHS, RHS, Instruction::Sub>(L, R); in m_Sub() 412 inline BinaryOp_match<LHS, RHS, Instruction::FSub> 414 return BinaryOp_match<LHS, RHS, Instruction::FSub>(L, R); in m_FSub() [all …]
|