diff options
| author | Your Name <you@example.com> | 2022-02-18 07:55:45 +0000 |
|---|---|---|
| committer | Your Name <you@example.com> | 2022-02-18 08:01:34 +0000 |
| commit | cb1256499f7e07fd0edf0958d08b958fec63c34c (patch) | |
| tree | 6e11894987f8d234d651e780b0b58cb2265f725c /frida_mode/include | |
| parent | dd8ad4dfa35c8b11ebcc6005f44855db02fefb74 (diff) | |
| download | afl++-cb1256499f7e07fd0edf0958d08b958fec63c34c.tar.gz | |
Added instrumentation for CMOV instructions
Diffstat (limited to 'frida_mode/include')
| -rw-r--r-- | frida_mode/include/instrument.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/frida_mode/include/instrument.h b/frida_mode/include/instrument.h index abb89c9f..20312a4b 100644 --- a/frida_mode/include/instrument.h +++ b/frida_mode/include/instrument.h @@ -12,6 +12,7 @@ extern gboolean instrument_optimize; extern gboolean instrument_unique; extern guint64 instrument_hash_zero; extern char * instrument_coverage_unstable_filename; +extern gboolean instrument_coverage_insn; extern gboolean instrument_use_fixed_seed; extern guint64 instrument_fixed_seed; @@ -33,6 +34,8 @@ gboolean instrument_is_coverage_optimize_supported(void); void instrument_coverage_optimize_init(void); void instrument_coverage_optimize(const cs_insn * instr, GumStalkerOutput *output); +void instrument_coverage_optimize_insn(const cs_insn * instr, + GumStalkerOutput *output); void instrument_debug_config(void); void instrument_debug_init(void); |
