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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopFuse.cpp 124 cl::desc("Max number of iterations to be peeled from a loop, such that "
174 /// Has this loop been Peeled
175 bool Peeled;
193 Peeled(false), DT(DT), PDT(PDT), ORE(ORE) {
286 if (Peeled)
770 FC0.Peeled = peelLoop(FC0.L, PeelCount, &LI, &SE, &DT, &AC, true);
771 if (FC0.Peeled) {
790 // the peeled blocks to the second loop). Here we are updating the
791 // branch conditions of each of the peeled blocks, such that it will
821 dbgs() << "Sucessfully peeled " << FC0.PP.PeelCoun
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopPeel.cpp 52 STATISTIC(NumPeeled, "Number of loops peeled");
60 cl::desc("Allows loops to be peeled when the dynamic "
66 cl::desc("Allows loop nests to be peeled."));
80 static const char *PeeledCountMetaData = "llvm.loop.peeled.count";
326 if (auto Peeled = getOptionalIntLoopAttribute(L, PeeledCountMetaData))
327 AlreadyPeeled = *Peeled;
328 // Stop if we already peeled off the maximum number of iterations.
388 // hit the peeled section.
417 /// Update the branch weights of the latch of a peeled-off loop
419 /// This sets the branch weights for the latch of the recently peeled off loo
    [all...]
LoopUnroll.cpp 345 bool Peeled = false;
347 Peeled = peelLoop(L, ULO.PeelCount, LI, SE, DT, AC, PreserveLCSSA);
351 if (Peeled) {
402 assert(!Peeled && "Peeling guard changed!");
475 return OptimizationRemark(DEBUG_TYPE, "Peeled", L->getStartLoc(),
477 << " peeled loop by " << NV("PeelCount", ULO.PeelCount)
893 simplifyLoopAfterUnroll(L, !CompletelyUnroll && (ULO.Count > 1 || Peeled), LI,

Completed in 34 milliseconds