index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Fuzzer
/
FuzzerLoop.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[libFuzzer] only read MaxLen bytes from every file in the corpus to speedup l...
Kostya Serebryany
2016-02-18
1
-3
/
+3
*
[libFuzzer] don't timeout when loading the corpus. Be a bit more verbose when...
Kostya Serebryany
2016-02-17
1
-0
/
+2
*
[libFuzzer] remove std::vector operations from hot paths, NFC
Kostya Serebryany
2016-02-13
1
-23
/
+24
*
[libFuzzer] don't require seed in fuzzer::Mutate, instead use the global Fuzz...
Kostya Serebryany
2016-02-13
1
-0
/
+5
*
[libFuzzer] get rid of UserSuppliedFuzzer; NFC
Kostya Serebryany
2016-02-13
1
-13
/
+14
*
[libFuzzer] provide a plain C interface for custom mutators (experimental)
Kostya Serebryany
2016-02-13
1
-1
/
+10
*
[libFuzzer] don't write the test unit when a leak is detected (since we don't...
Kostya Serebryany
2016-02-04
1
-0
/
+1
*
[libFuzzer] add -timeout_exitcode option
Kostya Serebryany
2016-01-29
1
-1
/
+1
*
[libFuzzer] add -abort_on_timeout option
Kostya Serebryany
2016-01-23
1
-0
/
+2
*
Use std::piecewise_constant_distribution instead of ad-hoc binary search.
Ivan Krasin
2016-01-22
1
-35
/
+45
*
Revert r258473 as it's breaking the build with libc++
Ivan Krasin
2016-01-22
1
-18
/
+15
*
Use std::piecewise_constant_distribution instead of ad-hoc binary search.
Ivan Krasin
2016-01-22
1
-15
/
+18
*
[libfuzzer] use %p for printing addresses
Mike Aizatsky
2016-01-21
1
-1
/
+1
*
[libFuzzer] move some code from public interface header to a non-public heade...
Kostya Serebryany
2016-01-16
1
-1
/
+1
*
[libFuzzer] suggest a dictionary to the user of some of the trace-based dicti...
Kostya Serebryany
2016-01-14
1
-2
/
+4
*
[libFuzzer] make CurrentUnit a POD object instead of vector to avoid extra al...
Kostya Serebryany
2016-01-13
1
-22
/
+18
*
[libFuzzer] make sure we find buffer overflow in the input buffer. Previously...
Kostya Serebryany
2016-01-13
1
-5
/
+8
*
[libFuzzer] make sure to update CurrentUnit when drilling
Kostya Serebryany
2016-01-13
1
-1
/
+4
*
[libFuzzer] change the way trace-based mutations are applied. Instead of a cu...
Kostya Serebryany
2016-01-09
1
-15
/
+3
*
[libfuzzer] print_new_cov_pcs experimental option.
Mike Aizatsky
2016-01-06
1
-1
/
+17
*
[libFuzzer] make CrossOver just one of the other mutations
Kostya Serebryany
2015-12-19
1
-29
/
+18
*
[libFuzzer] print successfull mutations sequences
Kostya Serebryany
2015-12-19
1
-6
/
+3
*
[libFuzzer] don't reload the corpus more than once every second
Kostya Serebryany
2015-12-05
1
-1
/
+6
*
[libFuzzer] compute base64 in-process instead of using an external lib. Since...
Kostya Serebryany
2015-12-04
1
-4
/
+2
*
Libfuzzer: do not pass null into user function
Mike Aizatsky
2015-12-02
1
-1
/
+5
*
[libFuzzer] add a flag -exact_artifact_path
Kostya Serebryany
2015-11-25
1
-0
/
+2
*
[libFuzzer] make libFuzzer build even with a compiler that does not have sani...
Kostya Serebryany
2015-11-13
1
-2
/
+7
*
output_csv libfuzzer option
Mike Aizatsky
2015-11-12
1
-8
/
+22
*
[libFuzzer] experimental flag -drill (another search heuristic; Mike Aizatsky...
Kostya Serebryany
2015-11-12
1
-9
/
+61
*
[libFuzzer] make libFuzzer link if there is no sanitizer coverage instrumenta...
Kostya Serebryany
2015-11-09
1
-0
/
+23
*
[libFuzzer] print a bit fewer lines
Kostya Serebryany
2015-11-05
1
-1
/
+3
*
[libFuzzer] when choosing the next unit to mutate, give some preference to th...
Kostya Serebryany
2015-11-04
1
-26
/
+45
*
[libFuzzer] add -merge flag to merge corpora
Kostya Serebryany
2015-10-24
1
-0
/
+32
*
[libFuzzer] remove some old code; also make __sanitizer_get_total_unique_call...
Kostya Serebryany
2015-10-23
1
-0
/
+3
*
[libFuzzer] use the indirect caller-callee counter as an independent search h...
Kostya Serebryany
2015-10-22
1
-1
/
+14
*
[libFuzzer] more refactoring the code that checks the coverage. NFC
Kostya Serebryany
2015-10-22
1
-7
/
+8
*
[libFuzzer] refactoring the code that checks the coverage. NFC
Kostya Serebryany
2015-10-22
1
-29
/
+35
*
[libFuzzer] remove the deprecated 'tokens' feature
Kostya Serebryany
2015-10-22
1
-32
/
+7
*
[libFuzzer] add -shuffle flag
Kostya Serebryany
2015-10-17
1
-5
/
+7
*
[libFuzzer] print a stack trace on timeout
Kostya Serebryany
2015-10-16
1
-0
/
+9
*
[libFuzzer] reduce the size of artifacts printed on the screen
Kostya Serebryany
2015-10-16
1
-1
/
+1
*
[libFuzzer] When -test_single_input crashes the test it is not necessary to w...
Kostya Serebryany
2015-10-16
1
-0
/
+2
*
[libFuzzer] don't print large artifacts to stderr
Kostya Serebryany
2015-10-09
1
-6
/
+7
*
[libFuzzer] add -artifact_prefix flag
Kostya Serebryany
2015-10-09
1
-2
/
+3
*
[libFuzzer] make LLVMFuzzerTestOneInput (the fuzzer target function) return i...
Kostya Serebryany
2015-10-02
1
-2
/
+4
*
[libFuzzer] remove experimental flag and functionality
Kostya Serebryany
2015-10-02
1
-29
/
+1
*
[libFuzzer] add a flag -max_total_time
Kostya Serebryany
2015-10-02
1
-0
/
+4
*
[libFuzzer] perform fewer crossover operations compared to plain mutations
Kostya Serebryany
2015-09-11
1
-7
/
+8
*
[libFuzzer] remove -iterations as redundant (there is also -num_runs)
Kostya Serebryany
2015-09-08
1
-2
/
+2
*
[libFuzzer] actually make the dictionaries work (+docs)
Kostya Serebryany
2015-09-04
1
-0
/
+3
[next]