HomeSort by: relevance | last modified time | path
    Searched refs:StartBB (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
DependencyAnalysis.cpp 207 /// Walk up the CFG from StartPos (which is in StartBB) and find local and
212 BasicBlock *StartBB, Instruction *StartInst,
219 Worklist.push_back(std::make_pair(StartBB, StartPos));
249 // Determine whether the original StartBB post-dominates all of the blocks we
253 if (BB == StartBB)
256 if (Succ != StartBB && !Visited.count(Succ))
265 BasicBlock *StartBB,
270 if (!findDependencies(Flavor, Arg, StartBB, StartInst, DependingInsts, PA) ||
DependencyAnalysis.h 56 BasicBlock *StartBB,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
IROutliner.h 121 BasicBlock *StartBB = nullptr;
136 StartBB = C.getStartBB();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
IROutliner.cpp 132 StartBB = StartInst->getParent();
133 PrevBB = StartBB;
152 StartBB = PrevBB->splitBasicBlock(StartInst, OriginalName + "_to_outline");
156 EndBB = StartBB;
179 assert(StartBB != nullptr && "StartBB for Candidate is not defined!");
180 assert(FollowBB != nullptr && "StartBB for Candidate is not defined!");
182 // StartBB should only have one predecessor since we put an unconditional
184 PrevBB = StartBB->getSinglePredecessor();
193 moveBBContents(*StartBB, *PrevBB)
    [all...]
OpenMPOpt.cpp 660 BasicBlock *StartBB = nullptr, *EndBB = nullptr;
666 assert(StartBB != nullptr && "StartBB should not be null");
667 CGStartBB->getTerminator()->setSuccessor(0, StartBB);
801 StartBB = SplitBlock(BB, MergableCIs.front(), DT, LI, nullptr,
804 assert(BB->getUniqueSuccessor() == StartBB && "Expected a different CFG");
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 1025 /// of StartBB.
1039 const MemoryLocation &Loc, bool isLoad, BasicBlock *StartBB,
1100 StartBB, Result, Visited, SkipFirstBlock, IsIncomplete);
1122 QueryInst, Pointer, Loc.getWithoutAATags(), isLoad, StartBB, Result,
1134 CacheInfo->Pair == BBSkipFirstBlockPair(StartBB, SkipFirstBlock)) {
1179 CacheInfo->Pair = BBSkipFirstBlockPair(StartBB, SkipFirstBlock);
1185 Worklist.push_back(StartBB);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
AtomicExpandPass.cpp 1213 auto StartBB = BasicBlock::Create(Ctx, "cmpxchg.start", F, ReleasingStoreBB);
1229 Builder.CreateBr(StartBB);
1232 Builder.SetInsertPoint(StartBB);
1260 BasicBlock *RetryBB = HasReleasedLoadBB ? ReleasedLoadBB : StartBB;
1290 LoadedNoStore->addIncoming(UnreleasedLoad, StartBB);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.h 1143 llvm::BasicBlock *StartBB;
1147 : StartBB(CGF.Builder.GetInsertBlock()) {}
1164 return StartBB;

Completed in 41 milliseconds