Searched refs:removeIncomingValue (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/IR/
H A DBasicBlock.cpp252 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
265 // removeIncomingValue.
273 PN->removeIncomingValue(Pred, false);
H A DInstructions.cpp112 // removeIncomingValue - Remove an incoming value. This is useful if a
114 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { function in class:PHINode
/freebsd-10.2-release/contrib/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp105 OldPhi->removeIncomingValue(newEntryBlock);
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp338 Value *InVal = PN->removeIncomingValue(LatchBlock, false);
392 Phi->removeIncomingValue(BB, false);
H A DCloneFunction.cpp446 PN->removeIncomingValue(pred, false);
480 PN->removeIncomingValue(Pred, false);
H A DLowerSwitch.cpp224 PN->removeIncomingValue(OrigBlock);
H A DBasicBlockUtils.cpp407 PN->removeIncomingValue(Idx, false);
418 Value *V = PN->removeIncomingValue(Preds[i], false);
H A DCodeExtractor.cpp256 PN->removeIncomingValue(i);
764 PN->removeIncomingValue(i, false);
H A DLoopSimplify.cpp729 PN->removeIncomingValue(e-i, false);
H A DLocal.cpp668 Value *OldVal = PN->removeIncomingValue(BB, false);
H A DSimplifyCFG.cpp3178 cast<PHINode>(BBI)->removeIncomingValue(SI->getParent());
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp199 P->removeIncomingValue(exitingBlocks[i]);
H A DLoopRotation.cpp108 PN->removeIncomingValue(PN->getBasicBlockIndex(OrigPreheader));
H A DStructurizeCFG.cpp514 Value *Deleted = Phi.removeIncomingValue(From, false);
H A DCodeGenPrepare.cpp408 Value *InVal = PN->removeIncomingValue(BB, false);
/freebsd-10.2-release/contrib/llvm/include/llvm/IR/
H A DInstructions.h2113 /// removeIncomingValue - Remove an incoming value. This is useful if a
2121 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
2123 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) { function in class:llvm::PHINode
2126 return removeIncomingValue(Idx, DeletePHIIfEmpty);

Completed in 96 milliseconds