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

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 620 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
624 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
627 Builder.SetInsertPoint(ThenBB);
634 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
635 ThenBB = Builder.GetInsertBlock();
654 PN->addIncoming(ThenV, ThenBB);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 523 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
527 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
530 Builder.SetInsertPoint(ThenBB);
536 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
537 ThenBB = Builder.GetInsertBlock();
556 PN->addIncoming(ThenV, ThenBB);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 627 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
631 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
634 Builder.SetInsertPoint(ThenBB);
640 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
641 ThenBB = Builder.GetInsertBlock();
660 PN->addIncoming(ThenV, ThenBB);
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 835 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
839 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
842 Builder.SetInsertPoint(ThenBB);
849 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
850 ThenBB = Builder.GetInsertBlock();
869 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 835 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
839 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
842 Builder.SetInsertPoint(ThenBB);
849 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
850 ThenBB = Builder.GetInsertBlock();
869 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 835 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
839 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
842 Builder.SetInsertPoint(ThenBB);
849 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
850 ThenBB = Builder.GetInsertBlock();
869 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 824 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
828 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
831 Builder.SetInsertPoint(ThenBB);
838 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
839 ThenBB = Builder.GetInsertBlock();
858 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 846 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
850 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
853 Builder.SetInsertPoint(ThenBB);
860 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
861 ThenBB = Builder.GetInsertBlock();
880 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 731 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
735 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
738 Builder.SetInsertPoint(ThenBB);
745 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
746 ThenBB = Builder.GetInsertBlock();
765 PN->addIncoming(ThenV, ThenBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 836 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
840 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
843 Builder.SetInsertPoint(ThenBB);
850 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
851 ThenBB = Builder.GetInsertBlock();
870 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 831 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
835 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
838 Builder.SetInsertPoint(ThenBB);
845 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
846 ThenBB = Builder.GetInsertBlock();
865 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 749 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
753 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
756 Builder.SetInsertPoint(ThenBB);
762 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
763 ThenBB = Builder.GetInsertBlock();
781 PN->addIncoming(ThenV, ThenBB);
    [all...]
toy.cpp 1113 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 971 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
975 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
978 Builder.SetInsertPoint(ThenBB);
984 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
985 ThenBB = Builder.GetInsertBlock();
1003 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 731 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
735 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
738 Builder.SetInsertPoint(ThenBB);
744 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
745 ThenBB = Builder.GetInsertBlock();
763 PN->addIncoming(ThenV, ThenBB);
    [all...]
toy.cpp 1011 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
1015 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1018 Builder.SetInsertPoint(ThenBB);
1024 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
1025 ThenBB = Builder.GetInsertBlock();
1043 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 723 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
727 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
730 Builder.SetInsertPoint(ThenBB);
736 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
737 ThenBB = Builder.GetInsertBlock();
756 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 1015 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
1019 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1022 Builder.SetInsertPoint(ThenBB);
1029 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
1030 ThenBB = Builder.GetInsertBlock();
1049 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp     [all...]
  /external/llvm/tools/llvm-c-test/
echo.cpp 439 LLVMBasicBlockRef ThenBB = DeclareBB(LLVMValueAsBasicBlock(Then));
440 Dst = LLVMBuildCondBr(Builder, Cond, ThenBB, ElseBB);

Completed in 1073 milliseconds