Home
last modified time | relevance | path

Searched refs:usub_ov (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp649 (void)LHS.getMinValue().usub_ov(RHS.getMaxValue(), Of); in computeForSatAddSub()
653 (void)LHS.getMaxValue().usub_ov(RHS.getMinValue(), Of); in computeForSatAddSub()
H A DAPFixedPoint.cpp226 : ThisVal.usub_ov(OtherVal, Overflowed); in sub()
H A DAPInt.cpp1918 APInt APInt::usub_ov(const APInt &RHS, bool &Overflow) const { in usub_ov() function in APInt
2027 APInt Res = usub_ov(RHS, Overflow); in usub_sat()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp727 : LHS.usub_ov(RHS, Overflow); in interp__builtin_overflowop()
810 LHS.usub_ov(RHS, FirstOverflowed).usub_ov(CarryIn, SecondOverflowed); in interp__builtin_carryop()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h993 APInt usub_ov(const APInt &RHS, bool &Overflow) const;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp2865 Res = C0->usub_ov(*C1, Overflow); in ConstantFoldIntrinsicCall2()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp63 Result = In1.usub_ov(In2, Overflow); in subWithOverflow()
3070 Cmp.isSigned() ? C.ssub_ov(*C2, Overflow) : C.usub_ov(*C2, Overflow); in foldICmpAddConstant()
H A DInstCombineCalls.cpp1112 IsSigned ? C1->ssub_ov(*C0, Overflow) : C1->usub_ov(*C0, Overflow); in moveAddAfterMinMax()
H A DInstCombineAndOrXor.cpp3925 : C2->usub_ov(*C1, Overflow)) in visitOr()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp13037 LHS.usub_ov(RHS, FirstOverflowed).usub_ov(CarryIn, SecondOverflowed); in VisitBuiltinCallExpr()
13129 : LHS.usub_ov(RHS, DidOverflow); in VisitBuiltinCallExpr()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp79 : LHSAP.usub_ov(RHSAP, Overflow); in mayHaveIntegerOverflow()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp5376 IsSigned ? Y.ssub_ov(X, Overflow) : Y.usub_ov(X, Overflow); in optimizeIncrementingWhile()