OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BBMap
(Results
1 - 2
of
2
) 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
439
//
BBMap
- Mapping of basic blocks to the inner most loop they occur in
440
DenseMap<BlockT *, LoopT *>
BBMap
;
456
BBMap
.clear(); // Reset internal state of analysis
476
return
BBMap
.lookup(const_cast<BlockT*>(BB));
515
BBMap
.erase(BB);
518
BBMap
[BB] = L;
544
typename DenseMap<BlockT *, LoopT *>::iterator I =
BBMap
.find(BB);
545
if (I !=
BBMap
.end()) {
549
BBMap
.erase(I);
Completed in 143 milliseconds