Home | History | Annotate | Download | only in IR

Lines Matching refs:Pattern

11 // tree-based pattern matches on the LLVM IR.  The power of these routines is
14 // trivially capture/bind elements in the pattern to variables. For example,
21 // ... Pattern is matched and variables are bound ...
41 template <typename Val, typename Pattern> bool match(Val *V, const Pattern &P) {
42 return const_cast<Pattern &>(P).match(V);
115 /// Combine two pattern matchers matching L || R
121 /// Combine two pattern matchers matching L && R
1305 /// \brief Matches a signum pattern.