Lines Matching defs:ExitBB
115 // ExitBB
120 // If there is more work to do: go to PreHeaderBB, otherwise go to ExitBB.
123 // chunked scheduling case. ExitBB marks the end of the parallel execution.
137 BasicBlock *ExitBB = BasicBlock::Create(Context, "polly.par.exit", SubFn);
143 SubFnDT->addNewBlock(ExitBB, HeaderBB);
206 Builder.CreateCondBr(HasIteration, PreHeaderBB, ExitBB);
213 Builder.CreateCondBr(HasIteration, PreHeaderBB, ExitBB);
245 Builder.CreateCondBr(HasIteration, PreHeaderBB, ExitBB);
274 Builder.CreateCondBr(HasWork, PreHeaderBB, ExitBB);
276 Builder.CreateBr(ExitBB);
294 Builder.SetInsertPoint(ExitBB);