summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/FuzzerLoop.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* [libFuzzer] remove dfsan support and some related stale code. This is not bei...Kostya Serebryany2016-10-041-1/+0
* [libFuzzer] implement the -shrink=1 option that tires to make elements of the...Kostya Serebryany2016-10-011-9/+27
* [libFuzzer] remove some experimental codeKostya Serebryany2016-09-301-20/+11
* [libFuzzer] remove unused optionKostya Serebryany2016-09-301-2/+1
* [libFuzzer] remove the code for -print_pcs=1 with the old coverage. It still ...Kostya Serebryany2016-09-301-37/+2
* [libFuzzer] more the feature set to InputCorpus; on feature update, change th...Kostya Serebryany2016-09-301-3/+1
* [sanitizer-coverage/libFuzzer] make the guards for trace-pc 32-bit; create on...Kostya Serebryany2016-09-291-1/+2
* [libFuzzer] add -exit_on_src_pos to test libFuzzer itself, add a test script ...Kostya Serebryany2016-09-271-0/+17
* [libFuzzer] simplify HandleTrace again, start re-running interesting units an...Kostya Serebryany2016-09-231-3/+16
* [libFuzzer] be more precise about what we reset in TracePCKostya Serebryany2016-09-231-3/+5
* [libFuzzer] fix merging with trace-pc-guardKostya Serebryany2016-09-231-13/+12
* [libFuzzer] simplify the TracePC logicKostya Serebryany2016-09-231-2/+4
* [libFuzzer] move value profiling logic into TracePCKostya Serebryany2016-09-231-1/+2
* [libFuzzer] change ValueBitMap to remember the number of bits in itKostya Serebryany2016-09-231-10/+11
* [libFuzzer] simplify the crash minimizer; split MaxLen into two: MaxInputLen ...Kostya Serebryany2016-09-221-18/+25
* [libFuzzer] add 'features' to the corpus elements, allow mutations with Size ...Kostya Serebryany2016-09-221-15/+22
* [libFuzzer] add stats to the corpus; more refactoringKostya Serebryany2016-09-211-23/+17
* [libFuzzer] more refactoring; don't compute sha1sum every time we mutate a un...Kostya Serebryany2016-09-211-27/+4
* [libFuzzer] refactoring: split the large header into many; NFCKostya Serebryany2016-09-211-0/+4
* [libFuzzer] refactoring: move the Corpus into a separate class; delete two un...Kostya Serebryany2016-09-211-113/+21
* [libFuzzer] add -print_coverage=1 flag to print coverage directly from libFuz...Kostya Serebryany2016-09-181-9/+4
* [libFuzzer] change trace-pc to use 8-byte guardsKostya Serebryany2016-09-171-0/+3
* [libFuzzer] implement print_pcs with trace-pc-guard. Change the trace-pc-guar...Kostya Serebryany2016-09-151-10/+20
* [libFuzzer] add 8-bit counters to trace-pc-guard handlerKostya Serebryany2016-09-151-1/+6
* [libFuzzer] start using trace-pc-guard as an alternative source of coverageKostya Serebryany2016-09-141-12/+4
* [libFuzzer] print a failed-merge warning only in the merge modeKostya Serebryany2016-09-101-0/+1
* [libFuzzer] print a visible message if merge fails due to a crash Kostya Serebryany2016-09-101-0/+16
* [libFuzzer] improve -print_pcs to not print new PCs coming from libFuzzer itselfKostya Serebryany2016-09-091-5/+17
* [libFuzzer] remove unneeded callKostya Serebryany2016-09-091-8/+0
* [libfuzzer] simplified unit truncation; do not write trunc items to discMike Aizatsky2016-08-301-29/+11
* [libFizzer] rename -print_new_cov_pcs=1 into -print_pcs=1 and make it more us...Kostya Serebryany2016-08-251-7/+17
* [libFuzzer] simplify the code, NFCKostya Serebryany2016-08-251-87/+72
* [libFuzzer] when printing the reproducer input, also print the base input and...Kostya Serebryany2016-08-171-0/+3
* [libFuzzer] new experimental feature: value profiling. Profiles values that a...Kostya Serebryany2016-08-161-2/+11
* [libFuzzer] refactoring around PCMap, NFCKostya Serebryany2016-08-161-8/+7
* [libFuzzer] make libFuzzer work with a bit older clang versionsKostya Serebryany2016-08-061-8/+10
* [libFuzzer] don't print bogus error messageKostya Serebryany2016-08-061-2/+3
* [sanitizers] trace buffer API to use user-allocated buffer.Mike Aizatsky2016-08-051-23/+44
* [libfuzzer] moving is_ascii handler inside mutation dispatcher.Mike Aizatsky2016-06-231-7/+3
* [libFuzzer] use the new chainable malloc hooks instead of the old un-chainabl...Kostya Serebryany2016-06-161-32/+24
* [libFuzzer] add 'weak' back to __sanitizer_malloc_hook and __sanitizer_free_hookKostya Serebryany2016-06-081-0/+2
* [libFuzzer] add a test that is built w/o coverage instrumentation but has the...Kostya Serebryany2016-06-081-0/+5
* [LibFuzzer] Declare and use sanitizer functions in ``fuzzer::ExternalFunctions``Dan Liew2016-06-071-50/+28
* [libfuzzer] prune_corpus option for disabling pruning during the load.Mike Aizatsky2016-06-071-1/+2
* [libfuzzer] hiding custom mutator handling in MutationDispatcher.Mike Aizatsky2016-06-031-6/+2
* [LibFuzzer] Reimplement how the optional user functions are called.Dan Liew2016-06-021-6/+3
* [libFuzzer] use __sanitizer_print_memory_profile to print the memory profile ...Kostya Serebryany2016-06-021-1/+4
* [libFuzzer] fix a use-after-free (!) in libFuzzer caused by r270905: that CL ...Kostya Serebryany2016-05-291-1/+1
* [libFuzzer] fix a failure that occurs when running individual inputsKostya Serebryany2016-05-281-0/+1
* [libFuzzer] make OOM-handling more portable. Instead of sending a signal to t...Kostya Serebryany2016-05-271-43/+19
OpenPOWER on IntegriCloud