reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

examples/BrainF/BrainF.cpp
   92   BasicBlock* BB = builder->GetInsertBlock();
  297           BasicBlock *bb_0 = builder->GetInsertBlock();
  439       phi->addIncoming(curhead, builder->GetInsertBlock());
examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
  844   Function *TheFunction = Builder->GetInsertBlock()->getParent();
  863   ThenBB = Builder->GetInsertBlock();
  875   ElseBB = Builder->GetInsertBlock();
  907   Function *TheFunction = Builder->GetInsertBlock()->getParent();
  990   Function *TheFunction = Builder->GetInsertBlock()->getParent();
examples/Kaleidoscope/BuildingAJIT/Chapter2/toy.cpp
  844   Function *TheFunction = Builder->GetInsertBlock()->getParent();
  863   ThenBB = Builder->GetInsertBlock();
  875   ElseBB = Builder->GetInsertBlock();
  907   Function *TheFunction = Builder->GetInsertBlock()->getParent();
  990   Function *TheFunction = Builder->GetInsertBlock()->getParent();
examples/Kaleidoscope/BuildingAJIT/Chapter3/toy.cpp
  843   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  862   ThenBB = Builder.GetInsertBlock();
  874   ElseBB = Builder.GetInsertBlock();
  906   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  989   Function *TheFunction = Builder.GetInsertBlock()->getParent();
examples/Kaleidoscope/BuildingAJIT/Chapter4/toy.cpp
  829   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  848   ThenBB = Builder.GetInsertBlock();
  860   ElseBB = Builder.GetInsertBlock();
  892   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  975   Function *TheFunction = Builder.GetInsertBlock()->getParent();
examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp
  853   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  872   ThenBB = Builder.GetInsertBlock();
  884   ElseBB = Builder.GetInsertBlock();
  916   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  999   Function *TheFunction = Builder.GetInsertBlock()->getParent();
examples/Kaleidoscope/Chapter5/toy.cpp
  630   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  649   ThenBB = Builder.GetInsertBlock();
  661   ElseBB = Builder.GetInsertBlock();
  696   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  697   BasicBlock *PreheaderBB = Builder.GetInsertBlock();
  745   BasicBlock *LoopEndBB = Builder.GetInsertBlock();
examples/Kaleidoscope/Chapter6/toy.cpp
  742   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  761   ThenBB = Builder.GetInsertBlock();
  773   ElseBB = Builder.GetInsertBlock();
  808   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  809   BasicBlock *PreheaderBB = Builder.GetInsertBlock();
  857   BasicBlock *LoopEndBB = Builder.GetInsertBlock();
examples/Kaleidoscope/Chapter7/toy.cpp
  849   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  868   ThenBB = Builder.GetInsertBlock();
  880   ElseBB = Builder.GetInsertBlock();
  912   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  995   Function *TheFunction = Builder.GetInsertBlock()->getParent();
examples/Kaleidoscope/Chapter8/toy.cpp
  848   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  867   ThenBB = Builder.GetInsertBlock();
  879   ElseBB = Builder.GetInsertBlock();
  911   Function *TheFunction = Builder.GetInsertBlock()->getParent();
  994   Function *TheFunction = Builder.GetInsertBlock()->getParent();
examples/Kaleidoscope/Chapter9/toy.cpp
 1011   Function *TheFunction = Builder.GetInsertBlock()->getParent();
 1030   ThenBB = Builder.GetInsertBlock();
 1042   ElseBB = Builder.GetInsertBlock();
 1074   Function *TheFunction = Builder.GetInsertBlock()->getParent();
 1159   Function *TheFunction = Builder.GetInsertBlock()->getParent();
 1274                             Builder.GetInsertBlock());
include/llvm/Analysis/ScalarEvolutionExpander.h
  114           : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()),
include/llvm/IR/IRBuilder.h
  194     return InsertPoint(GetInsertBlock(), GetInsertPoint());
  199     InsertPoint IP(GetInsertBlock(), GetInsertPoint());
  287         : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()),
