OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PHIBlocks
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Analysis/
IteratedDominanceFrontier.h
93
SmallVector<BasicBlock *, 32>
PHIBlocks
;
/external/llvm/lib/Analysis/
IteratedDominanceFrontier.cpp
21
void IDFCalculator::calculate(SmallVectorImpl<BasicBlock *> &
PHIBlocks
) {
84
PHIBlocks
.emplace_back(SuccBB);
/external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp
614
SmallVector<BasicBlock *, 32>
PHIBlocks
;
615
IDF.calculate(
PHIBlocks
);
616
if (
PHIBlocks
.size() > 1)
617
std::sort(
PHIBlocks
.begin(),
PHIBlocks
.end(),
623
for (unsigned i = 0, e =
PHIBlocks
.size(); i != e; ++i)
624
QueuePhiNode(
PHIBlocks
[i], AllocaNum, CurrentVersion);
[
all
...]
Completed in 54 milliseconds