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

  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 66 BBMapTy BBMap;
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 and the AvailableVals mapping
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 628 // BBMap - Mapping of basic blocks to the inner most loop they occur in
629 DenseMap<BlockT *, LoopT *> BBMap;
645 BBMap.clear(); // Reset internal state of analysis
661 return BBMap.lookup(const_cast<BlockT*>(BB));
700 BBMap.erase(BB);
703 BBMap[BB] = L;
729 typename DenseMap<BlockT *, LoopT *>::iterator I = BBMap.find(BB);
730 if (I != BBMap.end()) {
734 BBMap.erase(I);
757 if (BBMap.count(BB)) return 0; // Haven't processed this node
    [all...]
  /external/llvm/lib/Analysis/
LoopInfo.cpp 595 for (DenseMap<BasicBlock*, Loop*>::const_iterator I = LI.BBMap.begin(),
596 E = LI.BBMap.end(); I != E; ++I) {

Completed in 456 milliseconds