lib/Analysis/ScalarEvolutionExpander.cpp
  162   BasicBlock::iterator IP = findInsertPointAfter(I, Builder.GetInsertBlock());
  179   BasicBlock::iterator BlockBegin = Builder.GetInsertBlock()->begin();
  217     while (const Loop *L = SE.LI.getLoopFor(Builder.GetInsertBlock())) {
  525     BasicBlock::iterator BlockBegin = Builder.GetInsertBlock()->begin();
  546     while (const Loop *L = SE.LI.getLoopFor(Builder.GetInsertBlock())) {
  566     while (const Loop *L = SE.LI.getLoopFor(Builder.GetInsertBlock())) {
 1519         findInsertPointAfter(cast<Instruction>(V), Builder.GetInsertBlock());
 1836     for (Loop *L = SE.LI.getLoopFor(Builder.GetInsertBlock());;
lib/CodeGen/AtomicExpandPass.cpp
 1007   BasicBlock *BB = Builder.GetInsertBlock();
 1350   BasicBlock *BB = Builder.GetInsertBlock();
lib/CodeGen/TargetLoweringBase.cpp
 1681   Module *M = IRB.GetInsertBlock()->getParent()->getParent();
 1715   Module *M = IRB.GetInsertBlock()->getParent()->getParent();
 1771     Module &M = *IRB.GetInsertBlock()->getParent()->getParent();
lib/ExecutionEngine/Orc/Speculation.cpp
  130           assert(Mutator.GetInsertBlock()->getParent() == &Fn &&
lib/IR/Core.cpp
 2640   BasicBlock *CurBB = unwrap(Builder)->GetInsertBlock();
 3013    return wrap(unwrap(Builder)->GetInsertBlock());
 3137     unwrap(B)->GetInsertBlock()->getParent()->setPersonalityFn(
 3422   Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
 3425   Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
 3433   Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
 3436   Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
 3478      CallInst::CreateFree(unwrap(PointerVal), unwrap(B)->GetInsertBlock())));
lib/IR/IRBuilder.cpp
   81   Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI);
   93   Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),
  316   Module *M = Builder->GetInsertBlock()->getParent()->getParent();
  324   Module *M = GetInsertBlock()->getParent()->getParent();
  333   Module *M = GetInsertBlock()->getParent()->getParent();
  611   Module *M = Builder->GetInsertBlock()->getParent()->getParent();
  662   Module *M = Builder->GetInsertBlock()->getParent()->getParent();
lib/Target/AArch64/AArch64ISelLowering.cpp
12171   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
12210   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
12217   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
12261   Module *M = IRB.GetInsertBlock()->getParent()->getParent();
lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
  285   Module *M = B.GetInsertBlock()->getModule();
  344   Module *M = B.GetInsertBlock()->getModule();
lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
  182   const Function &F = *Builder.GetInsertBlock()->getParent();
  270       AMDGPUSubtarget::get(*TM, *Builder.GetInsertBlock()->getParent());
lib/Target/ARM/ARMISelLowering.cpp
16403   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
16608   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
16646   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
16653   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
lib/Target/Hexagon/HexagonISelLowering.cpp
 3241   BasicBlock *BB = Builder.GetInsertBlock();
 3264   BasicBlock *BB = Builder.GetInsertBlock();
lib/Target/PowerPC/PPCISelLowering.cpp
10261   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10288               Builder.GetInsertBlock()->getParent()->getParent(),
lib/Target/X86/X86ISelLowering.cpp
26541   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
lib/Transforms/IPO/LowerTypeTests.cpp
  809   P->addIncoming(Bit, ThenB.GetInsertBlock());
lib/Transforms/Instrumentation/BoundsChecking.cpp
  180     Function *Fn = IRB.GetInsertBlock()->getParent();
lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
  500         IRB.GetInsertBlock()->getParent()->getParent()->getOrInsertGlobal(
  618     Module *M = IRB.GetInsertBlock()->getParent()->getParent();
  837   Module *M = IRB.GetInsertBlock()->getParent()->getParent();
  904   Module *M = IRB.GetInsertBlock()->getParent()->getParent();
  939   Function *F = IRB.GetInsertBlock()->getParent();
 1021   Module *M = IRB.GetInsertBlock()->getParent()->getParent();
 1226   if (EntryIRB.GetInsertBlock() != &F.getEntryBlock()) {
 1228     for (auto II = EntryIRB.GetInsertBlock()->begin(),
 1229               IE = EntryIRB.GetInsertBlock()->end();
lib/Transforms/Instrumentation/PoisonChecking.cpp
  243   Module *M = B.GetInsertBlock()->getModule();
lib/Transforms/Scalar/LoopIdiomRecognize.cpp
 1639   Module *M = IRBuilder.GetInsertBlock()->getParent()->getParent();
 1653   Module *M = IRBuilder.GetInsertBlock()->getParent()->getParent();
lib/Transforms/Utils/BuildLibCalls.cpp
  835   Module *M = B.GetInsertBlock()->getModule();
  849   LLVMContext &Context = B.GetInsertBlock()->getContext();
  870   LLVMContext &Context = B.GetInsertBlock()->getContext();
  911   Module *M = B.GetInsertBlock()->getModule();
  915   LLVMContext &Context = B.GetInsertBlock()->getContext();
  931   LLVMContext &Context = B.GetInsertBlock()->getContext();
  940   LLVMContext &Context = B.GetInsertBlock()->getContext();
  949   LLVMContext &Context = B.GetInsertBlock()->getContext();
 1047   Module *M = B.GetInsertBlock()->getModule();
 1089   Module *M = B.GetInsertBlock()->getModule();
 1134   Module *M = B.GetInsertBlock()->getModule();
 1157   Module *M = B.GetInsertBlock()->getModule();
 1174   Module *M = B.GetInsertBlock()->getModule();
 1195   Module *M = B.GetInsertBlock()->getModule();
 1215   Module *M = B.GetInsertBlock()->getModule();
 1234   Module *M = B.GetInsertBlock()->getModule();
 1253   Module *M = B.GetInsertBlock()->getModule();
 1254   LLVMContext &Context = B.GetInsertBlock()->getContext();
 1277   Module *M = B.GetInsertBlock()->getModule();
 1279   LLVMContext &Context = B.GetInsertBlock()->getContext();
 1297   Module *M = B.GetInsertBlock()->getModule();
 1300   IntegerType *PtrType = DL.getIntPtrType((B.GetInsertBlock()->getContext()));
 1319   Module *M = B.GetInsertBlock()->getModule();
 1320   LLVMContext &Context = B.GetInsertBlock()->getContext();
 1341   Module *M = B.GetInsertBlock()->getModule();
 1360   Module *M = B.GetInsertBlock()->getModule();
 1381   Module *M = B.GetInsertBlock()->getModule();
 1382   LLVMContext &Context = B.GetInsertBlock()->getContext();
lib/Transforms/Utils/FlattenCFG.cpp
  449   BasicBlock *SaveInsertBB = Builder.GetInsertBlock();
lib/Transforms/Utils/IntegerDivision.cpp
  180   BasicBlock *IBB = Builder.GetInsertBlock();
  217   BasicBlock *SpecialCases = Builder.GetInsertBlock();
lib/Transforms/Utils/SanitizerStats.cpp
   43   Function *F = B.GetInsertBlock()->getParent();
lib/Transforms/Utils/SimplifyLibCalls.cpp
 1177   IntegerType *SizeType = DL.getIntPtrType(B.GetInsertBlock()->getContext());
 2102     BasicBlock &EntryBB = B.GetInsertBlock()->getParent()->getEntryBlock();
 2389     Module *M = B.GetInsertBlock()->getParent()->getParent();
 2401     Module *M = B.GetInsertBlock()->getParent()->getParent();
 2484     Module *M = B.GetInsertBlock()->getParent()->getParent();
 2496     Module *M = B.GetInsertBlock()->getParent()->getParent();
 2657     Module *M = B.GetInsertBlock()->getParent()->getParent();
 2669     Module *M = B.GetInsertBlock()->getParent()->getParent();
tools/clang/lib/CodeGen/CGAtomic.cpp
 1775   auto *CurBB = CGF.Builder.GetInsertBlock();
 1792   PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
 1857   auto *CurBB = CGF.Builder.GetInsertBlock();
 1872   PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
tools/clang/lib/CodeGen/CGBlocks.cpp
 1632   llvm::BasicBlock *entry = Builder.GetInsertBlock();
 1645   llvm::BasicBlock *resume = Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGBuiltin.cpp
  927     BasicBlock *Begin = Builder.GetInsertBlock();
 2302     BasicBlock *Begin = Builder.GetInsertBlock();
 2505     BasicBlock *Entry = Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGCall.cpp
 2589   llvm::BasicBlock *BB = CGF.Builder.GetInsertBlock();
 2749     llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
 2782   llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock();
 3278       originBB = CGF.Builder.GetInsertBlock();
 3314     llvm::BasicBlock *copyBB = CGF.Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGClass.cpp
  330     origBB = Builder.GetInsertBlock();
  362     llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
 1946   llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
 2004   cur->addIncoming(next, Builder.GetInsertBlock());
tools/clang/lib/CodeGen/CGCleanup.cpp
  533   bool WasInsertBlock = CGF.Builder.GetInsertBlock() == Entry;
  676   llvm::BasicBlock *FallthroughSource = Builder.GetInsertBlock();
  900       llvm::BasicBlock *NormalExit = Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGCoroutine.cpp
  433     BasicBlock *SaveInsertBlock = CGF.Builder.GetInsertBlock();
  537   const bool CanFallthrough = CGF.Builder.GetInsertBlock();
  548   auto *EntryBB = Builder.GetInsertBlock();
  569   auto *AllocOrInvokeContBB = Builder.GetInsertBlock();
  673     const bool CanFallthrough = Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGDebugInfo.cpp
 4008             Builder.GetInsertBlock());
 4034                          Builder.GetInsertBlock());
 4075                        Builder.GetInsertBlock());
 4092   if (Builder.GetInsertBlock() == nullptr)
 4154     DBuilder.insertDeclare(Storage, D, Expr, DL, Builder.GetInsertBlock());
 4335                          Builder.GetInsertBlock());
tools/clang/lib/CodeGen/CGDecl.cpp
 1723     llvm::BasicBlock *OriginBB = Builder.GetInsertBlock();
 2161   llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
 2185   elementPast->addIncoming(element, Builder.GetInsertBlock());
tools/clang/lib/CodeGen/CGExpr.cpp
 4247   lhsBlock = Builder.GetInsertBlock();
 4259   rhsBlock = Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGExprAgg.cpp
  589     llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
  626     currentElement->addIncoming(nextElement, Builder.GetInsertBlock());
 1666   llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
 1715   index->addIncoming(nextIndex, Builder.GetInsertBlock());
tools/clang/lib/CodeGen/CGExprCXX.cpp
 1207   llvm::BasicBlock *EntryBB = Builder.GetInsertBlock();
 1265   CurPtrPhi->addIncoming(NextPtr, Builder.GetInsertBlock());
 1660     nullCheckBB = Builder.GetInsertBlock();
 1737     llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
 2250     CastNotNull = Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGExprComplex.cpp
 1032   LHSBlock = Builder.GetInsertBlock();
 1039   RHSBlock = Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGExprScalar.cpp
 2397     llvm::BasicBlock *startBB = Builder.GetInsertBlock();
 2560     llvm::BasicBlock *curBlock = Builder.GetInsertBlock();
 2890     llvm::BasicBlock *startBB = Builder.GetInsertBlock();
 2916     llvm::BasicBlock *curBlock = Builder.GetInsertBlock();
 3109   llvm::BasicBlock *initialBB = Builder.GetInsertBlock();
 3622       llvm::BasicBlock *Orig = Builder.GetInsertBlock();
 4025   RHSBlock = Builder.GetInsertBlock();
 4113   RHSBlock = Builder.GetInsertBlock();
 4264   LHSBlock = Builder.GetInsertBlock();
 4272   RHSBlock = Builder.GetInsertBlock();
 4665       Builder.GetInsertBlock()->getParent(), PtrTy->getPointerAddressSpace());
tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
  360     llvm::BasicBlock *PreheaderBB = CGF.Builder.GetInsertBlock();
  396     LoopBB = CGF.Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGObjC.cpp
 1887   index->addIncoming(zero, Builder.GetInsertBlock());
 1888   count->addIncoming(refetchCount, Builder.GetInsertBlock());
tools/clang/lib/CodeGen/CGObjCGNU.cpp
 2653     startBB = Builder.GetInsertBlock();
 2729     messageBB = CGF.Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGObjCMac.cpp
 1741     llvm::BasicBlock *callBB = CGF.Builder.GetInsertBlock();
 1766     assert(CGF.Builder.GetInsertBlock() == NullBB);
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
  157                               CGF.Builder.GetInsertBlock());
  174                               CGF.Builder.GetInsertBlock());
  890   llvm::BasicBlock *EntryBB = CGF.Builder.GetInsertBlock();
  927     SrcElementPHI->addIncoming(SrcElementNext, CGF.Builder.GetInsertBlock());
  937   DestElementPHI->addIncoming(DestElementNext, CGF.Builder.GetInsertBlock());
 1608         Undef, CGF.Int32Ty, "svcpt", CGF.Builder.GetInsertBlock());
 1708           CGF.Builder.GetInsertBlock() == TopBlock ||
 1712               CGF.Builder.GetInsertBlock()) {
 1716         if (CGF.Builder.GetInsertBlock() == TopBlock) {
 5494   llvm::BasicBlock *EntryBB = CGF.Builder.GetInsertBlock();
 5530   LHSElementPHI->addIncoming(LHSElementNext, CGF.Builder.GetInsertBlock());
 5531   RHSElementPHI->addIncoming(RHSElementNext, CGF.Builder.GetInsertBlock());
 8913   llvm::BasicBlock *EntryBB = MapperCGF.Builder.GetInsertBlock();
tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
 2900       llvm::BasicBlock *CurrentBB = Bld.GetInsertBlock();
tools/clang/lib/CodeGen/CGStmt.cpp
  109     llvm::BasicBlock *incoming = Builder.GetInsertBlock();
  114     llvm::BasicBlock *outgoing = Builder.GetInsertBlock();
  466   llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
  489   llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
  620   llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
 1215   llvm::BasicBlock *RestoreBB = Builder.GetInsertBlock();
 1288       if (Builder.GetInsertBlock()) {
tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
  662   llvm::BasicBlock *EntryBB = Builder.GetInsertBlock();
  693   DestElementPHI->addIncoming(DestElementNext, Builder.GetInsertBlock());
  694   SrcElementPHI->addIncoming(SrcElementNext, Builder.GetInsertBlock());
tools/clang/lib/CodeGen/CodeGenFunction.cpp
  245   llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
 1218       !FD->getReturnType()->isVoidType() && Builder.GetInsertBlock()) {
 1588   llvm::BasicBlock *originBB = CGF.Builder.GetInsertBlock();
 2031                                                   Builder.GetInsertBlock());
 2244   llvm::IRBuilder<> IRB(Builder.GetInsertBlock(), Builder.GetInsertPoint());
 2346                  Builder.GetInsertBlock()->getParent()->getParent(),
 2349   assert(&(Builder.GetInsertBlock()->back()) == Assumption &&
tools/clang/lib/CodeGen/CodeGenFunction.h
 1008       : StartBB(CGF.Builder.GetInsertBlock()) {}
 2103     return Builder.GetInsertBlock() != nullptr;
tools/clang/lib/CodeGen/CodeGenPGO.cpp
  896   if (!Builder.GetInsertBlock())
  923   if (!ValuePtr || !ValueSite || !Builder.GetInsertBlock())
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
  725       FnVirtual = Builder.GetInsertBlock();
  770       FnNonVirtual = Builder.GetInsertBlock();
tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  870   llvm::BasicBlock *CatchPadBB = CGF.Builder.GetInsertBlock();
 2991     OriginalBB = Builder.GetInsertBlock();
 3123   llvm::BasicBlock *OriginalBB = Builder.GetInsertBlock();
tools/polly/include/polly/CodeGen/LoopGenerators.h
  119         M(Builder.GetInsertBlock()->getParent()->getParent()) {}
tools/polly/lib/CodeGen/BlockGenerators.cpp
   87   assert(IP != Builder.GetInsertBlock()->end() &&
  399   auto NewBB = Builder.GetInsertBlock();
  429   BasicBlock *CopyBB = SplitBlock(Builder.GetInsertBlock(),
  512   const DataLayout &DL = Builder.GetInsertBlock()->getModule()->getDataLayout();
  516   EntryBB = &Builder.GetInsertBlock()->getParent()->getEntryBlock();
  575                          Builder.GetInsertBlock())) &&
  630   BasicBlock *HeadBlock = Builder.GetInsertBlock();
  793                                Builder.GetInsertBlock())) &&
  797                                Builder.GetInsertBlock())) &&
 1370   BasicBlock *CopyBB = SplitBlock(Builder.GetInsertBlock(),
 1476   BasicBlock *EntryBBCopy = SplitBlock(Builder.GetInsertBlock(),
 1524     EndBlockMap[BB] = Builder.GetInsertBlock();
 1542   BasicBlock *ExitBBCopy = SplitBlock(Builder.GetInsertBlock(),
 1629   BasicBlock *NewSubregionExit = Builder.GetInsertBlock();
 1726                                Builder.GetInsertBlock())) &&
 1730                                Builder.GetInsertBlock())) &&
