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

/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DBasicBlock.cpp252 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
265 // removeIncomingValue.
273 PN->removeIncomingValue(Pred, false);
H A DInstructions.cpp111 // removeIncomingValue - Remove an incoming value. This is useful if a
113 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { function in class:PHINode
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DPartialInlining.cpp105 OldPhi->removeIncomingValue(newEntryBlock);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DLoopUnroll.cpp338 Value *InVal = PN->removeIncomingValue(LatchBlock, false);
392 Phi->removeIncomingValue(BB, false);
H A DBasicBlockUtils.cpp420 PN->removeIncomingValue(Preds[i], false);
430 Value *V = PN->removeIncomingValue(Preds[i], false);
H A DCloneFunction.cpp443 PN->removeIncomingValue(pred, false);
477 PN->removeIncomingValue(Pred, false);
H A DLowerSwitch.cpp212 PN->removeIncomingValue(OrigBlock);
H A DCodeExtractor.cpp255 PN->removeIncomingValue(i);
764 PN->removeIncomingValue(i, false);
H A DLoopSimplify.cpp721 PN->removeIncomingValue(e-i, false);
H A DLocal.cpp641 Value *OldVal = PN->removeIncomingValue(BB, false);
H A DSimplifyCFG.cpp3057 cast<PHINode>(BBI)->removeIncomingValue(SI->getParent());
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DLoopDeletion.cpp197 P->removeIncomingValue(exitingBlocks[i]);
H A DLoopRotation.cpp102 PN->removeIncomingValue(PN->getBasicBlockIndex(OrigPreheader));
H A DCodeGenPrepare.cpp482 Value *InVal = PN->removeIncomingValue(BB, false);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp988 phi->removeIncomingValue(source->getBlock(), false);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DInstructions.h2107 /// removeIncomingValue - Remove an incoming value. This is useful if a
2115 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
2117 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) { function in class:llvm::PHINode
2120 return removeIncomingValue(Idx, DeletePHIIfEmpty);

Completed in 128 milliseconds