This website requires JavaScript.
Explore
Help
Register
Sign In
caio
/
clang-p2996
Watch
1
Star
0
Fork
0
You've already forked clang-p2996
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
17536b935ae8a4ef2679ae5ccd541eddc60dceed
clang-p2996
/
llvm
/
lib
/
Fuzzer
History
Kostya Serebryany
589eae515e
[libFuzzer] change the default max_len from 64 to 4096. This will affect cases where libFuzzer is run w/o initial corpus or with a corpus of very small items.
...
llvm-svn: 305521
2017-06-15 22:43:40 +00:00
..
afl
Sort the remaining #include lines in include/... and lib/....
2017-06-06 11:49:48 +00:00
standalone
…
test
[libFuzzer] change the default max_len from 64 to 4096. This will affect cases where libFuzzer is run w/o initial corpus or with a corpus of very small items.
2017-06-15 22:43:40 +00:00
build.sh
[libFuzzer] Use CXX to set compiler to use
2017-01-21 01:21:56 +00:00
CMakeLists.txt
[libFuzzer] Always build libFuzzer
2017-04-21 22:38:24 +00:00
cxx.dict
…
FuzzerCorpus.h
[libFuzzer] simplify the code a bit
2017-03-31 04:17:45 +00:00
FuzzerCrossOver.cpp
…
FuzzerDefs.h
Fixup for r301054: Only use __attribute__((no_sanitize("memory"))) when it's available.
2017-04-21 22:58:55 +00:00
FuzzerDictionary.h
[libFuzzer] make sure we don't execute libFuzzer's mem* and str* hooks while calling mem*/str* inside libFuzzer itself
2017-03-31 02:21:28 +00:00
FuzzerDriver.cpp
[libFuzzer] change the default max_len from 64 to 4096. This will affect cases where libFuzzer is run w/o initial corpus or with a corpus of very small items.
2017-06-15 22:43:40 +00:00
FuzzerExtFunctions.def
[libFuzzer] call __sanitizer_print_memory_profile with two params
2017-03-15 23:27:53 +00:00
FuzzerExtFunctions.h
…
FuzzerExtFunctionsDlsym.cpp
…
FuzzerExtFunctionsDlsymWin.cpp
Fix the includes in lib/Fuzzer on Windows that have ordering
2017-06-06 23:28:01 +00:00
FuzzerExtFunctionsWeak.cpp
…
FuzzerExtFunctionsWeakAlias.cpp
…
FuzzerExtraCounters.cpp
[libFuzzer] create experimental support for user-provided coverage signal
2017-03-23 22:43:12 +00:00
FuzzerFlags.def
[libFuzzer] update docs on -print_coverage/-dump_coverage
2017-05-09 01:34:27 +00:00
FuzzerInterface.h
[libFuzzer] use table of recent compares for memcmp/strcmp (to unify the code between cmp and memcmp handling)
2017-01-17 23:09:05 +00:00
FuzzerInternal.h
[libFuzzer] make sure the input data is not overwritten in the fuzz target (if it is -- report an error)
2017-05-09 01:17:29 +00:00
FuzzerIO.cpp
[libFuzzer] Properly use Handle instead of FD on Windows.
2017-02-08 00:03:18 +00:00
FuzzerIO.h
[libFuzzer] Properly use Handle instead of FD on Windows.
2017-02-08 00:03:18 +00:00
FuzzerIOPosix.cpp
[libFuzzer] Properly use Handle instead of FD on Windows.
2017-02-08 00:03:18 +00:00
FuzzerIOWindows.cpp
[libFuzzer] Properly use Handle instead of FD on Windows.
2017-02-08 00:03:18 +00:00
FuzzerLoop.cpp
[libFuzzer] change the default max_len from 64 to 4096. This will affect cases where libFuzzer is run w/o initial corpus or with a corpus of very small items.
2017-06-15 22:43:40 +00:00
FuzzerMain.cpp
…
FuzzerMerge.cpp
Sort the remaining #include lines in include/... and lib/....
2017-06-06 11:49:48 +00:00
FuzzerMerge.h
Fixup for r301054: Use an explicit constructor.
2017-04-21 23:28:01 +00:00
FuzzerMutate.cpp
Sort the remaining #include lines in include/... and lib/....
2017-06-06 11:49:48 +00:00
FuzzerMutate.h
Revert "[libFuzzer] Use ChooseUnitIdxToMutate to pick item for crossover."
2017-03-15 23:08:18 +00:00
FuzzerOptions.h
[libFuzzer] remove -output_csv option. It duplicates the default output and got out of sync
2017-04-19 21:34:58 +00:00
FuzzerRandom.h
[libFuzzer] replace std::random_shuffle with std::shuffle as std::random_shuffle is being deprecated in C++17. Also simplify fuzzer::Random. NFC
2017-02-07 22:37:34 +00:00
FuzzerSHA1.cpp
…
FuzzerSHA1.h
…
FuzzerShmem.h
[libFuzzer] increase the default size for shmem
2017-02-01 00:07:47 +00:00
FuzzerShmemPosix.cpp
Sort the remaining #include lines in include/... and lib/....
2017-06-06 11:49:48 +00:00
FuzzerShmemWindows.cpp
Sort the remaining #include lines in include/... and lib/....
2017-06-06 11:49:48 +00:00
FuzzerTracePC.cpp
[libFuzzer] initial support of -fsanitize-coverage=inline-8bit-counters in libFuzzer. This is not fully functional yet, but simple tests work
2017-06-13 22:31:21 +00:00
FuzzerTracePC.h
[libFuzzer] initial support of -fsanitize-coverage=inline-8bit-counters in libFuzzer. This is not fully functional yet, but simple tests work
2017-06-13 22:31:21 +00:00
FuzzerTraceState.cpp
Sort the remaining #include lines in include/... and lib/....
2017-06-06 11:49:48 +00:00
FuzzerUtil.cpp
…
FuzzerUtil.h
[libFuzzer] Portably disassemble and find calls to sanitizer_cov_trace_pc_guard.
2017-01-22 01:58:26 +00:00
FuzzerUtilDarwin.cpp
…
FuzzerUtilLinux.cpp
…
FuzzerUtilPosix.cpp
[libFuzzer] Don't replace custom signal handlers.
2017-05-25 01:43:13 +00:00
FuzzerUtilWindows.cpp
Fix the includes in lib/Fuzzer on Windows that have ordering
2017-06-06 23:28:01 +00:00
FuzzerValueBitMap.h
[libFuzzer] don't clear Counters in TracePC::CollectFeatures since they will be cleared anyway in ResetMaps
2017-03-14 21:40:53 +00:00
README.txt
…
README.txt
Move to http://llvm.org/docs/LibFuzzer.html
Reference in New Issue
View Git Blame
Copy Permalink