|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/IR/InstrTypes.h 943 static bool isSigned(Predicate predicate);
References
include/llvm/IR/InstrTypes.h 903 return isSigned(getPredicate());
lib/Analysis/CmpInstAnalysis.cpp 61 return (CmpInst::isSigned(P1) == CmpInst::isSigned(P2)) ||
61 return (CmpInst::isSigned(P1) == CmpInst::isSigned(P2)) ||
62 (CmpInst::isSigned(P1) && ICmpInst::isEquality(P2)) ||
63 (CmpInst::isSigned(P2) && ICmpInst::isEquality(P1));
lib/Analysis/InstructionSimplify.cpp 2683 (CmpInst::isSigned(Pred) &&
2693 (CmpInst::isSigned(Pred) &&
2937 if (ICmpInst::isSigned(Pred) || !Q.IIQ.isExact(LBO) ||
2964 if (!NSW && ICmpInst::isSigned(Pred))
lib/Analysis/ScalarEvolution.cpp 9346 if (CmpInst::isSigned(Pred))
9720 if (CmpInst::isSigned(Pred)) {
9729 if (CmpInst::isSigned(FoundPred)) {
9799 APInt Min = ICmpInst::isSigned(Pred) ?
10167 SCEV::NoWrapFlags NW = ICmpInst::isSigned(Pred) ?
lib/CodeGen/GlobalISel/LegalizerHelper.cpp 1741 unsigned ExtOpcode = CmpInst::isSigned(static_cast<CmpInst::Predicate>(
lib/IR/ConstantFold.cpp 2009 CmpInst::isSigned((CmpInst::Predicate)pred))) {
2093 ICmpInst::isSigned((ICmpInst::Predicate)pred)) ||
2095 !ICmpInst::isSigned((ICmpInst::Predicate)pred))){
lib/Target/AMDGPU/SIISelLowering.cpp 4199 unsigned PromoteOp = ICmpInst::isSigned(IcInput) ?
lib/Transforms/InstCombine/InstCombineAndOrXor.cpp 1270 if (CmpInst::isSigned(PredL) ||
1271 (ICmpInst::isEquality(PredL) && CmpInst::isSigned(PredR)))
2362 if (CmpInst::isSigned(PredL) ||
2363 (ICmpInst::isEquality(PredL) && CmpInst::isSigned(PredR)))
lib/Transforms/InstCombine/InstCombineCalls.cpp 3773 if (CmpInst::isSigned(SrcPred)) {
lib/Transforms/InstCombine/InstCombineCompares.cpp 77 if (!ICmpInst::isSigned(Pred))
852 if (ICmpInst::isSigned(Cond))
3695 (CmpInst::isSigned(Pred) && BO0->hasNoSignedWrap());
3700 (CmpInst::isSigned(Pred) && BO1->hasNoSignedWrap());
3888 if (NoOp0WrapProblem && ICmpInst::isSigned(Pred)) {
5158 bool IsSigned = ICmpInst::isSigned(Pred);
lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp 664 bool IsSigned = ICmpInst::isSigned(Pred);
712 bool IsSigned = ICmpInst::isSigned(Pred);
916 IsSignedPredicate = ICmpInst::isSigned(Pred);
lib/Transforms/Utils/SimplifyIndVar.cpp 274 } else if (ICmpInst::isSigned(OriginalPred) &&