Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp701 unsigned BEInsns = 2; in computeUnrollCount() local
710 (LoopSize - BEInsns) * UP.Count + BEInsns < UP.Threshold) in computeUnrollCount()
722 (LoopSize - BEInsns) * UP.Count + BEInsns < PragmaUnrollThreshold) in computeUnrollCount()
728 if ((LoopSize - BEInsns) * UP.Count + BEInsns < PragmaUnrollThreshold) in computeUnrollCount()
756 UnrolledSize = (uint64_t)(LoopSize - BEInsns) * TripCount + BEInsns; in computeUnrollCount()
792 UnrolledSize = (uint64_t)(LoopSize - BEInsns) * UP.Count + BEInsns; in computeUnrollCount()
794 UP.Count = (std::max(UP.PartialThreshold, 3u) - BEInsns) / in computeUnrollCount()
795 (LoopSize - BEInsns); in computeUnrollCount()
806 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns; in computeUnrollCount()
809 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns; in computeUnrollCount()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopUnrollAndJamPass.cpp148 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!"); in getUnrollAndJammedLoopSize()
149 return static_cast<uint64_t>(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns; in getUnrollAndJammedLoopSize()
339 Convergent, TTI, EphValues, UP.BEInsns); in tryToUnrollAndJamLoop()
342 TTI, EphValues, UP.BEInsns); in tryToUnrollAndJamLoop()
DLoopUnrollPass.cpp198 UP.BEInsns = 2; in gatherUnrollingPreferences()
644 const SmallPtrSetImpl<const Value *> &EphValues, unsigned BEInsns) { in ApproximateLoopSize() argument
660 LoopSize = std::max(LoopSize, BEInsns + 1); in ApproximateLoopSize()
726 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!"); in getUnrolledLoopSize()
727 return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns; in getUnrolledLoopSize()
867 (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) / in computeUnrollCount()
868 (LoopSize - UP.BEInsns); in computeUnrollCount()
1062 TTI, EphValues, UP.BEInsns); in tryToUnrollLoop()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DUnrollLoop.h143 unsigned BEInsns);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfo.h473 unsigned BEInsns; member
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h503 UP.BEInsns = 2; in getUnrollingPreferences()