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

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 608 BasicBlock *ThenBB =
613 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
616 Builder.SetInsertPoint(ThenBB);
623 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
624 ThenBB = Builder.GetInsertBlock();
644 PN->addIncoming(ThenV, ThenBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 719 BasicBlock *ThenBB =
724 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
727 Builder.SetInsertPoint(ThenBB);
734 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
735 ThenBB = Builder.GetInsertBlock();
755 PN->addIncoming(ThenV, ThenBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 824 BasicBlock *ThenBB =
829 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
832 Builder.SetInsertPoint(ThenBB);
839 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
840 ThenBB = Builder.GetInsertBlock();
860 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 751 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
755 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
758 Builder.SetInsertPoint(ThenBB);
764 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
765 ThenBB = Builder.GetInsertBlock();
784 PN->addIncoming(ThenV, ThenBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 973 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
977 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
980 Builder.SetInsertPoint(ThenBB);
986 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
987 ThenBB = Builder.GetInsertBlock();
1006 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 733 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
737 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
740 Builder.SetInsertPoint(ThenBB);
746 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
747 ThenBB = Builder.GetInsertBlock();
766 PN->addIncoming(ThenV, ThenBB);
    [all...]
toy.cpp 1013 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
1017 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1020 Builder.SetInsertPoint(ThenBB);
1026 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
1027 ThenBB = Builder.GetInsertBlock();
1046 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 1015 BasicBlock *ThenBB =
1020 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1023 Builder.SetInsertPoint(ThenBB);
1030 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
1031 ThenBB = Builder.GetInsertBlock();
1051 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 858 BasicBlock *ThenBB = BasicBlock::Create(C.getLLVMContext(), "then", TheFunction);
862 C.getBuilder().CreateCondBr(CondV, ThenBB, ElseBB);
865 C.getBuilder().SetInsertPoint(ThenBB);
871 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
872 ThenBB = C.getBuilder().GetInsertBlock();
891 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 857 BasicBlock *ThenBB = BasicBlock::Create(C.getLLVMContext(), "then", TheFunction);
861 C.getBuilder().CreateCondBr(CondV, ThenBB, ElseBB);
864 C.getBuilder().SetInsertPoint(ThenBB);
870 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
871 ThenBB = C.getBuilder().GetInsertBlock();
890 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 857 BasicBlock *ThenBB = BasicBlock::Create(C.getLLVMContext(), "then", TheFunction);
861 C.getBuilder().CreateCondBr(CondV, ThenBB, ElseBB);
864 C.getBuilder().SetInsertPoint(ThenBB);
870 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
871 ThenBB = C.getBuilder().GetInsertBlock();
890 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 857 BasicBlock *ThenBB = BasicBlock::Create(C.getLLVMContext(), "then", TheFunction);
861 C.getBuilder().CreateCondBr(CondV, ThenBB, ElseBB);
864 C.getBuilder().SetInsertPoint(ThenBB);
870 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
871 ThenBB = C.getBuilder().GetInsertBlock();
890 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp 579 llvm::BasicBlock *ThenBB = nullptr;
582 ThenBB = createBasicBlock(".omp.lastprivate.then");
584 Builder.CreateCondBr(IsLastIterCond, ThenBB, DoneBB);
585 EmitBlock(ThenBB);
    [all...]

Completed in 335 milliseconds