tools/polly/lib/CodeGen/CodeGeneration.cpp
  251     auto *SplitBBTerm = Builder.GetInsertBlock()->getTerminator();
  272     Builder.GetInsertBlock()->getTerminator()->setOperand(0, RTC);
tools/polly/lib/CodeGen/IslExprBuilder.cpp
  116   Module *M = Builder.GetInsertBlock()->getModule();
  597   Function *F = Builder.GetInsertBlock()->getParent();
  605   auto InsertBB = Builder.GetInsertBlock();
  624   auto LeftBB = Builder.GetInsertBlock();
  635   auto RightBB = Builder.GetInsertBlock();
tools/polly/lib/CodeGen/IslNodeBuilder.cpp
  629   BasicBlock *ParBB = SplitBlock(Builder.GetInsertBlock(),
  786   Function *F = Builder.GetInsertBlock()->getParent();
  789   BasicBlock *CondBB = SplitBlock(Builder.GetInsertBlock(),
 1275   BasicBlock *CondBB = SplitBlock(Builder.GetInsertBlock(),
 1282   Function *F = Builder.GetInsertBlock()->getParent();
 1397   BasicBlock *EntryBB = &Builder.GetInsertBlock()->getParent()->getEntryBlock();
 1493       auto InstIt = Builder.GetInsertBlock()
 1512   BasicBlock *PreLoadBB = SplitBlock(Builder.GetInsertBlock(),
 1565   assert(Builder.GetInsertBlock()->end() != Builder.GetInsertPoint() &&
 1598     auto *F = Builder.GetInsertBlock()->getParent();
tools/polly/lib/CodeGen/LoopGenerators.cpp
   88   Function *F = Builder.GetInsertBlock()->getParent();
   95   BasicBlock *BeforeBB = Builder.GetInsertBlock();
  202   Function *F = Builder.GetInsertBlock()->getParent();
  224   const DataLayout &DL = Builder.GetInsertBlock()->getModule()->getDataLayout();
  229   BasicBlock &EntryBB = Builder.GetInsertBlock()->getParent()->getEntryBlock();
tools/polly/lib/CodeGen/LoopGeneratorsGOMP.cpp
  110   BasicBlock *PrevBB = Builder.GetInsertBlock();
tools/polly/lib/CodeGen/LoopGeneratorsKMP.cpp
  134   BasicBlock *PrevBB = Builder.GetInsertBlock();
tools/polly/lib/CodeGen/RuntimeDebugBuilder.cpp
   21   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
   40   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
   61   auto M = Builder.GetInsertBlock()->getParent()->getParent();
  184   const DataLayout &DL = Builder.GetInsertBlock()->getModule()->getDataLayout();
  190       &Builder.GetInsertBlock()->getParent()->getEntryBlock().front());
  245   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
  270   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
unittests/IR/IRBuilderTest.cpp
  666   EXPECT_EQ(BB, Builder.GetInsertBlock());