about summary refs log tree commit diff
path: root/frida_mode/include
diff options
context:
space:
mode:
authorYour Name <you@example.com>2022-02-18 07:55:45 +0000
committerYour Name <you@example.com>2022-02-18 08:01:34 +0000
commitcb1256499f7e07fd0edf0958d08b958fec63c34c (patch)
tree6e11894987f8d234d651e780b0b58cb2265f725c /frida_mode/include
parentdd8ad4dfa35c8b11ebcc6005f44855db02fefb74 (diff)
downloadafl++-cb1256499f7e07fd0edf0958d08b958fec63c34c.tar.gz
Added instrumentation for CMOV instructions
Diffstat (limited to 'frida_mode/include')
-rw-r--r--frida_mode/include/instrument.h3
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);