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

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 732 BasicBlock *AfterBB =
736 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
738 // Any new code will be inserted in AfterBB.
739 Builder.SetInsertPoint(AfterBB);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 632 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
635 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
637 // Any new code will be inserted in AfterBB.
638 Builder.SetInsertPoint(AfterBB);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 736 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
739 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
741 // Any new code will be inserted in AfterBB.
742 Builder.SetInsertPoint(AfterBB);
  /frameworks/compile/libbcc/lib/
RSKernelExpand.cpp 431 llvm::BasicBlock *CondBB, *AfterBB, *HeaderBB;
435 AfterBB = llvm::SplitBlock(CondBB, &*Builder.GetInsertPoint(), nullptr, nullptr);
449 // goto AfterBB
451 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
461 // goto AfterBB
462 // AfterBB:
468 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
469 AfterBB->setName("Exit");
474 return AfterBB;
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 955 BasicBlock *AfterBB =
959 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
961 // Any new code will be inserted in AfterBB.
962 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 955 BasicBlock *AfterBB =
959 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
961 // Any new code will be inserted in AfterBB.
962 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 955 BasicBlock *AfterBB =
959 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
961 // Any new code will be inserted in AfterBB.
962 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 944 BasicBlock *AfterBB =
948 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
950 // Any new code will be inserted in AfterBB.
951 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 966 BasicBlock *AfterBB =
970 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
972 // Any new code will be inserted in AfterBB.
973 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 843 BasicBlock *AfterBB =
847 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
849 // Any new code will be inserted in AfterBB.
850 Builder.SetInsertPoint(AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 956 BasicBlock *AfterBB =
960 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
962 // Any new code will be inserted in AfterBB.
963 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 951 BasicBlock *AfterBB =
955 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
957 // Any new code will be inserted in AfterBB.
958 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 865 BasicBlock *AfterBB =
869 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
871 // Any new code will be inserted in AfterBB.
872 Builder.SetInsertPoint(AfterBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1087 BasicBlock *AfterBB =
1091 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
1093 // Any new code will be inserted in AfterBB.
1094 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 847 BasicBlock *AfterBB =
851 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
853 // Any new code will be inserted in AfterBB.
854 Builder.SetInsertPoint(AfterBB);
    [all...]
toy.cpp 1127 BasicBlock *AfterBB =
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 841 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction);
844 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
846 // Any new code will be inserted in AfterBB.
847 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 1137 BasicBlock *AfterBB =
1141 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
1143 // Any new code will be inserted in AfterBB.
1144 Builder.SetInsertPoint(AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]

Completed in 768 milliseconds