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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(not(feature = "std"))]
extern crate alloc;
cfg_if::cfg_if! {
if #[cfg(all(
feature = "jemalloc-global",
not(target_os = "windows"),
not(target_arch = "wasm32")
))] {
#[global_allocator]
pub static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
} else if #[cfg(feature = "dlmalloc-global")] {
#[global_allocator]
pub static ALLOC: dlmalloc::GlobalDlmalloc = dlmalloc::GlobalDlmalloc;
} else if #[cfg(feature = "weealloc-global")] {
#[global_allocator]
pub static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
} else if #[cfg(all(
feature = "mimalloc-global",
not(target_arch = "wasm32")
))] {
#[global_allocator]
pub static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
} else {
}
}
pub mod allocators;
#[cfg(any(all(target_os = "macos", not(feature = "jemalloc-global"),), feature = "estimate-heapsize"))]
pub mod sizeof;
#[macro_use]
mod malloc_size;
#[cfg(feature = "ethereum-impls")]
pub mod ethereum_impls;
#[cfg(feature = "primitive-types")]
pub mod primitives_impls;
pub use allocators::MallocSizeOfExt;
pub use malloc_size::{MallocShallowSizeOf, MallocSizeOf, MallocSizeOfOps};
pub use parity_util_mem_derive::*;
pub fn malloc_size<T: MallocSizeOf + ?Sized>(t: &T) -> usize {
MallocSizeOf::size_of(t, &mut allocators::new_malloc_size_ops())
}
#[cfg(feature = "std")]
#[cfg(test)]
mod test {
use super::{malloc_size, MallocSizeOf, MallocSizeOfExt};
use std::sync::Arc;
#[test]
fn test_arc() {
let val = Arc::new("test".to_string());
let s = val.malloc_size_of();
assert!(s > 0);
}
#[test]
fn test_dyn() {
trait Augmented: MallocSizeOf {}
impl Augmented for Vec<u8> {}
let val: Arc<dyn Augmented> = Arc::new(vec![0u8; 1024]);
assert!(malloc_size(&*val) > 1000);
}
}