HomeSort by: relevance | last modified time | path
    Searched defs:NumPhis (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 192 unsigned NumPhis = 0;
193 for (auto II = BB->begin(); II != BB->end(); II++, NumPhis++) {
198 if (NumPhis > MaxNumPhis)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ModuloSchedule.cpp 417 unsigned NumPhis = std::min(NumStages, MaxPhis);
428 NumPhis == 1)
434 for (unsigned np = 0; np < NumPhis; ++np) {
536 if (IsLast && np == NumPhis - 1)
576 if (IsLast && np == NumPhis - 1)
587 while (NumPhis++ < NumStages) {
588 rewriteScheduledInstr(NewBB, InstrMap, CurStageNum, NumPhis, &*BBI, Def,
632 unsigned NumPhis = getStagesForReg(Def, CurStageNum);
636 if (!InKernel && NumPhis == 0 && StageScheduled == 0 &&
638 NumPhis = 1
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 2725 unsigned NumPhis = 0;
2726 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++NumPhis, ++I)
2727 if (NumPhis > 2)
3776 unsigned NumPhis = 0;
3778 ++II, ++NumPhis) {
3779 if (NumPhis > 2) // Disable this xform.

Completed in 61 milliseconds