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

/external/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h68 BBMapTy BBMap; member in class:llvm::SSAUpdaterImpl
95 return BBMap[BB]->DefBB->AvailableVal;
107 BBMap[BB] = Info;
128 // Check if BBMap already has a BBInfo for the predecessor block.
130 BBMap.FindAndConstruct(Pred);
187 BBInfo *SuccInfo = BBMap[*SI];
396 /// in the BBMap.
402 BBMap[PHI->getParent()]->PHITag = PHI;
411 BBInfo *PredInfo = BBMap[I.getIncomingBlock()];
443 /// the BBMap an
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h493 // BBMap - Mapping of basic blocks to the inner most loop they occur in
494 DenseMap<BlockT *, LoopT *> BBMap; member in class:llvm::LoopInfoBase
510 BBMap.clear(); // Reset internal state of analysis
530 return BBMap.lookup(const_cast<BlockT*>(BB));
569 BBMap.erase(BB);
572 BBMap[BB] = L;
598 typename DenseMap<BlockT *, LoopT *>::iterator I = BBMap.find(BB);
599 if (I != BBMap.end()) {
603 BBMap.erase(I);
H A DLoopInfoImpl.h196 LIB.BBMap[NewBB] = L;
541 for (DenseMap<BasicBlock*, LoopT*>::const_iterator I = BBMap.begin(),
542 E = BBMap.end(); I != E; ++I)
/external/llvm/lib/Analysis/
H A DLoopInfo.cpp697 for (DenseMap<BasicBlock*, Loop*>::const_iterator I = LI.BBMap.begin(),
698 E = LI.BBMap.end(); I != E; ++I) {

Completed in 94 milliseconds