Searched refs:UnrollFactor (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaStmtAttr.cpp | 564 unsigned UnrollFactor = 0; in handleOpenCLUnrollHint() local 582 UnrollFactor = static_cast<unsigned>(Val); in handleOpenCLUnrollHint() 585 return ::new (S.Context) OpenCLUnrollHintAttr(S.Context, A, UnrollFactor); in handleOpenCLUnrollHint() 595 unsigned UnrollFactor = 0; in handleHLSLLoopHintAttr() local 616 UnrollFactor = static_cast<unsigned>(Val); in handleHLSLLoopHintAttr() 618 return ::new (S.Context) HLSLLoopHintAttr(S.Context, A, UnrollFactor); in handleHLSLLoopHintAttr()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopUnrollPass.cpp | 957 if (auto UnrollFactor = shouldPragmaUnroll(L, PInfo, TripMultiple, TripCount, in computeUnrollCount() local 959 UP.Count = *UnrollFactor; in computeUnrollCount() 983 if (auto UnrollFactor = shouldFullUnroll(L, TTI, DT, SE, EphValues, in computeUnrollCount() local 985 UP.Count = *UnrollFactor; in computeUnrollCount() 1006 if (auto UnrollFactor = shouldFullUnroll(L, TTI, DT, SE, EphValues, in computeUnrollCount() local 1008 UP.Count = *UnrollFactor; in computeUnrollCount() 1029 if (auto UnrollFactor = shouldPartialUnroll(LoopSize, TripCount, UCE, UP)) { in computeUnrollCount() local 1030 UP.Count = *UnrollFactor; in computeUnrollCount()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | ClauseT.h | 944 using UnrollFactor = E; 946 OPT(UnrollFactor) v;
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 477 unsigned UnrollFactor, LoopVectorizationLegality *LVL, in InnerLoopVectorizer() argument 481 AC(AC), ORE(ORE), VF(VecWidth), UF(UnrollFactor), in InnerLoopVectorizer() 717 OptimizationRemarkEmitter *ORE, unsigned UnrollFactor, in InnerLoopUnroller() argument 723 ElementCount::getFixed(1), UnrollFactor, LVL, CM, in InnerLoopUnroller()
|