OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PredCache
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/Support/
PredIteratorCache.h
38
/// for (BasicBlock **PI =
PredCache
->GetPreds(BB); *PI; ++PI)
46
SmallVector<BasicBlock*, 32>
PredCache
(pred_begin(BB), pred_end(BB));
47
PredCache
.push_back(0); // null terminator.
49
BlockToPredCountMap[BB] =
PredCache
.size()-1;
51
Entry = Memory.Allocate<BasicBlock*>(
PredCache
.size());
52
std::copy(
PredCache
.begin(),
PredCache
.end(), Entry);
/external/llvm/lib/Transforms/Utils/
LCSSA.cpp
59
PredIteratorCache
PredCache
;
171
PredCache
.clear();
236
PredCache
.GetNumPreds(ExitBB),
241
for (BasicBlock **PI =
PredCache
.GetPreds(ExitBB); *PI; ++PI) {
/external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp
62
: FunctionPass(ID),
PredCache
(0) {
76
PredCache
->clear();
92
if (!
PredCache
)
93
PredCache
.reset(new PredIteratorCache());
664
for (BasicBlock **PI =
PredCache
->GetPreds(QueryBB); *PI; ++PI)
750
for (BasicBlock **PI =
PredCache
->GetPreds(DirtyBB); *PI; ++PI)
[
all
...]
/external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h
328
OwningPtr<PredIteratorCache>
PredCache
;
Completed in 752 milliseconds