use super::MyGC; use crate::MMTK;
use crate::plan::barriers::NoBarrier;
use crate::plan::mutator_context::Mutator;
use crate::plan::mutator_context::MutatorConfig;
use crate::plan::AllocationSemantics;
use crate::util::alloc::allocators::{AllocatorSelector, Allocators};
use crate::util::alloc::BumpAllocator;
use crate::util::opaque_pointer::*;
use crate::vm::VMBinding;
use crate::plan::mutator_context::{
create_allocator_mapping, create_space_mapping, ReservedAllocators,
};
use enum_map::EnumMap;
pub fn mygc_mutator_prepare<VM: VMBinding>(
_mutator: &mut Mutator<VM>,
_tls: VMWorkerThread,
) {
}
pub fn mygc_mutator_release<VM: VMBinding>(
mutator: &mut Mutator<VM>,
_tls: VMWorkerThread,
) {
let bump_allocator = unsafe {
mutator
.allocators
.get_allocator_mut(mutator.config.allocator_mapping[AllocationSemantics::Default])
}
.downcast_mut::<BumpAllocator<VM>>()
.unwrap();
bump_allocator.rebind(
mutator
.plan
.downcast_ref::<MyGC<VM>>()
.unwrap()
.tospace(),
);
}
const RESERVED_ALLOCATORS: ReservedAllocators = ReservedAllocators {
n_bump_pointer: 1,
..ReservedAllocators::DEFAULT
};
lazy_static! {
pub static ref ALLOCATOR_MAPPING: EnumMap<AllocationSemantics, AllocatorSelector> = {
let mut map = create_allocator_mapping(RESERVED_ALLOCATORS, true);
map[AllocationSemantics::Default] = AllocatorSelector::BumpPointer(0);
map
};
}
pub fn create_mygc_mutator<VM: VMBinding>(
mutator_tls: VMMutatorThread,
mmtk: &'static MMTK<VM>,
) -> Mutator<VM> {
let mygc = mmtk.get_plan().downcast_ref::<MyGC<VM>>().unwrap();
let config = MutatorConfig {
allocator_mapping: &*ALLOCATOR_MAPPING,
space_mapping: Box::new({
let mut vec = create_space_mapping(RESERVED_ALLOCATORS, true, mygc);
vec.push((AllocatorSelector::BumpPointer(0), mygc.tospace()));
vec
}),
prepare_func: &mygc_mutator_prepare, release_func: &mygc_mutator_release, };
Mutator {
allocators: Allocators::<VM>::new(mutator_tls, mmtk, &config.space_mapping),
barrier: Box::new(NoBarrier),
mutator_tls,
config,
plan: mygc,
}
}