Home
last modified time | relevance | path

Searched refs:SubOverflow (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DSanitizerHandler.h38 SANITIZER_CHECK(SubOverflow, sub_overflow, 0) \
H A DCGExprScalar.cpp1844 case BO_Sub: Check = SanitizerHandler::SubOverflow; break; in EmitBinOpCheck()
4093 OverflowKind = SanitizerHandler::SubOverflow; in EmitOverflowCheckedBinOp()
H A DCGBuiltin.cpp2073 CheckHandler = SanitizerHandler::SubOverflow; in EmitOverflowCheckedAbs()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DConstraintSystem.h141 if (SubOverflow(R[0], int64_t(1), R[0])) { in toStrictLessThan()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DInstructionCost.h122 if (SubOverflow(Value, RHS.Value, Result))
H A DMathExtras.h736 std::enable_if_t<std::is_signed_v<T>, T> SubOverflow(T X, T Y, T &Result) { in SubOverflow() function
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSequence.h89 #include "llvm/Support/MathExtras.h" // AddOverflow / SubOverflow
159 if (SubOverflow(Value, Other.Value, Result))
H A DDynamicAPInt.h322 bool Overflow = SubOverflow(getSmall(), O.getSmall(), Result.getSmall());
462 bool Overflow = SubOverflow(getSmall(), O.getSmall(), Result);
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DIntegral.h311 return llvm::SubOverflow<T>(A, B, R);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstraintElimination.cpp768 if (SubOverflow(Coeff, KV.Coefficient, Coeff)) in getConstraint()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td4371 def SubOverflow : Builtin {