Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp489 << P.getUnitInc() << " "; in traceCandidate()
562 return (isBotUp ? P.getUnitInc() : -P.getUnitInc()); in pressureChange()
667 ResCount -= (Delta.Excess.getUnitInc()*PriorityOne); in SchedulingCost()
669 ResCount -= (Delta.CriticalMax.getUnitInc()*PriorityOne); in SchedulingCost()
672 ResCount -= (Delta.CurrentMax.getUnitInc()*PriorityTwo); in SchedulingCost()
677 (Delta.Excess.getUnitInc() || Delta.CriticalMax.getUnitInc() || in SchedulingCost()
678 Delta.CurrentMax.getUnitInc())) in SchedulingCost()
681 dbgs() << "RP " << Delta.Excess.getUnitInc() << "/" in SchedulingCost()
682 << Delta.CriticalMax.getUnitInc() << "/" in SchedulingCost()
683 << Delta.CurrentMax.getUnitInc() << ")|"; in SchedulingCost()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DRegisterPressure.cpp132 << " " << Change.getUnitInc(); in dump()
140 dbgs() << "[" << getPSetOrMax() << ", " << getUnitInc() << "]\n"; in dump()
693 unsigned NewUnitInc = I->getUnitInc() + Weight; in addPressureChange()
1019 int PDiff = (int)PNew - (int)CriticalPSets[CritIdx].getUnitInc(); in computeMaxPressureDelta()
1111 assert(Delta.CriticalMax.getUnitInc() >= 0 && in getMaxUpwardPressureDelta()
1112 Delta.CurrentMax.getUnitInc() >= 0 && "cannot decrease max pressure"); 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()
[all …]
DMachineScheduler.cpp1098 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc() in updateScheduledPressure()
2804 << ":" << P.getUnitInc() << " "; in traceCandidate()
3057 if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand, in tryPressure()
3071 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand, in tryPressure()
3082 if (TryP.getUnitInc() < 0) in tryPressure()
3169 << Cand.RPDelta.Excess.getUnitInc() << "\n"); in initCandidate()
DMachinePipeliner.cpp1681 << ":" << RPDelta.Excess.getUnitInc()); in registerPressureFilter()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DRegisterPressure.h125 int getUnitInc() const { return UnitInc; } in getUnitInc() function