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::borrow::Cow;
|
2019-06-28 03:16:10 -05:00
|
|
|
use std::cell::RefCell;
|
2022-04-20 04:10:59 -05:00
|
|
|
use std::collections::HashSet;
|
2021-05-16 04:28:01 -05:00
|
|
|
use std::fmt;
|
2020-02-24 09:22:02 -06:00
|
|
|
use std::num::NonZeroU64;
|
2020-03-19 17:00:02 -05:00
|
|
|
use std::time::Instant;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
use rand::rngs::StdRng;
|
2020-10-28 06:23:35 -05:00
|
|
|
use rand::SeedableRng;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2022-03-26 13:29:58 -05:00
|
|
|
use rustc_ast::ast::Mutability;
|
2020-04-05 16:03:44 -05:00
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2022-04-17 20:46:42 -05:00
|
|
|
#[allow(unused)]
|
|
|
|
use rustc_data_structures::static_assert_size;
|
2020-04-05 16:03:44 -05:00
|
|
|
use rustc_middle::{
|
|
|
|
mir,
|
|
|
|
ty::{
|
|
|
|
self,
|
2021-09-06 10:05:48 -05:00
|
|
|
layout::{LayoutCx, LayoutError, LayoutOf, TyAndLayout},
|
2022-03-26 13:29:58 -05:00
|
|
|
Instance, TyCtxt, TypeAndMut,
|
2020-04-05 16:03:44 -05:00
|
|
|
},
|
|
|
|
};
|
2022-03-12 16:23:22 -06:00
|
|
|
use rustc_span::def_id::{CrateNum, DefId};
|
2021-05-16 04:28:01 -05:00
|
|
|
use rustc_span::symbol::{sym, Symbol};
|
2021-09-06 10:05:48 -05:00
|
|
|
use rustc_target::abi::Size;
|
2021-01-11 05:35:13 -06:00
|
|
|
use rustc_target::spec::abi::Abi;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2022-05-10 05:21:01 -05:00
|
|
|
use crate::{shims::posix::FileHandler, *};
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2019-06-29 07:37:41 -05:00
|
|
|
// Some global facts about the emulated machine.
|
2019-10-07 08:39:59 -05:00
|
|
|
pub const PAGE_SIZE: u64 = 4 * 1024; // FIXME: adjust to target architecture
|
|
|
|
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-04-14 20:02:55 -05:00
|
|
|
/// Extra data stored with each stack frame
|
|
|
|
pub struct FrameData<'tcx> {
|
|
|
|
/// Extra data for Stacked Borrows.
|
|
|
|
pub call_id: stacked_borrows::CallId,
|
2019-11-19 07:51:08 -06:00
|
|
|
|
2020-03-14 05:53:09 -05:00
|
|
|
/// If this is Some(), then this is a special "catch unwind" frame (the frame of `try_fn`
|
|
|
|
/// called by `try`). When this frame is popped during unwinding a panic,
|
|
|
|
/// we stop unwinding, use the `CatchUnwindData` to handle catching.
|
|
|
|
pub catch_unwind: Option<CatchUnwindData<'tcx>>,
|
2021-05-08 11:20:51 -05:00
|
|
|
|
2021-05-29 17:09:46 -05:00
|
|
|
/// If `measureme` profiling is enabled, holds timing information
|
|
|
|
/// for the start of this frame. When we finish executing this frame,
|
|
|
|
/// we use this to register a completed event with `measureme`.
|
2021-05-30 10:04:57 -05:00
|
|
|
pub timing: Option<measureme::DetachedTiming>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> std::fmt::Debug for FrameData<'tcx> {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
2021-05-30 10:13:49 -05:00
|
|
|
// Omitting `timing`, it does not support `Debug`.
|
2021-06-20 12:33:05 -05:00
|
|
|
let FrameData { call_id, catch_unwind, timing: _ } = self;
|
2021-05-30 10:04:57 -05:00
|
|
|
f.debug_struct("FrameData")
|
2021-06-20 12:33:05 -05:00
|
|
|
.field("call_id", call_id)
|
|
|
|
.field("catch_unwind", catch_unwind)
|
2021-05-30 10:04:57 -05:00
|
|
|
.finish()
|
|
|
|
}
|
2019-04-14 20:02:55 -05:00
|
|
|
}
|
|
|
|
|
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,
|
2020-07-08 04:05:22 -05:00
|
|
|
/// Memory for args, errno, and other parts of the machine-managed environment.
|
2020-03-28 05:06:56 -05:00
|
|
|
/// This memory may leak.
|
2020-02-23 14:55:02 -06:00
|
|
|
Machine,
|
2022-03-07 11:46:53 -06:00
|
|
|
/// Memory allocated by the runtime (e.g. env vars). Separate from `Machine`
|
|
|
|
/// because we clean it up and leak-check it.
|
|
|
|
Runtime,
|
2020-03-25 03:05:24 -05:00
|
|
|
/// Globals copied from `tcx`.
|
2020-03-28 05:06:56 -05:00
|
|
|
/// This memory may leak.
|
2020-03-25 03:05:24 -05:00
|
|
|
Global,
|
2020-07-08 04:05:22 -05:00
|
|
|
/// Memory for extern statics.
|
|
|
|
/// This memory may leak.
|
2020-07-27 05:53:39 -05:00
|
|
|
ExternStatic,
|
|
|
|
/// Memory for thread-local statics.
|
|
|
|
/// This memory may leak.
|
|
|
|
Tls,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Into<MemoryKind<MiriMemoryKind>> for MiriMemoryKind {
|
|
|
|
#[inline(always)]
|
|
|
|
fn into(self) -> MemoryKind<MiriMemoryKind> {
|
|
|
|
MemoryKind::Machine(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-04 06:35:30 -05:00
|
|
|
impl MayLeak for MiriMemoryKind {
|
|
|
|
#[inline(always)]
|
|
|
|
fn may_leak(self) -> bool {
|
|
|
|
use self::MiriMemoryKind::*;
|
|
|
|
match self {
|
2022-03-07 11:46:53 -06:00
|
|
|
Rust | C | WinHeap | Runtime => false,
|
2020-07-27 05:53:39 -05:00
|
|
|
Machine | Global | ExternStatic | Tls => true,
|
2020-04-04 06:35:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for MiriMemoryKind {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
use self::MiriMemoryKind::*;
|
|
|
|
match self {
|
|
|
|
Rust => write!(f, "Rust heap"),
|
|
|
|
C => write!(f, "C heap"),
|
|
|
|
WinHeap => write!(f, "Windows heap"),
|
|
|
|
Machine => write!(f, "machine-managed memory"),
|
2022-03-07 11:46:53 -06:00
|
|
|
Runtime => write!(f, "language runtime memory"),
|
2020-07-27 05:53:39 -05:00
|
|
|
Global => write!(f, "global (static or const)"),
|
|
|
|
ExternStatic => write!(f, "extern static"),
|
2021-05-16 04:28:01 -05:00
|
|
|
Tls => write!(f, "thread-local static"),
|
2020-04-04 06:35:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-15 13:33:08 -05:00
|
|
|
/// Pointer provenance (tag).
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Tag {
|
|
|
|
pub alloc_id: AllocId,
|
2021-07-18 08:22:09 -05:00
|
|
|
/// Stacked Borrows tag.
|
2021-07-15 13:33:08 -05:00
|
|
|
pub sb: SbTag,
|
|
|
|
}
|
|
|
|
|
2022-04-17 20:46:42 -05:00
|
|
|
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
|
|
|
|
static_assert_size!(Pointer<Tag>, 24);
|
|
|
|
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
|
|
|
|
static_assert_size!(Pointer<Option<Tag>>, 24);
|
|
|
|
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
|
|
|
|
static_assert_size!(ScalarMaybeUninit<Tag>, 32);
|
|
|
|
|
2021-07-15 13:33:08 -05:00
|
|
|
impl Provenance for Tag {
|
2021-07-18 08:22:09 -05:00
|
|
|
/// We use absolute addresses in the `offset` of a `Pointer<Tag>`.
|
2021-07-15 13:33:08 -05:00
|
|
|
const OFFSET_IS_ADDR: bool = true;
|
|
|
|
|
2021-07-18 08:22:09 -05:00
|
|
|
/// We cannot err on partial overwrites, it happens too often in practice (due to unions).
|
2021-07-18 05:47:04 -05:00
|
|
|
const ERR_ON_PARTIAL_PTR_OVERWRITE: bool = false;
|
|
|
|
|
2021-07-15 13:33:08 -05:00
|
|
|
fn fmt(ptr: &Pointer<Self>, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
let (tag, addr) = ptr.into_parts(); // address is absolute
|
|
|
|
write!(f, "0x{:x}", addr.bytes())?;
|
|
|
|
// Forward `alternate` flag to `alloc_id` printing.
|
|
|
|
if f.alternate() {
|
|
|
|
write!(f, "[{:#?}]", tag.alloc_id)?;
|
|
|
|
} else {
|
|
|
|
write!(f, "[{:?}]", tag.alloc_id)?;
|
|
|
|
}
|
|
|
|
// Print Stacked Borrows tag.
|
|
|
|
write!(f, "{:?}", tag.sb)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_alloc_id(self) -> AllocId {
|
|
|
|
self.alloc_id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
/// Extra per-allocation data
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct AllocExtra {
|
2020-02-24 09:22:02 -06:00
|
|
|
/// Stacked Borrows state is only added if it is enabled.
|
2019-07-03 03:19:55 -05:00
|
|
|
pub stacked_borrows: Option<stacked_borrows::AllocExtra>,
|
2020-11-15 12:30:26 -06:00
|
|
|
/// Data race detection via the use of a vector-clock,
|
|
|
|
/// this is only added if it is enabled.
|
|
|
|
pub data_race: Option<data_race::AllocExtra>,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:03:44 -05:00
|
|
|
/// Precomputed layouts of primitive types
|
2020-04-18 10:53:54 -05:00
|
|
|
pub struct PrimitiveLayouts<'tcx> {
|
|
|
|
pub unit: TyAndLayout<'tcx>,
|
|
|
|
pub i8: TyAndLayout<'tcx>,
|
|
|
|
pub i32: TyAndLayout<'tcx>,
|
|
|
|
pub isize: TyAndLayout<'tcx>,
|
|
|
|
pub u8: TyAndLayout<'tcx>,
|
|
|
|
pub u32: TyAndLayout<'tcx>,
|
|
|
|
pub usize: TyAndLayout<'tcx>,
|
2022-03-05 17:46:14 -06:00
|
|
|
pub bool: TyAndLayout<'tcx>,
|
2022-03-26 13:29:58 -05:00
|
|
|
pub mut_raw_ptr: TyAndLayout<'tcx>,
|
2020-03-29 01:38:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'mir, 'tcx: 'mir> PrimitiveLayouts<'tcx> {
|
2020-04-05 16:03:44 -05:00
|
|
|
fn new(layout_cx: LayoutCx<'tcx, TyCtxt<'tcx>>) -> Result<Self, LayoutError<'tcx>> {
|
2022-03-26 13:29:58 -05:00
|
|
|
let tcx = layout_cx.tcx;
|
|
|
|
let mut_raw_ptr = tcx.mk_ptr(TypeAndMut { ty: tcx.types.unit, mutbl: Mutability::Mut });
|
2020-04-05 16:03:44 -05:00
|
|
|
Ok(Self {
|
2022-03-26 13:29:58 -05:00
|
|
|
unit: layout_cx.layout_of(tcx.mk_unit())?,
|
|
|
|
i8: layout_cx.layout_of(tcx.types.i8)?,
|
|
|
|
i32: layout_cx.layout_of(tcx.types.i32)?,
|
|
|
|
isize: layout_cx.layout_of(tcx.types.isize)?,
|
|
|
|
u8: layout_cx.layout_of(tcx.types.u8)?,
|
|
|
|
u32: layout_cx.layout_of(tcx.types.u32)?,
|
|
|
|
usize: layout_cx.layout_of(tcx.types.usize)?,
|
|
|
|
bool: layout_cx.layout_of(tcx.types.bool)?,
|
|
|
|
mut_raw_ptr: layout_cx.layout_of(mut_raw_ptr)?,
|
2020-04-05 16:03:44 -05:00
|
|
|
})
|
2020-03-29 01:38:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
/// The machine itself.
|
2020-04-01 18:55:52 -05:00
|
|
|
pub struct Evaluator<'mir, 'tcx> {
|
2022-04-03 15:12:52 -05:00
|
|
|
pub stacked_borrows: Option<stacked_borrows::GlobalState>,
|
|
|
|
pub data_race: Option<data_race::GlobalState>,
|
|
|
|
pub intptrcast: intptrcast::GlobalState,
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
/// Environment variables set by `setenv`.
|
|
|
|
/// Miri does not expose env vars from the host to the emulated program.
|
2020-03-08 11:54:47 -05:00
|
|
|
pub(crate) env_vars: EnvVars<'tcx>,
|
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.
|
2021-07-15 13:33:08 -05:00
|
|
|
pub(crate) argc: Option<MemPlace<Tag>>,
|
|
|
|
pub(crate) argv: Option<MemPlace<Tag>>,
|
|
|
|
pub(crate) cmd_line: Option<MemPlace<Tag>>,
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
/// TLS state.
|
|
|
|
pub(crate) tls: TlsData<'tcx>,
|
2019-08-06 15:32:57 -05:00
|
|
|
|
2021-05-14 01:40:07 -05:00
|
|
|
/// What should Miri do when an op requires communicating with the host,
|
|
|
|
/// such as accessing host env vars, random number generation, and
|
|
|
|
/// file system access.
|
|
|
|
pub(crate) isolated_op: IsolatedOp,
|
2019-09-24 17:28:00 -05:00
|
|
|
|
2020-02-24 09:25:29 -06:00
|
|
|
/// Whether to enforce the validity invariant.
|
|
|
|
pub(crate) validate: bool,
|
|
|
|
|
2021-10-03 18:28:41 -05:00
|
|
|
/// Whether to enforce validity (e.g., initialization) of integers and floats.
|
|
|
|
pub(crate) enforce_number_validity: bool,
|
|
|
|
|
2021-05-29 12:36:06 -05:00
|
|
|
/// Whether to enforce [ABI](Abi) of function calls.
|
|
|
|
pub(crate) enforce_abi: bool,
|
|
|
|
|
2020-08-13 04:31:52 -05:00
|
|
|
pub(crate) file_handler: shims::posix::FileHandler,
|
2020-06-27 06:19:35 -05:00
|
|
|
pub(crate) dir_handler: shims::posix::DirHandler,
|
2019-04-14 20:02:55 -05:00
|
|
|
|
2020-03-19 17:00:02 -05:00
|
|
|
/// The "time anchor" for this machine's monotone clock (for `Instant` simulation).
|
|
|
|
pub(crate) time_anchor: Instant,
|
2020-03-29 01:38:34 -05:00
|
|
|
|
2020-03-16 18:48:44 -05:00
|
|
|
/// The set of threads.
|
2020-04-09 14:06:33 -05:00
|
|
|
pub(crate) threads: ThreadManager<'mir, 'tcx>,
|
2020-04-01 18:55:52 -05:00
|
|
|
|
2020-04-05 16:03:44 -05:00
|
|
|
/// Precomputed `TyLayout`s for primitive data types that are commonly used inside Miri.
|
|
|
|
pub(crate) layouts: PrimitiveLayouts<'tcx>,
|
2020-07-23 08:47:33 -05:00
|
|
|
|
|
|
|
/// Allocations that are considered roots of static memory (that may leak).
|
|
|
|
pub(crate) static_roots: Vec<AllocId>,
|
2021-05-08 11:20:51 -05:00
|
|
|
|
2021-05-29 17:09:46 -05:00
|
|
|
/// The `measureme` profiler used to record timing information about
|
|
|
|
/// the emulated program.
|
2021-05-30 10:04:57 -05:00
|
|
|
profiler: Option<measureme::Profiler>,
|
2021-05-29 17:09:46 -05:00
|
|
|
/// Used with `profiler` to cache the `StringId`s for event names
|
|
|
|
/// uesd with `measureme`.
|
2021-05-30 10:04:57 -05:00
|
|
|
string_cache: FxHashMap<String, measureme::StringId>,
|
2021-04-15 16:19:23 -05:00
|
|
|
|
|
|
|
/// Cache of `Instance` exported under the given `Symbol` name.
|
2021-06-08 07:36:57 -05:00
|
|
|
/// `None` means no `Instance` exported under the given name is found.
|
|
|
|
pub(crate) exported_symbols_cache: FxHashMap<Symbol, Option<Instance<'tcx>>>,
|
2021-05-26 18:29:01 -05:00
|
|
|
|
|
|
|
/// Whether to raise a panic in the context of the evaluated process when unsupported
|
|
|
|
/// functionality is encountered. If `false`, an error is propagated in the Miri application context
|
|
|
|
/// instead (default behavior)
|
|
|
|
pub(crate) panic_on_unsupported: bool,
|
2022-02-20 10:55:39 -06:00
|
|
|
|
|
|
|
/// Equivalent setting as RUST_BACKTRACE on encountering an error.
|
|
|
|
pub(crate) backtrace_style: BacktraceStyle,
|
2022-03-12 16:23:22 -06:00
|
|
|
|
|
|
|
/// Crates which are considered local for the purposes of error reporting.
|
|
|
|
pub(crate) local_crates: Vec<CrateNum>,
|
2022-04-03 15:12:52 -05:00
|
|
|
|
|
|
|
/// Mapping extern static names to their base pointer.
|
|
|
|
extern_statics: FxHashMap<Symbol, Pointer<Tag>>,
|
|
|
|
|
|
|
|
/// The random number generator used for resolving non-determinism.
|
|
|
|
/// Needs to be queried by ptr_to_int, hence needs interior mutability.
|
|
|
|
pub(crate) rng: RefCell<StdRng>,
|
|
|
|
|
2022-04-20 04:10:59 -05:00
|
|
|
/// The allocation IDs to report when they are being allocated
|
2022-04-03 15:12:52 -05:00
|
|
|
/// (helps for debugging memory leaks and use after free bugs).
|
2022-04-20 04:10:59 -05:00
|
|
|
tracked_alloc_ids: HashSet<AllocId>,
|
2022-04-03 15:12:52 -05:00
|
|
|
|
|
|
|
/// Controls whether alignment of memory accesses is being checked.
|
|
|
|
pub(crate) check_alignment: AlignmentCheck,
|
|
|
|
|
|
|
|
/// Failure rate of compare_exchange_weak, between 0.0 and 1.0
|
|
|
|
pub(crate) cmpxchg_weak_failure_rate: f64,
|
2022-04-25 09:22:55 -05:00
|
|
|
|
2022-04-26 04:33:20 -05:00
|
|
|
/// Corresponds to -Zmiri-mute-stdout-stderr and doesn't write the output but acts as if it succeeded.
|
|
|
|
pub(crate) mute_stdout_stderr: bool,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2020-04-01 18:55:52 -05:00
|
|
|
impl<'mir, 'tcx> Evaluator<'mir, 'tcx> {
|
2021-05-29 17:16:12 -05:00
|
|
|
pub(crate) fn new(config: &MiriConfig, layout_cx: LayoutCx<'tcx, TyCtxt<'tcx>>) -> Self {
|
2022-03-12 16:23:22 -06:00
|
|
|
let local_crates = helpers::get_local_crates(&layout_cx.tcx);
|
2021-05-16 04:28:01 -05:00
|
|
|
let layouts =
|
|
|
|
PrimitiveLayouts::new(layout_cx).expect("Couldn't get layouts of primitive types");
|
2021-05-30 10:04:57 -05:00
|
|
|
let profiler = config.measureme_out.as_ref().map(|out| {
|
|
|
|
measureme::Profiler::new(out).expect("Couldn't create `measureme` profiler")
|
|
|
|
});
|
2022-04-03 15:12:52 -05:00
|
|
|
let rng = StdRng::seed_from_u64(config.seed.unwrap_or(0));
|
|
|
|
let stacked_borrows = if config.stacked_borrows {
|
|
|
|
Some(RefCell::new(stacked_borrows::GlobalStateInner::new(
|
2022-04-20 04:10:59 -05:00
|
|
|
config.tracked_pointer_tags.clone(),
|
|
|
|
config.tracked_call_ids.clone(),
|
2022-04-03 15:12:52 -05:00
|
|
|
config.tag_raw,
|
|
|
|
)))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let data_race =
|
|
|
|
if config.data_race_detector { Some(data_race::GlobalState::new()) } else { None };
|
2019-06-27 16:59:00 -05:00
|
|
|
Evaluator {
|
2022-04-03 15:12:52 -05:00
|
|
|
stacked_borrows,
|
|
|
|
data_race,
|
|
|
|
intptrcast: RefCell::new(intptrcast::GlobalStateInner::new(config)),
|
|
|
|
// `env_vars` depends on a full interpreter so we cannot properly initialize it yet.
|
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,
|
|
|
|
tls: TlsData::default(),
|
2021-05-14 01:40:07 -05:00
|
|
|
isolated_op: config.isolated_op,
|
2021-05-08 11:20:51 -05:00
|
|
|
validate: config.validate,
|
2021-10-03 18:28:41 -05:00
|
|
|
enforce_number_validity: config.check_number_validity,
|
2021-05-29 12:36:06 -05:00
|
|
|
enforce_abi: config.check_abi,
|
2022-04-26 04:33:20 -05:00
|
|
|
file_handler: FileHandler::new(config.mute_stdout_stderr),
|
2020-01-25 12:57:15 -06:00
|
|
|
dir_handler: Default::default(),
|
2020-03-19 17:00:02 -05:00
|
|
|
time_anchor: Instant::now(),
|
2020-04-05 16:03:44 -05:00
|
|
|
layouts,
|
2020-04-19 23:03:23 -05:00
|
|
|
threads: ThreadManager::default(),
|
2020-07-23 08:47:33 -05:00
|
|
|
static_roots: Vec::new(),
|
2021-05-08 11:20:51 -05:00
|
|
|
profiler,
|
|
|
|
string_cache: Default::default(),
|
2021-04-15 16:19:23 -05:00
|
|
|
exported_symbols_cache: FxHashMap::default(),
|
2021-05-26 18:29:01 -05:00
|
|
|
panic_on_unsupported: config.panic_on_unsupported,
|
2022-02-20 10:55:39 -06:00
|
|
|
backtrace_style: config.backtrace_style,
|
2022-03-12 16:23:22 -06:00
|
|
|
local_crates,
|
2022-04-03 15:12:52 -05:00
|
|
|
extern_statics: FxHashMap::default(),
|
|
|
|
rng: RefCell::new(rng),
|
2022-04-20 04:10:59 -05:00
|
|
|
tracked_alloc_ids: config.tracked_alloc_ids.clone(),
|
2022-04-03 15:12:52 -05:00
|
|
|
check_alignment: config.check_alignment,
|
|
|
|
cmpxchg_weak_failure_rate: config.cmpxchg_weak_failure_rate,
|
2022-04-26 04:33:20 -05:00
|
|
|
mute_stdout_stderr: config.mute_stdout_stderr,
|
2022-04-03 15:12:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn late_init(
|
|
|
|
this: &mut MiriEvalContext<'mir, 'tcx>,
|
|
|
|
config: &MiriConfig,
|
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
EnvVars::init(this, config)?;
|
|
|
|
Evaluator::init_extern_statics(this)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_extern_static(
|
|
|
|
this: &mut MiriEvalContext<'mir, 'tcx>,
|
|
|
|
name: &str,
|
|
|
|
ptr: Pointer<Option<Tag>>,
|
|
|
|
) {
|
2022-04-18 11:38:26 -05:00
|
|
|
// This got just allocated, so there definitely is a pointer here.
|
2022-04-03 15:12:52 -05:00
|
|
|
let ptr = ptr.into_pointer_or_addr().unwrap();
|
|
|
|
this.machine.extern_statics.try_insert(Symbol::intern(name), ptr).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets up the "extern statics" for this machine.
|
|
|
|
fn init_extern_statics(this: &mut MiriEvalContext<'mir, 'tcx>) -> InterpResult<'tcx> {
|
|
|
|
match this.tcx.sess.target.os.as_ref() {
|
|
|
|
"linux" => {
|
|
|
|
// "environ"
|
|
|
|
Self::add_extern_static(
|
|
|
|
this,
|
|
|
|
"environ",
|
|
|
|
this.machine.env_vars.environ.unwrap().ptr,
|
|
|
|
);
|
|
|
|
// A couple zero-initialized pointer-sized extern statics.
|
|
|
|
// Most of them are for weak symbols, which we all set to null (indicating that the
|
|
|
|
// symbol is not supported, and triggering fallback code which ends up calling a
|
|
|
|
// syscall that we do support).
|
2022-05-09 04:17:48 -05:00
|
|
|
for name in &["__cxa_thread_atexit_impl", "getrandom", "statx", "__clock_gettime64"]
|
|
|
|
{
|
2022-04-03 15:12:52 -05:00
|
|
|
let layout = this.machine.layouts.usize;
|
|
|
|
let place = this.allocate(layout, MiriMemoryKind::ExternStatic.into())?;
|
|
|
|
this.write_scalar(Scalar::from_machine_usize(0, this), &place.into())?;
|
|
|
|
Self::add_extern_static(this, name, place.ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"windows" => {
|
|
|
|
// "_tls_used"
|
|
|
|
// This is some obscure hack that is part of the Windows TLS story. It's a `u8`.
|
|
|
|
let layout = this.machine.layouts.u8;
|
|
|
|
let place = this.allocate(layout, MiriMemoryKind::ExternStatic.into())?;
|
|
|
|
this.write_scalar(Scalar::from_u8(0), &place.into())?;
|
|
|
|
Self::add_extern_static(this, "_tls_used", place.ptr);
|
|
|
|
}
|
|
|
|
_ => {} // No "extern statics" supported on this target
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
2022-04-03 15:12:52 -05:00
|
|
|
Ok(())
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
2021-05-14 01:40:07 -05:00
|
|
|
|
|
|
|
pub(crate) fn communicate(&self) -> bool {
|
|
|
|
self.isolated_op == IsolatedOp::Allow
|
|
|
|
}
|
2022-03-12 16:23:22 -06:00
|
|
|
|
|
|
|
/// Check whether the stack frame that this `FrameInfo` refers to is part of a local crate.
|
|
|
|
pub(crate) fn is_local(&self, frame: &FrameInfo<'_>) -> bool {
|
|
|
|
let def_id = frame.instance.def_id();
|
|
|
|
def_id.is_local() || self.local_crates.contains(&def_id.krate)
|
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-07-05 16:47:10 -05:00
|
|
|
/// A rustc InterpCx for Miri.
|
2020-04-01 18:55:52 -05:00
|
|
|
pub type MiriEvalContext<'mir, 'tcx> = InterpCx<'mir, 'tcx, Evaluator<'mir, '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> {
|
2019-12-04 03:16:08 -06:00
|
|
|
fn eval_context_ref<'a>(&'a self) -> &'a MiriEvalContext<'mir, 'tcx>;
|
|
|
|
fn eval_context_mut<'a>(&'a mut self) -> &'a mut MiriEvalContext<'mir, 'tcx>;
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
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.
|
2020-04-01 18:55:52 -05:00
|
|
|
impl<'mir, 'tcx> Machine<'mir, 'tcx> for Evaluator<'mir, 'tcx> {
|
2020-03-25 03:05:24 -05:00
|
|
|
type MemoryKind = MiriMemoryKind;
|
2022-04-18 09:20:11 -05:00
|
|
|
type ExtraFnVal = Dlsym;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2019-04-14 20:02:55 -05:00
|
|
|
type FrameExtra = FrameData<'tcx>;
|
2019-06-27 16:59:00 -05:00
|
|
|
type AllocExtra = AllocExtra;
|
2022-04-18 09:20:11 -05:00
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
type PointerTag = Tag;
|
2022-04-18 09:20:11 -05:00
|
|
|
type TagExtra = SbTag;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2019-12-23 05:56:23 -06:00
|
|
|
type MemoryMap =
|
|
|
|
MonoHashMap<AllocId, (MemoryKind<MiriMemoryKind>, Allocation<Tag, Self::AllocExtra>)>;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2020-03-25 03:05:24 -05:00
|
|
|
const GLOBAL_KIND: Option<MiriMemoryKind> = Some(MiriMemoryKind::Global);
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2021-07-04 08:59:55 -05:00
|
|
|
const PANIC_ON_ALLOC_FAIL: bool = false;
|
|
|
|
|
2020-04-13 10:51:22 -05:00
|
|
|
#[inline(always)]
|
2022-04-03 15:12:52 -05:00
|
|
|
fn enforce_alignment(ecx: &MiriEvalContext<'mir, 'tcx>) -> bool {
|
|
|
|
ecx.machine.check_alignment != AlignmentCheck::None
|
2020-08-16 10:08:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2022-04-03 15:12:52 -05:00
|
|
|
fn force_int_for_alignment_check(ecx: &MiriEvalContext<'mir, 'tcx>) -> bool {
|
|
|
|
ecx.machine.check_alignment == AlignmentCheck::Int
|
2020-04-13 10:51:22 -05:00
|
|
|
}
|
2019-08-05 08:49:19 -05:00
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
2022-04-03 15:12:52 -05:00
|
|
|
fn enforce_validity(ecx: &MiriEvalContext<'mir, 'tcx>) -> bool {
|
2020-02-24 09:25:29 -06:00
|
|
|
ecx.machine.validate
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2021-10-03 18:28:41 -05:00
|
|
|
#[inline(always)]
|
2022-04-03 15:12:52 -05:00
|
|
|
fn enforce_number_validity(ecx: &MiriEvalContext<'mir, 'tcx>) -> bool {
|
2021-10-03 18:28:41 -05:00
|
|
|
ecx.machine.enforce_number_validity
|
|
|
|
}
|
|
|
|
|
2021-05-29 12:36:06 -05:00
|
|
|
#[inline(always)]
|
2022-04-03 15:12:52 -05:00
|
|
|
fn enforce_abi(ecx: &MiriEvalContext<'mir, 'tcx>) -> bool {
|
2021-05-29 12:36:06 -05:00
|
|
|
ecx.machine.enforce_abi
|
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
2019-12-04 16:31:39 -06:00
|
|
|
fn find_mir_or_eval_fn(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &mut MiriEvalContext<'mir, 'tcx>,
|
2019-06-27 16:59:00 -05:00
|
|
|
instance: ty::Instance<'tcx>,
|
2021-01-21 20:45:39 -06:00
|
|
|
abi: Abi,
|
2019-06-27 16:59:00 -05:00
|
|
|
args: &[OpTy<'tcx, Tag>],
|
2021-02-19 18:00:00 -06:00
|
|
|
ret: Option<(&PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
|
2021-05-22 09:45:00 -05:00
|
|
|
unwind: StackPopUnwind,
|
2021-11-29 11:48:04 -06:00
|
|
|
) -> InterpResult<'tcx, Option<(&'mir mir::Body<'tcx>, ty::Instance<'tcx>)>> {
|
2021-01-21 20:45:39 -06:00
|
|
|
ecx.find_mir_or_eval_fn(instance, abi, args, ret, unwind)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-06-30 09:03:13 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn call_extra_fn(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &mut MiriEvalContext<'mir, 'tcx>,
|
2019-06-30 09:03:13 -05:00
|
|
|
fn_val: Dlsym,
|
2021-01-21 20:45:39 -06:00
|
|
|
abi: Abi,
|
2019-06-30 09:03:13 -05:00
|
|
|
args: &[OpTy<'tcx, Tag>],
|
2021-02-19 18:00:00 -06:00
|
|
|
ret: Option<(&PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
|
2021-05-22 09:45:00 -05:00
|
|
|
_unwind: StackPopUnwind,
|
2019-06-30 09:03:13 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2021-01-21 20:45:39 -06:00
|
|
|
ecx.call_dlsym(fn_val, abi, args, ret)
|
2019-06-30 09:03:13 -05:00
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn call_intrinsic(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &mut MiriEvalContext<'mir, 'tcx>,
|
2019-06-27 16:59:00 -05:00
|
|
|
instance: ty::Instance<'tcx>,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
2021-02-19 18:00:00 -06:00
|
|
|
ret: Option<(&PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
|
2021-05-22 09:45:00 -05:00
|
|
|
unwind: StackPopUnwind,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2020-03-30 15:54:49 -05:00
|
|
|
ecx.call_intrinsic(instance, args, ret, unwind)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-11-29 03:16:03 -06:00
|
|
|
#[inline(always)]
|
|
|
|
fn assert_panic(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &mut MiriEvalContext<'mir, 'tcx>,
|
2020-02-13 07:01:35 -06:00
|
|
|
msg: &mir::AssertMessage<'tcx>,
|
2019-11-29 03:16:03 -06:00
|
|
|
unwind: Option<mir::BasicBlock>,
|
|
|
|
) -> InterpResult<'tcx> {
|
2020-03-11 14:05:44 -05:00
|
|
|
ecx.assert_panic(msg, unwind)
|
2019-11-29 03:16:03 -06:00
|
|
|
}
|
|
|
|
|
2020-03-12 14:46:58 -05:00
|
|
|
#[inline(always)]
|
2022-04-03 15:12:52 -05:00
|
|
|
fn abort(_ecx: &mut MiriEvalContext<'mir, 'tcx>, msg: String) -> InterpResult<'tcx, !> {
|
2020-12-10 12:53:45 -06:00
|
|
|
throw_machine_stop!(TerminationInfo::Abort(msg))
|
2020-03-12 14:46:58 -05:00
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
2019-07-24 09:17:49 -05:00
|
|
|
fn binary_ptr_op(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &MiriEvalContext<'mir, 'tcx>,
|
2019-06-27 16:59:00 -05:00
|
|
|
bin_op: mir::BinOp,
|
2021-02-19 18:00:00 -06:00
|
|
|
left: &ImmTy<'tcx, Tag>,
|
|
|
|
right: &ImmTy<'tcx, Tag>,
|
2020-04-02 17:05:35 -05:00
|
|
|
) -> InterpResult<'tcx, (Scalar<Tag>, bool, ty::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
|
|
|
}
|
|
|
|
|
2021-07-15 13:33:08 -05:00
|
|
|
fn thread_local_static_base_pointer(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &mut MiriEvalContext<'mir, 'tcx>,
|
2020-06-01 12:23:54 -05:00
|
|
|
def_id: DefId,
|
2021-07-15 13:33:08 -05:00
|
|
|
) -> InterpResult<'tcx, Pointer<Tag>> {
|
|
|
|
ecx.get_or_create_thread_local_alloc(def_id)
|
2020-06-01 12:23:54 -05:00
|
|
|
}
|
|
|
|
|
2021-07-15 13:33:08 -05:00
|
|
|
fn extern_static_base_pointer(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &MiriEvalContext<'mir, 'tcx>,
|
2020-07-26 04:15:01 -05:00
|
|
|
def_id: DefId,
|
2021-07-15 13:33:08 -05:00
|
|
|
) -> InterpResult<'tcx, Pointer<Tag>> {
|
2022-04-03 15:12:52 -05:00
|
|
|
let attrs = ecx.tcx.get_attrs(def_id);
|
Resolve clippy::needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/data_race.rs:565:34
|
565 | this.validate_atomic_rmw(&place, atomic)?;
| ^^^^^^ help: change this to: `place`
|
= note: `-D clippy::needless-borrow` implied by `-D clippy::all`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/data_race.rs:1413:27
|
1413 | clocks.clock.join(&lock);
| ^^^^^ help: change this to: `lock`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/helpers.rs:326:51
|
326 | .size_and_align_of_mplace(&place)?
| ^^^^^^ help: change this to: `place`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/helpers.rs:365:17
|
365 | &self.ecx
| ^^^^^^^^^ help: change this to: `self.ecx`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/helpers.rs:634:47
|
634 | let seconds_place = this.mplace_field(&tp, 0)?;
| ^^^ help: change this to: `tp`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/helpers.rs:637:51
|
637 | let nanoseconds_place = this.mplace_field(&tp, 1)?;
| ^^^ help: change this to: `tp`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/machine.rs:547:73
|
547 | let link_name = match ecx.tcx.sess.first_attr_value_str_by_name(&attrs, sym::link_name) {
| ^^^^^^ help: change this to: `attrs`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/machine.rs:576:56
|
576 | Some(data_race::AllocExtra::new_allocation(&data_race, alloc.size(), kind))
| ^^^^^^^^^^ help: change this to: `data_race`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/foreign_items.rs:241:43
|
241 | .first_attr_value_str_by_name(&attrs, sym::link_name)
| ^^^^^^ help: change this to: `attrs`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/intrinsics.rs:778:61
|
778 | .read_immediate(&this.operand_index(&index, i)?.into())?
| ^^^^^^ help: change this to: `index`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/intrinsics.rs:1195:44
|
1195 | this.write_immediate(*old, &dest)?; // old value is returned
| ^^^^^ help: change this to: `dest`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/intrinsics.rs:1200:44
|
1200 | this.write_immediate(*old, &dest)?; // old value is returned
| ^^^^^ help: change this to: `dest`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:54:12
|
54 | Ok(&self)
| ^^^^^ help: change this to: `self`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:654:49
|
654 | let io_result = maybe_sync_file(&file, *writable, File::sync_all);
| ^^^^^ help: change this to: `file`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:746:52
|
746 | file_descriptor.write(communicate, &bytes)?.map(|c| i64::try_from(c).unwrap());
| ^^^^^^ help: change this to: `bytes`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:1494:45
|
1494 | let io_result = maybe_sync_file(&file, *writable, File::sync_all);
| ^^^^^ help: change this to: `file`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:1516:45
|
1516 | let io_result = maybe_sync_file(&file, *writable, File::sync_data);
| ^^^^^ help: change this to: `file`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:1561:45
|
1561 | let io_result = maybe_sync_file(&file, *writable, File::sync_data);
| ^^^^^ help: change this to: `file`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/env.rs:232:65
|
232 | let var_ptr = alloc_env_var_as_c_str(&name, &value, &mut this)?;
| ^^^^^^^^^ help: change this to: `this`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/env.rs:277:68
|
277 | let var_ptr = alloc_env_var_as_wide_str(&name, &value, &mut this)?;
| ^^^^^^^^^ help: change this to: `this`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/env.rs:328:37
|
328 | let buf = this.read_pointer(&buf_op)?;
| ^^^^^^^ help: change this to: `buf_op`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/env.rs:329:37
|
329 | let size = this.read_scalar(&size_op)?.to_machine_usize(&*this.tcx)?;
| ^^^^^^^^ help: change this to: `size_op`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
2022-04-29 17:40:28 -05:00
|
|
|
let link_name = match ecx.tcx.sess.first_attr_value_str_by_name(attrs, sym::link_name) {
|
2020-04-14 19:21:52 -05:00
|
|
|
Some(name) => name,
|
2022-04-03 15:12:52 -05:00
|
|
|
None => ecx.tcx.item_name(def_id),
|
2020-04-14 19:21:52 -05:00
|
|
|
};
|
2022-04-03 15:12:52 -05:00
|
|
|
if let Some(&ptr) = ecx.machine.extern_statics.get(&link_name) {
|
2021-07-15 13:33:08 -05:00
|
|
|
Ok(ptr)
|
2020-04-14 19:21:52 -05:00
|
|
|
} else {
|
2020-07-26 04:15:01 -05:00
|
|
|
throw_unsup_format!("`extern` static {:?} is not supported by Miri", def_id)
|
2020-02-23 15:32:37 -06:00
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-11-29 12:50:37 -06:00
|
|
|
fn init_allocation_extra<'b>(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &MiriEvalContext<'mir, 'tcx>,
|
2019-06-27 16:59:00 -05:00
|
|
|
id: AllocId,
|
|
|
|
alloc: Cow<'b, Allocation>,
|
2020-03-25 03:05:24 -05:00
|
|
|
kind: Option<MemoryKind<Self::MemoryKind>>,
|
2021-07-15 13:33:08 -05:00
|
|
|
) -> Cow<'b, Allocation<Self::PointerTag, Self::AllocExtra>> {
|
2022-04-20 04:10:59 -05:00
|
|
|
if ecx.machine.tracked_alloc_ids.contains(&id) {
|
2020-03-06 02:11:41 -06:00
|
|
|
register_diagnostic(NonHaltingDiagnostic::CreatedAlloc(id));
|
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
let kind = kind.expect("we set our STATIC_KIND so this cannot be None");
|
|
|
|
let alloc = alloc.into_owned();
|
2022-04-03 15:12:52 -05:00
|
|
|
let stacks = if let Some(stacked_borrows) = &ecx.machine.stacked_borrows {
|
2021-07-15 13:33:08 -05:00
|
|
|
Some(Stacks::new_allocation(id, alloc.size(), stacked_borrows, kind))
|
2021-05-16 04:28:01 -05:00
|
|
|
} else {
|
2021-07-15 13:33:08 -05:00
|
|
|
None
|
2021-05-16 04:28:01 -05:00
|
|
|
};
|
2022-04-03 15:12:52 -05:00
|
|
|
let race_alloc = if let Some(data_race) = &ecx.machine.data_race {
|
Resolve clippy::needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/data_race.rs:565:34
|
565 | this.validate_atomic_rmw(&place, atomic)?;
| ^^^^^^ help: change this to: `place`
|
= note: `-D clippy::needless-borrow` implied by `-D clippy::all`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/data_race.rs:1413:27
|
1413 | clocks.clock.join(&lock);
| ^^^^^ help: change this to: `lock`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/helpers.rs:326:51
|
326 | .size_and_align_of_mplace(&place)?
| ^^^^^^ help: change this to: `place`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/helpers.rs:365:17
|
365 | &self.ecx
| ^^^^^^^^^ help: change this to: `self.ecx`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/helpers.rs:634:47
|
634 | let seconds_place = this.mplace_field(&tp, 0)?;
| ^^^ help: change this to: `tp`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/helpers.rs:637:51
|
637 | let nanoseconds_place = this.mplace_field(&tp, 1)?;
| ^^^ help: change this to: `tp`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/machine.rs:547:73
|
547 | let link_name = match ecx.tcx.sess.first_attr_value_str_by_name(&attrs, sym::link_name) {
| ^^^^^^ help: change this to: `attrs`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/machine.rs:576:56
|
576 | Some(data_race::AllocExtra::new_allocation(&data_race, alloc.size(), kind))
| ^^^^^^^^^^ help: change this to: `data_race`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/foreign_items.rs:241:43
|
241 | .first_attr_value_str_by_name(&attrs, sym::link_name)
| ^^^^^^ help: change this to: `attrs`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/intrinsics.rs:778:61
|
778 | .read_immediate(&this.operand_index(&index, i)?.into())?
| ^^^^^^ help: change this to: `index`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/intrinsics.rs:1195:44
|
1195 | this.write_immediate(*old, &dest)?; // old value is returned
| ^^^^^ help: change this to: `dest`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/intrinsics.rs:1200:44
|
1200 | this.write_immediate(*old, &dest)?; // old value is returned
| ^^^^^ help: change this to: `dest`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:54:12
|
54 | Ok(&self)
| ^^^^^ help: change this to: `self`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:654:49
|
654 | let io_result = maybe_sync_file(&file, *writable, File::sync_all);
| ^^^^^ help: change this to: `file`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:746:52
|
746 | file_descriptor.write(communicate, &bytes)?.map(|c| i64::try_from(c).unwrap());
| ^^^^^^ help: change this to: `bytes`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:1494:45
|
1494 | let io_result = maybe_sync_file(&file, *writable, File::sync_all);
| ^^^^^ help: change this to: `file`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:1516:45
|
1516 | let io_result = maybe_sync_file(&file, *writable, File::sync_data);
| ^^^^^ help: change this to: `file`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/posix/fs.rs:1561:45
|
1561 | let io_result = maybe_sync_file(&file, *writable, File::sync_data);
| ^^^^^ help: change this to: `file`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/env.rs:232:65
|
232 | let var_ptr = alloc_env_var_as_c_str(&name, &value, &mut this)?;
| ^^^^^^^^^ help: change this to: `this`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/env.rs:277:68
|
277 | let var_ptr = alloc_env_var_as_wide_str(&name, &value, &mut this)?;
| ^^^^^^^^^ help: change this to: `this`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/env.rs:328:37
|
328 | let buf = this.read_pointer(&buf_op)?;
| ^^^^^^^ help: change this to: `buf_op`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/shims/env.rs:329:37
|
329 | let size = this.read_scalar(&size_op)?.to_machine_usize(&*this.tcx)?;
| ^^^^^^^^ help: change this to: `size_op`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
2022-04-29 17:40:28 -05:00
|
|
|
Some(data_race::AllocExtra::new_allocation(data_race, alloc.size(), kind))
|
2020-11-15 12:30:26 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2021-07-15 13:33:08 -05:00
|
|
|
let alloc: Allocation<Tag, Self::AllocExtra> = alloc.convert_tag_add_extra(
|
2022-04-03 15:12:52 -05:00
|
|
|
&ecx.tcx,
|
2020-11-01 18:23:27 -06:00
|
|
|
AllocExtra { stacked_borrows: stacks, data_race: race_alloc },
|
2022-04-03 15:12:52 -05:00
|
|
|
|ptr| Evaluator::tag_alloc_base_pointer(ecx, ptr),
|
2019-09-05 11:17:58 -05:00
|
|
|
);
|
2021-07-15 13:33:08 -05:00
|
|
|
Cow::Owned(alloc)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tag_alloc_base_pointer(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &MiriEvalContext<'mir, 'tcx>,
|
2021-07-15 13:33:08 -05:00
|
|
|
ptr: Pointer<AllocId>,
|
|
|
|
) -> Pointer<Tag> {
|
2022-04-03 15:12:52 -05:00
|
|
|
let absolute_addr = intptrcast::GlobalStateInner::rel_ptr_to_addr(ecx, ptr);
|
|
|
|
let sb_tag = if let Some(stacked_borrows) = &ecx.machine.stacked_borrows {
|
2021-07-15 13:33:08 -05:00
|
|
|
stacked_borrows.borrow_mut().base_tag(ptr.provenance)
|
|
|
|
} else {
|
|
|
|
SbTag::Untagged
|
|
|
|
};
|
|
|
|
Pointer::new(Tag { alloc_id: ptr.provenance, sb: sb_tag }, Size::from_bytes(absolute_addr))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn ptr_from_addr(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &MiriEvalContext<'mir, 'tcx>,
|
2021-07-15 13:33:08 -05:00
|
|
|
addr: u64,
|
|
|
|
) -> Pointer<Option<Self::PointerTag>> {
|
2022-04-03 15:12:52 -05:00
|
|
|
intptrcast::GlobalStateInner::ptr_from_addr(addr, ecx)
|
2021-07-15 13:33:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert a pointer with provenance into an allocation-offset pair,
|
|
|
|
/// or a `None` with an absolute address if that conversion is not possible.
|
|
|
|
fn ptr_get_alloc(
|
2022-04-03 15:12:52 -05:00
|
|
|
ecx: &MiriEvalContext<'mir, 'tcx>,
|
2021-07-15 13:33:08 -05:00
|
|
|
ptr: Pointer<Self::PointerTag>,
|
2022-04-18 09:20:11 -05:00
|
|
|
) -> (AllocId, Size, Self::TagExtra) {
|
2022-04-03 15:12:52 -05:00
|
|
|
let rel = intptrcast::GlobalStateInner::abs_ptr_to_rel(ecx, ptr);
|
2022-04-18 09:20:11 -05:00
|
|
|
(ptr.provenance.alloc_id, rel, ptr.provenance.sb)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2020-04-14 18:00:56 -05:00
|
|
|
#[inline(always)]
|
2021-05-17 06:50:45 -05:00
|
|
|
fn memory_read(
|
2022-04-06 17:30:25 -05:00
|
|
|
_tcx: TyCtxt<'tcx>,
|
2022-04-03 15:12:52 -05:00
|
|
|
machine: &Self,
|
2021-05-20 06:32:18 -05:00
|
|
|
alloc_extra: &AllocExtra,
|
2022-04-18 09:20:11 -05:00
|
|
|
(alloc_id, tag): (AllocId, Self::TagExtra),
|
2021-07-15 13:33:08 -05:00
|
|
|
range: AllocRange,
|
2020-04-14 18:00:56 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2021-05-20 06:32:18 -05:00
|
|
|
if let Some(data_race) = &alloc_extra.data_race {
|
2022-04-18 09:20:11 -05:00
|
|
|
data_race.read(alloc_id, range, machine.data_race.as_ref().unwrap())?;
|
2020-04-14 18:00:56 -05:00
|
|
|
}
|
2021-05-20 06:32:18 -05:00
|
|
|
if let Some(stacked_borrows) = &alloc_extra.stacked_borrows {
|
2021-07-15 13:33:08 -05:00
|
|
|
stacked_borrows.memory_read(
|
2022-04-18 09:20:11 -05:00
|
|
|
alloc_id,
|
|
|
|
tag,
|
2021-07-15 13:33:08 -05:00
|
|
|
range,
|
2022-04-03 15:12:52 -05:00
|
|
|
machine.stacked_borrows.as_ref().unwrap(),
|
2021-07-15 13:33:08 -05:00
|
|
|
)
|
2021-05-17 06:50:45 -05:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 06:56:10 -05:00
|
|
|
|
2021-05-17 06:50:45 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn memory_written(
|
2022-04-06 17:30:25 -05:00
|
|
|
_tcx: TyCtxt<'tcx>,
|
2022-04-03 15:12:52 -05:00
|
|
|
machine: &mut Self,
|
2021-05-20 06:32:18 -05:00
|
|
|
alloc_extra: &mut AllocExtra,
|
2022-04-18 09:20:11 -05:00
|
|
|
(alloc_id, tag): (AllocId, Self::TagExtra),
|
2021-07-15 13:33:08 -05:00
|
|
|
range: AllocRange,
|
2021-05-17 06:50:45 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2021-05-20 06:32:18 -05:00
|
|
|
if let Some(data_race) = &mut alloc_extra.data_race {
|
2022-04-18 09:20:11 -05:00
|
|
|
data_race.write(alloc_id, range, machine.data_race.as_mut().unwrap())?;
|
2021-05-17 06:50:45 -05:00
|
|
|
}
|
2021-05-20 06:32:18 -05:00
|
|
|
if let Some(stacked_borrows) = &mut alloc_extra.stacked_borrows {
|
2021-05-22 07:55:33 -05:00
|
|
|
stacked_borrows.memory_written(
|
2022-04-18 09:20:11 -05:00
|
|
|
alloc_id,
|
|
|
|
tag,
|
2021-07-15 13:33:08 -05:00
|
|
|
range,
|
2022-04-03 15:12:52 -05:00
|
|
|
machine.stacked_borrows.as_mut().unwrap(),
|
2021-05-22 07:55:33 -05:00
|
|
|
)
|
2021-05-17 06:50:45 -05:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn memory_deallocated(
|
2022-04-06 17:30:25 -05:00
|
|
|
_tcx: TyCtxt<'tcx>,
|
2022-04-03 15:12:52 -05:00
|
|
|
machine: &mut Self,
|
2021-05-20 06:32:18 -05:00
|
|
|
alloc_extra: &mut AllocExtra,
|
2022-04-18 09:20:11 -05:00
|
|
|
(alloc_id, tag): (AllocId, Self::TagExtra),
|
2021-07-15 13:33:08 -05:00
|
|
|
range: AllocRange,
|
2021-05-17 06:50:45 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2022-04-20 04:10:59 -05:00
|
|
|
if machine.tracked_alloc_ids.contains(&alloc_id) {
|
2022-04-18 09:20:11 -05:00
|
|
|
register_diagnostic(NonHaltingDiagnostic::FreedAlloc(alloc_id));
|
2021-05-17 06:50:45 -05:00
|
|
|
}
|
2021-05-20 06:32:18 -05:00
|
|
|
if let Some(data_race) = &mut alloc_extra.data_race {
|
2022-04-18 09:20:11 -05:00
|
|
|
data_race.deallocate(alloc_id, range, machine.data_race.as_mut().unwrap())?;
|
2021-05-17 06:50:45 -05:00
|
|
|
}
|
2021-05-20 06:32:18 -05:00
|
|
|
if let Some(stacked_borrows) = &mut alloc_extra.stacked_borrows {
|
2021-05-22 07:55:33 -05:00
|
|
|
stacked_borrows.memory_deallocated(
|
2022-04-18 09:20:11 -05:00
|
|
|
alloc_id,
|
|
|
|
tag,
|
2021-07-15 13:33:08 -05:00
|
|
|
range,
|
2022-04-03 15:12:52 -05:00
|
|
|
machine.stacked_borrows.as_mut().unwrap(),
|
2021-05-22 07:55:33 -05:00
|
|
|
)
|
2021-05-17 06:50:45 -05:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-14 18:00:56 -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,
|
2021-02-19 18:00:00 -06:00
|
|
|
place: &PlaceTy<'tcx, Tag>,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2022-04-03 15:12:52 -05:00
|
|
|
if ecx.machine.stacked_borrows.is_some() { ecx.retag(kind, place) } else { Ok(()) }
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2020-04-13 09:08:12 -05:00
|
|
|
fn init_frame_extra(
|
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
|
|
|
frame: Frame<'mir, 'tcx, Tag>,
|
|
|
|
) -> InterpResult<'tcx, Frame<'mir, 'tcx, Tag, FrameData<'tcx>>> {
|
2021-05-29 17:09:46 -05:00
|
|
|
// Start recording our event before doing anything else
|
2021-05-08 11:20:51 -05:00
|
|
|
let timing = if let Some(profiler) = ecx.machine.profiler.as_ref() {
|
|
|
|
let fn_name = frame.instance.to_string();
|
|
|
|
let entry = ecx.machine.string_cache.entry(fn_name.clone());
|
2021-05-29 17:16:12 -05:00
|
|
|
let name = entry.or_insert_with(|| profiler.alloc_string(&*fn_name));
|
2021-05-08 11:20:51 -05:00
|
|
|
|
|
|
|
Some(profiler.start_recording_interval_event_detached(
|
2021-05-29 17:09:46 -05:00
|
|
|
*name,
|
2021-05-30 10:04:57 -05:00
|
|
|
measureme::EventId::from_label(*name),
|
2021-05-29 17:09:46 -05:00
|
|
|
ecx.get_active_thread().to_u32(),
|
2021-05-08 11:20:51 -05:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2022-04-03 15:12:52 -05:00
|
|
|
let stacked_borrows = ecx.machine.stacked_borrows.as_ref();
|
2021-05-29 17:09:46 -05:00
|
|
|
let call_id = stacked_borrows.map_or(NonZeroU64::new(1).unwrap(), |stacked_borrows| {
|
|
|
|
stacked_borrows.borrow_mut().new_call()
|
|
|
|
});
|
|
|
|
|
2021-05-08 11:20:51 -05:00
|
|
|
let extra = FrameData { call_id, catch_unwind: None, timing };
|
2020-04-13 09:08:12 -05:00
|
|
|
Ok(frame.with_extra(extra))
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2020-04-14 19:21:52 -05:00
|
|
|
fn stack<'a>(
|
2021-05-16 04:28:01 -05:00
|
|
|
ecx: &'a InterpCx<'mir, 'tcx, Self>,
|
2020-04-14 19:21:52 -05:00
|
|
|
) -> &'a [Frame<'mir, 'tcx, Self::PointerTag, Self::FrameExtra>] {
|
|
|
|
ecx.active_thread_stack()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn stack_mut<'a>(
|
2021-05-16 04:28:01 -05:00
|
|
|
ecx: &'a mut InterpCx<'mir, 'tcx, Self>,
|
2020-04-14 19:21:52 -05:00
|
|
|
) -> &'a mut Vec<Frame<'mir, 'tcx, Self::PointerTag, Self::FrameExtra>> {
|
|
|
|
ecx.active_thread_stack_mut()
|
|
|
|
}
|
|
|
|
|
2020-04-13 10:31:19 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn after_stack_push(ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx> {
|
2022-04-03 15:12:52 -05:00
|
|
|
if ecx.machine.stacked_borrows.is_some() { ecx.retag_return_place() } else { Ok(()) }
|
2020-04-13 10:31:19 -05:00
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
2020-04-13 09:08:12 -05:00
|
|
|
fn after_stack_pop(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2021-05-08 11:20:51 -05:00
|
|
|
mut frame: Frame<'mir, 'tcx, Tag, FrameData<'tcx>>,
|
2019-12-23 05:56:23 -06:00
|
|
|
unwinding: bool,
|
2020-03-14 05:53:09 -05:00
|
|
|
) -> InterpResult<'tcx, StackPopJump> {
|
2021-05-08 11:20:51 -05:00
|
|
|
let timing = frame.extra.timing.take();
|
|
|
|
let res = ecx.handle_stack_pop(frame.extra, unwinding);
|
|
|
|
if let Some(profiler) = ecx.machine.profiler.as_ref() {
|
|
|
|
profiler.finish_recording_interval_event(timing.unwrap());
|
|
|
|
}
|
|
|
|
res
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|