summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/FuzzerLoop.cpp
Commit message (Expand)AuthorAgeFilesLines
* [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
* [libFuzzer] more refactoring: make sure CurrentUnitData is awlays a valid poi...Kostya Serebryany2016-05-271-12/+20
* [libFuzzer] more refactoring around CurrentUnit. Also add a threading test on...Kostya Serebryany2016-05-261-18/+34
* [libFuzzer] refactor: hide CurrentUnitData inside an interface function. NFCKostya Serebryany2016-05-261-0/+3
* [libFuzzer] when there is a leak in the existing corpus report the reproducer...Kostya Serebryany2016-05-261-20/+9
* [libFuzzer] reimplement the way we do -only_ascii to allow more 'const' in fu...Kostya Serebryany2016-05-261-5/+6
* [libFuzzer] print stats if we crash on empty inputKostya Serebryany2016-05-251-3/+4
* [libfuzzer] Trying random unit prefixes during corpus load.Mike Aizatsky2016-05-241-0/+43
* [LibFuzzer]Dan Liew2016-05-191-2/+12
OpenPOWER on IntegriCloud