| 129 | type EdgeCountSnapshot = Vec<u8>; |
| 130 | |
| 131 | pub struct EdgeCountMap { |
| 132 | hit: Box<[u64; MAP_SIZE / 8]>, |
| 133 | count: usize, |
| 134 | storage: StoreRef, |
| 135 | strategy: BucketStrategy, |
| 136 | } |
| 137 | |
| 138 | impl EdgeCountMap { |
| 139 | pub fn hit_counts(vm: &mut Vm, config: &FuzzConfig) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected