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

  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 297 llvm::BasicBlock *CondBB, *AfterBB, *HeaderBB;
302 AfterBB = llvm::SplitBlock(CondBB, Builder.GetInsertPoint(), this);
308 // goto AfterBB
312 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
319 // goto AfterBB
326 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
327 AfterBB->setName("Exit");
330 return AfterBB;
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 634 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
637 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
639 // Any new code will be inserted in AfterBB.
640 Builder.SetInsertPoint(AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 738 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
741 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
743 // Any new code will be inserted in AfterBB.
744 Builder.SetInsertPoint(AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 843 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
846 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
848 // Any new code will be inserted in AfterBB.
849 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 870 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
873 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
875 // Any new code will be inserted in AfterBB.
876 Builder.SetInsertPoint(AfterBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1092 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
1095 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
1097 // Any new code will be inserted in AfterBB.
1098 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 852 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
855 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
857 // Any new code will be inserted in AfterBB.
858 Builder.SetInsertPoint(AfterBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]

Completed in 64 milliseconds