OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BBMap
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h
58
BBMapTy
BBMap
;
85
return
BBMap
[BB]->DefBB->AvailableVal;
97
BBMap
[BB] = Info;
118
// Check if
BBMap
already has a BBInfo for the predecessor block.
120
BBMap
.FindAndConstruct(Pred);
177
BBInfo *SuccInfo =
BBMap
[*SI];
386
/// in the
BBMap
.
392
BBMap
[PHI->getParent()]->PHITag = PHI;
401
BBInfo *PredInfo =
BBMap
[I.getIncomingBlock()];
433
/// PHIs in both the
BBMap
and the AvailableVals mapping
[
all
...]
/external/llvm/include/llvm/Analysis/
LoopInfo.h
634
//
BBMap
- Mapping of basic blocks to the inner most loop they occur in
635
DenseMap<BlockT *, LoopT *>
BBMap
;
650
BBMap
.clear(); // Reset internal state of analysis
667
BBMap
.find(const_cast<BlockT*>(BB));
668
return I !=
BBMap
.end() ? I->second : 0;
706
LoopT *&OldLoop =
BBMap
[BB];
734
typename DenseMap<BlockT *, LoopT *>::iterator I =
BBMap
.find(BB);
735
if (I !=
BBMap
.end()) {
739
BBMap
.erase(I);
762
if (
BBMap
.find(BB) != BBMap.end()) return 0;// Haven't processed this node
[
all
...]
Completed in 34 milliseconds