Home | History | Annotate | Download | only in Scalar

Lines Matching refs:NewBlocks

88     // NewBlocks contained cloned copy of basic blocks from LoopBlocks.
89 std::vector<BasicBlock*> NewBlocks;
593 NewBlocks.clear();
620 NewBlocks.reserve(LoopBlocks.size());
624 NewBlocks.push_back(NewBB);
632 NewBlocks[0], F->end());
640 ParentLoop->addBasicBlockToLoop(NewBlocks[0], LI->getBase());
679 for (unsigned i = 0, e = NewBlocks.size(); i != e; ++i)
680 for (BasicBlock::iterator I = NewBlocks[i]->begin(),
681 E = NewBlocks[i]->end(); I != E; ++I)
690 EmitPreheaderBranchOnCondition(LIC, Val, NewBlocks[0], LoopBlocks[0], OldBR);