Lines Matching refs:CurrZone

3005 static unsigned computeRemLatency(SchedBoundary &CurrZone) {  in computeRemLatency()  argument
3006 unsigned RemLatency = CurrZone.getDependentLatency(); in computeRemLatency()
3008 CurrZone.findMaxLatency(CurrZone.Available.elements())); in computeRemLatency()
3010 CurrZone.findMaxLatency(CurrZone.Pending.elements())); in computeRemLatency()
3017 SchedBoundary &CurrZone, in shouldReduceLatency() argument
3022 if (CurrZone.getCurrCycle() > Rem.CriticalPath) in shouldReduceLatency()
3026 if (CurrZone.getCurrCycle() == 0) in shouldReduceLatency()
3030 RemLatency = computeRemLatency(CurrZone); in shouldReduceLatency()
3032 return RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath; in shouldReduceLatency()
3038 SchedBoundary &CurrZone, in setPolicy() argument
3053 RemLatency = computeRemLatency(CurrZone); in setPolicy()
3063 (IsPostRA || shouldReduceLatency(Policy, CurrZone, !RemLatencyComputed, in setPolicy()
3066 LLVM_DEBUG(dbgs() << " " << CurrZone.Available.getName() in setPolicy()
3068 << CurrZone.getCurrCycle() << "c > CritPath " in setPolicy()
3072 if (CurrZone.getZoneCritResIdx() == OtherCritIdx) in setPolicy()
3075 LLVM_DEBUG(if (CurrZone.isResourceLimited()) { in setPolicy()
3076 dbgs() << " " << CurrZone.Available.getName() << " ResourceLimited: " in setPolicy()
3077 << SchedModel->getResourceName(CurrZone.getZoneCritResIdx()) << "\n"; in setPolicy()
3081 if (!CurrZone.isResourceLimited() && !OtherResLimited) dbgs() in setPolicy()
3084 if (CurrZone.isResourceLimited() && !Policy.ReduceResIdx) in setPolicy()
3085 Policy.ReduceResIdx = CurrZone.getZoneCritResIdx(); in setPolicy()