From 926b9bdffcc14a0e7225e9feb6da8918c0bf3ec5 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Fri, 22 May 2015 22:43:05 +0000 Subject: [PATCH] [lib/Fuzzer] mention the user-supplied mutators llvm-svn: 238062 --- llvm/docs/LibFuzzer.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/llvm/docs/LibFuzzer.rst b/llvm/docs/LibFuzzer.rst index 831b74fcdee1..cfd4c7664d0a 100644 --- a/llvm/docs/LibFuzzer.rst +++ b/llvm/docs/LibFuzzer.rst @@ -299,6 +299,12 @@ and dump covered PCs to disk before exiting. Then you can subtract the set of covered PCs from the set of all instrumented PCs in the binary, see SanitizerCoverage_ for details. +User-supplied mutators +---------------------- + +LibFuzzer allows to use custom (user-supplied) mutators, +see FuzzerInterface.h_ + Fuzzing components of LLVM ========================== @@ -408,3 +414,5 @@ Examples: regular expression matchers, text or binary format parsers. .. _SanitizerCoverage: http://clang.llvm.org/docs/SanitizerCoverage.html .. _Heartbleed: http://en.wikipedia.org/wiki/Heartbleed + +.. _FuzzerInterface.h: https://github.com/llvm-mirror/llvm/blob/master/lib/Fuzzer/FuzzerInterface.h