blob: f0bbc9f9551f0ec230fec1e896da4b4a49c4450b [file] [log] [blame]
Gabor Greif8ff70c22007-07-04 21:55:50 +00001//===-- llvm-bcanalyzer.cpp - Bitcode Analyzer --------------------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
Reid Spencerdac69c82004-06-07 17:53:43 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
Reid Spencerdac69c82004-06-07 17:53:43 +00008//===----------------------------------------------------------------------===//
9//
Reid Spencer96684ef2004-06-08 05:56:58 +000010// This tool may be invoked in the following manner:
Gabor Greif8ff70c22007-07-04 21:55:50 +000011// llvm-bcanalyzer [options] - Read LLVM bitcode from stdin
12// llvm-bcanalyzer [options] x.bc - Read LLVM bitcode from the x.bc file
Reid Spencerdac69c82004-06-07 17:53:43 +000013//
Reid Spencer96684ef2004-06-08 05:56:58 +000014// Options:
Reid Spencer23d46e72004-06-10 18:38:44 +000015// --help - Output information about command line switches
Gabor Greif8ff70c22007-07-04 21:55:50 +000016// --dump - Dump low-level bitcode structure in readable format
Reid Spencer96684ef2004-06-08 05:56:58 +000017//
Gabor Greif8ff70c22007-07-04 21:55:50 +000018// This tool provides analytical information about a bitcode file. It is
19// intended as an aid to developers of bitcode reading and writing software. It
20// produces on std::out a summary of the bitcode file that shows various
Reid Spencer23d46e72004-06-10 18:38:44 +000021// statistics about the contents of the file. By default this information is
Gabor Greif8ff70c22007-07-04 21:55:50 +000022// detailed and contains information about individual bitcode blocks and the
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000023// functions in the module.
Gabor Greif8ff70c22007-07-04 21:55:50 +000024// The tool is also able to print a bitcode file in a straight forward text
Misha Brukman3da94ae2005-04-22 00:00:37 +000025// format that shows the containment and relationships of the information in
Gabor Greif8ff70c22007-07-04 21:55:50 +000026// the bitcode file (-dump option).
Chris Lattner63db4852007-04-29 05:51:00 +000027//
Reid Spencerdac69c82004-06-07 17:53:43 +000028//===----------------------------------------------------------------------===//
29
Michael J. Spencer3ff95632010-12-16 03:29:14 +000030#include "llvm/ADT/OwningPtr.h"
Reid Spencer86a9a7a2004-06-29 23:34:27 +000031#include "llvm/Analysis/Verifier.h"
Chris Lattner45e0f892007-04-29 08:12:22 +000032#include "llvm/Bitcode/BitstreamReader.h"
Chris Lattner4238d472007-04-29 20:00:02 +000033#include "llvm/Bitcode/LLVMBitCodes.h"
Chris Lattnere2a466b2009-04-06 20:54:32 +000034#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000035#include "llvm/Support/CommandLine.h"
Daniel Dunbar42985bb2009-09-25 16:04:21 +000036#include "llvm/Support/Format.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000037#include "llvm/Support/ManagedStatic.h"
Chris Lattner45e0f892007-04-29 08:12:22 +000038#include "llvm/Support/MemoryBuffer.h"
Chris Lattnercc14d252009-03-06 05:34:10 +000039#include "llvm/Support/PrettyStackTrace.h"
Chris Lattner74382b72009-08-23 22:45:37 +000040#include "llvm/Support/raw_ostream.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000041#include "llvm/Support/Signals.h"
Michael J. Spencer333fb042010-12-09 17:36:48 +000042#include "llvm/Support/system_error.h"
Duncan Sands15af79c2009-08-24 10:59:01 +000043#include <cstdio>
Chris Lattner44dadff2007-05-06 09:29:57 +000044#include <map>
Chris Lattnerb1e85b52007-05-05 01:46:49 +000045#include <algorithm>
Reid Spencerdac69c82004-06-07 17:53:43 +000046using namespace llvm;
47
48static cl::opt<std::string>
Gabor Greif8ff70c22007-07-04 21:55:50 +000049 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
Reid Spencerdac69c82004-06-07 17:53:43 +000050
Gabor Greif8ff70c22007-07-04 21:55:50 +000051static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace"));
Chris Lattner32de6332007-04-29 08:31:14 +000052
53//===----------------------------------------------------------------------===//
54// Bitcode specific analysis.
55//===----------------------------------------------------------------------===//
56
Chris Lattnerb1e85b52007-05-05 01:46:49 +000057static cl::opt<bool> NoHistogram("disable-histogram",
58 cl::desc("Do not print per-code histogram"));
Chris Lattner45e0f892007-04-29 08:12:22 +000059
Chris Lattnerb30c9252007-04-29 21:48:19 +000060static cl::opt<bool>
61NonSymbolic("non-symbolic",
Michael J. Spencer3ff95632010-12-16 03:29:14 +000062 cl::desc("Emit numeric info in dump even if"
Chris Lattnerb30c9252007-04-29 21:48:19 +000063 " symbolic info is available"));
64
Dan Gohmane7e4b512010-12-09 20:35:40 +000065namespace {
66
67/// CurStreamTypeType - A type for CurStreamType
68enum CurStreamTypeType {
Chris Lattner45e0f892007-04-29 08:12:22 +000069 UnknownBitstream,
70 LLVMIRBitstream
Dan Gohmane7e4b512010-12-09 20:35:40 +000071};
72
73}
74
75/// CurStreamType - If we can sniff the flavor of this stream, we can produce
76/// better dump info.
77static CurStreamTypeType CurStreamType;
Chris Lattner45e0f892007-04-29 08:12:22 +000078
Chris Lattner4238d472007-04-29 20:00:02 +000079
80/// GetBlockName - Return a symbolic block name if known, otherwise return
Chris Lattnerb30c9252007-04-29 21:48:19 +000081/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000082static const char *GetBlockName(unsigned BlockID,
83 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +000084 // Standard blocks for all bitcode files.
85 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
86 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
87 return "BLOCKINFO_BLOCK";
88 return 0;
89 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000090
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000091 // Check to see if we have a blockinfo record for this block, with a name.
92 if (const BitstreamReader::BlockInfo *Info =
93 StreamFile.getBlockInfo(BlockID)) {
94 if (!Info->Name.empty())
95 return Info->Name.c_str();
96 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000097
98
Chris Lattnerb30c9252007-04-29 21:48:19 +000099 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000100
Chris Lattner4238d472007-04-29 20:00:02 +0000101 switch (BlockID) {
Devang Patele8e02132009-09-18 19:26:43 +0000102 default: return 0;
103 case bitc::MODULE_BLOCK_ID: return "MODULE_BLOCK";
104 case bitc::PARAMATTR_BLOCK_ID: return "PARAMATTR_BLOCK";
Chris Lattner1afcace2011-07-09 17:41:24 +0000105 case bitc::TYPE_BLOCK_ID_OLD: return "TYPE_BLOCK_ID_OLD";
106 case bitc::TYPE_BLOCK_ID_NEW: return "TYPE_BLOCK_ID";
Devang Patele8e02132009-09-18 19:26:43 +0000107 case bitc::CONSTANTS_BLOCK_ID: return "CONSTANTS_BLOCK";
108 case bitc::FUNCTION_BLOCK_ID: return "FUNCTION_BLOCK";
Chris Lattner1afcace2011-07-09 17:41:24 +0000109 case bitc::TYPE_SYMTAB_BLOCK_ID_OLD: return "TYPE_SYMTAB_OLD";
Devang Patele8e02132009-09-18 19:26:43 +0000110 case bitc::VALUE_SYMTAB_BLOCK_ID: return "VALUE_SYMTAB";
111 case bitc::METADATA_BLOCK_ID: return "METADATA_BLOCK";
112 case bitc::METADATA_ATTACHMENT_ID: return "METADATA_ATTACHMENT_BLOCK";
Chris Lattner4238d472007-04-29 20:00:02 +0000113 }
114}
115
Chris Lattnerb30c9252007-04-29 21:48:19 +0000116/// GetCodeName - Return a symbolic code name if known, otherwise return
117/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000118static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
119 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +0000120 // Standard blocks for all bitcode files.
121 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
122 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
123 switch (CodeID) {
124 default: return 0;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000125 case bitc::BLOCKINFO_CODE_SETBID: return "SETBID";
126 case bitc::BLOCKINFO_CODE_BLOCKNAME: return "BLOCKNAME";
127 case bitc::BLOCKINFO_CODE_SETRECORDNAME: return "SETRECORDNAME";
Chris Lattner1772b122007-05-05 00:17:42 +0000128 }
129 }
130 return 0;
131 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000132
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000133 // Check to see if we have a blockinfo record for this record, with a name.
134 if (const BitstreamReader::BlockInfo *Info =
135 StreamFile.getBlockInfo(BlockID)) {
136 for (unsigned i = 0, e = Info->RecordNames.size(); i != e; ++i)
137 if (Info->RecordNames[i].first == CodeID)
138 return Info->RecordNames[i].second.c_str();
139 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000140
141
Chris Lattnerb30c9252007-04-29 21:48:19 +0000142 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000143
Chris Lattnerb30c9252007-04-29 21:48:19 +0000144 switch (BlockID) {
145 default: return 0;
146 case bitc::MODULE_BLOCK_ID:
147 switch (CodeID) {
148 default: return 0;
149 case bitc::MODULE_CODE_VERSION: return "VERSION";
150 case bitc::MODULE_CODE_TRIPLE: return "TRIPLE";
151 case bitc::MODULE_CODE_DATALAYOUT: return "DATALAYOUT";
152 case bitc::MODULE_CODE_ASM: return "ASM";
153 case bitc::MODULE_CODE_SECTIONNAME: return "SECTIONNAME";
154 case bitc::MODULE_CODE_DEPLIB: return "DEPLIB";
155 case bitc::MODULE_CODE_GLOBALVAR: return "GLOBALVAR";
156 case bitc::MODULE_CODE_FUNCTION: return "FUNCTION";
157 case bitc::MODULE_CODE_ALIAS: return "ALIAS";
158 case bitc::MODULE_CODE_PURGEVALS: return "PURGEVALS";
Nick Lewycky82b80d92008-11-07 14:52:51 +0000159 case bitc::MODULE_CODE_GCNAME: return "GCNAME";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000160 }
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000161 case bitc::PARAMATTR_BLOCK_ID:
162 switch (CodeID) {
163 default: return 0;
164 case bitc::PARAMATTR_CODE_ENTRY: return "ENTRY";
165 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000166 case bitc::TYPE_BLOCK_ID_OLD:
167 case bitc::TYPE_BLOCK_ID_NEW:
Chris Lattnerb30c9252007-04-29 21:48:19 +0000168 switch (CodeID) {
169 default: return 0;
Chris Lattner1afcace2011-07-09 17:41:24 +0000170 case bitc::TYPE_CODE_NUMENTRY: return "NUMENTRY";
171 case bitc::TYPE_CODE_VOID: return "VOID";
172 case bitc::TYPE_CODE_FLOAT: return "FLOAT";
173 case bitc::TYPE_CODE_DOUBLE: return "DOUBLE";
174 case bitc::TYPE_CODE_LABEL: return "LABEL";
175 case bitc::TYPE_CODE_OPAQUE: return "OPAQUE";
176 case bitc::TYPE_CODE_INTEGER: return "INTEGER";
177 case bitc::TYPE_CODE_POINTER: return "POINTER";
Chad Rosiercde54642011-11-03 00:14:01 +0000178 case bitc::TYPE_CODE_FUNCTION_OLD: return "FUNCTION_OLD";
Chris Lattner1afcace2011-07-09 17:41:24 +0000179 case bitc::TYPE_CODE_STRUCT_OLD: return "STRUCT_OLD";
180 case bitc::TYPE_CODE_ARRAY: return "ARRAY";
181 case bitc::TYPE_CODE_VECTOR: return "VECTOR";
182 case bitc::TYPE_CODE_X86_FP80: return "X86_FP80";
183 case bitc::TYPE_CODE_FP128: return "FP128";
184 case bitc::TYPE_CODE_PPC_FP128: return "PPC_FP128";
185 case bitc::TYPE_CODE_METADATA: return "METADATA";
186 case bitc::TYPE_CODE_STRUCT_ANON: return "STRUCT_ANON";
187 case bitc::TYPE_CODE_STRUCT_NAME: return "STRUCT_NAME";
188 case bitc::TYPE_CODE_STRUCT_NAMED: return "STRUCT_NAMED";
Chad Rosiercde54642011-11-03 00:14:01 +0000189 case bitc::TYPE_CODE_FUNCTION: return "FUNCTION";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000190 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000191
Chris Lattnerb30c9252007-04-29 21:48:19 +0000192 case bitc::CONSTANTS_BLOCK_ID:
193 switch (CodeID) {
194 default: return 0;
Duncan Sands0cad4e32009-09-25 12:28:37 +0000195 case bitc::CST_CODE_SETTYPE: return "SETTYPE";
196 case bitc::CST_CODE_NULL: return "NULL";
197 case bitc::CST_CODE_UNDEF: return "UNDEF";
198 case bitc::CST_CODE_INTEGER: return "INTEGER";
199 case bitc::CST_CODE_WIDE_INTEGER: return "WIDE_INTEGER";
200 case bitc::CST_CODE_FLOAT: return "FLOAT";
201 case bitc::CST_CODE_AGGREGATE: return "AGGREGATE";
202 case bitc::CST_CODE_STRING: return "STRING";
203 case bitc::CST_CODE_CSTRING: return "CSTRING";
204 case bitc::CST_CODE_CE_BINOP: return "CE_BINOP";
205 case bitc::CST_CODE_CE_CAST: return "CE_CAST";
206 case bitc::CST_CODE_CE_GEP: return "CE_GEP";
207 case bitc::CST_CODE_CE_INBOUNDS_GEP: return "CE_INBOUNDS_GEP";
208 case bitc::CST_CODE_CE_SELECT: return "CE_SELECT";
209 case bitc::CST_CODE_CE_EXTRACTELT: return "CE_EXTRACTELT";
210 case bitc::CST_CODE_CE_INSERTELT: return "CE_INSERTELT";
211 case bitc::CST_CODE_CE_SHUFFLEVEC: return "CE_SHUFFLEVEC";
212 case bitc::CST_CODE_CE_CMP: return "CE_CMP";
213 case bitc::CST_CODE_INLINEASM: return "INLINEASM";
214 case bitc::CST_CODE_CE_SHUFVEC_EX: return "CE_SHUFVEC_EX";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000215 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000216 case bitc::FUNCTION_BLOCK_ID:
217 switch (CodeID) {
218 default: return 0;
219 case bitc::FUNC_CODE_DECLAREBLOCKS: return "DECLAREBLOCKS";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000220
Duncan Sands0cad4e32009-09-25 12:28:37 +0000221 case bitc::FUNC_CODE_INST_BINOP: return "INST_BINOP";
222 case bitc::FUNC_CODE_INST_CAST: return "INST_CAST";
223 case bitc::FUNC_CODE_INST_GEP: return "INST_GEP";
224 case bitc::FUNC_CODE_INST_INBOUNDS_GEP: return "INST_INBOUNDS_GEP";
225 case bitc::FUNC_CODE_INST_SELECT: return "INST_SELECT";
226 case bitc::FUNC_CODE_INST_EXTRACTELT: return "INST_EXTRACTELT";
227 case bitc::FUNC_CODE_INST_INSERTELT: return "INST_INSERTELT";
228 case bitc::FUNC_CODE_INST_SHUFFLEVEC: return "INST_SHUFFLEVEC";
229 case bitc::FUNC_CODE_INST_CMP: return "INST_CMP";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000230
Duncan Sands0cad4e32009-09-25 12:28:37 +0000231 case bitc::FUNC_CODE_INST_RET: return "INST_RET";
232 case bitc::FUNC_CODE_INST_BR: return "INST_BR";
233 case bitc::FUNC_CODE_INST_SWITCH: return "INST_SWITCH";
234 case bitc::FUNC_CODE_INST_INVOKE: return "INST_INVOKE";
235 case bitc::FUNC_CODE_INST_UNWIND: return "INST_UNWIND";
236 case bitc::FUNC_CODE_INST_UNREACHABLE: return "INST_UNREACHABLE";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000237
Duncan Sands0cad4e32009-09-25 12:28:37 +0000238 case bitc::FUNC_CODE_INST_PHI: return "INST_PHI";
Duncan Sands0cad4e32009-09-25 12:28:37 +0000239 case bitc::FUNC_CODE_INST_ALLOCA: return "INST_ALLOCA";
240 case bitc::FUNC_CODE_INST_LOAD: return "INST_LOAD";
Duncan Sands0cad4e32009-09-25 12:28:37 +0000241 case bitc::FUNC_CODE_INST_VAARG: return "INST_VAARG";
Chris Lattner4f6bab92011-06-17 18:17:37 +0000242 case bitc::FUNC_CODE_INST_STORE: return "INST_STORE";
Duncan Sands0cad4e32009-09-25 12:28:37 +0000243 case bitc::FUNC_CODE_INST_EXTRACTVAL: return "INST_EXTRACTVAL";
244 case bitc::FUNC_CODE_INST_INSERTVAL: return "INST_INSERTVAL";
245 case bitc::FUNC_CODE_INST_CMP2: return "INST_CMP2";
246 case bitc::FUNC_CODE_INST_VSELECT: return "INST_VSELECT";
Chris Lattnera6245242010-04-03 02:17:50 +0000247 case bitc::FUNC_CODE_DEBUG_LOC_AGAIN: return "DEBUG_LOC_AGAIN";
Chris Lattner4f6bab92011-06-17 18:17:37 +0000248 case bitc::FUNC_CODE_INST_CALL: return "INST_CALL";
249 case bitc::FUNC_CODE_DEBUG_LOC: return "DEBUG_LOC";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000250 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000251 case bitc::TYPE_SYMTAB_BLOCK_ID_OLD:
Chris Lattnerb30c9252007-04-29 21:48:19 +0000252 switch (CodeID) {
253 default: return 0;
254 case bitc::TST_CODE_ENTRY: return "ENTRY";
255 }
256 case bitc::VALUE_SYMTAB_BLOCK_ID:
257 switch (CodeID) {
258 default: return 0;
259 case bitc::VST_CODE_ENTRY: return "ENTRY";
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000260 case bitc::VST_CODE_BBENTRY: return "BBENTRY";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000261 }
Devang Patele8e02132009-09-18 19:26:43 +0000262 case bitc::METADATA_ATTACHMENT_ID:
263 switch(CodeID) {
264 default:return 0;
Chris Lattner9d61dd92011-06-17 17:50:30 +0000265 case bitc::METADATA_ATTACHMENT: return "METADATA_ATTACHMENT";
Devang Patele8e02132009-09-18 19:26:43 +0000266 }
Devang Patele54abc92009-07-22 17:43:22 +0000267 case bitc::METADATA_BLOCK_ID:
268 switch(CodeID) {
269 default:return 0;
Dan Gohman43906f92010-07-16 18:28:07 +0000270 case bitc::METADATA_STRING: return "METADATA_STRING";
Devang Patel124e6eb2009-07-30 23:03:19 +0000271 case bitc::METADATA_NAME: return "METADATA_NAME";
Devang Patele8e02132009-09-18 19:26:43 +0000272 case bitc::METADATA_KIND: return "METADATA_KIND";
Chris Lattner9d61dd92011-06-17 17:50:30 +0000273 case bitc::METADATA_NODE: return "METADATA_NODE";
274 case bitc::METADATA_FN_NODE: return "METADATA_FN_NODE";
275 case bitc::METADATA_NAMED_NODE: return "METADATA_NAMED_NODE";
Devang Patele54abc92009-07-22 17:43:22 +0000276 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000277 }
278}
279
Chris Lattner24437472009-04-27 17:59:34 +0000280struct PerRecordStats {
281 unsigned NumInstances;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000282 unsigned NumAbbrev;
283 uint64_t TotalBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000284
Chris Lattnerc167cac2009-04-27 18:15:27 +0000285 PerRecordStats() : NumInstances(0), NumAbbrev(0), TotalBits(0) {}
Chris Lattner24437472009-04-27 17:59:34 +0000286};
Chris Lattner4238d472007-04-29 20:00:02 +0000287
288struct PerBlockIDStats {
289 /// NumInstances - This the number of times this block ID has been seen.
290 unsigned NumInstances;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000291
Chris Lattner4238d472007-04-29 20:00:02 +0000292 /// NumBits - The total size in bits of all of these blocks.
293 uint64_t NumBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000294
Chris Lattner4238d472007-04-29 20:00:02 +0000295 /// NumSubBlocks - The total number of blocks these blocks contain.
296 unsigned NumSubBlocks;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000297
Chris Lattner4238d472007-04-29 20:00:02 +0000298 /// NumAbbrevs - The total number of abbreviations.
299 unsigned NumAbbrevs;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000300
301 /// NumRecords - The total number of records these blocks contain, and the
Chris Lattner4238d472007-04-29 20:00:02 +0000302 /// number that are abbreviated.
303 unsigned NumRecords, NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000304
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000305 /// CodeFreq - Keep track of the number of times we see each code.
Chris Lattner24437472009-04-27 17:59:34 +0000306 std::vector<PerRecordStats> CodeFreq;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000307
Chris Lattner4238d472007-04-29 20:00:02 +0000308 PerBlockIDStats()
309 : NumInstances(0), NumBits(0),
310 NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
311};
312
313static std::map<unsigned, PerBlockIDStats> BlockIDStats;
314
315
316
Chris Lattner32de6332007-04-29 08:31:14 +0000317/// Error - All bitcode analysis errors go through this function, making this a
318/// good place to breakpoint if debugging.
319static bool Error(const std::string &Err) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000320 errs() << Err << "\n";
Chris Lattner32de6332007-04-29 08:31:14 +0000321 return true;
322}
323
324/// ParseBlock - Read a block, updating statistics, etc.
Chris Lattner962dde32009-04-26 20:59:02 +0000325static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
Chris Lattner1772b122007-05-05 00:17:42 +0000326 std::string Indent(IndentLevel*2, ' ');
Chris Lattner4238d472007-04-29 20:00:02 +0000327 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
Chris Lattner32de6332007-04-29 08:31:14 +0000328 unsigned BlockID = Stream.ReadSubBlockID();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000329
Chris Lattner4238d472007-04-29 20:00:02 +0000330 // Get the statistics for this BlockID.
331 PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000332
Chris Lattner4238d472007-04-29 20:00:02 +0000333 BlockStats.NumInstances++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000334
Chris Lattner1772b122007-05-05 00:17:42 +0000335 // BLOCKINFO is a special part of the stream.
336 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000337 if (Dump) errs() << Indent << "<BLOCKINFO_BLOCK/>\n";
Chris Lattner1772b122007-05-05 00:17:42 +0000338 if (Stream.ReadBlockInfoBlock())
339 return Error("Malformed BlockInfoBlock");
340 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
341 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
342 return false;
343 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000344
Chris Lattnerb30c9252007-04-29 21:48:19 +0000345 unsigned NumWords = 0;
Chris Lattner1772b122007-05-05 00:17:42 +0000346 if (Stream.EnterSubBlock(BlockID, &NumWords))
Chris Lattner32de6332007-04-29 08:31:14 +0000347 return Error("Malformed block record");
348
Chris Lattnerb30c9252007-04-29 21:48:19 +0000349 const char *BlockName = 0;
350 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000351 errs() << Indent << "<";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000352 if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
Dan Gohman65f57c22009-07-15 16:35:29 +0000353 errs() << BlockName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000354 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000355 errs() << "UnknownBlock" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000356
Chris Lattnerb30c9252007-04-29 21:48:19 +0000357 if (NonSymbolic && BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000358 errs() << " BlockID=" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000359
Dan Gohman65f57c22009-07-15 16:35:29 +0000360 errs() << " NumWords=" << NumWords
361 << " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000362 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000363
Chris Lattner32de6332007-04-29 08:31:14 +0000364 SmallVector<uint64_t, 64> Record;
365
366 // Read all the records for this block.
367 while (1) {
368 if (Stream.AtEndOfStream())
369 return Error("Premature end of bitstream");
370
Chris Lattnerc167cac2009-04-27 18:15:27 +0000371 uint64_t RecordStartBit = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000372
Chris Lattner32de6332007-04-29 08:31:14 +0000373 // Read the code for this record.
374 unsigned AbbrevID = Stream.ReadCode();
375 switch (AbbrevID) {
Chris Lattner4238d472007-04-29 20:00:02 +0000376 case bitc::END_BLOCK: {
Chris Lattner32de6332007-04-29 08:31:14 +0000377 if (Stream.ReadBlockEnd())
378 return Error("Error at end of block");
Chris Lattner4238d472007-04-29 20:00:02 +0000379 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
380 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000381 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000382 errs() << Indent << "</";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000383 if (BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000384 errs() << BlockName << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000385 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000386 errs() << "UnknownBlock" << BlockID << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000387 }
Chris Lattner32de6332007-04-29 08:31:14 +0000388 return false;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000389 }
Chris Lattner44b0f102007-05-05 01:29:31 +0000390 case bitc::ENTER_SUBBLOCK: {
391 uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000392 if (ParseBlock(Stream, IndentLevel+1))
Chris Lattner32de6332007-04-29 08:31:14 +0000393 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000394 ++BlockStats.NumSubBlocks;
Chris Lattner44b0f102007-05-05 01:29:31 +0000395 uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000396
Chris Lattner44b0f102007-05-05 01:29:31 +0000397 // Don't include subblock sizes in the size of this block.
398 BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
Chris Lattner32de6332007-04-29 08:31:14 +0000399 break;
Chris Lattner44b0f102007-05-05 01:29:31 +0000400 }
Chris Lattner32de6332007-04-29 08:31:14 +0000401 case bitc::DEFINE_ABBREV:
402 Stream.ReadAbbrevRecord();
Chris Lattner4238d472007-04-29 20:00:02 +0000403 ++BlockStats.NumAbbrevs;
Chris Lattner32de6332007-04-29 08:31:14 +0000404 break;
405 default:
406 Record.clear();
Chris Lattner3f75d312009-04-06 22:44:40 +0000407
408 ++BlockStats.NumRecords;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000409 if (AbbrevID != bitc::UNABBREV_RECORD)
Chris Lattner3f75d312009-04-06 22:44:40 +0000410 ++BlockStats.NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000411
Chris Lattner3f75d312009-04-06 22:44:40 +0000412 const char *BlobStart = 0;
413 unsigned BlobLen = 0;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000414 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000415
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000416
417
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000418 // Increment the # occurrences of this code.
419 if (BlockStats.CodeFreq.size() <= Code)
420 BlockStats.CodeFreq.resize(Code+1);
Chris Lattner24437472009-04-27 17:59:34 +0000421 BlockStats.CodeFreq[Code].NumInstances++;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000422 BlockStats.CodeFreq[Code].TotalBits +=
423 Stream.GetCurrentBitNo()-RecordStartBit;
424 if (AbbrevID != bitc::UNABBREV_RECORD)
425 BlockStats.CodeFreq[Code].NumAbbrev++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000426
Chris Lattnerb30c9252007-04-29 21:48:19 +0000427 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000428 errs() << Indent << " <";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000429 if (const char *CodeName =
430 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000431 errs() << CodeName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000432 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000433 errs() << "UnknownCode" << Code;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000434 if (NonSymbolic &&
435 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000436 errs() << " codeid=" << Code;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000437 if (AbbrevID != bitc::UNABBREV_RECORD)
Dan Gohman65f57c22009-07-15 16:35:29 +0000438 errs() << " abbrevid=" << AbbrevID;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000439
440 for (unsigned i = 0, e = Record.size(); i != e; ++i)
Dan Gohman65f57c22009-07-15 16:35:29 +0000441 errs() << " op" << i << "=" << (int64_t)Record[i];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000442
Dan Gohman65f57c22009-07-15 16:35:29 +0000443 errs() << "/>";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000444
Chris Lattnerae7dd802009-04-07 02:56:46 +0000445 if (BlobStart) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000446 errs() << " blob data = ";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000447 bool BlobIsPrintable = true;
448 for (unsigned i = 0; i != BlobLen; ++i)
449 if (!isprint(BlobStart[i])) {
450 BlobIsPrintable = false;
451 break;
452 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000453
Chris Lattnerae7dd802009-04-07 02:56:46 +0000454 if (BlobIsPrintable)
Dan Gohman65f57c22009-07-15 16:35:29 +0000455 errs() << "'" << std::string(BlobStart, BlobStart+BlobLen) <<"'";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000456 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000457 errs() << "unprintable, " << BlobLen << " bytes.";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000458 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000459
Dan Gohman65f57c22009-07-15 16:35:29 +0000460 errs() << "\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000461 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000462
Chris Lattner32de6332007-04-29 08:31:14 +0000463 break;
464 }
465 }
466}
467
Chris Lattner4238d472007-04-29 20:00:02 +0000468static void PrintSize(double Bits) {
NAKAMURA Takumi3bc729c2011-03-18 03:21:04 +0000469 fprintf(stderr, "%.2f/%.2fB/%luW", Bits, Bits/8,(unsigned long)(Bits/32));
Chris Lattner24437472009-04-27 17:59:34 +0000470}
471static void PrintSize(uint64_t Bits) {
NAKAMURA Takumi3bc729c2011-03-18 03:21:04 +0000472 fprintf(stderr, "%lub/%.2fB/%luW", (unsigned long)Bits,
473 (double)Bits/8, (unsigned long)(Bits/32));
Chris Lattner4238d472007-04-29 20:00:02 +0000474}
475
476
Chris Lattner45e0f892007-04-29 08:12:22 +0000477/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
478static int AnalyzeBitcode() {
479 // Read the input file.
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000480 OwningPtr<MemoryBuffer> MemBuf;
Chris Lattner45e0f892007-04-29 08:12:22 +0000481
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000482 if (error_code ec =
483 MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), MemBuf))
Michael J. Spencer333fb042010-12-09 17:36:48 +0000484 return Error("Error reading '" + InputFilename + "': " + ec.message());
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000485
Chris Lattnere2a466b2009-04-06 20:54:32 +0000486 if (MemBuf->getBufferSize() & 3)
Chris Lattner32de6332007-04-29 08:31:14 +0000487 return Error("Bitcode stream should be a multiple of 4 bytes in length");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000488
Chris Lattnere2a466b2009-04-06 20:54:32 +0000489 unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
490 unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000491
Chris Lattnere2a466b2009-04-06 20:54:32 +0000492 // If we have a wrapper header, parse it and ignore the non-bc file contents.
493 // The magic number is 0x0B17C0DE stored in little endian.
494 if (isBitcodeWrapper(BufPtr, EndBufPtr))
495 if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr))
496 return Error("Invalid bitcode wrapper header");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000497
Chris Lattner962dde32009-04-26 20:59:02 +0000498 BitstreamReader StreamFile(BufPtr, EndBufPtr);
499 BitstreamCursor Stream(StreamFile);
Chris Lattner0370cc62009-04-27 20:04:08 +0000500 StreamFile.CollectBlockInfoNames();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000501
Chris Lattner45e0f892007-04-29 08:12:22 +0000502 // Read the stream signature.
503 char Signature[6];
504 Signature[0] = Stream.Read(8);
505 Signature[1] = Stream.Read(8);
506 Signature[2] = Stream.Read(4);
507 Signature[3] = Stream.Read(4);
508 Signature[4] = Stream.Read(4);
509 Signature[5] = Stream.Read(4);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000510
Chris Lattner32de6332007-04-29 08:31:14 +0000511 // Autodetect the file contents, if it is one we know.
Chris Lattner45e0f892007-04-29 08:12:22 +0000512 CurStreamType = UnknownBitstream;
513 if (Signature[0] == 'B' && Signature[1] == 'C' &&
514 Signature[2] == 0x0 && Signature[3] == 0xC &&
515 Signature[4] == 0xE && Signature[5] == 0xD)
516 CurStreamType = LLVMIRBitstream;
517
Chris Lattner4238d472007-04-29 20:00:02 +0000518 unsigned NumTopBlocks = 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000519
Chris Lattner32de6332007-04-29 08:31:14 +0000520 // Parse the top-level structure. We only allow blocks at the top-level.
521 while (!Stream.AtEndOfStream()) {
522 unsigned Code = Stream.ReadCode();
523 if (Code != bitc::ENTER_SUBBLOCK)
524 return Error("Invalid record at top-level");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000525
Chris Lattnerb30c9252007-04-29 21:48:19 +0000526 if (ParseBlock(Stream, 0))
Chris Lattner32de6332007-04-29 08:31:14 +0000527 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000528 ++NumTopBlocks;
Chris Lattner32de6332007-04-29 08:31:14 +0000529 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000530
Dan Gohman65f57c22009-07-15 16:35:29 +0000531 if (Dump) errs() << "\n\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000532
Chris Lattnere2a466b2009-04-06 20:54:32 +0000533 uint64_t BufferSizeBits = (EndBufPtr-BufPtr)*CHAR_BIT;
Chris Lattner32de6332007-04-29 08:31:14 +0000534 // Print a summary of the read file.
Dan Gohman65f57c22009-07-15 16:35:29 +0000535 errs() << "Summary of " << InputFilename << ":\n";
536 errs() << " Total size: ";
Chris Lattner8f926682007-05-01 02:43:46 +0000537 PrintSize(BufferSizeBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000538 errs() << "\n";
539 errs() << " Stream type: ";
Chris Lattner45e0f892007-04-29 08:12:22 +0000540 switch (CurStreamType) {
541 default: assert(0 && "Unknown bitstream type");
Dan Gohman65f57c22009-07-15 16:35:29 +0000542 case UnknownBitstream: errs() << "unknown\n"; break;
543 case LLVMIRBitstream: errs() << "LLVM IR\n"; break;
Chris Lattner45e0f892007-04-29 08:12:22 +0000544 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000545 errs() << " # Toplevel Blocks: " << NumTopBlocks << "\n";
546 errs() << "\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000547
548 // Emit per-block stats.
Dan Gohman65f57c22009-07-15 16:35:29 +0000549 errs() << "Per-block Summary:\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000550 for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
551 E = BlockIDStats.end(); I != E; ++I) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000552 errs() << " Block ID #" << I->first;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000553 if (const char *BlockName = GetBlockName(I->first, StreamFile))
Dan Gohman65f57c22009-07-15 16:35:29 +0000554 errs() << " (" << BlockName << ")";
555 errs() << ":\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000556
Chris Lattner4238d472007-04-29 20:00:02 +0000557 const PerBlockIDStats &Stats = I->second;
Dan Gohman65f57c22009-07-15 16:35:29 +0000558 errs() << " Num Instances: " << Stats.NumInstances << "\n";
559 errs() << " Total Size: ";
Chris Lattner4238d472007-04-29 20:00:02 +0000560 PrintSize(Stats.NumBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000561 errs() << "\n";
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000562 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
563 errs() << " Percent of file: " << format("%2.4f%%", pct) << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000564 if (Stats.NumInstances > 1) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000565 errs() << " Average Size: ";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000566 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
Dan Gohman65f57c22009-07-15 16:35:29 +0000567 errs() << "\n";
568 errs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
569 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
570 errs() << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
571 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
572 errs() << " Tot/Avg Records: " << Stats.NumRecords << "/"
573 << Stats.NumRecords/(double)Stats.NumInstances << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000574 } else {
Dan Gohman65f57c22009-07-15 16:35:29 +0000575 errs() << " Num SubBlocks: " << Stats.NumSubBlocks << "\n";
576 errs() << " Num Abbrevs: " << Stats.NumAbbrevs << "\n";
577 errs() << " Num Records: " << Stats.NumRecords << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000578 }
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000579 if (Stats.NumRecords) {
580 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords;
581 errs() << " Percent Abbrevs: " << format("%2.4f%%", pct) << "\n";
582 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000583 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000584
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000585 // Print a histogram of the codes we see.
586 if (!NoHistogram && !Stats.CodeFreq.empty()) {
587 std::vector<std::pair<unsigned, unsigned> > FreqPairs; // <freq,code>
588 for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
Chris Lattner24437472009-04-27 17:59:34 +0000589 if (unsigned Freq = Stats.CodeFreq[i].NumInstances)
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000590 FreqPairs.push_back(std::make_pair(Freq, i));
591 std::stable_sort(FreqPairs.begin(), FreqPairs.end());
592 std::reverse(FreqPairs.begin(), FreqPairs.end());
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000593
Dan Gohman65f57c22009-07-15 16:35:29 +0000594 errs() << "\tRecord Histogram:\n";
Chris Lattnerc167cac2009-04-27 18:15:27 +0000595 fprintf(stderr, "\t\t Count # Bits %% Abv Record Kind\n");
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000596 for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
Chris Lattnerc167cac2009-04-27 18:15:27 +0000597 const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000598
NAKAMURA Takumi3bc729c2011-03-18 03:21:04 +0000599 fprintf(stderr, "\t\t%7d %9lu ", RecStats.NumInstances,
600 (unsigned long)RecStats.TotalBits);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000601
Chris Lattnerc167cac2009-04-27 18:15:27 +0000602 if (RecStats.NumAbbrev)
603 fprintf(stderr, "%7.2f ",
604 (double)RecStats.NumAbbrev/RecStats.NumInstances*100);
605 else
606 fprintf(stderr, " ");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000607
608 if (const char *CodeName =
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000609 GetCodeName(FreqPairs[i].second, I->first, StreamFile))
Chris Lattner24437472009-04-27 17:59:34 +0000610 fprintf(stderr, "%s\n", CodeName);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000611 else
Chris Lattner24437472009-04-27 17:59:34 +0000612 fprintf(stderr, "UnknownCode%d\n", FreqPairs[i].second);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000613 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000614 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000615
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000616 }
Chris Lattner4238d472007-04-29 20:00:02 +0000617 }
Chris Lattner45e0f892007-04-29 08:12:22 +0000618 return 0;
619}
Reid Spencerdac69c82004-06-07 17:53:43 +0000620
Chris Lattner32de6332007-04-29 08:31:14 +0000621
Chris Lattnerc30598b2006-12-06 01:18:01 +0000622int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +0000623 // Print a stack trace if we signal out.
Chris Lattner45e0f892007-04-29 08:12:22 +0000624 sys::PrintStackTraceOnErrorSignal();
Chris Lattnercc14d252009-03-06 05:34:10 +0000625 PrettyStackTraceProgram X(argc, argv);
626 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
627 cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000628
Chris Lattner44dadff2007-05-06 09:29:57 +0000629 return AnalyzeBitcode();
Reid Spencerdac69c82004-06-07 17:53:43 +0000630}