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@92063 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Greene
2009-12-23 21:58:29 +00:00
parent 8eb96920ca
commit b511efa7be

View File

@ -131,7 +131,7 @@ void LoaderPass::readEdge(ProfileInfo::Edge e,
// in double. // in double.
EdgeInformation[getFunction(e)][e] += (double)weight; EdgeInformation[getFunction(e)][e] += (double)weight;
DEBUG(errs() << "--Read Edge Counter for " << e DEBUG(dbgs() << "--Read Edge Counter for " << e
<< " (# "<< (ReadCount-1) << "): " << " (# "<< (ReadCount-1) << "): "
<< (unsigned)getEdgeWeight(e) << "\n"); << (unsigned)getEdgeWeight(e) << "\n");
} else { } else {
@ -151,7 +151,7 @@ bool LoaderPass::runOnModule(Module &M) {
ReadCount = 0; ReadCount = 0;
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
if (F->isDeclaration()) continue; if (F->isDeclaration()) continue;
DEBUG(errs()<<"Working on "<<F->getNameStr()<<"\n"); DEBUG(dbgs()<<"Working on "<<F->getNameStr()<<"\n");
readEdge(getEdge(0,&F->getEntryBlock()), Counters); readEdge(getEdge(0,&F->getEntryBlock()), Counters);
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
TerminatorInst *TI = BB->getTerminator(); TerminatorInst *TI = BB->getTerminator();
@ -161,7 +161,7 @@ bool LoaderPass::runOnModule(Module &M) {
} }
} }
if (ReadCount != Counters.size()) { if (ReadCount != Counters.size()) {
errs() << "WARNING: profile information is inconsistent with " dbgs() << "WARNING: profile information is inconsistent with "
<< "the current program!\n"; << "the current program!\n";
} }
NumEdgesRead = ReadCount; NumEdgesRead = ReadCount;
@ -172,7 +172,7 @@ bool LoaderPass::runOnModule(Module &M) {
ReadCount = 0; ReadCount = 0;
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
if (F->isDeclaration()) continue; if (F->isDeclaration()) continue;
DEBUG(errs()<<"Working on "<<F->getNameStr()<<"\n"); DEBUG(dbgs()<<"Working on "<<F->getNameStr()<<"\n");
readEdge(getEdge(0,&F->getEntryBlock()), Counters); readEdge(getEdge(0,&F->getEntryBlock()), Counters);
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
TerminatorInst *TI = BB->getTerminator(); TerminatorInst *TI = BB->getTerminator();
@ -198,10 +198,10 @@ bool LoaderPass::runOnModule(Module &M) {
} }
if (SpanningTree.size() == size) { if (SpanningTree.size() == size) {
DEBUG(errs()<<"{"); DEBUG(dbgs()<<"{");
for (std::set<Edge>::iterator ei = SpanningTree.begin(), for (std::set<Edge>::iterator ei = SpanningTree.begin(),
ee = SpanningTree.end(); ei != ee; ++ei) { ee = SpanningTree.end(); ei != ee; ++ei) {
DEBUG(errs()<< *ei <<","); DEBUG(dbgs()<< *ei <<",");
} }
assert(0 && "No edge calculated!"); assert(0 && "No edge calculated!");
} }
@ -209,7 +209,7 @@ bool LoaderPass::runOnModule(Module &M) {
} }
} }
if (ReadCount != Counters.size()) { if (ReadCount != Counters.size()) {
errs() << "WARNING: profile information is inconsistent with " dbgs() << "WARNING: profile information is inconsistent with "
<< "the current program!\n"; << "the current program!\n";
} }
NumEdgesRead = ReadCount; NumEdgesRead = ReadCount;
@ -230,7 +230,7 @@ bool LoaderPass::runOnModule(Module &M) {
BlockInformation[F][BB] = (double)Counters[ReadCount++]; BlockInformation[F][BB] = (double)Counters[ReadCount++];
} }
if (ReadCount != Counters.size()) { if (ReadCount != Counters.size()) {
errs() << "WARNING: profile information is inconsistent with " dbgs() << "WARNING: profile information is inconsistent with "
<< "the current program!\n"; << "the current program!\n";
} }
} }
@ -249,7 +249,7 @@ bool LoaderPass::runOnModule(Module &M) {
FunctionInformation[F] = (double)Counters[ReadCount++]; FunctionInformation[F] = (double)Counters[ReadCount++];
} }
if (ReadCount != Counters.size()) { if (ReadCount != Counters.size()) {
errs() << "WARNING: profile information is inconsistent with " dbgs() << "WARNING: profile information is inconsistent with "
<< "the current program!\n"; << "the current program!\n";
} }
} }