Home | History | Annotate | Download | only in Checkers

Lines Matching refs:BinaryOperator

69   : public Checker<check::PreStmt<BinaryOperator>,
70 check::PostStmt<BinaryOperator>,
73 void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
74 void checkPostStmt(const BinaryOperator *B, CheckerContext &C) const;
104 // BinaryOperator
106 typedef llvm::DenseMap<const BinaryOperator *, BinaryOperatorData>
113 void IdempotentOperationChecker::checkPreStmt(const BinaryOperator *B,
115 // Find or create an entry in the hash for this BinaryOperator instance.
156 BinaryOperator::Opcode Op = B->getOpcode();
327 // BinaryOperator that was just created. We use this hook to collect the
329 void IdempotentOperationChecker::checkPostStmt(const BinaryOperator *B,
338 if (!isa<BinaryOperator>(predStmt))
364 const BinaryOperator *B = i->first;
672 const BinaryOperator *B = cast<const BinaryOperator>(Ex);