pub trait EvalContextExt<'tcx>: MiriInterpCxExt<'tcx> {
// Provided methods
fn mmap(
&mut self,
addr: &OpTy<'tcx>,
length: &OpTy<'tcx>,
prot: &OpTy<'tcx>,
flags: &OpTy<'tcx>,
fd: &OpTy<'tcx>,
offset: i128,
) -> InterpResult<'tcx, Scalar> { ... }
fn munmap(
&mut self,
addr: &OpTy<'tcx>,
length: &OpTy<'tcx>,
) -> InterpResult<'tcx, Scalar> { ... }
}