summaryrefslogtreecommitdiffstats
path: root/vendor/countme/examples/bench_single_thread.rs
blob: ac147f861b487a1ae9c88ad6bac6793177ae788e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use countme::{get, Count};

#[derive(Default)]
struct Foo {
    _c: Count<Self>,
}

#[derive(Default)]
struct Bar {
    _c: Count<Self>,
    _x: i32,
}

mod deeply {
    pub(crate) mod nested {
        pub(crate) mod module {
            use countme::Count;

            #[derive(Default)]
            pub(crate) struct Quux {
                _c: Count<Self>,
            }
        }
    }
}

fn main() {
    countme::enable(true);
    let t = std::time::Instant::now();
    let n = 6;
    let m = 2_000_000;

    for _ in 0..n {
        for _ in 0..m {
            Foo::default();
        }

        let mut xs = Vec::with_capacity(m);
        for _ in 0..m {
            xs.push(Bar::default())
        }

        for _ in 0..m {
            deeply::nested::module::Quux::default();
        }

        let fs = [
            || drop(Foo::default()),
            || drop(Bar::default()),
            || drop(deeply::nested::module::Quux::default()),
            || {
                #[derive(Default)]
                struct Local(Count<Self>);

                Local::default();
            },
        ];
        for i in 0..m {
            fs[i % 4]();
        }
    }

    let foo = get::<Foo>();
    assert_eq!(foo.total, m * n + (m * n / 4));
    assert_eq!(foo.max_live, 1);
    assert_eq!(foo.live, 0);

    let bar = get::<Bar>();
    assert_eq!(bar.total, m * n + (m * n / 4));

    // FIXME: why +1? This seems like a bug
    // overreporting by 1 is not significant, but anyway
    assert_eq!(bar.max_live, m + 1);
    assert_eq!(bar.live, 0);

    println!("{:?}", t.elapsed());
}