Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DBypassSlowDivision.cpp102 BasicBlock *SlowBB = BasicBlock::Create(F.getContext(), "", in insertFastDiv() local
104 SlowBB->moveBefore(SuccessorBB); in insertFastDiv()
105 IRBuilder<> SlowBuilder(SlowBB, SlowBB->begin()); in insertFastDiv()
120 FastBB->moveBefore(SlowBB); in insertFastDiv()
143 QuoPhi->addIncoming(SlowQuotientV, SlowBB); in insertFastDiv()
146 RemPhi->addIncoming(SlowRemainderV, SlowBB); in insertFastDiv()
169 MainBuilder.CreateCondBr(CmpV, FastBB, SlowBB); in insertFastDiv()