mmtk/plan/markcompact/
mod.rs

1//! Mark-compact plans.
2
3/// Mark-compact using the Lisp-2 compaction algorithm
4pub mod lisp2;
5/// Mark-compact using offset-vector bitmaps (OVC)
6pub mod ovc;
7
8pub use lisp2::LISP2_CONSTRAINTS;