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

References

include/llvm/CodeGen/RegisterPressure.h
  247     return Excess == RHS.Excess && CriticalMax == RHS.CriticalMax
  247     return Excess == RHS.Excess && CriticalMax == RHS.CriticalMax
lib/CodeGen/MachinePipeliner.cpp
 1613       if (RPDelta.Excess.isValid()) {
 1616                    << TRI->getRegPressureSetName(RPDelta.Excess.getPSet())
 1617                    << ":" << RPDelta.Excess.getUnitInc());
lib/CodeGen/MachineScheduler.cpp
 2600     P = Cand.RPDelta.Excess;
 2979   LLVM_DEBUG(if (Cand.RPDelta.Excess.isValid()) dbgs()
 2981              << TRI->getRegPressureSetName(Cand.RPDelta.Excess.getPSet()) << ":"
 2982              << Cand.RPDelta.Excess.getUnitInc() << "\n");
 3010   if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess,
 3011                                                Cand.RPDelta.Excess,
lib/CodeGen/RegisterPressure.cpp
  145   Excess.dump();
  963   Delta.Excess = PressureChange();
  984       Delta.Excess = PressureChange(i);
  985       Delta.Excess.setUnitInc(PDiff);
 1127     if (Delta.Excess.isValid())
 1128       dbgs() << "Excess1 " << TRI->getRegPressureSetName(Delta.Excess.getPSet())
 1129              << " " << Delta.Excess.getUnitInc() << "\n";
 1136     if (Delta2.Excess.isValid())
 1137       dbgs() << "Excess2 " << TRI->getRegPressureSetName(Delta2.Excess.getPSet())
 1138              << " " << Delta2.Excess.getUnitInc() << "\n";
 1185     if (!Delta.Excess.isValid()) {
 1192         Delta.Excess = PressureChange(PSetID);
 1193         Delta.Excess.setUnitInc(ExcessInc);
lib/Target/AMDGPU/GCNSchedStrategy.cpp
  111     Cand.RPDelta.Excess = PressureChange(SRI->getVGPRPressureSet());
  112     Cand.RPDelta.Excess.setUnitInc(NewVGPRPressure - VGPRExcessLimit);
  116     Cand.RPDelta.Excess = PressureChange(SRI->getSGPRPressureSet());
  117     Cand.RPDelta.Excess.setUnitInc(NewSGPRPressure - SGPRExcessLimit);
  245     if (TopCand.Reason == RegExcess && TopCand.RPDelta.Excess.getUnitInc() <= 0) {
  247     } else if (BotCand.Reason == RegExcess && BotCand.RPDelta.Excess.getUnitInc() <= 0) {
lib/Target/Hexagon/HexagonMachineScheduler.cpp
  667     ResCount -= (Delta.Excess.getUnitInc()*PriorityOne);
  677         (Delta.Excess.getUnitInc() || Delta.CriticalMax.getUnitInc() ||
  681       dbgs() << "RP " << Delta.Excess.getUnitInc() << "/"