HomeSort by relevance Sort by last modified time
    Searched refs:LoopExit (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/CodeGen/
CGStmt.cpp 449 JumpDest LoopExit = getJumpDestInCurrentScope("while.end");
452 BreakContinueStack.push_back(BreakContinue(LoopExit, LoopHeader));
481 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
487 if (ExitBlock != LoopExit.getBlock()) {
489 EmitBranchThroughCleanup(LoopExit);
510 EmitBlock(LoopExit.getBlock(), true);
519 JumpDest LoopExit = getJumpDestInCurrentScope("do.end");
523 BreakContinueStack.push_back(BreakContinue(LoopExit, LoopCond));
554 Builder.CreateCondBr(BoolCondVal, LoopBody, LoopExit.getBlock());
557 EmitBlock(LoopExit.getBlock())
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 245 BasicBlock *LoopExit = BI->getSuccessor(ContinueOnTrue);
368 Dest = LoopExit;
384 if (Dest != LoopExit) {
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 217 BasicBlock **LoopExit = 0);
549 /// exit. Finally, this sets LoopExit to the BB that the loop exits to when
553 BasicBlock **LoopExit) {
605 // If we didn't find a single unique LoopExit block, or if the loop exit block
610 if (LoopExit) *LoopExit = LoopExitBB;
    [all...]

Completed in 178 milliseconds