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

  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 586 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
588 // Insert an explicit fall through from the current block to the LoopBB.
589 Builder.CreateBr(LoopBB);
591 // Start insertion in LoopBB.
592 Builder.SetInsertPoint(LoopBB);
635 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 690 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
692 // Insert an explicit fall through from the current block to the LoopBB.
693 Builder.CreateBr(LoopBB);
695 // Start insertion in LoopBB.
696 Builder.SetInsertPoint(LoopBB);
739 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 796 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
798 // Insert an explicit fall through from the current block to the LoopBB.
799 Builder.CreateBr(LoopBB);
801 // Start insertion in LoopBB.
802 Builder.SetInsertPoint(LoopBB);
844 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 824 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
826 // Insert an explicit fall through from the current block to the LoopBB.
827 Builder.CreateBr(LoopBB);
829 // Start insertion in LoopBB.
830 Builder.SetInsertPoint(LoopBB);
872 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1046 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
1048 // Insert an explicit fall through from the current block to the LoopBB.
1049 Builder.CreateBr(LoopBB);
1051 // Start insertion in LoopBB.
1052 Builder.SetInsertPoint(LoopBB);
1094 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 806 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
808 // Insert an explicit fall through from the current block to the LoopBB.
809 Builder.CreateBr(LoopBB);
811 // Start insertion in LoopBB.
812 Builder.SetInsertPoint(LoopBB);
854 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
toy.cpp 1086 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
1088 // Insert an explicit fall through from the current block to the LoopBB.
1089 Builder.CreateBr(LoopBB);
1091 // Start insertion in LoopBB.
1092 Builder.SetInsertPoint(LoopBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]

Completed in 154 milliseconds