diff options
author | Ellis Hoag <ellis.sparky.hoag@gmail.com> | 2022-10-06 15:17:30 -0700 |
---|---|---|
committer | Ellis Hoag <ellis.sparky.hoag@gmail.com> | 2022-10-06 15:20:03 -0700 |
commit | e09c958dcccf7b62824c03e155e53f07783ace06 (patch) | |
tree | bbcf0c5ef43ca60f5094cc1bf24ebcfd8861f8dd /llvm/docs/CommandGuide/llvm-profdata.rst | |
parent | f2a99746666ec796b4bf10261727f6d96428ab66 (diff) | |
download | llvm-e09c958dcccf7b62824c03e155e53f07783ace06.zip llvm-e09c958dcccf7b62824c03e155e53f07783ace06.tar.gz llvm-e09c958dcccf7b62824c03e155e53f07783ace06.tar.bz2 |
[llvm-profdata] Add some missing options to docs
I forgot to add documentation for these options when I added them to the `show` command, so add them now.
Reviewed By: phosek
Differential Revision: https://reviews.llvm.org/D135383
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-profdata.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-profdata.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/llvm-profdata.rst b/llvm/docs/CommandGuide/llvm-profdata.rst index e99593e5..e3850c6 100644 --- a/llvm/docs/CommandGuide/llvm-profdata.rst +++ b/llvm/docs/CommandGuide/llvm-profdata.rst @@ -320,6 +320,17 @@ OPTIONS Show basic information about each section in the profile. This option is only meaningful for sample-based profile in extbinary format. +.. option:: --debug-info=<path> + + Specify the executable or ``.dSYM`` that contains debug info for the raw profile. + When ``-debug-info-correlate`` was used for instrumentation, use this option + to show the correlated functions from the raw profile. + +.. option:: --covered + + Show only the functions that have been executed, i.e., functions with non-zero + counts. + .. program:: llvm-profdata overlap .. _profdata-overlap: |