HomeSort by: relevance | last modified time | path
    Searched refs:BinaryOp_match (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
MIPatternMatch.h 238 struct BinaryOp_match {
242 BinaryOp_match(const LHS_P &LHS, const RHS_P &RHS) : L(LHS), R(RHS) {}
296 inline BinaryOp_match<LHS, RHS, TargetOpcode::G_ADD, true>
298 return BinaryOp_match<LHS, RHS, TargetOpcode::G_ADD, true>(L, R);
302 inline BinaryOp_match<LHS, RHS, TargetOpcode::G_PTR_ADD, true>
304 return BinaryOp_match<LHS, RHS, TargetOpcode::G_PTR_ADD, true>(L, R);
308 inline BinaryOp_match<LHS, RHS, TargetOpcode::G_SUB> m_GSub(const LHS &L,
310 return BinaryOp_match<LHS, RHS, TargetOpcode::G_SUB>(L, R);
314 inline BinaryOp_match<LHS, RHS, TargetOpcode::G_MUL, true>
316 return BinaryOp_match<LHS, RHS, TargetOpcode::G_MUL, true>(L, R)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
PatternMatch.h 983 struct BinaryOp_match {
989 BinaryOp_match(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {}
1008 inline BinaryOp_match<LHS, RHS, Instruction::Add> m_Add(const LHS &L,
1010 return BinaryOp_match<LHS, RHS, Instruction::Add>(L, R);
1014 inline BinaryOp_match<LHS, RHS, Instruction::FAdd> m_FAdd(const LHS &L,
1016 return BinaryOp_match<LHS, RHS, Instruction::FAdd>(L, R);
1020 inline BinaryOp_match<LHS, RHS, Instruction::Sub> m_Sub(const LHS &L,
1022 return BinaryOp_match<LHS, RHS, Instruction::Sub>(L, R);
1026 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L,
1028 return BinaryOp_match<LHS, RHS, Instruction::FSub>(L, R)
    [all...]

Completed in 68 milliseconds