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

/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp679 /// specified instruction - everything before and including SplitBefore stays
680 /// in the old basic block, and everything after SplitBefore is moved to a
685 /// SplitBefore
691 /// SplitBefore
699 Instruction *SplitBefore,
703 BasicBlock *Head = SplitBefore->getParent();
704 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore);
713 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc());
716 HeadNewTerm->setDebugLoc(SplitBefore->getDebugLoc());
740 /// SplitBefore
698 SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore, bool Unreachable, MDNode *BranchWeights, DominatorTree *DT) argument
750 SplitBlockAndInsertIfThenElse(Value *Cond, Instruction *SplitBefore, TerminatorInst **ThenTerm, TerminatorInst **ElseTerm, MDNode *BranchWeights) argument
[all...]
/external/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1782 // We will split before Uses[SplitBefore] and after Uses[SplitAfter].
1783 unsigned SplitBefore = 0, SplitAfter = 1; local
1785 // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]).
1791 const bool LiveBefore = SplitBefore != 0 || BI.LiveIn;
1795 << Uses[SplitBefore] << '-' << Uses[SplitAfter]
1807 unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter;
1820 Uses[SplitBefore].distance(Uses[SplitAfter]) +
1832 BestBefore = SplitBefore;
1840 if (++SplitBefore < SplitAfter) {
1843 if (GapWeight[SplitBefore
[all...]

Completed in 159 milliseconds