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

/external/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)
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp702 unsigned LoopSize = Metrics.NumInsts; local
710 LoopSize = std::max(LoopSize, 3u);
712 return LoopSize;
940 unsigned LoopSize = local
942 DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
947 uint64_t UnrolledSize = (uint64_t)(LoopSize-2) * Count + 2;
1020 Count = (std::max(PartialThreshold, 3u)-2) / (LoopSize-2);
1034 UnrolledSize = (LoopSize-2) * Count + 2;
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7609 unsigned LoopSize = SizeVal - BytesLeft; local
7617 for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
7681 if ((LoopSize & 0xFFFF0000) != 0)
7685 Vtmp).addImm(LoopSize & 0xFFFF));
7687 if ((LoopSize & 0xFFFF0000) != 0)
7692 .addImm(LoopSize >> 16));
7696 const Constant *C = ConstantInt::get(Int32Ty, LoopSize);

Completed in 197 milliseconds