reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/ADT/APInt.h
 1100   APInt usub_ov(const APInt &RHS, bool &Overflow) const;

References

lib/Analysis/ConstantFolding.cpp
 2168         Res = C0->usub_ov(*C1, Overflow);
lib/Support/APInt.cpp
 2044   APInt Res = usub_ov(RHS, Overflow);
lib/Transforms/InstCombine/InstCombineCompares.cpp
   58     Result = In1.usub_ov(In2, Overflow);
 2581         Cmp.isSigned() ? C.ssub_ov(*C2, Overflow) : C.usub_ov(*C2, Overflow);
tools/clang/lib/AST/ExprConstant.cpp
11030                               : LHS.usub_ov(RHS, DidOverflow);
tools/clang/lib/CodeGen/CGExprScalar.cpp
   71       Result = LHSAP.usub_ov(RHSAP, Overflow);
unittests/IR/ConstantRangeTest.cpp
 1425       (void)I.usub_ov(C, Overflow);
 1652         (void) N1.usub_ov(N2, Overflow);
 2020         (void) N1.usub_ov(N2, Overflow);