HomeSort by relevance Sort by last modified time
    Searched full:lastexit (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 494 BasicBlock *LastExit = Latch->getSinglePredecessor();
495 if (!LastExit || !L->isLoopExiting(LastExit))
498 BranchInst *BI = dyn_cast<BranchInst>(LastExit->getTerminator());
506 << LastExit->getName() << "\n");
508 // Hoist the instructions from Latch into LastExit.
509 LastExit->getInstList().splice(BI->getIterator(), Latch->getInstList(),
516 // Remove Latch from the CFG so that LastExit becomes the new Latch.
518 Latch->replaceSuccessorsPhiUsesWith(LastExit);
  /external/llvm/include/llvm/Analysis/
RegionInfoImpl.h 689 BlockT *lastExit = entry;
706 lastExit = exit;
714 // Tried to create regions from entry to lastExit. Next time take a
715 // shortcut from entry to lastExit.
716 if (lastExit != entry)
717 insertShortCut(entry, lastExit, ShortCut);

Completed in 223 milliseconds