aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2024-07-24 14:48:23 +0200
committervanhauser-thc <vh@thc.org>2024-07-24 14:48:23 +0200
commit6e37f9b237ed12193688c86b6a527f32793f157e (patch)
tree7b3c3bcb8db3aa3e42835edf27be5baea1097c42 /include
parent2f2ddbbd796a552ae19440075244176bb98bfb01 (diff)
downloadafl++-6e37f9b237ed12193688c86b6a527f32793f157e.tar.gz
new cmplog map
Diffstat (limited to 'include')
-rw-r--r--include/cmplog.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/include/cmplog.h b/include/cmplog.h
index a4449a60..9f995da6 100644
--- a/include/cmplog.h
+++ b/include/cmplog.h
@@ -53,21 +53,24 @@ struct cmp_header { // 16 bit = 2 bytes
struct cmp_operands {
u64 v0;
- u64 v1;
u64 v0_128;
+ u64 v0_256_0; // u256 is unsupported by any compiler for now, so future use
+ u64 v0_256_1;
+ u64 v1;
u64 v1_128;
- u64 unused;
- u8 unused1;
- u8 unused2;
+ u64 v1_256_0;
+ u64 v1_256_1;
+ u8 unused[8];
} __attribute__((packed));
struct cmpfn_operands {
u8 v0[32];
- u8 v0_len;
u8 v1[32];
+ u8 v0_len;
u8 v1_len;
+ u8 unused[6];
} __attribute__((packed));