33b876e266cf85032251b7d5013301ee9f972ac0
[oota-llvm.git] / tools / llvm-bcanalyzer / llvm-bcanalyzer.cpp
1 //===-- llvm-bcanalyzer.cpp - Bitcode Analyzer --------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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/Bitcode/BitstreamReader.h"
31 #include "llvm/ADT/Optional.h"
32 #include "llvm/Bitcode/LLVMBitCodes.h"
33 #include "llvm/Bitcode/ReaderWriter.h"
34 #include "llvm/IR/Verifier.h"
35 #include "llvm/Support/CommandLine.h"
36 #include "llvm/Support/Format.h"
37 #include "llvm/Support/ManagedStatic.h"
38 #include "llvm/Support/MemoryBuffer.h"
39 #include "llvm/Support/PrettyStackTrace.h"
40 #include "llvm/Support/Signals.h"
41 #include "llvm/Support/raw_ostream.h"
42 #include <algorithm>
43 #include <cctype>
44 #include <map>
45 #include <system_error>
46 using namespace llvm;
47
48 static cl::opt<std::string>
49   InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
50
51 static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace"));
52
53 //===----------------------------------------------------------------------===//
54 // Bitcode specific analysis.
55 //===----------------------------------------------------------------------===//
56
57 static cl::opt<bool> NoHistogram("disable-histogram",
58                                  cl::desc("Do not print per-code histogram"));
59
60 static cl::opt<bool>
61 NonSymbolic("non-symbolic",
62             cl::desc("Emit numeric info in dump even if"
63                      " symbolic info is available"));
64
65 static cl::opt<std::string>
66   BlockInfoFilename("block-info",
67                     cl::desc("Use the BLOCK_INFO from the given file"));
68
69 static cl::opt<bool>
70   ShowBinaryBlobs("show-binary-blobs",
71                   cl::desc("Print binary blobs using hex escapes"));
72
73 namespace {
74
75 /// CurStreamTypeType - A type for CurStreamType
76 enum CurStreamTypeType {
77   UnknownBitstream,
78   LLVMIRBitstream
79 };
80
81 }
82
83 /// GetBlockName - Return a symbolic block name if known, otherwise return
84 /// null.
85 static const char *GetBlockName(unsigned BlockID,
86                                 const BitstreamReader &StreamFile,
87                                 CurStreamTypeType CurStreamType) {
88   // Standard blocks for all bitcode files.
89   if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
90     if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
91       return "BLOCKINFO_BLOCK";
92     return nullptr;
93   }
94
95   // Check to see if we have a blockinfo record for this block, with a name.
96   if (const BitstreamReader::BlockInfo *Info =
97         StreamFile.getBlockInfo(BlockID)) {
98     if (!Info->Name.empty())
99       return Info->Name.c_str();
100   }
101
102
103   if (CurStreamType != LLVMIRBitstream) return nullptr;
104
105   switch (BlockID) {
106   default:                             return nullptr;
107   case bitc::MODULE_BLOCK_ID:          return "MODULE_BLOCK";
108   case bitc::PARAMATTR_BLOCK_ID:       return "PARAMATTR_BLOCK";
109   case bitc::PARAMATTR_GROUP_BLOCK_ID: return "PARAMATTR_GROUP_BLOCK_ID";
110   case bitc::TYPE_BLOCK_ID_NEW:        return "TYPE_BLOCK_ID";
111   case bitc::CONSTANTS_BLOCK_ID:       return "CONSTANTS_BLOCK";
112   case bitc::FUNCTION_BLOCK_ID:        return "FUNCTION_BLOCK";
113   case bitc::VALUE_SYMTAB_BLOCK_ID:    return "VALUE_SYMTAB";
114   case bitc::METADATA_BLOCK_ID:        return "METADATA_BLOCK";
115   case bitc::METADATA_ATTACHMENT_ID:   return "METADATA_ATTACHMENT_BLOCK";
116   case bitc::USELIST_BLOCK_ID:         return "USELIST_BLOCK_ID";
117   }
118 }
119
120 /// GetCodeName - Return a symbolic code name if known, otherwise return
121 /// null.
122 static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
123                                const BitstreamReader &StreamFile,
124                                CurStreamTypeType CurStreamType) {
125   // Standard blocks for all bitcode files.
126   if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
127     if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
128       switch (CodeID) {
129       default: return nullptr;
130       case bitc::BLOCKINFO_CODE_SETBID:        return "SETBID";
131       case bitc::BLOCKINFO_CODE_BLOCKNAME:     return "BLOCKNAME";
132       case bitc::BLOCKINFO_CODE_SETRECORDNAME: return "SETRECORDNAME";
133       }
134     }
135     return nullptr;
136   }
137
138   // Check to see if we have a blockinfo record for this record, with a name.
139   if (const BitstreamReader::BlockInfo *Info =
140         StreamFile.getBlockInfo(BlockID)) {
141     for (unsigned i = 0, e = Info->RecordNames.size(); i != e; ++i)
142       if (Info->RecordNames[i].first == CodeID)
143         return Info->RecordNames[i].second.c_str();
144   }
145
146
147   if (CurStreamType != LLVMIRBitstream) return nullptr;
148
149 #define STRINGIFY_CODE(PREFIX, CODE)                                           \
150   case bitc::PREFIX##_##CODE:                                                  \
151     return #CODE;
152   switch (BlockID) {
153   default: return nullptr;
154   case bitc::MODULE_BLOCK_ID:
155     switch (CodeID) {
156     default: return nullptr;
157       STRINGIFY_CODE(MODULE_CODE, VERSION)
158       STRINGIFY_CODE(MODULE_CODE, TRIPLE)
159       STRINGIFY_CODE(MODULE_CODE, DATALAYOUT)
160       STRINGIFY_CODE(MODULE_CODE, ASM)
161       STRINGIFY_CODE(MODULE_CODE, SECTIONNAME)
162       STRINGIFY_CODE(MODULE_CODE, DEPLIB) // FIXME: Remove in 4.0
163       STRINGIFY_CODE(MODULE_CODE, GLOBALVAR)
164       STRINGIFY_CODE(MODULE_CODE, FUNCTION)
165       STRINGIFY_CODE(MODULE_CODE, ALIAS)
166       STRINGIFY_CODE(MODULE_CODE, PURGEVALS)
167       STRINGIFY_CODE(MODULE_CODE, GCNAME)
168     }
169   case bitc::PARAMATTR_BLOCK_ID:
170     switch (CodeID) {
171     default: return nullptr;
172     // FIXME: Should these be different?
173     case bitc::PARAMATTR_CODE_ENTRY_OLD: return "ENTRY";
174     case bitc::PARAMATTR_CODE_ENTRY:     return "ENTRY";
175     case bitc::PARAMATTR_GRP_CODE_ENTRY: return "ENTRY";
176     }
177   case bitc::TYPE_BLOCK_ID_NEW:
178     switch (CodeID) {
179     default: return nullptr;
180       STRINGIFY_CODE(TYPE_CODE, NUMENTRY)
181       STRINGIFY_CODE(TYPE_CODE, VOID)
182       STRINGIFY_CODE(TYPE_CODE, FLOAT)
183       STRINGIFY_CODE(TYPE_CODE, DOUBLE)
184       STRINGIFY_CODE(TYPE_CODE, LABEL)
185       STRINGIFY_CODE(TYPE_CODE, OPAQUE)
186       STRINGIFY_CODE(TYPE_CODE, INTEGER)
187       STRINGIFY_CODE(TYPE_CODE, POINTER)
188       STRINGIFY_CODE(TYPE_CODE, ARRAY)
189       STRINGIFY_CODE(TYPE_CODE, VECTOR)
190       STRINGIFY_CODE(TYPE_CODE, X86_FP80)
191       STRINGIFY_CODE(TYPE_CODE, FP128)
192       STRINGIFY_CODE(TYPE_CODE, PPC_FP128)
193       STRINGIFY_CODE(TYPE_CODE, METADATA)
194       STRINGIFY_CODE(TYPE_CODE, STRUCT_ANON)
195       STRINGIFY_CODE(TYPE_CODE, STRUCT_NAME)
196       STRINGIFY_CODE(TYPE_CODE, STRUCT_NAMED)
197       STRINGIFY_CODE(TYPE_CODE, FUNCTION)
198     }
199
200   case bitc::CONSTANTS_BLOCK_ID:
201     switch (CodeID) {
202     default: return nullptr;
203       STRINGIFY_CODE(CST_CODE, SETTYPE)
204       STRINGIFY_CODE(CST_CODE, NULL)
205       STRINGIFY_CODE(CST_CODE, UNDEF)
206       STRINGIFY_CODE(CST_CODE, INTEGER)
207       STRINGIFY_CODE(CST_CODE, WIDE_INTEGER)
208       STRINGIFY_CODE(CST_CODE, FLOAT)
209       STRINGIFY_CODE(CST_CODE, AGGREGATE)
210       STRINGIFY_CODE(CST_CODE, STRING)
211       STRINGIFY_CODE(CST_CODE, CSTRING)
212       STRINGIFY_CODE(CST_CODE, CE_BINOP)
213       STRINGIFY_CODE(CST_CODE, CE_CAST)
214       STRINGIFY_CODE(CST_CODE, CE_GEP)
215       STRINGIFY_CODE(CST_CODE, CE_INBOUNDS_GEP)
216       STRINGIFY_CODE(CST_CODE, CE_SELECT)
217       STRINGIFY_CODE(CST_CODE, CE_EXTRACTELT)
218       STRINGIFY_CODE(CST_CODE, CE_INSERTELT)
219       STRINGIFY_CODE(CST_CODE, CE_SHUFFLEVEC)
220       STRINGIFY_CODE(CST_CODE, CE_CMP)
221       STRINGIFY_CODE(CST_CODE, INLINEASM)
222       STRINGIFY_CODE(CST_CODE, CE_SHUFVEC_EX)
223     case bitc::CST_CODE_BLOCKADDRESS:    return "CST_CODE_BLOCKADDRESS";
224       STRINGIFY_CODE(CST_CODE, DATA)
225     }
226   case bitc::FUNCTION_BLOCK_ID:
227     switch (CodeID) {
228     default: return nullptr;
229       STRINGIFY_CODE(FUNC_CODE, DECLAREBLOCKS)
230       STRINGIFY_CODE(FUNC_CODE, INST_BINOP)
231       STRINGIFY_CODE(FUNC_CODE, INST_CAST)
232       STRINGIFY_CODE(FUNC_CODE, INST_GEP_OLD)
233       STRINGIFY_CODE(FUNC_CODE, INST_INBOUNDS_GEP_OLD)
234       STRINGIFY_CODE(FUNC_CODE, INST_SELECT)
235       STRINGIFY_CODE(FUNC_CODE, INST_EXTRACTELT)
236       STRINGIFY_CODE(FUNC_CODE, INST_INSERTELT)
237       STRINGIFY_CODE(FUNC_CODE, INST_SHUFFLEVEC)
238       STRINGIFY_CODE(FUNC_CODE, INST_CMP)
239       STRINGIFY_CODE(FUNC_CODE, INST_RET)
240       STRINGIFY_CODE(FUNC_CODE, INST_BR)
241       STRINGIFY_CODE(FUNC_CODE, INST_SWITCH)
242       STRINGIFY_CODE(FUNC_CODE, INST_INVOKE)
243       STRINGIFY_CODE(FUNC_CODE, INST_UNREACHABLE)
244       STRINGIFY_CODE(FUNC_CODE, INST_CLEANUPRET)
245       STRINGIFY_CODE(FUNC_CODE, INST_CATCHRET)
246       STRINGIFY_CODE(FUNC_CODE, INST_CATCHPAD)
247       STRINGIFY_CODE(FUNC_CODE, INST_CATCHENDPAD)
248       STRINGIFY_CODE(FUNC_CODE, INST_TERMINATEPAD)
249       STRINGIFY_CODE(FUNC_CODE, INST_PHI)
250       STRINGIFY_CODE(FUNC_CODE, INST_ALLOCA)
251       STRINGIFY_CODE(FUNC_CODE, INST_LOAD)
252       STRINGIFY_CODE(FUNC_CODE, INST_VAARG)
253       STRINGIFY_CODE(FUNC_CODE, INST_STORE)
254       STRINGIFY_CODE(FUNC_CODE, INST_EXTRACTVAL)
255       STRINGIFY_CODE(FUNC_CODE, INST_INSERTVAL)
256       STRINGIFY_CODE(FUNC_CODE, INST_CMP2)
257       STRINGIFY_CODE(FUNC_CODE, INST_VSELECT)
258       STRINGIFY_CODE(FUNC_CODE, DEBUG_LOC_AGAIN)
259       STRINGIFY_CODE(FUNC_CODE, INST_CALL)
260       STRINGIFY_CODE(FUNC_CODE, DEBUG_LOC)
261       STRINGIFY_CODE(FUNC_CODE, INST_GEP)
262     }
263   case bitc::VALUE_SYMTAB_BLOCK_ID:
264     switch (CodeID) {
265     default: return nullptr;
266     STRINGIFY_CODE(VST_CODE, ENTRY)
267     STRINGIFY_CODE(VST_CODE, BBENTRY)
268     }
269   case bitc::METADATA_ATTACHMENT_ID:
270     switch(CodeID) {
271     default:return nullptr;
272       STRINGIFY_CODE(METADATA, ATTACHMENT)
273     }
274   case bitc::METADATA_BLOCK_ID:
275     switch(CodeID) {
276     default:return nullptr;
277       STRINGIFY_CODE(METADATA, STRING)
278       STRINGIFY_CODE(METADATA, NAME)
279       STRINGIFY_CODE(METADATA, KIND)
280       STRINGIFY_CODE(METADATA, NODE)
281       STRINGIFY_CODE(METADATA, VALUE)
282       STRINGIFY_CODE(METADATA, OLD_NODE)
283       STRINGIFY_CODE(METADATA, OLD_FN_NODE)
284       STRINGIFY_CODE(METADATA, NAMED_NODE)
285       STRINGIFY_CODE(METADATA, DISTINCT_NODE)
286       STRINGIFY_CODE(METADATA, LOCATION)
287       STRINGIFY_CODE(METADATA, GENERIC_DEBUG)
288       STRINGIFY_CODE(METADATA, SUBRANGE)
289       STRINGIFY_CODE(METADATA, ENUMERATOR)
290       STRINGIFY_CODE(METADATA, BASIC_TYPE)
291       STRINGIFY_CODE(METADATA, FILE)
292       STRINGIFY_CODE(METADATA, DERIVED_TYPE)
293       STRINGIFY_CODE(METADATA, COMPOSITE_TYPE)
294       STRINGIFY_CODE(METADATA, SUBROUTINE_TYPE)
295       STRINGIFY_CODE(METADATA, COMPILE_UNIT)
296       STRINGIFY_CODE(METADATA, SUBPROGRAM)
297       STRINGIFY_CODE(METADATA, LEXICAL_BLOCK)
298       STRINGIFY_CODE(METADATA, LEXICAL_BLOCK_FILE)
299       STRINGIFY_CODE(METADATA, NAMESPACE)
300       STRINGIFY_CODE(METADATA, TEMPLATE_TYPE)
301       STRINGIFY_CODE(METADATA, TEMPLATE_VALUE)
302       STRINGIFY_CODE(METADATA, GLOBAL_VAR)
303       STRINGIFY_CODE(METADATA, LOCAL_VAR)
304       STRINGIFY_CODE(METADATA, EXPRESSION)
305       STRINGIFY_CODE(METADATA, OBJC_PROPERTY)
306       STRINGIFY_CODE(METADATA, IMPORTED_ENTITY)
307       STRINGIFY_CODE(METADATA, MODULE)
308     }
309   case bitc::USELIST_BLOCK_ID:
310     switch(CodeID) {
311     default:return nullptr;
312     case bitc::USELIST_CODE_DEFAULT: return "USELIST_CODE_DEFAULT";
313     case bitc::USELIST_CODE_BB:      return "USELIST_CODE_BB";
314     }
315   }
316 #undef STRINGIFY_CODE
317 }
318
319 struct PerRecordStats {
320   unsigned NumInstances;
321   unsigned NumAbbrev;
322   uint64_t TotalBits;
323
324   PerRecordStats() : NumInstances(0), NumAbbrev(0), TotalBits(0) {}
325 };
326
327 struct PerBlockIDStats {
328   /// NumInstances - This the number of times this block ID has been seen.
329   unsigned NumInstances;
330
331   /// NumBits - The total size in bits of all of these blocks.
332   uint64_t NumBits;
333
334   /// NumSubBlocks - The total number of blocks these blocks contain.
335   unsigned NumSubBlocks;
336
337   /// NumAbbrevs - The total number of abbreviations.
338   unsigned NumAbbrevs;
339
340   /// NumRecords - The total number of records these blocks contain, and the
341   /// number that are abbreviated.
342   unsigned NumRecords, NumAbbreviatedRecords;
343
344   /// CodeFreq - Keep track of the number of times we see each code.
345   std::vector<PerRecordStats> CodeFreq;
346
347   PerBlockIDStats()
348     : NumInstances(0), NumBits(0),
349       NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
350 };
351
352 static std::map<unsigned, PerBlockIDStats> BlockIDStats;
353
354
355
356 /// Error - All bitcode analysis errors go through this function, making this a
357 /// good place to breakpoint if debugging.
358 static bool Error(const Twine &Err) {
359   errs() << Err << "\n";
360   return true;
361 }
362
363 /// ParseBlock - Read a block, updating statistics, etc.
364 static bool ParseBlock(BitstreamCursor &Stream, unsigned BlockID,
365                        unsigned IndentLevel, CurStreamTypeType CurStreamType) {
366   std::string Indent(IndentLevel*2, ' ');
367   uint64_t BlockBitStart = Stream.GetCurrentBitNo();
368
369   // Get the statistics for this BlockID.
370   PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
371
372   BlockStats.NumInstances++;
373
374   // BLOCKINFO is a special part of the stream.
375   if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
376     if (Dump) outs() << Indent << "<BLOCKINFO_BLOCK/>\n";
377     if (Stream.ReadBlockInfoBlock())
378       return Error("Malformed BlockInfoBlock");
379     uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
380     BlockStats.NumBits += BlockBitEnd-BlockBitStart;
381     return false;
382   }
383
384   unsigned NumWords = 0;
385   if (Stream.EnterSubBlock(BlockID, &NumWords))
386     return Error("Malformed block record");
387
388   const char *BlockName = nullptr;
389   if (Dump) {
390     outs() << Indent << "<";
391     if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader(),
392                                   CurStreamType)))
393       outs() << BlockName;
394     else
395       outs() << "UnknownBlock" << BlockID;
396
397     if (NonSymbolic && BlockName)
398       outs() << " BlockID=" << BlockID;
399
400     outs() << " NumWords=" << NumWords
401            << " BlockCodeSize=" << Stream.getAbbrevIDWidth() << ">\n";
402   }
403
404   SmallVector<uint64_t, 64> Record;
405
406   // Read all the records for this block.
407   while (1) {
408     if (Stream.AtEndOfStream())
409       return Error("Premature end of bitstream");
410
411     uint64_t RecordStartBit = Stream.GetCurrentBitNo();
412
413     BitstreamEntry Entry =
414       Stream.advance(BitstreamCursor::AF_DontAutoprocessAbbrevs);
415     
416     switch (Entry.Kind) {
417     case BitstreamEntry::Error:
418       return Error("malformed bitcode file");
419     case BitstreamEntry::EndBlock: {
420       uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
421       BlockStats.NumBits += BlockBitEnd-BlockBitStart;
422       if (Dump) {
423         outs() << Indent << "</";
424         if (BlockName)
425           outs() << BlockName << ">\n";
426         else
427           outs() << "UnknownBlock" << BlockID << ">\n";
428       }
429       return false;
430     }
431         
432     case BitstreamEntry::SubBlock: {
433       uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
434       if (ParseBlock(Stream, Entry.ID, IndentLevel+1, CurStreamType))
435         return true;
436       ++BlockStats.NumSubBlocks;
437       uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
438       
439       // Don't include subblock sizes in the size of this block.
440       BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
441       continue;
442     }
443     case BitstreamEntry::Record:
444       // The interesting case.
445       break;
446     }
447
448     if (Entry.ID == bitc::DEFINE_ABBREV) {
449       Stream.ReadAbbrevRecord();
450       ++BlockStats.NumAbbrevs;
451       continue;
452     }
453     
454     Record.clear();
455
456     ++BlockStats.NumRecords;
457
458     StringRef Blob;
459     unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
460
461     // Increment the # occurrences of this code.
462     if (BlockStats.CodeFreq.size() <= Code)
463       BlockStats.CodeFreq.resize(Code+1);
464     BlockStats.CodeFreq[Code].NumInstances++;
465     BlockStats.CodeFreq[Code].TotalBits +=
466       Stream.GetCurrentBitNo()-RecordStartBit;
467     if (Entry.ID != bitc::UNABBREV_RECORD) {
468       BlockStats.CodeFreq[Code].NumAbbrev++;
469       ++BlockStats.NumAbbreviatedRecords;
470     }
471
472     if (Dump) {
473       outs() << Indent << "  <";
474       if (const char *CodeName =
475             GetCodeName(Code, BlockID, *Stream.getBitStreamReader(),
476                         CurStreamType))
477         outs() << CodeName;
478       else
479         outs() << "UnknownCode" << Code;
480       if (NonSymbolic &&
481           GetCodeName(Code, BlockID, *Stream.getBitStreamReader(),
482                       CurStreamType))
483         outs() << " codeid=" << Code;
484       if (Entry.ID != bitc::UNABBREV_RECORD)
485         outs() << " abbrevid=" << Entry.ID;
486
487       for (unsigned i = 0, e = Record.size(); i != e; ++i)
488         outs() << " op" << i << "=" << (int64_t)Record[i];
489
490       outs() << "/>";
491
492       if (Blob.data()) {
493         outs() << " blob data = ";
494         if (ShowBinaryBlobs) {
495           outs() << "'";
496           outs().write_escaped(Blob, /*hex=*/true) << "'";
497         } else {
498           bool BlobIsPrintable = true;
499           for (unsigned i = 0, e = Blob.size(); i != e; ++i)
500             if (!isprint(static_cast<unsigned char>(Blob[i]))) {
501               BlobIsPrintable = false;
502               break;
503             }
504
505           if (BlobIsPrintable)
506             outs() << "'" << Blob << "'";
507           else
508             outs() << "unprintable, " << Blob.size() << " bytes.";          
509         }
510       }
511
512       outs() << "\n";
513     }
514   }
515 }
516
517 static void PrintSize(double Bits) {
518   outs() << format("%.2f/%.2fB/%luW", Bits, Bits/8,(unsigned long)(Bits/32));
519 }
520 static void PrintSize(uint64_t Bits) {
521   outs() << format("%lub/%.2fB/%luW", (unsigned long)Bits,
522                    (double)Bits/8, (unsigned long)(Bits/32));
523 }
524
525 static bool openBitcodeFile(StringRef Path,
526                             std::unique_ptr<MemoryBuffer> &MemBuf,
527                             BitstreamReader &StreamFile,
528                             BitstreamCursor &Stream,
529                             CurStreamTypeType &CurStreamType) {
530   // Read the input file.
531   ErrorOr<std::unique_ptr<MemoryBuffer>> MemBufOrErr =
532       MemoryBuffer::getFileOrSTDIN(Path);
533   if (std::error_code EC = MemBufOrErr.getError())
534     return Error(Twine("Error reading '") + Path + "': " + EC.message());
535   MemBuf = std::move(MemBufOrErr.get());
536
537   if (MemBuf->getBufferSize() & 3)
538     return Error("Bitcode stream should be a multiple of 4 bytes in length");
539
540   const unsigned char *BufPtr = (const unsigned char *)MemBuf->getBufferStart();
541   const unsigned char *EndBufPtr = BufPtr + MemBuf->getBufferSize();
542
543   // If we have a wrapper header, parse it and ignore the non-bc file contents.
544   // The magic number is 0x0B17C0DE stored in little endian.
545   if (isBitcodeWrapper(BufPtr, EndBufPtr))
546     if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr, true))
547       return Error("Invalid bitcode wrapper header");
548
549   StreamFile = BitstreamReader(BufPtr, EndBufPtr);
550   Stream = BitstreamCursor(StreamFile);
551   StreamFile.CollectBlockInfoNames();
552
553   // Read the stream signature.
554   char Signature[6];
555   Signature[0] = Stream.Read(8);
556   Signature[1] = Stream.Read(8);
557   Signature[2] = Stream.Read(4);
558   Signature[3] = Stream.Read(4);
559   Signature[4] = Stream.Read(4);
560   Signature[5] = Stream.Read(4);
561
562   // Autodetect the file contents, if it is one we know.
563   CurStreamType = UnknownBitstream;
564   if (Signature[0] == 'B' && Signature[1] == 'C' &&
565       Signature[2] == 0x0 && Signature[3] == 0xC &&
566       Signature[4] == 0xE && Signature[5] == 0xD)
567     CurStreamType = LLVMIRBitstream;
568
569   return false;
570 }
571
572 /// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
573 static int AnalyzeBitcode() {
574   std::unique_ptr<MemoryBuffer> StreamBuffer;
575   BitstreamReader StreamFile;
576   BitstreamCursor Stream;
577   CurStreamTypeType CurStreamType;
578   if (openBitcodeFile(InputFilename, StreamBuffer, StreamFile, Stream,
579                       CurStreamType))
580     return true;
581
582   // Read block info from BlockInfoFilename, if specified.
583   // The block info must be a top-level block.
584   if (!BlockInfoFilename.empty()) {
585     std::unique_ptr<MemoryBuffer> BlockInfoBuffer;
586     BitstreamReader BlockInfoFile;
587     BitstreamCursor BlockInfoCursor;
588     CurStreamTypeType BlockInfoStreamType;
589     if (openBitcodeFile(BlockInfoFilename, BlockInfoBuffer, BlockInfoFile,
590                         BlockInfoCursor, BlockInfoStreamType))
591       return true;
592
593     while (!BlockInfoCursor.AtEndOfStream()) {
594       unsigned Code = BlockInfoCursor.ReadCode();
595       if (Code != bitc::ENTER_SUBBLOCK)
596         return Error("Invalid record at top-level in block info file");
597
598       unsigned BlockID = BlockInfoCursor.ReadSubBlockID();
599       if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
600         if (BlockInfoCursor.ReadBlockInfoBlock())
601           return Error("Malformed BlockInfoBlock in block info file");
602         break;
603       }
604
605       BlockInfoCursor.SkipBlock();
606     }
607
608     StreamFile.takeBlockInfo(std::move(BlockInfoFile));
609   }
610
611   unsigned NumTopBlocks = 0;
612
613   // Parse the top-level structure.  We only allow blocks at the top-level.
614   while (!Stream.AtEndOfStream()) {
615     unsigned Code = Stream.ReadCode();
616     if (Code != bitc::ENTER_SUBBLOCK)
617       return Error("Invalid record at top-level");
618
619     unsigned BlockID = Stream.ReadSubBlockID();
620
621     if (ParseBlock(Stream, BlockID, 0, CurStreamType))
622       return true;
623     ++NumTopBlocks;
624   }
625
626   if (Dump) outs() << "\n\n";
627
628   uint64_t BufferSizeBits = StreamFile.getBitcodeBytes().getExtent() * CHAR_BIT;
629   // Print a summary of the read file.
630   outs() << "Summary of " << InputFilename << ":\n";
631   outs() << "         Total size: ";
632   PrintSize(BufferSizeBits);
633   outs() << "\n";
634   outs() << "        Stream type: ";
635   switch (CurStreamType) {
636   case UnknownBitstream: outs() << "unknown\n"; break;
637   case LLVMIRBitstream:  outs() << "LLVM IR\n"; break;
638   }
639   outs() << "  # Toplevel Blocks: " << NumTopBlocks << "\n";
640   outs() << "\n";
641
642   // Emit per-block stats.
643   outs() << "Per-block Summary:\n";
644   for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
645        E = BlockIDStats.end(); I != E; ++I) {
646     outs() << "  Block ID #" << I->first;
647     if (const char *BlockName = GetBlockName(I->first, StreamFile,
648                                              CurStreamType))
649       outs() << " (" << BlockName << ")";
650     outs() << ":\n";
651
652     const PerBlockIDStats &Stats = I->second;
653     outs() << "      Num Instances: " << Stats.NumInstances << "\n";
654     outs() << "         Total Size: ";
655     PrintSize(Stats.NumBits);
656     outs() << "\n";
657     double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
658     outs() << "    Percent of file: " << format("%2.4f%%", pct) << "\n";
659     if (Stats.NumInstances > 1) {
660       outs() << "       Average Size: ";
661       PrintSize(Stats.NumBits/(double)Stats.NumInstances);
662       outs() << "\n";
663       outs() << "  Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
664              << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
665       outs() << "    Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
666              << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
667       outs() << "    Tot/Avg Records: " << Stats.NumRecords << "/"
668              << Stats.NumRecords/(double)Stats.NumInstances << "\n";
669     } else {
670       outs() << "      Num SubBlocks: " << Stats.NumSubBlocks << "\n";
671       outs() << "        Num Abbrevs: " << Stats.NumAbbrevs << "\n";
672       outs() << "        Num Records: " << Stats.NumRecords << "\n";
673     }
674     if (Stats.NumRecords) {
675       double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords;
676       outs() << "    Percent Abbrevs: " << format("%2.4f%%", pct) << "\n";
677     }
678     outs() << "\n";
679
680     // Print a histogram of the codes we see.
681     if (!NoHistogram && !Stats.CodeFreq.empty()) {
682       std::vector<std::pair<unsigned, unsigned> > FreqPairs;  // <freq,code>
683       for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
684         if (unsigned Freq = Stats.CodeFreq[i].NumInstances)
685           FreqPairs.push_back(std::make_pair(Freq, i));
686       std::stable_sort(FreqPairs.begin(), FreqPairs.end());
687       std::reverse(FreqPairs.begin(), FreqPairs.end());
688
689       outs() << "\tRecord Histogram:\n";
690       outs() << "\t\t  Count    # Bits   %% Abv  Record Kind\n";
691       for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
692         const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
693
694         outs() << format("\t\t%7d %9lu",
695                          RecStats.NumInstances,
696                          (unsigned long)RecStats.TotalBits);
697
698         if (RecStats.NumAbbrev)
699           outs() <<
700               format("%7.2f  ",
701                      (double)RecStats.NumAbbrev/RecStats.NumInstances*100);
702         else
703           outs() << "         ";
704
705         if (const char *CodeName =
706               GetCodeName(FreqPairs[i].second, I->first, StreamFile,
707                           CurStreamType))
708           outs() << CodeName << "\n";
709         else
710           outs() << "UnknownCode" << FreqPairs[i].second << "\n";
711       }
712       outs() << "\n";
713
714     }
715   }
716   return 0;
717 }
718
719
720 int main(int argc, char **argv) {
721   // Print a stack trace if we signal out.
722   sys::PrintStackTraceOnErrorSignal();
723   PrettyStackTraceProgram X(argc, argv);
724   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
725   cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
726
727   return AnalyzeBitcode();
728 }