aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Fuzzer/FuzzerLoop.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-03-01[libFuzzer] deprecate exit_on_first flagKostya Serebryany1-2/+0
2016-03-01[libFuzzer] add generic signal handlers so that libFuzzer can report at least...Kostya Serebryany1-12/+38
2016-02-26[libFuzzer] add -print_final_stats=1 flagKostya Serebryany1-3/+14
2016-02-26[libFuzzer] initial implementation of path coverage based on -fsanitize-cover...Kostya Serebryany1-0/+8
2016-02-18[libFuzzer] only read MaxLen bytes from every file in the corpus to speedup l...Kostya Serebryany1-3/+3
2016-02-17[libFuzzer] don't timeout when loading the corpus. Be a bit more verbose when...Kostya Serebryany1-0/+2
2016-02-13[libFuzzer] remove std::vector operations from hot paths, NFCKostya Serebryany1-23/+24
2016-02-13[libFuzzer] don't require seed in fuzzer::Mutate, instead use the global Fuzz...Kostya Serebryany1-0/+5
2016-02-13[libFuzzer] get rid of UserSuppliedFuzzer; NFCKostya Serebryany1-13/+14
2016-02-13[libFuzzer] provide a plain C interface for custom mutators (experimental)Kostya Serebryany1-1/+10
2016-02-04[libFuzzer] don't write the test unit when a leak is detected (since we don't...Kostya Serebryany1-0/+1
2016-01-29[libFuzzer] add -timeout_exitcode optionKostya Serebryany1-1/+1
2016-01-23[libFuzzer] add -abort_on_timeout optionKostya Serebryany1-0/+2
2016-01-22Use std::piecewise_constant_distribution instead of ad-hoc binary search.Ivan Krasin1-35/+45
2016-01-22Revert r258473 as it's breaking the build with libc++Ivan Krasin1-18/+15
2016-01-22Use std::piecewise_constant_distribution instead of ad-hoc binary search.Ivan Krasin1-15/+18
2016-01-21[libfuzzer] use %p for printing addressesMike Aizatsky1-1/+1
2016-01-16[libFuzzer] move some code from public interface header to a non-public heade...Kostya Serebryany1-1/+1
2016-01-14[libFuzzer] suggest a dictionary to the user of some of the trace-based dicti...Kostya Serebryany1-2/+4
2016-01-13[libFuzzer] make CurrentUnit a POD object instead of vector to avoid extra al...Kostya Serebryany1-22/+18
2016-01-13[libFuzzer] make sure we find buffer overflow in the input buffer. Previously...Kostya Serebryany1-5/+8
2016-01-13[libFuzzer] make sure to update CurrentUnit when drillingKostya Serebryany1-1/+4
2016-01-09[libFuzzer] change the way trace-based mutations are applied. Instead of a cu...Kostya Serebryany1-15/+3
2016-01-06[libfuzzer] print_new_cov_pcs experimental option.Mike Aizatsky1-1/+17
2015-12-19[libFuzzer] make CrossOver just one of the other mutationsKostya Serebryany1-29/+18
2015-12-19[libFuzzer] print successfull mutations sequencesKostya Serebryany1-6/+3
2015-12-05[libFuzzer] don't reload the corpus more than once every secondKostya Serebryany1-1/+6
2015-12-04[libFuzzer] compute base64 in-process instead of using an external lib. Since...Kostya Serebryany1-4/+2
2015-12-02Libfuzzer: do not pass null into user functionMike Aizatsky1-1/+5
2015-11-25[libFuzzer] add a flag -exact_artifact_pathKostya Serebryany1-0/+2
2015-11-13[libFuzzer] make libFuzzer build even with a compiler that does not have sani...Kostya Serebryany1-2/+7
2015-11-12output_csv libfuzzer optionMike Aizatsky1-8/+22
2015-11-12[libFuzzer] experimental flag -drill (another search heuristic; Mike Aizatsky...Kostya Serebryany1-9/+61
2015-11-09[libFuzzer] make libFuzzer link if there is no sanitizer coverage instrumenta...Kostya Serebryany1-0/+23
2015-11-05[libFuzzer] print a bit fewer linesKostya Serebryany1-1/+3
2015-11-04[libFuzzer] when choosing the next unit to mutate, give some preference to th...Kostya Serebryany1-26/+45
2015-10-24[libFuzzer] add -merge flag to merge corporaKostya Serebryany1-0/+32
2015-10-23[libFuzzer] remove some old code; also make __sanitizer_get_total_unique_call...Kostya Serebryany1-0/+3
2015-10-22[libFuzzer] use the indirect caller-callee counter as an independent search h...Kostya Serebryany1-1/+14
2015-10-22[libFuzzer] more refactoring the code that checks the coverage. NFCKostya Serebryany1-7/+8
2015-10-22[libFuzzer] refactoring the code that checks the coverage. NFCKostya Serebryany1-29/+35
2015-10-22[libFuzzer] remove the deprecated 'tokens' featureKostya Serebryany1-32/+7
2015-10-17[libFuzzer] add -shuffle flagKostya Serebryany1-5/+7
2015-10-16[libFuzzer] print a stack trace on timeoutKostya Serebryany1-0/+9
2015-10-16[libFuzzer] reduce the size of artifacts printed on the screenKostya Serebryany1-1/+1
2015-10-16[libFuzzer] When -test_single_input crashes the test it is not necessary to w...Kostya Serebryany1-0/+2
2015-10-09[libFuzzer] don't print large artifacts to stderrKostya Serebryany1-6/+7
2015-10-09[libFuzzer] add -artifact_prefix flagKostya Serebryany1-2/+3
2015-10-02[libFuzzer] make LLVMFuzzerTestOneInput (the fuzzer target function) return i...Kostya Serebryany1-2/+4
2015-10-02[libFuzzer] remove experimental flag and functionalityKostya Serebryany1-29/+1