Searched defs:SplitBefore (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp654 /// specified instruction - everything before and including SplitBefore stays
655 /// in the old basic block, and everything after SplitBefore is moved to a
660 /// SplitBefore
666 /// SplitBefore
674 Instruction *SplitBefore,
677 BasicBlock *Head = SplitBefore->getParent();
678 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore);
687 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc());
690 HeadNewTerm->setDebugLoc(SplitBefore->getDebugLoc());
700 /// SplitBefore
673 SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore, bool Unreachable, MDNode *BranchWeights) argument
710 SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore, TerminatorInst **ThenTerm, TerminatorInst **ElseTerm, MDNode *BranchWeights) argument
[all...]
/external/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1758 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
1759 unsigned SplitBefore = 0, SplitAfter = 1; local
1761 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1767 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1771 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1783 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1795 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1806 BestBefore = SplitBefore;
1814 if (++SplitBefore < SplitAfter) {
1817 if (GapWeight[SplitBefore
[all...]

Completed in 885 milliseconds