[llvm] r325817 - [libFuzzer] Include TEMP_MAX_LEN in Fuzzer::PrintStats.
Matt Morehouse via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 22 11:00:17 PST 2018
Author: morehouse
Date: Thu Feb 22 11:00:17 2018
New Revision: 325817
URL: http://llvm.org/viewvc/llvm-project?rev=325817&view=rev
Log:
[libFuzzer] Include TEMP_MAX_LEN in Fuzzer::PrintStats.
Reviewers: kcc
Reviewed By: kcc
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D43597
Modified:
llvm/trunk/docs/LibFuzzer.rst
Modified: llvm/trunk/docs/LibFuzzer.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LibFuzzer.rst?rev=325817&r1=325816&r2=325817&view=diff
==============================================================================
--- llvm/trunk/docs/LibFuzzer.rst (original)
+++ llvm/trunk/docs/LibFuzzer.rst Thu Feb 22 11:00:17 2018
@@ -369,14 +369,16 @@ possible event codes are:
Each output line also reports the following statistics (when non-zero):
``cov:``
- Total number of code blocks or edges covered by the executing the current
- corpus.
+ Total number of code blocks or edges covered by executing the current corpus.
``ft:``
libFuzzer uses different signals to evaluate the code coverage:
edge coverage, edge counters, value profiles, indirect caller/callee pairs, etc.
These signals combined are called *features* (`ft:`).
``corp:``
Number of entries in the current in-memory test corpus and its size in bytes.
+``lim:``
+ Current limit on the length of new entries in the corpus. Increases over time
+ until the max length (``-max_len``) is reached.
``exec/s:``
Number of fuzzer iterations per second.
``rss:``
More information about the llvm-commits
mailing list