mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Add debugging output.
llvm-svn: 84011
This commit is contained in:
parent
abbc32c042
commit
d23db026b6
@ -643,8 +643,18 @@ bool SchedulePostRATDList::BreakAntiDependencies() {
|
||||
Max = SU;
|
||||
}
|
||||
|
||||
DEBUG(errs() << "Critical path has total latency "
|
||||
<< (Max->getDepth() + Max->Latency) << "\n");
|
||||
#ifndef NDEBUG
|
||||
{
|
||||
DEBUG(errs() << "Critical path has total latency "
|
||||
<< (Max->getDepth() + Max->Latency) << "\n");
|
||||
DEBUG(errs() << "Available regs:");
|
||||
for (unsigned Reg = 0; Reg < TRI->getNumRegs(); ++Reg) {
|
||||
if (KillIndices[Reg] == ~0u)
|
||||
DEBUG(errs() << " " << TRI->getName(Reg));
|
||||
}
|
||||
DEBUG(errs() << '\n');
|
||||
}
|
||||
#endif
|
||||
|
||||
// Track progress along the critical path through the SUnit graph as we walk
|
||||
// the instructions.
|
||||
|
Loading…
Reference in New Issue
Block a user