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

/external/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp212 unsigned LoopSize = Metrics.NumInsts; local
217 if (LoopSize == 0) LoopSize = 1;
219 return LoopSize;
361 unsigned LoopSize = local
363 DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
364 uint64_t UnrolledSize = (uint64_t)LoopSize * Count;
409 Count = PartialThreshold / LoopSize;
423 UnrolledSize = LoopSize * Count;
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6981 unsigned LoopSize = SizeVal - BytesLeft; local
6989 for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
7053 if ((LoopSize & 0xFFFF0000) != 0)
7056 .addImm(LoopSize & 0xFFFF));
7058 if ((LoopSize & 0xFFFF0000) != 0)
7060 .addReg(Vtmp).addImm(LoopSize >> 16));
7064 const Constant *C = ConstantInt::get(Int32Ty, LoopSize);

Completed in 507 milliseconds