Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Unified Diff: tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp

Issue 14813032: Make abbreviations explicit in pnacl-freeze/thaw. (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Remove dead code. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp
diff --git a/tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp b/tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp
index 7c542d79aea1f3b722db112b91008aecb3b76a69..445689bbc6b665bccbac463d8aeb468b95f05d5e 100644
--- a/tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp
+++ b/tools/pnacl-bcanalyzer/pnacl-bcanalyzer.cpp
@@ -28,12 +28,15 @@
//
//===----------------------------------------------------------------------===//
+#define DEBUG_TYPE "pnacl-bcanalyzer"
+
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Analysis/Verifier.h"
#include "llvm/Bitcode/NaCl/NaClBitstreamReader.h"
#include "llvm/Bitcode/NaCl/NaClLLVMBitCodes.h"
#include "llvm/Bitcode/NaCl/NaClReaderWriter.h"
#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/MemoryBuffer.h"
@@ -325,6 +328,7 @@ static bool Error(const std::string &Err) {
static bool ParseBlock(NaClBitstreamCursor &Stream, unsigned BlockID,
unsigned IndentLevel) {
std::string Indent(IndentLevel*2, ' ');
+ DEBUG(dbgs() << Indent << "-> ParseBlock(" << BlockID << ")\n");
uint64_t BlockBitStart = Stream.GetCurrentBitNo();
// Get the statistics for this BlockID.
@@ -339,6 +343,7 @@ static bool ParseBlock(NaClBitstreamCursor &Stream, unsigned BlockID,
return Error("Malformed BlockInfoBlock");
uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
BlockStats.NumBits += BlockBitEnd-BlockBitStart;
+ DEBUG(dbgs() << Indent << "<- ParseBlock\n");
return false;
}
@@ -386,6 +391,7 @@ static bool ParseBlock(NaClBitstreamCursor &Stream, unsigned BlockID,
else
outs() << "UnknownBlock" << BlockID << ">\n";
}
+ DEBUG(dbgs() << Indent << "<- ParseBlock\n");
return false;
}
@@ -478,6 +484,7 @@ static void PrintSize(uint64_t Bits) {
/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
static int AnalyzeBitcode() {
+ DEBUG(dbgs() << "-> AnalyzeBitcode\n");
// Read the input file.
OwningPtr<MemoryBuffer> MemBuf;
@@ -620,6 +627,7 @@ static int AnalyzeBitcode() {
}
}
+ DEBUG(dbgs() << "<- AnalyzeBitcode\n");
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698