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 525 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
529 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
532 Builder.SetInsertPoint(ThenBB);
538 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
539 ThenBB = Builder.GetInsertBlock();
558 PN->addIncoming(ThenV, ThenBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 629 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
633 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
636 Builder.SetInsertPoint(ThenBB);
642 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
643 ThenBB = Builder.GetInsertBlock();
662 PN->addIncoming(ThenV, ThenBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 725 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
729 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
732 Builder.SetInsertPoint(ThenBB);
738 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
739 ThenBB = Builder.GetInsertBlock();
758 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 752 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
756 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
759 Builder.SetInsertPoint(ThenBB);
765 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
766 ThenBB = Builder.GetInsertBlock();
785 PN->addIncoming(ThenV, ThenBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 734 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
738 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
741 Builder.SetInsertPoint(ThenBB);
747 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
748 ThenBB = Builder.GetInsertBlock();
767 PN->addIncoming(ThenV, ThenBB);
    [all...]
toy.cpp 1014 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
1018 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1021 Builder.SetInsertPoint(ThenBB);
1027 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
1028 ThenBB = Builder.GetInsertBlock();
1047 PN->addIncoming(ThenV, ThenBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 974 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
978 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
981 Builder.SetInsertPoint(ThenBB);
987 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
988 ThenBB = Builder.GetInsertBlock();
1007 PN->addIncoming(ThenV, ThenBB);
    [all...]

Completed in 142 milliseconds