Home | History | Annotate | Download | only in VMCore

Lines Matching refs:Function

28   if (Function *F = getParent())
42 BasicBlock::BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent,
46 // Make sure that we get added to a function
51 "Cannot insert block before another block with no function!");
85 void BasicBlock::setParent(Function *parent) {
104 /// moveBefore - Unlink this basic block from its current function and
105 /// insert it into the function that MovePos lives in, right before MovePos.
111 /// moveAfter - Unlink this basic block from its current function and
112 /// insert it into the function that MovePos lives in, right after MovePos.
114 Function::iterator I = MovePos;
303 BasicBlock *InsertBefore = llvm::next(Function::iterator(this))