Searched refs:NumPhis (Results 1 - 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp27 STATISTIC(NumPhis, "Number of phis propagated");
113 ++NumPhis;
/external/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2521 unsigned NumPhis = NumStages; local
2523 // The NumPhis is the maximum number of new Phis needed during the steady
2526 NumPhis = std::max((int)NumPhis - (int)(LoopValStage - PrologStage), 1);
2529 NumPhis = std::min(NumPhis, PrologStage + 2);
2541 NumPhis == 1)
2547 for (unsigned np = 0; np < NumPhis; ++np) {
2647 if (IsLast && np == NumPhis - 1)
2685 if (IsLast && np == NumPhis
2742 unsigned NumPhis = Schedule.getStagesForReg(Def, CurStageNum); local
3229 unsigned NumPhis = Schedule.getStagesForPhi(PhiDef); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp33 STATISTIC(NumPhis, "Number of phis propagated");
157 ++NumPhis;
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1262 unsigned NumPhis = 0; local
1263 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++NumPhis, ++I)
1264 if (NumPhis > 2)
1743 unsigned NumPhis = 0; local
1745 isa<PHINode>(II); ++II, ++NumPhis)
1746 if (NumPhis > 2) // Disable this xform.
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1939 unsigned NumPhis = 0; local
1940 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++NumPhis, ++I)
1941 if (NumPhis > 2)
2863 unsigned NumPhis = 0; local
2865 ++II, ++NumPhis) {
2866 if (NumPhis > 2) // Disable this xform.

Completed in 282 milliseconds