HomeSort by: relevance | last modified time | path
    Searched refs:LoopSize (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
LoopPeel.h 33 void computePeelCount(Loop *L, unsigned LoopSize,
UnrollLoop.h 112 unsigned &TripMultiple, unsigned LoopSize,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 665 unsigned LoopSize = Metrics.NumInsts;
673 LoopSize = std::max(LoopSize, BEInsns + 1);
675 return LoopSize;
740 const unsigned LoopSize;
743 UnrollCostEstimator(Loop &L, unsigned LoopSize) : LoopSize(LoopSize) {}
748 assert(LoopSize >= UP.BEInsns &&
749 "LoopSize should not be less than BEInsns!")
    [all...]
LoopDataPrefetch.cpp 300 unsigned LoopSize = Metrics.NumInsts;
301 if (!LoopSize)
302 LoopSize = 1;
304 unsigned ItersAhead = getPrefetchDistance() / LoopSize;
370 << " iterations ahead (loop size: " << LoopSize << ") in "
LoopUnrollAndJamPass.cpp 149 getUnrollAndJammedLoopSize(unsigned LoopSize,
151 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
152 return static_cast<uint64_t>(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopPeel.cpp 293 void llvm::computePeelCount(Loop *L, unsigned LoopSize,
297 assert(LoopSize > 0 && "Zero loop size is not allowed!");
338 if (2 * LoopSize <= Threshold && UnrollPeelMaxCount > 0) {
358 MaxPeelCount = std::min(MaxPeelCount, Threshold / LoopSize - 1);
401 (LoopSize * (*PeelCount + 1) <= Threshold)) {
410 LLVM_DEBUG(dbgs() << "Peel cost: " << LoopSize * (*PeelCount + 1)
  /src/external/gpl3/binutils/dist/gprofng/src/
Stabs.cc 694 size_t LoopSize = (size_t) data->d_size, len;
700 while ((LoopSize > 0) && !get_src &&
710 LoopSize -= len;
715 LoopSize -= len;
722 LoopSize -= len;
754 LoopSize -= len;
785 LoopSize -= len;
805 LoopSize -= 24;
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Stabs.cc 694 size_t LoopSize = (size_t) data->d_size, len;
700 while ((LoopSize > 0) && !get_src &&
710 LoopSize -= len;
715 LoopSize -= len;
722 LoopSize -= len;
754 LoopSize -= len;
785 LoopSize -= len;
805 LoopSize -= 24;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 3213 int64_t LoopSize = Size;
3217 LoopSize -= LoopSize % 32;
3223 .addImm(LoopSize)
3231 if (LoopSize < Size) {
3233 assert(Size - LoopSize == 16);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp 11930 unsigned LoopSize = 0;
11935 LoopSize += MBB->getAlignment().value() / 2;
11938 LoopSize += TII->getInstSizeInBytes(MI);
11939 if (LoopSize > 192)
11944 if (LoopSize <= 64)
11947 if (LoopSize <= 128)
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 10771 unsigned LoopSize = SizeVal - BytesLeft;
10779 for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
10843 if ((LoopSize & 0xFFFF0000) != 0)
10846 .addImm(LoopSize & 0xFFFF)
10849 if ((LoopSize & 0xFFFF0000) != 0)
10852 .addImm(LoopSize >> 16)
10857 const Constant *C = ConstantInt::get(Int32Ty, LoopSize);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 15494 uint64_t LoopSize = 0;
15497 LoopSize += TII->getInstSizeInBytes(*J);
15498 if (LoopSize > 32)
15502 if (LoopSize > 16 && LoopSize <= 32)

Completed in 108 milliseconds