Home
last modified time | relevance | path

Searched refs:BO_Mul (Results 1 – 19 of 19) 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.cpp143 state, BO_Mul, ArrayLength, EleSizeVal.castAs<NonLoc>(), SizeTy); in checkPreStmt()
DArrayBoundCheckerV2.cpp245 return sb.evalBinOpNN(state, BO_Mul, baseVal, in scaleValue()
DMallocChecker.cpp1684 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.h2986 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/
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/Analysis/
DThreadSafetyCommon.cpp313 case BO_Mul: return translateBinOp(til::BOP_Mul, BO, Ctx); in translateBinaryOperator()
DCFG.cpp768 case BO_Mul: in tryEvaluateBool()
/external/clang/lib/AST/
DStmtProfile.cpp684 BinaryOp = BO_Mul; in DecodeOperatorCall()
DExpr.cpp1735 case BO_Mul: return "*"; in getOpcodeStr()
1776 case OO_Star: return BO_Mul; in getOverloadedOpcode()
DExprConstant.cpp1633 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/
DCGExprScalar.cpp873 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/
DSemaExpr.cpp5965 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()
DSemaChecking.cpp5203 case BO_Mul: in GetExprRange()