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

  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 69 BasicBlock *LoopBB = BasicBlock::Create(Context, "loadstoreloop", &F, NewBB);
71 OrigBB->getTerminator()->setSuccessor(0, LoopBB);
83 IRBuilder<> LoopBuilder(LoopBB);
103 LoopIndex->addIncoming(NewIndex, LoopBB);
105 LoopBuilder.CreateCondBr(LoopBuilder.CreateICmpULT(NewIndex, CopyLen), LoopBB,
169 BasicBlock *LoopBB =
171 IRBuilder<> LoopBuilder(LoopBB);
181 ExitBB, LoopBB);
182 LoopPhi->addIncoming(IndexPtr, LoopBB);
184 BranchInst::Create(ExitBB, LoopBB, CompareN, ThenTerm)
    [all...]
  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 419 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
429 Builder.CreateBr(LoopBB);
432 Builder.SetInsertPoint(LoopBB);
441 Builder.CreateCondBr(TryAgain, LoopBB, ExitBB);
498 auto LoopBB = BasicBlock::Create(Ctx, "cmpxchg.start", F, TryStoreBB);
510 Builder.CreateBr(LoopBB);
513 Builder.SetInsertPoint(LoopBB);
528 CI->isWeak() ? FailureBB : LoopBB);
650 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
663 Builder.CreateBr(LoopBB);
    [all...]
MachineBlockPlacement.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 674 BasicBlock *LoopBB =
677 // Insert an explicit fall through from the current block to the LoopBB.
678 Builder.CreateBr(LoopBB);
680 // Start insertion in LoopBB.
681 Builder.SetInsertPoint(LoopBB);
727 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 785 BasicBlock *LoopBB =
788 // Insert an explicit fall through from the current block to the LoopBB.
789 Builder.CreateBr(LoopBB);
791 // Start insertion in LoopBB.
792 Builder.SetInsertPoint(LoopBB);
838 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 900 BasicBlock *LoopBB =
903 // Insert an explicit fall through from the current block to the LoopBB.
904 Builder.CreateBr(LoopBB);
906 // Start insertion in LoopBB.
907 Builder.SetInsertPoint(LoopBB);
951 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/Chapter8/
toy.cpp 1093 BasicBlock *LoopBB =
1096 // Insert an explicit fall through from the current block to the LoopBB.
1097 Builder.CreateBr(LoopBB);
1099 // Start insertion in LoopBB.
1100 Builder.SetInsertPoint(LoopBB);
1144 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
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/initial/
toy.cpp 930 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
932 // Insert an explicit fall through from the current block to the LoopBB.
933 C.getBuilder().CreateBr(LoopBB);
935 // Start insertion in LoopBB.
936 C.getBuilder().SetInsertPoint(LoopBB);
978 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 930 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
932 // Insert an explicit fall through from the current block to the LoopBB.
933 C.getBuilder().CreateBr(LoopBB);
935 // Start insertion in LoopBB.
936 C.getBuilder().SetInsertPoint(LoopBB);
978 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 930 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
932 // Insert an explicit fall through from the current block to the LoopBB.
933 C.getBuilder().CreateBr(LoopBB);
935 // Start insertion in LoopBB.
936 C.getBuilder().SetInsertPoint(LoopBB);
978 C.getBuilder().CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 324 BasicBlock *LoopBB = (*LoopI)->getEntry();
325 if (LI->getLoopFor(LoopBB) == CurrentLoop) {
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]

Completed in 263 milliseconds