From b8a340a3bf4f0f8fd0fd66fbed7d38e0ee638ab4 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Thu, 1 Jul 2004 20:07:15 +0000 Subject: abcd pod document llvm-svn: 14543 --- llvm/docs/CommandGuide/llvm-abcd.pod | 63 ++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 llvm/docs/CommandGuide/llvm-abcd.pod (limited to 'llvm/docs/CommandGuide') diff --git a/llvm/docs/CommandGuide/llvm-abcd.pod b/llvm/docs/CommandGuide/llvm-abcd.pod new file mode 100644 index 00000000000..c3d9a909336 --- /dev/null +++ b/llvm/docs/CommandGuide/llvm-abcd.pod @@ -0,0 +1,63 @@ +=pod + +=head1 NAME + +llvm-abcd - bytecode file low-level dumper + +=head1 SYNOPSIS + +llvm-abcd [options] [filename] + +=head1 DESCRIPTION + +The B command is a small utility for analyzing bytecode files. The +B acronym stands for Bnalysis of ByteBode Bisplayer. The tool +reads a bytecode file (such as generated with the B tool) and produces +statistical and low level bytecode format dumps. This tool is probably not of +much interest or utility except for those working directly with the bytecode +format. Most LLVM users can just ignore this tool. + +If filename is omitted or is I<->, then B reads its input from +standard input. This is useful for combining B in a pipeline. + +=head1 OPTIONS + +=over + +=item B<--nodetails> + +Causes B to abbreviate its output by writing out only a module level +summary. The details for individual functions are not displayed. + +=item B<--dump> + +Causes B 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. + +=item B<--verify> + +Causes B to verify the module produced by by reading the bytecode. +This ensures that the statistics generated are reliable. + +=item B<--help> + +Print a summary of command line options. + +=back + +=head1 EXIT STATUS + +If B succeeds, it will exit with zero exit status. Otherwise, if an +error occurs, it will exit with a non-zero exit status, usually 1. + +=head1 SEE ALSO + +L, L + +=head1 AUTHOR + +Maintained by L. + +=cut + -- cgit v1.2.3