HomeSort by relevance Sort by last modified time
    Searched defs:LoopBB (Results 1 - 25 of 27) sorted by null

1 2

  /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/unittests/Analysis/
ScalarEvolutionTest.cpp 245 BasicBlock *LoopBB = BasicBlock::Create(Context, "loop", F);
247 BranchInst::Create(LoopBB, EntryBB);
248 BranchInst::Create(LoopBB, ExitBB, UndefValue::get(Type::getInt1Ty(Context)),
249 LoopBB);
252 auto *PN = PHINode::Create(Ty, 2, "", &*LoopBB->begin());
254 PN->addIncoming(UndefValue::get(Ty), LoopBB);
  /external/llvm/lib/Target/AMDGPU/
SILowerControlFlow.cpp 101 MachineBasicBlock &LoopBB,
106 void emitLoadM0FromVGPRLoop(MachineBasicBlock &LoopBB, DebugLoc DL,
416 MachineBasicBlock &LoopBB,
426 LoopBB.addLiveIn(Val->getReg());
437 LoopBB.addLiveIn(Src->getReg());
440 LoopBB.addLiveIn(IdxReg.getReg());
441 LoopBB.sortUniqueLiveIns();
444 void SILowerControlFlow::emitLoadM0FromVGPRLoop(MachineBasicBlock &LoopBB,
449 MachineBasicBlock::iterator I = LoopBB.begin();
452 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::V_READFIRSTLANE_B32), AMDGPU::VCC_LO
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 684 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
686 // Insert an explicit fall through from the current block to the LoopBB.
687 Builder.CreateBr(LoopBB);
689 // Start insertion in LoopBB.
690 Builder.SetInsertPoint(LoopBB);
736 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/swiftshader/third_party/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/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 909 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
911 // Insert an explicit fall through from the current block to the LoopBB.
912 Builder.CreateBr(LoopBB);
914 // Start insertion in LoopBB.
915 Builder.SetInsertPoint(LoopBB);
959 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 909 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
911 // Insert an explicit fall through from the current block to the LoopBB.
912 Builder.CreateBr(LoopBB);
914 // Start insertion in LoopBB.
915 Builder.SetInsertPoint(LoopBB);
959 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 909 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
911 // Insert an explicit fall through from the current block to the LoopBB.
912 Builder.CreateBr(LoopBB);
914 // Start insertion in LoopBB.
915 Builder.SetInsertPoint(LoopBB);
959 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 898 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
900 // Insert an explicit fall through from the current block to the LoopBB.
901 Builder.CreateBr(LoopBB);
903 // Start insertion in LoopBB.
904 Builder.SetInsertPoint(LoopBB);
948 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 920 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
922 // Insert an explicit fall through from the current block to the LoopBB.
923 Builder.CreateBr(LoopBB);
925 // Start insertion in LoopBB.
926 Builder.SetInsertPoint(LoopBB);
970 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 795 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
797 // Insert an explicit fall through from the current block to the LoopBB.
798 Builder.CreateBr(LoopBB);
800 // Start insertion in LoopBB.
801 Builder.SetInsertPoint(LoopBB);
847 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 910 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
912 // Insert an explicit fall through from the current block to the LoopBB.
913 Builder.CreateBr(LoopBB);
915 // Start insertion in LoopBB.
916 Builder.SetInsertPoint(LoopBB);
960 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 905 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
907 // Insert an explicit fall through from the current block to the LoopBB.
908 Builder.CreateBr(LoopBB);
910 // Start insertion in LoopBB.
911 Builder.SetInsertPoint(LoopBB);
955 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 821 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
823 // Insert an explicit fall through from the current block to the LoopBB.
824 Builder.CreateBr(LoopBB);
826 // Start insertion in LoopBB.
827 Builder.SetInsertPoint(LoopBB);
869 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 803 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
805 // Insert an explicit fall through from the current block to the LoopBB.
806 Builder.CreateBr(LoopBB);
808 // Start insertion in LoopBB.
809 Builder.SetInsertPoint(LoopBB);
851 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 334 BasicBlock *LoopBB = (*LoopI)->getEntry();
335 if (LI->getLoopFor(LoopBB) == CurrentLoop) {
  /external/swiftshader/third_party/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/swiftshader/third_party/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/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 1091 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
1093 // Insert an explicit fall through from the current block to the LoopBB.
1094 Builder.CreateBr(LoopBB);
1096 // Start insertion in LoopBB.
1097 Builder.SetInsertPoint(LoopBB);
1141 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1043 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
1045 // Insert an explicit fall through from the current block to the LoopBB.
1046 Builder.CreateBr(LoopBB);
1048 // Start insertion in LoopBB.
1049 Builder.SetInsertPoint(LoopBB);
1091 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
    [all...]

Completed in 398 milliseconds

1 2