Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DBasicBlock.cpp297 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs); in removePredecessor()
318 PN->removeIncomingValue(Pred, false); in removePredecessor()
DInstructions.cpp114 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { in removeIncomingValue() function in PHINode
/external/llvm/lib/Transforms/IPO/
DPartialInlining.cpp106 OldPhi->removeIncomingValue(newEntryBlock); in unswitchFunction()
/external/llvm/lib/Transforms/Utils/
DLoopUnroll.cpp406 Value *InVal = PN->removeIncomingValue(LatchBlock, false); in UnrollLoop()
460 Phi->removeIncomingValue(BB, false); in UnrollLoop()
DLowerSwitch.cpp187 PN->removeIncomingValue(*III); in fixPhis()
344 PN->removeIncomingValue(OrigBlock); in newLeafBlock()
DCloneFunction.cpp572 PN->removeIncomingValue(pred, false); in CloneAndPruneIntoFromInst()
606 PN->removeIncomingValue(Pred, false); in CloneAndPruneIntoFromInst()
DBasicBlockUtils.cpp425 PN->removeIncomingValue(i, false); in UpdatePHINodes()
448 Value *V = PN->removeIncomingValue(i, false); in UpdatePHINodes()
DCodeExtractor.cpp257 PN->removeIncomingValue(i); in severSplitPHINodes()
762 PN->removeIncomingValue(i, false); in extractCodeRegion()
DLoopSimplify.cpp438 PN->removeIncomingValue(e-i, false); in insertUniqueBackedgeBlock()
DLocal.cpp691 Value *OldVal = PN->removeIncomingValue(BB, false); in redirectValuesFromPredecessorsToPhi()
DSimplifyCFG.cpp3227 cast<PHINode>(BBI)->removeIncomingValue(SI->getParent()); in TurnSwitchRangeIntoICmp()
3233 cast<PHINode>(BBI)->removeIncomingValue(SI->getParent()); in TurnSwitchRangeIntoICmp()
3614 PHI->removeIncomingValue(SelectBB); in RemoveSwitchAfterSelectConversion()
/external/llvm/lib/Transforms/Scalar/
DLoopDeletion.cpp203 P->removeIncomingValue(exitingBlocks[i]); in runOnLoop()
DLoopRotation.cpp144 PN->removeIncomingValue(PN->getBasicBlockIndex(OrigPreheader)); in RewriteUsesOfClonedInstructions()
DStructurizeCFG.cpp570 Value *Deleted = Phi.removeIncomingValue(From, false); in delPhiValues()
/external/llvm/include/llvm/IR/
DInstructions.h2286 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
2288 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) {
2291 return removeIncomingValue(Idx, DeletePHIIfEmpty);
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp489 Value *InVal = PN->removeIncomingValue(BB, false); in EliminateMostlyEmptyBlock()