reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
 2735   if (int res = checkSpecialNodes(left, right))
 2738   if (left->isCall || right->isCall)
 2740     return BURRSort(left, right, SPQ);
 2746     RPDiff = SPQ->RegPressureDiff(right, RLiveUses);
 2750                       << "): " << LPDiff << " != SU(" << right->NodeNum
 2757     bool RReduce = canEnableCoalescing(right);
 2764                       << " != SU(" << right->NodeNum << "): " << RLiveUses
 2771     bool RStall = BUHasStall(right, right->getHeight(), SPQ);
 2771     bool RStall = BUHasStall(right, right->getHeight(), SPQ);
 2773       return left->getHeight() > right->getHeight();
 2777     int spread = (int)left->getDepth() - (int)right->getDepth();
 2780                         << left->getDepth() << " != SU(" << right->NodeNum
 2781                         << "): " << right->getDepth() << "\n");
 2782       return left->getDepth() < right->getDepth();
 2786   if (!DisableSchedHeight && left->getHeight() != right->getHeight()) {
 2787     int spread = (int)left->getHeight() - (int)right->getHeight();
 2789       return left->getHeight() > right->getHeight();
 2792   return BURRSort(left, right, SPQ);