Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
644 MachineInstr *SplitBefore = &*Def2It; in splitBlockOnBinaryCROp() local
647 SplitBefore = &*Def1It; in splitBlockOnBinaryCROp()
655 LLVM_DEBUG(dbgs() << "Before instruction:\n"; SplitBefore->dump()); in splitBlockOnBinaryCROp()
665 MachineBasicBlock *MBB = SplitBefore->getParent(); in splitBlockOnBinaryCROp()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h421 Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore,
448 Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore,
471 void SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore,
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1474 SplitBlockAndInsertIfThenImpl(Value *Cond, Instruction *SplitBefore, in SplitBlockAndInsertIfThenImpl() argument
1479 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThenImpl()
1480 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore->getIterator()); in SplitBlockAndInsertIfThenImpl()
1504 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenImpl()
1543 Instruction *SplitBefore, in SplitBlockAndInsertIfThen() argument
1548 return SplitBlockAndInsertIfThenImpl(Cond, SplitBefore, Unreachable, in SplitBlockAndInsertIfThen()
1553 Instruction *SplitBefore, in SplitBlockAndInsertIfThen() argument
1558 return SplitBlockAndInsertIfThenImpl(Cond, SplitBefore, Unreachable, in SplitBlockAndInsertIfThen()
1563 void llvm::SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore, in SplitBlockAndInsertIfThenElse() argument
1568 BasicBlock *Head = SplitBefore->getParent(); in SplitBlockAndInsertIfThenElse()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1574 unsigned SplitBefore = 0, SplitAfter = 1; in tryLocalSplit() local
1582 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn; in tryLocalSplit()
1585 LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << ' ' << Uses[SplitBefore] in tryLocalSplit()
1597 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter; in tryLocalSplit()
1610 Uses[SplitBefore].distance(Uses[SplitAfter]) + in tryLocalSplit()
1622 BestBefore = SplitBefore; in tryLocalSplit()
1630 if (++SplitBefore < SplitAfter) { in tryLocalSplit()
1633 if (GapWeight[SplitBefore - 1] >= MaxGap) { in tryLocalSplit()
1634 MaxGap = GapWeight[SplitBefore]; in tryLocalSplit()
1635 for (unsigned I = SplitBefore + 1; I != SplitAfter; ++I) in tryLocalSplit()
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerUtil.h77 inline std::pair<std::string, std::string> SplitBefore(std::string X, in SplitBefore() function
/openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp3001 Instruction *SplitBefore; in createIfVersion() local
3003 SplitBefore = dyn_cast<Instruction>(IfCond); in createIfVersion()
3005 SplitBefore = CanonicalLoop->getPreheader()->getTerminator(); in createIfVersion()
3023 BasicBlock *Head = SplitBefore->getParent(); in createIfVersion()