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

  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 307 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
317 Builder.CreateBr(LoopBB);
320 Builder.SetInsertPoint(LoopBB);
330 Builder.CreateCondBr(TryAgain, LoopBB, ExitBB);
364 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
377 Builder.CreateBr(LoopBB);
380 Builder.SetInsertPoint(LoopBB);
391 Loaded->addIncoming(NewLoaded, LoopBB);
394 Builder.CreateCondBr(Success, ExitBB, LoopBB);
447 auto LoopBB = BasicBlock::Create(Ctx, "cmpxchg.start", F, TryStoreBB)
    [all...]
MachineBlockPlacement.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 650 BasicBlock *LoopBB =
653 // Insert an explicit fall through from the current block to the LoopBB.
654 Builder.CreateBr(LoopBB);
656 // Start insertion in LoopBB.
657 Builder.SetInsertPoint(LoopBB);
703 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 758 BasicBlock *LoopBB =
761 // Insert an explicit fall through from the current block to the LoopBB.
762 Builder.CreateBr(LoopBB);
764 // Start insertion in LoopBB.
765 Builder.SetInsertPoint(LoopBB);
811 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 873 BasicBlock *LoopBB =
876 // Insert an explicit fall through from the current block to the LoopBB.
877 Builder.CreateBr(LoopBB);
879 // Start insertion in LoopBB.
880 Builder.SetInsertPoint(LoopBB);
924 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 1074 BasicBlock *LoopBB =
1077 // Insert an explicit fall through from the current block to the LoopBB.
1078 Builder.CreateBr(LoopBB);
1080 // Start insertion in LoopBB.
1081 Builder.SetInsertPoint(LoopBB);
1125 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...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 932 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
934 // Insert an explicit fall through from the current block to the LoopBB.
935 C.getBuilder().CreateBr(LoopBB);
937 // Start insertion in LoopBB.
938 C.getBuilder().SetInsertPoint(LoopBB);
980 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 931 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
933 // Insert an explicit fall through from the current block to the LoopBB.
934 C.getBuilder().CreateBr(LoopBB);
936 // Start insertion in LoopBB.
937 C.getBuilder().SetInsertPoint(LoopBB);
979 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 931 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
933 // Insert an explicit fall through from the current block to the LoopBB.
934 C.getBuilder().CreateBr(LoopBB);
936 // Start insertion in LoopBB.
937 C.getBuilder().SetInsertPoint(LoopBB);
979 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 931 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
933 // Insert an explicit fall through from the current block to the LoopBB.
934 C.getBuilder().CreateBr(LoopBB);
936 // Start insertion in LoopBB.
937 C.getBuilder().SetInsertPoint(LoopBB);
979 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 324 BasicBlock *LoopBB = (*LoopI)->getEntry();
325 if (LI->getLoopFor(LoopBB) == CurrentLoop) {

Completed in 191 milliseconds