Convert debug messages to use dbgs(). Generally this means

s/errs/dbgs/g except for certain special cases.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92032 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Greene 2009-12-23 19:45:49 +00:00
parent 43c48ac801
commit 0eb5b666dd

View File

@ -22,6 +22,7 @@
#include "llvm/Module.h" #include "llvm/Module.h"
#include "llvm/Analysis/ValueTracking.h" #include "llvm/Analysis/ValueTracking.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallPtrSet.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Dwarf.h" #include "llvm/Support/Dwarf.h"
#include "llvm/Support/DebugLoc.h" #include "llvm/Support/DebugLoc.h"
#include "llvm/Support/raw_ostream.h" #include "llvm/Support/raw_ostream.h"
@ -475,16 +476,16 @@ StringRef DIScope::getDirectory() const {
/// dump - Print descriptor. /// dump - Print descriptor.
void DIDescriptor::dump() const { void DIDescriptor::dump() const {
errs() << "[" << dwarf::TagString(getTag()) << "] "; dbgs() << "[" << dwarf::TagString(getTag()) << "] ";
errs().write_hex((intptr_t) &*DbgNode) << ']'; dbgs().write_hex((intptr_t) &*DbgNode) << ']';
} }
/// dump - Print compile unit. /// dump - Print compile unit.
void DICompileUnit::dump() const { void DICompileUnit::dump() const {
if (getLanguage()) if (getLanguage())
errs() << " [" << dwarf::LanguageString(getLanguage()) << "] "; dbgs() << " [" << dwarf::LanguageString(getLanguage()) << "] ";
errs() << " [" << getDirectory() << "/" << getFilename() << " ]"; dbgs() << " [" << getDirectory() << "/" << getFilename() << " ]";
} }
/// dump - Print type. /// dump - Print type.
@ -493,14 +494,14 @@ void DIType::dump() const {
StringRef Res = getName(); StringRef Res = getName();
if (!Res.empty()) if (!Res.empty())
errs() << " [" << Res << "] "; dbgs() << " [" << Res << "] ";
unsigned Tag = getTag(); unsigned Tag = getTag();
errs() << " [" << dwarf::TagString(Tag) << "] "; dbgs() << " [" << dwarf::TagString(Tag) << "] ";
// TODO : Print context // TODO : Print context
getCompileUnit().dump(); getCompileUnit().dump();
errs() << " [" dbgs() << " ["
<< getLineNumber() << ", " << getLineNumber() << ", "
<< getSizeInBits() << ", " << getSizeInBits() << ", "
<< getAlignInBits() << ", " << getAlignInBits() << ", "
@ -508,12 +509,12 @@ void DIType::dump() const {
<< "] "; << "] ";
if (isPrivate()) if (isPrivate())
errs() << " [private] "; dbgs() << " [private] ";
else if (isProtected()) else if (isProtected())
errs() << " [protected] "; dbgs() << " [protected] ";
if (isForwardDecl()) if (isForwardDecl())
errs() << " [fwd] "; dbgs() << " [fwd] ";
if (isBasicType()) if (isBasicType())
DIBasicType(DbgNode).dump(); DIBasicType(DbgNode).dump();
@ -522,21 +523,21 @@ void DIType::dump() const {
else if (isCompositeType()) else if (isCompositeType())
DICompositeType(DbgNode).dump(); DICompositeType(DbgNode).dump();
else { else {
errs() << "Invalid DIType\n"; dbgs() << "Invalid DIType\n";
return; return;
} }
errs() << "\n"; dbgs() << "\n";
} }
/// dump - Print basic type. /// dump - Print basic type.
void DIBasicType::dump() const { void DIBasicType::dump() const {
errs() << " [" << dwarf::AttributeEncodingString(getEncoding()) << "] "; dbgs() << " [" << dwarf::AttributeEncodingString(getEncoding()) << "] ";
} }
/// dump - Print derived type. /// dump - Print derived type.
void DIDerivedType::dump() const { void DIDerivedType::dump() const {
errs() << "\n\t Derived From: "; getTypeDerivedFrom().dump(); dbgs() << "\n\t Derived From: "; getTypeDerivedFrom().dump();
} }
/// dump - Print composite type. /// dump - Print composite type.
@ -544,73 +545,73 @@ void DICompositeType::dump() const {
DIArray A = getTypeArray(); DIArray A = getTypeArray();
if (A.isNull()) if (A.isNull())
return; return;
errs() << " [" << A.getNumElements() << " elements]"; dbgs() << " [" << A.getNumElements() << " elements]";
} }
/// dump - Print global. /// dump - Print global.
void DIGlobal::dump() const { void DIGlobal::dump() const {
StringRef Res = getName(); StringRef Res = getName();
if (!Res.empty()) if (!Res.empty())
errs() << " [" << Res << "] "; dbgs() << " [" << Res << "] ";
unsigned Tag = getTag(); unsigned Tag = getTag();
errs() << " [" << dwarf::TagString(Tag) << "] "; dbgs() << " [" << dwarf::TagString(Tag) << "] ";
// TODO : Print context // TODO : Print context
getCompileUnit().dump(); getCompileUnit().dump();
errs() << " [" << getLineNumber() << "] "; dbgs() << " [" << getLineNumber() << "] ";
if (isLocalToUnit()) if (isLocalToUnit())
errs() << " [local] "; dbgs() << " [local] ";
if (isDefinition()) if (isDefinition())
errs() << " [def] "; dbgs() << " [def] ";
if (isGlobalVariable()) if (isGlobalVariable())
DIGlobalVariable(DbgNode).dump(); DIGlobalVariable(DbgNode).dump();
errs() << "\n"; dbgs() << "\n";
} }
/// dump - Print subprogram. /// dump - Print subprogram.
void DISubprogram::dump() const { void DISubprogram::dump() const {
StringRef Res = getName(); StringRef Res = getName();
if (!Res.empty()) if (!Res.empty())
errs() << " [" << Res << "] "; dbgs() << " [" << Res << "] ";
unsigned Tag = getTag(); unsigned Tag = getTag();
errs() << " [" << dwarf::TagString(Tag) << "] "; dbgs() << " [" << dwarf::TagString(Tag) << "] ";
// TODO : Print context // TODO : Print context
getCompileUnit().dump(); getCompileUnit().dump();
errs() << " [" << getLineNumber() << "] "; dbgs() << " [" << getLineNumber() << "] ";
if (isLocalToUnit()) if (isLocalToUnit())
errs() << " [local] "; dbgs() << " [local] ";
if (isDefinition()) if (isDefinition())
errs() << " [def] "; dbgs() << " [def] ";
errs() << "\n"; dbgs() << "\n";
} }
/// dump - Print global variable. /// dump - Print global variable.
void DIGlobalVariable::dump() const { void DIGlobalVariable::dump() const {
errs() << " ["; dbgs() << " [";
getGlobal()->dump(); getGlobal()->dump();
errs() << "] "; dbgs() << "] ";
} }
/// dump - Print variable. /// dump - Print variable.
void DIVariable::dump() const { void DIVariable::dump() const {
StringRef Res = getName(); StringRef Res = getName();
if (!Res.empty()) if (!Res.empty())
errs() << " [" << Res << "] "; dbgs() << " [" << Res << "] ";
getCompileUnit().dump(); getCompileUnit().dump();
errs() << " [" << getLineNumber() << "] "; dbgs() << " [" << getLineNumber() << "] ";
getType().dump(); getType().dump();
errs() << "\n"; dbgs() << "\n";
// FIXME: Dump complex addresses // FIXME: Dump complex addresses
} }