blob: 182404c4d15f8bbe588c98e4c04387a67bca04dc [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
Chris Lattner44dadff2007-05-06 09:29: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
Reid Spencer86a9a7a2004-06-29 23:34:27 +000030#include "llvm/Analysis/Verifier.h"
Chris Lattner45e0f892007-04-29 08:12:22 +000031#include "llvm/Bitcode/BitstreamReader.h"
Chris Lattner4238d472007-04-29 20:00:02 +000032#include "llvm/Bitcode/LLVMBitCodes.h"
Chris Lattnere2a466b2009-04-06 20:54:32 +000033#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000034#include "llvm/Support/CommandLine.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000035#include "llvm/Support/ManagedStatic.h"
Chris Lattner45e0f892007-04-29 08:12:22 +000036#include "llvm/Support/MemoryBuffer.h"
Chris Lattnercc14d252009-03-06 05:34:10 +000037#include "llvm/Support/PrettyStackTrace.h"
Reid Spencerdac69c82004-06-07 17:53:43 +000038#include "llvm/System/Signals.h"
Chris Lattner44dadff2007-05-06 09:29:57 +000039#include <map>
Reid Spencerdac69c82004-06-07 17:53:43 +000040#include <fstream>
41#include <iostream>
Chris Lattnerb1e85b52007-05-05 01:46:49 +000042#include <algorithm>
Reid Spencerdac69c82004-06-07 17:53:43 +000043using namespace llvm;
44
45static cl::opt<std::string>
Gabor Greif8ff70c22007-07-04 21:55:50 +000046 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
Reid Spencerdac69c82004-06-07 17:53:43 +000047
Reid Spencer75937452004-08-21 21:00:24 +000048static cl::opt<std::string>
49 OutputFilename("-o", cl::init("-"), cl::desc("<output file>"));
50
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",
62 cl::desc("Emit numberic info in dump even if"
63 " symbolic info is available"));
64
Chris Lattner45e0f892007-04-29 08:12:22 +000065/// 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
Chris Lattner4238d472007-04-29 20:00:02 +000072
73/// GetBlockName - Return a symbolic block name if known, otherwise return
Chris Lattnerb30c9252007-04-29 21:48:19 +000074/// null.
Chris Lattner4238d472007-04-29 20:00:02 +000075static const char *GetBlockName(unsigned BlockID) {
Chris Lattner1772b122007-05-05 00:17:42 +000076 // 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
Chris Lattnerb30c9252007-04-29 21:48:19 +000083 if (CurStreamType != LLVMIRBitstream) return 0;
Chris Lattner4238d472007-04-29 20:00:02 +000084
85 switch (BlockID) {
Chris Lattnerb30c9252007-04-29 21:48:19 +000086 default: return 0;
Chris Lattner4238d472007-04-29 20:00:02 +000087 case bitc::MODULE_BLOCK_ID: return "MODULE_BLOCK";
Chris Lattnercd5b7d72007-05-04 03:01:41 +000088 case bitc::PARAMATTR_BLOCK_ID: return "PARAMATTR_BLOCK";
Chris Lattner4238d472007-04-29 20:00:02 +000089 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
Chris Lattnerb30c9252007-04-29 21:48:19 +000097/// GetCodeName - Return a symbolic code name if known, otherwise return
98/// null.
99static const char *GetCodeName(unsigned CodeID, unsigned BlockID) {
Chris Lattner1772b122007-05-05 00:17:42 +0000100 // 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
Chris Lattnerb30c9252007-04-29 21:48:19 +0000111 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 Lewycky82b80d92008-11-07 14:52:51 +0000128 case bitc::MODULE_CODE_GCNAME: return "GCNAME";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000129 }
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000130 case bitc::PARAMATTR_BLOCK_ID:
131 switch (CodeID) {
132 default: return 0;
133 case bitc::PARAMATTR_CODE_ENTRY: return "ENTRY";
134 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000135 case bitc::TYPE_BLOCK_ID:
136 switch (CodeID) {
137 default: return 0;
Nick Lewycky82b80d92008-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";
Chris Lattnerb30c9252007-04-29 21:48:19 +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";
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000165 case bitc::CST_CODE_STRING: return "STRING";
166 case bitc::CST_CODE_CSTRING: return "CSTRING";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000167 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";
Chris Lattnerc5ff2cc2007-05-06 01:50:11 +0000175 case bitc::CST_CODE_INLINEASM: return "INLINEASM";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000176 }
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
Chris Lattner8f926682007-05-01 02:43:46 +0000198 case bitc::FUNC_CODE_INST_PHI: return "INST_PHI";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000199 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 Lambfe63fb92007-12-11 08:59:05 +0000206 case bitc::FUNC_CODE_INST_STORE2: return "INST_STORE2";
Nick Lewycky33a834a2008-03-01 21:47:06 +0000207 case bitc::FUNC_CODE_INST_GETRESULT: return "INST_GETRESULT";
Nick Lewycky82b80d92008-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";
Chris Lattnerb30c9252007-04-29 21:48:19 +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";
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000222 case bitc::VST_CODE_BBENTRY: return "BBENTRY";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000223 }
224 }
225}
226
Chris Lattner4238d472007-04-29 20:00:02 +0000227
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
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000245 /// CodeFreq - Keep track of the number of times we see each code.
246 std::vector<unsigned> CodeFreq;
247
Chris Lattner4238d472007-04-29 20:00:02 +0000248 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
Chris Lattner32de6332007-04-29 08:31:14 +0000257/// 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.
Chris Lattner962dde32009-04-26 20:59:02 +0000265static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
Chris Lattner1772b122007-05-05 00:17:42 +0000266 std::string Indent(IndentLevel*2, ' ');
Chris Lattner4238d472007-04-29 20:00:02 +0000267 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
Chris Lattner32de6332007-04-29 08:31:14 +0000268 unsigned BlockID = Stream.ReadSubBlockID();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000269
Chris Lattner4238d472007-04-29 20:00:02 +0000270 // Get the statistics for this BlockID.
271 PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
272
273 BlockStats.NumInstances++;
Chris Lattner32de6332007-04-29 08:31:14 +0000274
Chris Lattner1772b122007-05-05 00:17:42 +0000275 // 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
Chris Lattnerb30c9252007-04-29 21:48:19 +0000285 unsigned NumWords = 0;
Chris Lattner1772b122007-05-05 00:17:42 +0000286 if (Stream.EnterSubBlock(BlockID, &NumWords))
Chris Lattner32de6332007-04-29 08:31:14 +0000287 return Error("Malformed block record");
288
Chris Lattnerb30c9252007-04-29 21:48:19 +0000289 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
Chris Lattner32de6332007-04-29 08:31:14 +0000304 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) {
Chris Lattner4238d472007-04-29 20:00:02 +0000314 case bitc::END_BLOCK: {
Chris Lattner32de6332007-04-29 08:31:14 +0000315 if (Stream.ReadBlockEnd())
316 return Error("Error at end of block");
Chris Lattner4238d472007-04-29 20:00:02 +0000317 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
318 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000319 if (Dump) {
320 std::cerr << Indent << "</";
321 if (BlockName)
322 std::cerr << BlockName << ">\n";
323 else
324 std::cerr << "UnknownBlock" << BlockID << ">\n";
325 }
Chris Lattner32de6332007-04-29 08:31:14 +0000326 return false;
Chris Lattner4238d472007-04-29 20:00:02 +0000327 }
Chris Lattner44b0f102007-05-05 01:29:31 +0000328 case bitc::ENTER_SUBBLOCK: {
329 uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000330 if (ParseBlock(Stream, IndentLevel+1))
Chris Lattner32de6332007-04-29 08:31:14 +0000331 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000332 ++BlockStats.NumSubBlocks;
Chris Lattner44b0f102007-05-05 01:29:31 +0000333 uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
334
335 // Don't include subblock sizes in the size of this block.
336 BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
Chris Lattner32de6332007-04-29 08:31:14 +0000337 break;
Chris Lattner44b0f102007-05-05 01:29:31 +0000338 }
Chris Lattner32de6332007-04-29 08:31:14 +0000339 case bitc::DEFINE_ABBREV:
340 Stream.ReadAbbrevRecord();
Chris Lattner4238d472007-04-29 20:00:02 +0000341 ++BlockStats.NumAbbrevs;
Chris Lattner32de6332007-04-29 08:31:14 +0000342 break;
343 default:
344 Record.clear();
Chris Lattner3f75d312009-04-06 22:44:40 +0000345
346 ++BlockStats.NumRecords;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000347 if (AbbrevID != bitc::UNABBREV_RECORD)
Chris Lattner3f75d312009-04-06 22:44:40 +0000348 ++BlockStats.NumAbbreviatedRecords;
Chris Lattner3f75d312009-04-06 22:44:40 +0000349
Chris Lattner3f75d312009-04-06 22:44:40 +0000350 const char *BlobStart = 0;
351 unsigned BlobLen = 0;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000352 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000353
354 // Increment the # occurrences of this code.
355 if (BlockStats.CodeFreq.size() <= Code)
356 BlockStats.CodeFreq.resize(Code+1);
357 BlockStats.CodeFreq[Code]++;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000358
359 if (Dump) {
360 std::cerr << Indent << " <";
361 if (const char *CodeName = GetCodeName(Code, BlockID))
362 std::cerr << CodeName;
363 else
364 std::cerr << "UnknownCode" << Code;
365 if (NonSymbolic && GetCodeName(Code, BlockID))
366 std::cerr << " codeid=" << Code;
367 if (AbbrevID != bitc::UNABBREV_RECORD)
368 std::cerr << " abbrevid=" << AbbrevID;
369
370 for (unsigned i = 0, e = Record.size(); i != e; ++i)
371 std::cerr << " op" << i << "=" << (int64_t)Record[i];
372
Chris Lattnerae7dd802009-04-07 02:56:46 +0000373 std::cerr << "/>";
374
375 if (BlobStart) {
376 std::cerr << " blob data = ";
377 bool BlobIsPrintable = true;
378 for (unsigned i = 0; i != BlobLen; ++i)
379 if (!isprint(BlobStart[i])) {
380 BlobIsPrintable = false;
381 break;
382 }
383
384 if (BlobIsPrintable)
385 std::cerr << "'" << std::string(BlobStart, BlobStart+BlobLen) <<"'";
386 else
387 std::cerr << "unprintable, " << BlobLen << " bytes.";
388 }
389
390 std::cerr << "\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000391 }
392
Chris Lattner32de6332007-04-29 08:31:14 +0000393 break;
394 }
395 }
396}
397
Chris Lattner4238d472007-04-29 20:00:02 +0000398static void PrintSize(double Bits) {
399 std::cerr << Bits << "b/" << Bits/8 << "B/" << Bits/32 << "W";
400}
401
402
Chris Lattner45e0f892007-04-29 08:12:22 +0000403/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
404static int AnalyzeBitcode() {
405 // Read the input file.
Chris Lattnere2a466b2009-04-06 20:54:32 +0000406 MemoryBuffer *MemBuf = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str());
Chris Lattner45e0f892007-04-29 08:12:22 +0000407
Chris Lattnere2a466b2009-04-06 20:54:32 +0000408 if (MemBuf == 0)
Chris Lattner32de6332007-04-29 08:31:14 +0000409 return Error("Error reading '" + InputFilename + "'.");
Chris Lattner45e0f892007-04-29 08:12:22 +0000410
Chris Lattnere2a466b2009-04-06 20:54:32 +0000411 if (MemBuf->getBufferSize() & 3)
Chris Lattner32de6332007-04-29 08:31:14 +0000412 return Error("Bitcode stream should be a multiple of 4 bytes in length");
Chris Lattner45e0f892007-04-29 08:12:22 +0000413
Chris Lattnere2a466b2009-04-06 20:54:32 +0000414 unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
415 unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
416
417 // If we have a wrapper header, parse it and ignore the non-bc file contents.
418 // The magic number is 0x0B17C0DE stored in little endian.
419 if (isBitcodeWrapper(BufPtr, EndBufPtr))
420 if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr))
421 return Error("Invalid bitcode wrapper header");
422
Chris Lattner962dde32009-04-26 20:59:02 +0000423 BitstreamReader StreamFile(BufPtr, EndBufPtr);
424 BitstreamCursor Stream(StreamFile);
Chris Lattner45e0f892007-04-29 08:12:22 +0000425
426 // Read the stream signature.
427 char Signature[6];
428 Signature[0] = Stream.Read(8);
429 Signature[1] = Stream.Read(8);
430 Signature[2] = Stream.Read(4);
431 Signature[3] = Stream.Read(4);
432 Signature[4] = Stream.Read(4);
433 Signature[5] = Stream.Read(4);
434
Chris Lattner32de6332007-04-29 08:31:14 +0000435 // Autodetect the file contents, if it is one we know.
Chris Lattner45e0f892007-04-29 08:12:22 +0000436 CurStreamType = UnknownBitstream;
437 if (Signature[0] == 'B' && Signature[1] == 'C' &&
438 Signature[2] == 0x0 && Signature[3] == 0xC &&
439 Signature[4] == 0xE && Signature[5] == 0xD)
440 CurStreamType = LLVMIRBitstream;
441
Chris Lattner4238d472007-04-29 20:00:02 +0000442 unsigned NumTopBlocks = 0;
443
Chris Lattner32de6332007-04-29 08:31:14 +0000444 // Parse the top-level structure. We only allow blocks at the top-level.
445 while (!Stream.AtEndOfStream()) {
446 unsigned Code = Stream.ReadCode();
447 if (Code != bitc::ENTER_SUBBLOCK)
448 return Error("Invalid record at top-level");
449
Chris Lattnerb30c9252007-04-29 21:48:19 +0000450 if (ParseBlock(Stream, 0))
Chris Lattner32de6332007-04-29 08:31:14 +0000451 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000452 ++NumTopBlocks;
Chris Lattner32de6332007-04-29 08:31:14 +0000453 }
454
Chris Lattnerb30c9252007-04-29 21:48:19 +0000455 if (Dump) std::cerr << "\n\n";
456
Chris Lattnere2a466b2009-04-06 20:54:32 +0000457 uint64_t BufferSizeBits = (EndBufPtr-BufPtr)*CHAR_BIT;
Chris Lattner32de6332007-04-29 08:31:14 +0000458 // Print a summary of the read file.
Chris Lattner45e0f892007-04-29 08:12:22 +0000459 std::cerr << "Summary of " << InputFilename << ":\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000460 std::cerr << " Total size: ";
Chris Lattner8f926682007-05-01 02:43:46 +0000461 PrintSize(BufferSizeBits);
Chris Lattner4238d472007-04-29 20:00:02 +0000462 std::cerr << "\n";
463 std::cerr << " Stream type: ";
Chris Lattner45e0f892007-04-29 08:12:22 +0000464 switch (CurStreamType) {
465 default: assert(0 && "Unknown bitstream type");
466 case UnknownBitstream: std::cerr << "unknown\n"; break;
467 case LLVMIRBitstream: std::cerr << "LLVM IR\n"; break;
468 }
Chris Lattner4238d472007-04-29 20:00:02 +0000469 std::cerr << " # Toplevel Blocks: " << NumTopBlocks << "\n";
470 std::cerr << "\n";
471
472 // Emit per-block stats.
473 std::cerr << "Per-block Summary:\n";
474 for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
475 E = BlockIDStats.end(); I != E; ++I) {
476 std::cerr << " Block ID #" << I->first;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000477 if (const char *BlockName = GetBlockName(I->first))
Chris Lattner4238d472007-04-29 20:00:02 +0000478 std::cerr << " (" << BlockName << ")";
479 std::cerr << ":\n";
480
481 const PerBlockIDStats &Stats = I->second;
482 std::cerr << " Num Instances: " << Stats.NumInstances << "\n";
483 std::cerr << " Total Size: ";
484 PrintSize(Stats.NumBits);
485 std::cerr << "\n";
Chris Lattner8f926682007-05-01 02:43:46 +0000486 std::cerr << " % of file: "
487 << Stats.NumBits/(double)BufferSizeBits*100 << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000488 if (Stats.NumInstances > 1) {
489 std::cerr << " Average Size: ";
490 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
491 std::cerr << "\n";
492 std::cerr << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
493 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
494 std::cerr << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
495 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
496 std::cerr << " Tot/Avg Records: " << Stats.NumRecords << "/"
497 << Stats.NumRecords/(double)Stats.NumInstances << "\n";
498 } else {
499 std::cerr << " Num SubBlocks: " << Stats.NumSubBlocks << "\n";
500 std::cerr << " Num Abbrevs: " << Stats.NumAbbrevs << "\n";
501 std::cerr << " Num Records: " << Stats.NumRecords << "\n";
502 }
Chris Lattner1772b122007-05-05 00:17:42 +0000503 if (Stats.NumRecords)
504 std::cerr << " % Abbrev Recs: " << (Stats.NumAbbreviatedRecords/
505 (double)Stats.NumRecords)*100 << "\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000506 std::cerr << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000507
508 // Print a histogram of the codes we see.
509 if (!NoHistogram && !Stats.CodeFreq.empty()) {
510 std::vector<std::pair<unsigned, unsigned> > FreqPairs; // <freq,code>
511 for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
512 if (unsigned Freq = Stats.CodeFreq[i])
513 FreqPairs.push_back(std::make_pair(Freq, i));
514 std::stable_sort(FreqPairs.begin(), FreqPairs.end());
515 std::reverse(FreqPairs.begin(), FreqPairs.end());
516
517 std::cerr << "\tCode Histogram:\n";
518 for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
519 std::cerr << "\t\t" << FreqPairs[i].first << "\t";
520 if (const char *CodeName = GetCodeName(FreqPairs[i].second, I->first))
521 std::cerr << CodeName << "\n";
522 else
523 std::cerr << "UnknownCode" << FreqPairs[i].second << "\n";
524 }
525 std::cerr << "\n";
526
527 }
Chris Lattner4238d472007-04-29 20:00:02 +0000528 }
Chris Lattner45e0f892007-04-29 08:12:22 +0000529 return 0;
530}
Reid Spencerdac69c82004-06-07 17:53:43 +0000531
Chris Lattner32de6332007-04-29 08:31:14 +0000532
Chris Lattnerc30598b2006-12-06 01:18:01 +0000533int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +0000534 // Print a stack trace if we signal out.
Chris Lattner45e0f892007-04-29 08:12:22 +0000535 sys::PrintStackTraceOnErrorSignal();
Chris Lattnercc14d252009-03-06 05:34:10 +0000536 PrettyStackTraceProgram X(argc, argv);
537 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
538 cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
Chris Lattner45e0f892007-04-29 08:12:22 +0000539
Chris Lattner44dadff2007-05-06 09:29:57 +0000540 return AnalyzeBitcode();
Reid Spencerdac69c82004-06-07 17:53:43 +0000541}