Searched refs:BO_Mul (Results 1 – 19 of 19) 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 | 143 state, BO_Mul, ArrayLength, EleSizeVal.castAs<NonLoc>(), SizeTy); in checkPreStmt()
|
D | ArrayBoundCheckerV2.cpp | 245 return sb.evalBinOpNN(state, BO_Mul, baseVal, in scaleValue()
|
D | MallocChecker.cpp | 1684 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 | 2986 bool isMultiplicativeOp() const { return Opc >= BO_Mul && Opc <= BO_Rem; } in isMultiplicativeOp() 3050 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/Analysis/ |
D | ThreadSafetyCommon.cpp | 313 case BO_Mul: return translateBinOp(til::BOP_Mul, BO, Ctx); in translateBinaryOperator()
|
D | CFG.cpp | 768 case BO_Mul: in tryEvaluateBool()
|
/external/clang/lib/AST/ |
D | StmtProfile.cpp | 684 BinaryOp = BO_Mul; in DecodeOperatorCall()
|
D | Expr.cpp | 1735 case BO_Mul: return "*"; in getOpcodeStr() 1776 case OO_Star: return BO_Mul; in getOverloadedOpcode()
|
D | ExprConstant.cpp | 1633 case BO_Mul: in handleIntIntBinOp() 1732 case BO_Mul: in handleFloatFloatBinOp() 7764 case BO_Mul: in VisitBinaryOperator() 8499 case BO_Mul: in CheckICE()
|
/external/clang/lib/CodeGen/ |
D | CGExprScalar.cpp | 873 case BO_Mul: CheckName = "mul_overflow"; break; in EmitBinOpCheck() 2214 case BO_Mul: in EmitOverflowCheckedBinOp() 3373 case BO_Mul: in EmitCompoundAssignmentLValue()
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 5965 return Opc >= BO_Mul && Opc <= BO_Shr; in IsArithmeticOp() 9174 case tok::star: Opc = BO_Mul; break; in ConvertTokenKindToBinaryOpcode() 9353 case BO_Mul: in CreateBuiltinBinOp()
|
D | SemaChecking.cpp | 5203 case BO_Mul: in GetExprRange()
|