blob: 2953e08afa560250080507bdc8095020f99232ec [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- llvm-bcanalyzer.cpp - Bitcode Analyzer --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This tool may be invoked in the following manner:
11// llvm-bcanalyzer [options] - Read LLVM bitcode from stdin
12// llvm-bcanalyzer [options] x.bc - Read LLVM bitcode from the x.bc file
13//
14// Options:
15// --help - Output information about command line switches
16// --dump - Dump low-level bitcode structure in readable format
17//
18// 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
21// statistics about the contents of the file. By default this information is
22// detailed and contains information about individual bitcode blocks and the
23// functions in the module.
24// The tool is also able to print a bitcode file in a straight forward text
25// format that shows the containment and relationships of the information in
26// the bitcode file (-dump option).
27//
28//===----------------------------------------------------------------------===//
29
30#include "llvm/Analysis/Verifier.h"
31#include "llvm/Bitcode/BitstreamReader.h"
32#include "llvm/Bitcode/LLVMBitCodes.h"
Chris Lattnerabd0e442009-04-06 20:54:32 +000033#include "llvm/Bitcode/ReaderWriter.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include "llvm/Support/CommandLine.h"
35#include "llvm/Support/ManagedStatic.h"
36#include "llvm/Support/MemoryBuffer.h"
Chris Lattnere6012df2009-03-06 05:34:10 +000037#include "llvm/Support/PrettyStackTrace.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038#include "llvm/System/Signals.h"
39#include <map>
40#include <fstream>
41#include <iostream>
42#include <algorithm>
43using namespace llvm;
44
45static cl::opt<std::string>
46 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
47
48static cl::opt<std::string>
49 OutputFilename("-o", cl::init("-"), cl::desc("<output file>"));
50
51static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace"));
52
53//===----------------------------------------------------------------------===//
54// Bitcode specific analysis.
55//===----------------------------------------------------------------------===//
56
57static cl::opt<bool> NoHistogram("disable-histogram",
58 cl::desc("Do not print per-code histogram"));
59
60static cl::opt<bool>
61NonSymbolic("non-symbolic",
62 cl::desc("Emit numberic info in dump even if"
63 " symbolic info is available"));
64
65/// CurStreamType - If we can sniff the flavor of this stream, we can produce
66/// better dump info.
67static enum {
68 UnknownBitstream,
69 LLVMIRBitstream
70} CurStreamType;
71
72
73/// GetBlockName - Return a symbolic block name if known, otherwise return
74/// null.
75static const char *GetBlockName(unsigned BlockID) {
76 // Standard blocks for all bitcode files.
77 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
78 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
79 return "BLOCKINFO_BLOCK";
80 return 0;
81 }
82
83 if (CurStreamType != LLVMIRBitstream) return 0;
84
85 switch (BlockID) {
86 default: return 0;
87 case bitc::MODULE_BLOCK_ID: return "MODULE_BLOCK";
88 case bitc::PARAMATTR_BLOCK_ID: return "PARAMATTR_BLOCK";
89 case bitc::TYPE_BLOCK_ID: return "TYPE_BLOCK";
90 case bitc::CONSTANTS_BLOCK_ID: return "CONSTANTS_BLOCK";
91 case bitc::FUNCTION_BLOCK_ID: return "FUNCTION_BLOCK";
92 case bitc::TYPE_SYMTAB_BLOCK_ID: return "TYPE_SYMTAB";
93 case bitc::VALUE_SYMTAB_BLOCK_ID: return "VALUE_SYMTAB";
94 }
95}
96
97/// GetCodeName - Return a symbolic code name if known, otherwise return
98/// null.
99static const char *GetCodeName(unsigned CodeID, unsigned BlockID) {
100 // Standard blocks for all bitcode files.
101 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
102 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
103 switch (CodeID) {
104 default: return 0;
105 case bitc::MODULE_CODE_VERSION: return "VERSION";
106 }
107 }
108 return 0;
109 }
110
111 if (CurStreamType != LLVMIRBitstream) return 0;
112
113 switch (BlockID) {
114 default: return 0;
115 case bitc::MODULE_BLOCK_ID:
116 switch (CodeID) {
117 default: return 0;
118 case bitc::MODULE_CODE_VERSION: return "VERSION";
119 case bitc::MODULE_CODE_TRIPLE: return "TRIPLE";
120 case bitc::MODULE_CODE_DATALAYOUT: return "DATALAYOUT";
121 case bitc::MODULE_CODE_ASM: return "ASM";
122 case bitc::MODULE_CODE_SECTIONNAME: return "SECTIONNAME";
123 case bitc::MODULE_CODE_DEPLIB: return "DEPLIB";
124 case bitc::MODULE_CODE_GLOBALVAR: return "GLOBALVAR";
125 case bitc::MODULE_CODE_FUNCTION: return "FUNCTION";
126 case bitc::MODULE_CODE_ALIAS: return "ALIAS";
127 case bitc::MODULE_CODE_PURGEVALS: return "PURGEVALS";
Nick Lewyckyb90b8412008-11-07 14:52:51 +0000128 case bitc::MODULE_CODE_GCNAME: return "GCNAME";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 }
130 case bitc::PARAMATTR_BLOCK_ID:
131 switch (CodeID) {
132 default: return 0;
133 case bitc::PARAMATTR_CODE_ENTRY: return "ENTRY";
134 }
135 case bitc::TYPE_BLOCK_ID:
136 switch (CodeID) {
137 default: return 0;
Nick Lewyckyb90b8412008-11-07 14:52:51 +0000138 case bitc::TYPE_CODE_NUMENTRY: return "NUMENTRY";
139 case bitc::TYPE_CODE_VOID: return "VOID";
140 case bitc::TYPE_CODE_FLOAT: return "FLOAT";
141 case bitc::TYPE_CODE_DOUBLE: return "DOUBLE";
142 case bitc::TYPE_CODE_LABEL: return "LABEL";
143 case bitc::TYPE_CODE_OPAQUE: return "OPAQUE";
144 case bitc::TYPE_CODE_INTEGER: return "INTEGER";
145 case bitc::TYPE_CODE_POINTER: return "POINTER";
146 case bitc::TYPE_CODE_FUNCTION: return "FUNCTION";
147 case bitc::TYPE_CODE_STRUCT: return "STRUCT";
148 case bitc::TYPE_CODE_ARRAY: return "ARRAY";
149 case bitc::TYPE_CODE_VECTOR: return "VECTOR";
150 case bitc::TYPE_CODE_X86_FP80: return "X86_FP80";
151 case bitc::TYPE_CODE_FP128: return "FP128";
152 case bitc::TYPE_CODE_PPC_FP128: return "PPC_FP128";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 }
154
155 case bitc::CONSTANTS_BLOCK_ID:
156 switch (CodeID) {
157 default: return 0;
158 case bitc::CST_CODE_SETTYPE: return "SETTYPE";
159 case bitc::CST_CODE_NULL: return "NULL";
160 case bitc::CST_CODE_UNDEF: return "UNDEF";
161 case bitc::CST_CODE_INTEGER: return "INTEGER";
162 case bitc::CST_CODE_WIDE_INTEGER: return "WIDE_INTEGER";
163 case bitc::CST_CODE_FLOAT: return "FLOAT";
164 case bitc::CST_CODE_AGGREGATE: return "AGGREGATE";
165 case bitc::CST_CODE_STRING: return "STRING";
166 case bitc::CST_CODE_CSTRING: return "CSTRING";
167 case bitc::CST_CODE_CE_BINOP: return "CE_BINOP";
168 case bitc::CST_CODE_CE_CAST: return "CE_CAST";
169 case bitc::CST_CODE_CE_GEP: return "CE_GEP";
170 case bitc::CST_CODE_CE_SELECT: return "CE_SELECT";
171 case bitc::CST_CODE_CE_EXTRACTELT: return "CE_EXTRACTELT";
172 case bitc::CST_CODE_CE_INSERTELT: return "CE_INSERTELT";
173 case bitc::CST_CODE_CE_SHUFFLEVEC: return "CE_SHUFFLEVEC";
174 case bitc::CST_CODE_CE_CMP: return "CE_CMP";
175 case bitc::CST_CODE_INLINEASM: return "INLINEASM";
176 }
177 case bitc::FUNCTION_BLOCK_ID:
178 switch (CodeID) {
179 default: return 0;
180 case bitc::FUNC_CODE_DECLAREBLOCKS: return "DECLAREBLOCKS";
181
182 case bitc::FUNC_CODE_INST_BINOP: return "INST_BINOP";
183 case bitc::FUNC_CODE_INST_CAST: return "INST_CAST";
184 case bitc::FUNC_CODE_INST_GEP: return "INST_GEP";
185 case bitc::FUNC_CODE_INST_SELECT: return "INST_SELECT";
186 case bitc::FUNC_CODE_INST_EXTRACTELT: return "INST_EXTRACTELT";
187 case bitc::FUNC_CODE_INST_INSERTELT: return "INST_INSERTELT";
188 case bitc::FUNC_CODE_INST_SHUFFLEVEC: return "INST_SHUFFLEVEC";
189 case bitc::FUNC_CODE_INST_CMP: return "INST_CMP";
190
191 case bitc::FUNC_CODE_INST_RET: return "INST_RET";
192 case bitc::FUNC_CODE_INST_BR: return "INST_BR";
193 case bitc::FUNC_CODE_INST_SWITCH: return "INST_SWITCH";
194 case bitc::FUNC_CODE_INST_INVOKE: return "INST_INVOKE";
195 case bitc::FUNC_CODE_INST_UNWIND: return "INST_UNWIND";
196 case bitc::FUNC_CODE_INST_UNREACHABLE: return "INST_UNREACHABLE";
197
198 case bitc::FUNC_CODE_INST_PHI: return "INST_PHI";
199 case bitc::FUNC_CODE_INST_MALLOC: return "INST_MALLOC";
200 case bitc::FUNC_CODE_INST_FREE: return "INST_FREE";
201 case bitc::FUNC_CODE_INST_ALLOCA: return "INST_ALLOCA";
202 case bitc::FUNC_CODE_INST_LOAD: return "INST_LOAD";
203 case bitc::FUNC_CODE_INST_STORE: return "INST_STORE";
204 case bitc::FUNC_CODE_INST_CALL: return "INST_CALL";
205 case bitc::FUNC_CODE_INST_VAARG: return "INST_VAARG";
Christopher Lamb44d62f62007-12-11 08:59:05 +0000206 case bitc::FUNC_CODE_INST_STORE2: return "INST_STORE2";
Nick Lewycky2c3eced2008-03-01 21:47:06 +0000207 case bitc::FUNC_CODE_INST_GETRESULT: return "INST_GETRESULT";
Nick Lewyckyb90b8412008-11-07 14:52:51 +0000208 case bitc::FUNC_CODE_INST_EXTRACTVAL: return "INST_EXTRACTVAL";
209 case bitc::FUNC_CODE_INST_INSERTVAL: return "INST_INSERTVAL";
210 case bitc::FUNC_CODE_INST_CMP2: return "INST_CMP2";
211 case bitc::FUNC_CODE_INST_VSELECT: return "INST_VSELECT";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 }
213 case bitc::TYPE_SYMTAB_BLOCK_ID:
214 switch (CodeID) {
215 default: return 0;
216 case bitc::TST_CODE_ENTRY: return "ENTRY";
217 }
218 case bitc::VALUE_SYMTAB_BLOCK_ID:
219 switch (CodeID) {
220 default: return 0;
221 case bitc::VST_CODE_ENTRY: return "ENTRY";
222 case bitc::VST_CODE_BBENTRY: return "BBENTRY";
223 }
224 }
225}
226
227
228struct PerBlockIDStats {
229 /// NumInstances - This the number of times this block ID has been seen.
230 unsigned NumInstances;
231
232 /// NumBits - The total size in bits of all of these blocks.
233 uint64_t NumBits;
234
235 /// NumSubBlocks - The total number of blocks these blocks contain.
236 unsigned NumSubBlocks;
237
238 /// NumAbbrevs - The total number of abbreviations.
239 unsigned NumAbbrevs;
240
241 /// NumRecords - The total number of records these blocks contain, and the
242 /// number that are abbreviated.
243 unsigned NumRecords, NumAbbreviatedRecords;
244
245 /// CodeFreq - Keep track of the number of times we see each code.
246 std::vector<unsigned> CodeFreq;
247
248 PerBlockIDStats()
249 : NumInstances(0), NumBits(0),
250 NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
251};
252
253static std::map<unsigned, PerBlockIDStats> BlockIDStats;
254
255
256
257/// Error - All bitcode analysis errors go through this function, making this a
258/// good place to breakpoint if debugging.
259static bool Error(const std::string &Err) {
260 std::cerr << Err << "\n";
261 return true;
262}
263
264/// ParseBlock - Read a block, updating statistics, etc.
265static bool ParseBlock(BitstreamReader &Stream, unsigned IndentLevel) {
266 std::string Indent(IndentLevel*2, ' ');
267 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
268 unsigned BlockID = Stream.ReadSubBlockID();
269
270 // Get the statistics for this BlockID.
271 PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
272
273 BlockStats.NumInstances++;
274
275 // BLOCKINFO is a special part of the stream.
276 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
277 if (Dump) std::cerr << Indent << "<BLOCKINFO_BLOCK/>\n";
278 if (Stream.ReadBlockInfoBlock())
279 return Error("Malformed BlockInfoBlock");
280 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
281 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
282 return false;
283 }
284
285 unsigned NumWords = 0;
286 if (Stream.EnterSubBlock(BlockID, &NumWords))
287 return Error("Malformed block record");
288
289 const char *BlockName = 0;
290 if (Dump) {
291 std::cerr << Indent << "<";
292 if ((BlockName = GetBlockName(BlockID)))
293 std::cerr << BlockName;
294 else
295 std::cerr << "UnknownBlock" << BlockID;
296
297 if (NonSymbolic && BlockName)
298 std::cerr << " BlockID=" << BlockID;
299
300 std::cerr << " NumWords=" << NumWords
301 << " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n";
302 }
303
304 SmallVector<uint64_t, 64> Record;
305
306 // Read all the records for this block.
307 while (1) {
308 if (Stream.AtEndOfStream())
309 return Error("Premature end of bitstream");
310
311 // Read the code for this record.
312 unsigned AbbrevID = Stream.ReadCode();
313 switch (AbbrevID) {
314 case bitc::END_BLOCK: {
315 if (Stream.ReadBlockEnd())
316 return Error("Error at end of block");
317 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
318 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
319 if (Dump) {
320 std::cerr << Indent << "</";
321 if (BlockName)
322 std::cerr << BlockName << ">\n";
323 else
324 std::cerr << "UnknownBlock" << BlockID << ">\n";
325 }
326 return false;
327 }
328 case bitc::ENTER_SUBBLOCK: {
329 uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
330 if (ParseBlock(Stream, IndentLevel+1))
331 return true;
332 ++BlockStats.NumSubBlocks;
333 uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
334
335 // Don't include subblock sizes in the size of this block.
336 BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
337 break;
338 }
339 case bitc::DEFINE_ABBREV:
340 Stream.ReadAbbrevRecord();
341 ++BlockStats.NumAbbrevs;
342 break;
343 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 Record.clear();
Chris Lattner7cbe0072009-04-06 22:44:40 +0000345 bool HasBlob = false;
346
347 ++BlockStats.NumRecords;
348 if (AbbrevID != bitc::UNABBREV_RECORD) {
349 ++BlockStats.NumAbbreviatedRecords;
350 const BitCodeAbbrev *Abbv = Stream.getAbbrev(AbbrevID);
351 if (Abbv->getNumOperandInfos() != 0) {
352 const BitCodeAbbrevOp &LastOp =
353 Abbv->getOperandInfo(Abbv->getNumOperandInfos()-1);
354 // If the last operand is a blob, then this record has blob data.
355 if (LastOp.isEncoding() &&
356 LastOp.getEncoding() == BitCodeAbbrevOp::Blob)
357 HasBlob = true;
358 }
359 }
360
361 unsigned Code;
362 const char *BlobStart = 0;
363 unsigned BlobLen = 0;
364 if (!HasBlob)
365 Code = Stream.ReadRecord(AbbrevID, Record);
366 else {
367 Code = Stream.ReadRecord(AbbrevID, Record);
368 BlobStart = BlobStart;
369 BlobLen = BlobLen;
370 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371
372 // Increment the # occurrences of this code.
373 if (BlockStats.CodeFreq.size() <= Code)
374 BlockStats.CodeFreq.resize(Code+1);
375 BlockStats.CodeFreq[Code]++;
376
377 if (Dump) {
378 std::cerr << Indent << " <";
379 if (const char *CodeName = GetCodeName(Code, BlockID))
380 std::cerr << CodeName;
381 else
382 std::cerr << "UnknownCode" << Code;
383 if (NonSymbolic && GetCodeName(Code, BlockID))
384 std::cerr << " codeid=" << Code;
385 if (AbbrevID != bitc::UNABBREV_RECORD)
386 std::cerr << " abbrevid=" << AbbrevID;
387
388 for (unsigned i = 0, e = Record.size(); i != e; ++i)
389 std::cerr << " op" << i << "=" << (int64_t)Record[i];
390
391 std::cerr << "/>\n";
392 }
393
394 break;
395 }
396 }
397}
398
399static void PrintSize(double Bits) {
400 std::cerr << Bits << "b/" << Bits/8 << "B/" << Bits/32 << "W";
401}
402
403
404/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
405static int AnalyzeBitcode() {
406 // Read the input file.
Chris Lattnerabd0e442009-04-06 20:54:32 +0000407 MemoryBuffer *MemBuf = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000408
Chris Lattnerabd0e442009-04-06 20:54:32 +0000409 if (MemBuf == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410 return Error("Error reading '" + InputFilename + "'.");
411
Chris Lattnerabd0e442009-04-06 20:54:32 +0000412 if (MemBuf->getBufferSize() & 3)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413 return Error("Bitcode stream should be a multiple of 4 bytes in length");
414
Chris Lattnerabd0e442009-04-06 20:54:32 +0000415 unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
416 unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
417
418 // If we have a wrapper header, parse it and ignore the non-bc file contents.
419 // The magic number is 0x0B17C0DE stored in little endian.
420 if (isBitcodeWrapper(BufPtr, EndBufPtr))
421 if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr))
422 return Error("Invalid bitcode wrapper header");
423
424 BitstreamReader Stream(BufPtr, EndBufPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425
426
427 // Read the stream signature.
428 char Signature[6];
429 Signature[0] = Stream.Read(8);
430 Signature[1] = Stream.Read(8);
431 Signature[2] = Stream.Read(4);
432 Signature[3] = Stream.Read(4);
433 Signature[4] = Stream.Read(4);
434 Signature[5] = Stream.Read(4);
435
436 // Autodetect the file contents, if it is one we know.
437 CurStreamType = UnknownBitstream;
438 if (Signature[0] == 'B' && Signature[1] == 'C' &&
439 Signature[2] == 0x0 && Signature[3] == 0xC &&
440 Signature[4] == 0xE && Signature[5] == 0xD)
441 CurStreamType = LLVMIRBitstream;
442
443 unsigned NumTopBlocks = 0;
444
445 // Parse the top-level structure. We only allow blocks at the top-level.
446 while (!Stream.AtEndOfStream()) {
447 unsigned Code = Stream.ReadCode();
448 if (Code != bitc::ENTER_SUBBLOCK)
449 return Error("Invalid record at top-level");
450
451 if (ParseBlock(Stream, 0))
452 return true;
453 ++NumTopBlocks;
454 }
455
456 if (Dump) std::cerr << "\n\n";
457
Chris Lattnerabd0e442009-04-06 20:54:32 +0000458 uint64_t BufferSizeBits = (EndBufPtr-BufPtr)*CHAR_BIT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459 // Print a summary of the read file.
460 std::cerr << "Summary of " << InputFilename << ":\n";
461 std::cerr << " Total size: ";
462 PrintSize(BufferSizeBits);
463 std::cerr << "\n";
464 std::cerr << " Stream type: ";
465 switch (CurStreamType) {
466 default: assert(0 && "Unknown bitstream type");
467 case UnknownBitstream: std::cerr << "unknown\n"; break;
468 case LLVMIRBitstream: std::cerr << "LLVM IR\n"; break;
469 }
470 std::cerr << " # Toplevel Blocks: " << NumTopBlocks << "\n";
471 std::cerr << "\n";
472
473 // Emit per-block stats.
474 std::cerr << "Per-block Summary:\n";
475 for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
476 E = BlockIDStats.end(); I != E; ++I) {
477 std::cerr << " Block ID #" << I->first;
478 if (const char *BlockName = GetBlockName(I->first))
479 std::cerr << " (" << BlockName << ")";
480 std::cerr << ":\n";
481
482 const PerBlockIDStats &Stats = I->second;
483 std::cerr << " Num Instances: " << Stats.NumInstances << "\n";
484 std::cerr << " Total Size: ";
485 PrintSize(Stats.NumBits);
486 std::cerr << "\n";
487 std::cerr << " % of file: "
488 << Stats.NumBits/(double)BufferSizeBits*100 << "\n";
489 if (Stats.NumInstances > 1) {
490 std::cerr << " Average Size: ";
491 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
492 std::cerr << "\n";
493 std::cerr << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
494 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
495 std::cerr << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
496 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
497 std::cerr << " Tot/Avg Records: " << Stats.NumRecords << "/"
498 << Stats.NumRecords/(double)Stats.NumInstances << "\n";
499 } else {
500 std::cerr << " Num SubBlocks: " << Stats.NumSubBlocks << "\n";
501 std::cerr << " Num Abbrevs: " << Stats.NumAbbrevs << "\n";
502 std::cerr << " Num Records: " << Stats.NumRecords << "\n";
503 }
504 if (Stats.NumRecords)
505 std::cerr << " % Abbrev Recs: " << (Stats.NumAbbreviatedRecords/
506 (double)Stats.NumRecords)*100 << "\n";
507 std::cerr << "\n";
508
509 // Print a histogram of the codes we see.
510 if (!NoHistogram && !Stats.CodeFreq.empty()) {
511 std::vector<std::pair<unsigned, unsigned> > FreqPairs; // <freq,code>
512 for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
513 if (unsigned Freq = Stats.CodeFreq[i])
514 FreqPairs.push_back(std::make_pair(Freq, i));
515 std::stable_sort(FreqPairs.begin(), FreqPairs.end());
516 std::reverse(FreqPairs.begin(), FreqPairs.end());
517
518 std::cerr << "\tCode Histogram:\n";
519 for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
520 std::cerr << "\t\t" << FreqPairs[i].first << "\t";
521 if (const char *CodeName = GetCodeName(FreqPairs[i].second, I->first))
522 std::cerr << CodeName << "\n";
523 else
524 std::cerr << "UnknownCode" << FreqPairs[i].second << "\n";
525 }
526 std::cerr << "\n";
527
528 }
529 }
530 return 0;
531}
532
533
534int main(int argc, char **argv) {
Chris Lattnere6012df2009-03-06 05:34:10 +0000535 // Print a stack trace if we signal out.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536 sys::PrintStackTraceOnErrorSignal();
Chris Lattnere6012df2009-03-06 05:34:10 +0000537 PrettyStackTraceProgram X(argc, argv);
538 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
539 cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540
541 return AnalyzeBitcode();
542}