Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
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()
DRegisterPressure.cpp132 << " " << Change.getUnitInc(); in dump()
140 dbgs() << "[" << getPSetOrMax() << ", " << getUnitInc() << "]\n"; in dump()
692 unsigned NewUnitInc = I->getUnitInc() + Weight; in addPressureChange()
1018 int PDiff = (int)PNew - (int)CriticalPSets[CritIdx].getUnitInc(); in computeMaxPressureDelta()
1110 assert(Delta.CriticalMax.getUnitInc() >= 0 && in getMaxUpwardPressureDelta()
1111 Delta.CurrentMax.getUnitInc() >= 0 && "cannot decrease max pressure"); in getMaxUpwardPressureDelta()
1130 << " " << Delta.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1133 << " " << Delta.CriticalMax.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1136 << " " << Delta.CurrentMax.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
1139 << " " << Delta2.Excess.getUnitInc() << "\n"; in getMaxUpwardPressureDelta()
[all …]
DMachineScheduler.cpp1103 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc() in updateScheduledPressure()
2833 << ":" << P.getUnitInc() << " "; in traceCandidate()
3086 if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand, in tryPressure()
3100 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand, in tryPressure()
3111 if (TryP.getUnitInc() < 0) in tryPressure()
3198 << Cand.RPDelta.Excess.getUnitInc() << "\n"); in initCandidate()
DMachinePipeliner.cpp1627 << ":" << RPDelta.Excess.getUnitInc() << "\n"); in registerPressureFilter()
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DRegisterPressure.h124 int getUnitInc() const { return UnitInc; } in getUnitInc() function