diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-06 20:29:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-06 20:29:33 +0000 |
commit | dc79f6c77618ecd5183ee49c481e7b49d85a899f (patch) | |
tree | 67c7517b2a665c99fcd6df412fa3eece21a7eeaa /llvm/docs/CommandGuide/llvm-prof.html | |
parent | 7985d3664d6abf3096eba62f74f2e7f59b458a51 (diff) | |
download | bcm5719-llvm-dc79f6c77618ecd5183ee49c481e7b49d85a899f.tar.gz bcm5719-llvm-dc79f6c77618ecd5183ee49c481e7b49d85a899f.zip |
Add new commandline option
llvm-svn: 9755
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-prof.html')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-prof.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/llvm-prof.html b/llvm/docs/CommandGuide/llvm-prof.html index 6e3cd7542ba..597d38e8e4b 100644 --- a/llvm/docs/CommandGuide/llvm-prof.html +++ b/llvm/docs/CommandGuide/llvm-prof.html @@ -26,13 +26,19 @@ then runs <tt>llvm-prof</tt> to format a report. To get more information about <h3>OPTIONS</h3> <ul> - <li><tt>-annotated-llvm</tt> or <tt>-A</tt><br> + <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 we 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> </ul> <h3>EXIT STATUS</h3> |