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

  /external/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/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/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/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/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/MCJIT/complete/
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...]

Completed in 167 milliseconds