Home | History | Annotate | Download | only in Utils

Lines Matching refs:Loop

48   // Loop over all instructions, and copy them over.
122 // Loop over all of the basic blocks in the function, cloning them as
153 // Loop over all of the instructions in the function, fixing up operand
159 // Loop over all instructions, fixing each one as we find it...
242 // Loop over the arguments, copying the names of the mapped arguments over...
331 // Loop over all instructions, and copy them over, DCE'ing as we go. This
332 // loop doesn't include the terminator.
340 // just break out of the loop (which would cause the terminator to be
404 // just break out of the loop (which would cause the terminator to be
528 // Loop over all of the basic blocks in the old function. If the block was
594 // The loop above has removed PHI entries for those blocks that are dead
614 // map. Loop over all of the PHIs and remove excess predecessor
748 /// \brief Clones a loop \p OrigLoop. Returns the loop and the blocks in \p
751 /// Updates LoopInfo and DominatorTree assuming the loop is dominated by block
753 Loop *llvm::cloneLoopWithPreheader(BasicBlock *Before, BasicBlock *LoopDomBB,
754 Loop *OrigLoop, ValueToValueMapTy &VMap,
759 Loop *ParentLoop = OrigLoop->getParentLoop();
761 Loop *NewLoop = new Loop();
770 // To rename the loop PHIs.