|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/IR/IntrinsicInst.h 329 bool isSigned() const;
References
lib/Analysis/ScalarEvolution.cpp 4555 bool Signed = WO->isSigned();
lib/IR/IntrinsicInst.cpp 260 if (isSigned())
lib/Transforms/InstCombine/InstCombineCalls.cpp 1773 if (OptimizeOverflowCheck(WO->getBinaryOp(), WO->isSigned(), WO->getLHS(),
2086 OverflowResult OR = computeOverflow(SI->getBinaryOp(), SI->isSigned(),
2092 if (SI->isSigned())
2098 APInt Min = APSInt::getMinValue(BitWidth, !SI->isSigned());
2103 APInt Max = APSInt::getMaxValue(BitWidth, !SI->isSigned());
lib/Transforms/Scalar/CorrelatedValuePropagation.cpp 497 bool NSW = WO->isSigned();
498 bool NUW = !WO->isSigned();
520 bool NSW = SI->isSigned();
521 bool NUW = !SI->isSigned();
lib/Transforms/Utils/SimplifyIndVar.cpp 444 if (!willNotOverflow(SE, WO->getBinaryOp(), WO->isSigned(), LHS, RHS))
453 if (WO->isSigned())
484 if (!willNotOverflow(SE, SI->getBinaryOp(), SI->isSigned(), LHS, RHS))
489 if (SI->isSigned())