MCPcopy Create free account
hub / github.com/MultiFuzz/MultiFuzz / BlockCoverage

Class BlockCoverage

hail-fuzz/src/coverage.rs:361–369  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

359type BlockCoverageSnapshot = Vec<u8>;
360
361pub struct BlockCoverage {
362 injector: InjectorRef,
363 storage: StoreRef,
364 count: usize,
365 hit: Vec<u64>,
366 mapping_cache: RefCell<Vec<(u64, usize)>>,
367 bucket_strategy: BucketStrategy,
368 pack_bits: bool,
369}
370
371impl BlockCoverage {
372 pub fn init(vm: &mut Vm, bucket_strategy: BucketStrategy, pack_bits: bool) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected