HomeSort by relevance Sort by last modified time
    Searched refs:BinaryOperator (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/llvm/include/llvm/Support/
NoFolder.h 42 BinaryOperator *BO = BinaryOperator::CreateAdd(LHS, RHS);
48 return BinaryOperator::CreateNSWAdd(LHS, RHS);
51 return BinaryOperator::CreateNUWAdd(LHS, RHS);
54 return BinaryOperator::CreateFAdd(LHS, RHS);
58 BinaryOperator *BO = BinaryOperator::CreateSub(LHS, RHS);
64 return BinaryOperator::CreateNSWSub(LHS, RHS);
67 return BinaryOperator::CreateNUWSub(LHS, RHS);
70 return BinaryOperator::CreateFSub(LHS, RHS)
    [all...]
  /external/clang/include/clang/AST/
StmtVisitor.h 43 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
45 case BO_PtrMemD: DISPATCH(BinPtrMemD, BinaryOperator);
46 case BO_PtrMemI: DISPATCH(BinPtrMemI, BinaryOperator);
47 case BO_Mul: DISPATCH(BinMul, BinaryOperator);
48 case BO_Div: DISPATCH(BinDiv, BinaryOperator);
49 case BO_Rem: DISPATCH(BinRem, BinaryOperator);
50 case BO_Add: DISPATCH(BinAdd, BinaryOperator);
51 case BO_Sub: DISPATCH(BinSub, BinaryOperator);
52 case BO_Shl: DISPATCH(BinShl, BinaryOperator);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefResultChecker.cpp 28 : public Checker< check::PostStmt<BinaryOperator> > {
33 void checkPostStmt(const BinaryOperator *B, CheckerContext &C) const;
37 void UndefResultChecker::checkPostStmt(const BinaryOperator *B,
67 << BinaryOperator::getOpcodeStr(B->getOpcode())
73 << BinaryOperator::getOpcodeStr(B->getOpcode())
FixedAddressChecker.cpp 27 : public Checker< check::PreStmt<BinaryOperator> > {
31 void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
35 void FixedAddressChecker::checkPreStmt(const BinaryOperator *B,
DivZeroChecker.cpp 25 class DivZeroChecker : public Checker< check::PreStmt<BinaryOperator> > {
31 void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
48 void DivZeroChecker::checkPreStmt(const BinaryOperator *B,
50 BinaryOperator::Opcode Op = B->getOpcode();
PointerArithChecker.cpp 26 : public Checker< check::PreStmt<BinaryOperator> > {
30 void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
34 void PointerArithChecker::checkPreStmt(const BinaryOperator *B,
PointerSubChecker.cpp 27 : public Checker< check::PreStmt<BinaryOperator> > {
31 void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
35 void PointerSubChecker::checkPreStmt(const BinaryOperator *B,
UndefinedAssignmentChecker.cpp 55 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(StoreE)) {
MallocOverflowSecurityChecker.cpp 33 const BinaryOperator *mulop;
36 MallocOverflowCheck (const BinaryOperator *m, const Expr *v)
68 const BinaryOperator * mulop = NULL;
72 if (isa<BinaryOperator>(e)) {
73 const BinaryOperator * binop = dyn_cast<BinaryOperator>(e);
159 void VisitBinaryOperator(BinaryOperator *E) {