2007-07-04 21:55:50 +00:00
|
|
|
//===-- llvm-bcanalyzer.cpp - Bitcode Analyzer --------------------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2004-06-07 17:53:43 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:44:31 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
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:
|
2007-07-04 21:55:50 +00:00
|
|
|
// llvm-bcanalyzer [options] - Read LLVM bitcode from stdin
|
|
|
|
// llvm-bcanalyzer [options] x.bc - Read LLVM bitcode 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
|
2007-07-04 21:55:50 +00:00
|
|
|
// --dump - Dump low-level bitcode structure in readable format
|
2004-06-07 17:53:43 +00:00
|
|
|
//
|
2007-07-04 21:55:50 +00:00
|
|
|
// This tool provides analytical information about a bitcode file. It is
|
|
|
|
// intended as an aid to developers of bitcode reading and writing software. It
|
|
|
|
// produces on std::out a summary of the bitcode file that shows various
|
2004-06-10 18:38:44 +00:00
|
|
|
// statistics about the contents of the file. By default this information is
|
2007-07-04 21:55:50 +00:00
|
|
|
// detailed and contains information about individual bitcode blocks and the
|
2007-05-06 09:29:57 +00:00
|
|
|
// functions in the module.
|
2007-07-04 21:55:50 +00:00
|
|
|
// The tool is also able to print a bitcode file in a straight forward text
|
2005-04-22 00:00:37 +00:00
|
|
|
// format that shows the containment and relationships of the information in
|
2007-07-04 21:55:50 +00:00
|
|
|
// the bitcode file (-dump option).
|
2007-04-29 05:51:00 +00:00
|
|
|
//
|
2004-06-07 17:53:43 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-06-29 23:34:27 +00:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2007-04-29 08:12:22 +00:00
|
|
|
#include "llvm/Bitcode/BitstreamReader.h"
|
2007-04-29 20:00:02 +00:00
|
|
|
#include "llvm/Bitcode/LLVMBitCodes.h"
|
2009-04-06 20:54:32 +00:00
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2007-04-29 08:12:22 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2009-03-06 05:34:10 +00:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2004-06-07 17:53:43 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2007-05-06 09:29:57 +00:00
|
|
|
#include <map>
|
2004-06-07 17:53:43 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
2007-05-05 01:46:49 +00:00
|
|
|
#include <algorithm>
|
2004-06-07 17:53:43 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static cl::opt<std::string>
|
2007-07-04 21:55:50 +00:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
|
2004-06-07 17:53:43 +00:00
|
|
|
|
2004-08-21 21:00:24 +00:00
|
|
|
static cl::opt<std::string>
|
|
|
|
OutputFilename("-o", cl::init("-"), cl::desc("<output file>"));
|
|
|
|
|
2007-07-04 21:55:50 +00:00
|
|
|
static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace"));
|
2007-04-29 08:31:14 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Bitcode specific analysis.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-05-05 01:46:49 +00:00
|
|
|
static cl::opt<bool> NoHistogram("disable-histogram",
|
|
|
|
cl::desc("Do not print per-code histogram"));
|
2007-04-29 08:12:22 +00:00
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
NonSymbolic("non-symbolic",
|
|
|
|
cl::desc("Emit numberic info in dump even if"
|
|
|
|
" symbolic info is available"));
|
|
|
|
|
2007-04-29 08:12:22 +00:00
|
|
|
/// CurStreamType - If we can sniff the flavor of this stream, we can produce
|
|
|
|
/// better dump info.
|
|
|
|
static enum {
|
|
|
|
UnknownBitstream,
|
|
|
|
LLVMIRBitstream
|
|
|
|
} CurStreamType;
|
|
|
|
|
2007-04-29 20:00:02 +00:00
|
|
|
|
|
|
|
/// GetBlockName - Return a symbolic block name if known, otherwise return
|
2007-04-29 21:48:19 +00:00
|
|
|
/// null.
|
2009-04-26 22:21:57 +00:00
|
|
|
static const char *GetBlockName(unsigned BlockID,
|
|
|
|
const BitstreamReader &StreamFile) {
|
2007-05-05 00:17:42 +00:00
|
|
|
// Standard blocks for all bitcode files.
|
|
|
|
if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
|
|
|
|
if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
|
|
|
|
return "BLOCKINFO_BLOCK";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-26 22:21:57 +00:00
|
|
|
// Check to see if we have a blockinfo record for this block, with a name.
|
|
|
|
if (const BitstreamReader::BlockInfo *Info =
|
|
|
|
StreamFile.getBlockInfo(BlockID)) {
|
|
|
|
if (!Info->Name.empty())
|
|
|
|
return Info->Name.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
if (CurStreamType != LLVMIRBitstream) return 0;
|
2007-04-29 20:00:02 +00:00
|
|
|
|
|
|
|
switch (BlockID) {
|
2007-04-29 21:48:19 +00:00
|
|
|
default: return 0;
|
2007-04-29 20:00:02 +00:00
|
|
|
case bitc::MODULE_BLOCK_ID: return "MODULE_BLOCK";
|
2007-05-04 03:01:41 +00:00
|
|
|
case bitc::PARAMATTR_BLOCK_ID: return "PARAMATTR_BLOCK";
|
2007-04-29 20:00:02 +00:00
|
|
|
case bitc::TYPE_BLOCK_ID: return "TYPE_BLOCK";
|
|
|
|
case bitc::CONSTANTS_BLOCK_ID: return "CONSTANTS_BLOCK";
|
|
|
|
case bitc::FUNCTION_BLOCK_ID: return "FUNCTION_BLOCK";
|
|
|
|
case bitc::TYPE_SYMTAB_BLOCK_ID: return "TYPE_SYMTAB";
|
|
|
|
case bitc::VALUE_SYMTAB_BLOCK_ID: return "VALUE_SYMTAB";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
/// GetCodeName - Return a symbolic code name if known, otherwise return
|
|
|
|
/// null.
|
2009-04-26 22:21:57 +00:00
|
|
|
static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
|
|
|
|
const BitstreamReader &StreamFile) {
|
2007-05-05 00:17:42 +00:00
|
|
|
// Standard blocks for all bitcode files.
|
|
|
|
if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
|
|
|
|
if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
|
|
|
|
switch (CodeID) {
|
|
|
|
default: return 0;
|
2009-04-26 22:21:57 +00:00
|
|
|
case bitc::BLOCKINFO_CODE_SETBID: return "SETBID";
|
|
|
|
case bitc::BLOCKINFO_CODE_BLOCKNAME: return "BLOCKNAME";
|
|
|
|
case bitc::BLOCKINFO_CODE_SETRECORDNAME: return "SETRECORDNAME";
|
2007-05-05 00:17:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-26 22:21:57 +00:00
|
|
|
// Check to see if we have a blockinfo record for this record, with a name.
|
|
|
|
if (const BitstreamReader::BlockInfo *Info =
|
|
|
|
StreamFile.getBlockInfo(BlockID)) {
|
|
|
|
for (unsigned i = 0, e = Info->RecordNames.size(); i != e; ++i)
|
|
|
|
if (Info->RecordNames[i].first == CodeID)
|
|
|
|
return Info->RecordNames[i].second.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
if (CurStreamType != LLVMIRBitstream) return 0;
|
|
|
|
|
|
|
|
switch (BlockID) {
|
|
|
|
default: return 0;
|
|
|
|
case bitc::MODULE_BLOCK_ID:
|
|
|
|
switch (CodeID) {
|
|
|
|
default: return 0;
|
|
|
|
case bitc::MODULE_CODE_VERSION: return "VERSION";
|
|
|
|
case bitc::MODULE_CODE_TRIPLE: return "TRIPLE";
|
|
|
|
case bitc::MODULE_CODE_DATALAYOUT: return "DATALAYOUT";
|
|
|
|
case bitc::MODULE_CODE_ASM: return "ASM";
|
|
|
|
case bitc::MODULE_CODE_SECTIONNAME: return "SECTIONNAME";
|
|
|
|
case bitc::MODULE_CODE_DEPLIB: return "DEPLIB";
|
|
|
|
case bitc::MODULE_CODE_GLOBALVAR: return "GLOBALVAR";
|
|
|
|
case bitc::MODULE_CODE_FUNCTION: return "FUNCTION";
|
|
|
|
case bitc::MODULE_CODE_ALIAS: return "ALIAS";
|
|
|
|
case bitc::MODULE_CODE_PURGEVALS: return "PURGEVALS";
|
2008-11-07 14:52:51 +00:00
|
|
|
case bitc::MODULE_CODE_GCNAME: return "GCNAME";
|
2007-04-29 21:48:19 +00:00
|
|
|
}
|
2007-05-04 03:01:41 +00:00
|
|
|
case bitc::PARAMATTR_BLOCK_ID:
|
|
|
|
switch (CodeID) {
|
|
|
|
default: return 0;
|
|
|
|
case bitc::PARAMATTR_CODE_ENTRY: return "ENTRY";
|
|
|
|
}
|
2007-04-29 21:48:19 +00:00
|
|
|
case bitc::TYPE_BLOCK_ID:
|
|
|
|
switch (CodeID) {
|
|
|
|
default: return 0;
|
2008-11-07 14:52:51 +00:00
|
|
|
case bitc::TYPE_CODE_NUMENTRY: return "NUMENTRY";
|
|
|
|
case bitc::TYPE_CODE_VOID: return "VOID";
|
|
|
|
case bitc::TYPE_CODE_FLOAT: return "FLOAT";
|
|
|
|
case bitc::TYPE_CODE_DOUBLE: return "DOUBLE";
|
|
|
|
case bitc::TYPE_CODE_LABEL: return "LABEL";
|
|
|
|
case bitc::TYPE_CODE_OPAQUE: return "OPAQUE";
|
|
|
|
case bitc::TYPE_CODE_INTEGER: return "INTEGER";
|
|
|
|
case bitc::TYPE_CODE_POINTER: return "POINTER";
|
|
|
|
case bitc::TYPE_CODE_FUNCTION: return "FUNCTION";
|
|
|
|
case bitc::TYPE_CODE_STRUCT: return "STRUCT";
|
|
|
|
case bitc::TYPE_CODE_ARRAY: return "ARRAY";
|
|
|
|
case bitc::TYPE_CODE_VECTOR: return "VECTOR";
|
|
|
|
case bitc::TYPE_CODE_X86_FP80: return "X86_FP80";
|
|
|
|
case bitc::TYPE_CODE_FP128: return "FP128";
|
|
|
|
case bitc::TYPE_CODE_PPC_FP128: return "PPC_FP128";
|
2007-04-29 21:48:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case bitc::CONSTANTS_BLOCK_ID:
|
|
|
|
switch (CodeID) {
|
|
|
|
default: return 0;
|
|
|
|
case bitc::CST_CODE_SETTYPE: return "SETTYPE";
|
|
|
|
case bitc::CST_CODE_NULL: return "NULL";
|
|
|
|
case bitc::CST_CODE_UNDEF: return "UNDEF";
|
|
|
|
case bitc::CST_CODE_INTEGER: return "INTEGER";
|
|
|
|
case bitc::CST_CODE_WIDE_INTEGER: return "WIDE_INTEGER";
|
|
|
|
case bitc::CST_CODE_FLOAT: return "FLOAT";
|
|
|
|
case bitc::CST_CODE_AGGREGATE: return "AGGREGATE";
|
2007-05-06 00:53:07 +00:00
|
|
|
case bitc::CST_CODE_STRING: return "STRING";
|
|
|
|
case bitc::CST_CODE_CSTRING: return "CSTRING";
|
2007-04-29 21:48:19 +00:00
|
|
|
case bitc::CST_CODE_CE_BINOP: return "CE_BINOP";
|
|
|
|
case bitc::CST_CODE_CE_CAST: return "CE_CAST";
|
|
|
|
case bitc::CST_CODE_CE_GEP: return "CE_GEP";
|
|
|
|
case bitc::CST_CODE_CE_SELECT: return "CE_SELECT";
|
|
|
|
case bitc::CST_CODE_CE_EXTRACTELT: return "CE_EXTRACTELT";
|
|
|
|
case bitc::CST_CODE_CE_INSERTELT: return "CE_INSERTELT";
|
|
|
|
case bitc::CST_CODE_CE_SHUFFLEVEC: return "CE_SHUFFLEVEC";
|
|
|
|
case bitc::CST_CODE_CE_CMP: return "CE_CMP";
|
2007-05-06 01:50:11 +00:00
|
|
|
case bitc::CST_CODE_INLINEASM: return "INLINEASM";
|
2007-04-29 21:48:19 +00:00
|
|
|
}
|
|
|
|
case bitc::FUNCTION_BLOCK_ID:
|
|
|
|
switch (CodeID) {
|
|
|
|
default: return 0;
|
|
|
|
case bitc::FUNC_CODE_DECLAREBLOCKS: return "DECLAREBLOCKS";
|
|
|
|
|
|
|
|
case bitc::FUNC_CODE_INST_BINOP: return "INST_BINOP";
|
|
|
|
case bitc::FUNC_CODE_INST_CAST: return "INST_CAST";
|
|
|
|
case bitc::FUNC_CODE_INST_GEP: return "INST_GEP";
|
|
|
|
case bitc::FUNC_CODE_INST_SELECT: return "INST_SELECT";
|
|
|
|
case bitc::FUNC_CODE_INST_EXTRACTELT: return "INST_EXTRACTELT";
|
|
|
|
case bitc::FUNC_CODE_INST_INSERTELT: return "INST_INSERTELT";
|
|
|
|
case bitc::FUNC_CODE_INST_SHUFFLEVEC: return "INST_SHUFFLEVEC";
|
|
|
|
case bitc::FUNC_CODE_INST_CMP: return "INST_CMP";
|
|
|
|
|
|
|
|
case bitc::FUNC_CODE_INST_RET: return "INST_RET";
|
|
|
|
case bitc::FUNC_CODE_INST_BR: return "INST_BR";
|
|
|
|
case bitc::FUNC_CODE_INST_SWITCH: return "INST_SWITCH";
|
|
|
|
case bitc::FUNC_CODE_INST_INVOKE: return "INST_INVOKE";
|
|
|
|
case bitc::FUNC_CODE_INST_UNWIND: return "INST_UNWIND";
|
|
|
|
case bitc::FUNC_CODE_INST_UNREACHABLE: return "INST_UNREACHABLE";
|
|
|
|
|
2007-05-01 02:43:46 +00:00
|
|
|
case bitc::FUNC_CODE_INST_PHI: return "INST_PHI";
|
2007-04-29 21:48:19 +00:00
|
|
|
case bitc::FUNC_CODE_INST_MALLOC: return "INST_MALLOC";
|
|
|
|
case bitc::FUNC_CODE_INST_FREE: return "INST_FREE";
|
|
|
|
case bitc::FUNC_CODE_INST_ALLOCA: return "INST_ALLOCA";
|
|
|
|
case bitc::FUNC_CODE_INST_LOAD: return "INST_LOAD";
|
|
|
|
case bitc::FUNC_CODE_INST_STORE: return "INST_STORE";
|
|
|
|
case bitc::FUNC_CODE_INST_CALL: return "INST_CALL";
|
|
|
|
case bitc::FUNC_CODE_INST_VAARG: return "INST_VAARG";
|
2007-12-11 08:59:05 +00:00
|
|
|
case bitc::FUNC_CODE_INST_STORE2: return "INST_STORE2";
|
2008-03-01 21:47:06 +00:00
|
|
|
case bitc::FUNC_CODE_INST_GETRESULT: return "INST_GETRESULT";
|
2008-11-07 14:52:51 +00:00
|
|
|
case bitc::FUNC_CODE_INST_EXTRACTVAL: return "INST_EXTRACTVAL";
|
|
|
|
case bitc::FUNC_CODE_INST_INSERTVAL: return "INST_INSERTVAL";
|
|
|
|
case bitc::FUNC_CODE_INST_CMP2: return "INST_CMP2";
|
|
|
|
case bitc::FUNC_CODE_INST_VSELECT: return "INST_VSELECT";
|
2007-04-29 21:48:19 +00:00
|
|
|
}
|
|
|
|
case bitc::TYPE_SYMTAB_BLOCK_ID:
|
|
|
|
switch (CodeID) {
|
|
|
|
default: return 0;
|
|
|
|
case bitc::TST_CODE_ENTRY: return "ENTRY";
|
|
|
|
}
|
|
|
|
case bitc::VALUE_SYMTAB_BLOCK_ID:
|
|
|
|
switch (CodeID) {
|
|
|
|
default: return 0;
|
|
|
|
case bitc::VST_CODE_ENTRY: return "ENTRY";
|
2007-05-04 03:01:41 +00:00
|
|
|
case bitc::VST_CODE_BBENTRY: return "BBENTRY";
|
2007-04-29 21:48:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-27 17:59:34 +00:00
|
|
|
struct PerRecordStats {
|
|
|
|
unsigned NumInstances;
|
2009-04-27 18:15:27 +00:00
|
|
|
unsigned NumAbbrev;
|
|
|
|
uint64_t TotalBits;
|
|
|
|
|
|
|
|
PerRecordStats() : NumInstances(0), NumAbbrev(0), TotalBits(0) {}
|
2009-04-27 17:59:34 +00:00
|
|
|
};
|
2007-04-29 20:00:02 +00:00
|
|
|
|
|
|
|
struct PerBlockIDStats {
|
|
|
|
/// NumInstances - This the number of times this block ID has been seen.
|
|
|
|
unsigned NumInstances;
|
|
|
|
|
|
|
|
/// NumBits - The total size in bits of all of these blocks.
|
|
|
|
uint64_t NumBits;
|
|
|
|
|
|
|
|
/// NumSubBlocks - The total number of blocks these blocks contain.
|
|
|
|
unsigned NumSubBlocks;
|
|
|
|
|
|
|
|
/// NumAbbrevs - The total number of abbreviations.
|
|
|
|
unsigned NumAbbrevs;
|
|
|
|
|
|
|
|
/// NumRecords - The total number of records these blocks contain, and the
|
|
|
|
/// number that are abbreviated.
|
|
|
|
unsigned NumRecords, NumAbbreviatedRecords;
|
|
|
|
|
2007-05-05 01:46:49 +00:00
|
|
|
/// CodeFreq - Keep track of the number of times we see each code.
|
2009-04-27 17:59:34 +00:00
|
|
|
std::vector<PerRecordStats> CodeFreq;
|
2007-05-05 01:46:49 +00:00
|
|
|
|
2007-04-29 20:00:02 +00:00
|
|
|
PerBlockIDStats()
|
|
|
|
: NumInstances(0), NumBits(0),
|
|
|
|
NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
static std::map<unsigned, PerBlockIDStats> BlockIDStats;
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-04-29 08:31:14 +00:00
|
|
|
/// Error - All bitcode analysis errors go through this function, making this a
|
|
|
|
/// good place to breakpoint if debugging.
|
|
|
|
static bool Error(const std::string &Err) {
|
|
|
|
std::cerr << Err << "\n";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ParseBlock - Read a block, updating statistics, etc.
|
2009-04-26 20:59:02 +00:00
|
|
|
static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
|
2007-05-05 00:17:42 +00:00
|
|
|
std::string Indent(IndentLevel*2, ' ');
|
2007-04-29 20:00:02 +00:00
|
|
|
uint64_t BlockBitStart = Stream.GetCurrentBitNo();
|
2007-04-29 08:31:14 +00:00
|
|
|
unsigned BlockID = Stream.ReadSubBlockID();
|
2007-04-29 21:48:19 +00:00
|
|
|
|
2007-04-29 20:00:02 +00:00
|
|
|
// Get the statistics for this BlockID.
|
|
|
|
PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
|
|
|
|
|
|
|
|
BlockStats.NumInstances++;
|
2007-04-29 08:31:14 +00:00
|
|
|
|
2007-05-05 00:17:42 +00:00
|
|
|
// BLOCKINFO is a special part of the stream.
|
|
|
|
if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
|
|
|
|
if (Dump) std::cerr << Indent << "<BLOCKINFO_BLOCK/>\n";
|
|
|
|
if (Stream.ReadBlockInfoBlock())
|
|
|
|
return Error("Malformed BlockInfoBlock");
|
|
|
|
uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
|
|
|
|
BlockStats.NumBits += BlockBitEnd-BlockBitStart;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
unsigned NumWords = 0;
|
2007-05-05 00:17:42 +00:00
|
|
|
if (Stream.EnterSubBlock(BlockID, &NumWords))
|
2007-04-29 08:31:14 +00:00
|
|
|
return Error("Malformed block record");
|
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
const char *BlockName = 0;
|
|
|
|
if (Dump) {
|
|
|
|
std::cerr << Indent << "<";
|
2009-04-26 22:21:57 +00:00
|
|
|
if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
|
2007-04-29 21:48:19 +00:00
|
|
|
std::cerr << BlockName;
|
|
|
|
else
|
|
|
|
std::cerr << "UnknownBlock" << BlockID;
|
|
|
|
|
|
|
|
if (NonSymbolic && BlockName)
|
|
|
|
std::cerr << " BlockID=" << BlockID;
|
|
|
|
|
|
|
|
std::cerr << " NumWords=" << NumWords
|
|
|
|
<< " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n";
|
|
|
|
}
|
|
|
|
|
2007-04-29 08:31:14 +00:00
|
|
|
SmallVector<uint64_t, 64> Record;
|
|
|
|
|
|
|
|
// Read all the records for this block.
|
|
|
|
while (1) {
|
|
|
|
if (Stream.AtEndOfStream())
|
|
|
|
return Error("Premature end of bitstream");
|
|
|
|
|
2009-04-27 18:15:27 +00:00
|
|
|
uint64_t RecordStartBit = Stream.GetCurrentBitNo();
|
|
|
|
|
2007-04-29 08:31:14 +00:00
|
|
|
// Read the code for this record.
|
|
|
|
unsigned AbbrevID = Stream.ReadCode();
|
|
|
|
switch (AbbrevID) {
|
2007-04-29 20:00:02 +00:00
|
|
|
case bitc::END_BLOCK: {
|
2007-04-29 08:31:14 +00:00
|
|
|
if (Stream.ReadBlockEnd())
|
|
|
|
return Error("Error at end of block");
|
2007-04-29 20:00:02 +00:00
|
|
|
uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
|
|
|
|
BlockStats.NumBits += BlockBitEnd-BlockBitStart;
|
2007-04-29 21:48:19 +00:00
|
|
|
if (Dump) {
|
|
|
|
std::cerr << Indent << "</";
|
|
|
|
if (BlockName)
|
|
|
|
std::cerr << BlockName << ">\n";
|
|
|
|
else
|
|
|
|
std::cerr << "UnknownBlock" << BlockID << ">\n";
|
|
|
|
}
|
2007-04-29 08:31:14 +00:00
|
|
|
return false;
|
2007-04-29 20:00:02 +00:00
|
|
|
}
|
2007-05-05 01:29:31 +00:00
|
|
|
case bitc::ENTER_SUBBLOCK: {
|
|
|
|
uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
|
2007-04-29 21:48:19 +00:00
|
|
|
if (ParseBlock(Stream, IndentLevel+1))
|
2007-04-29 08:31:14 +00:00
|
|
|
return true;
|
2007-04-29 20:00:02 +00:00
|
|
|
++BlockStats.NumSubBlocks;
|
2007-05-05 01:29:31 +00:00
|
|
|
uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
|
|
|
|
|
|
|
|
// Don't include subblock sizes in the size of this block.
|
|
|
|
BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
|
2007-04-29 08:31:14 +00:00
|
|
|
break;
|
2007-05-05 01:29:31 +00:00
|
|
|
}
|
2007-04-29 08:31:14 +00:00
|
|
|
case bitc::DEFINE_ABBREV:
|
|
|
|
Stream.ReadAbbrevRecord();
|
2007-04-29 20:00:02 +00:00
|
|
|
++BlockStats.NumAbbrevs;
|
2007-04-29 08:31:14 +00:00
|
|
|
break;
|
|
|
|
default:
|
2009-04-06 22:44:40 +00:00
|
|
|
Record.clear();
|
|
|
|
|
2007-04-29 20:00:02 +00:00
|
|
|
++BlockStats.NumRecords;
|
2009-04-07 02:56:46 +00:00
|
|
|
if (AbbrevID != bitc::UNABBREV_RECORD)
|
2007-04-29 20:00:02 +00:00
|
|
|
++BlockStats.NumAbbreviatedRecords;
|
2009-04-06 22:44:40 +00:00
|
|
|
|
|
|
|
const char *BlobStart = 0;
|
|
|
|
unsigned BlobLen = 0;
|
2009-04-07 02:56:46 +00:00
|
|
|
unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
|
2007-05-05 01:46:49 +00:00
|
|
|
|
2009-04-27 18:15:27 +00:00
|
|
|
|
|
|
|
|
2007-05-05 01:46:49 +00:00
|
|
|
// Increment the # occurrences of this code.
|
|
|
|
if (BlockStats.CodeFreq.size() <= Code)
|
|
|
|
BlockStats.CodeFreq.resize(Code+1);
|
2009-04-27 17:59:34 +00:00
|
|
|
BlockStats.CodeFreq[Code].NumInstances++;
|
2009-04-27 18:15:27 +00:00
|
|
|
BlockStats.CodeFreq[Code].TotalBits +=
|
|
|
|
Stream.GetCurrentBitNo()-RecordStartBit;
|
|
|
|
if (AbbrevID != bitc::UNABBREV_RECORD)
|
|
|
|
BlockStats.CodeFreq[Code].NumAbbrev++;
|
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
if (Dump) {
|
|
|
|
std::cerr << Indent << " <";
|
2009-04-26 22:21:57 +00:00
|
|
|
if (const char *CodeName =
|
|
|
|
GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
|
2007-04-29 21:48:19 +00:00
|
|
|
std::cerr << CodeName;
|
|
|
|
else
|
|
|
|
std::cerr << "UnknownCode" << Code;
|
2009-04-26 22:21:57 +00:00
|
|
|
if (NonSymbolic &&
|
|
|
|
GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
|
2007-04-29 21:48:19 +00:00
|
|
|
std::cerr << " codeid=" << Code;
|
|
|
|
if (AbbrevID != bitc::UNABBREV_RECORD)
|
|
|
|
std::cerr << " abbrevid=" << AbbrevID;
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = Record.size(); i != e; ++i)
|
|
|
|
std::cerr << " op" << i << "=" << (int64_t)Record[i];
|
|
|
|
|
2009-04-07 02:56:46 +00:00
|
|
|
std::cerr << "/>";
|
|
|
|
|
|
|
|
if (BlobStart) {
|
|
|
|
std::cerr << " blob data = ";
|
|
|
|
bool BlobIsPrintable = true;
|
|
|
|
for (unsigned i = 0; i != BlobLen; ++i)
|
|
|
|
if (!isprint(BlobStart[i])) {
|
|
|
|
BlobIsPrintable = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BlobIsPrintable)
|
|
|
|
std::cerr << "'" << std::string(BlobStart, BlobStart+BlobLen) <<"'";
|
|
|
|
else
|
|
|
|
std::cerr << "unprintable, " << BlobLen << " bytes.";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cerr << "\n";
|
2007-04-29 21:48:19 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 08:31:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-29 20:00:02 +00:00
|
|
|
static void PrintSize(double Bits) {
|
2009-04-27 17:59:34 +00:00
|
|
|
fprintf(stderr, "%.2f/%.2fB/%lluW", Bits, Bits/8,(unsigned long long)Bits/32);
|
|
|
|
}
|
|
|
|
static void PrintSize(uint64_t Bits) {
|
|
|
|
fprintf(stderr, "%llub/%.2fB/%lluW", (unsigned long long)Bits,
|
|
|
|
(double)Bits/8, (unsigned long long)Bits/32);
|
2007-04-29 20:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 08:12:22 +00:00
|
|
|
/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
|
|
|
|
static int AnalyzeBitcode() {
|
|
|
|
// Read the input file.
|
2009-04-06 20:54:32 +00:00
|
|
|
MemoryBuffer *MemBuf = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str());
|
2007-04-29 08:12:22 +00:00
|
|
|
|
2009-04-06 20:54:32 +00:00
|
|
|
if (MemBuf == 0)
|
2007-04-29 08:31:14 +00:00
|
|
|
return Error("Error reading '" + InputFilename + "'.");
|
2007-04-29 08:12:22 +00:00
|
|
|
|
2009-04-06 20:54:32 +00:00
|
|
|
if (MemBuf->getBufferSize() & 3)
|
2007-04-29 08:31:14 +00:00
|
|
|
return Error("Bitcode stream should be a multiple of 4 bytes in length");
|
2007-04-29 08:12:22 +00:00
|
|
|
|
2009-04-06 20:54:32 +00:00
|
|
|
unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
|
|
|
|
unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
|
|
|
|
|
|
|
|
// If we have a wrapper header, parse it and ignore the non-bc file contents.
|
|
|
|
// The magic number is 0x0B17C0DE stored in little endian.
|
|
|
|
if (isBitcodeWrapper(BufPtr, EndBufPtr))
|
|
|
|
if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr))
|
|
|
|
return Error("Invalid bitcode wrapper header");
|
|
|
|
|
2009-04-26 20:59:02 +00:00
|
|
|
BitstreamReader StreamFile(BufPtr, EndBufPtr);
|
|
|
|
BitstreamCursor Stream(StreamFile);
|
2009-04-27 20:04:08 +00:00
|
|
|
StreamFile.CollectBlockInfoNames();
|
2007-04-29 08:12:22 +00:00
|
|
|
|
|
|
|
// Read the stream signature.
|
|
|
|
char Signature[6];
|
|
|
|
Signature[0] = Stream.Read(8);
|
|
|
|
Signature[1] = Stream.Read(8);
|
|
|
|
Signature[2] = Stream.Read(4);
|
|
|
|
Signature[3] = Stream.Read(4);
|
|
|
|
Signature[4] = Stream.Read(4);
|
|
|
|
Signature[5] = Stream.Read(4);
|
|
|
|
|
2007-04-29 08:31:14 +00:00
|
|
|
// Autodetect the file contents, if it is one we know.
|
2007-04-29 08:12:22 +00:00
|
|
|
CurStreamType = UnknownBitstream;
|
|
|
|
if (Signature[0] == 'B' && Signature[1] == 'C' &&
|
|
|
|
Signature[2] == 0x0 && Signature[3] == 0xC &&
|
|
|
|
Signature[4] == 0xE && Signature[5] == 0xD)
|
|
|
|
CurStreamType = LLVMIRBitstream;
|
|
|
|
|
2007-04-29 20:00:02 +00:00
|
|
|
unsigned NumTopBlocks = 0;
|
|
|
|
|
2007-04-29 08:31:14 +00:00
|
|
|
// Parse the top-level structure. We only allow blocks at the top-level.
|
|
|
|
while (!Stream.AtEndOfStream()) {
|
|
|
|
unsigned Code = Stream.ReadCode();
|
|
|
|
if (Code != bitc::ENTER_SUBBLOCK)
|
|
|
|
return Error("Invalid record at top-level");
|
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
if (ParseBlock(Stream, 0))
|
2007-04-29 08:31:14 +00:00
|
|
|
return true;
|
2007-04-29 20:00:02 +00:00
|
|
|
++NumTopBlocks;
|
2007-04-29 08:31:14 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 21:48:19 +00:00
|
|
|
if (Dump) std::cerr << "\n\n";
|
|
|
|
|
2009-04-06 20:54:32 +00:00
|
|
|
uint64_t BufferSizeBits = (EndBufPtr-BufPtr)*CHAR_BIT;
|
2007-04-29 08:31:14 +00:00
|
|
|
// Print a summary of the read file.
|
2007-04-29 08:12:22 +00:00
|
|
|
std::cerr << "Summary of " << InputFilename << ":\n";
|
2007-04-29 20:00:02 +00:00
|
|
|
std::cerr << " Total size: ";
|
2007-05-01 02:43:46 +00:00
|
|
|
PrintSize(BufferSizeBits);
|
2007-04-29 20:00:02 +00:00
|
|
|
std::cerr << "\n";
|
|
|
|
std::cerr << " Stream type: ";
|
2007-04-29 08:12:22 +00:00
|
|
|
switch (CurStreamType) {
|
|
|
|
default: assert(0 && "Unknown bitstream type");
|
|
|
|
case UnknownBitstream: std::cerr << "unknown\n"; break;
|
|
|
|
case LLVMIRBitstream: std::cerr << "LLVM IR\n"; break;
|
|
|
|
}
|
2007-04-29 20:00:02 +00:00
|
|
|
std::cerr << " # Toplevel Blocks: " << NumTopBlocks << "\n";
|
|
|
|
std::cerr << "\n";
|
|
|
|
|
|
|
|
// Emit per-block stats.
|
|
|
|
std::cerr << "Per-block Summary:\n";
|
|
|
|
for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
|
|
|
|
E = BlockIDStats.end(); I != E; ++I) {
|
|
|
|
std::cerr << " Block ID #" << I->first;
|
2009-04-26 22:21:57 +00:00
|
|
|
if (const char *BlockName = GetBlockName(I->first, StreamFile))
|
2007-04-29 20:00:02 +00:00
|
|
|
std::cerr << " (" << BlockName << ")";
|
|
|
|
std::cerr << ":\n";
|
|
|
|
|
|
|
|
const PerBlockIDStats &Stats = I->second;
|
|
|
|
std::cerr << " Num Instances: " << Stats.NumInstances << "\n";
|
|
|
|
std::cerr << " Total Size: ";
|
|
|
|
PrintSize(Stats.NumBits);
|
|
|
|
std::cerr << "\n";
|
2007-05-01 02:43:46 +00:00
|
|
|
std::cerr << " % of file: "
|
|
|
|
<< Stats.NumBits/(double)BufferSizeBits*100 << "\n";
|
2007-05-05 01:46:49 +00:00
|
|
|
if (Stats.NumInstances > 1) {
|
|
|
|
std::cerr << " Average Size: ";
|
|
|
|
PrintSize(Stats.NumBits/(double)Stats.NumInstances);
|
|
|
|
std::cerr << "\n";
|
|
|
|
std::cerr << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
|
|
|
|
<< Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
|
|
|
|
std::cerr << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
|
|
|
|
<< Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
|
|
|
|
std::cerr << " Tot/Avg Records: " << Stats.NumRecords << "/"
|
|
|
|
<< Stats.NumRecords/(double)Stats.NumInstances << "\n";
|
|
|
|
} else {
|
|
|
|
std::cerr << " Num SubBlocks: " << Stats.NumSubBlocks << "\n";
|
|
|
|
std::cerr << " Num Abbrevs: " << Stats.NumAbbrevs << "\n";
|
|
|
|
std::cerr << " Num Records: " << Stats.NumRecords << "\n";
|
|
|
|
}
|
2007-05-05 00:17:42 +00:00
|
|
|
if (Stats.NumRecords)
|
|
|
|
std::cerr << " % Abbrev Recs: " << (Stats.NumAbbreviatedRecords/
|
|
|
|
(double)Stats.NumRecords)*100 << "\n";
|
2007-04-29 20:00:02 +00:00
|
|
|
std::cerr << "\n";
|
2007-05-05 01:46:49 +00:00
|
|
|
|
|
|
|
// Print a histogram of the codes we see.
|
|
|
|
if (!NoHistogram && !Stats.CodeFreq.empty()) {
|
|
|
|
std::vector<std::pair<unsigned, unsigned> > FreqPairs; // <freq,code>
|
|
|
|
for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
|
2009-04-27 17:59:34 +00:00
|
|
|
if (unsigned Freq = Stats.CodeFreq[i].NumInstances)
|
2007-05-05 01:46:49 +00:00
|
|
|
FreqPairs.push_back(std::make_pair(Freq, i));
|
|
|
|
std::stable_sort(FreqPairs.begin(), FreqPairs.end());
|
|
|
|
std::reverse(FreqPairs.begin(), FreqPairs.end());
|
|
|
|
|
2009-04-27 17:59:34 +00:00
|
|
|
std::cerr << "\tRecord Histogram:\n";
|
2009-04-27 18:15:27 +00:00
|
|
|
fprintf(stderr, "\t\t Count # Bits %% Abv Record Kind\n");
|
2007-05-05 01:46:49 +00:00
|
|
|
for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
|
2009-04-27 18:15:27 +00:00
|
|
|
const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
|
|
|
|
|
|
|
|
fprintf(stderr, "\t\t%7d %9llu ", RecStats.NumInstances,
|
|
|
|
RecStats.TotalBits);
|
|
|
|
|
|
|
|
if (RecStats.NumAbbrev)
|
|
|
|
fprintf(stderr, "%7.2f ",
|
|
|
|
(double)RecStats.NumAbbrev/RecStats.NumInstances*100);
|
|
|
|
else
|
|
|
|
fprintf(stderr, " ");
|
2009-04-27 17:59:34 +00:00
|
|
|
|
2009-04-26 22:21:57 +00:00
|
|
|
if (const char *CodeName =
|
|
|
|
GetCodeName(FreqPairs[i].second, I->first, StreamFile))
|
2009-04-27 17:59:34 +00:00
|
|
|
fprintf(stderr, "%s\n", CodeName);
|
2007-05-05 01:46:49 +00:00
|
|
|
else
|
2009-04-27 17:59:34 +00:00
|
|
|
fprintf(stderr, "UnknownCode%d\n", FreqPairs[i].second);
|
2007-05-05 01:46:49 +00:00
|
|
|
}
|
|
|
|
std::cerr << "\n";
|
|
|
|
|
|
|
|
}
|
2007-04-29 20:00:02 +00:00
|
|
|
}
|
2007-04-29 08:12:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2004-06-07 17:53:43 +00:00
|
|
|
|
2007-04-29 08:31:14 +00:00
|
|
|
|
2006-12-06 01:18:01 +00:00
|
|
|
int main(int argc, char **argv) {
|
2009-03-06 05:34:10 +00:00
|
|
|
// Print a stack trace if we signal out.
|
2007-04-29 08:12:22 +00:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2009-03-06 05:34:10 +00:00
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
|
2007-04-29 08:12:22 +00:00
|
|
|
|
2007-05-06 09:29:57 +00:00
|
|
|
return AnalyzeBitcode();
|
2004-06-07 17:53:43 +00:00
|
|
|
}
|