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

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 723 BasicBlock *AfterBB =
727 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
729 // Any new code will be inserted in AfterBB.
730 Builder.SetInsertPoint(AfterBB);
  /frameworks/compile/libbcc/lib/Renderscript/
RSKernelExpand.cpp 408 llvm::BasicBlock *CondBB, *AfterBB, *HeaderBB;
412 AfterBB = llvm::SplitBlock(CondBB, &*Builder.GetInsertPoint(), nullptr, nullptr);
426 // goto AfterBB
428 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
438 // goto AfterBB
439 // AfterBB:
445 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
446 AfterBB->setName("Exit");
451 return AfterBB;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 834 BasicBlock *AfterBB =
838 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
840 // Any new code will be inserted in AfterBB.
841 Builder.SetInsertPoint(AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 947 BasicBlock *AfterBB =
951 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
953 // Any new code will be inserted in AfterBB.
954 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 869 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
872 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
874 // Any new code will be inserted in AfterBB.
875 Builder.SetInsertPoint(AfterBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1091 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
1094 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
1096 // Any new code will be inserted in AfterBB.
1097 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 851 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
854 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
856 // Any new code will be inserted in AfterBB.
857 Builder.SetInsertPoint(AfterBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 1140 BasicBlock *AfterBB =
1144 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
1146 // Any new code will be inserted in AfterBB.
1147 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 976 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
979 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
981 // Any new code will be inserted in AfterBB.
982 C.getBuilder().SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 975 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
978 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
980 // Any new code will be inserted in AfterBB.
981 C.getBuilder().SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 975 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
978 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
980 // Any new code will be inserted in AfterBB.
981 C.getBuilder().SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 975 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
978 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
980 // Any new code will be inserted in AfterBB.
981 C.getBuilder().SetInsertPoint(AfterBB);
    [all...]

Completed in 1671 milliseconds