mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-16 00:17:32 +00:00
MachineScheduler debug output clarity.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
eddedaab45
commit
01c0018953
@ -943,8 +943,9 @@ updateScheduledPressure(const SUnit *SU,
|
||||
unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
|
||||
if (NewMaxPressure[ID] >= Limit - 2) {
|
||||
DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
|
||||
<< NewMaxPressure[ID] << " > " << Limit << "(+ "
|
||||
<< BotRPTracker.getLiveThru()[ID] << " livethru)\n");
|
||||
<< NewMaxPressure[ID]
|
||||
<< ((NewMaxPressure[ID] > Limit) ? " > " : " <= ") << Limit
|
||||
<< "(+ " << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user