[llvm-commits] CVS: llvm/docs/CommandGuide/llvm-bcanalyzer.pod

Reid Spencer reid at x10sys.com
Fri Dec 10 23:17:05 PST 2004



Changes in directory llvm/docs/CommandGuide:

llvm-bcanalyzer.pod updated: 1.5 -> 1.6
---
Log message:

A little cleanup on this file.


---
Diffs of the changes:  (+9 -11)

Index: llvm/docs/CommandGuide/llvm-bcanalyzer.pod
diff -u llvm/docs/CommandGuide/llvm-bcanalyzer.pod:1.5 llvm/docs/CommandGuide/llvm-bcanalyzer.pod:1.6
--- llvm/docs/CommandGuide/llvm-bcanalyzer.pod:1.5	Mon Nov 15 14:25:08 2004
+++ llvm/docs/CommandGuide/llvm-bcanalyzer.pod	Sat Dec 11 01:16:54 2004
@@ -6,26 +6,24 @@
 
 =head1 SYNOPSIS
 
-B<llvm-bcanalyzer> [I<options>] [I<filename>]
+B<llvm-bcanalyzer> [I<options>] [F<filename>]
 
 =head1 DESCRIPTION
 
 The B<llvm-bcanalyzer> command is a small utility for analyzing bytecode files.
 The tool reads a bytecode file (such as generated with the B<llvm-as> tool) and
 produces a statistical report on the contents of the byteocde file.  The tool
-will also dump a low level but human readable version of the bytecode file. 
+can also dump a low level but human readable version of the bytecode file. 
 This tool is probably not of much interest or utility except for those working 
 directly with the bytecode file format. Most LLVM users can just ignore
 this tool.
 
 If F<filename> is omitted or is C<->, then B<llvm-bcanalyzer> reads its input 
 from standard input. This is useful for combining the tool into a pipeline.
-
 Output is written to the standard output.
 
 =head1 OPTIONS
 
-
 =over
 
 =item B<-nodetails>
@@ -37,11 +35,11 @@
 
 Causes B<llvm-bcanalyzer> to dump the bytecode in a human readable format. This 
 format is significantly different from LLVM assembly and provides details about 
-the encoding of the bytecode file. 
+the encoding of the bytecode file.
 
 =item B<-verify>
 
-Causes B<llvm-bcanalyzer> to verify the module produced by by reading the 
+Causes B<llvm-bcanalyzer> to verify the module produced by reading the 
 bytecode. This ensures that the statistics generated are based on a consistent
 module.
 
@@ -112,7 +110,7 @@
 Percentage is relative to File Size. Note that this value is also included in
 the Function Bytes.
 
-=item B<Compaction Table Bytes>
+=item B<Symbol Table Bytes>
 
 The size, in bytes, of all the symbol tables in all the functions. Percentage is
 relative to File Size. Note that this value is also included in the Function
@@ -280,20 +278,20 @@
 as Average Instruction Size. It computes a number relative to the total function
 size not just the size of the instruction list.
 
-=item B<# of VBR 32-bit Integers>
+=item B<Number of VBR 32-bit Integers>
 
 The total number of 32-bit integers found in this function (for any use).
 
-=item B<# of VBR 64-bit Integers>
+=item B<Number of VBR 64-bit Integers>
 
 The total number of 64-bit integers found in this function (for any use).
 
-=item B<# of VBR Compressed Bytes>
+=item B<Number of VBR Compressed Bytes>
 
 The total number of bytes in this function consumed by the 32-bit and 64-bit 
 integers that use the Variable Bit Rate encoding scheme.
 
-=item B<# of VBR Expanded Bytes>
+=item B<Number of VBR Expanded Bytes>
 
 The total number of bytes in this function that would have been consumed by 
 the 32-bit and 64-bit integers had they not been compressed with the Variable 






More information about the llvm-commits mailing list