blob: d012455fd8c017ea534148740cf89be3d8f493f3 [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
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"
Daniel Dunbar42985bb2009-09-25 16:04:21 +000035#include "llvm/Support/Format.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000036#include "llvm/Support/ManagedStatic.h"
Chris Lattner45e0f892007-04-29 08:12:22 +000037#include "llvm/Support/MemoryBuffer.h"
Chris Lattnercc14d252009-03-06 05:34:10 +000038#include "llvm/Support/PrettyStackTrace.h"
Chris Lattner74382b72009-08-23 22:45:37 +000039#include "llvm/Support/raw_ostream.h"
Reid Spencerdac69c82004-06-07 17:53:43 +000040#include "llvm/System/Signals.h"
Duncan Sands15af79c2009-08-24 10:59:01 +000041#include <cstdio>
Chris Lattner44dadff2007-05-06 09:29:57 +000042#include <map>
Chris Lattnerb1e85b52007-05-05 01:46:49 +000043#include <algorithm>
Reid Spencerdac69c82004-06-07 17:53:43 +000044using namespace llvm;
45
46static cl::opt<std::string>
Gabor Greif8ff70c22007-07-04 21:55:50 +000047 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
Reid Spencerdac69c82004-06-07 17:53:43 +000048
Reid Spencer75937452004-08-21 21:00:24 +000049static cl::opt<std::string>
50 OutputFilename("-o", cl::init("-"), cl::desc("<output file>"));
51
Gabor Greif8ff70c22007-07-04 21:55:50 +000052static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace"));
Chris Lattner32de6332007-04-29 08:31:14 +000053
54//===----------------------------------------------------------------------===//
55// Bitcode specific analysis.
56//===----------------------------------------------------------------------===//
57
Chris Lattnerb1e85b52007-05-05 01:46:49 +000058static cl::opt<bool> NoHistogram("disable-histogram",
59 cl::desc("Do not print per-code histogram"));
Chris Lattner45e0f892007-04-29 08:12:22 +000060
Chris Lattnerb30c9252007-04-29 21:48:19 +000061static cl::opt<bool>
62NonSymbolic("non-symbolic",
63 cl::desc("Emit numberic info in dump even if"
64 " symbolic info is available"));
65
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000066/// CurStreamType - If we can sniff the flavor of this stream, we can produce
Chris Lattner45e0f892007-04-29 08:12:22 +000067/// better dump info.
68static enum {
69 UnknownBitstream,
70 LLVMIRBitstream
71} CurStreamType;
72
Chris Lattner4238d472007-04-29 20:00:02 +000073
74/// GetBlockName - Return a symbolic block name if known, otherwise return
Chris Lattnerb30c9252007-04-29 21:48:19 +000075/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000076static const char *GetBlockName(unsigned BlockID,
77 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +000078 // Standard blocks for all bitcode files.
79 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
80 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
81 return "BLOCKINFO_BLOCK";
82 return 0;
83 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000084
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000085 // Check to see if we have a blockinfo record for this block, with a name.
86 if (const BitstreamReader::BlockInfo *Info =
87 StreamFile.getBlockInfo(BlockID)) {
88 if (!Info->Name.empty())
89 return Info->Name.c_str();
90 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000091
92
Chris Lattnerb30c9252007-04-29 21:48:19 +000093 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000094
Chris Lattner4238d472007-04-29 20:00:02 +000095 switch (BlockID) {
Devang Patele8e02132009-09-18 19:26:43 +000096 default: return 0;
97 case bitc::MODULE_BLOCK_ID: return "MODULE_BLOCK";
98 case bitc::PARAMATTR_BLOCK_ID: return "PARAMATTR_BLOCK";
99 case bitc::TYPE_BLOCK_ID: return "TYPE_BLOCK";
100 case bitc::CONSTANTS_BLOCK_ID: return "CONSTANTS_BLOCK";
101 case bitc::FUNCTION_BLOCK_ID: return "FUNCTION_BLOCK";
102 case bitc::TYPE_SYMTAB_BLOCK_ID: return "TYPE_SYMTAB";
103 case bitc::VALUE_SYMTAB_BLOCK_ID: return "VALUE_SYMTAB";
104 case bitc::METADATA_BLOCK_ID: return "METADATA_BLOCK";
105 case bitc::METADATA_ATTACHMENT_ID: return "METADATA_ATTACHMENT_BLOCK";
Chris Lattner4238d472007-04-29 20:00:02 +0000106 }
107}
108
Chris Lattnerb30c9252007-04-29 21:48:19 +0000109/// GetCodeName - Return a symbolic code name if known, otherwise return
110/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000111static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
112 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +0000113 // Standard blocks for all bitcode files.
114 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
115 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
116 switch (CodeID) {
117 default: return 0;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000118 case bitc::BLOCKINFO_CODE_SETBID: return "SETBID";
119 case bitc::BLOCKINFO_CODE_BLOCKNAME: return "BLOCKNAME";
120 case bitc::BLOCKINFO_CODE_SETRECORDNAME: return "SETRECORDNAME";
Chris Lattner1772b122007-05-05 00:17:42 +0000121 }
122 }
123 return 0;
124 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000125
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000126 // Check to see if we have a blockinfo record for this record, with a name.
127 if (const BitstreamReader::BlockInfo *Info =
128 StreamFile.getBlockInfo(BlockID)) {
129 for (unsigned i = 0, e = Info->RecordNames.size(); i != e; ++i)
130 if (Info->RecordNames[i].first == CodeID)
131 return Info->RecordNames[i].second.c_str();
132 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000133
134
Chris Lattnerb30c9252007-04-29 21:48:19 +0000135 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000136
Chris Lattnerb30c9252007-04-29 21:48:19 +0000137 switch (BlockID) {
138 default: return 0;
139 case bitc::MODULE_BLOCK_ID:
140 switch (CodeID) {
141 default: return 0;
142 case bitc::MODULE_CODE_VERSION: return "VERSION";
143 case bitc::MODULE_CODE_TRIPLE: return "TRIPLE";
144 case bitc::MODULE_CODE_DATALAYOUT: return "DATALAYOUT";
145 case bitc::MODULE_CODE_ASM: return "ASM";
146 case bitc::MODULE_CODE_SECTIONNAME: return "SECTIONNAME";
147 case bitc::MODULE_CODE_DEPLIB: return "DEPLIB";
148 case bitc::MODULE_CODE_GLOBALVAR: return "GLOBALVAR";
149 case bitc::MODULE_CODE_FUNCTION: return "FUNCTION";
150 case bitc::MODULE_CODE_ALIAS: return "ALIAS";
151 case bitc::MODULE_CODE_PURGEVALS: return "PURGEVALS";
Nick Lewycky82b80d92008-11-07 14:52:51 +0000152 case bitc::MODULE_CODE_GCNAME: return "GCNAME";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000153 }
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000154 case bitc::PARAMATTR_BLOCK_ID:
155 switch (CodeID) {
156 default: return 0;
157 case bitc::PARAMATTR_CODE_ENTRY: return "ENTRY";
158 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000159 case bitc::TYPE_BLOCK_ID:
160 switch (CodeID) {
161 default: return 0;
Nick Lewycky82b80d92008-11-07 14:52:51 +0000162 case bitc::TYPE_CODE_NUMENTRY: return "NUMENTRY";
163 case bitc::TYPE_CODE_VOID: return "VOID";
164 case bitc::TYPE_CODE_FLOAT: return "FLOAT";
165 case bitc::TYPE_CODE_DOUBLE: return "DOUBLE";
166 case bitc::TYPE_CODE_LABEL: return "LABEL";
167 case bitc::TYPE_CODE_OPAQUE: return "OPAQUE";
168 case bitc::TYPE_CODE_INTEGER: return "INTEGER";
169 case bitc::TYPE_CODE_POINTER: return "POINTER";
170 case bitc::TYPE_CODE_FUNCTION: return "FUNCTION";
171 case bitc::TYPE_CODE_STRUCT: return "STRUCT";
172 case bitc::TYPE_CODE_ARRAY: return "ARRAY";
173 case bitc::TYPE_CODE_VECTOR: return "VECTOR";
174 case bitc::TYPE_CODE_X86_FP80: return "X86_FP80";
175 case bitc::TYPE_CODE_FP128: return "FP128";
176 case bitc::TYPE_CODE_PPC_FP128: return "PPC_FP128";
Nick Lewycky079c0342009-06-01 04:41:03 +0000177 case bitc::TYPE_CODE_METADATA: return "METADATA";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000178 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000179
Chris Lattnerb30c9252007-04-29 21:48:19 +0000180 case bitc::CONSTANTS_BLOCK_ID:
181 switch (CodeID) {
182 default: return 0;
Duncan Sands0cad4e32009-09-25 12:28:37 +0000183 case bitc::CST_CODE_SETTYPE: return "SETTYPE";
184 case bitc::CST_CODE_NULL: return "NULL";
185 case bitc::CST_CODE_UNDEF: return "UNDEF";
186 case bitc::CST_CODE_INTEGER: return "INTEGER";
187 case bitc::CST_CODE_WIDE_INTEGER: return "WIDE_INTEGER";
188 case bitc::CST_CODE_FLOAT: return "FLOAT";
189 case bitc::CST_CODE_AGGREGATE: return "AGGREGATE";
190 case bitc::CST_CODE_STRING: return "STRING";
191 case bitc::CST_CODE_CSTRING: return "CSTRING";
192 case bitc::CST_CODE_CE_BINOP: return "CE_BINOP";
193 case bitc::CST_CODE_CE_CAST: return "CE_CAST";
194 case bitc::CST_CODE_CE_GEP: return "CE_GEP";
195 case bitc::CST_CODE_CE_INBOUNDS_GEP: return "CE_INBOUNDS_GEP";
196 case bitc::CST_CODE_CE_SELECT: return "CE_SELECT";
197 case bitc::CST_CODE_CE_EXTRACTELT: return "CE_EXTRACTELT";
198 case bitc::CST_CODE_CE_INSERTELT: return "CE_INSERTELT";
199 case bitc::CST_CODE_CE_SHUFFLEVEC: return "CE_SHUFFLEVEC";
200 case bitc::CST_CODE_CE_CMP: return "CE_CMP";
201 case bitc::CST_CODE_INLINEASM: return "INLINEASM";
202 case bitc::CST_CODE_CE_SHUFVEC_EX: return "CE_SHUFVEC_EX";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000203 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000204 case bitc::FUNCTION_BLOCK_ID:
205 switch (CodeID) {
206 default: return 0;
207 case bitc::FUNC_CODE_DECLAREBLOCKS: return "DECLAREBLOCKS";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000208
Duncan Sands0cad4e32009-09-25 12:28:37 +0000209 case bitc::FUNC_CODE_INST_BINOP: return "INST_BINOP";
210 case bitc::FUNC_CODE_INST_CAST: return "INST_CAST";
211 case bitc::FUNC_CODE_INST_GEP: return "INST_GEP";
212 case bitc::FUNC_CODE_INST_INBOUNDS_GEP: return "INST_INBOUNDS_GEP";
213 case bitc::FUNC_CODE_INST_SELECT: return "INST_SELECT";
214 case bitc::FUNC_CODE_INST_EXTRACTELT: return "INST_EXTRACTELT";
215 case bitc::FUNC_CODE_INST_INSERTELT: return "INST_INSERTELT";
216 case bitc::FUNC_CODE_INST_SHUFFLEVEC: return "INST_SHUFFLEVEC";
217 case bitc::FUNC_CODE_INST_CMP: return "INST_CMP";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000218
Duncan Sands0cad4e32009-09-25 12:28:37 +0000219 case bitc::FUNC_CODE_INST_RET: return "INST_RET";
220 case bitc::FUNC_CODE_INST_BR: return "INST_BR";
221 case bitc::FUNC_CODE_INST_SWITCH: return "INST_SWITCH";
222 case bitc::FUNC_CODE_INST_INVOKE: return "INST_INVOKE";
223 case bitc::FUNC_CODE_INST_UNWIND: return "INST_UNWIND";
224 case bitc::FUNC_CODE_INST_UNREACHABLE: return "INST_UNREACHABLE";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000225
Duncan Sands0cad4e32009-09-25 12:28:37 +0000226 case bitc::FUNC_CODE_INST_PHI: return "INST_PHI";
227 case bitc::FUNC_CODE_INST_MALLOC: return "INST_MALLOC";
228 case bitc::FUNC_CODE_INST_FREE: return "INST_FREE";
229 case bitc::FUNC_CODE_INST_ALLOCA: return "INST_ALLOCA";
230 case bitc::FUNC_CODE_INST_LOAD: return "INST_LOAD";
231 case bitc::FUNC_CODE_INST_STORE: return "INST_STORE";
232 case bitc::FUNC_CODE_INST_CALL: return "INST_CALL";
233 case bitc::FUNC_CODE_INST_VAARG: return "INST_VAARG";
234 case bitc::FUNC_CODE_INST_STORE2: return "INST_STORE2";
235 case bitc::FUNC_CODE_INST_GETRESULT: return "INST_GETRESULT";
236 case bitc::FUNC_CODE_INST_EXTRACTVAL: return "INST_EXTRACTVAL";
237 case bitc::FUNC_CODE_INST_INSERTVAL: return "INST_INSERTVAL";
238 case bitc::FUNC_CODE_INST_CMP2: return "INST_CMP2";
239 case bitc::FUNC_CODE_INST_VSELECT: return "INST_VSELECT";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000240 }
241 case bitc::TYPE_SYMTAB_BLOCK_ID:
242 switch (CodeID) {
243 default: return 0;
244 case bitc::TST_CODE_ENTRY: return "ENTRY";
245 }
246 case bitc::VALUE_SYMTAB_BLOCK_ID:
247 switch (CodeID) {
248 default: return 0;
249 case bitc::VST_CODE_ENTRY: return "ENTRY";
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000250 case bitc::VST_CODE_BBENTRY: return "BBENTRY";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000251 }
Devang Patele8e02132009-09-18 19:26:43 +0000252 case bitc::METADATA_ATTACHMENT_ID:
253 switch(CodeID) {
254 default:return 0;
255 case bitc::METADATA_ATTACHMENT: return "METADATA_ATTACHMENT";
256 }
Devang Patele54abc92009-07-22 17:43:22 +0000257 case bitc::METADATA_BLOCK_ID:
258 switch(CodeID) {
259 default:return 0;
260 case bitc::METADATA_STRING: return "MDSTRING";
Devang Patel104cf9e2009-07-23 01:07:34 +0000261 case bitc::METADATA_NODE: return "MDNODE";
Chris Lattnerd3a5fa82010-04-03 01:05:24 +0000262 case bitc::METADATA_FN_NODE: return "FN_MDNODE";
Devang Patel124e6eb2009-07-30 23:03:19 +0000263 case bitc::METADATA_NAME: return "METADATA_NAME";
264 case bitc::METADATA_NAMED_NODE: return "NAMEDMDNODE";
Devang Patele8e02132009-09-18 19:26:43 +0000265 case bitc::METADATA_KIND: return "METADATA_KIND";
Chris Lattnerd3a5fa82010-04-03 01:05:24 +0000266 case bitc::METADATA_ATTACHMENT: return "METADATA_ATTACHMENT";
Devang Patele54abc92009-07-22 17:43:22 +0000267 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000268 }
269}
270
Chris Lattner24437472009-04-27 17:59:34 +0000271struct PerRecordStats {
272 unsigned NumInstances;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000273 unsigned NumAbbrev;
274 uint64_t TotalBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000275
Chris Lattnerc167cac2009-04-27 18:15:27 +0000276 PerRecordStats() : NumInstances(0), NumAbbrev(0), TotalBits(0) {}
Chris Lattner24437472009-04-27 17:59:34 +0000277};
Chris Lattner4238d472007-04-29 20:00:02 +0000278
279struct PerBlockIDStats {
280 /// NumInstances - This the number of times this block ID has been seen.
281 unsigned NumInstances;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000282
Chris Lattner4238d472007-04-29 20:00:02 +0000283 /// NumBits - The total size in bits of all of these blocks.
284 uint64_t NumBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000285
Chris Lattner4238d472007-04-29 20:00:02 +0000286 /// NumSubBlocks - The total number of blocks these blocks contain.
287 unsigned NumSubBlocks;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000288
Chris Lattner4238d472007-04-29 20:00:02 +0000289 /// NumAbbrevs - The total number of abbreviations.
290 unsigned NumAbbrevs;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000291
292 /// NumRecords - The total number of records these blocks contain, and the
Chris Lattner4238d472007-04-29 20:00:02 +0000293 /// number that are abbreviated.
294 unsigned NumRecords, NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000295
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000296 /// CodeFreq - Keep track of the number of times we see each code.
Chris Lattner24437472009-04-27 17:59:34 +0000297 std::vector<PerRecordStats> CodeFreq;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000298
Chris Lattner4238d472007-04-29 20:00:02 +0000299 PerBlockIDStats()
300 : NumInstances(0), NumBits(0),
301 NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
302};
303
304static std::map<unsigned, PerBlockIDStats> BlockIDStats;
305
306
307
Chris Lattner32de6332007-04-29 08:31:14 +0000308/// Error - All bitcode analysis errors go through this function, making this a
309/// good place to breakpoint if debugging.
310static bool Error(const std::string &Err) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000311 errs() << Err << "\n";
Chris Lattner32de6332007-04-29 08:31:14 +0000312 return true;
313}
314
315/// ParseBlock - Read a block, updating statistics, etc.
Chris Lattner962dde32009-04-26 20:59:02 +0000316static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
Chris Lattner1772b122007-05-05 00:17:42 +0000317 std::string Indent(IndentLevel*2, ' ');
Chris Lattner4238d472007-04-29 20:00:02 +0000318 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
Chris Lattner32de6332007-04-29 08:31:14 +0000319 unsigned BlockID = Stream.ReadSubBlockID();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000320
Chris Lattner4238d472007-04-29 20:00:02 +0000321 // Get the statistics for this BlockID.
322 PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000323
Chris Lattner4238d472007-04-29 20:00:02 +0000324 BlockStats.NumInstances++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000325
Chris Lattner1772b122007-05-05 00:17:42 +0000326 // BLOCKINFO is a special part of the stream.
327 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000328 if (Dump) errs() << Indent << "<BLOCKINFO_BLOCK/>\n";
Chris Lattner1772b122007-05-05 00:17:42 +0000329 if (Stream.ReadBlockInfoBlock())
330 return Error("Malformed BlockInfoBlock");
331 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
332 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
333 return false;
334 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000335
Chris Lattnerb30c9252007-04-29 21:48:19 +0000336 unsigned NumWords = 0;
Chris Lattner1772b122007-05-05 00:17:42 +0000337 if (Stream.EnterSubBlock(BlockID, &NumWords))
Chris Lattner32de6332007-04-29 08:31:14 +0000338 return Error("Malformed block record");
339
Chris Lattnerb30c9252007-04-29 21:48:19 +0000340 const char *BlockName = 0;
341 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000342 errs() << Indent << "<";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000343 if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
Dan Gohman65f57c22009-07-15 16:35:29 +0000344 errs() << BlockName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000345 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000346 errs() << "UnknownBlock" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000347
Chris Lattnerb30c9252007-04-29 21:48:19 +0000348 if (NonSymbolic && BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000349 errs() << " BlockID=" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000350
Dan Gohman65f57c22009-07-15 16:35:29 +0000351 errs() << " NumWords=" << NumWords
352 << " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000353 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000354
Chris Lattner32de6332007-04-29 08:31:14 +0000355 SmallVector<uint64_t, 64> Record;
356
357 // Read all the records for this block.
358 while (1) {
359 if (Stream.AtEndOfStream())
360 return Error("Premature end of bitstream");
361
Chris Lattnerc167cac2009-04-27 18:15:27 +0000362 uint64_t RecordStartBit = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000363
Chris Lattner32de6332007-04-29 08:31:14 +0000364 // Read the code for this record.
365 unsigned AbbrevID = Stream.ReadCode();
366 switch (AbbrevID) {
Chris Lattner4238d472007-04-29 20:00:02 +0000367 case bitc::END_BLOCK: {
Chris Lattner32de6332007-04-29 08:31:14 +0000368 if (Stream.ReadBlockEnd())
369 return Error("Error at end of block");
Chris Lattner4238d472007-04-29 20:00:02 +0000370 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
371 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000372 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000373 errs() << Indent << "</";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000374 if (BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000375 errs() << BlockName << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000376 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000377 errs() << "UnknownBlock" << BlockID << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000378 }
Chris Lattner32de6332007-04-29 08:31:14 +0000379 return false;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000380 }
Chris Lattner44b0f102007-05-05 01:29:31 +0000381 case bitc::ENTER_SUBBLOCK: {
382 uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000383 if (ParseBlock(Stream, IndentLevel+1))
Chris Lattner32de6332007-04-29 08:31:14 +0000384 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000385 ++BlockStats.NumSubBlocks;
Chris Lattner44b0f102007-05-05 01:29:31 +0000386 uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000387
Chris Lattner44b0f102007-05-05 01:29:31 +0000388 // Don't include subblock sizes in the size of this block.
389 BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
Chris Lattner32de6332007-04-29 08:31:14 +0000390 break;
Chris Lattner44b0f102007-05-05 01:29:31 +0000391 }
Chris Lattner32de6332007-04-29 08:31:14 +0000392 case bitc::DEFINE_ABBREV:
393 Stream.ReadAbbrevRecord();
Chris Lattner4238d472007-04-29 20:00:02 +0000394 ++BlockStats.NumAbbrevs;
Chris Lattner32de6332007-04-29 08:31:14 +0000395 break;
396 default:
397 Record.clear();
Chris Lattner3f75d312009-04-06 22:44:40 +0000398
399 ++BlockStats.NumRecords;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000400 if (AbbrevID != bitc::UNABBREV_RECORD)
Chris Lattner3f75d312009-04-06 22:44:40 +0000401 ++BlockStats.NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000402
Chris Lattner3f75d312009-04-06 22:44:40 +0000403 const char *BlobStart = 0;
404 unsigned BlobLen = 0;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000405 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000406
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000407
408
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000409 // Increment the # occurrences of this code.
410 if (BlockStats.CodeFreq.size() <= Code)
411 BlockStats.CodeFreq.resize(Code+1);
Chris Lattner24437472009-04-27 17:59:34 +0000412 BlockStats.CodeFreq[Code].NumInstances++;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000413 BlockStats.CodeFreq[Code].TotalBits +=
414 Stream.GetCurrentBitNo()-RecordStartBit;
415 if (AbbrevID != bitc::UNABBREV_RECORD)
416 BlockStats.CodeFreq[Code].NumAbbrev++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000417
Chris Lattnerb30c9252007-04-29 21:48:19 +0000418 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000419 errs() << Indent << " <";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000420 if (const char *CodeName =
421 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000422 errs() << CodeName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000423 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000424 errs() << "UnknownCode" << Code;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000425 if (NonSymbolic &&
426 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000427 errs() << " codeid=" << Code;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000428 if (AbbrevID != bitc::UNABBREV_RECORD)
Dan Gohman65f57c22009-07-15 16:35:29 +0000429 errs() << " abbrevid=" << AbbrevID;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000430
431 for (unsigned i = 0, e = Record.size(); i != e; ++i)
Dan Gohman65f57c22009-07-15 16:35:29 +0000432 errs() << " op" << i << "=" << (int64_t)Record[i];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000433
Dan Gohman65f57c22009-07-15 16:35:29 +0000434 errs() << "/>";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000435
Chris Lattnerae7dd802009-04-07 02:56:46 +0000436 if (BlobStart) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000437 errs() << " blob data = ";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000438 bool BlobIsPrintable = true;
439 for (unsigned i = 0; i != BlobLen; ++i)
440 if (!isprint(BlobStart[i])) {
441 BlobIsPrintable = false;
442 break;
443 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000444
Chris Lattnerae7dd802009-04-07 02:56:46 +0000445 if (BlobIsPrintable)
Dan Gohman65f57c22009-07-15 16:35:29 +0000446 errs() << "'" << std::string(BlobStart, BlobStart+BlobLen) <<"'";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000447 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000448 errs() << "unprintable, " << BlobLen << " bytes.";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000449 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000450
Dan Gohman65f57c22009-07-15 16:35:29 +0000451 errs() << "\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000452 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000453
Chris Lattner32de6332007-04-29 08:31:14 +0000454 break;
455 }
456 }
457}
458
Chris Lattner4238d472007-04-29 20:00:02 +0000459static void PrintSize(double Bits) {
Chris Lattner24437472009-04-27 17:59:34 +0000460 fprintf(stderr, "%.2f/%.2fB/%lluW", Bits, Bits/8,(unsigned long long)Bits/32);
461}
462static void PrintSize(uint64_t Bits) {
463 fprintf(stderr, "%llub/%.2fB/%lluW", (unsigned long long)Bits,
464 (double)Bits/8, (unsigned long long)Bits/32);
Chris Lattner4238d472007-04-29 20:00:02 +0000465}
466
467
Chris Lattner45e0f892007-04-29 08:12:22 +0000468/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
469static int AnalyzeBitcode() {
470 // Read the input file.
Chris Lattnere2a466b2009-04-06 20:54:32 +0000471 MemoryBuffer *MemBuf = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str());
Chris Lattner45e0f892007-04-29 08:12:22 +0000472
Chris Lattnere2a466b2009-04-06 20:54:32 +0000473 if (MemBuf == 0)
Chris Lattner32de6332007-04-29 08:31:14 +0000474 return Error("Error reading '" + InputFilename + "'.");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000475
Chris Lattnere2a466b2009-04-06 20:54:32 +0000476 if (MemBuf->getBufferSize() & 3)
Chris Lattner32de6332007-04-29 08:31:14 +0000477 return Error("Bitcode stream should be a multiple of 4 bytes in length");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000478
Chris Lattnere2a466b2009-04-06 20:54:32 +0000479 unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
480 unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000481
Chris Lattnere2a466b2009-04-06 20:54:32 +0000482 // If we have a wrapper header, parse it and ignore the non-bc file contents.
483 // The magic number is 0x0B17C0DE stored in little endian.
484 if (isBitcodeWrapper(BufPtr, EndBufPtr))
485 if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr))
486 return Error("Invalid bitcode wrapper header");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000487
Chris Lattner962dde32009-04-26 20:59:02 +0000488 BitstreamReader StreamFile(BufPtr, EndBufPtr);
489 BitstreamCursor Stream(StreamFile);
Chris Lattner0370cc62009-04-27 20:04:08 +0000490 StreamFile.CollectBlockInfoNames();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000491
Chris Lattner45e0f892007-04-29 08:12:22 +0000492 // Read the stream signature.
493 char Signature[6];
494 Signature[0] = Stream.Read(8);
495 Signature[1] = Stream.Read(8);
496 Signature[2] = Stream.Read(4);
497 Signature[3] = Stream.Read(4);
498 Signature[4] = Stream.Read(4);
499 Signature[5] = Stream.Read(4);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000500
Chris Lattner32de6332007-04-29 08:31:14 +0000501 // Autodetect the file contents, if it is one we know.
Chris Lattner45e0f892007-04-29 08:12:22 +0000502 CurStreamType = UnknownBitstream;
503 if (Signature[0] == 'B' && Signature[1] == 'C' &&
504 Signature[2] == 0x0 && Signature[3] == 0xC &&
505 Signature[4] == 0xE && Signature[5] == 0xD)
506 CurStreamType = LLVMIRBitstream;
507
Chris Lattner4238d472007-04-29 20:00:02 +0000508 unsigned NumTopBlocks = 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000509
Chris Lattner32de6332007-04-29 08:31:14 +0000510 // Parse the top-level structure. We only allow blocks at the top-level.
511 while (!Stream.AtEndOfStream()) {
512 unsigned Code = Stream.ReadCode();
513 if (Code != bitc::ENTER_SUBBLOCK)
514 return Error("Invalid record at top-level");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000515
Chris Lattnerb30c9252007-04-29 21:48:19 +0000516 if (ParseBlock(Stream, 0))
Chris Lattner32de6332007-04-29 08:31:14 +0000517 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000518 ++NumTopBlocks;
Chris Lattner32de6332007-04-29 08:31:14 +0000519 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000520
Dan Gohman65f57c22009-07-15 16:35:29 +0000521 if (Dump) errs() << "\n\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000522
Chris Lattnere2a466b2009-04-06 20:54:32 +0000523 uint64_t BufferSizeBits = (EndBufPtr-BufPtr)*CHAR_BIT;
Chris Lattner32de6332007-04-29 08:31:14 +0000524 // Print a summary of the read file.
Dan Gohman65f57c22009-07-15 16:35:29 +0000525 errs() << "Summary of " << InputFilename << ":\n";
526 errs() << " Total size: ";
Chris Lattner8f926682007-05-01 02:43:46 +0000527 PrintSize(BufferSizeBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000528 errs() << "\n";
529 errs() << " Stream type: ";
Chris Lattner45e0f892007-04-29 08:12:22 +0000530 switch (CurStreamType) {
531 default: assert(0 && "Unknown bitstream type");
Dan Gohman65f57c22009-07-15 16:35:29 +0000532 case UnknownBitstream: errs() << "unknown\n"; break;
533 case LLVMIRBitstream: errs() << "LLVM IR\n"; break;
Chris Lattner45e0f892007-04-29 08:12:22 +0000534 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000535 errs() << " # Toplevel Blocks: " << NumTopBlocks << "\n";
536 errs() << "\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000537
538 // Emit per-block stats.
Dan Gohman65f57c22009-07-15 16:35:29 +0000539 errs() << "Per-block Summary:\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000540 for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
541 E = BlockIDStats.end(); I != E; ++I) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000542 errs() << " Block ID #" << I->first;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000543 if (const char *BlockName = GetBlockName(I->first, StreamFile))
Dan Gohman65f57c22009-07-15 16:35:29 +0000544 errs() << " (" << BlockName << ")";
545 errs() << ":\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000546
Chris Lattner4238d472007-04-29 20:00:02 +0000547 const PerBlockIDStats &Stats = I->second;
Dan Gohman65f57c22009-07-15 16:35:29 +0000548 errs() << " Num Instances: " << Stats.NumInstances << "\n";
549 errs() << " Total Size: ";
Chris Lattner4238d472007-04-29 20:00:02 +0000550 PrintSize(Stats.NumBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000551 errs() << "\n";
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000552 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
553 errs() << " Percent of file: " << format("%2.4f%%", pct) << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000554 if (Stats.NumInstances > 1) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000555 errs() << " Average Size: ";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000556 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
Dan Gohman65f57c22009-07-15 16:35:29 +0000557 errs() << "\n";
558 errs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
559 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
560 errs() << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
561 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
562 errs() << " Tot/Avg Records: " << Stats.NumRecords << "/"
563 << Stats.NumRecords/(double)Stats.NumInstances << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000564 } else {
Dan Gohman65f57c22009-07-15 16:35:29 +0000565 errs() << " Num SubBlocks: " << Stats.NumSubBlocks << "\n";
566 errs() << " Num Abbrevs: " << Stats.NumAbbrevs << "\n";
567 errs() << " Num Records: " << Stats.NumRecords << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000568 }
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000569 if (Stats.NumRecords) {
570 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords;
571 errs() << " Percent Abbrevs: " << format("%2.4f%%", pct) << "\n";
572 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000573 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000574
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000575 // Print a histogram of the codes we see.
576 if (!NoHistogram && !Stats.CodeFreq.empty()) {
577 std::vector<std::pair<unsigned, unsigned> > FreqPairs; // <freq,code>
578 for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
Chris Lattner24437472009-04-27 17:59:34 +0000579 if (unsigned Freq = Stats.CodeFreq[i].NumInstances)
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000580 FreqPairs.push_back(std::make_pair(Freq, i));
581 std::stable_sort(FreqPairs.begin(), FreqPairs.end());
582 std::reverse(FreqPairs.begin(), FreqPairs.end());
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000583
Dan Gohman65f57c22009-07-15 16:35:29 +0000584 errs() << "\tRecord Histogram:\n";
Chris Lattnerc167cac2009-04-27 18:15:27 +0000585 fprintf(stderr, "\t\t Count # Bits %% Abv Record Kind\n");
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000586 for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
Chris Lattnerc167cac2009-04-27 18:15:27 +0000587 const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000588
Chris Lattnerc167cac2009-04-27 18:15:27 +0000589 fprintf(stderr, "\t\t%7d %9llu ", RecStats.NumInstances,
Dan Gohmanfbccdef2009-05-01 16:33:33 +0000590 (unsigned long long)RecStats.TotalBits);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000591
Chris Lattnerc167cac2009-04-27 18:15:27 +0000592 if (RecStats.NumAbbrev)
593 fprintf(stderr, "%7.2f ",
594 (double)RecStats.NumAbbrev/RecStats.NumInstances*100);
595 else
596 fprintf(stderr, " ");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000597
598 if (const char *CodeName =
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000599 GetCodeName(FreqPairs[i].second, I->first, StreamFile))
Chris Lattner24437472009-04-27 17:59:34 +0000600 fprintf(stderr, "%s\n", CodeName);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000601 else
Chris Lattner24437472009-04-27 17:59:34 +0000602 fprintf(stderr, "UnknownCode%d\n", FreqPairs[i].second);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000603 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000604 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000605
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000606 }
Chris Lattner4238d472007-04-29 20:00:02 +0000607 }
Chris Lattner45e0f892007-04-29 08:12:22 +0000608 return 0;
609}
Reid Spencerdac69c82004-06-07 17:53:43 +0000610
Chris Lattner32de6332007-04-29 08:31:14 +0000611
Chris Lattnerc30598b2006-12-06 01:18:01 +0000612int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +0000613 // Print a stack trace if we signal out.
Chris Lattner45e0f892007-04-29 08:12:22 +0000614 sys::PrintStackTraceOnErrorSignal();
Chris Lattnercc14d252009-03-06 05:34:10 +0000615 PrettyStackTraceProgram X(argc, argv);
616 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
617 cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000618
Chris Lattner44dadff2007-05-06 09:29:57 +0000619 return AnalyzeBitcode();
Reid Spencerdac69c82004-06-07 17:53:43 +0000620}