Searched refs:BO_Mul (Results 1 – 22 of 22) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocOverflowSecurityChecker.cpp | 76 if (mulop == nullptr && opc == BO_Mul) in CheckMallocArgument() 78 if (opc != BO_Mul && opc != BO_Add && opc != BO_Sub && opc != BO_Shl) in CheckMallocArgument() 85 else if ((opc == BO_Add || opc == BO_Mul) in CheckMallocArgument()
|
D | VLASizeChecker.cpp | 165 state, BO_Mul, ArrayLength, EleSizeVal.castAs<NonLoc>(), SizeTy); in checkPreStmt()
|
D | ArrayBoundCheckerV2.cpp | 234 return sb.evalBinOpNN(state, BO_Mul, baseVal, in scaleValue()
|
D | MallocChecker.cpp | 1993 SVal TotalSize = svalBuilder.evalBinOp(State, BO_Mul, count, elementSize, in CallocMem()
|
/external/clang/include/clang/AST/ |
D | OperationKinds.h | 310 BO_Mul, BO_Div, BO_Rem, // [C99 6.5.5] Multiplicative operators. enumerator
|
D | StmtVisitor.h | 48 case BO_Mul: DISPATCH(BinMul, BinaryOperator); in Visit()
|
D | Expr.h | 2990 bool isMultiplicativeOp() const { return Opc >= BO_Mul && Opc <= BO_Rem; } in isMultiplicativeOp() 3054 return Opcode(unsigned(Opc) - BO_MulAssign + BO_Mul); in getOpForCompoundAssignment()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | SimpleConstraintManager.cpp | 40 case BO_Mul: in canReasonAbout()
|
D | BasicValueFactory.cpp | 153 case BO_Mul: in evalAPSInt()
|
D | SimpleSValBuilder.cpp | 220 case BO_Mul: in MakeSymIntVal() 405 case BO_Mul: in evalBinOpNN()
|
D | ExprEngineC.cpp | 109 case BO_MulAssign: Op = BO_Mul; break; in VisitBinaryOperator()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 2579 ExprResult Update = SemaRef.BuildBinOp(S, Loc, BO_Mul, Iter.get(), in BuildCounterUpdate() 2708 LastIteration32 = SemaRef.BuildBinOp(CurScope, SourceLocation(), BO_Mul, in CheckOpenMPLoop() 2711 LastIteration64 = SemaRef.BuildBinOp(CurScope, SourceLocation(), BO_Mul, in CheckOpenMPLoop() 2932 Div = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Mul, Div.get(), in CheckOpenMPLoop() 5241 BOK = BO_Mul; in ActOnOpenMPReductionClause() 5488 case BO_Mul: in ActOnOpenMPReductionClause()
|
D | SemaTemplateVariadic.cpp | 1013 case BO_Mul: in BuildEmptyCXXFoldExpr()
|
D | SemaExpr.cpp | 6350 return Opc >= BO_Mul && Opc <= BO_Shr; in IsArithmeticOp() 9832 case tok::star: Opc = BO_Mul; break; in ConvertTokenKindToBinaryOpcode() 10042 case BO_Mul: in CreateBuiltinBinOp()
|
D | SemaChecking.cpp | 5905 case BO_Mul: in GetExprRange()
|
/external/clang/lib/Analysis/ |
D | ThreadSafetyCommon.cpp | 511 case BO_Mul: return translateBinOp(til::BOP_Mul, BO, Ctx); in translateBinaryOperator()
|
D | CFG.cpp | 838 case BO_Mul: in tryEvaluateBool()
|
/external/clang/lib/CodeGen/ |
D | CGExprScalar.cpp | 954 case BO_Mul: CheckName = "mul_overflow"; break; in EmitBinOpCheck() 2331 case BO_Mul: in EmitOverflowCheckedBinOp() 3539 case BO_Mul: in EmitCompoundAssignmentLValue()
|
D | CGStmtOpenMP.cpp | 1521 case BO_Mul: in emitOMPAtomicRMW()
|
/external/clang/lib/AST/ |
D | StmtProfile.cpp | 822 BinaryOp = BO_Mul; in DecodeOperatorCall()
|
D | Expr.cpp | 1785 case BO_Mul: return "*"; in getOpcodeStr() 1826 case OO_Star: return BO_Mul; in getOverloadedOpcode()
|
D | ExprConstant.cpp | 1650 case BO_Mul: in handleIntIntBinOp() 1749 case BO_Mul: in handleFloatFloatBinOp() 8046 case BO_Mul: in VisitBinaryOperator() 8868 case BO_Mul: in CheckICE()
|