diff options
author | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2018-04-11 12:12:53 +0000 |
---|---|---|
committer | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2018-04-11 12:12:53 +0000 |
commit | f41ad5c59efd7a11d78b9742228dcf858bd33d84 (patch) | |
tree | 9f4dfcdc009eb0a9551d1999eb5f0b311faf1546 /llvm/docs/CommandGuide/llvm-mca.rst | |
parent | 1cc29c045e07dd2f9adda3a5569df6e249613135 (diff) | |
download | bcm5719-llvm-f41ad5c59efd7a11d78b9742228dcf858bd33d84.tar.gz bcm5719-llvm-f41ad5c59efd7a11d78b9742228dcf858bd33d84.zip |
[llvm-mca] Renamed BackendStatistics to RetireControlUnitStatistics.
Also, removed flag -verbose in favor of flag -retire-stats.
llvm-svn: 329794
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-mca.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-mca.rst | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/llvm/docs/CommandGuide/llvm-mca.rst b/llvm/docs/CommandGuide/llvm-mca.rst index 3d69e6d40a2..1aafd3b3806 100644 --- a/llvm/docs/CommandGuide/llvm-mca.rst +++ b/llvm/docs/CommandGuide/llvm-mca.rst @@ -52,7 +52,7 @@ assembly text: __asm volatile("# LLVM-MCA-BEGIN foo"); a += 42; __asm volatile("# LLVM-MCA-END"); - a *= b; + a \*= b; return a; } @@ -136,11 +136,6 @@ option specifies "``-``", then the output will also be sent to standard output. queue. A value of zero for this flag is ignored, and the default store queue size is used instead. -.. option:: -verbose - - Enable verbose output. In particular, this flag enables a number of extra - statistics and performance counters for the retire control unit. - .. option:: -timeline Enable the timeline view. @@ -174,6 +169,10 @@ option specifies "``-``", then the output will also be sent to standard output. Enable extra scheduler statistics. This view collects and analyzes instruction issue events. This view is disabled by default. +.. option:: -retire-stats + + Enable extra retire control unit statistics. This view is disabled by default. + .. option:: -instruction-info Enable the instruction info view. This is enabled by default. |