Files
AFLplusplus/src
Kuan-Wei Chiu ac5815d994 Optimize bit counting using __builtin_popcount
Use the __builtin_popcount intrinsic to optimize the bit counting
function if the compiler supports it. This change replaces the manual
bit counting algorithm with the more efficient built-in function, which
leverages hardware support on compatible processors.

This modification ensures that the code remains backward-compatible by
falling back to the original implementation when __builtin_popcount is
not available.
2024-06-24 06:52:07 +08:00
..
2024-04-19 15:45:00 +02:00
2024-04-19 15:45:00 +02:00
2024-06-13 09:19:11 +02:00
2024-04-19 15:45:00 +02:00
2024-04-19 15:45:00 +02:00
2024-06-12 09:10:35 +02:00
2024-04-19 15:45:00 +02:00
2024-04-19 15:45:00 +02:00
2024-04-19 15:45:00 +02:00
2024-06-18 15:42:34 +02:00
2024-06-06 17:52:21 +02:00
2024-06-18 15:24:38 +02:00
2024-06-10 18:22:06 +02:00
2024-04-19 15:45:00 +02:00
2024-04-19 15:45:00 +02:00
2024-06-10 18:22:06 +02:00
2024-06-01 16:55:56 +02:00
2024-04-19 15:45:00 +02:00
2022-01-20 20:48:09 +01:00

Source Folder

Quick explanation about the files here:

  • afl-analyze.c - afl-analyze binary tool
  • afl-as.c - afl-as binary tool
  • afl-cc.c - afl-cc binary tool
  • afl-common.c - common functions, used by afl-analyze, afl-fuzz, afl-showmap and afl-tmin
  • afl-forkserver.c - forkserver implementation, used by afl-fuzz afl-showmap, afl-tmin
  • afl-fuzz-bitmap.c - afl-fuzz bitmap handling
  • afl-fuzz.c - afl-fuzz binary tool (just main() and usage())
  • afl-fuzz-cmplog.c - afl-fuzz cmplog functions
  • afl-fuzz-extras.c - afl-fuzz the extra function calls
  • afl-fuzz-init.c - afl-fuzz initialization
  • afl-fuzz-misc.c - afl-fuzz misc functions
  • afl-fuzz-mutators.c - afl-fuzz custom mutator and python support
  • afl-fuzz-one.c - afl-fuzz fuzzer_one big loop, this is where the mutation is happening
  • afl-fuzz-performance.c - hash64 and rand functions
  • afl-fuzz-python.c - afl-fuzz the python mutator extension
  • afl-fuzz-queue.c - afl-fuzz handling the queue
  • afl-fuzz-redqueen.c - afl-fuzz redqueen implementation
  • afl-fuzz-run.c - afl-fuzz running the target
  • afl-fuzz-state.c - afl-fuzz state and globals
  • afl-fuzz-stats.c - afl-fuzz writing the statistics file
  • afl-gotcpu.c - afl-gotcpu binary tool
  • afl-ld-lto.c - LTO linker helper
  • afl-sharedmem.c - sharedmem implementation, used by afl-fuzz, afl-showmap, afl-tmin
  • afl-showmap.c - afl-showmap binary tool
  • afl-tmin.c - afl-tmin binary tool