Home
last modified time | relevance | path

Searched refs:BinaryOp_match (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
DPatternMatch.h271 struct BinaryOp_match { struct
275 BinaryOp_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {} in BinaryOp_match() argument
291 inline BinaryOp_match<LHS, RHS, Instruction::Add> argument
293 return BinaryOp_match<LHS, RHS, Instruction::Add>(L, R); in m_Add()
297 inline BinaryOp_match<LHS, RHS, Instruction::FAdd>
299 return BinaryOp_match<LHS, RHS, Instruction::FAdd>(L, R); in m_FAdd()
303 inline BinaryOp_match<LHS, RHS, Instruction::Sub>
305 return BinaryOp_match<LHS, RHS, Instruction::Sub>(L, R); in m_Sub()
309 inline BinaryOp_match<LHS, RHS, Instruction::FSub>
311 return BinaryOp_match<LHS, RHS, Instruction::FSub>(L, R); in m_FSub()
[all …]
/external/llvm/include/llvm/IR/
DPatternMatch.h415 struct BinaryOp_match { struct
419 BinaryOp_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {} in BinaryOp_match() argument
434 inline BinaryOp_match<LHS, RHS, Instruction::Add> m_Add(const LHS &L, in m_Add() argument
436 return BinaryOp_match<LHS, RHS, Instruction::Add>(L, R); in m_Add()
440 inline BinaryOp_match<LHS, RHS, Instruction::FAdd> m_FAdd(const LHS &L, in m_FAdd()
442 return BinaryOp_match<LHS, RHS, Instruction::FAdd>(L, R); in m_FAdd()
446 inline BinaryOp_match<LHS, RHS, Instruction::Sub> m_Sub(const LHS &L, in m_Sub()
448 return BinaryOp_match<LHS, RHS, Instruction::Sub>(L, R); in m_Sub()
452 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub()
454 return BinaryOp_match<LHS, RHS, Instruction::FSub>(L, R); in m_FSub()
[all …]