summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/FuzzerLoop.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* [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
* [libFuzzer] do the merge faster and a bit less preciseKostya Serebryany2016-05-131-1/+2
* [libFuzzer] simplify FuzzerInterface.hKostya Serebryany2016-05-131-5/+8
* [libfuzzer] Refactoring coverage state-management code.Mike Aizatsky2016-05-101-71/+111
* [libFuzzer] enhance -rss_limit_mb and enable by default. Now it will print th...Kostya Serebryany2016-05-061-9/+21
* [libFuzzer] add exeprimental -rss_limit_mb flag to fight against OOMsKostya Serebryany2016-05-061-0/+11
* [libFuzzer] disable leak detection if we have tried it for 1000 times w/o fin...Kostya Serebryany2016-04-271-0/+9
* [libFuzzer] remove dead codeKostya Serebryany2016-04-251-4/+2
* [libFuzzer] added -detect_leaks flag (0 by default for now). When enabled, it...Kostya Serebryany2016-04-201-1/+74
* [libFuzzer] try to print correct time in seconds when reporting a timeout. Do...Kostya Serebryany2016-04-181-3/+3
* [libfuzzer] defensive assertMike Aizatsky2016-04-081-1/+2
* [libFuzzer] don't report memory leaks if we are dying due to a timeout (just ...Kostya Serebryany2016-03-241-1/+1
* [Fuzzer] Guard no_sanitize_memory attributes behind __has_feature.Benjamin Kramer2016-03-181-2/+10
* [libFuzzer] improve -merge functionalityKostya Serebryany2016-03-181-51/+75
* [libFuzzer] deprecate several flagsKostya Serebryany2016-03-171-12/+0
* [libFuzzer] add __attribute__((no_sanitize_memory)) to two functions that may...Kostya Serebryany2016-03-171-0/+2
* [libFuzzer] try to use max_len based on the items of the corpus instead of bl...Kostya Serebryany2016-03-121-7/+23
* [libFuzzer] when interrupted, call _Exit() instead of exit()Kostya Serebryany2016-03-031-1/+1
* [libFuzzer] deprecate exit_on_first flagKostya Serebryany2016-03-011-2/+0
* [libFuzzer] add generic signal handlers so that libFuzzer can report at least...Kostya Serebryany2016-03-011-12/+38
* [libFuzzer] add -print_final_stats=1 flagKostya Serebryany2016-02-261-3/+14
* [libFuzzer] initial implementation of path coverage based on -fsanitize-cover...Kostya Serebryany2016-02-261-0/+8
* [libFuzzer] only read MaxLen bytes from every file in the corpus to speedup l...Kostya Serebryany2016-02-181-3/+3
* [libFuzzer] don't timeout when loading the corpus. Be a bit more verbose when...Kostya Serebryany2016-02-171-0/+2
* [libFuzzer] remove std::vector operations from hot paths, NFCKostya Serebryany2016-02-131-23/+24
* [libFuzzer] don't require seed in fuzzer::Mutate, instead use the global Fuzz...Kostya Serebryany2016-02-131-0/+5
* [libFuzzer] get rid of UserSuppliedFuzzer; NFCKostya Serebryany2016-02-131-13/+14
* [libFuzzer] provide a plain C interface for custom mutators (experimental)Kostya Serebryany2016-02-131-1/+10
* [libFuzzer] don't write the test unit when a leak is detected (since we don't...Kostya Serebryany2016-02-041-0/+1
OpenPOWER on IntegriCloud