Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-28 | fix the file descriptor without determining null | mark0 | |
2023-07-10 | nits | vanhauser-thc | |
2023-07-06 | higher tuples for afl-clang and afl-gcc in tests | vanhauser-thc | |
2023-06-06 | fix ci | vanhauser-thc | |
2023-06-06 | better cmplog ci | vanhauser-thc | |
2023-06-06 | reduce false positive ci failures | vanhauser-thc | |
2023-04-27 | nits | vanhauser-thc | |
2023-04-27 | afl++ -> AFL++ | vanhauser-thc | |
2023-04-14 | Fixing typo: & (background) to && (and) | Yaakov Saxon | |
2023-03-28 | nits | vanhauser-thc | |
2023-03-26 | fix frida mode | vanhauser-thc | |
2023-03-25 | reduce CI resources | vanhauser-thc | |
2023-03-21 | ci test | vanhauser-thc | |
2023-03-10 | enhance tests for macos | vanhauser-thc | |
2023-03-10 | enhance tests for macos | vanhauser-thc | |
2023-03-09 | support LLVMFuzzerTestOneInput -1 return | vanhauser-thc | |
2023-02-23 | improve cmplog ci | vanhauser-thc | |
2022-11-14 | custom mutator fix | vanhauser-thc | |
2022-10-19 | nits | vanhauser-thc | |
2022-09-05 | egrep -> grep -e | vanhauser-thc | |
2022-06-27 | nits | vanhauser-thc | |
2022-04-06 | add cmplog icmp testcase to CI | vanhauser-thc | |
2022-03-30 | fix instrumentlist for LTO with clang < 13 | vanhauser-thc | |
2022-03-29 | fix qemu sigunaction tests | vanhauser-thc | |
2022-03-26 | fix unicornafl test | Dominik Maier | |
2022-02-05 | debug CI | vanhauser-thc | |
2022-01-30 | fix ci for mac | vanhauser-thc | |
2022-01-30 | debug ci | vanhauser-thc | |
2022-01-30 | debug ci | vanhauser-thc | |
2022-01-26 | 4.00c readiness | vanhauser-thc | |
2021-12-26 | make tests working on macos | vanhauser-thc | |
2021-12-26 | debug ci | vanhauser-thc | |
2021-12-26 | make tests working on macos | vanhauser-thc | |
2021-12-26 | debug ci | vanhauser-thc | |
2021-12-26 | debug ci | vanhauser-thc | |
2021-12-26 | macos ci | vanhauser-thc | |
2021-12-11 | code format | yuawn | |
2021-12-10 | additional test cases for floating point comparison splitting pass | hexcoder- | |
2021-12-09 | make llvm 14-dev working. again. | vanhauser-thc | |
2021-12-03 | change dlopen solution | vanhauser-thc | |
2021-11-03 | Merge pull request #1142 from AFLplusplus/dev | van Hauser | |
Dev | |||
2021-10-19 | fix | vanhauser-thc | |
2021-10-17 | update test | vanhauser-thc | |
2021-08-31 | fix regression in class lookup | vanhauser-thc | |
2021-07-30 | fix testcase | vanhauser-thc | |
2021-07-30 | add more string functions for dictionary features | vanhauser-thc | |
2021-06-25 | test laf splitting: set default for char type explicitly to signed | hexcoder- | |
2021-06-24 | fix frida | vanhauser-thc | |
2021-06-11 | split-comparison llvm pass refactor for smaller compilation times (and a ↵ | Michael Rodler | |
small bug fix) (#964) * Refactored split compare pass to be more efficient in LTO usage and allow splitting to other minimum bitwidths. Efficiency: avoid looping over the whole llvm module N times, when once is also enough. Bitwidth: Previously, due to fallthrough in switch-case, all comparisons were split to 8-bit, which might not be desirable e.g., 16 or 32 bit might be enough. So now all comparison are split until they are smaller or equal to the target bitwidth, which is controlled through the `AFL_LLVM_LAF_SPLIT_COMPARES_BITW` environment variable. * fixed miscompilation due to incorrectly trying to split a signed comparison operator * minor formatting updates and use IRBuilder when inserting multiple instructions * added @hexcoder-'s test-int_cases.c to make test * Avoid recursion; switch to smallvector in splitAndSimplify; use switch case for icmp type; * Fixed issue when splitting < where the inverse comparison was not further split * some cleanup | |||
2021-06-09 | add test cases for splitting integer comparisons | hexcoder- | |