2004-07-02 03:22:53 +00:00
|
|
|
//===-- llvm-bcanalyzer.cpp - Byte Code Analyzer --------------------------===//
|
2004-06-07 17:53:43 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2004-06-10 18:38:44 +00:00
|
|
|
// This file was developed by Reid Spencer and is distributed under the
|
2004-06-08 05:56:58 +00:00
|
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
2004-06-07 17:53:43 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2004-06-08 05:56:58 +00:00
|
|
|
// This tool may be invoked in the following manner:
|
2004-07-02 03:22:53 +00:00
|
|
|
// llvm-bcanalyzer [options] - Read LLVM bytecode from stdin
|
|
|
|
// llvm-bcanalyzer [options] x.bc - Read LLVM bytecode from the x.bc file
|
2004-06-08 05:56:58 +00:00
|
|
|
//
|
2004-06-07 17:53:43 +00:00
|
|
|
// Options:
|
2004-06-10 18:38:44 +00:00
|
|
|
// --help - Output information about command line switches
|
|
|
|
// --nodetails - Don't print out detailed informaton about individual
|
|
|
|
// blocks and functions
|
|
|
|
// --dump - Dump low-level bytecode structure in readable format
|
2004-06-07 17:53:43 +00:00
|
|
|
//
|
2004-06-08 05:56:58 +00:00
|
|
|
// This tool provides analytical information about a bytecode file. It is
|
|
|
|
// intended as an aid to developers of bytecode reading and writing software. It
|
|
|
|
// produces on std::out a summary of the bytecode file that shows various
|
2004-06-10 18:38:44 +00:00
|
|
|
// statistics about the contents of the file. By default this information is
|
|
|
|
// detailed and contains information about individual bytecode blocks and the
|
|
|
|
// functions in the module. To avoid this more detailed output, use the
|
|
|
|
// -nodetails option to limit the output to just module level information.
|
|
|
|
// The tool is also able to print a bytecode file in a straight forward text
|
|
|
|
// format that shows the containment and relationships of the information in
|
|
|
|
// the bytecode file (-dump option).
|
2004-06-07 17:53:43 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-06-29 23:34:27 +00:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2004-06-07 17:53:43 +00:00
|
|
|
#include "llvm/Bytecode/Analyzer.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2004-06-07 17:53:43 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static cl::opt<std::string>
|
|
|
|
InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
|
|
|
|
|
2004-08-21 21:00:24 +00:00
|
|
|
static cl::opt<std::string>
|
|
|
|
OutputFilename("-o", cl::init("-"), cl::desc("<output file>"));
|
|
|
|
|
2004-06-10 18:38:44 +00:00
|
|
|
static cl::opt<bool> NoDetails ("nodetails", cl::desc("Skip detailed output"));
|
2004-06-29 23:34:27 +00:00
|
|
|
static cl::opt<bool> Dump ("dump", cl::desc("Dump low level bytecode trace"));
|
|
|
|
static cl::opt<bool> Verify ("verify", cl::desc("Progressively verify module"));
|
2004-06-07 17:53:43 +00:00
|
|
|
|
|
|
|
int
|
2004-12-30 05:36:08 +00:00
|
|
|
main(int argc, char **argv) {
|
|
|
|
try {
|
|
|
|
cl::ParseCommandLineOptions(argc, argv,
|
|
|
|
" llvm-bcanalyzer Analysis of ByteCode Dumper\n");
|
|
|
|
|
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
|
|
|
|
std::ostream* Out = &std::cout; // Default to printing to stdout...
|
|
|
|
std::istream* In = &std::cin; // Default to reading stdin
|
|
|
|
std::string ErrorMessage;
|
|
|
|
BytecodeAnalysis bca;
|
|
|
|
|
|
|
|
/// Determine what to generate
|
|
|
|
bca.detailedResults = !NoDetails;
|
|
|
|
bca.progressiveVerify = Verify;
|
|
|
|
|
|
|
|
/// Analyze the bytecode file
|
|
|
|
Module* M = AnalyzeBytecodeFile(InputFilename, bca, &ErrorMessage, (Dump?Out:0));
|
|
|
|
|
|
|
|
// All that bcanalyzer does is write the gathered statistics to the output
|
|
|
|
PrintBytecodeAnalysis(bca,*Out);
|
|
|
|
|
|
|
|
if ( M && Verify ) {
|
|
|
|
std::string verificationMsg;
|
|
|
|
try {
|
|
|
|
verifyModule( *M, ThrowExceptionAction );
|
|
|
|
} catch (std::string& errmsg ) {
|
|
|
|
verificationMsg = errmsg;
|
|
|
|
}
|
|
|
|
if ( verificationMsg.length() > 0 )
|
|
|
|
std::cerr << "Final Verification Message: " << verificationMsg << "\n";
|
2004-06-29 23:34:27 +00:00
|
|
|
}
|
|
|
|
|
2004-06-07 17:53:43 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// If there was an error, print it and stop.
|
|
|
|
if ( ErrorMessage.size() ) {
|
|
|
|
std::cerr << argv[0] << ": " << ErrorMessage << "\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-06-07 17:53:43 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
if (Out != &std::cout) {
|
|
|
|
((std::ofstream*)Out)->close();
|
|
|
|
delete Out;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
} catch (const std::string& msg) {
|
|
|
|
std::cerr << argv[0] << ": " << msg << "\n";
|
|
|
|
} catch (...) {
|
|
|
|
std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
|
2004-06-07 17:53:43 +00:00
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
return 1;
|
2004-06-07 17:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// vim: sw=2
|