summaryrefslogtreecommitdiff
path: root/docs/CommandGuide
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-11 07:16:54 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-11 07:16:54 +0000
commit3680e848771320b6bf8a6410d3eb223aba1d6c51 (patch)
treea554edb402ec419530ddffe731fe3adf38875943 /docs/CommandGuide
parent74d74cdbdc1b3cd5b501fb8675c84dc2f0630449 (diff)
downloadllvm-3680e848771320b6bf8a6410d3eb223aba1d6c51.tar.gz
llvm-3680e848771320b6bf8a6410d3eb223aba1d6c51.tar.bz2
llvm-3680e848771320b6bf8a6410d3eb223aba1d6c51.tar.xz
A little cleanup on this file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18798 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r--docs/CommandGuide/llvm-bcanalyzer.pod20
1 files changed, 9 insertions, 11 deletions
diff --git a/docs/CommandGuide/llvm-bcanalyzer.pod b/docs/CommandGuide/llvm-bcanalyzer.pod
index 5066ea6a6a..e7227e1954 100644
--- a/docs/CommandGuide/llvm-bcanalyzer.pod
+++ b/docs/CommandGuide/llvm-bcanalyzer.pod
@@ -6,26 +6,24 @@ llvm-bcanalyzer - LLVM bytecode analyzer
=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 @@ level summary. The details for individual functions are not displayed.
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 @@ The size, in bytes, of all the compaction tables in all the functions.
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 @@ computed by dividing Byte Size by Instructions. Note that this is not the same
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