Lines Matching full:processed
18 /// the total number of data elements processed by the loop. The loop-end
20 /// elements to be processed and generating the mask of active lanes.
219 // processed by the loop, so we will refer to that from this point on. in IsSafeActiveMask()
284 // processed, is non-negative, i.e. it doesn't overflow: in IsSafeActiveMask()
383 // Insert a phi to count the number of elements processed by the loop. in InsertVCTPIntrinsic()
385 PHINode *Processed = Builder.CreatePHI(Ty, 2); in InsertVCTPIntrinsic() local
386 Processed->addIncoming(Start, L->getLoopPreheader()); in InsertVCTPIntrinsic()
403 Value *VCTPCall = Builder.CreateCall(VCTP, Processed); in InsertVCTPIntrinsic()
408 Value *Remaining = Builder.CreateSub(Processed, Factor); in InsertVCTPIntrinsic()
409 Processed->addIncoming(Remaining, L->getLoopLatch()); in InsertVCTPIntrinsic()
410 LLVM_DEBUG(dbgs() << "ARM TP: Insert processed elements phi: " in InsertVCTPIntrinsic()
411 << *Processed << "\n" in InsertVCTPIntrinsic()