blob: e0d4722b1d88e5311419f9936f618cad69fee4d9 [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
Michael J. Spencer3ff95632010-12-16 03:29:14 +000030#include "llvm/ADT/OwningPtr.h"
Reid Spencer86a9a7a2004-06-29 23:34:27 +000031#include "llvm/Analysis/Verifier.h"
Chris Lattner45e0f892007-04-29 08:12:22 +000032#include "llvm/Bitcode/BitstreamReader.h"
Chris Lattner4238d472007-04-29 20:00:02 +000033#include "llvm/Bitcode/LLVMBitCodes.h"
Chris Lattnere2a466b2009-04-06 20:54:32 +000034#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000035#include "llvm/Support/CommandLine.h"
Daniel Dunbar42985bb2009-09-25 16:04:21 +000036#include "llvm/Support/Format.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000037#include "llvm/Support/ManagedStatic.h"
Chris Lattner45e0f892007-04-29 08:12:22 +000038#include "llvm/Support/MemoryBuffer.h"
Chris Lattnercc14d252009-03-06 05:34:10 +000039#include "llvm/Support/PrettyStackTrace.h"
Chris Lattner74382b72009-08-23 22:45:37 +000040#include "llvm/Support/raw_ostream.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000041#include "llvm/Support/Signals.h"
Michael J. Spencer333fb042010-12-09 17:36:48 +000042#include "llvm/Support/system_error.h"
Duncan Sands15af79c2009-08-24 10:59:01 +000043#include <cstdio>
Chris Lattner44dadff2007-05-06 09:29:57 +000044#include <map>
Chris Lattnerb1e85b52007-05-05 01:46:49 +000045#include <algorithm>
Reid Spencerdac69c82004-06-07 17:53:43 +000046using namespace llvm;
47
48static cl::opt<std::string>
Gabor Greif8ff70c22007-07-04 21:55:50 +000049 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
Reid Spencerdac69c82004-06-07 17:53:43 +000050
Gabor Greif8ff70c22007-07-04 21:55:50 +000051static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace"));
Chris Lattner32de6332007-04-29 08:31:14 +000052
53//===----------------------------------------------------------------------===//
54// Bitcode specific analysis.
55//===----------------------------------------------------------------------===//
56
Chris Lattnerb1e85b52007-05-05 01:46:49 +000057static cl::opt<bool> NoHistogram("disable-histogram",
58 cl::desc("Do not print per-code histogram"));
Chris Lattner45e0f892007-04-29 08:12:22 +000059
Chris Lattnerb30c9252007-04-29 21:48:19 +000060static cl::opt<bool>
61NonSymbolic("non-symbolic",
Michael J. Spencer3ff95632010-12-16 03:29:14 +000062 cl::desc("Emit numeric info in dump even if"
Chris Lattnerb30c9252007-04-29 21:48:19 +000063 " symbolic info is available"));
64
Dan Gohmane7e4b512010-12-09 20:35:40 +000065namespace {
66
67/// CurStreamTypeType - A type for CurStreamType
68enum CurStreamTypeType {
Chris Lattner45e0f892007-04-29 08:12:22 +000069 UnknownBitstream,
70 LLVMIRBitstream
Dan Gohmane7e4b512010-12-09 20:35:40 +000071};
72
73}
74
75/// CurStreamType - If we can sniff the flavor of this stream, we can produce
76/// better dump info.
77static CurStreamTypeType CurStreamType;
Chris Lattner45e0f892007-04-29 08:12:22 +000078
Chris Lattner4238d472007-04-29 20:00:02 +000079
80/// GetBlockName - Return a symbolic block name if known, otherwise return
Chris Lattnerb30c9252007-04-29 21:48:19 +000081/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000082static const char *GetBlockName(unsigned BlockID,
83 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +000084 // Standard blocks for all bitcode files.
85 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
86 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
87 return "BLOCKINFO_BLOCK";
88 return 0;
89 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000090
Chris Lattnerf9a3ec82009-04-26 22:21:57 +000091 // Check to see if we have a blockinfo record for this block, with a name.
92 if (const BitstreamReader::BlockInfo *Info =
93 StreamFile.getBlockInfo(BlockID)) {
94 if (!Info->Name.empty())
95 return Info->Name.c_str();
96 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +000097
98
Chris Lattnerb30c9252007-04-29 21:48:19 +000099 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000100
Chris Lattner4238d472007-04-29 20:00:02 +0000101 switch (BlockID) {
Devang Patele8e02132009-09-18 19:26:43 +0000102 default: return 0;
103 case bitc::MODULE_BLOCK_ID: return "MODULE_BLOCK";
104 case bitc::PARAMATTR_BLOCK_ID: return "PARAMATTR_BLOCK";
Chris Lattner1afcace2011-07-09 17:41:24 +0000105 case bitc::TYPE_BLOCK_ID_NEW: return "TYPE_BLOCK_ID";
Devang Patele8e02132009-09-18 19:26:43 +0000106 case bitc::CONSTANTS_BLOCK_ID: return "CONSTANTS_BLOCK";
107 case bitc::FUNCTION_BLOCK_ID: return "FUNCTION_BLOCK";
Devang Patele8e02132009-09-18 19:26:43 +0000108 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";
Chad Rosier837b4e42011-12-07 21:45:13 +0000111 case bitc::USELIST_BLOCK_ID: return "USELIST_BLOCK_ID";
Chris Lattner4238d472007-04-29 20:00:02 +0000112 }
113}
114
Chris Lattnerb30c9252007-04-29 21:48:19 +0000115/// GetCodeName - Return a symbolic code name if known, otherwise return
116/// null.
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000117static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
118 const BitstreamReader &StreamFile) {
Chris Lattner1772b122007-05-05 00:17:42 +0000119 // Standard blocks for all bitcode files.
120 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
121 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
122 switch (CodeID) {
123 default: return 0;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000124 case bitc::BLOCKINFO_CODE_SETBID: return "SETBID";
125 case bitc::BLOCKINFO_CODE_BLOCKNAME: return "BLOCKNAME";
126 case bitc::BLOCKINFO_CODE_SETRECORDNAME: return "SETRECORDNAME";
Chris Lattner1772b122007-05-05 00:17:42 +0000127 }
128 }
129 return 0;
130 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000131
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000132 // Check to see if we have a blockinfo record for this record, with a name.
133 if (const BitstreamReader::BlockInfo *Info =
134 StreamFile.getBlockInfo(BlockID)) {
135 for (unsigned i = 0, e = Info->RecordNames.size(); i != e; ++i)
136 if (Info->RecordNames[i].first == CodeID)
137 return Info->RecordNames[i].second.c_str();
138 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000139
140
Chris Lattnerb30c9252007-04-29 21:48:19 +0000141 if (CurStreamType != LLVMIRBitstream) return 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000142
Chris Lattnerb30c9252007-04-29 21:48:19 +0000143 switch (BlockID) {
144 default: return 0;
145 case bitc::MODULE_BLOCK_ID:
146 switch (CodeID) {
147 default: return 0;
148 case bitc::MODULE_CODE_VERSION: return "VERSION";
149 case bitc::MODULE_CODE_TRIPLE: return "TRIPLE";
150 case bitc::MODULE_CODE_DATALAYOUT: return "DATALAYOUT";
151 case bitc::MODULE_CODE_ASM: return "ASM";
152 case bitc::MODULE_CODE_SECTIONNAME: return "SECTIONNAME";
153 case bitc::MODULE_CODE_DEPLIB: return "DEPLIB";
154 case bitc::MODULE_CODE_GLOBALVAR: return "GLOBALVAR";
155 case bitc::MODULE_CODE_FUNCTION: return "FUNCTION";
156 case bitc::MODULE_CODE_ALIAS: return "ALIAS";
157 case bitc::MODULE_CODE_PURGEVALS: return "PURGEVALS";
Nick Lewycky82b80d92008-11-07 14:52:51 +0000158 case bitc::MODULE_CODE_GCNAME: return "GCNAME";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000159 }
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000160 case bitc::PARAMATTR_BLOCK_ID:
161 switch (CodeID) {
162 default: return 0;
163 case bitc::PARAMATTR_CODE_ENTRY: return "ENTRY";
164 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000165 case bitc::TYPE_BLOCK_ID_NEW:
Chris Lattnerb30c9252007-04-29 21:48:19 +0000166 switch (CodeID) {
167 default: return 0;
Chris Lattner1afcace2011-07-09 17:41:24 +0000168 case bitc::TYPE_CODE_NUMENTRY: return "NUMENTRY";
169 case bitc::TYPE_CODE_VOID: return "VOID";
170 case bitc::TYPE_CODE_FLOAT: return "FLOAT";
171 case bitc::TYPE_CODE_DOUBLE: return "DOUBLE";
172 case bitc::TYPE_CODE_LABEL: return "LABEL";
173 case bitc::TYPE_CODE_OPAQUE: return "OPAQUE";
174 case bitc::TYPE_CODE_INTEGER: return "INTEGER";
175 case bitc::TYPE_CODE_POINTER: return "POINTER";
Chris Lattner1afcace2011-07-09 17:41:24 +0000176 case bitc::TYPE_CODE_ARRAY: return "ARRAY";
177 case bitc::TYPE_CODE_VECTOR: return "VECTOR";
178 case bitc::TYPE_CODE_X86_FP80: return "X86_FP80";
179 case bitc::TYPE_CODE_FP128: return "FP128";
180 case bitc::TYPE_CODE_PPC_FP128: return "PPC_FP128";
181 case bitc::TYPE_CODE_METADATA: return "METADATA";
182 case bitc::TYPE_CODE_STRUCT_ANON: return "STRUCT_ANON";
183 case bitc::TYPE_CODE_STRUCT_NAME: return "STRUCT_NAME";
184 case bitc::TYPE_CODE_STRUCT_NAMED: return "STRUCT_NAMED";
Chad Rosiercde54642011-11-03 00:14:01 +0000185 case bitc::TYPE_CODE_FUNCTION: return "FUNCTION";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000186 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000187
Chris Lattnerb30c9252007-04-29 21:48:19 +0000188 case bitc::CONSTANTS_BLOCK_ID:
189 switch (CodeID) {
190 default: return 0;
Duncan Sands0cad4e32009-09-25 12:28:37 +0000191 case bitc::CST_CODE_SETTYPE: return "SETTYPE";
192 case bitc::CST_CODE_NULL: return "NULL";
193 case bitc::CST_CODE_UNDEF: return "UNDEF";
194 case bitc::CST_CODE_INTEGER: return "INTEGER";
195 case bitc::CST_CODE_WIDE_INTEGER: return "WIDE_INTEGER";
196 case bitc::CST_CODE_FLOAT: return "FLOAT";
197 case bitc::CST_CODE_AGGREGATE: return "AGGREGATE";
198 case bitc::CST_CODE_STRING: return "STRING";
199 case bitc::CST_CODE_CSTRING: return "CSTRING";
200 case bitc::CST_CODE_CE_BINOP: return "CE_BINOP";
201 case bitc::CST_CODE_CE_CAST: return "CE_CAST";
202 case bitc::CST_CODE_CE_GEP: return "CE_GEP";
203 case bitc::CST_CODE_CE_INBOUNDS_GEP: return "CE_INBOUNDS_GEP";
204 case bitc::CST_CODE_CE_SELECT: return "CE_SELECT";
205 case bitc::CST_CODE_CE_EXTRACTELT: return "CE_EXTRACTELT";
206 case bitc::CST_CODE_CE_INSERTELT: return "CE_INSERTELT";
207 case bitc::CST_CODE_CE_SHUFFLEVEC: return "CE_SHUFFLEVEC";
208 case bitc::CST_CODE_CE_CMP: return "CE_CMP";
209 case bitc::CST_CODE_INLINEASM: return "INLINEASM";
210 case bitc::CST_CODE_CE_SHUFVEC_EX: return "CE_SHUFVEC_EX";
Chris Lattnerd408f062012-01-30 00:51:16 +0000211 case bitc::CST_CODE_BLOCKADDRESS: return "CST_CODE_BLOCKADDRESS";
212 case bitc::CST_CODE_DATA: return "DATA";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000213 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000214 case bitc::FUNCTION_BLOCK_ID:
215 switch (CodeID) {
216 default: return 0;
217 case bitc::FUNC_CODE_DECLAREBLOCKS: return "DECLAREBLOCKS";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000218
Duncan Sands0cad4e32009-09-25 12:28:37 +0000219 case bitc::FUNC_CODE_INST_BINOP: return "INST_BINOP";
220 case bitc::FUNC_CODE_INST_CAST: return "INST_CAST";
221 case bitc::FUNC_CODE_INST_GEP: return "INST_GEP";
222 case bitc::FUNC_CODE_INST_INBOUNDS_GEP: return "INST_INBOUNDS_GEP";
223 case bitc::FUNC_CODE_INST_SELECT: return "INST_SELECT";
224 case bitc::FUNC_CODE_INST_EXTRACTELT: return "INST_EXTRACTELT";
225 case bitc::FUNC_CODE_INST_INSERTELT: return "INST_INSERTELT";
226 case bitc::FUNC_CODE_INST_SHUFFLEVEC: return "INST_SHUFFLEVEC";
227 case bitc::FUNC_CODE_INST_CMP: return "INST_CMP";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000228
Duncan Sands0cad4e32009-09-25 12:28:37 +0000229 case bitc::FUNC_CODE_INST_RET: return "INST_RET";
230 case bitc::FUNC_CODE_INST_BR: return "INST_BR";
231 case bitc::FUNC_CODE_INST_SWITCH: return "INST_SWITCH";
232 case bitc::FUNC_CODE_INST_INVOKE: return "INST_INVOKE";
233 case bitc::FUNC_CODE_INST_UNWIND: return "INST_UNWIND";
234 case bitc::FUNC_CODE_INST_UNREACHABLE: return "INST_UNREACHABLE";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000235
Duncan Sands0cad4e32009-09-25 12:28:37 +0000236 case bitc::FUNC_CODE_INST_PHI: return "INST_PHI";
Duncan Sands0cad4e32009-09-25 12:28:37 +0000237 case bitc::FUNC_CODE_INST_ALLOCA: return "INST_ALLOCA";
238 case bitc::FUNC_CODE_INST_LOAD: return "INST_LOAD";
Duncan Sands0cad4e32009-09-25 12:28:37 +0000239 case bitc::FUNC_CODE_INST_VAARG: return "INST_VAARG";
Chris Lattner4f6bab92011-06-17 18:17:37 +0000240 case bitc::FUNC_CODE_INST_STORE: return "INST_STORE";
Duncan Sands0cad4e32009-09-25 12:28:37 +0000241 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_AGAIN: return "DEBUG_LOC_AGAIN";
Chris Lattner4f6bab92011-06-17 18:17:37 +0000246 case bitc::FUNC_CODE_INST_CALL: return "INST_CALL";
247 case bitc::FUNC_CODE_DEBUG_LOC: return "DEBUG_LOC";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000248 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000249 case bitc::VALUE_SYMTAB_BLOCK_ID:
250 switch (CodeID) {
251 default: return 0;
252 case bitc::VST_CODE_ENTRY: return "ENTRY";
Chris Lattnercd5b7d72007-05-04 03:01:41 +0000253 case bitc::VST_CODE_BBENTRY: return "BBENTRY";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000254 }
Devang Patele8e02132009-09-18 19:26:43 +0000255 case bitc::METADATA_ATTACHMENT_ID:
256 switch(CodeID) {
257 default:return 0;
Chris Lattner9d61dd92011-06-17 17:50:30 +0000258 case bitc::METADATA_ATTACHMENT: return "METADATA_ATTACHMENT";
Devang Patele8e02132009-09-18 19:26:43 +0000259 }
Devang Patele54abc92009-07-22 17:43:22 +0000260 case bitc::METADATA_BLOCK_ID:
261 switch(CodeID) {
262 default:return 0;
Dan Gohman43906f92010-07-16 18:28:07 +0000263 case bitc::METADATA_STRING: return "METADATA_STRING";
Devang Patel124e6eb2009-07-30 23:03:19 +0000264 case bitc::METADATA_NAME: return "METADATA_NAME";
Devang Patele8e02132009-09-18 19:26:43 +0000265 case bitc::METADATA_KIND: return "METADATA_KIND";
Chris Lattner9d61dd92011-06-17 17:50:30 +0000266 case bitc::METADATA_NODE: return "METADATA_NODE";
267 case bitc::METADATA_FN_NODE: return "METADATA_FN_NODE";
268 case bitc::METADATA_NAMED_NODE: return "METADATA_NAMED_NODE";
Devang Patele54abc92009-07-22 17:43:22 +0000269 }
Chad Rosier837b4e42011-12-07 21:45:13 +0000270 case bitc::USELIST_BLOCK_ID:
271 switch(CodeID) {
272 default:return 0;
273 case bitc::USELIST_CODE_ENTRY: return "USELIST_CODE_ENTRY";
274 }
Chris Lattnerb30c9252007-04-29 21:48:19 +0000275 }
276}
277
Chris Lattner24437472009-04-27 17:59:34 +0000278struct PerRecordStats {
279 unsigned NumInstances;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000280 unsigned NumAbbrev;
281 uint64_t TotalBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000282
Chris Lattnerc167cac2009-04-27 18:15:27 +0000283 PerRecordStats() : NumInstances(0), NumAbbrev(0), TotalBits(0) {}
Chris Lattner24437472009-04-27 17:59:34 +0000284};
Chris Lattner4238d472007-04-29 20:00:02 +0000285
286struct PerBlockIDStats {
287 /// NumInstances - This the number of times this block ID has been seen.
288 unsigned NumInstances;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000289
Chris Lattner4238d472007-04-29 20:00:02 +0000290 /// NumBits - The total size in bits of all of these blocks.
291 uint64_t NumBits;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000292
Chris Lattner4238d472007-04-29 20:00:02 +0000293 /// NumSubBlocks - The total number of blocks these blocks contain.
294 unsigned NumSubBlocks;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000295
Chris Lattner4238d472007-04-29 20:00:02 +0000296 /// NumAbbrevs - The total number of abbreviations.
297 unsigned NumAbbrevs;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000298
299 /// NumRecords - The total number of records these blocks contain, and the
Chris Lattner4238d472007-04-29 20:00:02 +0000300 /// number that are abbreviated.
301 unsigned NumRecords, NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000302
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000303 /// CodeFreq - Keep track of the number of times we see each code.
Chris Lattner24437472009-04-27 17:59:34 +0000304 std::vector<PerRecordStats> CodeFreq;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000305
Chris Lattner4238d472007-04-29 20:00:02 +0000306 PerBlockIDStats()
307 : NumInstances(0), NumBits(0),
308 NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {}
309};
310
311static std::map<unsigned, PerBlockIDStats> BlockIDStats;
312
313
314
Chris Lattner32de6332007-04-29 08:31:14 +0000315/// Error - All bitcode analysis errors go through this function, making this a
316/// good place to breakpoint if debugging.
317static bool Error(const std::string &Err) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000318 errs() << Err << "\n";
Chris Lattner32de6332007-04-29 08:31:14 +0000319 return true;
320}
321
322/// ParseBlock - Read a block, updating statistics, etc.
Chris Lattner962dde32009-04-26 20:59:02 +0000323static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
Chris Lattner1772b122007-05-05 00:17:42 +0000324 std::string Indent(IndentLevel*2, ' ');
Chris Lattner4238d472007-04-29 20:00:02 +0000325 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
Chris Lattner32de6332007-04-29 08:31:14 +0000326 unsigned BlockID = Stream.ReadSubBlockID();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000327
Chris Lattner4238d472007-04-29 20:00:02 +0000328 // Get the statistics for this BlockID.
329 PerBlockIDStats &BlockStats = BlockIDStats[BlockID];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000330
Chris Lattner4238d472007-04-29 20:00:02 +0000331 BlockStats.NumInstances++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000332
Chris Lattner1772b122007-05-05 00:17:42 +0000333 // BLOCKINFO is a special part of the stream.
334 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000335 if (Dump) errs() << Indent << "<BLOCKINFO_BLOCK/>\n";
Chris Lattner1772b122007-05-05 00:17:42 +0000336 if (Stream.ReadBlockInfoBlock())
337 return Error("Malformed BlockInfoBlock");
338 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
339 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
340 return false;
341 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000342
Chris Lattnerb30c9252007-04-29 21:48:19 +0000343 unsigned NumWords = 0;
Chris Lattner1772b122007-05-05 00:17:42 +0000344 if (Stream.EnterSubBlock(BlockID, &NumWords))
Chris Lattner32de6332007-04-29 08:31:14 +0000345 return Error("Malformed block record");
346
Chris Lattnerb30c9252007-04-29 21:48:19 +0000347 const char *BlockName = 0;
348 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000349 errs() << Indent << "<";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000350 if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
Dan Gohman65f57c22009-07-15 16:35:29 +0000351 errs() << BlockName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000352 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000353 errs() << "UnknownBlock" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000354
Chris Lattnerb30c9252007-04-29 21:48:19 +0000355 if (NonSymbolic && BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000356 errs() << " BlockID=" << BlockID;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000357
Dan Gohman65f57c22009-07-15 16:35:29 +0000358 errs() << " NumWords=" << NumWords
359 << " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000360 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000361
Chris Lattner32de6332007-04-29 08:31:14 +0000362 SmallVector<uint64_t, 64> Record;
363
364 // Read all the records for this block.
365 while (1) {
366 if (Stream.AtEndOfStream())
367 return Error("Premature end of bitstream");
368
Chris Lattnerc167cac2009-04-27 18:15:27 +0000369 uint64_t RecordStartBit = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000370
Chris Lattner32de6332007-04-29 08:31:14 +0000371 // Read the code for this record.
372 unsigned AbbrevID = Stream.ReadCode();
373 switch (AbbrevID) {
Chris Lattner4238d472007-04-29 20:00:02 +0000374 case bitc::END_BLOCK: {
Chris Lattner32de6332007-04-29 08:31:14 +0000375 if (Stream.ReadBlockEnd())
376 return Error("Error at end of block");
Chris Lattner4238d472007-04-29 20:00:02 +0000377 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
378 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000379 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000380 errs() << Indent << "</";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000381 if (BlockName)
Dan Gohman65f57c22009-07-15 16:35:29 +0000382 errs() << BlockName << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000383 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000384 errs() << "UnknownBlock" << BlockID << ">\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000385 }
Chris Lattner32de6332007-04-29 08:31:14 +0000386 return false;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000387 }
Chris Lattner44b0f102007-05-05 01:29:31 +0000388 case bitc::ENTER_SUBBLOCK: {
389 uint64_t SubBlockBitStart = Stream.GetCurrentBitNo();
Chris Lattnerb30c9252007-04-29 21:48:19 +0000390 if (ParseBlock(Stream, IndentLevel+1))
Chris Lattner32de6332007-04-29 08:31:14 +0000391 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000392 ++BlockStats.NumSubBlocks;
Chris Lattner44b0f102007-05-05 01:29:31 +0000393 uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000394
Chris Lattner44b0f102007-05-05 01:29:31 +0000395 // Don't include subblock sizes in the size of this block.
396 BlockBitStart += SubBlockBitEnd-SubBlockBitStart;
Chris Lattner32de6332007-04-29 08:31:14 +0000397 break;
Chris Lattner44b0f102007-05-05 01:29:31 +0000398 }
Chris Lattner32de6332007-04-29 08:31:14 +0000399 case bitc::DEFINE_ABBREV:
400 Stream.ReadAbbrevRecord();
Chris Lattner4238d472007-04-29 20:00:02 +0000401 ++BlockStats.NumAbbrevs;
Chris Lattner32de6332007-04-29 08:31:14 +0000402 break;
403 default:
404 Record.clear();
Chris Lattner3f75d312009-04-06 22:44:40 +0000405
406 ++BlockStats.NumRecords;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000407 if (AbbrevID != bitc::UNABBREV_RECORD)
Chris Lattner3f75d312009-04-06 22:44:40 +0000408 ++BlockStats.NumAbbreviatedRecords;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000409
Chris Lattner3f75d312009-04-06 22:44:40 +0000410 const char *BlobStart = 0;
411 unsigned BlobLen = 0;
Chris Lattnerae7dd802009-04-07 02:56:46 +0000412 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000413
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000414
415
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000416 // Increment the # occurrences of this code.
417 if (BlockStats.CodeFreq.size() <= Code)
418 BlockStats.CodeFreq.resize(Code+1);
Chris Lattner24437472009-04-27 17:59:34 +0000419 BlockStats.CodeFreq[Code].NumInstances++;
Chris Lattnerc167cac2009-04-27 18:15:27 +0000420 BlockStats.CodeFreq[Code].TotalBits +=
421 Stream.GetCurrentBitNo()-RecordStartBit;
422 if (AbbrevID != bitc::UNABBREV_RECORD)
423 BlockStats.CodeFreq[Code].NumAbbrev++;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000424
Chris Lattnerb30c9252007-04-29 21:48:19 +0000425 if (Dump) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000426 errs() << Indent << " <";
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000427 if (const char *CodeName =
428 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000429 errs() << CodeName;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000430 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000431 errs() << "UnknownCode" << Code;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000432 if (NonSymbolic &&
433 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
Dan Gohman65f57c22009-07-15 16:35:29 +0000434 errs() << " codeid=" << Code;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000435 if (AbbrevID != bitc::UNABBREV_RECORD)
Dan Gohman65f57c22009-07-15 16:35:29 +0000436 errs() << " abbrevid=" << AbbrevID;
Chris Lattnerb30c9252007-04-29 21:48:19 +0000437
438 for (unsigned i = 0, e = Record.size(); i != e; ++i)
Dan Gohman65f57c22009-07-15 16:35:29 +0000439 errs() << " op" << i << "=" << (int64_t)Record[i];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000440
Dan Gohman65f57c22009-07-15 16:35:29 +0000441 errs() << "/>";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000442
Chris Lattnerae7dd802009-04-07 02:56:46 +0000443 if (BlobStart) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000444 errs() << " blob data = ";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000445 bool BlobIsPrintable = true;
446 for (unsigned i = 0; i != BlobLen; ++i)
447 if (!isprint(BlobStart[i])) {
448 BlobIsPrintable = false;
449 break;
450 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000451
Chris Lattnerae7dd802009-04-07 02:56:46 +0000452 if (BlobIsPrintable)
Dan Gohman65f57c22009-07-15 16:35:29 +0000453 errs() << "'" << std::string(BlobStart, BlobStart+BlobLen) <<"'";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000454 else
Dan Gohman65f57c22009-07-15 16:35:29 +0000455 errs() << "unprintable, " << BlobLen << " bytes.";
Chris Lattnerae7dd802009-04-07 02:56:46 +0000456 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000457
Dan Gohman65f57c22009-07-15 16:35:29 +0000458 errs() << "\n";
Chris Lattnerb30c9252007-04-29 21:48:19 +0000459 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000460
Chris Lattner32de6332007-04-29 08:31:14 +0000461 break;
462 }
463 }
464}
465
Chris Lattner4238d472007-04-29 20:00:02 +0000466static void PrintSize(double Bits) {
NAKAMURA Takumi3bc729c2011-03-18 03:21:04 +0000467 fprintf(stderr, "%.2f/%.2fB/%luW", Bits, Bits/8,(unsigned long)(Bits/32));
Chris Lattner24437472009-04-27 17:59:34 +0000468}
469static void PrintSize(uint64_t Bits) {
NAKAMURA Takumi3bc729c2011-03-18 03:21:04 +0000470 fprintf(stderr, "%lub/%.2fB/%luW", (unsigned long)Bits,
471 (double)Bits/8, (unsigned long)(Bits/32));
Chris Lattner4238d472007-04-29 20:00:02 +0000472}
473
474
Chris Lattner45e0f892007-04-29 08:12:22 +0000475/// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename.
476static int AnalyzeBitcode() {
477 // Read the input file.
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000478 OwningPtr<MemoryBuffer> MemBuf;
Chris Lattner45e0f892007-04-29 08:12:22 +0000479
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000480 if (error_code ec =
481 MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), MemBuf))
Michael J. Spencer333fb042010-12-09 17:36:48 +0000482 return Error("Error reading '" + InputFilename + "': " + ec.message());
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000483
Chris Lattnere2a466b2009-04-06 20:54:32 +0000484 if (MemBuf->getBufferSize() & 3)
Chris Lattner32de6332007-04-29 08:31:14 +0000485 return Error("Bitcode stream should be a multiple of 4 bytes in length");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000486
Chris Lattnere2a466b2009-04-06 20:54:32 +0000487 unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
488 unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000489
Chris Lattnere2a466b2009-04-06 20:54:32 +0000490 // If we have a wrapper header, parse it and ignore the non-bc file contents.
491 // The magic number is 0x0B17C0DE stored in little endian.
492 if (isBitcodeWrapper(BufPtr, EndBufPtr))
493 if (SkipBitcodeWrapperHeader(BufPtr, EndBufPtr))
494 return Error("Invalid bitcode wrapper header");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000495
Chris Lattner962dde32009-04-26 20:59:02 +0000496 BitstreamReader StreamFile(BufPtr, EndBufPtr);
497 BitstreamCursor Stream(StreamFile);
Chris Lattner0370cc62009-04-27 20:04:08 +0000498 StreamFile.CollectBlockInfoNames();
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000499
Chris Lattner45e0f892007-04-29 08:12:22 +0000500 // Read the stream signature.
501 char Signature[6];
502 Signature[0] = Stream.Read(8);
503 Signature[1] = Stream.Read(8);
504 Signature[2] = Stream.Read(4);
505 Signature[3] = Stream.Read(4);
506 Signature[4] = Stream.Read(4);
507 Signature[5] = Stream.Read(4);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000508
Chris Lattner32de6332007-04-29 08:31:14 +0000509 // Autodetect the file contents, if it is one we know.
Chris Lattner45e0f892007-04-29 08:12:22 +0000510 CurStreamType = UnknownBitstream;
511 if (Signature[0] == 'B' && Signature[1] == 'C' &&
512 Signature[2] == 0x0 && Signature[3] == 0xC &&
513 Signature[4] == 0xE && Signature[5] == 0xD)
514 CurStreamType = LLVMIRBitstream;
515
Chris Lattner4238d472007-04-29 20:00:02 +0000516 unsigned NumTopBlocks = 0;
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000517
Chris Lattner32de6332007-04-29 08:31:14 +0000518 // Parse the top-level structure. We only allow blocks at the top-level.
519 while (!Stream.AtEndOfStream()) {
520 unsigned Code = Stream.ReadCode();
521 if (Code != bitc::ENTER_SUBBLOCK)
522 return Error("Invalid record at top-level");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000523
Chris Lattnerb30c9252007-04-29 21:48:19 +0000524 if (ParseBlock(Stream, 0))
Chris Lattner32de6332007-04-29 08:31:14 +0000525 return true;
Chris Lattner4238d472007-04-29 20:00:02 +0000526 ++NumTopBlocks;
Chris Lattner32de6332007-04-29 08:31:14 +0000527 }
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000528
Dan Gohman65f57c22009-07-15 16:35:29 +0000529 if (Dump) errs() << "\n\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000530
Chris Lattnere2a466b2009-04-06 20:54:32 +0000531 uint64_t BufferSizeBits = (EndBufPtr-BufPtr)*CHAR_BIT;
Chris Lattner32de6332007-04-29 08:31:14 +0000532 // Print a summary of the read file.
Dan Gohman65f57c22009-07-15 16:35:29 +0000533 errs() << "Summary of " << InputFilename << ":\n";
534 errs() << " Total size: ";
Chris Lattner8f926682007-05-01 02:43:46 +0000535 PrintSize(BufferSizeBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000536 errs() << "\n";
537 errs() << " Stream type: ";
Chris Lattner45e0f892007-04-29 08:12:22 +0000538 switch (CurStreamType) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000539 case UnknownBitstream: errs() << "unknown\n"; break;
540 case LLVMIRBitstream: errs() << "LLVM IR\n"; break;
Chris Lattner45e0f892007-04-29 08:12:22 +0000541 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000542 errs() << " # Toplevel Blocks: " << NumTopBlocks << "\n";
543 errs() << "\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000544
545 // Emit per-block stats.
Dan Gohman65f57c22009-07-15 16:35:29 +0000546 errs() << "Per-block Summary:\n";
Chris Lattner4238d472007-04-29 20:00:02 +0000547 for (std::map<unsigned, PerBlockIDStats>::iterator I = BlockIDStats.begin(),
548 E = BlockIDStats.end(); I != E; ++I) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000549 errs() << " Block ID #" << I->first;
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000550 if (const char *BlockName = GetBlockName(I->first, StreamFile))
Dan Gohman65f57c22009-07-15 16:35:29 +0000551 errs() << " (" << BlockName << ")";
552 errs() << ":\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000553
Chris Lattner4238d472007-04-29 20:00:02 +0000554 const PerBlockIDStats &Stats = I->second;
Dan Gohman65f57c22009-07-15 16:35:29 +0000555 errs() << " Num Instances: " << Stats.NumInstances << "\n";
556 errs() << " Total Size: ";
Chris Lattner4238d472007-04-29 20:00:02 +0000557 PrintSize(Stats.NumBits);
Dan Gohman65f57c22009-07-15 16:35:29 +0000558 errs() << "\n";
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000559 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
560 errs() << " Percent of file: " << format("%2.4f%%", pct) << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000561 if (Stats.NumInstances > 1) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000562 errs() << " Average Size: ";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000563 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
Dan Gohman65f57c22009-07-15 16:35:29 +0000564 errs() << "\n";
565 errs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
566 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n";
567 errs() << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/"
568 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n";
569 errs() << " Tot/Avg Records: " << Stats.NumRecords << "/"
570 << Stats.NumRecords/(double)Stats.NumInstances << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000571 } else {
Dan Gohman65f57c22009-07-15 16:35:29 +0000572 errs() << " Num SubBlocks: " << Stats.NumSubBlocks << "\n";
573 errs() << " Num Abbrevs: " << Stats.NumAbbrevs << "\n";
574 errs() << " Num Records: " << Stats.NumRecords << "\n";
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000575 }
Daniel Dunbar42985bb2009-09-25 16:04:21 +0000576 if (Stats.NumRecords) {
577 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords;
578 errs() << " Percent Abbrevs: " << format("%2.4f%%", pct) << "\n";
579 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000580 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000581
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000582 // Print a histogram of the codes we see.
583 if (!NoHistogram && !Stats.CodeFreq.empty()) {
584 std::vector<std::pair<unsigned, unsigned> > FreqPairs; // <freq,code>
585 for (unsigned i = 0, e = Stats.CodeFreq.size(); i != e; ++i)
Chris Lattner24437472009-04-27 17:59:34 +0000586 if (unsigned Freq = Stats.CodeFreq[i].NumInstances)
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000587 FreqPairs.push_back(std::make_pair(Freq, i));
588 std::stable_sort(FreqPairs.begin(), FreqPairs.end());
589 std::reverse(FreqPairs.begin(), FreqPairs.end());
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000590
Dan Gohman65f57c22009-07-15 16:35:29 +0000591 errs() << "\tRecord Histogram:\n";
Chris Lattnerc167cac2009-04-27 18:15:27 +0000592 fprintf(stderr, "\t\t Count # Bits %% Abv Record Kind\n");
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000593 for (unsigned i = 0, e = FreqPairs.size(); i != e; ++i) {
Chris Lattnerc167cac2009-04-27 18:15:27 +0000594 const PerRecordStats &RecStats = Stats.CodeFreq[FreqPairs[i].second];
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000595
NAKAMURA Takumi3bc729c2011-03-18 03:21:04 +0000596 fprintf(stderr, "\t\t%7d %9lu ", RecStats.NumInstances,
597 (unsigned long)RecStats.TotalBits);
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000598
Chris Lattnerc167cac2009-04-27 18:15:27 +0000599 if (RecStats.NumAbbrev)
600 fprintf(stderr, "%7.2f ",
601 (double)RecStats.NumAbbrev/RecStats.NumInstances*100);
602 else
603 fprintf(stderr, " ");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000604
605 if (const char *CodeName =
Chris Lattnerf9a3ec82009-04-26 22:21:57 +0000606 GetCodeName(FreqPairs[i].second, I->first, StreamFile))
Chris Lattner24437472009-04-27 17:59:34 +0000607 fprintf(stderr, "%s\n", CodeName);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000608 else
Chris Lattner24437472009-04-27 17:59:34 +0000609 fprintf(stderr, "UnknownCode%d\n", FreqPairs[i].second);
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000610 }
Dan Gohman65f57c22009-07-15 16:35:29 +0000611 errs() << "\n";
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000612
Chris Lattnerb1e85b52007-05-05 01:46:49 +0000613 }
Chris Lattner4238d472007-04-29 20:00:02 +0000614 }
Chris Lattner45e0f892007-04-29 08:12:22 +0000615 return 0;
616}
Reid Spencerdac69c82004-06-07 17:53:43 +0000617
Chris Lattner32de6332007-04-29 08:31:14 +0000618
Chris Lattnerc30598b2006-12-06 01:18:01 +0000619int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +0000620 // Print a stack trace if we signal out.
Chris Lattner45e0f892007-04-29 08:12:22 +0000621 sys::PrintStackTraceOnErrorSignal();
Chris Lattnercc14d252009-03-06 05:34:10 +0000622 PrettyStackTraceProgram X(argc, argv);
623 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
624 cl::ParseCommandLineOptions(argc, argv, "llvm-bcanalyzer file analyzer\n");
Daniel Dunbar80ba3d22009-09-25 16:03:57 +0000625
Chris Lattner44dadff2007-05-06 09:29:57 +0000626 return AnalyzeBitcode();
Reid Spencerdac69c82004-06-07 17:53:43 +0000627}