Home | History | Annotate | Download | only in Checkers

Lines Matching refs:BinaryOperator

70   : public Checker<check::PreStmt<BinaryOperator>,
71 check::PostStmt<BinaryOperator>,
74 void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
75 void checkPostStmt(const BinaryOperator *B, CheckerContext &C) const;
105 // BinaryOperator
107 typedef llvm::DenseMap<const BinaryOperator *, BinaryOperatorData>
114 void IdempotentOperationChecker::checkPreStmt(const BinaryOperator *B,
116 // Find or create an entry in the hash for this BinaryOperator instance.
157 BinaryOperator::Opcode Op = B->getOpcode();
328 // BinaryOperator that was just created. We use this hook to collect the
330 void IdempotentOperationChecker::checkPostStmt(const BinaryOperator *B,
339 if (!isa<BinaryOperator>(predStmt))
365 const BinaryOperator *B = i->first;
670 const BinaryOperator *B = cast<const BinaryOperator>(Ex);