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

  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 245 BasicBlock *LoopExit = BI->getSuccessor(ContinueOnTrue);
368 Dest = LoopExit;
384 if (Dest != LoopExit) {
  /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...]

Completed in 83 milliseconds