(vm: &mut Vm, config: &FuzzConfig)
| 137 | |
| 138 | impl EdgeCountMap { |
| 139 | pub fn hit_counts(vm: &mut Vm, config: &FuzzConfig) -> Self { |
| 140 | Self::with_strategy(vm, config, BucketStrategy::Afl) |
| 141 | } |
| 142 | |
| 143 | pub fn with_strategy(vm: &mut Vm, config: &FuzzConfig, strategy: BucketStrategy) -> Self { |
| 144 | let bitmap = Box::leak(init_coverage_array()); |
nothing calls this directly
no outgoing calls
no test coverage detected