2019-06-29 07:15:05 -05:00
|
|
|
//! Global machine state as well as implementation of the interpreter engine
|
|
|
|
//! `Machine` trait.
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
use std::rc::Rc;
|
|
|
|
use std::borrow::Cow;
|
2019-06-28 03:16:10 -05:00
|
|
|
use std::cell::RefCell;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
use rand::rngs::StdRng;
|
|
|
|
|
|
|
|
use syntax::attr;
|
|
|
|
use syntax::symbol::sym;
|
|
|
|
use rustc::hir::def_id::DefId;
|
2019-08-10 14:19:25 -05:00
|
|
|
use rustc::ty::{self, Ty, TyCtxt, layout::{Size, LayoutOf}};
|
2019-06-27 16:59:00 -05:00
|
|
|
use rustc::mir;
|
|
|
|
|
|
|
|
use crate::*;
|
|
|
|
|
2019-06-29 07:37:41 -05:00
|
|
|
// Some global facts about the emulated machine.
|
|
|
|
pub const PAGE_SIZE: u64 = 4*1024; // FIXME: adjust to target architecture
|
2019-06-30 09:43:05 -05:00
|
|
|
pub const STACK_ADDR: u64 = 32*PAGE_SIZE; // not really about the "stack", but where we start assigning integer addresses to allocations
|
|
|
|
pub const STACK_SIZE: u64 = 16*PAGE_SIZE; // whatever
|
2019-06-29 07:37:41 -05:00
|
|
|
pub const NUM_CPUS: u64 = 1;
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
/// Extra memory kinds
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
|
|
|
pub enum MiriMemoryKind {
|
|
|
|
/// `__rust_alloc` memory.
|
|
|
|
Rust,
|
|
|
|
/// `malloc` memory.
|
|
|
|
C,
|
2019-07-02 02:03:45 -05:00
|
|
|
/// Windows `HeapAlloc` memory.
|
|
|
|
WinHeap,
|
2019-06-27 16:59:00 -05:00
|
|
|
/// Part of env var emulation.
|
|
|
|
Env,
|
|
|
|
/// Statics.
|
|
|
|
Static,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Into<MemoryKind<MiriMemoryKind>> for MiriMemoryKind {
|
|
|
|
#[inline(always)]
|
|
|
|
fn into(self) -> MemoryKind<MiriMemoryKind> {
|
|
|
|
MemoryKind::Machine(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extra per-allocation data
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct AllocExtra {
|
2019-07-03 03:19:55 -05:00
|
|
|
/// Stacked Borrows state is only added if validation is enabled.
|
|
|
|
pub stacked_borrows: Option<stacked_borrows::AllocExtra>,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Extra global memory data
|
2019-06-29 07:04:50 -05:00
|
|
|
#[derive(Clone, Debug)]
|
2019-06-27 16:59:00 -05:00
|
|
|
pub struct MemoryExtra {
|
|
|
|
pub stacked_borrows: stacked_borrows::MemoryExtra,
|
|
|
|
pub intptrcast: intptrcast::MemoryExtra,
|
2019-07-03 03:19:55 -05:00
|
|
|
|
2019-07-23 14:38:53 -05:00
|
|
|
/// The random number generator used for resolving non-determinism.
|
|
|
|
pub(crate) rng: RefCell<StdRng>,
|
2019-07-03 03:19:55 -05:00
|
|
|
|
|
|
|
/// Whether to enforce the validity invariant.
|
|
|
|
pub(crate) validate: bool,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MemoryExtra {
|
2019-07-23 14:38:53 -05:00
|
|
|
pub fn new(rng: StdRng, validate: bool) -> Self {
|
2019-06-27 16:59:00 -05:00
|
|
|
MemoryExtra {
|
|
|
|
stacked_borrows: Default::default(),
|
|
|
|
intptrcast: Default::default(),
|
2019-07-23 14:38:53 -05:00
|
|
|
rng: RefCell::new(rng),
|
2019-07-03 03:19:55 -05:00
|
|
|
validate,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The machine itself.
|
|
|
|
pub struct Evaluator<'tcx> {
|
|
|
|
/// Environment variables set by `setenv`.
|
|
|
|
/// Miri does not expose env vars from the host to the emulated program.
|
2019-08-14 10:24:35 -05:00
|
|
|
pub(crate) env_vars: EnvVars,
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
/// Program arguments (`Option` because we can only initialize them after creating the ecx).
|
|
|
|
/// These are *pointers* to argc/argv because macOS.
|
|
|
|
/// We also need the full command line as one string because of Windows.
|
|
|
|
pub(crate) argc: Option<Pointer<Tag>>,
|
|
|
|
pub(crate) argv: Option<Pointer<Tag>>,
|
|
|
|
pub(crate) cmd_line: Option<Pointer<Tag>>,
|
|
|
|
|
|
|
|
/// Last OS error.
|
|
|
|
pub(crate) last_error: u32,
|
|
|
|
|
|
|
|
/// TLS state.
|
|
|
|
pub(crate) tls: TlsData<'tcx>,
|
2019-08-06 15:32:57 -05:00
|
|
|
|
2019-08-20 10:47:57 -05:00
|
|
|
/// If enabled, the `env_vars` field is populated with the host env vars during initialization
|
|
|
|
/// and random number generation is delegated to the host.
|
2019-08-06 15:32:57 -05:00
|
|
|
pub(crate) communicate: bool,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> Evaluator<'tcx> {
|
2019-08-06 15:32:57 -05:00
|
|
|
pub(crate) fn new(communicate: bool) -> Self {
|
2019-06-27 16:59:00 -05:00
|
|
|
Evaluator {
|
2019-08-13 16:17:41 -05:00
|
|
|
// `env_vars` could be initialized properly here if `Memory` were available before
|
|
|
|
// calling this method.
|
2019-08-14 10:24:35 -05:00
|
|
|
env_vars: EnvVars::default(),
|
2019-06-27 16:59:00 -05:00
|
|
|
argc: None,
|
|
|
|
argv: None,
|
|
|
|
cmd_line: None,
|
|
|
|
last_error: 0,
|
|
|
|
tls: TlsData::default(),
|
2019-08-06 15:32:57 -05:00
|
|
|
communicate,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-05 16:47:10 -05:00
|
|
|
/// A rustc InterpCx for Miri.
|
|
|
|
pub type MiriEvalContext<'mir, 'tcx> = InterpCx<'mir, 'tcx, Evaluator<'tcx>>;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
/// A little trait that's useful to be inherited by extension traits.
|
|
|
|
pub trait MiriEvalContextExt<'mir, 'tcx> {
|
|
|
|
fn eval_context_ref(&self) -> &MiriEvalContext<'mir, 'tcx>;
|
|
|
|
fn eval_context_mut(&mut self) -> &mut MiriEvalContext<'mir, 'tcx>;
|
|
|
|
}
|
|
|
|
impl<'mir, 'tcx> MiriEvalContextExt<'mir, 'tcx> for MiriEvalContext<'mir, 'tcx> {
|
|
|
|
#[inline(always)]
|
|
|
|
fn eval_context_ref(&self) -> &MiriEvalContext<'mir, 'tcx> {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
#[inline(always)]
|
|
|
|
fn eval_context_mut(&mut self) -> &mut MiriEvalContext<'mir, 'tcx> {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Machine hook implementations.
|
|
|
|
impl<'mir, 'tcx> Machine<'mir, 'tcx> for Evaluator<'tcx> {
|
|
|
|
type MemoryKinds = MiriMemoryKind;
|
|
|
|
|
|
|
|
type FrameExtra = stacked_borrows::CallId;
|
|
|
|
type MemoryExtra = MemoryExtra;
|
|
|
|
type AllocExtra = AllocExtra;
|
|
|
|
type PointerTag = Tag;
|
2019-06-30 09:03:13 -05:00
|
|
|
type ExtraFnVal = Dlsym;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
type MemoryMap = MonoHashMap<AllocId, (MemoryKind<MiriMemoryKind>, Allocation<Tag, Self::AllocExtra>)>;
|
|
|
|
|
|
|
|
const STATIC_KIND: Option<MiriMemoryKind> = Some(MiriMemoryKind::Static);
|
|
|
|
|
2019-08-05 08:49:19 -05:00
|
|
|
const CHECK_ALIGN: bool = true;
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
2019-07-05 16:47:10 -05:00
|
|
|
fn enforce_validity(ecx: &InterpCx<'mir, 'tcx, Self>) -> bool {
|
2019-07-03 03:19:55 -05:00
|
|
|
ecx.memory().extra.validate
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn find_fn(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
instance: ty::Instance<'tcx>,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
|
|
|
dest: Option<PlaceTy<'tcx, Tag>>,
|
|
|
|
ret: Option<mir::BasicBlock>,
|
|
|
|
) -> InterpResult<'tcx, Option<&'mir mir::Body<'tcx>>> {
|
|
|
|
ecx.find_fn(instance, args, dest, ret)
|
|
|
|
}
|
|
|
|
|
2019-06-30 09:03:13 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn call_extra_fn(
|
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
|
|
|
fn_val: Dlsym,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
|
|
|
dest: Option<PlaceTy<'tcx, Tag>>,
|
|
|
|
ret: Option<mir::BasicBlock>,
|
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
ecx.call_dlsym(fn_val, args, dest, ret)
|
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn call_intrinsic(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut rustc_mir::interpret::InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
instance: ty::Instance<'tcx>,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
|
|
|
dest: PlaceTy<'tcx, Tag>,
|
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
ecx.call_intrinsic(instance, args, dest)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2019-07-24 09:17:49 -05:00
|
|
|
fn binary_ptr_op(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &rustc_mir::interpret::InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
bin_op: mir::BinOp,
|
|
|
|
left: ImmTy<'tcx, Tag>,
|
|
|
|
right: ImmTy<'tcx, Tag>,
|
2019-08-10 14:19:25 -05:00
|
|
|
) -> InterpResult<'tcx, (Scalar<Tag>, bool, Ty<'tcx>)> {
|
2019-07-24 09:17:49 -05:00
|
|
|
ecx.binary_ptr_op(bin_op, left, right)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn box_alloc(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
dest: PlaceTy<'tcx, Tag>,
|
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
trace!("box_alloc for {:?}", dest.layout.ty);
|
|
|
|
// Call the `exchange_malloc` lang item.
|
|
|
|
let malloc = ecx.tcx.lang_items().exchange_malloc_fn().unwrap();
|
|
|
|
let malloc = ty::Instance::mono(ecx.tcx.tcx, malloc);
|
|
|
|
let malloc_mir = ecx.load_mir(malloc.def)?;
|
|
|
|
ecx.push_stack_frame(
|
|
|
|
malloc,
|
|
|
|
malloc_mir.span,
|
|
|
|
malloc_mir,
|
|
|
|
Some(dest),
|
|
|
|
// Don't do anything when we are done. The `statement()` function will increment
|
|
|
|
// the old stack frame's stmt counter to the next statement, which means that when
|
|
|
|
// `exchange_malloc` returns, we go on evaluating exactly where we want to be.
|
|
|
|
StackPopCleanup::None { cleanup: true },
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let mut args = ecx.frame().body.args_iter();
|
|
|
|
let layout = ecx.layout_of(dest.layout.ty.builtin_deref(false).unwrap().ty)?;
|
|
|
|
|
|
|
|
// First argument: `size`.
|
|
|
|
// (`0` is allowed here -- this is expected to be handled by the lang item).
|
2019-07-21 04:56:10 -05:00
|
|
|
let arg = ecx.local_place(args.next().unwrap())?;
|
2019-06-27 16:59:00 -05:00
|
|
|
let size = layout.size.bytes();
|
|
|
|
ecx.write_scalar(Scalar::from_uint(size, arg.layout.size), arg)?;
|
|
|
|
|
|
|
|
// Second argument: `align`.
|
2019-07-21 04:56:10 -05:00
|
|
|
let arg = ecx.local_place(args.next().unwrap())?;
|
2019-06-27 16:59:00 -05:00
|
|
|
let align = layout.align.abi.bytes();
|
|
|
|
ecx.write_scalar(Scalar::from_uint(align, arg.layout.size), arg)?;
|
|
|
|
|
|
|
|
// No more arguments.
|
|
|
|
assert!(
|
|
|
|
args.next().is_none(),
|
|
|
|
"`exchange_malloc` lang item has more arguments than expected"
|
|
|
|
);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn find_foreign_static(
|
2019-07-06 02:51:20 -05:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2019-06-27 16:59:00 -05:00
|
|
|
def_id: DefId,
|
|
|
|
) -> InterpResult<'tcx, Cow<'tcx, Allocation>> {
|
|
|
|
let attrs = tcx.get_attrs(def_id);
|
|
|
|
let link_name = match attr::first_attr_value_str_by_name(&attrs, sym::link_name) {
|
|
|
|
Some(name) => name.as_str(),
|
|
|
|
None => tcx.item_name(def_id).as_str(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let alloc = match link_name.get() {
|
|
|
|
"__cxa_thread_atexit_impl" => {
|
|
|
|
// This should be all-zero, pointer-sized.
|
|
|
|
let size = tcx.data_layout.pointer_size;
|
|
|
|
let data = vec![0; size.bytes() as usize];
|
|
|
|
Allocation::from_bytes(&data, tcx.data_layout.pointer_align.abi)
|
|
|
|
}
|
2019-08-03 13:31:33 -05:00
|
|
|
_ => throw_unsup_format!("can't access foreign static: {}", link_name),
|
2019-06-27 16:59:00 -05:00
|
|
|
};
|
|
|
|
Ok(Cow::Owned(alloc))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2019-07-05 16:47:10 -05:00
|
|
|
fn before_terminator(_ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx>
|
2019-06-27 16:59:00 -05:00
|
|
|
{
|
|
|
|
// We are not interested in detecting loops.
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tag_allocation<'b>(
|
2019-07-06 02:51:20 -05:00
|
|
|
memory_extra: &MemoryExtra,
|
2019-06-27 16:59:00 -05:00
|
|
|
id: AllocId,
|
|
|
|
alloc: Cow<'b, Allocation>,
|
|
|
|
kind: Option<MemoryKind<Self::MemoryKinds>>,
|
|
|
|
) -> (Cow<'b, Allocation<Self::PointerTag, Self::AllocExtra>>, Self::PointerTag) {
|
|
|
|
let kind = kind.expect("we set our STATIC_KIND so this cannot be None");
|
|
|
|
let alloc = alloc.into_owned();
|
2019-07-06 02:51:20 -05:00
|
|
|
let (stacks, base_tag) = if !memory_extra.validate {
|
2019-07-03 03:19:55 -05:00
|
|
|
(None, Tag::Untagged)
|
|
|
|
} else {
|
|
|
|
let (stacks, base_tag) = Stacks::new_allocation(
|
|
|
|
id,
|
|
|
|
Size::from_bytes(alloc.bytes.len() as u64),
|
2019-07-06 02:51:20 -05:00
|
|
|
Rc::clone(&memory_extra.stacked_borrows),
|
2019-07-03 03:19:55 -05:00
|
|
|
kind,
|
|
|
|
);
|
|
|
|
(Some(stacks), base_tag)
|
|
|
|
};
|
2019-06-27 16:59:00 -05:00
|
|
|
if kind != MiriMemoryKind::Static.into() {
|
|
|
|
assert!(alloc.relocations.is_empty(), "Only statics can come initialized with inner pointers");
|
|
|
|
// Now we can rely on the inner pointers being static, too.
|
|
|
|
}
|
2019-07-06 02:51:20 -05:00
|
|
|
let mut stacked_borrows = memory_extra.stacked_borrows.borrow_mut();
|
2019-06-27 16:59:00 -05:00
|
|
|
let alloc: Allocation<Tag, Self::AllocExtra> = Allocation {
|
|
|
|
bytes: alloc.bytes,
|
|
|
|
relocations: Relocations::from_presorted(
|
|
|
|
alloc.relocations.iter()
|
|
|
|
// The allocations in the relocations (pointers stored *inside* this allocation)
|
|
|
|
// all get the base pointer tag.
|
2019-07-03 03:19:55 -05:00
|
|
|
.map(|&(offset, ((), alloc))| {
|
2019-07-06 02:51:20 -05:00
|
|
|
let tag = if !memory_extra.validate {
|
2019-07-03 03:19:55 -05:00
|
|
|
Tag::Untagged
|
|
|
|
} else {
|
2019-07-06 02:51:20 -05:00
|
|
|
stacked_borrows.static_base_ptr(alloc)
|
2019-07-03 03:19:55 -05:00
|
|
|
};
|
|
|
|
(offset, (tag, alloc))
|
|
|
|
})
|
2019-06-27 16:59:00 -05:00
|
|
|
.collect()
|
|
|
|
),
|
|
|
|
undef_mask: alloc.undef_mask,
|
|
|
|
align: alloc.align,
|
|
|
|
mutability: alloc.mutability,
|
|
|
|
extra: AllocExtra {
|
|
|
|
stacked_borrows: stacks,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
(Cow::Owned(alloc), base_tag)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn tag_static_base_pointer(
|
2019-07-06 02:51:20 -05:00
|
|
|
memory_extra: &MemoryExtra,
|
2019-06-27 16:59:00 -05:00
|
|
|
id: AllocId,
|
|
|
|
) -> Self::PointerTag {
|
2019-07-06 02:51:20 -05:00
|
|
|
if !memory_extra.validate {
|
2019-07-03 03:19:55 -05:00
|
|
|
Tag::Untagged
|
|
|
|
} else {
|
2019-07-06 02:51:20 -05:00
|
|
|
memory_extra.stacked_borrows.borrow_mut().static_base_ptr(id)
|
2019-07-03 03:19:55 -05:00
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn retag(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
kind: mir::RetagKind,
|
|
|
|
place: PlaceTy<'tcx, Tag>,
|
|
|
|
) -> InterpResult<'tcx> {
|
2019-07-03 03:19:55 -05:00
|
|
|
if !Self::enforce_validity(ecx) {
|
|
|
|
// No tracking.
|
2019-06-27 16:59:00 -05:00
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
ecx.retag(kind, place)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn stack_push(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx, stacked_borrows::CallId> {
|
|
|
|
Ok(ecx.memory().extra.stacked_borrows.borrow_mut().new_call())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn stack_pop(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
extra: stacked_borrows::CallId,
|
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
Ok(ecx.memory().extra.stacked_borrows.borrow_mut().end_call(extra))
|
|
|
|
}
|
|
|
|
|
2019-07-23 14:38:53 -05:00
|
|
|
#[inline(always)]
|
2019-06-27 16:59:00 -05:00
|
|
|
fn int_to_ptr(
|
|
|
|
memory: &Memory<'mir, 'tcx, Self>,
|
2019-07-06 02:51:20 -05:00
|
|
|
int: u64,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx, Pointer<Self::PointerTag>> {
|
2019-07-23 14:38:53 -05:00
|
|
|
intptrcast::GlobalState::int_to_ptr(int, memory)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-07-23 14:38:53 -05:00
|
|
|
#[inline(always)]
|
2019-06-27 16:59:00 -05:00
|
|
|
fn ptr_to_int(
|
|
|
|
memory: &Memory<'mir, 'tcx, Self>,
|
2019-07-06 02:51:20 -05:00
|
|
|
ptr: Pointer<Self::PointerTag>,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx, u64> {
|
2019-07-23 14:38:53 -05:00
|
|
|
intptrcast::GlobalState::ptr_to_int(ptr, memory)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AllocationExtra<Tag> for AllocExtra {
|
|
|
|
#[inline(always)]
|
|
|
|
fn memory_read<'tcx>(
|
|
|
|
alloc: &Allocation<Tag, AllocExtra>,
|
|
|
|
ptr: Pointer<Tag>,
|
|
|
|
size: Size,
|
|
|
|
) -> InterpResult<'tcx> {
|
2019-07-03 03:19:55 -05:00
|
|
|
if let Some(ref stacked_borrows) = alloc.extra.stacked_borrows {
|
|
|
|
stacked_borrows.memory_read(ptr, size)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn memory_written<'tcx>(
|
|
|
|
alloc: &mut Allocation<Tag, AllocExtra>,
|
|
|
|
ptr: Pointer<Tag>,
|
|
|
|
size: Size,
|
|
|
|
) -> InterpResult<'tcx> {
|
2019-07-03 03:19:55 -05:00
|
|
|
if let Some(ref mut stacked_borrows) = alloc.extra.stacked_borrows {
|
|
|
|
stacked_borrows.memory_written(ptr, size)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn memory_deallocated<'tcx>(
|
|
|
|
alloc: &mut Allocation<Tag, AllocExtra>,
|
|
|
|
ptr: Pointer<Tag>,
|
|
|
|
size: Size,
|
|
|
|
) -> InterpResult<'tcx> {
|
2019-07-03 03:19:55 -05:00
|
|
|
if let Some(ref mut stacked_borrows) = alloc.extra.stacked_borrows {
|
|
|
|
stacked_borrows.memory_deallocated(ptr, size)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MayLeak for MiriMemoryKind {
|
|
|
|
#[inline(always)]
|
|
|
|
fn may_leak(self) -> bool {
|
|
|
|
use self::MiriMemoryKind::*;
|
|
|
|
match self {
|
2019-07-02 02:03:45 -05:00
|
|
|
Rust | C | WinHeap => false,
|
2019-06-27 16:59:00 -05:00
|
|
|
Env | Static => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|