summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/FuzzerLoop.cpp
Commit message (Expand)AuthorAgeFilesLines
* [libFuzzer] remove a bit of stale codeKostya Serebryany2017-01-261-4/+0
* [libFuzzer] AlrmHandler is executed in a different thread for Windows.Marcos Pividori2017-01-221-0/+3
* [libFuzzer] experimental support for 'equivalance fuzzing'Kostya Serebryany2017-01-201-1/+32
* [libFuzzer] improve -minimize_crash: honor -artifact_prefix= and don't specia...Kostya Serebryany2017-01-191-1/+1
* [libFuzzer] add two tests for experimenting with equivalence fuzzingKostya Serebryany2017-01-191-0/+3
* [libFuzzer] improve error handling during the merge (handle various IO failures)Kostya Serebryany2017-01-051-0/+5
* [libFuzzer] cleaner implementation of -print_pcs=1Kostya Serebryany2016-12-301-0/+1
* [libFuzzer] add an experimental flag -experimental_len_control=1 that sets ma...Kostya Serebryany2016-12-271-2/+21
* [libfuzzer] dump_coverage command line flagMike Aizatsky2016-12-191-0/+2
* Revert "[libFuzzer] add an experimental flag -experimental_len_control=1 that...Daniel Jasper2016-12-171-21/+2
* [libFuzzer] avoid msan false positives in more casesKostya Serebryany2016-12-161-0/+3
* [libFuzzer] add an experimental flag -experimental_len_control=1 that sets ma...Kostya Serebryany2016-12-161-2/+21
* [libFuzzer] Fix bug in detecting timeouts when input string is empty.Marcos Pividori2016-12-131-1/+3
* [libFuzzer] Clean up headers and file formatting of LibFuzzer files.Marcos Pividori2016-12-131-1/+0
* [libFuzzer] Properly use unsigned for Process ID.Marcos Pividori2016-12-131-4/+4
* [libFuzzer] respect -max_len during mergeKostya Serebryany2016-12-121-1/+2
* [libFuzzer] refactor the code to allow collecting features in different ways....Kostya Serebryany2016-12-051-1/+5
* [libFuzzer] treat -rss_limit_mb=0 as no limitKostya Serebryany2016-12-011-1/+1
* [libFuzzer] extend -rss_limit_mb to crash instantly on a single malloc that e...Kostya Serebryany2016-11-301-0/+16
* [LibFuzzer] Split up some functions among different headers.Zachary Turner2016-11-301-3/+4
* [libFuzzer] simplify TracePC::HandleTrace even further. Also, when dealing wi...Kostya Serebryany2016-10-261-6/+3
* [libFuzzer] simplify the code in TracePC::HandleTrace a bit moreKostya Serebryany2016-10-261-9/+8
* [libFuzzer] simplify the code to print new PCsKostya Serebryany2016-10-261-14/+2
* [libFuzzer] simplify the code in TracePC::HandleTraceKostya Serebryany2016-10-251-1/+0
* [libFuzzer] simplify the code for use_cmp, also use the position hint when av...Kostya Serebryany2016-10-251-5/+0
* Fix -Wunused-variable warning in libFuzzerReid Kleckner2016-10-211-1/+1
* [libFuzzer] reshuffle the code for -exit_on_src_pos and -exit_on_itemKostya Serebryany2016-10-181-13/+11
* [libFuzzer] better algorithm for -minimize_crashKostya Serebryany2016-10-151-4/+16
* [libFuzzer] add -trace_cmp=1 (guiding mutations based on the observed CMP ins...Kostya Serebryany2016-10-141-2/+14
* [libFuzzer] more detailed message for disabled leak detectionKostya Serebryany2016-10-131-2/+4
* [libFuzzer] add -trace_malloc= flagKostya Serebryany2016-10-131-5/+28
* [libFuzzer] when shrinking the corpus, delete evicted files previously create...Kostya Serebryany2016-10-081-6/+7
* [libFuzzer] control the reload interval by a flag, make it 10 seconds by defaultKostya Serebryany2016-10-081-4/+8
* [libFuzzer] be more careful with memory usage, print peak rss in status linesKostya Serebryany2016-10-061-1/+2
* [libFuzzer] when re-running for lsan, don't look at the coverageKostya Serebryany2016-10-051-1/+1
* [libFuzzer] refactoring to make -shrink=1 work for value profile, added a test.Kostya Serebryany2016-10-051-34/+21
* [libFuzzer] clear the corpus elements if they are evicted (i.e. smaller eleme...Kostya Serebryany2016-10-051-2/+16
* [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
OpenPOWER on IntegriCloud