forked from OSchip/llvm-project
parent
e02d5da8a7
commit
569dc65a60
|
@ -943,8 +943,9 @@ updateScheduledPressure(const SUnit *SU,
|
||||||
unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
|
unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
|
||||||
if (NewMaxPressure[ID] >= Limit - 2) {
|
if (NewMaxPressure[ID] >= Limit - 2) {
|
||||||
DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
|
DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
|
||||||
<< NewMaxPressure[ID] << " > " << Limit << "(+ "
|
<< NewMaxPressure[ID]
|
||||||
<< BotRPTracker.getLiveThru()[ID] << " livethru)\n");
|
<< ((NewMaxPressure[ID] > Limit) ? " > " : " <= ") << Limit
|
||||||
|
<< "(+ " << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue