forked from OSchip/llvm-project
MachineScheduler: Print initial pressure in debug dump
llvm-svn: 253097
This commit is contained in:
parent
3b099db61d
commit
e6edd48d69
|
@ -910,6 +910,13 @@ void ScheduleDAGMILive::initRegPressure() {
|
|||
updatePressureDiffs(LiveUses);
|
||||
}
|
||||
|
||||
DEBUG(
|
||||
dbgs() << "Top Pressure:\n";
|
||||
dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI);
|
||||
dbgs() << "Bottom Pressure:\n";
|
||||
dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI);
|
||||
);
|
||||
|
||||
assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
|
||||
|
||||
// Cache the list of excess pressure sets in this region. This will also track
|
||||
|
|
Loading…
Reference in New Issue