HomeSort by relevance Sort by last modified time
    Searched refs:BBMap (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 68 BBMapTy BBMap;
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 and the AvailableVals mapping
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 493 // BBMap - Mapping of basic blocks to the inner most loop they occur in
494 DenseMap<BlockT *, LoopT *> BBMap;
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);
LoopInfoImpl.h 196 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/
LoopInfo.cpp 697 for (DenseMap<BasicBlock*, Loop*>::const_iterator I = LI.BBMap.begin(),
698 E = LI.BBMap.end(); I != E; ++I) {

Completed in 68 milliseconds