reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/IR/PatternMatch.h
   48   return const_cast<Pattern &>(P).match(V);
   57     return V->hasOneUse() && SubPattern.match(V);
  133     if (L.match(V))
 1281       return O->getOpcode() == Opcode && Op.match(O->getOperand(0));
unittests/IR/PatternMatch.cpp
  868   EXPECT_TRUE(m_Load(m_Value(MatchLoad)).match(LoadInst));
  871   EXPECT_TRUE(m_Load(m_Specific(Alloca)).match(LoadInst));
  873   EXPECT_FALSE(m_Load(m_Value(MatchLoad)).match(Alloca));