HomeSort by relevance Sort by last modified time
    Searched refs:BEInsns (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 697 // BEInsns represents number of instructions optimized when "back edge"
701 unsigned BEInsns = 2;
710 (LoopSize - BEInsns) * UP.Count + BEInsns < UP.Threshold)
722 (LoopSize - BEInsns) * UP.Count + BEInsns < PragmaUnrollThreshold)
728 if ((LoopSize - BEInsns) * UP.Count + BEInsns < PragmaUnrollThreshold)
754 // When computing the unrolled size, note that BEInsns are not replicated
756 UnrolledSize = (uint64_t)(LoopSize - BEInsns) * TripCount + BEInsns
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LoopUnrollAndJamPass.cpp 139 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
140 return static_cast<uint64_t>(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
311 Convergent, TTI, EphValues, UP.BEInsns);
314 TTI, EphValues, UP.BEInsns);
LoopUnrollPass.cpp 186 UP.BEInsns = 2;
623 const SmallPtrSetImpl<const Value *> &EphValues, unsigned BEInsns) {
639 LoopSize = std::max(LoopSize, BEInsns + 1);
710 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
711 return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
778 // When computing the unrolled size, note that BEInsns are not replicated
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
UnrollLoop.h 122 unsigned BEInsns);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
TargetTransformInfo.h 403 unsigned BEInsns;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 425 UP.BEInsns = 2;
    [all...]

Completed in 281 milliseconds