Home
last modified time | relevance | path

Searched refs:TM_ForcedByUser (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DWarnMissedTransforms.cpp27 if (hasUnrollTransformation(L) == TM_ForcedByUser) { in warnAboutLeftoverTransformations()
38 if (hasUnrollAndJamTransformation(L) == TM_ForcedByUser) { in warnAboutLeftoverTransformations()
49 if (hasVectorizeTransformation(L) == TM_ForcedByUser) { in warnAboutLeftoverTransformations()
74 if (hasDistributeTransformation(L) == TM_ForcedByUser) { in warnAboutLeftoverTransformations()
H A DLoopRotation.cpp54 hasVectorizeTransformation(&L) == TM_ForcedByUser in run()
134 int Threshold = hasVectorizeTransformation(L) == TM_ForcedByUser in runOnLoop()
H A DLoopUnrollAndJamPass.cpp297 if (EnableMode & TM_ForcedByUser) in tryToUnrollAndJamLoop()
H A DLoopUnrollPass.cpp222 (hasUnrollTransformation(L) != TM_ForcedByUser && in gatherUnrollingPreferences()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp367 return Count.getValue() == 1 ? TM_SuppressedByUser : TM_ForcedByUser; in hasUnrollTransformation()
370 return TM_ForcedByUser; in hasUnrollTransformation()
373 return TM_ForcedByUser; in hasUnrollTransformation()
388 return Count.getValue() == 1 ? TM_SuppressedByUser : TM_ForcedByUser; in hasUnrollAndJamTransformation()
391 return TM_ForcedByUser; in hasUnrollAndJamTransformation()
421 return TM_ForcedByUser; in hasVectorizeTransformation()
437 return TM_ForcedByUser; in hasDistributeTransformation()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h273 TM_ForcedByUser = TM_Enable | TM_Force, enumerator