Lines Matching defs:UnrollLevel
647 unsigned UnrollLevel, unsigned JamLevel,
649 // UnrollLevel might carry the dependency Src --> Dst
651 for (unsigned CurLoopDepth = UnrollLevel + 1; CurLoopDepth <= JamLevel;
665 unsigned UnrollLevel, unsigned JamLevel,
667 // UnrollLevel might carry the dependency Dst --> Src
668 for (unsigned CurLoopDepth = UnrollLevel + 1; CurLoopDepth <= JamLevel;
685 // @param UnrollLevel The level of the loop being unrolled
691 unsigned UnrollLevel, unsigned JamLevel,
693 assert(UnrollLevel <= JamLevel &&
694 "Expecting JamLevel to be at least UnrollLevel");
728 for (unsigned CurLoopDepth = 1; CurLoopDepth < UnrollLevel; ++CurLoopDepth)
732 auto UnrollDirection = D->getDirection(UnrollLevel);
741 !preservesForwardDependence(Src, Dst, UnrollLevel, JamLevel,
746 !preservesBackwardDependence(Src, Dst, UnrollLevel, JamLevel,