Home
last modified time | relevance | path

Searched refs:getUnitInc (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DVLIWMachineScheduler.cpp516 << P.getUnitInc() << " "; in traceCandidate()
589 return (isBotUp ? P.getUnitInc() : -P.getUnitInc()); in pressureChange()
687 ResCount -= (Delta.Excess.getUnitInc() * PriorityOne); in SchedulingCost()
689 ResCount -= (Delta.CriticalMax.getUnitInc() * PriorityOne); in SchedulingCost()
692 ResCount -= (Delta.CurrentMax.getUnitInc() * PriorityTwo); in SchedulingCost()
697 (Delta.Excess.getUnitInc() || Delta.CriticalMax.getUnitInc() || in SchedulingCost()
698 Delta.CurrentMax.getUnitInc())) in SchedulingCost()
701 dbgs() << "RP " << Delta.Excess.getUnitInc() << "/" in SchedulingCost()
702 << Delta.CriticalMax.getUnitInc() << "/" in SchedulingCost()
703 << Delta.CurrentMax.getUnitInc() << ")|"; in SchedulingCost()
H A DRegisterPressure.cpp132 << " " << Change.getUnitInc(); in dump()
693 unsigned NewUnitInc = I->getUnitInc() + Weight; in addPressureChange()
1111 assert(Delta.CriticalMax.getUnitInc() >= 0 && in getMaxUpwardPressureDelta()
1131 << " " << Delta.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1134 << " " << Delta.CriticalMax.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1137 << " " << Delta.CurrentMax.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1140 << " " << Delta2.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1146 << " " << Delta2.CurrentMax.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1181 unsigned PNew = POld + PDiffI->getUnitInc(); in getUpwardPressureDelta()
1182 assert((PDiffI->getUnitInc() >= 0) == (PNew >= POld) in getUpwardPressureDelta()
[all …]
H A DMachineScheduler.cpp1097 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc() in updateScheduledPressure()
2803 << ":" << P.getUnitInc() << " "; in traceCandidate()
3056 if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand, in tryPressure()
3070 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand, in tryPressure()
3081 if (TryP.getUnitInc() < 0) in tryPressure()
3168 << Cand.RPDelta.Excess.getUnitInc() << "\n"); in initCandidate()
H A DMachinePipeliner.cpp1670 << ":" << RPDelta.Excess.getUnitInc() << "\n"); in registerPressureFilter()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h124 int getUnitInc() const { return UnitInc; } in getUnitInc() function