Searched refs:BBMap (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h66 BBMapTy BBMap; member in class:llvm::SSAUpdaterImpl
93 return BBMap[BB]->DefBB->AvailableVal;
105 BBMap[BB] = Info;
126 // Check if BBMap already has a BBInfo for the predecessor block.
128 BBMap.FindAndConstruct(Pred);
185 BBInfo *SuccInfo = BBMap[*SI];
394 /// in the BBMap.
400 BBMap[PHI->getParent()]->PHITag = PHI;
409 BBInfo *PredInfo = BBMap[I.getIncomingBlock()];
441 /// the BBMap an
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h413 // BBMap - Mapping of basic blocks to the inner most loop they occur in
414 DenseMap<BlockT *, LoopT *> BBMap; member in class:llvm::LoopInfoBase
430 BBMap.clear(); // Reset internal state of analysis
450 return BBMap.lookup(const_cast<BlockT*>(BB));
489 BBMap.erase(BB);
492 BBMap[BB] = L;
518 typename DenseMap<BlockT *, LoopT *>::iterator I = BBMap.find(BB);
519 if (I != BBMap.end()) {
523 BBMap.erase(I);
H A DLoopInfoImpl.h208 LIB.BBMap[NewBB] = L;
560 for (DenseMap<BasicBlock*, LoopT*>::const_iterator I = BBMap.begin(),
561 E = BBMap.end(); I != E; ++I)
/external/llvm/lib/Analysis/
H A DLoopInfo.cpp598 for (DenseMap<BasicBlock*, Loop*>::const_iterator I = LI.BBMap.begin(),
599 E = LI.BBMap.end(); I != E; ++I) {

Completed in 301 milliseconds