Lines Matching defs:UnrollLevel
646 unsigned UnrollLevel, unsigned JamLevel,
648 // UnrollLevel might carry the dependency Src --> Dst
650 for (unsigned CurLoopDepth = UnrollLevel + 1; CurLoopDepth <= JamLevel;
664 unsigned UnrollLevel, unsigned JamLevel,
666 // UnrollLevel might carry the dependency Dst --> Src
667 for (unsigned CurLoopDepth = UnrollLevel + 1; CurLoopDepth <= JamLevel;
684 // @param UnrollLevel The level of the loop being unrolled
690 unsigned UnrollLevel, unsigned JamLevel,
692 assert(UnrollLevel <= JamLevel &&
693 "Expecting JamLevel to be at least UnrollLevel");
727 for (unsigned CurLoopDepth = 1; CurLoopDepth < UnrollLevel; ++CurLoopDepth)
731 auto UnrollDirection = D->getDirection(UnrollLevel);
740 !preservesForwardDependence(Src, Dst, UnrollLevel, JamLevel,
745 !preservesBackwardDependence(Src, Dst, UnrollLevel, JamLevel,