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);
  745       return (L.match(I->getOperand(0)) && R.match(I->getOperand(1))) ||
  745       return (L.match(I->getOperand(0)) && R.match(I->getOperand(1))) ||
  746              (Commutable && L.match(I->getOperand(1)) &&
  747               R.match(I->getOperand(0)));
  751              ((L.match(CE->getOperand(0)) && R.match(CE->getOperand(1))) ||
  751              ((L.match(CE->getOperand(0)) && R.match(CE->getOperand(1))) ||
  752               (Commutable && L.match(CE->getOperand(1)) &&
  753                R.match(CE->getOperand(0))));
  928       return L.match(Op->getOperand(0)) && R.match(Op->getOperand(1));
 1013              R.match(I->getOperand(1));
 1016              R.match(CE->getOperand(1));
 1134       if ((L.match(I->getOperand(0)) && R.match(I->getOperand(1))) ||
 1136            R.match(I->getOperand(0)))) {
 1210       return Op1.match(I->getOperand(0)) && Op2.match(I->getOperand(1)) &&
 1211              Op3.match(I->getOperand(2));
 1462     return (L.match(LHS) && R.match(RHS)) ||
 1463            (Commutable && L.match(RHS) && R.match(LHS));