Lines Matching refs:IsSigned
141 bool IsSigned = true; member in __anon72252c870111::InductiveRangeCheck
145 bool &IsSigned);
156 bool isSigned() const { return IsSigned; } in isSigned()
193 bool isEmpty(ScalarEvolution &SE, bool IsSigned) const { in isEmpty()
196 if (IsSigned) in isEmpty()
274 Value *&Length, bool &IsSigned) { in INITIALIZE_PASS_DEPENDENCY()
291 IsSigned = true; in INITIALIZE_PASS_DEPENDENCY()
302 IsSigned = true; in INITIALIZE_PASS_DEPENDENCY()
319 IsSigned = false; in INITIALIZE_PASS_DEPENDENCY()
353 bool IsSigned; in extractRangeChecksFromCond() local
354 if (!parseRangeCheckICmp(L, ICI, SE, Index, Length, IsSigned)) in extractRangeChecksFromCond()
383 IRC.IsSigned = IsSigned; in extractRangeChecksFromCond()
673 bool IsSigned = ICmpInst::isSigned(Pred); in isSafeDecreasingBound() local
677 IsSigned ? CmpInst::ICMP_SGT : CmpInst::ICMP_UGT; in isSafeDecreasingBound()
687 APInt Min = IsSigned ? APInt::getSignedMinValue(BitWidth) : in isSafeDecreasingBound()
721 bool IsSigned = ICmpInst::isSigned(Pred); in isSafeIncreasingBound() local
725 IsSigned ? CmpInst::ICMP_SLT : CmpInst::ICMP_ULT; in isSafeIncreasingBound()
735 APInt Max = IsSigned ? APInt::getSignedMaxValue(BitWidth) : in isSafeIncreasingBound()