HomeSort by: relevance | last modified time | path
    Searched refs:ElseBB (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 849 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
852 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
866 TheFunction->getBasicBlockList().push_back(ElseBB);
867 Builder->SetInsertPoint(ElseBB);
874 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
875 ElseBB = Builder->GetInsertBlock();
883 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 849 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
852 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
866 TheFunction->getBasicBlockList().push_back(ElseBB);
867 Builder->SetInsertPoint(ElseBB);
874 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
875 ElseBB = Builder->GetInsertBlock();
883 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 849 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
852 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
866 TheFunction->getBasicBlockList().push_back(ElseBB);
867 Builder->SetInsertPoint(ElseBB);
874 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
875 ElseBB = Builder->GetInsertBlock();
883 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 832 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
835 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
849 TheFunction->getBasicBlockList().push_back(ElseBB);
850 Builder->SetInsertPoint(ElseBB);
857 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
858 ElseBB = Builder->GetInsertBlock();
866 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 636 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
639 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
653 TheFunction->getBasicBlockList().push_back(ElseBB);
654 Builder->SetInsertPoint(ElseBB);
661 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
662 ElseBB = Builder->GetInsertBlock();
670 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 748 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
751 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
765 TheFunction->getBasicBlockList().push_back(ElseBB);
766 Builder->SetInsertPoint(ElseBB);
773 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
774 ElseBB = Builder->GetInsertBlock();
782 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 855 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
858 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
872 TheFunction->getBasicBlockList().push_back(ElseBB);
873 Builder->SetInsertPoint(ElseBB);
880 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
881 ElseBB = Builder->GetInsertBlock();
889 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 854 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
857 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
871 TheFunction->getBasicBlockList().push_back(ElseBB);
872 Builder->SetInsertPoint(ElseBB);
879 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
880 ElseBB = Builder->GetInsertBlock();
888 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 750 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
753 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
766 TheFunction->getBasicBlockList().push_back(ElseBB);
767 Builder.SetInsertPoint(ElseBB);
773 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
774 ElseBB = Builder.GetInsertBlock();
782 PN->addIncoming(ElseV, ElseBB);
toy.cpp 1114 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
1117 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1130 TheFunction->getBasicBlockList().push_back(ElseBB);
1131 Builder.SetInsertPoint(ElseBB);
1137 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
1138 ElseBB = Builder.GetInsertBlock();
1146 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 972 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
975 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
988 TheFunction->getBasicBlockList().push_back(ElseBB);
989 Builder.SetInsertPoint(ElseBB);
995 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
996 ElseBB = Builder.GetInsertBlock();
1004 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 732 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
735 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
748 TheFunction->getBasicBlockList().push_back(ElseBB);
749 Builder.SetInsertPoint(ElseBB);
755 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
756 ElseBB = Builder.GetInsertBlock();
764 PN->addIncoming(ElseV, ElseBB);
toy.cpp 1012 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
1015 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1028 TheFunction->getBasicBlockList().push_back(ElseBB);
1029 Builder.SetInsertPoint(ElseBB);
1035 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
1036 ElseBB = Builder.GetInsertBlock();
1044 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 1023 BasicBlock *ElseBB = BasicBlock::Create(*TheContext, "else");
1026 Builder->CreateCondBr(CondV, ThenBB, ElseBB);
1040 TheFunction->getBasicBlockList().push_back(ElseBB);
1041 Builder->SetInsertPoint(ElseBB);
1048 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
1049 ElseBB = Builder->GetInsertBlock();
1057 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 1192 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
1195 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1208 TheFunction->getBasicBlockList().push_back(ElseBB);
1209 Builder.SetInsertPoint(ElseBB);
1215 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
1216 ElseBB = Builder.GetInsertBlock();
1224 PN->addIncoming(ElseV, ElseBB);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeGPU.cpp 2752 llvm::BasicBlock *ElseBB = CGF.createBasicBlock("else");
2757 Bld.CreateCondBr(IsWarpMaster, ThenBB, ElseBB);
2794 CGF.EmitBlock(ElseBB);
3042 llvm::BasicBlock *ElseBB = CGF.createBasicBlock("else");
3044 Bld.CreateCondBr(CondReduce, ThenBB, ElseBB);
3056 CGF.EmitBlock(ElseBB);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp 511 LLVMBasicBlockRef ElseBB = DeclareBB(LLVMValueAsBasicBlock(Else));
514 Dst = LLVMBuildCondBr(Builder, CloneValue(Cond), ThenBB, ElseBB);

Completed in 31 milliseconds