Searched refs:LoopSize (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCLoopDataPrefetch.cpp148 unsigned LoopSize = Metrics.NumInsts; local
149 if (!LoopSize)
150 LoopSize = 1;
152 unsigned ItersAhead = PrefDist/LoopSize;
H A DPPCISelLowering.cpp10812 uint64_t LoopSize = 0; local
10815 LoopSize += TII->GetInstSizeInBytes(J);
10816 if (LoopSize > 32)
10820 if (LoopSize > 16 && LoopSize <= 32)
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp615 unsigned LoopSize = Metrics.NumInsts; local
623 LoopSize = std::max(LoopSize, 3u);
625 return LoopSize;
809 unsigned LoopSize = local
811 DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
816 uint64_t UnrolledSize = (uint64_t)(LoopSize-2) * Count + 2;
874 Count = (std::max(UP.PartialThreshold, 3u) - 2) / (LoopSize - 2);
888 UnrolledSize = (LoopSize-2) * Count + 2;
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7691 unsigned LoopSize = SizeVal - BytesLeft; local
7699 for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
7763 if ((LoopSize & 0xFFFF0000) != 0)
7767 Vtmp).addImm(LoopSize & 0xFFFF));
7769 if ((LoopSize & 0xFFFF0000) != 0)
7774 .addImm(LoopSize >> 16));
7778 const Constant *C = ConstantInt::get(Int32Ty, LoopSize);

Completed in 90 milliseconds