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

  /external/llvm/lib/Target/X86/
X86AtomicExpandPass.cpp 233 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
245 Builder.CreateBr(LoopBB);
248 Builder.SetInsertPoint(LoopBB);
259 Loaded->addIncoming(NewLoaded, LoopBB);
262 Builder.CreateCondBr(Success, ExitBB, LoopBB);
  /external/llvm/lib/CodeGen/
AtomicExpandLoadLinkedPass.cpp 156 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
167 Builder.CreateBr(LoopBB);
170 Builder.SetInsertPoint(LoopBB);
222 Builder.CreateCondBr(TryAgain, LoopBB, ExitBB);
270 auto LoopBB = BasicBlock::Create(Ctx, "cmpxchg.start", F, TryStoreBB);
281 Builder.CreateBr(LoopBB);
284 Builder.SetInsertPoint(LoopBB);
300 CI->isWeak() ? FailureBB : LoopBB);
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 588 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
590 // Insert an explicit fall through from the current block to the LoopBB.
591 Builder.CreateBr(LoopBB);
593 // Start insertion in LoopBB.
594 Builder.SetInsertPoint(LoopBB);
637 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 692 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
694 // Insert an explicit fall through from the current block to the LoopBB.
695 Builder.CreateBr(LoopBB);
697 // Start insertion in LoopBB.
698 Builder.SetInsertPoint(LoopBB);
741 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 798 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
800 // Insert an explicit fall through from the current block to the LoopBB.
801 Builder.CreateBr(LoopBB);
803 // Start insertion in LoopBB.
804 Builder.SetInsertPoint(LoopBB);
846 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 825 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
827 // Insert an explicit fall through from the current block to the LoopBB.
828 Builder.CreateBr(LoopBB);
830 // Start insertion in LoopBB.
831 Builder.SetInsertPoint(LoopBB);
873 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1047 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
1049 // Insert an explicit fall through from the current block to the LoopBB.
1050 Builder.CreateBr(LoopBB);
1052 // Start insertion in LoopBB.
1053 Builder.SetInsertPoint(LoopBB);
1095 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 807 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
809 // Insert an explicit fall through from the current block to the LoopBB.
810 Builder.CreateBr(LoopBB);
812 // Start insertion in LoopBB.
813 Builder.SetInsertPoint(LoopBB);
855 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
toy.cpp 1087 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
1089 // Insert an explicit fall through from the current block to the LoopBB.
1090 Builder.CreateBr(LoopBB);
1092 // Start insertion in LoopBB.
1093 Builder.SetInsertPoint(LoopBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]

Completed in 318 milliseconds