Home
last modified time | relevance | path

Searched refs:SplitBefore (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCReduceCRLogicals.cpp109 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 …]
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h419 Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore,
446 Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore,
467 void SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore,
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1376 SplitBlockAndInsertIfThenImpl(Value *Cond, Instruction *SplitBefore, in SplitBlockAndInsertIfThenImpl() argument
1381 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThenImpl()
1382 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore->getIterator()); in SplitBlockAndInsertIfThenImpl()
1406 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenImpl()
1445 Instruction *SplitBefore, in SplitBlockAndInsertIfThen() argument
1450 return SplitBlockAndInsertIfThenImpl(Cond, SplitBefore, Unreachable, in SplitBlockAndInsertIfThen()
1455 Instruction *SplitBefore, in SplitBlockAndInsertIfThen() argument
1460 return SplitBlockAndInsertIfThenImpl(Cond, SplitBefore, Unreachable, in SplitBlockAndInsertIfThen()
1469 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThenElse()
1476 (*ThenTerm)->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenElse()
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1485 unsigned SplitBefore = 0, SplitAfter = 1; in tryLocalSplit() local
1493 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn; in tryLocalSplit()
1496 LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << ' ' << Uses[SplitBefore] in tryLocalSplit()
1508 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter; in tryLocalSplit()
1521 Uses[SplitBefore].distance(Uses[SplitAfter]) + in tryLocalSplit()
1533 BestBefore = SplitBefore; in tryLocalSplit()
1541 if (++SplitBefore < SplitAfter) { in tryLocalSplit()
1544 if (GapWeight[SplitBefore - 1] >= MaxGap) { in tryLocalSplit()
1545 MaxGap = GapWeight[SplitBefore]; in tryLocalSplit()
1546 for (unsigned I = SplitBefore + 1; I != SplitAfter; ++I) in tryLocalSplit()
/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerUtil.h77 inline std::pair<std::string, std::string> SplitBefore(std::string X, in SplitBefore() function