diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-02 15:48:33 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-02 15:48:33 +0000 |
commit | 763855342b6b9ccd9f2399e85d8651ac5ecd911c (patch) | |
tree | 4a937e674ea0c4bf675b77544edc85d631aafa29 /llvm/docs/CommandGuide/llvm-prof.html | |
parent | cbbf9a1f8f42512dcbe3986caeec1caed038a7f0 (diff) | |
download | bcm5719-llvm-763855342b6b9ccd9f2399e85d8651ac5ecd911c.tar.gz bcm5719-llvm-763855342b6b9ccd9f2399e85d8651ac5ecd911c.zip |
The HTML documentation is now automatically generated from POD source.
llvm-svn: 14578
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-prof.html')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-prof.html | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/llvm/docs/CommandGuide/llvm-prof.html b/llvm/docs/CommandGuide/llvm-prof.html deleted file mode 100644 index ceba6527cf4..00000000000 --- a/llvm/docs/CommandGuide/llvm-prof.html +++ /dev/null @@ -1,58 +0,0 @@ -<html> -<title>LLVM: llvm-prof tool</title> - -<body bgcolor=white> - -<center><h1>LLVM: <tt>llvm-prof</tt> tool</h1></center> -<HR> - -<h3>NAME</h3> -<tt>llvm-prof</tt> - -<h3>SYNOPSIS</h3> -<tt>llvm-prof [options] [bytecode file] [llvmprof.out]</tt> - -<h3>DESCRIPTION</h3> - -The <tt>llvm-prof</tt> tool reads in an '<tt>llvmprof.out</tt>' file (which can -optionally use a specific file with the third program argument), a bytecode file -for the program, and produces a human readable report, suitable for determining -where the program hotspots are.<p> - -This program is often used in conjunction with the <tt>utils/profile.pl</tt> -script. This script automatically instruments a program, runs it with the JIT, -then runs <tt>llvm-prof</tt> to format a report. To get more information about -<tt>utils/profile.pl</tt>, execute it with the <tt>--help</tt> option.<p> - -<h3>OPTIONS</h3> - -<ul> - <li><tt>--annotated-llvm</tt> or <tt>-A</tt><br> - - In addition to the normal report printed, print out the code for the - program, annotated with execution frequency information. This can be - particularly useful when trying to visualize how frequently basic blocks - are executed. This is most useful with basic block profiling - information or better.<p> - - <li><tt>--print-all-code</tt><br> - - Using this option enables the <tt>--annotated-llvm</tt> option, but it - prints the entire module, instead of just the most commonly executed - functions.<p> - - <li><tt>-time-passes</tt><br> - - Record the amount of time needed for each pass and print it to standard - error. -</ul> - -<h3>EXIT STATUS</h3> - -<tt>llvm-prof</tt> returns 1 if it cannot load the bytecode file or the profile -information. Otherwise, it exits with zero. - -<HR> -Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>. -</body> -</html> |