mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-17 00:27:31 +00:00
MachineScheduler: Print initial pressure in debug dump
llvm-svn: 253097
This commit is contained in:
parent
b2e09e4430
commit
59fc898d10
@ -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
Block a user