| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix compilation with GCC, which treats this as a constructor name not a type | Richard Smith | 2016-05-27 | 1 | -1/+1 |
| * | [libFuzzer] refactor: hide CurrentUnitData inside an interface function. NFC | Kostya Serebryany | 2016-05-26 | 1 | -28/+24 |
| * | [libFuzzer] reimplement the way we do -only_ascii to allow more 'const' in fu... | Kostya Serebryany | 2016-05-26 | 1 | -2/+2 |
| * | [libFuzzer] try to use max_len based on the items of the corpus instead of bl... | Kostya Serebryany | 2016-03-12 | 1 | -10/+13 |
| * | libfuzzer: fix compiler warnings | Dmitry Vyukov | 2016-03-02 | 1 | -1/+1 |
| * | [libFuzzer] get rid of UserSuppliedFuzzer; NFC | Kostya Serebryany | 2016-02-13 | 1 | -7/+7 |
| * | [libFuzzer] don't create too many trace-based mutations as it may be too slow | Kostya Serebryany | 2016-02-02 | 1 | -2/+18 |
| * | [libFuzzer] don't do expensive memmem if the result will not be used | Kostya Serebryany | 2016-01-22 | 1 | -0/+2 |
| * | [libFuzzer] replace vector with a simpler data structure in the Dictionaries ... | Kostya Serebryany | 2016-01-16 | 1 | -15/+8 |
| * | [libFuzzer] do mutations based on memcmp/strcmp interceptors under a separate... | Kostya Serebryany | 2016-01-15 | 1 | -18/+25 |
| * | [libFuzzer] make CurrentUnit a POD object instead of vector to avoid extra al... | Kostya Serebryany | 2016-01-13 | 1 | -17/+19 |
| * | [libFuzzer] make sure we find buffer overflow in the input buffer. Previously... | Kostya Serebryany | 2016-01-13 | 1 | -12/+15 |
| * | [libFuzzer] add a macro LLVM_FUZZER_DEFINES_SANITIZER_WEAK_HOOOKS | Kostya Serebryany | 2016-01-12 | 1 | -0/+8 |
| * | [libFuzzer] when a new unit is discovered using a dictionary, print all used ... | Kostya Serebryany | 2016-01-12 | 1 | -22/+3 |
| * | [libFuzzer] add various debug prints. Also don't mutate based on a cmp trace ... | Kostya Serebryany | 2016-01-12 | 1 | -5/+28 |
| * | [libFuzzer] extend the weak memcmp/strcmp/strncmp interceptors to receive the... | Kostya Serebryany | 2016-01-12 | 1 | -3/+6 |
| * | [libFuzzer] debug prints in tracing | Kostya Serebryany | 2016-01-09 | 1 | -2/+27 |
| * | [libFuzzer] change the way trace-based mutations are applied. Instead of a cu... | Kostya Serebryany | 2016-01-09 | 1 | -30/+15 |
| * | [libFuzzer] don't limit memcmp tracing with 8 bytes | Kostya Serebryany | 2016-01-09 | 1 | -38/+76 |
| * | [libFuzzer] refactor the way we collect cmp traces (don't use std::vector, do... | Kostya Serebryany | 2016-01-09 | 1 | -22/+35 |
| * | [libFuzzer] make trace-based fuzzing not crash in presence of threads | Kostya Serebryany | 2016-01-06 | 1 | -6/+15 |
| * | [libFuzzer] remove default initializer as a workaround for https://gcc.gnu.or... | Kostya Serebryany | 2015-11-18 | 1 | -1/+1 |
| * | [libFuzzer] Marking exported symbols as visible. Patch by Mike Aizatsky | Kostya Serebryany | 2015-09-30 | 1 | -1/+2 |
| * | [libFuzzer] refactor the code to allow building libFuzzer on platforms that d... | Kostya Serebryany | 2015-09-10 | 1 | -17/+14 |
| * | [libFuzzer] remove a piece of stale code | Kostya Serebryany | 2015-09-08 | 1 | -41/+1 |
| * | [libFuzzer] more accurate logic for traces, 80-char fix | Kostya Serebryany | 2015-09-04 | 1 | -6/+5 |
| * | [libFuzzer] add two flags, -tbm_depth and -tbm_width to control how the trace... | Kostya Serebryany | 2015-08-12 | 1 | -2/+1 |
| * | [libFuzzer] avoid build warnings in non-assert build (useful warning in this ... | Kostya Serebryany | 2015-08-05 | 1 | -1/+4 |
| * | [libFuzzer] in dfsan mode, set labels every time we start recording traces as... | Kostya Serebryany | 2015-08-05 | 1 | -1/+3 |
| * | [libFuzzer] use data-flow feedback from strcmp | Kostya Serebryany | 2015-08-05 | 1 | -2/+36 |
| * | [libFuzzer] start refactoring the Mutator and adding tests to it | Kostya Serebryany | 2015-08-01 | 1 | -1/+1 |
| * | [libFuzzer] make sure that 2-byte arguments of switch() are handled properly | Kostya Serebryany | 2015-07-31 | 1 | -10/+30 |
| * | [libFuzzer] record traces from the switch statements only when told to do so | Kostya Serebryany | 2015-07-31 | 1 | -0/+1 |
| * | [libFuzzer] support switch interception in dfsan mode | Kostya Serebryany | 2015-07-31 | 1 | -2/+34 |
| * | [libFuzzer] trace switch statements and apply mutations based on the expected... | Kostya Serebryany | 2015-07-31 | 1 | -0/+17 |
| * | [libFuzzer] fix the strncmp interceptor -- it should respect short strings. | Kostya Serebryany | 2015-07-30 | 1 | -2/+26 |
| * | [libFuzzer] implement strncmp hook for data-flow-guided fuzzing (w/ and w/o d... | Kostya Serebryany | 2015-07-30 | 1 | -2/+14 |
| * | [libFuzzer] implement memcmp hook for data-flow-guided fuzzing (w/o dfsan), e... | Kostya Serebryany | 2015-07-30 | 1 | -0/+12 |
| * | [libFuzzer] ensure that the dfsan tracing hooks actually run (using -verbosit... | Kostya Serebryany | 2015-07-28 | 1 | -1/+2 |
| * | [libFuzzer] when using cmp traces, first check that the CMP is evaluated to o... | Kostya Serebryany | 2015-07-28 | 1 | -4/+44 |
| * | [libFuzzer] allow users to supply their own implementation of rand | Kostya Serebryany | 2015-07-24 | 1 | -3/+3 |
| * | [lib/Fuzzer] relax an assertion | Kostya Serebryany | 2015-05-29 | 1 | -2/+2 |
| * | [lib/Fuzzer] fully get rid of std::cerr in libFuzzer | Kostya Serebryany | 2015-05-23 | 1 | -1/+0 |
| * | [lib/Fuzzer] start getting rid of std::cerr. Sadly, these parts of C++ librar... | Kostya Serebryany | 2015-05-23 | 1 | -17/+4 |
| * | [lib/Fuzzer] remove the -dfsan=1 flag, just use -use_traces=1 (w/ or w/o dfsan) | Kostya Serebryany | 2015-05-12 | 1 | -2/+2 |
| * | [lib/Fuzzer] don't record traces when trace collection is off | Kostya Serebryany | 2015-05-11 | 1 | -1/+2 |
| * | [lib/Fuzzer] rename FuzzerDFSan.cpp to FuzzerTraceState.cpp; update comments.... | Kostya Serebryany | 2015-05-11 | 1 | -0/+378 |