Searched refs:SplitBefore (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCReduceCRLogicals.cpp | 113 MachineInstr *SplitBefore; member 122 if (!OrigBranch || !SplitBefore || !SplitCond) in allInstrsInSameMBB() 125 if (SplitBefore->getParent() != MBB || SplitCond->getParent() != MBB) in allInstrsInSameMBB() 179 MachineBasicBlock::iterator InsertPoint = BSI.SplitBefore; in splitMBB() 195 BuildMI(*ThisMBB, ThisMBB->end(), BSI.SplitBefore->getDebugLoc(), in splitMBB() 199 BuildMI(*ThisMBB, ThisMBB->end(), BSI.SplitBefore->getDebugLoc(), in splitMBB() 617 MachineInstr *SplitBefore = &*Def2It; in splitBlockOnBinaryCROp() local 620 SplitBefore = &*Def1It; in splitBlockOnBinaryCROp() 628 LLVM_DEBUG(dbgs() << "Before instruction:\n"; SplitBefore->dump()); in splitBlockOnBinaryCROp() 638 MachineBasicBlock *MBB = SplitBefore->getParent(); in splitBlockOnBinaryCROp() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | BasicBlockUtils.cpp | 720 Instruction *SplitBefore, in SplitBlockAndInsertIfThen() argument 724 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThen() 725 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore->getIterator()); in SplitBlockAndInsertIfThen() 734 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThen() 763 void llvm::SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore, in SplitBlockAndInsertIfThenElse() argument 767 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThenElse() 768 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore->getIterator()); in SplitBlockAndInsertIfThenElse() 774 (*ThenTerm)->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenElse() 776 (*ElseTerm)->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenElse()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Transforms/Utils/ |
| H A D | BasicBlockUtils.h | 267 Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore, 287 void SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore,
|
| /freebsd-12.1/contrib/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerUtil.h | 75 inline std::pair<std::string, std::string> SplitBefore(std::string X, in SplitBefore() function
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | RegAllocGreedy.cpp | 2319 unsigned SplitBefore = 0, SplitAfter = 1; in tryLocalSplit() local 2327 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn; in tryLocalSplit() 2330 LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << ' ' << Uses[SplitBefore] in tryLocalSplit() 2342 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter; in tryLocalSplit() 2355 Uses[SplitBefore].distance(Uses[SplitAfter]) + in tryLocalSplit() 2367 BestBefore = SplitBefore; in tryLocalSplit() 2375 if (++SplitBefore < SplitAfter) { in tryLocalSplit() 2378 if (GapWeight[SplitBefore - 1] >= MaxGap) { in tryLocalSplit() 2379 MaxGap = GapWeight[SplitBefore]; in tryLocalSplit() 2380 for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i) in tryLocalSplit()
|