Searched refs:NewSucc (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h65 /// PredBB to OldSucc to be from PredBB to NewSucc instead.
66 void threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc, BasicBlock *NewSucc);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineSink.cpp664 MachineBasicBlock *NewSucc = local
666 if (!NewSucc) {
673 << " -- BB#" << NewSucc->getNumber()
675 SuccToSinkTo = NewSucc;
686 MachineBasicBlock *NewSucc = SplitCriticalEdge(MI, ParentBlock, local
688 if (!NewSucc) {
696 << " -- BB#" << NewSucc->getNumber()
698 SuccToSinkTo = NewSucc;
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DLazyValueInfo.cpp397 /// NewSucc.
398 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
942 BasicBlock *NewSucc) {
951 // values in any successor of OldSucc (except NewSucc) in which they were
971 // Skip blocks only accessible through NewSucc.
972 if (ToUpdate == NewSucc) continue;
1137 BasicBlock *NewSucc) {
1138 if (PImpl) getCache(PImpl).threadEdge(PredBB, OldSucc, NewSucc);
941 threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc, BasicBlock *NewSucc) argument
1136 threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc, BasicBlock *NewSucc) argument
/freebsd-9.3-release/contrib/llvm/include/llvm/IR/
H A DInstructions.h2411 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { argument
2413 *(&Op<-1>() - idx) = (Value*)NewSucc;
2711 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
2713 setOperand(idx*2+1, (Value*)NewSucc);
2810 void setSuccessor(unsigned i, BasicBlock *NewSucc) {
2811 setOperand(i+1, (Value*)NewSucc);
3025 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
3027 *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc);
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DInstructions.cpp650 void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { argument
687 void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { argument
713 void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { argument

Completed in 96 milliseconds