If a function has live ins/outs, print them

llvm-svn: 23181
This commit is contained in:
Chris Lattner 2005-08-31 22:34:59 +00:00
parent da2e04c69d
commit d4d10fff99
1 changed files with 23 additions and 1 deletions

View File

@ -134,7 +134,29 @@ void MachineFunction::print(std::ostream &OS) const {
// Print Constant Pool
getConstantPool()->print(OS);
const MRegisterInfo *MRI = getTarget().getRegisterInfo();
if (livein_begin() != livein_end()) {
OS << "Live Ins:";
for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I) {
if (MRI)
OS << " " << MRI->getName(I->first);
else
OS << " Reg #" << I->first;
}
OS << "\n";
}
if (liveout_begin() != liveout_end()) {
OS << "Live Outs:";
for (liveout_iterator I = liveout_begin(), E = liveout_end(); I != E; ++I)
if (MRI)
OS << " " << MRI->getName(*I);
else
OS << " Reg #" << *I;
OS << "\n";
}
for (const_iterator BB = begin(); BB != end(); ++BB)
BB->print(OS);