Searched refs:SplitBefore (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A 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 …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | BasicBlockUtils.h | 436 Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore, 463 Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore, 484 void SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | BasicBlockUtils.cpp | 1350 SplitBlockAndInsertIfThenImpl(Value *Cond, Instruction *SplitBefore, in SplitBlockAndInsertIfThenImpl() argument 1355 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThenImpl() 1356 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore->getIterator()); in SplitBlockAndInsertIfThenImpl() 1380 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenImpl() 1419 Instruction *SplitBefore, in SplitBlockAndInsertIfThen() argument 1424 return SplitBlockAndInsertIfThenImpl(Cond, SplitBefore, Unreachable, in SplitBlockAndInsertIfThen() 1429 Instruction *SplitBefore, in SplitBlockAndInsertIfThen() argument 1434 return SplitBlockAndInsertIfThenImpl(Cond, SplitBefore, Unreachable, in SplitBlockAndInsertIfThen() 1443 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThenElse() 1450 (*ThenTerm)->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenElse() [all …]
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerUtil.h | 77 inline std::pair<std::string, std::string> SplitBefore(std::string X, in SplitBefore() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RegAllocGreedy.cpp | 2359 unsigned SplitBefore = 0, SplitAfter = 1; in tryLocalSplit() local 2367 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn; in tryLocalSplit() 2370 LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << ' ' << Uses[SplitBefore] in tryLocalSplit() 2382 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter; in tryLocalSplit() 2395 Uses[SplitBefore].distance(Uses[SplitAfter]) + in tryLocalSplit() 2407 BestBefore = SplitBefore; in tryLocalSplit() 2415 if (++SplitBefore < SplitAfter) { in tryLocalSplit() 2418 if (GapWeight[SplitBefore - 1] >= MaxGap) { in tryLocalSplit() 2419 MaxGap = GapWeight[SplitBefore]; in tryLocalSplit() 2420 for (unsigned I = SplitBefore + 1; I != SplitAfter; ++I) in tryLocalSplit()
|