Home
last modified time | relevance | path

Searched refs:BO_Mul (Results 1 – 22 of 22) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DMallocOverflowSecurityChecker.cpp76 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()
DVLASizeChecker.cpp165 state, BO_Mul, ArrayLength, EleSizeVal.castAs<NonLoc>(), SizeTy); in checkPreStmt()
DArrayBoundCheckerV2.cpp234 return sb.evalBinOpNN(state, BO_Mul, baseVal, in scaleValue()
DMallocChecker.cpp1993 SVal TotalSize = svalBuilder.evalBinOp(State, BO_Mul, count, elementSize, in CallocMem()
/external/clang/include/clang/AST/
DOperationKinds.h310 BO_Mul, BO_Div, BO_Rem, // [C99 6.5.5] Multiplicative operators. enumerator
DStmtVisitor.h48 case BO_Mul: DISPATCH(BinMul, BinaryOperator); in Visit()
DExpr.h2990 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/
DSimpleConstraintManager.cpp40 case BO_Mul: in canReasonAbout()
DBasicValueFactory.cpp153 case BO_Mul: in evalAPSInt()
DSimpleSValBuilder.cpp220 case BO_Mul: in MakeSymIntVal()
405 case BO_Mul: in evalBinOpNN()
DExprEngineC.cpp109 case BO_MulAssign: Op = BO_Mul; break; in VisitBinaryOperator()
/external/clang/lib/Sema/
DSemaOpenMP.cpp2579 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()
DSemaTemplateVariadic.cpp1013 case BO_Mul: in BuildEmptyCXXFoldExpr()
DSemaExpr.cpp6350 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()
DSemaChecking.cpp5905 case BO_Mul: in GetExprRange()
/external/clang/lib/Analysis/
DThreadSafetyCommon.cpp511 case BO_Mul: return translateBinOp(til::BOP_Mul, BO, Ctx); in translateBinaryOperator()
DCFG.cpp838 case BO_Mul: in tryEvaluateBool()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp954 case BO_Mul: CheckName = "mul_overflow"; break; in EmitBinOpCheck()
2331 case BO_Mul: in EmitOverflowCheckedBinOp()
3539 case BO_Mul: in EmitCompoundAssignmentLValue()
DCGStmtOpenMP.cpp1521 case BO_Mul: in emitOMPAtomicRMW()
/external/clang/lib/AST/
DStmtProfile.cpp822 BinaryOp = BO_Mul; in DecodeOperatorCall()
DExpr.cpp1785 case BO_Mul: return "*"; in getOpcodeStr()
1826 case OO_Star: return BO_Mul; in getOverloadedOpcode()
DExprConstant.cpp1650 case BO_Mul: in handleIntIntBinOp()
1749 case BO_Mul: in handleFloatFloatBinOp()
8046 case BO_Mul: in VisitBinaryOperator()
8868 case BO_Mul: in CheckICE()