Searched defs:NewSucc (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/
H A DMachineSink.cpp286 auto NewSucc = Pair.first->SplitCriticalEdge(Pair.second, this); local
287 if (NewSucc != nullptr) {
290 << " -- BB#" << NewSucc->getNumber()
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp448 /// PredBB to OldSucc has been threaded to be from PredBB to NewSucc.
449 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
1105 BasicBlock *NewSucc) {
1114 // values in any successor of OldSucc (except NewSucc) in which they were
1132 // Skip blocks only accessible through NewSucc.
1133 if (ToUpdate == NewSucc) continue;
1413 BasicBlock *NewSucc) {
1416 getCache(PImpl, AC, &DL, DT).threadEdge(PredBB, OldSucc, NewSucc);
1104 threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc, BasicBlock *NewSucc) argument
1412 threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc, BasicBlock *NewSucc) argument
/external/llvm/include/llvm/IR/
H A DInstructions.h2886 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { argument
2888 *(&Op<-1>() - idx) = NewSucc;
3200 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
3202 setOperand(idx * 2 + 1, NewSucc);
3301 void setSuccessor(unsigned i, BasicBlock *NewSucc) {
3302 setOperand(i + 1, NewSucc);
3717 void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
3719 *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc);
3975 void setSuccessor(unsigned Idx, BasicBlock *NewSucc) {
3978 setOperand(Idx + 1, NewSucc);
4130 setSuccessor(BasicBlock *NewSucc) argument
[all...]

Completed in 115 milliseconds