mmtk 0.16.0

MMTk is a framework for the design and implementation of high-performance and portable memory managers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod constants;
mod helpers;
#[cfg(target_pointer_width = "32")]
mod helpers_32;

mod global;
mod sanity;
mod side_metadata_tests;
pub(crate) mod spec_defs;

pub use constants::*;
pub use global::*;
pub use helpers::*;
#[cfg(target_pointer_width = "32")]
pub use helpers_32::*;
pub use sanity::SideMetadataSanity;