Lines Matching refs:IVBump
184 int64_t &IVBump, MachineInstr *&IVOp) const;
190 int64_t IVBump) const;
207 int64_t IVBump, Comparison::Kind Cmp) const;
406 int64_t &IVBump, in findInductionRegister() argument
504 IVBump = F->second.second; in findInductionRegister()
514 int64_t IVBump) const { in getComparisonKind()
599 int64_t IVBump = 0; in getLoopTripCount() local
601 bool FoundIV = findInductionRegister(L, IVReg, IVBump, IVOp); in getLoopTripCount()
693 Cmp = getComparisonKind(CondOpc, InitialValue, EndValue, IVBump); in getLoopTripCount()
722 return computeCount(L, InitialValue, EndValue, IVReg, IVBump, Cmp); in getLoopTripCount()
733 int64_t IVBump, in computeCount() argument
764 if (CmpLess && IVBump < 0) in computeCount()
768 if (CmpGreater && IVBump > 0) in computeCount()
790 bool Exact = (Dist % IVBump) == 0; in computeCount()
795 if ((Dist < 0) ^ (IVBump < 0)) in computeCount()
812 int64_t Dist1 = (IVBump > 0) ? (Dist + (IVBump - 1)) / IVBump in computeCount()
813 : (-Dist + (-IVBump - 1)) / (-IVBump); in computeCount()
830 if (!isPowerOf2_64(std::abs(IVBump))) in computeCount()
847 if (IVBump < 0) { in computeCount()
849 IVBump = -IVBump; in computeCount()
884 StartV -= (IVBump-1); in computeCount()
886 EndV += (IVBump-1); in computeCount()
888 AdjV += (IVBump-1); in computeCount()
975 if (IVBump == 1) { in computeCount()
980 unsigned Shift = Log2_32(IVBump); in computeCount()