Home
last modified time | relevance | path

Searched refs:AllowRemainder (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopUnrollAndJamPass.cpp190 if (UP.AllowRemainder && in computeUnrollAndJamCount()
203 if ((UP.AllowRemainder || (OuterTripMultiple % PragmaCount == 0)) && in computeUnrollAndJamCount()
219 if (!UP.AllowRemainder && getUnrollAndJammedLoopSize(InnerLoopSize, UP) >= in computeUnrollAndJamCount()
230 if (!ExplicitUnrollAndJamCount && UP.AllowRemainder) { in computeUnrollAndJamCount()
H A DLoopUnrollPass.cpp207 UP.AllowRemainder = true; in gatherUnrollingPreferences()
245 UP.AllowRemainder = UnrollAllowRemainder; in gatherUnrollingPreferences()
779 if (UP.AllowRemainder && UCE.getUnrolledLoopSize(UP) < UP.Threshold) in computeUnrollCount()
790 if ((UP.AllowRemainder || (TripMultiple % PragmaCount == 0)) && in computeUnrollCount()
901 if (UP.AllowRemainder && UP.Count <= 1) { in computeUnrollCount()
999 if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) { in computeUnrollCount()
1012 if (PragmaCount > 0 && !UP.AllowRemainder) in computeUnrollCount()
1136 UP.AllowRemainder = false; in tryToUnrollLoop()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h482 bool AllowRemainder; member