Searched refs:umul_ov (Results 1 – 8 of 8) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 955 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 86 Product = C1.umul_ov(C2, Overflow); in MultiplyOverflows()
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 1739 Res = Op1->getValue().umul_ov(Op2->getValue(), Overflow); in ConstantFoldScalarCall()
|
D | ValueTracking.cpp | 3576 LHSMax.umul_ov(RHSMax, MaxOverflow); in computeOverflowForUnsignedMul() 3583 LHSKnownOne.umul_ov(RHSKnownOne, MinOverflow); in computeOverflowForUnsignedMul()
|
D | ScalarEvolution.cpp | 2344 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()
|
D | InstructionSimplify.cpp | 1058 C1->getValue().umul_ov(C2->getValue(), Overflow); in SimplifyDiv()
|
/external/clang/lib/CodeGen/ |
D | CGExprCXX.cpp | 632 = adjustedCount.umul_ov(typeSizeMultiplier, overflow); in EmitCXXNewAllocSize()
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 2047 APInt APInt::umul_ov(const APInt &RHS, bool &Overflow) const { in umul_ov() function in APInt
|