blob: e6c82a326aa796533a8d5be3ad731a22efa9f357 [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"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000040#include "llvm/Support/Signals.h"
Michael J. Spencer333fb042010-12-09 17:36:48 +000041#include "llvm/Support/system_error.h"
Duncan Sands15af79c2009-08-24 10:59:01 +000042#include <cstdio>
Chris Lattner44dadff2007-05-06 09:29:57 +000043#include <map>
Chris Lattnerb1e85b52007-05-05 01:46:49 +000044#include <algorithm>
Reid Spencerdac69c82004-06-07 17:53:43 +000045using namespace llvm;
46
47static cl::opt<std::string>
Gabor Greif8ff70c22007-07-04 21:55:50 +000048 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
Reid Spencerdac69c82004-06-07 17:53:43 +000049
Gabor Greif8ff70c22007-07-04 21:55:50 +000050static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace"));
Chris Lattner32de6332007-04-29 08:31:14 +000051
52//===----------------------------------------------------------------------===//
53// Bitcode specific analysis.
54//===----------------------------------------------------------------------===//
55
Chris Lattnerb1e85b52007-05-05 01:46:49 +000056static cl::opt<bool> NoHistogram("disable-histogram",
57 cl::desc("Do not print per-code histogram"));
Chris Lattner45e0f892007-04-29 08:12:22 +000058
Chris Lattnerb30c9252007-04-29 21:48:19 +000059static cl::opt<bool>
60NonSymbolic("non-symbolic",
61 cl::desc("Emit numberic info in dump even if"
62 " symbolic info is available"));
63
Dan Gohmane7e4b512010-12-09 20:35:40 +000064namespace {
65
66/// CurStreamTypeType - A type for CurStreamType
67enum CurStreamTypeType {
Chris Lattner45e0f892007-04-29 08:12:22 +000068 UnknownBitstream,
69 LLVMIRBitstream
Dan Gohmane7e4b512010-12-09 20:35:40 +000070};
71
72}
73
74/// CurStreamType - If we can sniff the flavor of this stream, we can produce
75/// better dump info.
76static CurStreamTypeType CurStreamType;
Chris Lattner45e0f892007-04-29 08:12:22 +000077
Chris Lattner4238d472007-04-29 20:00:02 +000078
79/// GetBlockName - Return a symbolic block name if known, otherwise return
Chris Lattnerb30c9252007-04-29 21:48:19 +000080/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000081static const char *GetBlockName(unsigned BlockID,
82 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +000083 // Standard blocks for all bitcode files.
84 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
85 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
86 return "BLOCKINFO_BLOCK";
87 return 0;
88 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000089
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000090 // Check to see if we have a blockinfo record for this block, with a name.
91 if (const BitstreamReader::BlockInfo *Info =
92 StreamFile.getBlockInfo(BlockID)) {
93 if (!Info->Name.empty())
94 return Info->Name.c_str();
95 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000096
97
Chris Lattnerb30c9252007-04-29 21:48:19 +000098 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000099
Chris Lattner4238d472007-04-29 20:00:02 +0000100 switch (BlockID) {
Devang Patele8e02132009-09-18 19:26:43 +0000101 default: return 0;
102 case bitc::MODULE_BLOCK_ID: return "MODULE_BLOCK";
103 case bitc::PARAMATTR_BLOCK_ID: return "PARAMATTR_BLOCK";
104 case bitc::TYPE_BLOCK_ID: return "TYPE_BLOCK";
105 case bitc::CONSTANTS_BLOCK_ID: return "CONSTANTS_BLOCK";
106 case bitc::FUNCTION_BLOCK_ID: return "FUNCTION_BLOCK";
107 case bitc::TYPE_SYMTAB_BLOCK_ID: return "TYPE_SYMTAB";
108 case bitc::VALUE_SYMTAB_BLOCK_ID: return "VALUE_SYMTAB";
109 case bitc::METADATA_BLOCK_ID: return "METADATA_BLOCK";
110 case bitc::METADATA_ATTACHMENT_ID: return "METADATA_ATTACHMENT_BLOCK";
Chris Lattner4238d472007-04-29 20:00:02 +0000111 }
112}
113
Chris Lattnerb30c9252007-04-29 21:48:19 +0000114/// GetCodeName - Return a symbolic code name if known, otherwise return
115/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000116static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
117 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +0000118 // Standard blocks for all bitcode files.
119 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
120 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
121 switch (CodeID) {
122 default: return 0;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000123 case bitc::BLOCKINFO_CODE_SETBID: return "SETBID";
124 case bitc::BLOCKINFO_CODE_BLOCKNAME: return "BLOCKNAME";
125 case bitc::BLOCKINFO_CODE_SETRECORDNAME: return "SETRECORDNAME";
Chris Lattner1772b122007-05-05 00:17:42 +0000126 }
127 }
128 return 0;
129 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000130
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000131 // Check to see if we have a blockinfo record for this record, with a name.
132 if (const BitstreamReader::BlockInfo *Info =
133 StreamFile.getBlockInfo(BlockID)) {
134 for (unsigned i = 0, e = Info->RecordNames.size(); i != e; ++i)
135 if (Info->RecordNames[i].first == CodeID)
136 return Info->RecordNames[i].second.c_str();
137 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000138
139
Chris Lattnerb30c9252007-04-29 21:48:19 +0000140 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000141
Chris Lattnerb30c9252007-04-29 21:48:19 +0000142 switch (BlockID) {
143 default: return 0;
144 case bitc::MODULE_BLOCK_ID:
145 switch (CodeID) {
146 default: return 0;
147 case bitc::MODULE_CODE_VERSION: return "VERSION";
148 case bitc::MODULE_CODE_TRIPLE: return "TRIPLE";
149 case bitc::MODULE_CODE_DATALAYOUT: return "DATALAYOUT";
150 case bitc::MODULE_CODE_ASM: return "ASM";
151 case bitc::MODULE_CODE_SECTIONNAME: return "SECTIONNAME";
152 case bitc::MODULE_CODE_DEPLIB: return "DEPLIB";
153 case bitc::MODULE_CODE_GLOBALVAR: return "GLOBALVAR";
154 case bitc::MODULE_CODE_FUNCTION: return "FUNCTION";
155 case bitc::MODULE_CODE_ALIAS: return "ALIAS";
156 case bitc::MODULE_CODE_PURGEVALS: return "PURGEVALS";
Nick Lewycky82b80d92008-11-07 14:52:51 +0000157 case bitc::MODULE_CODE_GCNAME: return "GCNAME";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000158 }
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000159 case bitc::PARAMATTR_BLOCK_ID:
160 switch (CodeID) {
161 default: return 0;
162 case bitc::PARAMATTR_CODE_ENTRY: return "ENTRY";
163 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000164 case bitc::TYPE_BLOCK_ID:
165 switch (CodeID) {
166 default: return 0;
Nick Lewycky82b80d92008-11-07 14:52:51 +0000167 case bitc::TYPE_CODE_NUMENTRY: return "NUMENTRY";
168 case bitc::TYPE_CODE_VOID: return "VOID";
169 case bitc::TYPE_CODE_FLOAT: return "FLOAT";
170 case bitc::TYPE_CODE_DOUBLE: return "DOUBLE";
171 case bitc::TYPE_CODE_LABEL: return "LABEL";
172 case bitc::TYPE_CODE_OPAQUE: return "OPAQUE";
173 case bitc::TYPE_CODE_INTEGER: return "INTEGER";
174 case bitc::TYPE_CODE_POINTER: return "POINTER";
175 case bitc::TYPE_CODE_FUNCTION: return "FUNCTION";
176 case bitc::TYPE_CODE_STRUCT: return "STRUCT";
177 case bitc::TYPE_CODE_ARRAY: return "ARRAY";
178 case bitc::TYPE_CODE_VECTOR: return "VECTOR";
179 case bitc::TYPE_CODE_X86_FP80: return "X86_FP80";
180 case bitc::TYPE_CODE_FP128: return "FP128";
181 case bitc::TYPE_CODE_PPC_FP128: return "PPC_FP128";
Nick Lewycky079c0342009-06-01 04:41:03 +0000182 case bitc::TYPE_CODE_METADATA: return "METADATA";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000183 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000184
Chris Lattnerb30c9252007-04-29 21:48:19 +0000185 case bitc::CONSTANTS_BLOCK_ID:
186 switch (CodeID) {
187 default: return 0;
Duncan Sands0cad4e32009-09-25 12:28:37 +0000188 case bitc::CST_CODE_SETTYPE: return "SETTYPE";
189 case bitc::CST_CODE_NULL: return "NULL";
190 case bitc::CST_CODE_UNDEF: return "UNDEF";
191 case bitc::CST_CODE_INTEGER: return "INTEGER";
192 case bitc::CST_CODE_WIDE_INTEGER: return "WIDE_INTEGER";
193 case bitc::CST_CODE_FLOAT: return "FLOAT";
194 case bitc::CST_CODE_AGGREGATE: return "AGGREGATE";
195 case bitc::CST_CODE_STRING: return "STRING";
196 case bitc::CST_CODE_CSTRING: return "CSTRING";
197 case bitc::CST_CODE_CE_BINOP: return "CE_BINOP";
198 case bitc::CST_CODE_CE_CAST: return "CE_CAST";
199 case bitc::CST_CODE_CE_GEP: return "CE_GEP";
200 case bitc::CST_CODE_CE_INBOUNDS_GEP: return "CE_INBOUNDS_GEP";
201 case bitc::CST_CODE_CE_SELECT: return "CE_SELECT";
202 case bitc::CST_CODE_CE_EXTRACTELT: return "CE_EXTRACTELT";
203 case bitc::CST_CODE_CE_INSERTELT: return "CE_INSERTELT";
204 case bitc::CST_CODE_CE_SHUFFLEVEC: return "CE_SHUFFLEVEC";
205 case bitc::CST_CODE_CE_CMP: return "CE_CMP";
206 case bitc::CST_CODE_INLINEASM: return "INLINEASM";
207 case bitc::CST_CODE_CE_SHUFVEC_EX: return "CE_SHUFVEC_EX";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000208 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000209 case bitc::FUNCTION_BLOCK_ID:
210 switch (CodeID) {
211 default: return 0;
212 case bitc::FUNC_CODE_DECLAREBLOCKS: return "DECLAREBLOCKS";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000213
Duncan Sands0cad4e32009-09-25 12:28:37 +0000214 case bitc::FUNC_CODE_INST_BINOP: return "INST_BINOP";
215 case bitc::FUNC_CODE_INST_CAST: return "INST_CAST";
216 case bitc::FUNC_CODE_INST_GEP: return "INST_GEP";
217 case bitc::FUNC_CODE_INST_INBOUNDS_GEP: return "INST_INBOUNDS_GEP";
218 case bitc::FUNC_CODE_INST_SELECT: return "INST_SELECT";
219 case bitc::FUNC_CODE_INST_EXTRACTELT: return "INST_EXTRACTELT";
220 case bitc::FUNC_CODE_INST_INSERTELT: return "INST_INSERTELT";
221 case bitc::FUNC_CODE_INST_SHUFFLEVEC: return "INST_SHUFFLEVEC";
222 case bitc::FUNC_CODE_INST_CMP: return "INST_CMP";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000223
Duncan Sands0cad4e32009-09-25 12:28:37 +0000224 case bitc::FUNC_CODE_INST_RET: return "INST_RET";
225 case bitc::FUNC_CODE_INST_BR: return "INST_BR";
226 case bitc::FUNC_CODE_INST_SWITCH: return "INST_SWITCH";
227 case bitc::FUNC_CODE_INST_INVOKE: return "INST_INVOKE";
228 case bitc::FUNC_CODE_INST_UNWIND: return "INST_UNWIND";
229 case bitc::FUNC_CODE_INST_UNREACHABLE: return "INST_UNREACHABLE";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000230
Duncan Sands0cad4e32009-09-25 12:28:37 +0000231 case bitc::FUNC_CODE_INST_PHI: return "INST_PHI";
232 case bitc::FUNC_CODE_INST_MALLOC: return "INST_MALLOC";
233 case bitc::FUNC_CODE_INST_FREE: return "INST_FREE";
234 case bitc::FUNC_CODE_INST_ALLOCA: return "INST_ALLOCA";
235 case bitc::FUNC_CODE_INST_LOAD: return "INST_LOAD";
236 case bitc::FUNC_CODE_INST_STORE: return "INST_STORE";
237 case bitc::FUNC_CODE_INST_CALL: return "INST_CALL";
238 case bitc::FUNC_CODE_INST_VAARG: return "INST_VAARG";
239 case bitc::FUNC_CODE_INST_STORE2: return "INST_STORE2";
240 case bitc::FUNC_CODE_INST_GETRESULT: return "INST_GETRESULT";
241 case bitc::FUNC_CODE_INST_EXTRACTVAL: return "INST_EXTRACTVAL";
242 case bitc::FUNC_CODE_INST_INSERTVAL: return "INST_INSERTVAL";
243 case bitc::FUNC_CODE_INST_CMP2: return "INST_CMP2";
244 case bitc::FUNC_CODE_INST_VSELECT: return "INST_VSELECT";
Chris Lattnera6245242010-04-03 02:17:50 +0000245 case bitc::FUNC_CODE_DEBUG_LOC: return "DEBUG_LOC";
246 case bitc::FUNC_CODE_DEBUG_LOC_AGAIN: return "DEBUG_LOC_AGAIN";
Dan Gohman70c2fc02010-09-09 23:12:39 +0000247 case bitc::FUNC_CODE_INST_CALL2: return "INST_CALL2";
248 case bitc::FUNC_CODE_DEBUG_LOC2: return "DEBUG_LOC2";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000249 }
250 case bitc::TYPE_SYMTAB_BLOCK_ID:
251 switch (CodeID) {
252 default: return 0;
253 case bitc::TST_CODE_ENTRY: return "ENTRY";
254 }
255 case bitc::VALUE_SYMTAB_BLOCK_ID:
256 switch (CodeID) {
257 default: return 0;
258 case bitc::VST_CODE_ENTRY: return "ENTRY";
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000259 case bitc::VST_CODE_BBENTRY: return "BBENTRY";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000260 }
Devang Patele8e02132009-09-18 19:26:43 +0000261 case bitc::METADATA_ATTACHMENT_ID:
262 switch(CodeID) {
263 default:return 0;
264 case bitc::METADATA_ATTACHMENT: return "METADATA_ATTACHMENT";
265 }
Devang Patele54abc92009-07-22 17:43:22 +0000266 case bitc::METADATA_BLOCK_ID:
267 switch(CodeID) {
268 default:return 0;
Dan Gohman43906f92010-07-16 18:28:07 +0000269 case bitc::METADATA_STRING: return "METADATA_STRING";
270 case bitc::METADATA_NODE: return "METADATA_NODE";
271 case bitc::METADATA_FN_NODE: return "METADATA_FN_NODE";
Devang Patel124e6eb2009-07-30 23:03:19 +0000272 case bitc::METADATA_NAME: return "METADATA_NAME";
Dan Gohman43906f92010-07-16 18:28:07 +0000273 case bitc::METADATA_NAMED_NODE: return "METADATA_NAMED_NODE";
Devang Patele8e02132009-09-18 19:26:43 +0000274 case bitc::METADATA_KIND: return "METADATA_KIND";
Chris Lattnerd3a5fa82010-04-03 01:05:24 +0000275 case bitc::METADATA_ATTACHMENT: return "METADATA_ATTACHMENT";
Dan Gohman70c2fc02010-09-09 23:12:39 +0000276 case bitc::METADATA_NODE2: return "METADATA_NODE2";
277 case bitc::METADATA_FN_NODE2: return "METADATA_FN_NODE2";
278 case bitc::METADATA_NAMED_NODE2: return "METADATA_NAMED_NODE2";
279 case bitc::METADATA_ATTACHMENT2: return "METADATA_ATTACHMENT2";
Devang Patele54abc92009-07-22 17:43:22 +0000280 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000281 }
282}
283
Chris Lattner24437472009-04-27 17:59:34 +0000284struct PerRecordStats {
285 unsigned NumInstances;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000286 unsigned NumAbbrev;
287 uint64_t TotalBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000288
Chris Lattnerc167cac2009-04-27 18:15:27 +0000289 PerRecordStats() : NumInstances(0), NumAbbrev(0), TotalBits(0) {}
Chris Lattner24437472009-04-27 17:59:34 +0000290};
Chris Lattner4238d472007-04-29 20:00:02 +0000291
292struct PerBlockIDStats {
293 /// NumInstances - This the number of times this block ID has been seen.
294 unsigned NumInstances;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000295
Chris Lattner4238d472007-04-29 20:00:02 +0000296 /// NumBits - The total size in bits of all of these blocks.
297 uint64_t NumBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000298
Chris Lattner4238d472007-04-29 20:00:02 +0000299 /// NumSubBlocks - The total number of blocks these blocks contain.
300 unsigned NumSubBlocks;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000301
Chris Lattner4238d472007-04-29 20:00:02 +0000302 /// NumAbbrevs - The total number of abbreviations.
303 unsigned NumAbbrevs;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000304
305 /// NumRecords - The total number of records these blocks contain, and the
Chris Lattner4238d472007-04-29 20:00:02 +0000306 /// number that are abbreviated.
307 unsigned NumRecords, NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000308
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000309 /// CodeFreq - Keep track of the number of times we see each code.
Chris Lattner24437472009-04-27 17:59:34 +0000310 std::vector<PerRecordStats> CodeFreq;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000311
Chris Lattner4238d472007-04-29 20:00:02 +0000312 PerBlockIDStats()
313 : NumInstances(0), NumBits(0),
314 NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
315};
316
317static std::map<unsigned, PerBlockIDStats> BlockIDStats;
318
319
320
Chris Lattner32de6332007-04-29 08:31:14 +0000321/// Error - All bitcode analysis errors go through this function, making this a
322/// good place to breakpoint if debugging.
323static bool Error(const std::string &Err) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000324 errs() << Err << "\n";
Chris Lattner32de6332007-04-29 08:31:14 +0000325 return true;
326}
327
328/// ParseBlock - Read a block, updating statistics, etc.
Chris Lattner962dde32009-04-26 20:59:02 +0000329static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
Chris Lattner1772b122007-05-05 00:17:42 +0000330 std::string Indent(IndentLevel*2, ' ');
Chris Lattner4238d472007-04-29 20:00:02 +0000331 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
Chris Lattner32de6332007-04-29 08:31:14 +0000332 unsigned BlockID = Stream.ReadSubBlockID();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000333
Chris Lattner4238d472007-04-29 20:00:02 +0000334 // Get the statistics for this BlockID.
335 PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000336
Chris Lattner4238d472007-04-29 20:00:02 +0000337 BlockStats.NumInstances++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000338
Chris Lattner1772b122007-05-05 00:17:42 +0000339 // BLOCKINFO is a special part of the stream.
340 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000341 if (Dump) errs() << Indent << "<BLOCKINFO_BLOCK/>\n";
Chris Lattner1772b122007-05-05 00:17:42 +0000342 if (Stream.ReadBlockInfoBlock())
343 return Error("Malformed BlockInfoBlock");
344 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
345 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
346 return false;
347 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000348
Chris Lattnerb30c9252007-04-29 21:48:19 +0000349 unsigned NumWords = 0;
Chris Lattner1772b122007-05-05 00:17:42 +0000350 if (Stream.EnterSubBlock(BlockID, &NumWords))
Chris Lattner32de6332007-04-29 08:31:14 +0000351 return Error("Malformed block record");
352
Chris Lattnerb30c9252007-04-29 21:48:19 +0000353 const char *BlockName = 0;
354 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000355 errs() << Indent << "<";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000356 if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
Dan Gohman65f57c22009-07-15 16:35:29 +0000357 errs() << BlockName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000358 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000359 errs() << "UnknownBlock" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000360
Chris Lattnerb30c9252007-04-29 21:48:19 +0000361 if (NonSymbolic && BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000362 errs() << " BlockID=" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000363
Dan Gohman65f57c22009-07-15 16:35:29 +0000364 errs() << " NumWords=" << NumWords
365 << " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000366 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000367
Chris Lattner32de6332007-04-29 08:31:14 +0000368 SmallVector<uint64_t, 64> Record;
369
370 // Read all the records for this block.
371 while (1) {
372 if (Stream.AtEndOfStream())
373 return Error("Premature end of bitstream");
374
Chris Lattnerc167cac2009-04-27 18:15:27 +0000375 uint64_t RecordStartBit = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000376
Chris Lattner32de6332007-04-29 08:31:14 +0000377 // Read the code for this record.
378 unsigned AbbrevID = Stream.ReadCode();
379 switch (AbbrevID) {
Chris Lattner4238d472007-04-29 20:00:02 +0000380 case bitc::END_BLOCK: {
Chris Lattner32de6332007-04-29 08:31:14 +0000381 if (Stream.ReadBlockEnd())
382 return Error("Error at end of block");
Chris Lattner4238d472007-04-29 20:00:02 +0000383 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
384 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000385 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000386 errs() << Indent << "</";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000387 if (BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000388 errs() << BlockName << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000389 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000390 errs() << "UnknownBlock" << BlockID << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000391 }
Chris Lattner32de6332007-04-29 08:31:14 +0000392 return false;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000393 }
Chris Lattner44b0f102007-05-05 01:29:31 +0000394 case bitc::ENTER_SUBBLOCK: {
395 uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000396 if (ParseBlock(Stream, IndentLevel+1))
Chris Lattner32de6332007-04-29 08:31:14 +0000397 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000398 ++BlockStats.NumSubBlocks;
Chris Lattner44b0f102007-05-05 01:29:31 +0000399 uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000400
Chris Lattner44b0f102007-05-05 01:29:31 +0000401 // Don't include subblock sizes in the size of this block.
402 BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
Chris Lattner32de6332007-04-29 08:31:14 +0000403 break;
Chris Lattner44b0f102007-05-05 01:29:31 +0000404 }
Chris Lattner32de6332007-04-29 08:31:14 +0000405 case bitc::DEFINE_ABBREV:
406 Stream.ReadAbbrevRecord();
Chris Lattner4238d472007-04-29 20:00:02 +0000407 ++BlockStats.NumAbbrevs;
Chris Lattner32de6332007-04-29 08:31:14 +0000408 break;
409 default:
410 Record.clear();
Chris Lattner3f75d312009-04-06 22:44:40 +0000411
412 ++BlockStats.NumRecords;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000413 if (AbbrevID != bitc::UNABBREV_RECORD)
Chris Lattner3f75d312009-04-06 22:44:40 +0000414 ++BlockStats.NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000415
Chris Lattner3f75d312009-04-06 22:44:40 +0000416 const char *BlobStart = 0;
417 unsigned BlobLen = 0;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000418 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000419
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000420
421
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000422 // Increment the # occurrences of this code.
423 if (BlockStats.CodeFreq.size() <= Code)
424 BlockStats.CodeFreq.resize(Code+1);
Chris Lattner24437472009-04-27 17:59:34 +0000425 BlockStats.CodeFreq[Code].NumInstances++;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000426 BlockStats.CodeFreq[Code].TotalBits +=
427 Stream.GetCurrentBitNo()-RecordStartBit;
428 if (AbbrevID != bitc::UNABBREV_RECORD)
429 BlockStats.CodeFreq[Code].NumAbbrev++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000430
Chris Lattnerb30c9252007-04-29 21:48:19 +0000431 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000432 errs() << Indent << " <";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000433 if (const char *CodeName =
434 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000435 errs() << CodeName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000436 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000437 errs() << "UnknownCode" << Code;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000438 if (NonSymbolic &&
439 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000440 errs() << " codeid=" << Code;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000441 if (AbbrevID != bitc::UNABBREV_RECORD)
Dan Gohman65f57c22009-07-15 16:35:29 +0000442 errs() << " abbrevid=" << AbbrevID;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000443
444 for (unsigned i = 0, e = Record.size(); i != e; ++i)
Dan Gohman65f57c22009-07-15 16:35:29 +0000445 errs() << " op" << i << "=" << (int64_t)Record[i];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000446
Dan Gohman65f57c22009-07-15 16:35:29 +0000447 errs() << "/>";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000448
Chris Lattnerae7dd802009-04-07 02:56:46 +0000449 if (BlobStart) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000450 errs() << " blob data = ";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000451 bool BlobIsPrintable = true;
452 for (unsigned i = 0; i != BlobLen; ++i)
453 if (!isprint(BlobStart[i])) {
454 BlobIsPrintable = false;
455 break;
456 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000457
Chris Lattnerae7dd802009-04-07 02:56:46 +0000458 if (BlobIsPrintable)
Dan Gohman65f57c22009-07-15 16:35:29 +0000459 errs() << "'" << std::string(BlobStart, BlobStart+BlobLen) <<"'";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000460 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000461 errs() << "unprintable, " << BlobLen << " bytes.";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000462 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000463
Dan Gohman65f57c22009-07-15 16:35:29 +0000464 errs() << "\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000465 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000466
Chris Lattner32de6332007-04-29 08:31:14 +0000467 break;
468 }
469 }
470}
471
Chris Lattner4238d472007-04-29 20:00:02 +0000472static void PrintSize(double Bits) {
Chris Lattner24437472009-04-27 17:59:34 +0000473 fprintf(stderr, "%.2f/%.2fB/%lluW", Bits, Bits/8,(unsigned long long)Bits/32);
474}
475static void PrintSize(uint64_t Bits) {
476 fprintf(stderr, "%llub/%.2fB/%lluW", (unsigned long long)Bits,
477 (double)Bits/8, (unsigned long long)Bits/32);
Chris Lattner4238d472007-04-29 20:00:02 +0000478}
479
480
Chris Lattner45e0f892007-04-29 08:12:22 +0000481/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
482static int AnalyzeBitcode() {
483 // Read the input file.
Michael J. Spencer333fb042010-12-09 17:36:48 +0000484 error_code ec;
485 MemoryBuffer *MemBuf =
486 MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), ec);
Chris Lattner45e0f892007-04-29 08:12:22 +0000487
Chris Lattnere2a466b2009-04-06 20:54:32 +0000488 if (MemBuf == 0)
Michael J. Spencer333fb042010-12-09 17:36:48 +0000489 return Error("Error reading '" + InputFilename + "': " + ec.message());
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000490
Chris Lattnere2a466b2009-04-06 20:54:32 +0000491 if (MemBuf->getBufferSize() & 3)
Chris Lattner32de6332007-04-29 08:31:14 +0000492 return Error("Bitcode stream should be a multiple of 4 bytes in length");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000493
Chris Lattnere2a466b2009-04-06 20:54:32 +0000494 unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
495 unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000496
Chris Lattnere2a466b2009-04-06 20:54:32 +0000497 // If we have a wrapper header, parse it and ignore the non-bc file contents.
498 // The magic number is 0x0B17C0DE stored in little endian.
499 if (isBitcodeWrapper(BufPtr, EndBufPtr))
500 if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr))
501 return Error("Invalid bitcode wrapper header");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000502
Chris Lattner962dde32009-04-26 20:59:02 +0000503 BitstreamReader StreamFile(BufPtr, EndBufPtr);
504 BitstreamCursor Stream(StreamFile);
Chris Lattner0370cc62009-04-27 20:04:08 +0000505 StreamFile.CollectBlockInfoNames();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000506
Chris Lattner45e0f892007-04-29 08:12:22 +0000507 // Read the stream signature.
508 char Signature[6];
509 Signature[0] = Stream.Read(8);
510 Signature[1] = Stream.Read(8);
511 Signature[2] = Stream.Read(4);
512 Signature[3] = Stream.Read(4);
513 Signature[4] = Stream.Read(4);
514 Signature[5] = Stream.Read(4);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000515
Chris Lattner32de6332007-04-29 08:31:14 +0000516 // Autodetect the file contents, if it is one we know.
Chris Lattner45e0f892007-04-29 08:12:22 +0000517 CurStreamType = UnknownBitstream;
518 if (Signature[0] == 'B' && Signature[1] == 'C' &&
519 Signature[2] == 0x0 && Signature[3] == 0xC &&
520 Signature[4] == 0xE && Signature[5] == 0xD)
521 CurStreamType = LLVMIRBitstream;
522
Chris Lattner4238d472007-04-29 20:00:02 +0000523 unsigned NumTopBlocks = 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000524
Chris Lattner32de6332007-04-29 08:31:14 +0000525 // Parse the top-level structure. We only allow blocks at the top-level.
526 while (!Stream.AtEndOfStream()) {
527 unsigned Code = Stream.ReadCode();
528 if (Code != bitc::ENTER_SUBBLOCK)
529 return Error("Invalid record at top-level");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000530
Chris Lattnerb30c9252007-04-29 21:48:19 +0000531 if (ParseBlock(Stream, 0))
Chris Lattner32de6332007-04-29 08:31:14 +0000532 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000533 ++NumTopBlocks;
Chris Lattner32de6332007-04-29 08:31:14 +0000534 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000535
Dan Gohman65f57c22009-07-15 16:35:29 +0000536 if (Dump) errs() << "\n\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000537
Chris Lattnere2a466b2009-04-06 20:54:32 +0000538 uint64_t BufferSizeBits = (EndBufPtr-BufPtr)*CHAR_BIT;
Chris Lattner32de6332007-04-29 08:31:14 +0000539 // Print a summary of the read file.
Dan Gohman65f57c22009-07-15 16:35:29 +0000540 errs() << "Summary of " << InputFilename << ":\n";
541 errs() << " Total size: ";
Chris Lattner8f926682007-05-01 02:43:46 +0000542 PrintSize(BufferSizeBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000543 errs() << "\n";
544 errs() << " Stream type: ";
Chris Lattner45e0f892007-04-29 08:12:22 +0000545 switch (CurStreamType) {
546 default: assert(0 && "Unknown bitstream type");
Dan Gohman65f57c22009-07-15 16:35:29 +0000547 case UnknownBitstream: errs() << "unknown\n"; break;
548 case LLVMIRBitstream: errs() << "LLVM IR\n"; break;
Chris Lattner45e0f892007-04-29 08:12:22 +0000549 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000550 errs() << " # Toplevel Blocks: " << NumTopBlocks << "\n";
551 errs() << "\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000552
553 // Emit per-block stats.
Dan Gohman65f57c22009-07-15 16:35:29 +0000554 errs() << "Per-block Summary:\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000555 for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
556 E = BlockIDStats.end(); I != E; ++I) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000557 errs() << " Block ID #" << I->first;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000558 if (const char *BlockName = GetBlockName(I->first, StreamFile))
Dan Gohman65f57c22009-07-15 16:35:29 +0000559 errs() << " (" << BlockName << ")";
560 errs() << ":\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000561
Chris Lattner4238d472007-04-29 20:00:02 +0000562 const PerBlockIDStats &Stats = I->second;
Dan Gohman65f57c22009-07-15 16:35:29 +0000563 errs() << " Num Instances: " << Stats.NumInstances << "\n";
564 errs() << " Total Size: ";
Chris Lattner4238d472007-04-29 20:00:02 +0000565 PrintSize(Stats.NumBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000566 errs() << "\n";
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000567 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
568 errs() << " Percent of file: " << format("%2.4f%%", pct) << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000569 if (Stats.NumInstances > 1) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000570 errs() << " Average Size: ";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000571 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
Dan Gohman65f57c22009-07-15 16:35:29 +0000572 errs() << "\n";
573 errs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
574 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
575 errs() << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
576 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
577 errs() << " Tot/Avg Records: " << Stats.NumRecords << "/"
578 << Stats.NumRecords/(double)Stats.NumInstances << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000579 } else {
Dan Gohman65f57c22009-07-15 16:35:29 +0000580 errs() << " Num SubBlocks: " << Stats.NumSubBlocks << "\n";
581 errs() << " Num Abbrevs: " << Stats.NumAbbrevs << "\n";
582 errs() << " Num Records: " << Stats.NumRecords << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000583 }
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000584 if (Stats.NumRecords) {
585 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords;
586 errs() << " Percent Abbrevs: " << format("%2.4f%%", pct) << "\n";
587 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000588 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000589
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000590 // Print a histogram of the codes we see.
591 if (!NoHistogram && !Stats.CodeFreq.empty()) {
592 std::vector<std::pair<unsigned, unsigned> > FreqPairs; // <freq,code>
593 for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
Chris Lattner24437472009-04-27 17:59:34 +0000594 if (unsigned Freq = Stats.CodeFreq[i].NumInstances)
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000595 FreqPairs.push_back(std::make_pair(Freq, i));
596 std::stable_sort(FreqPairs.begin(), FreqPairs.end());
597 std::reverse(FreqPairs.begin(), FreqPairs.end());
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000598
Dan Gohman65f57c22009-07-15 16:35:29 +0000599 errs() << "\tRecord Histogram:\n";
Chris Lattnerc167cac2009-04-27 18:15:27 +0000600 fprintf(stderr, "\t\t Count # Bits %% Abv Record Kind\n");
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000601 for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
Chris Lattnerc167cac2009-04-27 18:15:27 +0000602 const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000603
Chris Lattnerc167cac2009-04-27 18:15:27 +0000604 fprintf(stderr, "\t\t%7d %9llu ", RecStats.NumInstances,
Dan Gohmanfbccdef2009-05-01 16:33:33 +0000605 (unsigned long long)RecStats.TotalBits);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000606
Chris Lattnerc167cac2009-04-27 18:15:27 +0000607 if (RecStats.NumAbbrev)
608 fprintf(stderr, "%7.2f ",
609 (double)RecStats.NumAbbrev/RecStats.NumInstances*100);
610 else
611 fprintf(stderr, " ");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000612
613 if (const char *CodeName =
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000614 GetCodeName(FreqPairs[i].second, I->first, StreamFile))
Chris Lattner24437472009-04-27 17:59:34 +0000615 fprintf(stderr, "%s\n", CodeName);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000616 else
Chris Lattner24437472009-04-27 17:59:34 +0000617 fprintf(stderr, "UnknownCode%d\n", FreqPairs[i].second);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000618 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000619 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000620
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000621 }
Chris Lattner4238d472007-04-29 20:00:02 +0000622 }
Chris Lattner45e0f892007-04-29 08:12:22 +0000623 return 0;
624}
Reid Spencerdac69c82004-06-07 17:53:43 +0000625
Chris Lattner32de6332007-04-29 08:31:14 +0000626
Chris Lattnerc30598b2006-12-06 01:18:01 +0000627int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +0000628 // Print a stack trace if we signal out.
Chris Lattner45e0f892007-04-29 08:12:22 +0000629 sys::PrintStackTraceOnErrorSignal();
Chris Lattnercc14d252009-03-06 05:34:10 +0000630 PrettyStackTraceProgram X(argc, argv);
631 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
632 cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000633
Chris Lattner44dadff2007-05-06 09:29:57 +0000634 return AnalyzeBitcode();
Reid Spencerdac69c82004-06-07 17:53:43 +0000635}