blob: 9c0d675793d346899bbe020f3595fbf92e94d817 [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
Gabor Greif8ff70c22007-07-04 21:55:50 +000049static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace"));
Chris Lattner32de6332007-04-29 08:31:14 +000050
51//===----------------------------------------------------------------------===//
52// Bitcode specific analysis.
53//===----------------------------------------------------------------------===//
54
Chris Lattnerb1e85b52007-05-05 01:46:49 +000055static cl::opt<bool> NoHistogram("disable-histogram",
56 cl::desc("Do not print per-code histogram"));
Chris Lattner45e0f892007-04-29 08:12:22 +000057
Chris Lattnerb30c9252007-04-29 21:48:19 +000058static cl::opt<bool>
59NonSymbolic("non-symbolic",
60 cl::desc("Emit numberic info in dump even if"
61 " symbolic info is available"));
62
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000063/// CurStreamType - If we can sniff the flavor of this stream, we can produce
Chris Lattner45e0f892007-04-29 08:12:22 +000064/// better dump info.
65static enum {
66 UnknownBitstream,
67 LLVMIRBitstream
68} CurStreamType;
69
Chris Lattner4238d472007-04-29 20:00:02 +000070
71/// GetBlockName - Return a symbolic block name if known, otherwise return
Chris Lattnerb30c9252007-04-29 21:48:19 +000072/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000073static const char *GetBlockName(unsigned BlockID,
74 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +000075 // Standard blocks for all bitcode files.
76 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
77 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
78 return "BLOCKINFO_BLOCK";
79 return 0;
80 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000081
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000082 // Check to see if we have a blockinfo record for this block, with a name.
83 if (const BitstreamReader::BlockInfo *Info =
84 StreamFile.getBlockInfo(BlockID)) {
85 if (!Info->Name.empty())
86 return Info->Name.c_str();
87 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000088
89
Chris Lattnerb30c9252007-04-29 21:48:19 +000090 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000091
Chris Lattner4238d472007-04-29 20:00:02 +000092 switch (BlockID) {
Devang Patele8e02132009-09-18 19:26:43 +000093 default: return 0;
94 case bitc::MODULE_BLOCK_ID: return "MODULE_BLOCK";
95 case bitc::PARAMATTR_BLOCK_ID: return "PARAMATTR_BLOCK";
96 case bitc::TYPE_BLOCK_ID: return "TYPE_BLOCK";
97 case bitc::CONSTANTS_BLOCK_ID: return "CONSTANTS_BLOCK";
98 case bitc::FUNCTION_BLOCK_ID: return "FUNCTION_BLOCK";
99 case bitc::TYPE_SYMTAB_BLOCK_ID: return "TYPE_SYMTAB";
100 case bitc::VALUE_SYMTAB_BLOCK_ID: return "VALUE_SYMTAB";
101 case bitc::METADATA_BLOCK_ID: return "METADATA_BLOCK";
102 case bitc::METADATA_ATTACHMENT_ID: return "METADATA_ATTACHMENT_BLOCK";
Chris Lattner4238d472007-04-29 20:00:02 +0000103 }
104}
105
Chris Lattnerb30c9252007-04-29 21:48:19 +0000106/// GetCodeName - Return a symbolic code name if known, otherwise return
107/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000108static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
109 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +0000110 // Standard blocks for all bitcode files.
111 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
112 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
113 switch (CodeID) {
114 default: return 0;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000115 case bitc::BLOCKINFO_CODE_SETBID: return "SETBID";
116 case bitc::BLOCKINFO_CODE_BLOCKNAME: return "BLOCKNAME";
117 case bitc::BLOCKINFO_CODE_SETRECORDNAME: return "SETRECORDNAME";
Chris Lattner1772b122007-05-05 00:17:42 +0000118 }
119 }
120 return 0;
121 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000122
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000123 // Check to see if we have a blockinfo record for this record, with a name.
124 if (const BitstreamReader::BlockInfo *Info =
125 StreamFile.getBlockInfo(BlockID)) {
126 for (unsigned i = 0, e = Info->RecordNames.size(); i != e; ++i)
127 if (Info->RecordNames[i].first == CodeID)
128 return Info->RecordNames[i].second.c_str();
129 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000130
131
Chris Lattnerb30c9252007-04-29 21:48:19 +0000132 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000133
Chris Lattnerb30c9252007-04-29 21:48:19 +0000134 switch (BlockID) {
135 default: return 0;
136 case bitc::MODULE_BLOCK_ID:
137 switch (CodeID) {
138 default: return 0;
139 case bitc::MODULE_CODE_VERSION: return "VERSION";
140 case bitc::MODULE_CODE_TRIPLE: return "TRIPLE";
141 case bitc::MODULE_CODE_DATALAYOUT: return "DATALAYOUT";
142 case bitc::MODULE_CODE_ASM: return "ASM";
143 case bitc::MODULE_CODE_SECTIONNAME: return "SECTIONNAME";
144 case bitc::MODULE_CODE_DEPLIB: return "DEPLIB";
145 case bitc::MODULE_CODE_GLOBALVAR: return "GLOBALVAR";
146 case bitc::MODULE_CODE_FUNCTION: return "FUNCTION";
147 case bitc::MODULE_CODE_ALIAS: return "ALIAS";
148 case bitc::MODULE_CODE_PURGEVALS: return "PURGEVALS";
Nick Lewycky82b80d92008-11-07 14:52:51 +0000149 case bitc::MODULE_CODE_GCNAME: return "GCNAME";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000150 }
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000151 case bitc::PARAMATTR_BLOCK_ID:
152 switch (CodeID) {
153 default: return 0;
154 case bitc::PARAMATTR_CODE_ENTRY: return "ENTRY";
155 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000156 case bitc::TYPE_BLOCK_ID:
157 switch (CodeID) {
158 default: return 0;
Nick Lewycky82b80d92008-11-07 14:52:51 +0000159 case bitc::TYPE_CODE_NUMENTRY: return "NUMENTRY";
160 case bitc::TYPE_CODE_VOID: return "VOID";
161 case bitc::TYPE_CODE_FLOAT: return "FLOAT";
162 case bitc::TYPE_CODE_DOUBLE: return "DOUBLE";
163 case bitc::TYPE_CODE_LABEL: return "LABEL";
164 case bitc::TYPE_CODE_OPAQUE: return "OPAQUE";
165 case bitc::TYPE_CODE_INTEGER: return "INTEGER";
166 case bitc::TYPE_CODE_POINTER: return "POINTER";
167 case bitc::TYPE_CODE_FUNCTION: return "FUNCTION";
168 case bitc::TYPE_CODE_STRUCT: return "STRUCT";
169 case bitc::TYPE_CODE_ARRAY: return "ARRAY";
170 case bitc::TYPE_CODE_VECTOR: return "VECTOR";
171 case bitc::TYPE_CODE_X86_FP80: return "X86_FP80";
172 case bitc::TYPE_CODE_FP128: return "FP128";
173 case bitc::TYPE_CODE_PPC_FP128: return "PPC_FP128";
Nick Lewycky079c0342009-06-01 04:41:03 +0000174 case bitc::TYPE_CODE_METADATA: return "METADATA";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000175 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000176
Chris Lattnerb30c9252007-04-29 21:48:19 +0000177 case bitc::CONSTANTS_BLOCK_ID:
178 switch (CodeID) {
179 default: return 0;
Duncan Sands0cad4e32009-09-25 12:28:37 +0000180 case bitc::CST_CODE_SETTYPE: return "SETTYPE";
181 case bitc::CST_CODE_NULL: return "NULL";
182 case bitc::CST_CODE_UNDEF: return "UNDEF";
183 case bitc::CST_CODE_INTEGER: return "INTEGER";
184 case bitc::CST_CODE_WIDE_INTEGER: return "WIDE_INTEGER";
185 case bitc::CST_CODE_FLOAT: return "FLOAT";
186 case bitc::CST_CODE_AGGREGATE: return "AGGREGATE";
187 case bitc::CST_CODE_STRING: return "STRING";
188 case bitc::CST_CODE_CSTRING: return "CSTRING";
189 case bitc::CST_CODE_CE_BINOP: return "CE_BINOP";
190 case bitc::CST_CODE_CE_CAST: return "CE_CAST";
191 case bitc::CST_CODE_CE_GEP: return "CE_GEP";
192 case bitc::CST_CODE_CE_INBOUNDS_GEP: return "CE_INBOUNDS_GEP";
193 case bitc::CST_CODE_CE_SELECT: return "CE_SELECT";
194 case bitc::CST_CODE_CE_EXTRACTELT: return "CE_EXTRACTELT";
195 case bitc::CST_CODE_CE_INSERTELT: return "CE_INSERTELT";
196 case bitc::CST_CODE_CE_SHUFFLEVEC: return "CE_SHUFFLEVEC";
197 case bitc::CST_CODE_CE_CMP: return "CE_CMP";
198 case bitc::CST_CODE_INLINEASM: return "INLINEASM";
199 case bitc::CST_CODE_CE_SHUFVEC_EX: return "CE_SHUFVEC_EX";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000200 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000201 case bitc::FUNCTION_BLOCK_ID:
202 switch (CodeID) {
203 default: return 0;
204 case bitc::FUNC_CODE_DECLAREBLOCKS: return "DECLAREBLOCKS";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000205
Duncan Sands0cad4e32009-09-25 12:28:37 +0000206 case bitc::FUNC_CODE_INST_BINOP: return "INST_BINOP";
207 case bitc::FUNC_CODE_INST_CAST: return "INST_CAST";
208 case bitc::FUNC_CODE_INST_GEP: return "INST_GEP";
209 case bitc::FUNC_CODE_INST_INBOUNDS_GEP: return "INST_INBOUNDS_GEP";
210 case bitc::FUNC_CODE_INST_SELECT: return "INST_SELECT";
211 case bitc::FUNC_CODE_INST_EXTRACTELT: return "INST_EXTRACTELT";
212 case bitc::FUNC_CODE_INST_INSERTELT: return "INST_INSERTELT";
213 case bitc::FUNC_CODE_INST_SHUFFLEVEC: return "INST_SHUFFLEVEC";
214 case bitc::FUNC_CODE_INST_CMP: return "INST_CMP";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000215
Duncan Sands0cad4e32009-09-25 12:28:37 +0000216 case bitc::FUNC_CODE_INST_RET: return "INST_RET";
217 case bitc::FUNC_CODE_INST_BR: return "INST_BR";
218 case bitc::FUNC_CODE_INST_SWITCH: return "INST_SWITCH";
219 case bitc::FUNC_CODE_INST_INVOKE: return "INST_INVOKE";
220 case bitc::FUNC_CODE_INST_UNWIND: return "INST_UNWIND";
221 case bitc::FUNC_CODE_INST_UNREACHABLE: return "INST_UNREACHABLE";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000222
Duncan Sands0cad4e32009-09-25 12:28:37 +0000223 case bitc::FUNC_CODE_INST_PHI: return "INST_PHI";
224 case bitc::FUNC_CODE_INST_MALLOC: return "INST_MALLOC";
225 case bitc::FUNC_CODE_INST_FREE: return "INST_FREE";
226 case bitc::FUNC_CODE_INST_ALLOCA: return "INST_ALLOCA";
227 case bitc::FUNC_CODE_INST_LOAD: return "INST_LOAD";
228 case bitc::FUNC_CODE_INST_STORE: return "INST_STORE";
229 case bitc::FUNC_CODE_INST_CALL: return "INST_CALL";
230 case bitc::FUNC_CODE_INST_VAARG: return "INST_VAARG";
231 case bitc::FUNC_CODE_INST_STORE2: return "INST_STORE2";
232 case bitc::FUNC_CODE_INST_GETRESULT: return "INST_GETRESULT";
233 case bitc::FUNC_CODE_INST_EXTRACTVAL: return "INST_EXTRACTVAL";
234 case bitc::FUNC_CODE_INST_INSERTVAL: return "INST_INSERTVAL";
235 case bitc::FUNC_CODE_INST_CMP2: return "INST_CMP2";
236 case bitc::FUNC_CODE_INST_VSELECT: return "INST_VSELECT";
Chris Lattnera6245242010-04-03 02:17:50 +0000237 case bitc::FUNC_CODE_DEBUG_LOC: return "DEBUG_LOC";
238 case bitc::FUNC_CODE_DEBUG_LOC_AGAIN: return "DEBUG_LOC_AGAIN";
Dan Gohman70c2fc02010-09-09 23:12:39 +0000239 case bitc::FUNC_CODE_INST_CALL2: return "INST_CALL2";
240 case bitc::FUNC_CODE_DEBUG_LOC2: return "DEBUG_LOC2";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000241 }
242 case bitc::TYPE_SYMTAB_BLOCK_ID:
243 switch (CodeID) {
244 default: return 0;
245 case bitc::TST_CODE_ENTRY: return "ENTRY";
246 }
247 case bitc::VALUE_SYMTAB_BLOCK_ID:
248 switch (CodeID) {
249 default: return 0;
250 case bitc::VST_CODE_ENTRY: return "ENTRY";
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000251 case bitc::VST_CODE_BBENTRY: return "BBENTRY";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000252 }
Devang Patele8e02132009-09-18 19:26:43 +0000253 case bitc::METADATA_ATTACHMENT_ID:
254 switch(CodeID) {
255 default:return 0;
256 case bitc::METADATA_ATTACHMENT: return "METADATA_ATTACHMENT";
257 }
Devang Patele54abc92009-07-22 17:43:22 +0000258 case bitc::METADATA_BLOCK_ID:
259 switch(CodeID) {
260 default:return 0;
Dan Gohman43906f92010-07-16 18:28:07 +0000261 case bitc::METADATA_STRING: return "METADATA_STRING";
262 case bitc::METADATA_NODE: return "METADATA_NODE";
263 case bitc::METADATA_FN_NODE: return "METADATA_FN_NODE";
Devang Patel124e6eb2009-07-30 23:03:19 +0000264 case bitc::METADATA_NAME: return "METADATA_NAME";
Dan Gohman43906f92010-07-16 18:28:07 +0000265 case bitc::METADATA_NAMED_NODE: return "METADATA_NAMED_NODE";
Devang Patele8e02132009-09-18 19:26:43 +0000266 case bitc::METADATA_KIND: return "METADATA_KIND";
Chris Lattnerd3a5fa82010-04-03 01:05:24 +0000267 case bitc::METADATA_ATTACHMENT: return "METADATA_ATTACHMENT";
Dan Gohman70c2fc02010-09-09 23:12:39 +0000268 case bitc::METADATA_NODE2: return "METADATA_NODE2";
269 case bitc::METADATA_FN_NODE2: return "METADATA_FN_NODE2";
270 case bitc::METADATA_NAMED_NODE2: return "METADATA_NAMED_NODE2";
271 case bitc::METADATA_ATTACHMENT2: return "METADATA_ATTACHMENT2";
Devang Patele54abc92009-07-22 17:43:22 +0000272 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000273 }
274}
275
Chris Lattner24437472009-04-27 17:59:34 +0000276struct PerRecordStats {
277 unsigned NumInstances;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000278 unsigned NumAbbrev;
279 uint64_t TotalBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000280
Chris Lattnerc167cac2009-04-27 18:15:27 +0000281 PerRecordStats() : NumInstances(0), NumAbbrev(0), TotalBits(0) {}
Chris Lattner24437472009-04-27 17:59:34 +0000282};
Chris Lattner4238d472007-04-29 20:00:02 +0000283
284struct PerBlockIDStats {
285 /// NumInstances - This the number of times this block ID has been seen.
286 unsigned NumInstances;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000287
Chris Lattner4238d472007-04-29 20:00:02 +0000288 /// NumBits - The total size in bits of all of these blocks.
289 uint64_t NumBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000290
Chris Lattner4238d472007-04-29 20:00:02 +0000291 /// NumSubBlocks - The total number of blocks these blocks contain.
292 unsigned NumSubBlocks;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000293
Chris Lattner4238d472007-04-29 20:00:02 +0000294 /// NumAbbrevs - The total number of abbreviations.
295 unsigned NumAbbrevs;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000296
297 /// NumRecords - The total number of records these blocks contain, and the
Chris Lattner4238d472007-04-29 20:00:02 +0000298 /// number that are abbreviated.
299 unsigned NumRecords, NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000300
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000301 /// CodeFreq - Keep track of the number of times we see each code.
Chris Lattner24437472009-04-27 17:59:34 +0000302 std::vector<PerRecordStats> CodeFreq;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000303
Chris Lattner4238d472007-04-29 20:00:02 +0000304 PerBlockIDStats()
305 : NumInstances(0), NumBits(0),
306 NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
307};
308
309static std::map<unsigned, PerBlockIDStats> BlockIDStats;
310
311
312
Chris Lattner32de6332007-04-29 08:31:14 +0000313/// Error - All bitcode analysis errors go through this function, making this a
314/// good place to breakpoint if debugging.
315static bool Error(const std::string &Err) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000316 errs() << Err << "\n";
Chris Lattner32de6332007-04-29 08:31:14 +0000317 return true;
318}
319
320/// ParseBlock - Read a block, updating statistics, etc.
Chris Lattner962dde32009-04-26 20:59:02 +0000321static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
Chris Lattner1772b122007-05-05 00:17:42 +0000322 std::string Indent(IndentLevel*2, ' ');
Chris Lattner4238d472007-04-29 20:00:02 +0000323 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
Chris Lattner32de6332007-04-29 08:31:14 +0000324 unsigned BlockID = Stream.ReadSubBlockID();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000325
Chris Lattner4238d472007-04-29 20:00:02 +0000326 // Get the statistics for this BlockID.
327 PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000328
Chris Lattner4238d472007-04-29 20:00:02 +0000329 BlockStats.NumInstances++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000330
Chris Lattner1772b122007-05-05 00:17:42 +0000331 // BLOCKINFO is a special part of the stream.
332 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000333 if (Dump) errs() << Indent << "<BLOCKINFO_BLOCK/>\n";
Chris Lattner1772b122007-05-05 00:17:42 +0000334 if (Stream.ReadBlockInfoBlock())
335 return Error("Malformed BlockInfoBlock");
336 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
337 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
338 return false;
339 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000340
Chris Lattnerb30c9252007-04-29 21:48:19 +0000341 unsigned NumWords = 0;
Chris Lattner1772b122007-05-05 00:17:42 +0000342 if (Stream.EnterSubBlock(BlockID, &NumWords))
Chris Lattner32de6332007-04-29 08:31:14 +0000343 return Error("Malformed block record");
344
Chris Lattnerb30c9252007-04-29 21:48:19 +0000345 const char *BlockName = 0;
346 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000347 errs() << Indent << "<";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000348 if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
Dan Gohman65f57c22009-07-15 16:35:29 +0000349 errs() << BlockName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000350 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000351 errs() << "UnknownBlock" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000352
Chris Lattnerb30c9252007-04-29 21:48:19 +0000353 if (NonSymbolic && BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000354 errs() << " BlockID=" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000355
Dan Gohman65f57c22009-07-15 16:35:29 +0000356 errs() << " NumWords=" << NumWords
357 << " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000358 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000359
Chris Lattner32de6332007-04-29 08:31:14 +0000360 SmallVector<uint64_t, 64> Record;
361
362 // Read all the records for this block.
363 while (1) {
364 if (Stream.AtEndOfStream())
365 return Error("Premature end of bitstream");
366
Chris Lattnerc167cac2009-04-27 18:15:27 +0000367 uint64_t RecordStartBit = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000368
Chris Lattner32de6332007-04-29 08:31:14 +0000369 // Read the code for this record.
370 unsigned AbbrevID = Stream.ReadCode();
371 switch (AbbrevID) {
Chris Lattner4238d472007-04-29 20:00:02 +0000372 case bitc::END_BLOCK: {
Chris Lattner32de6332007-04-29 08:31:14 +0000373 if (Stream.ReadBlockEnd())
374 return Error("Error at end of block");
Chris Lattner4238d472007-04-29 20:00:02 +0000375 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
376 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000377 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000378 errs() << Indent << "</";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000379 if (BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000380 errs() << BlockName << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000381 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000382 errs() << "UnknownBlock" << BlockID << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000383 }
Chris Lattner32de6332007-04-29 08:31:14 +0000384 return false;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000385 }
Chris Lattner44b0f102007-05-05 01:29:31 +0000386 case bitc::ENTER_SUBBLOCK: {
387 uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000388 if (ParseBlock(Stream, IndentLevel+1))
Chris Lattner32de6332007-04-29 08:31:14 +0000389 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000390 ++BlockStats.NumSubBlocks;
Chris Lattner44b0f102007-05-05 01:29:31 +0000391 uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000392
Chris Lattner44b0f102007-05-05 01:29:31 +0000393 // Don't include subblock sizes in the size of this block.
394 BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
Chris Lattner32de6332007-04-29 08:31:14 +0000395 break;
Chris Lattner44b0f102007-05-05 01:29:31 +0000396 }
Chris Lattner32de6332007-04-29 08:31:14 +0000397 case bitc::DEFINE_ABBREV:
398 Stream.ReadAbbrevRecord();
Chris Lattner4238d472007-04-29 20:00:02 +0000399 ++BlockStats.NumAbbrevs;
Chris Lattner32de6332007-04-29 08:31:14 +0000400 break;
401 default:
402 Record.clear();
Chris Lattner3f75d312009-04-06 22:44:40 +0000403
404 ++BlockStats.NumRecords;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000405 if (AbbrevID != bitc::UNABBREV_RECORD)
Chris Lattner3f75d312009-04-06 22:44:40 +0000406 ++BlockStats.NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000407
Chris Lattner3f75d312009-04-06 22:44:40 +0000408 const char *BlobStart = 0;
409 unsigned BlobLen = 0;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000410 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000411
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000412
413
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000414 // Increment the # occurrences of this code.
415 if (BlockStats.CodeFreq.size() <= Code)
416 BlockStats.CodeFreq.resize(Code+1);
Chris Lattner24437472009-04-27 17:59:34 +0000417 BlockStats.CodeFreq[Code].NumInstances++;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000418 BlockStats.CodeFreq[Code].TotalBits +=
419 Stream.GetCurrentBitNo()-RecordStartBit;
420 if (AbbrevID != bitc::UNABBREV_RECORD)
421 BlockStats.CodeFreq[Code].NumAbbrev++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000422
Chris Lattnerb30c9252007-04-29 21:48:19 +0000423 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000424 errs() << Indent << " <";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000425 if (const char *CodeName =
426 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000427 errs() << CodeName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000428 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000429 errs() << "UnknownCode" << Code;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000430 if (NonSymbolic &&
431 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000432 errs() << " codeid=" << Code;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000433 if (AbbrevID != bitc::UNABBREV_RECORD)
Dan Gohman65f57c22009-07-15 16:35:29 +0000434 errs() << " abbrevid=" << AbbrevID;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000435
436 for (unsigned i = 0, e = Record.size(); i != e; ++i)
Dan Gohman65f57c22009-07-15 16:35:29 +0000437 errs() << " op" << i << "=" << (int64_t)Record[i];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000438
Dan Gohman65f57c22009-07-15 16:35:29 +0000439 errs() << "/>";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000440
Chris Lattnerae7dd802009-04-07 02:56:46 +0000441 if (BlobStart) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000442 errs() << " blob data = ";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000443 bool BlobIsPrintable = true;
444 for (unsigned i = 0; i != BlobLen; ++i)
445 if (!isprint(BlobStart[i])) {
446 BlobIsPrintable = false;
447 break;
448 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000449
Chris Lattnerae7dd802009-04-07 02:56:46 +0000450 if (BlobIsPrintable)
Dan Gohman65f57c22009-07-15 16:35:29 +0000451 errs() << "'" << std::string(BlobStart, BlobStart+BlobLen) <<"'";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000452 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000453 errs() << "unprintable, " << BlobLen << " bytes.";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000454 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000455
Dan Gohman65f57c22009-07-15 16:35:29 +0000456 errs() << "\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000457 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000458
Chris Lattner32de6332007-04-29 08:31:14 +0000459 break;
460 }
461 }
462}
463
Chris Lattner4238d472007-04-29 20:00:02 +0000464static void PrintSize(double Bits) {
Chris Lattner24437472009-04-27 17:59:34 +0000465 fprintf(stderr, "%.2f/%.2fB/%lluW", Bits, Bits/8,(unsigned long long)Bits/32);
466}
467static void PrintSize(uint64_t Bits) {
468 fprintf(stderr, "%llub/%.2fB/%lluW", (unsigned long long)Bits,
469 (double)Bits/8, (unsigned long long)Bits/32);
Chris Lattner4238d472007-04-29 20:00:02 +0000470}
471
472
Chris Lattner45e0f892007-04-29 08:12:22 +0000473/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
474static int AnalyzeBitcode() {
475 // Read the input file.
Chris Lattnere2a466b2009-04-06 20:54:32 +0000476 MemoryBuffer *MemBuf = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str());
Chris Lattner45e0f892007-04-29 08:12:22 +0000477
Chris Lattnere2a466b2009-04-06 20:54:32 +0000478 if (MemBuf == 0)
Chris Lattner32de6332007-04-29 08:31:14 +0000479 return Error("Error reading '" + InputFilename + "'.");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000480
Chris Lattnere2a466b2009-04-06 20:54:32 +0000481 if (MemBuf->getBufferSize() & 3)
Chris Lattner32de6332007-04-29 08:31:14 +0000482 return Error("Bitcode stream should be a multiple of 4 bytes in length");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000483
Chris Lattnere2a466b2009-04-06 20:54:32 +0000484 unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
485 unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000486
Chris Lattnere2a466b2009-04-06 20:54:32 +0000487 // If we have a wrapper header, parse it and ignore the non-bc file contents.
488 // The magic number is 0x0B17C0DE stored in little endian.
489 if (isBitcodeWrapper(BufPtr, EndBufPtr))
490 if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr))
491 return Error("Invalid bitcode wrapper header");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000492
Chris Lattner962dde32009-04-26 20:59:02 +0000493 BitstreamReader StreamFile(BufPtr, EndBufPtr);
494 BitstreamCursor Stream(StreamFile);
Chris Lattner0370cc62009-04-27 20:04:08 +0000495 StreamFile.CollectBlockInfoNames();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000496
Chris Lattner45e0f892007-04-29 08:12:22 +0000497 // Read the stream signature.
498 char Signature[6];
499 Signature[0] = Stream.Read(8);
500 Signature[1] = Stream.Read(8);
501 Signature[2] = Stream.Read(4);
502 Signature[3] = Stream.Read(4);
503 Signature[4] = Stream.Read(4);
504 Signature[5] = Stream.Read(4);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000505
Chris Lattner32de6332007-04-29 08:31:14 +0000506 // Autodetect the file contents, if it is one we know.
Chris Lattner45e0f892007-04-29 08:12:22 +0000507 CurStreamType = UnknownBitstream;
508 if (Signature[0] == 'B' && Signature[1] == 'C' &&
509 Signature[2] == 0x0 && Signature[3] == 0xC &&
510 Signature[4] == 0xE && Signature[5] == 0xD)
511 CurStreamType = LLVMIRBitstream;
512
Chris Lattner4238d472007-04-29 20:00:02 +0000513 unsigned NumTopBlocks = 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000514
Chris Lattner32de6332007-04-29 08:31:14 +0000515 // Parse the top-level structure. We only allow blocks at the top-level.
516 while (!Stream.AtEndOfStream()) {
517 unsigned Code = Stream.ReadCode();
518 if (Code != bitc::ENTER_SUBBLOCK)
519 return Error("Invalid record at top-level");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000520
Chris Lattnerb30c9252007-04-29 21:48:19 +0000521 if (ParseBlock(Stream, 0))
Chris Lattner32de6332007-04-29 08:31:14 +0000522 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000523 ++NumTopBlocks;
Chris Lattner32de6332007-04-29 08:31:14 +0000524 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000525
Dan Gohman65f57c22009-07-15 16:35:29 +0000526 if (Dump) errs() << "\n\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000527
Chris Lattnere2a466b2009-04-06 20:54:32 +0000528 uint64_t BufferSizeBits = (EndBufPtr-BufPtr)*CHAR_BIT;
Chris Lattner32de6332007-04-29 08:31:14 +0000529 // Print a summary of the read file.
Dan Gohman65f57c22009-07-15 16:35:29 +0000530 errs() << "Summary of " << InputFilename << ":\n";
531 errs() << " Total size: ";
Chris Lattner8f926682007-05-01 02:43:46 +0000532 PrintSize(BufferSizeBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000533 errs() << "\n";
534 errs() << " Stream type: ";
Chris Lattner45e0f892007-04-29 08:12:22 +0000535 switch (CurStreamType) {
536 default: assert(0 && "Unknown bitstream type");
Dan Gohman65f57c22009-07-15 16:35:29 +0000537 case UnknownBitstream: errs() << "unknown\n"; break;
538 case LLVMIRBitstream: errs() << "LLVM IR\n"; break;
Chris Lattner45e0f892007-04-29 08:12:22 +0000539 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000540 errs() << " # Toplevel Blocks: " << NumTopBlocks << "\n";
541 errs() << "\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000542
543 // Emit per-block stats.
Dan Gohman65f57c22009-07-15 16:35:29 +0000544 errs() << "Per-block Summary:\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000545 for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
546 E = BlockIDStats.end(); I != E; ++I) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000547 errs() << " Block ID #" << I->first;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000548 if (const char *BlockName = GetBlockName(I->first, StreamFile))
Dan Gohman65f57c22009-07-15 16:35:29 +0000549 errs() << " (" << BlockName << ")";
550 errs() << ":\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000551
Chris Lattner4238d472007-04-29 20:00:02 +0000552 const PerBlockIDStats &Stats = I->second;
Dan Gohman65f57c22009-07-15 16:35:29 +0000553 errs() << " Num Instances: " << Stats.NumInstances << "\n";
554 errs() << " Total Size: ";
Chris Lattner4238d472007-04-29 20:00:02 +0000555 PrintSize(Stats.NumBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000556 errs() << "\n";
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000557 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
558 errs() << " Percent of file: " << format("%2.4f%%", pct) << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000559 if (Stats.NumInstances > 1) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000560 errs() << " Average Size: ";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000561 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
Dan Gohman65f57c22009-07-15 16:35:29 +0000562 errs() << "\n";
563 errs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
564 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
565 errs() << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
566 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
567 errs() << " Tot/Avg Records: " << Stats.NumRecords << "/"
568 << Stats.NumRecords/(double)Stats.NumInstances << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000569 } else {
Dan Gohman65f57c22009-07-15 16:35:29 +0000570 errs() << " Num SubBlocks: " << Stats.NumSubBlocks << "\n";
571 errs() << " Num Abbrevs: " << Stats.NumAbbrevs << "\n";
572 errs() << " Num Records: " << Stats.NumRecords << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000573 }
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000574 if (Stats.NumRecords) {
575 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords;
576 errs() << " Percent Abbrevs: " << format("%2.4f%%", pct) << "\n";
577 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000578 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000579
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000580 // Print a histogram of the codes we see.
581 if (!NoHistogram && !Stats.CodeFreq.empty()) {
582 std::vector<std::pair<unsigned, unsigned> > FreqPairs; // <freq,code>
583 for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
Chris Lattner24437472009-04-27 17:59:34 +0000584 if (unsigned Freq = Stats.CodeFreq[i].NumInstances)
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000585 FreqPairs.push_back(std::make_pair(Freq, i));
586 std::stable_sort(FreqPairs.begin(), FreqPairs.end());
587 std::reverse(FreqPairs.begin(), FreqPairs.end());
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000588
Dan Gohman65f57c22009-07-15 16:35:29 +0000589 errs() << "\tRecord Histogram:\n";
Chris Lattnerc167cac2009-04-27 18:15:27 +0000590 fprintf(stderr, "\t\t Count # Bits %% Abv Record Kind\n");
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000591 for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
Chris Lattnerc167cac2009-04-27 18:15:27 +0000592 const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000593
Chris Lattnerc167cac2009-04-27 18:15:27 +0000594 fprintf(stderr, "\t\t%7d %9llu ", RecStats.NumInstances,
Dan Gohmanfbccdef2009-05-01 16:33:33 +0000595 (unsigned long long)RecStats.TotalBits);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000596
Chris Lattnerc167cac2009-04-27 18:15:27 +0000597 if (RecStats.NumAbbrev)
598 fprintf(stderr, "%7.2f ",
599 (double)RecStats.NumAbbrev/RecStats.NumInstances*100);
600 else
601 fprintf(stderr, " ");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000602
603 if (const char *CodeName =
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000604 GetCodeName(FreqPairs[i].second, I->first, StreamFile))
Chris Lattner24437472009-04-27 17:59:34 +0000605 fprintf(stderr, "%s\n", CodeName);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000606 else
Chris Lattner24437472009-04-27 17:59:34 +0000607 fprintf(stderr, "UnknownCode%d\n", FreqPairs[i].second);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000608 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000609 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000610
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000611 }
Chris Lattner4238d472007-04-29 20:00:02 +0000612 }
Chris Lattner45e0f892007-04-29 08:12:22 +0000613 return 0;
614}
Reid Spencerdac69c82004-06-07 17:53:43 +0000615
Chris Lattner32de6332007-04-29 08:31:14 +0000616
Chris Lattnerc30598b2006-12-06 01:18:01 +0000617int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +0000618 // Print a stack trace if we signal out.
Chris Lattner45e0f892007-04-29 08:12:22 +0000619 sys::PrintStackTraceOnErrorSignal();
Chris Lattnercc14d252009-03-06 05:34:10 +0000620 PrettyStackTraceProgram X(argc, argv);
621 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
622 cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000623
Chris Lattner44dadff2007-05-06 09:29:57 +0000624 return AnalyzeBitcode();
Reid Spencerdac69c82004-06-07 17:53:43 +0000625}