Home
last modified time | relevance | path

Searched refs:umul_ov (Results 1 – 8 of 8) sorted by relevance

/external/llvm/include/llvm/ADT/
DAPInt.h955 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp86 Product = C1.umul_ov(C2, Overflow); in MultiplyOverflows()
/external/llvm/lib/Analysis/
DConstantFolding.cpp1739 Res = Op1->getValue().umul_ov(Op2->getValue(), Overflow); in ConstantFoldScalarCall()
DValueTracking.cpp3576 LHSMax.umul_ov(RHSMax, MaxOverflow); in computeOverflowForUnsignedMul()
3583 LHSKnownOne.umul_ov(RHSKnownOne, MinOverflow); in computeOverflowForUnsignedMul()
DScalarEvolution.cpp2344 static uint64_t umul_ov(uint64_t i, uint64_t j, bool &Overflow) { in umul_ov() function
2370 r = umul_ov(r, n-(i-1), Overflow); in Choose()
2585 Coeff = umul_ov(Coeff1, Coeff2, Overflow); in getMulExpr()
DInstructionSimplify.cpp1058 C1->getValue().umul_ov(C2->getValue(), Overflow); in SimplifyDiv()
/external/clang/lib/CodeGen/
DCGExprCXX.cpp632 = adjustedCount.umul_ov(typeSizeMultiplier, overflow); in EmitCXXNewAllocSize()
/external/llvm/lib/Support/
DAPInt.cpp2047 APInt APInt::umul_ov(const APInt &RHS, bool &Overflow) const { in umul_ov() function in APInt