/external/llvm-project/llvm/include/llvm/Support/ |
D | CheckedArithmetic.h | 96 return checkedOp(LHS, RHS, &llvm::APInt::umul_ov, /*Signed=*/false); in checkedMulUnsigned()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | CheckedArithmetic.h | 96 return checkedOp(LHS, RHS, &llvm::APInt::umul_ov, /*Signed=*/false); in checkedMulUnsigned()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 647 Size = Size.umul_ov(NumElems, Overflow); in visitAllocaInst() 711 Size = Size.umul_ov(NumElems, Overflow); in visitCallSite()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 671 Size = Size.umul_ov(NumElems, Overflow); in visitAllocaInst() 736 Size = Size.umul_ov(NumElems, Overflow); in visitCallBase()
|
/external/llvm-project/llvm/lib/Support/ |
D | APFixedPoint.cpp | 255 Result = ThisVal.umul_ov(OtherVal, Overflowed) in mul()
|
D | APInt.cpp | 1997 APInt APInt::umul_ov(const APInt &RHS, bool &Overflow) const { in umul_ov() function in APInt 2090 APInt Res = umul_ov(RHS, Overflow); in umul_sat()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ConstantRange.cpp | 1531 (void) Min.umul_ov(OtherMin, Overflow); in unsignedMulMayOverflow() 1535 (void) Max.umul_ov(OtherMax, Overflow); in unsignedMulMayOverflow()
|
/external/llvm-project/llvm/lib/IR/ |
D | ConstantRange.cpp | 1644 (void) Min.umul_ov(OtherMin, Overflow); in unsignedMulMayOverflow() 1648 (void) Max.umul_ov(OtherMax, Overflow); in unsignedMulMayOverflow()
|
/external/llvm-project/llvm/unittests/ADT/ |
D | APIntTest.cpp | 2699 TEST(APIntTest, umul_ov) { in TEST() argument 2716 (void)A.umul_ov(B, Overflow); in TEST() 2722 (void)A.umul_ov(B, Overflow); in TEST() 2729 APInt C = APInt(Bits, A).umul_ov(APInt(Bits, B), Overflow); in TEST()
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 960 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
|
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 540 Size = Size.umul_ov(NumElems, Overflow); in visitCallSite()
|
D | ValueTracking.cpp | 3311 LHSMax.umul_ov(RHSMax, MaxOverflow); in computeOverflowForUnsignedMul() 3318 LHSKnownOne.umul_ov(RHSKnownOne, MinOverflow); in computeOverflowForUnsignedMul()
|
D | ConstantFolding.cpp | 1793 Res = Op1->getValue().umul_ov(Op2->getValue(), Overflow); in ConstantFoldScalarCall()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APInt.h | 936 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | APInt.h | 1120 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 1120 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 1998 APInt APInt::umul_ov(const APInt &RHS, bool &Overflow) const { in umul_ov() function in APInt 2091 APInt Res = umul_ov(RHS, Overflow); in umul_sat()
|
/external/llvm-project/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 1791 (void) N1.umul_ov(N2, Overflow); in TEST() 2158 (void) N1.umul_ov(N2, Overflow); in TEST_F()
|
/external/llvm-project/llvm/test/Transforms/EarlyCSE/ |
D | commute.ll | 907 define <2 x i31> @umul_ov(<2 x i31> %a, <2 x i31> %b) { 908 ; CHECK-LABEL: @umul_ov(
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 86 Product = C1.umul_ov(C2, Overflow); in MultiplyOverflows()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 650 Product = IsSigned ? C1.smul_ov(C2, Overflow) : C1.umul_ov(C2, Overflow); in multiplyOverflows()
|
D | InstCombineAddSub.cpp | 1021 (void)C0.umul_ov(C1, overflow); in MulWillOverflow()
|
/external/llvm-project/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 679 Product = IsSigned ? C1.smul_ov(C2, Overflow) : C1.umul_ov(C2, Overflow); in multiplyOverflows()
|
/external/clang/lib/CodeGen/ |
D | CGExprCXX.cpp | 637 = adjustedCount.umul_ov(typeSizeMultiplier, overflow); in EmitCXXNewAllocSize()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGExprCXX.cpp | 782 = adjustedCount.umul_ov(typeSizeMultiplier, overflow); in EmitCXXNewAllocSize()
|