Home
last modified time | relevance | path

Searched defs:AnyOps_match (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h1713 template <unsigned Opcode, typename... OperandTypes> struct AnyOps_match { struct
1716 AnyOps_match(const OperandTypes &...Ops) : Operands(Ops...) {} in AnyOps_match() argument
1723 std::enable_if_t<Idx != Last, bool> match_operands(const Instruction *I) { in match_operands()
1728 std::enable_if_t<Idx == Last, bool> match_operands(const Instruction *I) { in match_operands()
1732 template <typename OpTy> bool match(OpTy *V) { in match()