/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | MachineSink.cpp | 577 MachineBasicBlock *NewSucc = in SinkInstruction() local 579 if (!NewSucc) { in SinkInstruction() 586 << " -- BB#" << NewSucc->getNumber() in SinkInstruction() 588 SuccToSinkTo = NewSucc; in SinkInstruction() 599 MachineBasicBlock *NewSucc = SplitCriticalEdge(MI, ParentBlock, in SinkInstruction() local 601 if (!NewSucc) { in SinkInstruction() 609 << " -- BB#" << NewSucc->getNumber() in SinkInstruction() 611 SuccToSinkTo = NewSucc; in SinkInstruction()
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | LazyValueInfo.h | 64 void threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc, BasicBlock *NewSucc);
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | LazyValueInfo.cpp | 433 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc); 937 BasicBlock *NewSucc) { in threadEdge() argument 967 if (ToUpdate == NewSucc) continue; in threadEdge() 1122 BasicBlock *NewSucc) { in threadEdge() argument 1123 if (PImpl) getCache(PImpl).threadEdge(PredBB, OldSucc, NewSucc); in threadEdge()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 249 void threadEdgeImpl(BasicBlock *OldSucc,BasicBlock *NewSucc); 291 BasicBlock *NewSucc) { in threadEdgeImpl() argument 319 if (ToUpdate == NewSucc) continue; in threadEdgeImpl() 486 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc); 1457 BasicBlock *NewSucc) { in threadEdge() argument 1458 TheCache.threadEdgeImpl(OldSucc, NewSucc); in threadEdge() 1804 BasicBlock *NewSucc) { in threadEdge() argument 1807 getImpl(PImpl, AC, &DL, DT).threadEdge(PredBB, OldSucc, NewSucc); in threadEdge()
|
/external/llvm/lib/CodeGen/ |
D | MachineSink.cpp | 287 auto NewSucc = Pair.first->SplitCriticalEdge(Pair.second, *this); in runOnMachineFunction() local 288 if (NewSucc != nullptr) { in runOnMachineFunction() 291 << " -- BB#" << NewSucc->getNumber() in runOnMachineFunction()
|
/external/llvm/include/llvm/Analysis/ |
D | LazyValueInfo.h | 96 void threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc, BasicBlock *NewSucc);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | LazyValueInfo.h | 105 void threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc, BasicBlock *NewSucc);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Instructions.h | 3399 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 3401 *(&Op<-1>() - idx) = NewSucc; 3763 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 3765 setOperand(idx * 2 + 1, NewSucc); 3862 void setSuccessor(unsigned i, BasicBlock *NewSucc) { 3863 setOperand(i + 1, NewSucc); 4068 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 4070 *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc); 4173 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 4339 void setSuccessor(unsigned Idx, BasicBlock *NewSucc) { [all …]
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 2945 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 2947 *(&Op<-1>() - idx) = NewSucc; 3259 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 3261 setOperand(idx * 2 + 1, NewSucc); 3360 void setSuccessor(unsigned i, BasicBlock *NewSucc) { 3361 setOperand(i + 1, NewSucc); 3818 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 3820 *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc); 4090 void setSuccessor(unsigned Idx, BasicBlock *NewSucc) { 4093 setOperand(Idx + 1, NewSucc); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachineSink.cpp | 324 auto NewSucc = Pair.first->SplitCriticalEdge(Pair.second, *this); in runOnMachineFunction() local 325 if (NewSucc != nullptr) { in runOnMachineFunction() 328 << printMBBReference(*NewSucc) << " -- " in runOnMachineFunction()
|
D | MachineBlockPlacement.cpp | 2718 for (MachineBasicBlock *NewSucc : Pred->successors()) { in maybeTailDuplicateBlock() 2719 if (BlockFilter && !BlockFilter->count(NewSucc)) in maybeTailDuplicateBlock() 2721 BlockChain *NewChain = BlockToChain[NewSucc]; in maybeTailDuplicateBlock()
|
/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 516 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc); 1368 BasicBlock *NewSucc) { in threadEdge() argument 1396 if (ToUpdate == NewSucc) continue; in threadEdge() 1704 BasicBlock *NewSucc) { in threadEdge() argument 1707 getCache(PImpl, AC, &DL, DT).threadEdge(PredBB, OldSucc, NewSucc); in threadEdge()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Instructions.h | 2365 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 2367 *(&Op<-1>() - idx) = (Value*)NewSucc; 2516 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 2518 setOperand(idx*2+1, (Value*)NewSucc); 2630 void setSuccessor(unsigned i, BasicBlock *NewSucc) { 2631 setOperand(i+1, (Value*)NewSucc); 2835 void setSuccessor(unsigned idx, BasicBlock *NewSucc) { 2837 *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUMachineCFGStructurizer.cpp | 2732 MachineBasicBlock *NewSucc = splitEntry(LRegion); in structurizeComplexRegion() local 2736 const DebugLoc &DL = NewSucc->findDebugLoc(NewSucc->getFirstNonPHI()); in structurizeComplexRegion() 2747 insertMergePHI(LRegion->getEntry(), LRegion->getExit(), NewSucc, in structurizeComplexRegion() 2751 TII->convertNonUniformLoopRegion(NewSucc, LastMerge); in structurizeComplexRegion()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Instructions.cpp | 622 void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { in setSuccessorV() argument 652 void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { in setSuccessorV() argument 687 void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { in setSuccessorV() argument 714 void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { in setSuccessorV() argument
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 841 void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { in setSuccessorV() argument 878 void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { in setSuccessorV() argument 1132 void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { in setSuccessorV() argument
|