[PowerPC] Enable interleaved-access vectorization
[oota-llvm.git] / lib / Fuzzer /
2015-09-03 Kostya Serebryany[libFuzzer] refactor the mutation functions so that...
2015-09-03 Kostya Serebryany[libFuzzer] adding a parser for AFL-style dictionaries...
2015-09-02 Kostya Serebryany[libFuzzer] deprecate the -tokens flag. This was a...
2015-09-02 Kostya Serebryany[libFuzzer] honour -only_ascii=1 when reading the initi...
2015-08-26 Kostya Serebryany[libFuzzer] fix minor inefficiency, PR24584
2015-08-12 Lenny MaioraniFix missing space in libfuzzer's help text.
2015-08-12 Kostya Serebryany[libFuzzer] add two flags, -tbm_depth and -tbm_width...
2015-08-12 Kostya Serebryany[libFuzzer] add colons to the stats output to avoid...
2015-08-12 Kostya Serebryany[libFuzzer] use raw C IO to reduce the risk of a deadlo...
2015-08-11 Nick LewyckyFix unused variable 'X' in release builds.
2015-08-11 Kostya Serebryany[libFuzzer] add -only_ascii flag
2015-08-10 Yaron KerenAdd missing include guard to FuzzerInternal.h, NFC.
2015-08-06 Kostya Serebryany[libFuzzer] move the mutators to public interface so...
2015-08-06 Kostya Serebryany[libFuzzer] add one more mutation strategy: byte shuffling
2015-08-05 Kostya Serebryany[libFuzzer] avoid build warnings in non-assert build...
2015-08-05 Kostya Serebryany[libFuzzer] in dfsan mode, set labels every time we...
2015-08-05 Kostya Serebryany[libFuzzer] add option -report_slow_units=Nsec to contr...
2015-08-05 Kostya Serebryany[libFuzzer] add a missing test file
2015-08-05 Kostya Serebryany[libFuzzer] use data-flow feedback from strcmp
2015-08-01 Kostya Serebryany[libFuzzer] more refactoring of the Mutator and adding...
2015-08-01 Kostya Serebryany[libFuzzer] start refactoring the Mutator and adding...
2015-07-31 Kostya Serebryany[libFuzzer] limit the size of the inputs printed to...
2015-07-31 Kostya Serebryany[libFuzzer] make sure that 2-byte arguments of switch...
2015-07-31 Kostya Serebryany[libFuzzer] record traces from the switch statements...
2015-07-31 Kostya Serebryany[libFuzzer] support switch interception in dfsan mode
2015-07-31 Kostya Serebryany[libFuzzer] trace switch statements and apply mutations...
2015-07-30 Kostya Serebryany[libFuzzer] fix the strncmp interceptor -- it should...
2015-07-30 Kostya Serebryany[libFuzzer] implement strncmp hook for data-flow-guided...
2015-07-30 Kostya Serebryany[libFuzzer] implement memcmp hook for data-flow-guided...
2015-07-28 Kostya Serebryany[libFuzzer] ensure that the dfsan tracing hooks actuall...
2015-07-28 Kostya Serebryany[libFuzzer] when using cmp traces, first check that...
2015-07-24 Kostya Serebryany[libFuzzer] allow users to supply their own implementat...
2015-07-23 Kostya Serebryany[libFuzzer] dump long running units to disk
2015-07-21 Alexey Samsonov[Fuzzer] Rely on $PATH expansion instead of hardcoding...
2015-07-21 Alexey Samsonov[Fuzzer] Clearly separate regular and DFSan tests....
2015-07-18 Kostya Serebryany[libFuzzer] require the files and directories passed...
2015-05-30 Kostya Serebryany[lib/Fuzzer] make assertions more informative and updat...
2015-05-29 Kostya Serebryany[lib/Fuzzer] relax an assertion
2015-05-26 Kostya Serebryany[lib/Fuzzer] make the fuzzing timeout 1200 seconds...
2015-05-26 Kostya Serebryany[lib/Fuzzer] fix docs
2015-05-26 Kostya Serebryany[lib/Fuzzer] fix build with assertions
2015-05-23 Kostya Serebryany[lib/Fuzzer] doxygen-ify the comments for the user...
2015-05-23 Kostya Serebryany[lib/Fuzzer] fully get rid of std::cerr in libFuzzer
2015-05-23 Kostya Serebryany[lib/Fuzzer] start getting rid of std::cerr. Sadly...
2015-05-22 Kostya Serebryany[lib/Fuzzer] remove -use_coverage_pairs=1, an experimen...
2015-05-22 Kostya Serebryany[lib/Fuzzer] extend the fuzzer interface to allow user...
2015-05-21 Kostya Serebryany[lib/Fuzzer] ignore flags that start with --; use git...
2015-05-19 Kostya Serebryany[lib/Fuzzer] change the meaning of -timeout flag: now...
2015-05-19 Kostya Serebryany[lib/Fuzzer] more efficient reload logic; also don...
2015-05-18 Kostya Serebryany[lib/Fuzzer] when -sync_command=<CMD> is given, periodi...
2015-05-17 Logan ChienCode cleanup: Reindent Fuzzer::MutateAndTestOne.
2015-05-14 Kostya Serebryany[lib/Fuzzer] Add SHA1 implementation from public domain.
2015-05-13 Kostya Serebryany[lib/Fuzzer] enable -use_counters=1 by default
2015-05-12 Kostya Serebryany[lib/Fuzzer] A simple script to synchronise a fuzz...
2015-05-12 Kostya Serebryany[lib/Fuzzer] use sha1sum for the file hash
2015-05-12 Kostya Serebryany[lib/Fuzzer] guess the right number of workers if ...
2015-05-12 Kostya Serebryany[lib/Fuzzer] remove the -dfsan=1 flag, just use -use_tr...
2015-05-12 Kostya Serebryany[lib/Fuzzer] detach the pulse thread instad of joining it
2015-05-11 Kostya Serebryany[lib/Fuzzer] don't record traces when trace collection...
2015-05-11 Kostya Serebryany[lib/Fuzzer] when running multiple fuzzing processes...
2015-05-11 Kostya Serebryany[lib/Fuzzer] rename FuzzerDFSan.cpp to FuzzerTraceState...
2015-05-11 Kostya Serebryany[lib/Fuzzer] add a trace-based mutatation logic. Same...
2015-05-08 Kostya Serebryany[lib/Fuzzer] build tests that work well with dfsan...
2015-05-08 Kostya Serebryany[lib/Fuzzer] use -fsanitize-coverage=trace-cmp when...
2015-05-07 Alexey SamsonovUpdate CMake flags, LibFuzzer comments and docs for...
2015-05-07 Kostya Serebryany[lib/Fuzzer] change the way we use taint information...
2015-05-07 Kostya Serebryany[lib/Fuzzer] minor refactoring/simplification, NFC
2015-05-07 Kostya Serebryany[lib/Fuzzer] add dfsan_weak_hook_memcmp, enable the...
2015-05-06 Kostya Serebryany[lib/Fuzzer] remove dfsan_fuzzer_abi.list -- its conten...
2015-05-06 Kostya Serebryany[lib/Fuzzer] add a fuzzer test for memcmp (does not...
2015-05-06 Kostya Serebryany[lib/Fuzzer] rename TestOneInput to LLVMFuzzerTestOneIn...
2015-05-05 Kostya Serebryany[lib/Fuzzer] on crash print the contents of the crashy...
2015-05-05 Kostya Serebryany[lib/Fuzzer] use handle_abort=1 by default so that...
2015-04-06 Aaron BallmanRemoving a spurious space; NFC.
2015-04-01 Kostya Serebryany[fuzzer] document the -tokens flag. Also change the...
2015-03-31 Kostya Serebryany[fuzzer] Add support for token-based fuzzing (e.g....
2015-03-30 Kostya SerebryanyMove lib/Fuzzer docs from a README.txt to a proper...
2015-03-30 Kostya Serebryany[fuzzer] when a single unit takes over 1 second to...
2015-03-30 Kostya Serebryany[fuzzer] print various stats in a unified way
2015-03-30 Kostya SerebryanyDFSan-based fuzzer (proof of concept).
2015-03-03 Kostya Serebryany[sanitizer/coverage] Add AFL-style coverage counters...
2015-02-20 Kostya Serebryany[fuzzer] one more experimental search mode: -use_covera...
2015-02-19 Kostya Serebryany[fuzzer] split main() into FuzzerDriver() that takes...
2015-02-19 Kostya Serebryany[fuzzer] properly annotate fallthrough, add one more...
2015-02-06 Kostya Serebryany[fuzzer] move default sanitizer options to a separate...
2015-02-04 Kostya Serebryany[fuzzer] add flag prefer_small_during_initial_shuffle...
2015-02-04 Kostya Serebryany[fuzzer] add -runs=N to limit the number of runs per...
2015-02-04 Kostya Serebryany[fuzzer] make multi-process execution more verbose...
2015-02-04 Kostya Serebryany[fuzzer]: fix exit code, add more diagnostics
2015-02-03 Kostya Serebryany[fuzzer] Add proper dependensices to the fuzzer tests
2015-02-03 Kostya Serebryany[fuzzer] update the include line to use the new header...
2015-01-31 Kostya Serebryany[fuzzer] add flags to run fuzzer in multiple parallel...
2015-01-30 Kostya Serebryany[fuzzer] Add a gtest-style test
2015-01-29 Kostya Serebryany[fuzzer] add -use_full_coverage_set=1 which solves...
2015-01-29 Kostya Serebryany[fuzzer] fix warning in a test
2015-01-29 Kostya Serebryany[fuzzer] minor cleanup based on reviews: remove redunda...
2015-01-29 Kostya Serebryany[fuzzer] add FAQ section to the README.txt
2015-01-29 Aaron BallmanReverting r227452, which adds back the fuzzer library...
2015-01-29 Aaron BallmanTemporarily reverting the fuzzer library as it causes...
2015-01-29 Aaron BallmanAdding missing #includes to try to get this to compile...
next