Searched refs:SplitBefore (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCReduceCRLogicals.cpp | 109 MachineInstr *SplitBefore; member 118 if (!OrigBranch || !SplitBefore || !SplitCond) in allInstrsInSameMBB() 121 if (SplitBefore->getParent() != MBB || SplitCond->getParent() != MBB) in allInstrsInSameMBB() 199 MachineBasicBlock::iterator InsertPoint = BSI.SplitBefore; in splitMBB() 220 BuildMI(*ThisMBB, ThisMBB->end(), BSI.SplitBefore->getDebugLoc(), in splitMBB() 224 BuildMI(*ThisMBB, ThisMBB->end(), BSI.SplitBefore->getDebugLoc(), in splitMBB() 643 MachineInstr *SplitBefore = &*Def2It; in splitBlockOnBinaryCROp() local 646 SplitBefore = &*Def1It; in splitBlockOnBinaryCROp() 654 LLVM_DEBUG(dbgs() << "Before instruction:\n"; SplitBefore->dump()); in splitBlockOnBinaryCROp() 664 MachineBasicBlock *MBB = SplitBefore->getParent(); in splitBlockOnBinaryCROp() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BasicBlockUtils.cpp | 926 Instruction *SplitBefore, in SplitBlockAndInsertIfThen() argument 931 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThen() 932 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore->getIterator()); in SplitBlockAndInsertIfThen() 943 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThen() 977 void llvm::SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore, in SplitBlockAndInsertIfThenElse() argument 981 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThenElse() 982 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore->getIterator()); in SplitBlockAndInsertIfThenElse() 988 (*ThenTerm)->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenElse() 990 (*ElseTerm)->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenElse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | BasicBlockUtils.h | 305 Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore, 326 void SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | RegAllocGreedy.cpp | 2333 unsigned SplitBefore = 0, SplitAfter = 1; in tryLocalSplit() local 2341 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn; in tryLocalSplit() 2344 LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << ' ' << Uses[SplitBefore] in tryLocalSplit() 2356 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter; in tryLocalSplit() 2369 Uses[SplitBefore].distance(Uses[SplitAfter]) + in tryLocalSplit() 2381 BestBefore = SplitBefore; in tryLocalSplit() 2389 if (++SplitBefore < SplitAfter) { in tryLocalSplit() 2392 if (GapWeight[SplitBefore - 1] >= MaxGap) { in tryLocalSplit() 2393 MaxGap = GapWeight[SplitBefore]; in tryLocalSplit() 2394 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i) in tryLocalSplit()
|