2016-09-19 02:19:31 -06:00
|
|
|
use rustc::middle::const_val::ConstVal;
|
2016-04-14 00:01:00 +02:00
|
|
|
use rustc::hir::def_id::DefId;
|
2016-02-18 19:06:22 -06:00
|
|
|
use rustc::mir::mir_map::MirMap;
|
2016-03-07 10:14:47 -06:00
|
|
|
use rustc::mir::repr as mir;
|
2016-08-27 01:44:46 -06:00
|
|
|
use rustc::traits::Reveal;
|
2016-04-23 00:03:59 -06:00
|
|
|
use rustc::ty::layout::{self, Layout, Size};
|
2016-03-28 17:43:23 -06:00
|
|
|
use rustc::ty::subst::{self, Subst, Substs};
|
2016-09-08 10:25:45 +02:00
|
|
|
use rustc::ty::{self, Ty, TyCtxt, TypeFoldable};
|
2016-09-27 17:02:04 +02:00
|
|
|
use rustc::session::Session;
|
2016-03-13 17:19:42 -06:00
|
|
|
use rustc::util::nodemap::DefIdMap;
|
2016-06-11 12:38:28 -06:00
|
|
|
use rustc_data_structures::indexed_vec::Idx;
|
2016-03-13 17:19:42 -06:00
|
|
|
use std::cell::RefCell;
|
2016-06-09 16:01:53 +02:00
|
|
|
use std::ops::Deref;
|
2016-03-13 17:19:42 -06:00
|
|
|
use std::rc::Rc;
|
2016-06-23 01:03:58 -06:00
|
|
|
use std::iter;
|
|
|
|
use syntax::codemap::{self, DUMMY_SP};
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2016-03-18 23:03:46 -06:00
|
|
|
use error::{EvalError, EvalResult};
|
2016-09-09 17:44:04 +02:00
|
|
|
use memory::{Memory, Pointer, AllocId};
|
2016-03-18 23:03:46 -06:00
|
|
|
use primval::{self, PrimVal};
|
2016-09-23 10:27:14 +02:00
|
|
|
use self::value::Value;
|
2016-03-05 00:23:37 -06:00
|
|
|
|
2016-06-02 17:05:17 +02:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2016-06-23 00:04:10 -06:00
|
|
|
mod step;
|
2016-06-23 01:03:58 -06:00
|
|
|
mod terminator;
|
2016-09-07 18:34:59 +02:00
|
|
|
mod cast;
|
2016-09-09 12:51:14 +02:00
|
|
|
mod vtable;
|
2016-09-23 10:27:14 +02:00
|
|
|
mod value;
|
2016-06-01 17:05:20 +02:00
|
|
|
|
2016-06-10 16:20:17 +02:00
|
|
|
pub struct EvalContext<'a, 'tcx: 'a> {
|
2016-03-14 21:18:39 -06:00
|
|
|
/// The results of the type checker, from rustc.
|
2016-05-13 22:34:50 -06:00
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
2016-03-14 21:18:39 -06:00
|
|
|
|
2016-09-27 17:02:04 +02:00
|
|
|
/// The Session, from rustc.
|
|
|
|
/// Used to extract info from other crates
|
|
|
|
session: &'a Session,
|
|
|
|
|
2016-03-14 21:18:39 -06:00
|
|
|
/// A mapping from NodeIds to Mir, from rustc. Only contains MIR for crate-local items.
|
|
|
|
mir_map: &'a MirMap<'tcx>,
|
|
|
|
|
|
|
|
/// A local cache from DefIds to Mir for non-crate-local items.
|
|
|
|
mir_cache: RefCell<DefIdMap<Rc<mir::Mir<'tcx>>>>,
|
|
|
|
|
|
|
|
/// The virtual memory system.
|
2016-06-23 09:36:24 +02:00
|
|
|
memory: Memory<'a, 'tcx>,
|
2016-03-14 21:18:39 -06:00
|
|
|
|
2016-06-14 20:13:59 -06:00
|
|
|
/// Precomputed statics, constants and promoteds.
|
2016-06-03 17:41:36 +02:00
|
|
|
statics: HashMap<ConstantId<'tcx>, Pointer>,
|
2016-05-09 18:21:21 -06:00
|
|
|
|
|
|
|
/// The virtual call stack.
|
2016-06-09 16:01:53 +02:00
|
|
|
stack: Vec<Frame<'a, 'tcx>>,
|
2016-07-05 13:23:58 +02:00
|
|
|
|
|
|
|
/// The maximum number of stack frames allowed
|
|
|
|
stack_limit: usize,
|
2016-05-09 18:21:21 -06:00
|
|
|
}
|
|
|
|
|
2016-03-06 04:23:24 -06:00
|
|
|
/// A stack frame.
|
2016-06-10 13:01:51 +02:00
|
|
|
pub struct Frame<'a, 'tcx: 'a> {
|
2016-06-14 20:13:59 -06:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Function and callsite information
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2016-06-02 18:21:32 +02:00
|
|
|
|
2016-06-14 20:13:59 -06:00
|
|
|
/// The MIR for the function called on this frame.
|
|
|
|
pub mir: CachedMir<'a, 'tcx>,
|
|
|
|
|
|
|
|
/// The def_id of the current function.
|
|
|
|
pub def_id: DefId,
|
2016-06-02 18:21:32 +02:00
|
|
|
|
2016-06-14 20:13:59 -06:00
|
|
|
/// type substitutions for the current function invocation.
|
2016-06-10 13:01:51 +02:00
|
|
|
pub substs: &'tcx Substs<'tcx>,
|
2016-06-02 18:21:32 +02:00
|
|
|
|
2016-06-14 20:13:59 -06:00
|
|
|
/// The span of the call site.
|
|
|
|
pub span: codemap::Span,
|
2016-03-07 07:10:52 -06:00
|
|
|
|
2016-06-14 20:13:59 -06:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Return pointer and local allocations
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2016-03-14 20:39:51 -06:00
|
|
|
|
2016-03-14 21:18:39 -06:00
|
|
|
/// A pointer for writing the return value of the current call if it's not a diverging call.
|
2016-06-10 13:01:51 +02:00
|
|
|
pub return_ptr: Option<Pointer>,
|
2016-02-27 19:20:25 -06:00
|
|
|
|
2016-07-06 17:55:05 +02:00
|
|
|
/// The block to return to when returning from the current stack frame
|
2016-09-09 17:44:04 +02:00
|
|
|
pub return_to_block: StackPopCleanup,
|
2016-07-06 17:55:05 +02:00
|
|
|
|
2016-03-06 04:23:24 -06:00
|
|
|
/// The list of locals for the current function, stored in order as
|
|
|
|
/// `[arguments..., variables..., temporaries...]`. The variables begin at `self.var_offset`
|
|
|
|
/// and the temporaries at `self.temp_offset`.
|
2016-06-10 13:01:51 +02:00
|
|
|
pub locals: Vec<Pointer>,
|
2016-02-27 19:20:25 -06:00
|
|
|
|
2016-03-06 04:23:24 -06:00
|
|
|
/// The offset of the first variable in `self.locals`.
|
2016-06-10 13:01:51 +02:00
|
|
|
pub var_offset: usize,
|
2016-02-27 19:20:25 -06:00
|
|
|
|
2016-03-06 04:23:24 -06:00
|
|
|
/// The offset of the first temporary in `self.locals`.
|
2016-06-10 13:01:51 +02:00
|
|
|
pub temp_offset: usize,
|
2016-06-02 17:05:17 +02:00
|
|
|
|
2016-06-14 20:13:59 -06:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Current position within the function
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// The block that is currently executed (or will be executed after the above call stacks
|
|
|
|
/// return).
|
|
|
|
pub block: mir::BasicBlock,
|
|
|
|
|
|
|
|
/// The index of the currently evaluated statment.
|
2016-06-10 13:01:51 +02:00
|
|
|
pub stmt: usize,
|
2016-03-06 04:23:24 -06:00
|
|
|
}
|
2016-02-27 19:20:25 -06:00
|
|
|
|
2016-09-27 10:14:53 +02:00
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
|
|
|
struct Lvalue {
|
|
|
|
ptr: Pointer,
|
|
|
|
extra: LvalueExtra,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
|
|
|
enum LvalueExtra {
|
|
|
|
None,
|
|
|
|
Length(u64),
|
|
|
|
Vtable(Pointer),
|
|
|
|
DowncastVariant(usize),
|
|
|
|
}
|
|
|
|
|
2016-03-14 21:48:00 -06:00
|
|
|
#[derive(Clone)]
|
2016-06-10 13:01:51 +02:00
|
|
|
pub enum CachedMir<'mir, 'tcx: 'mir> {
|
2016-03-14 21:48:00 -06:00
|
|
|
Ref(&'mir mir::Mir<'tcx>),
|
|
|
|
Owned(Rc<mir::Mir<'tcx>>)
|
|
|
|
}
|
|
|
|
|
2016-06-02 17:05:17 +02:00
|
|
|
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
|
2016-06-08 12:35:15 +02:00
|
|
|
/// Uniquely identifies a specific constant or static
|
2016-06-08 11:46:37 +02:00
|
|
|
struct ConstantId<'tcx> {
|
2016-06-08 12:35:15 +02:00
|
|
|
/// the def id of the constant/static or in case of promoteds, the def id of the function they belong to
|
2016-06-08 11:46:37 +02:00
|
|
|
def_id: DefId,
|
2016-06-08 12:35:15 +02:00
|
|
|
/// In case of statics and constants this is `Substs::empty()`, so only promoteds and associated
|
|
|
|
/// constants actually have something useful here. We could special case statics and constants,
|
|
|
|
/// but that would only require more branching when working with constants, and not bring any
|
|
|
|
/// real benefits.
|
2016-06-08 11:46:37 +02:00
|
|
|
substs: &'tcx Substs<'tcx>,
|
|
|
|
kind: ConstantKind,
|
2016-06-02 17:05:17 +02:00
|
|
|
}
|
|
|
|
|
2016-06-08 11:46:37 +02:00
|
|
|
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
|
|
|
|
enum ConstantKind {
|
2016-06-11 12:38:28 -06:00
|
|
|
Promoted(mir::Promoted),
|
2016-06-08 12:35:15 +02:00
|
|
|
/// Statics, constants and associated constants
|
|
|
|
Global,
|
2016-06-03 17:41:36 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 17:44:04 +02:00
|
|
|
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
|
|
|
|
pub enum StackPopCleanup {
|
|
|
|
/// The stackframe existed to compute the initial value of a static/constant, make sure the
|
|
|
|
/// static isn't modifyable afterwards
|
|
|
|
Freeze(AllocId),
|
|
|
|
/// A regular stackframe added due to a function call will need to get forwarded to the next
|
|
|
|
/// block
|
|
|
|
Goto(mir::BasicBlock),
|
|
|
|
/// The main function and diverging functions have nowhere to return to
|
|
|
|
None,
|
|
|
|
}
|
|
|
|
|
2016-06-10 16:20:17 +02:00
|
|
|
impl<'a, 'tcx> EvalContext<'a, 'tcx> {
|
2016-09-27 17:02:04 +02:00
|
|
|
pub fn new(tcx: TyCtxt<'a, 'tcx, 'tcx>, mir_map: &'a MirMap<'tcx>, memory_size: usize, stack_limit: usize, session: &'a Session) -> Self {
|
2016-06-10 16:20:17 +02:00
|
|
|
EvalContext {
|
2015-11-19 07:07:47 -06:00
|
|
|
tcx: tcx,
|
|
|
|
mir_map: mir_map,
|
2016-03-13 17:19:42 -06:00
|
|
|
mir_cache: RefCell::new(DefIdMap()),
|
2016-07-05 13:04:46 +02:00
|
|
|
memory: Memory::new(&tcx.data_layout, memory_size),
|
2016-06-03 17:41:36 +02:00
|
|
|
statics: HashMap::new(),
|
2016-06-09 16:01:53 +02:00
|
|
|
stack: Vec::new(),
|
2016-07-07 11:20:46 +02:00
|
|
|
stack_limit: stack_limit,
|
2016-09-27 17:02:04 +02:00
|
|
|
session: session,
|
2016-03-06 04:23:24 -06:00
|
|
|
}
|
|
|
|
}
|
2016-06-01 14:33:37 +02:00
|
|
|
|
2016-08-27 01:44:46 -06:00
|
|
|
pub fn alloc_ret_ptr(&mut self, ty: Ty<'tcx>, substs: &'tcx Substs<'tcx>) -> EvalResult<'tcx, Pointer> {
|
|
|
|
let size = self.type_size_with_substs(ty, substs);
|
|
|
|
let align = self.type_align_with_substs(ty, substs);
|
|
|
|
self.memory.allocate(size, align)
|
2016-06-08 09:38:59 +02:00
|
|
|
}
|
2016-06-08 11:11:08 +02:00
|
|
|
|
2016-06-30 11:29:25 +02:00
|
|
|
pub fn memory(&self) -> &Memory<'a, 'tcx> {
|
2016-06-10 13:01:51 +02:00
|
|
|
&self.memory
|
|
|
|
}
|
|
|
|
|
2016-06-23 09:36:24 +02:00
|
|
|
pub fn memory_mut(&mut self) -> &mut Memory<'a, 'tcx> {
|
2016-06-15 12:55:04 +02:00
|
|
|
&mut self.memory
|
|
|
|
}
|
|
|
|
|
2016-06-30 11:29:25 +02:00
|
|
|
pub fn stack(&self) -> &[Frame<'a, 'tcx>] {
|
2016-06-10 13:01:51 +02:00
|
|
|
&self.stack
|
|
|
|
}
|
|
|
|
|
2016-09-19 04:38:51 -06:00
|
|
|
fn target_isize_primval(&self, n: i64) -> PrimVal {
|
|
|
|
match self.memory.pointer_size() {
|
|
|
|
1 => PrimVal::I8(n as i8),
|
|
|
|
2 => PrimVal::I16(n as i16),
|
|
|
|
4 => PrimVal::I32(n as i32),
|
|
|
|
8 => PrimVal::I64(n as i64),
|
|
|
|
p => bug!("unsupported target pointer size: {}", p),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn target_usize_primval(&self, n: u64) -> PrimVal {
|
|
|
|
match self.memory.pointer_size() {
|
|
|
|
1 => PrimVal::U8(n as u8),
|
|
|
|
2 => PrimVal::U16(n as u16),
|
|
|
|
4 => PrimVal::U32(n as u32),
|
|
|
|
8 => PrimVal::U64(n as u64),
|
|
|
|
p => bug!("unsupported target pointer size: {}", p),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-26 17:49:30 +02:00
|
|
|
fn str_to_value(&mut self, s: &str) -> EvalResult<'tcx, Value> {
|
2016-09-23 10:38:30 +02:00
|
|
|
// FIXME: cache these allocs
|
|
|
|
let ptr = self.memory.allocate(s.len(), 1)?;
|
|
|
|
self.memory.write_bytes(ptr, s.as_bytes())?;
|
|
|
|
self.memory.freeze(ptr.alloc_id)?;
|
2016-09-26 17:49:30 +02:00
|
|
|
Ok(Value::ByValPair(PrimVal::Ptr(ptr), self.target_usize_primval(s.len() as u64)))
|
2016-09-23 10:38:30 +02:00
|
|
|
}
|
|
|
|
|
2016-09-26 17:49:30 +02:00
|
|
|
fn const_to_value(&mut self, const_val: &ConstVal) -> EvalResult<'tcx, Value> {
|
2016-06-08 09:38:59 +02:00
|
|
|
use rustc::middle::const_val::ConstVal::*;
|
2016-07-05 09:08:24 +02:00
|
|
|
use rustc_const_math::{ConstInt, ConstIsize, ConstUsize, ConstFloat};
|
2016-09-19 02:19:31 -06:00
|
|
|
|
|
|
|
let primval = match *const_val {
|
2016-09-23 10:38:30 +02:00
|
|
|
Integral(ConstInt::I8(i)) => PrimVal::I8(i),
|
|
|
|
Integral(ConstInt::U8(i)) => PrimVal::U8(i),
|
2016-07-07 13:19:17 +02:00
|
|
|
Integral(ConstInt::Isize(ConstIsize::Is16(i))) |
|
2016-09-23 10:38:30 +02:00
|
|
|
Integral(ConstInt::I16(i)) => PrimVal::I16(i),
|
2016-07-07 13:19:17 +02:00
|
|
|
Integral(ConstInt::Usize(ConstUsize::Us16(i))) |
|
2016-09-23 10:38:30 +02:00
|
|
|
Integral(ConstInt::U16(i)) => PrimVal::U16(i),
|
2016-07-07 13:19:17 +02:00
|
|
|
Integral(ConstInt::Isize(ConstIsize::Is32(i))) |
|
2016-09-23 10:38:30 +02:00
|
|
|
Integral(ConstInt::I32(i)) => PrimVal::I32(i),
|
2016-07-07 13:19:17 +02:00
|
|
|
Integral(ConstInt::Usize(ConstUsize::Us32(i))) |
|
2016-09-23 10:38:30 +02:00
|
|
|
Integral(ConstInt::U32(i)) => PrimVal::U32(i),
|
2016-07-07 13:19:17 +02:00
|
|
|
Integral(ConstInt::Isize(ConstIsize::Is64(i))) |
|
2016-09-23 10:38:30 +02:00
|
|
|
Integral(ConstInt::I64(i)) => PrimVal::I64(i),
|
2016-07-07 13:19:17 +02:00
|
|
|
Integral(ConstInt::Usize(ConstUsize::Us64(i))) |
|
2016-09-23 10:38:30 +02:00
|
|
|
Integral(ConstInt::U64(i)) => PrimVal::U64(i),
|
|
|
|
Float(ConstFloat::F32(f)) => PrimVal::F32(f),
|
|
|
|
Float(ConstFloat::F64(f)) => PrimVal::F64(f),
|
|
|
|
Bool(b) => PrimVal::Bool(b),
|
|
|
|
Char(c) => PrimVal::Char(c),
|
|
|
|
|
2016-09-26 17:49:30 +02:00
|
|
|
Str(ref s) => return self.str_to_value(s),
|
2016-09-19 02:19:31 -06:00
|
|
|
|
2016-06-08 09:38:59 +02:00
|
|
|
ByteStr(ref bs) => {
|
2016-09-19 03:35:35 -06:00
|
|
|
let ptr = self.memory.allocate(bs.len(), 1)?;
|
|
|
|
self.memory.write_bytes(ptr, bs)?;
|
2016-09-19 04:10:18 -06:00
|
|
|
self.memory.freeze(ptr.alloc_id)?;
|
2016-09-23 10:38:30 +02:00
|
|
|
PrimVal::Ptr(ptr)
|
2016-06-08 09:38:59 +02:00
|
|
|
}
|
2016-09-19 02:19:31 -06:00
|
|
|
|
|
|
|
Struct(_) => unimplemented!(),
|
|
|
|
Tuple(_) => unimplemented!(),
|
|
|
|
Function(_) => unimplemented!(),
|
|
|
|
Array(_, _) => unimplemented!(),
|
|
|
|
Repeat(_, _) => unimplemented!(),
|
|
|
|
Dummy => unimplemented!(),
|
|
|
|
|
|
|
|
Float(ConstFloat::FInfer{..}) |
|
|
|
|
Integral(ConstInt::Infer(_)) |
|
|
|
|
Integral(ConstInt::InferSigned(_)) =>
|
|
|
|
bug!("uninferred constants only exist before typeck"),
|
|
|
|
};
|
|
|
|
|
2016-09-26 17:49:30 +02:00
|
|
|
Ok(Value::ByVal(primval))
|
2016-06-08 09:38:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn type_is_sized(&self, ty: Ty<'tcx>) -> bool {
|
2016-09-07 18:34:59 +02:00
|
|
|
// generics are weird, don't run this function on a generic
|
2016-09-08 10:25:45 +02:00
|
|
|
assert!(!ty.needs_subst());
|
2016-06-08 09:38:59 +02:00
|
|
|
ty.is_sized(self.tcx, &self.tcx.empty_parameter_environment(), DUMMY_SP)
|
|
|
|
}
|
|
|
|
|
2016-09-27 17:01:06 +02:00
|
|
|
pub fn load_mir(&self, def_id: DefId) -> EvalResult<'tcx, CachedMir<'a, 'tcx>> {
|
|
|
|
trace!("load mir {:?}", def_id);
|
2016-08-27 01:44:46 -06:00
|
|
|
if def_id.is_local() {
|
2016-09-27 17:01:06 +02:00
|
|
|
Ok(CachedMir::Ref(self.mir_map.map.get(&def_id).unwrap()))
|
2016-08-27 01:44:46 -06:00
|
|
|
} else {
|
|
|
|
let mut mir_cache = self.mir_cache.borrow_mut();
|
|
|
|
if let Some(mir) = mir_cache.get(&def_id) {
|
2016-09-27 17:01:06 +02:00
|
|
|
return Ok(CachedMir::Owned(mir.clone()));
|
2016-06-06 15:22:33 +02:00
|
|
|
}
|
2016-08-27 01:44:46 -06:00
|
|
|
|
|
|
|
let cs = &self.tcx.sess.cstore;
|
2016-09-27 17:01:06 +02:00
|
|
|
match cs.maybe_get_item_mir(self.tcx, def_id) {
|
|
|
|
Some(mir) => {
|
|
|
|
let cached = Rc::new(mir);
|
|
|
|
mir_cache.insert(def_id, cached.clone());
|
|
|
|
Ok(CachedMir::Owned(cached))
|
|
|
|
},
|
|
|
|
None => Err(EvalError::NoMirFor(self.tcx.item_path_str(def_id))),
|
|
|
|
}
|
2016-06-06 15:22:33 +02:00
|
|
|
}
|
|
|
|
}
|
2016-06-08 11:11:08 +02:00
|
|
|
|
2016-09-27 18:01:33 +02:00
|
|
|
pub fn monomorphize_field_ty(&self, f: ty::FieldDef<'tcx>, substs: &'tcx Substs<'tcx>) -> Ty<'tcx> {
|
|
|
|
let substituted = &f.ty(self.tcx, substs);
|
|
|
|
self.tcx.normalize_associated_type(&substituted)
|
|
|
|
}
|
|
|
|
|
2016-06-30 11:29:25 +02:00
|
|
|
pub fn monomorphize(&self, ty: Ty<'tcx>, substs: &'tcx Substs<'tcx>) -> Ty<'tcx> {
|
2016-06-08 11:11:08 +02:00
|
|
|
let substituted = ty.subst(self.tcx, substs);
|
|
|
|
self.tcx.normalize_associated_type(&substituted)
|
|
|
|
}
|
|
|
|
|
2016-06-13 11:24:01 +02:00
|
|
|
fn type_size(&self, ty: Ty<'tcx>) -> usize {
|
|
|
|
self.type_size_with_substs(ty, self.substs())
|
2016-06-08 11:11:08 +02:00
|
|
|
}
|
|
|
|
|
2016-07-05 14:27:27 +02:00
|
|
|
fn type_align(&self, ty: Ty<'tcx>) -> usize {
|
|
|
|
self.type_align_with_substs(ty, self.substs())
|
|
|
|
}
|
|
|
|
|
2016-06-13 11:24:01 +02:00
|
|
|
fn type_size_with_substs(&self, ty: Ty<'tcx>, substs: &'tcx Substs<'tcx>) -> usize {
|
|
|
|
self.type_layout_with_substs(ty, substs).size(&self.tcx.data_layout).bytes() as usize
|
|
|
|
}
|
|
|
|
|
2016-07-05 14:27:27 +02:00
|
|
|
fn type_align_with_substs(&self, ty: Ty<'tcx>, substs: &'tcx Substs<'tcx>) -> usize {
|
2016-07-06 10:58:26 +02:00
|
|
|
self.type_layout_with_substs(ty, substs).align(&self.tcx.data_layout).abi() as usize
|
2016-07-05 14:27:27 +02:00
|
|
|
}
|
|
|
|
|
2016-06-13 11:24:01 +02:00
|
|
|
fn type_layout(&self, ty: Ty<'tcx>) -> &'tcx Layout {
|
|
|
|
self.type_layout_with_substs(ty, self.substs())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn type_layout_with_substs(&self, ty: Ty<'tcx>, substs: &'tcx Substs<'tcx>) -> &'tcx Layout {
|
2016-06-08 11:11:08 +02:00
|
|
|
// TODO(solson): Is this inefficient? Needs investigation.
|
|
|
|
let ty = self.monomorphize(ty, substs);
|
|
|
|
|
2016-09-06 16:04:51 +02:00
|
|
|
self.tcx.infer_ctxt(None, None, Reveal::All).enter(|infcx| {
|
2016-06-08 11:11:08 +02:00
|
|
|
// TODO(solson): Report this error properly.
|
|
|
|
ty.layout(&infcx).unwrap()
|
|
|
|
})
|
|
|
|
}
|
2016-03-06 04:23:24 -06:00
|
|
|
|
2016-07-05 10:47:10 +02:00
|
|
|
pub fn push_stack_frame(
|
|
|
|
&mut self,
|
|
|
|
def_id: DefId,
|
|
|
|
span: codemap::Span,
|
|
|
|
mir: CachedMir<'a, 'tcx>,
|
|
|
|
substs: &'tcx Substs<'tcx>,
|
|
|
|
return_ptr: Option<Pointer>,
|
2016-09-09 17:44:04 +02:00
|
|
|
return_to_block: StackPopCleanup,
|
2016-07-05 10:47:10 +02:00
|
|
|
) -> EvalResult<'tcx, ()> {
|
2016-03-18 10:48:31 -06:00
|
|
|
let arg_tys = mir.arg_decls.iter().map(|a| a.ty);
|
2016-03-07 07:10:52 -06:00
|
|
|
let var_tys = mir.var_decls.iter().map(|v| v.ty);
|
|
|
|
let temp_tys = mir.temp_decls.iter().map(|t| t.ty);
|
2016-03-18 10:48:31 -06:00
|
|
|
|
|
|
|
let num_args = mir.arg_decls.len();
|
|
|
|
let num_vars = mir.var_decls.len();
|
2016-03-07 07:10:52 -06:00
|
|
|
|
2016-05-30 18:09:52 +02:00
|
|
|
::log_settings::settings().indentation += 1;
|
|
|
|
|
2016-07-05 10:47:10 +02:00
|
|
|
let locals: EvalResult<'tcx, Vec<Pointer>> = arg_tys.chain(var_tys).chain(temp_tys).map(|ty| {
|
2016-06-13 11:24:01 +02:00
|
|
|
let size = self.type_size_with_substs(ty, substs);
|
2016-07-05 14:27:27 +02:00
|
|
|
let align = self.type_align_with_substs(ty, substs);
|
|
|
|
self.memory.allocate(size, align)
|
2016-06-09 17:23:58 +02:00
|
|
|
}).collect();
|
|
|
|
|
2016-03-07 07:10:52 -06:00
|
|
|
self.stack.push(Frame {
|
2016-03-13 17:19:42 -06:00
|
|
|
mir: mir.clone(),
|
2016-06-14 20:13:59 -06:00
|
|
|
block: mir::START_BLOCK,
|
2016-03-06 04:23:24 -06:00
|
|
|
return_ptr: return_ptr,
|
2016-07-06 17:55:05 +02:00
|
|
|
return_to_block: return_to_block,
|
2016-07-05 10:47:10 +02:00
|
|
|
locals: locals?,
|
2016-03-06 04:23:24 -06:00
|
|
|
var_offset: num_args,
|
|
|
|
temp_offset: num_args + num_vars,
|
2016-06-02 18:21:32 +02:00
|
|
|
span: span,
|
|
|
|
def_id: def_id,
|
|
|
|
substs: substs,
|
2016-06-03 16:57:47 +02:00
|
|
|
stmt: 0,
|
2016-03-06 04:23:24 -06:00
|
|
|
});
|
2016-07-05 13:23:58 +02:00
|
|
|
if self.stack.len() > self.stack_limit {
|
|
|
|
Err(EvalError::StackFrameLimitReached)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
|
2016-09-09 17:44:04 +02:00
|
|
|
fn pop_stack_frame(&mut self) -> EvalResult<'tcx, ()> {
|
2016-05-30 18:09:52 +02:00
|
|
|
::log_settings::settings().indentation -= 1;
|
2016-07-06 17:55:05 +02:00
|
|
|
let frame = self.stack.pop().expect("tried to pop a stack frame, but there were none");
|
2016-09-09 17:44:04 +02:00
|
|
|
match frame.return_to_block {
|
|
|
|
StackPopCleanup::Freeze(alloc_id) => self.memory.freeze(alloc_id)?,
|
|
|
|
StackPopCleanup::Goto(target) => self.goto_block(target),
|
|
|
|
StackPopCleanup::None => {},
|
2016-07-06 17:55:05 +02:00
|
|
|
}
|
2016-05-09 20:08:37 -06:00
|
|
|
// TODO(solson): Deallocate local variables.
|
2016-09-09 17:44:04 +02:00
|
|
|
Ok(())
|
2016-03-06 04:23:24 -06:00
|
|
|
}
|
|
|
|
|
2016-06-23 01:03:58 -06:00
|
|
|
/// Applies the binary operation `op` to the two operands and writes a tuple of the result
|
|
|
|
/// and a boolean signifying the potential overflow to the destination.
|
2016-06-17 15:16:41 +02:00
|
|
|
fn intrinsic_with_overflow(
|
|
|
|
&mut self,
|
|
|
|
op: mir::BinOp,
|
|
|
|
left: &mir::Operand<'tcx>,
|
|
|
|
right: &mir::Operand<'tcx>,
|
|
|
|
dest: Pointer,
|
|
|
|
dest_layout: &'tcx Layout,
|
|
|
|
) -> EvalResult<'tcx, ()> {
|
|
|
|
use rustc::ty::layout::Layout::*;
|
|
|
|
let tup_layout = match *dest_layout {
|
|
|
|
Univariant { ref variant, .. } => variant,
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("checked bin op returns something other than a tuple"),
|
2016-06-17 15:16:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
let overflowed = self.intrinsic_overflowing(op, left, right, dest)?;
|
|
|
|
let offset = tup_layout.field_offset(1).bytes() as isize;
|
|
|
|
self.memory.write_bool(dest.offset(offset), overflowed)
|
|
|
|
}
|
|
|
|
|
2016-06-20 16:57:36 +02:00
|
|
|
/// Applies the binary operation `op` to the arguments and writes the result to the destination.
|
|
|
|
/// Returns `true` if the operation overflowed.
|
|
|
|
fn intrinsic_overflowing(
|
2016-06-17 15:16:41 +02:00
|
|
|
&mut self,
|
|
|
|
op: mir::BinOp,
|
|
|
|
left: &mir::Operand<'tcx>,
|
|
|
|
right: &mir::Operand<'tcx>,
|
2016-06-20 16:57:36 +02:00
|
|
|
dest: Pointer,
|
|
|
|
) -> EvalResult<'tcx, bool> {
|
2016-09-19 02:19:31 -06:00
|
|
|
let left_primval = self.eval_operand_to_primval(left)?;
|
|
|
|
let right_primval = self.eval_operand_to_primval(right)?;
|
|
|
|
let (val, overflow) = primval::binary_op(op, left_primval, right_primval)?;
|
2016-06-20 16:52:43 +02:00
|
|
|
self.memory.write_primval(dest, val)?;
|
|
|
|
Ok(overflow)
|
2016-06-17 15:16:41 +02:00
|
|
|
}
|
|
|
|
|
2016-04-23 00:03:59 -06:00
|
|
|
fn assign_fields<I: IntoIterator<Item = u64>>(
|
2016-03-28 21:08:08 -06:00
|
|
|
&mut self,
|
|
|
|
dest: Pointer,
|
2016-04-23 00:03:59 -06:00
|
|
|
offsets: I,
|
2016-03-28 21:08:08 -06:00
|
|
|
operands: &[mir::Operand<'tcx>],
|
2016-06-14 10:34:54 +02:00
|
|
|
) -> EvalResult<'tcx, ()> {
|
2016-04-23 00:03:59 -06:00
|
|
|
for (offset, operand) in offsets.into_iter().zip(operands) {
|
2016-09-19 02:19:31 -06:00
|
|
|
let value = self.eval_operand(operand)?;
|
|
|
|
let value_ty = self.operand_ty(operand);
|
2016-04-23 00:03:59 -06:00
|
|
|
let field_dest = dest.offset(offset as isize);
|
2016-09-19 02:19:31 -06:00
|
|
|
self.write_value(value, field_dest, value_ty)?;
|
2016-03-12 22:15:59 -06:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-09-19 02:19:31 -06:00
|
|
|
/// Evaluate an assignment statement.
|
|
|
|
///
|
|
|
|
/// There is no separate `eval_rvalue` function. Instead, the code for handling each rvalue
|
|
|
|
/// type writes its results directly into the memory specified by the lvalue.
|
|
|
|
fn eval_rvalue_into_lvalue(
|
|
|
|
&mut self,
|
|
|
|
rvalue: &mir::Rvalue<'tcx>,
|
|
|
|
lvalue: &mir::Lvalue<'tcx>,
|
|
|
|
) -> EvalResult<'tcx, ()> {
|
2016-05-09 18:52:44 -06:00
|
|
|
let dest = self.eval_lvalue(lvalue)?.to_ptr();
|
2016-04-07 05:56:07 -06:00
|
|
|
let dest_ty = self.lvalue_ty(lvalue);
|
2016-06-13 11:24:01 +02:00
|
|
|
let dest_layout = self.type_layout(dest_ty);
|
2015-11-20 15:54:02 -06:00
|
|
|
|
2016-03-07 03:32:02 -06:00
|
|
|
use rustc::mir::repr::Rvalue::*;
|
2015-11-12 16:13:35 -06:00
|
|
|
match *rvalue {
|
2016-03-07 03:32:02 -06:00
|
|
|
Use(ref operand) => {
|
2016-09-19 02:19:31 -06:00
|
|
|
let value = self.eval_operand(operand)?;
|
|
|
|
self.write_value(value, dest, dest_ty)?;
|
2016-02-27 19:20:25 -06:00
|
|
|
}
|
2015-11-20 15:54:02 -06:00
|
|
|
|
2016-03-13 01:43:28 -06:00
|
|
|
BinaryOp(bin_op, ref left, ref right) => {
|
2016-06-20 16:52:43 +02:00
|
|
|
// ignore overflow bit, rustc inserts check branches for us
|
2016-06-20 16:57:36 +02:00
|
|
|
self.intrinsic_overflowing(bin_op, left, right, dest)?;
|
2016-03-13 01:43:28 -06:00
|
|
|
}
|
2016-03-07 07:10:52 -06:00
|
|
|
|
2016-06-11 13:10:42 -06:00
|
|
|
CheckedBinaryOp(bin_op, ref left, ref right) => {
|
2016-06-17 15:16:41 +02:00
|
|
|
self.intrinsic_with_overflow(bin_op, left, right, dest, dest_layout)?;
|
2016-06-11 13:10:42 -06:00
|
|
|
}
|
2016-06-11 12:38:28 -06:00
|
|
|
|
2016-03-07 07:57:08 -06:00
|
|
|
UnaryOp(un_op, ref operand) => {
|
2016-09-19 02:19:31 -06:00
|
|
|
let val = self.eval_operand_to_primval(operand)?;
|
2016-05-30 15:27:52 +02:00
|
|
|
self.memory.write_primval(dest, primval::unary_op(un_op, val)?)?;
|
2016-03-07 07:57:08 -06:00
|
|
|
}
|
2016-03-04 23:17:31 -06:00
|
|
|
|
2016-03-12 22:15:59 -06:00
|
|
|
Aggregate(ref kind, ref operands) => {
|
2016-05-08 19:29:00 -06:00
|
|
|
use rustc::ty::layout::Layout::*;
|
2016-04-23 00:03:59 -06:00
|
|
|
match *dest_layout {
|
2016-05-08 19:29:00 -06:00
|
|
|
Univariant { ref variant, .. } => {
|
2016-04-23 00:03:59 -06:00
|
|
|
let offsets = iter::once(0)
|
|
|
|
.chain(variant.offset_after_field.iter().map(|s| s.bytes()));
|
2016-05-09 18:52:44 -06:00
|
|
|
self.assign_fields(dest, offsets, operands)?;
|
2016-04-23 00:03:59 -06:00
|
|
|
}
|
|
|
|
|
2016-05-08 19:29:00 -06:00
|
|
|
Array { .. } => {
|
2016-04-23 00:03:59 -06:00
|
|
|
let elem_size = match dest_ty.sty {
|
2016-06-13 11:24:01 +02:00
|
|
|
ty::TyArray(elem_ty, _) => self.type_size(elem_ty) as u64,
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("tried to assign {:?} to non-array type {:?}", kind, dest_ty),
|
2016-04-23 00:03:59 -06:00
|
|
|
};
|
|
|
|
let offsets = (0..).map(|i| i * elem_size);
|
2016-05-09 18:52:44 -06:00
|
|
|
self.assign_fields(dest, offsets, operands)?;
|
2016-03-28 21:08:08 -06:00
|
|
|
}
|
2016-03-20 23:09:27 -06:00
|
|
|
|
2016-05-08 19:29:00 -06:00
|
|
|
General { discr, ref variants, .. } => {
|
2016-09-06 16:04:51 +02:00
|
|
|
if let mir::AggregateKind::Adt(adt_def, variant, _, _) = *kind {
|
2016-04-23 00:03:59 -06:00
|
|
|
let discr_val = adt_def.variants[variant].disr_val.to_u64_unchecked();
|
|
|
|
let discr_size = discr.size().bytes() as usize;
|
2016-05-09 18:52:44 -06:00
|
|
|
self.memory.write_uint(dest, discr_val, discr_size)?;
|
2016-04-23 00:03:59 -06:00
|
|
|
|
|
|
|
let offsets = variants[variant].offset_after_field.iter()
|
|
|
|
.map(|s| s.bytes());
|
2016-05-09 18:52:44 -06:00
|
|
|
self.assign_fields(dest, offsets, operands)?;
|
2016-04-23 00:03:59 -06:00
|
|
|
} else {
|
2016-09-06 16:16:49 +02:00
|
|
|
bug!("tried to assign {:?} to Layout::General", kind);
|
2016-03-15 05:50:53 -06:00
|
|
|
}
|
2016-04-30 01:04:17 -06:00
|
|
|
}
|
|
|
|
|
2016-05-08 19:29:00 -06:00
|
|
|
RawNullablePointer { nndiscr, .. } => {
|
2016-09-06 16:04:51 +02:00
|
|
|
if let mir::AggregateKind::Adt(_, variant, _, _) = *kind {
|
2016-04-30 01:04:17 -06:00
|
|
|
if nndiscr == variant as u64 {
|
|
|
|
assert_eq!(operands.len(), 1);
|
|
|
|
let operand = &operands[0];
|
2016-09-19 02:19:31 -06:00
|
|
|
let value = self.eval_operand(operand)?;
|
|
|
|
let value_ty = self.operand_ty(operand);
|
|
|
|
self.write_value(value, dest, value_ty)?;
|
2016-04-30 01:04:17 -06:00
|
|
|
} else {
|
|
|
|
assert_eq!(operands.len(), 0);
|
2016-05-09 18:52:44 -06:00
|
|
|
self.memory.write_isize(dest, 0)?;
|
2016-04-30 01:04:17 -06:00
|
|
|
}
|
|
|
|
} else {
|
2016-09-06 16:16:49 +02:00
|
|
|
bug!("tried to assign {:?} to Layout::RawNullablePointer", kind);
|
2016-03-15 05:50:53 -06:00
|
|
|
}
|
2016-04-23 00:03:59 -06:00
|
|
|
}
|
|
|
|
|
2016-05-25 00:37:52 -06:00
|
|
|
StructWrappedNullablePointer { nndiscr, ref nonnull, ref discrfield } => {
|
2016-09-06 16:04:51 +02:00
|
|
|
if let mir::AggregateKind::Adt(_, variant, _, _) = *kind {
|
2016-05-25 00:37:52 -06:00
|
|
|
if nndiscr == variant as u64 {
|
|
|
|
let offsets = iter::once(0)
|
|
|
|
.chain(nonnull.offset_after_field.iter().map(|s| s.bytes()));
|
|
|
|
try!(self.assign_fields(dest, offsets, operands));
|
|
|
|
} else {
|
2016-09-27 17:02:04 +02:00
|
|
|
for operand in operands {
|
|
|
|
let operand_ty = self.operand_ty(operand);
|
|
|
|
assert_eq!(self.type_size(operand_ty), 0);
|
|
|
|
}
|
2016-05-30 15:27:52 +02:00
|
|
|
let offset = self.nonnull_offset(dest_ty, nndiscr, discrfield)?;
|
2016-05-25 00:37:52 -06:00
|
|
|
let dest = dest.offset(offset.bytes() as isize);
|
|
|
|
try!(self.memory.write_isize(dest, 0));
|
|
|
|
}
|
|
|
|
} else {
|
2016-09-06 16:16:49 +02:00
|
|
|
bug!("tried to assign {:?} to Layout::RawNullablePointer", kind);
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-08 19:49:07 -06:00
|
|
|
CEnum { discr, signed, .. } => {
|
2016-05-08 19:29:00 -06:00
|
|
|
assert_eq!(operands.len(), 0);
|
2016-09-06 16:04:51 +02:00
|
|
|
if let mir::AggregateKind::Adt(adt_def, variant, _, _) = *kind {
|
2016-05-08 19:49:07 -06:00
|
|
|
let val = adt_def.variants[variant].disr_val.to_u64_unchecked();
|
|
|
|
let size = discr.size().bytes() as usize;
|
|
|
|
|
2016-05-08 19:29:00 -06:00
|
|
|
if signed {
|
2016-05-09 18:52:44 -06:00
|
|
|
self.memory.write_int(dest, val as i64, size)?;
|
2016-05-08 19:29:00 -06:00
|
|
|
} else {
|
2016-05-09 18:52:44 -06:00
|
|
|
self.memory.write_uint(dest, val, size)?;
|
2016-05-08 19:29:00 -06:00
|
|
|
}
|
|
|
|
} else {
|
2016-09-06 16:16:49 +02:00
|
|
|
bug!("tried to assign {:?} to Layout::CEnum", kind);
|
2016-05-08 19:29:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 15:27:52 +02:00
|
|
|
_ => return Err(EvalError::Unimplemented(format!("can't handle destination layout {:?} when assigning {:?}", dest_layout, kind))),
|
2016-03-12 22:15:59 -06:00
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
2015-11-12 17:24:43 -06:00
|
|
|
|
2016-03-21 03:34:24 -06:00
|
|
|
Repeat(ref operand, _) => {
|
2016-09-19 02:19:31 -06:00
|
|
|
let (elem_ty, length) = match dest_ty.sty {
|
|
|
|
ty::TyArray(elem_ty, n) => (elem_ty, n),
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("tried to assign array-repeat to non-array type {:?}", dest_ty),
|
2016-04-23 00:03:59 -06:00
|
|
|
};
|
2016-09-19 02:19:31 -06:00
|
|
|
let elem_size = self.type_size(elem_ty);
|
|
|
|
let value = self.eval_operand(operand)?;
|
2016-04-23 00:03:59 -06:00
|
|
|
for i in 0..length {
|
|
|
|
let elem_dest = dest.offset((i * elem_size) as isize);
|
2016-09-19 02:19:31 -06:00
|
|
|
self.write_value(value, elem_dest, elem_ty)?;
|
2016-03-21 03:34:24 -06:00
|
|
|
}
|
|
|
|
}
|
2016-03-21 03:19:48 -06:00
|
|
|
|
2016-03-20 21:30:31 -06:00
|
|
|
Len(ref lvalue) => {
|
2016-05-09 18:52:44 -06:00
|
|
|
let src = self.eval_lvalue(lvalue)?;
|
2016-03-20 21:30:31 -06:00
|
|
|
let ty = self.lvalue_ty(lvalue);
|
2016-09-26 17:49:30 +02:00
|
|
|
match ty.sty {
|
|
|
|
ty::TyArray(_, n) => self.memory.write_usize(dest, n as u64)?,
|
2016-09-27 10:14:53 +02:00
|
|
|
ty::TySlice(_) => if let LvalueExtra::Length(len) = src.extra {
|
|
|
|
self.memory.write_usize(dest, len)?;
|
2016-03-20 22:59:13 -06:00
|
|
|
} else {
|
2016-09-06 16:16:49 +02:00
|
|
|
bug!("Rvalue::Len of a slice given non-slice pointer: {:?}", src);
|
2016-03-20 22:59:13 -06:00
|
|
|
},
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("Rvalue::Len expected array or slice, got {:?}", ty),
|
2016-09-26 17:49:30 +02:00
|
|
|
}
|
2016-03-20 21:30:31 -06:00
|
|
|
}
|
|
|
|
|
2016-03-13 14:36:25 -06:00
|
|
|
Ref(_, _, ref lvalue) => {
|
2016-09-27 10:14:53 +02:00
|
|
|
let lvalue = self.eval_lvalue(lvalue)?;
|
|
|
|
self.memory.write_ptr(dest, lvalue.ptr)?;
|
|
|
|
let extra_ptr = dest.offset(self.memory.pointer_size() as isize);
|
|
|
|
match lvalue.extra {
|
|
|
|
LvalueExtra::None => {},
|
|
|
|
LvalueExtra::Length(len) => self.memory.write_usize(extra_ptr, len)?,
|
|
|
|
LvalueExtra::Vtable(ptr) => self.memory.write_ptr(extra_ptr, ptr)?,
|
|
|
|
LvalueExtra::DowncastVariant(..) =>
|
|
|
|
bug!("attempted to take a reference to an enum downcast lvalue"),
|
2016-03-20 22:59:13 -06:00
|
|
|
}
|
2016-03-13 14:36:25 -06:00
|
|
|
}
|
2015-12-28 22:24:05 -06:00
|
|
|
|
2016-03-14 22:05:50 -06:00
|
|
|
Box(ty) => {
|
2016-06-13 11:24:01 +02:00
|
|
|
let size = self.type_size(ty);
|
2016-07-05 14:27:27 +02:00
|
|
|
let align = self.type_align(ty);
|
|
|
|
let ptr = self.memory.allocate(size, align)?;
|
2016-05-09 18:52:44 -06:00
|
|
|
self.memory.write_ptr(dest, ptr)?;
|
2016-03-14 22:05:50 -06:00
|
|
|
}
|
|
|
|
|
2016-09-27 18:01:33 +02:00
|
|
|
Cast(kind, ref operand, cast_ty) => {
|
|
|
|
debug_assert_eq!(self.monomorphize(cast_ty, self.substs()), dest_ty);
|
2016-03-16 23:28:49 -06:00
|
|
|
use rustc::mir::repr::CastKind::*;
|
|
|
|
match kind {
|
|
|
|
Unsize => {
|
2016-09-23 10:27:14 +02:00
|
|
|
let src = self.eval_operand(operand)?;
|
2016-06-08 13:43:34 +02:00
|
|
|
let src_ty = self.operand_ty(operand);
|
2016-09-27 18:01:33 +02:00
|
|
|
self.unsize_into(src, src_ty, dest, dest_ty)?;
|
2016-03-16 23:28:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
Misc => {
|
2016-09-23 10:27:14 +02:00
|
|
|
let src = self.eval_operand(operand)?;
|
2016-06-13 11:24:01 +02:00
|
|
|
let src_ty = self.operand_ty(operand);
|
2016-09-08 10:26:33 +02:00
|
|
|
if self.type_is_fat_ptr(src_ty) {
|
2016-09-23 10:27:14 +02:00
|
|
|
trace!("misc cast: {:?}", src);
|
2016-09-07 18:34:59 +02:00
|
|
|
let ptr_size = self.memory.pointer_size();
|
2016-09-23 10:27:14 +02:00
|
|
|
match (src, self.type_is_fat_ptr(dest_ty)) {
|
2016-09-26 17:49:30 +02:00
|
|
|
(Value::ByValPair(data, meta), true) => {
|
|
|
|
self.memory.write_primval(dest, data)?;
|
|
|
|
self.memory.write_primval(dest.offset(ptr_size as isize), meta)?;
|
2016-09-23 10:27:14 +02:00
|
|
|
},
|
2016-09-26 17:49:30 +02:00
|
|
|
(Value::ByValPair(data, _), false) => {
|
|
|
|
self.memory.write_primval(dest, data)?;
|
2016-09-23 10:27:14 +02:00
|
|
|
},
|
|
|
|
(Value::ByRef(ptr), true) => {
|
|
|
|
self.memory.copy(ptr, dest, ptr_size * 2, ptr_size)?;
|
|
|
|
},
|
|
|
|
(Value::ByRef(ptr), false) => {
|
|
|
|
self.memory.copy(ptr, dest, ptr_size, ptr_size)?;
|
|
|
|
},
|
|
|
|
(Value::ByVal(_), _) => bug!("expected fat ptr"),
|
2016-09-07 18:34:59 +02:00
|
|
|
}
|
2016-09-08 10:26:33 +02:00
|
|
|
} else {
|
2016-09-23 10:27:14 +02:00
|
|
|
let src_val = self.value_to_primval(src, src_ty)?;
|
2016-09-08 10:26:33 +02:00
|
|
|
let dest_val = self.cast_primval(src_val, dest_ty)?;
|
|
|
|
self.memory.write_primval(dest, dest_val)?;
|
2016-06-13 11:24:01 +02:00
|
|
|
}
|
2016-03-16 23:28:49 -06:00
|
|
|
}
|
|
|
|
|
2016-06-08 13:43:34 +02:00
|
|
|
ReifyFnPointer => match self.operand_ty(operand).sty {
|
2016-06-14 10:34:54 +02:00
|
|
|
ty::TyFnDef(def_id, substs, fn_ty) => {
|
|
|
|
let fn_ptr = self.memory.create_fn_ptr(def_id, substs, fn_ty);
|
2016-06-08 13:43:34 +02:00
|
|
|
self.memory.write_ptr(dest, fn_ptr)?;
|
|
|
|
},
|
2016-09-06 16:16:49 +02:00
|
|
|
ref other => bug!("reify fn pointer on {:?}", other),
|
2016-06-08 13:43:34 +02:00
|
|
|
},
|
|
|
|
|
2016-06-17 16:49:06 +02:00
|
|
|
UnsafeFnPointer => match dest_ty.sty {
|
|
|
|
ty::TyFnPtr(unsafe_fn_ty) => {
|
2016-09-23 10:27:14 +02:00
|
|
|
let src = self.eval_operand(operand)?;
|
|
|
|
let ptr = src.read_ptr(&self.memory)?;
|
2016-09-09 12:51:14 +02:00
|
|
|
let (def_id, substs, _) = self.memory.get_fn(ptr.alloc_id)?;
|
|
|
|
let fn_ptr = self.memory.create_fn_ptr(def_id, substs, unsafe_fn_ty);
|
2016-06-17 16:49:06 +02:00
|
|
|
self.memory.write_ptr(dest, fn_ptr)?;
|
|
|
|
},
|
2016-09-06 16:16:49 +02:00
|
|
|
ref other => bug!("fn to unsafe fn cast on {:?}", other),
|
2016-06-17 16:49:06 +02:00
|
|
|
},
|
2016-03-16 23:28:49 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:43:23 -06:00
|
|
|
InlineAsm { .. } => unimplemented!(),
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
2016-03-20 23:09:27 -06:00
|
|
|
|
|
|
|
Ok(())
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
|
2016-09-07 18:34:59 +02:00
|
|
|
fn type_is_fat_ptr(&self, ty: Ty<'tcx>) -> bool {
|
|
|
|
match ty.sty {
|
|
|
|
ty::TyRawPtr(ty::TypeAndMut{ty, ..}) |
|
|
|
|
ty::TyRef(_, ty::TypeAndMut{ty, ..}) |
|
|
|
|
ty::TyBox(ty) => !self.type_is_sized(ty),
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 10:34:54 +02:00
|
|
|
fn nonnull_offset(&self, ty: Ty<'tcx>, nndiscr: u64, discrfield: &[u32]) -> EvalResult<'tcx, Size> {
|
2016-05-25 00:37:52 -06:00
|
|
|
// Skip the constant 0 at the start meant for LLVM GEP.
|
|
|
|
let mut path = discrfield.iter().skip(1).map(|&i| i as usize);
|
|
|
|
|
|
|
|
// Handle the field index for the outer non-null variant.
|
|
|
|
let inner_ty = match ty.sty {
|
2016-09-10 20:59:23 -06:00
|
|
|
ty::TyAdt(adt_def, substs) => {
|
2016-05-25 00:37:52 -06:00
|
|
|
let variant = &adt_def.variants[nndiscr as usize];
|
|
|
|
let index = path.next().unwrap();
|
|
|
|
let field = &variant.fields[index];
|
|
|
|
field.ty(self.tcx, substs)
|
|
|
|
}
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("non-enum for StructWrappedNullablePointer: {}", ty),
|
2016-05-25 00:37:52 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
self.field_path_offset(inner_ty, path)
|
|
|
|
}
|
|
|
|
|
2016-06-14 10:34:54 +02:00
|
|
|
fn field_path_offset<I: Iterator<Item = usize>>(&self, mut ty: Ty<'tcx>, path: I) -> EvalResult<'tcx, Size> {
|
2016-05-25 00:37:52 -06:00
|
|
|
let mut offset = Size::from_bytes(0);
|
|
|
|
|
|
|
|
// Skip the initial 0 intended for LLVM GEP.
|
|
|
|
for field_index in path {
|
2016-05-30 15:27:52 +02:00
|
|
|
let field_offset = self.get_field_offset(ty, field_index)?;
|
|
|
|
ty = self.get_field_ty(ty, field_index)?;
|
2016-05-25 00:37:52 -06:00
|
|
|
offset = offset.checked_add(field_offset, &self.tcx.data_layout).unwrap();
|
|
|
|
}
|
|
|
|
|
2016-05-30 15:27:52 +02:00
|
|
|
Ok(offset)
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 10:34:54 +02:00
|
|
|
fn get_field_ty(&self, ty: Ty<'tcx>, field_index: usize) -> EvalResult<'tcx, Ty<'tcx>> {
|
2016-05-25 00:37:52 -06:00
|
|
|
match ty.sty {
|
2016-09-10 20:59:23 -06:00
|
|
|
ty::TyAdt(adt_def, substs) => {
|
2016-05-30 15:27:52 +02:00
|
|
|
Ok(adt_def.struct_variant().fields[field_index].ty(self.tcx, substs))
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ty::TyRef(_, ty::TypeAndMut { ty, .. }) |
|
|
|
|
ty::TyRawPtr(ty::TypeAndMut { ty, .. }) |
|
|
|
|
ty::TyBox(ty) => {
|
|
|
|
assert_eq!(field_index, 0);
|
2016-05-30 15:27:52 +02:00
|
|
|
Ok(ty)
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
2016-05-30 15:27:52 +02:00
|
|
|
_ => Err(EvalError::Unimplemented(format!("can't handle type: {:?}", ty))),
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 10:34:54 +02:00
|
|
|
fn get_field_offset(&self, ty: Ty<'tcx>, field_index: usize) -> EvalResult<'tcx, Size> {
|
2016-06-13 11:24:01 +02:00
|
|
|
let layout = self.type_layout(ty);
|
2016-05-25 00:37:52 -06:00
|
|
|
|
|
|
|
use rustc::ty::layout::Layout::*;
|
|
|
|
match *layout {
|
2016-09-27 18:01:33 +02:00
|
|
|
Univariant { ref variant, .. } => {
|
|
|
|
Ok(variant.field_offset(field_index))
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
|
|
|
FatPointer { .. } => {
|
2016-06-23 10:00:31 +02:00
|
|
|
let bytes = layout::FAT_PTR_ADDR * self.memory.pointer_size();
|
2016-05-30 15:27:52 +02:00
|
|
|
Ok(Size::from_bytes(bytes as u64))
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
2016-05-30 15:27:52 +02:00
|
|
|
_ => Err(EvalError::Unimplemented(format!("can't handle type: {:?}, with layout: {:?}", ty, layout))),
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-19 02:19:31 -06:00
|
|
|
fn eval_operand_to_primval(&mut self, op: &mir::Operand<'tcx>) -> EvalResult<'tcx, PrimVal> {
|
|
|
|
let value = self.eval_operand(op)?;
|
|
|
|
let ty = self.operand_ty(op);
|
|
|
|
self.value_to_primval(value, ty)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn eval_operand(&mut self, op: &mir::Operand<'tcx>) -> EvalResult<'tcx, Value> {
|
2016-03-07 03:32:02 -06:00
|
|
|
use rustc::mir::repr::Operand::*;
|
2015-11-12 15:50:58 -06:00
|
|
|
match *op {
|
2016-09-27 10:14:53 +02:00
|
|
|
Consume(ref lvalue) => Ok(Value::ByRef(self.eval_lvalue(lvalue)?.to_ptr())),
|
2016-09-19 02:19:31 -06:00
|
|
|
|
2016-06-09 11:16:09 +02:00
|
|
|
Constant(mir::Constant { ref literal, ty, .. }) => {
|
2016-09-19 02:19:31 -06:00
|
|
|
use rustc::mir::repr::Literal;
|
|
|
|
let value = match *literal {
|
2016-09-26 17:49:30 +02:00
|
|
|
Literal::Value { ref value } => self.const_to_value(value)?,
|
2016-09-19 02:19:31 -06:00
|
|
|
|
|
|
|
Literal::Item { def_id, substs } => {
|
2016-06-09 11:27:02 +02:00
|
|
|
if let ty::TyFnDef(..) = ty.sty {
|
2016-06-08 13:43:34 +02:00
|
|
|
// function items are zero sized
|
2016-09-19 03:35:35 -06:00
|
|
|
Value::ByRef(self.memory.allocate(0, 0)?)
|
2016-06-03 15:48:56 +02:00
|
|
|
} else {
|
2016-06-08 11:46:37 +02:00
|
|
|
let cid = ConstantId {
|
|
|
|
def_id: def_id,
|
|
|
|
substs: substs,
|
2016-06-08 12:35:15 +02:00
|
|
|
kind: ConstantKind::Global,
|
2016-06-08 11:46:37 +02:00
|
|
|
};
|
2016-09-19 02:19:31 -06:00
|
|
|
let static_ptr = *self.statics.get(&cid)
|
|
|
|
.expect("static should have been cached (rvalue)");
|
2016-09-19 03:35:35 -06:00
|
|
|
Value::ByRef(static_ptr)
|
2016-06-03 15:48:56 +02:00
|
|
|
}
|
2016-09-19 02:19:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
Literal::Promoted { index } => {
|
2016-06-08 11:46:37 +02:00
|
|
|
let cid = ConstantId {
|
2016-06-03 17:41:36 +02:00
|
|
|
def_id: self.frame().def_id,
|
|
|
|
substs: self.substs(),
|
2016-06-08 11:46:37 +02:00
|
|
|
kind: ConstantKind::Promoted(index),
|
2016-06-03 17:41:36 +02:00
|
|
|
};
|
2016-09-19 02:19:31 -06:00
|
|
|
let static_ptr = *self.statics.get(&cid)
|
|
|
|
.expect("a promoted constant hasn't been precomputed");
|
2016-09-19 03:35:35 -06:00
|
|
|
Value::ByRef(static_ptr)
|
2016-09-19 02:19:31 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(value)
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-12 17:44:29 -06:00
|
|
|
|
2016-09-27 10:14:53 +02:00
|
|
|
fn eval_lvalue(&mut self, lvalue: &mir::Lvalue<'tcx>) -> EvalResult<'tcx, Lvalue> {
|
2016-03-07 07:48:38 -06:00
|
|
|
use rustc::mir::repr::Lvalue::*;
|
2016-09-27 10:14:53 +02:00
|
|
|
let ptr = match *lvalue {
|
|
|
|
ReturnPointer => self.frame().return_ptr
|
|
|
|
.expect("ReturnPointer used in a function with no return value"),
|
|
|
|
Arg(i) => self.frame().locals[i.index()],
|
|
|
|
Var(i) => self.frame().locals[self.frame().var_offset + i.index()],
|
|
|
|
Temp(i) => self.frame().locals[self.frame().temp_offset + i.index()],
|
2016-03-13 06:48:04 -06:00
|
|
|
|
2016-06-03 17:41:36 +02:00
|
|
|
Static(def_id) => {
|
2016-08-27 01:44:46 -06:00
|
|
|
let substs = subst::Substs::empty(self.tcx);
|
2016-06-08 11:46:37 +02:00
|
|
|
let cid = ConstantId {
|
|
|
|
def_id: def_id,
|
|
|
|
substs: substs,
|
2016-06-08 12:35:15 +02:00
|
|
|
kind: ConstantKind::Global,
|
2016-06-08 11:46:37 +02:00
|
|
|
};
|
2016-09-27 10:14:53 +02:00
|
|
|
*self.statics.get(&cid).expect("static should have been cached (lvalue)")
|
2016-06-03 17:41:36 +02:00
|
|
|
},
|
2016-03-21 04:01:52 -06:00
|
|
|
|
2016-03-13 06:48:04 -06:00
|
|
|
Projection(ref proj) => {
|
2016-05-09 18:52:44 -06:00
|
|
|
let base = self.eval_lvalue(&proj.base)?;
|
2016-03-20 22:59:13 -06:00
|
|
|
let base_ty = self.lvalue_ty(&proj.base);
|
2016-06-13 11:24:01 +02:00
|
|
|
let base_layout = self.type_layout(base_ty);
|
2016-04-23 00:03:59 -06:00
|
|
|
|
2016-03-13 06:48:04 -06:00
|
|
|
use rustc::mir::repr::ProjectionElem::*;
|
|
|
|
match proj.elem {
|
2016-09-21 18:00:04 +02:00
|
|
|
Field(field, field_ty) => {
|
2016-09-26 17:49:30 +02:00
|
|
|
let field_ty = self.monomorphize(field_ty, self.substs());
|
2016-05-25 00:37:52 -06:00
|
|
|
use rustc::ty::layout::Layout::*;
|
2016-04-29 23:32:15 -06:00
|
|
|
let variant = match *base_layout {
|
2016-05-25 00:37:52 -06:00
|
|
|
Univariant { ref variant, .. } => variant,
|
|
|
|
General { ref variants, .. } => {
|
2016-09-27 10:14:53 +02:00
|
|
|
if let LvalueExtra::DowncastVariant(variant_idx) = base.extra {
|
|
|
|
&variants[variant_idx]
|
2016-04-29 23:32:15 -06:00
|
|
|
} else {
|
2016-09-06 16:16:49 +02:00
|
|
|
bug!("field access on enum had no variant index");
|
2016-04-29 23:32:15 -06:00
|
|
|
}
|
|
|
|
}
|
2016-05-25 00:37:52 -06:00
|
|
|
RawNullablePointer { .. } => {
|
2016-04-30 01:04:17 -06:00
|
|
|
assert_eq!(field.index(), 0);
|
|
|
|
return Ok(base);
|
|
|
|
}
|
2016-05-25 00:37:52 -06:00
|
|
|
StructWrappedNullablePointer { ref nonnull, .. } => nonnull,
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("field access on non-product type: {:?}", base_layout),
|
2016-04-29 23:32:15 -06:00
|
|
|
};
|
|
|
|
|
2016-09-27 10:14:53 +02:00
|
|
|
let offset = variant.field_offset(field.index()).bytes();
|
|
|
|
let ptr = base.ptr.offset(offset as isize);
|
|
|
|
trace!("{:?}", base);
|
|
|
|
trace!("{:?}", field_ty);
|
|
|
|
if self.type_is_sized(field_ty) {
|
|
|
|
ptr
|
|
|
|
} else {
|
|
|
|
match base.extra {
|
|
|
|
LvalueExtra::None => bug!("expected fat pointer"),
|
|
|
|
LvalueExtra::DowncastVariant(..) => bug!("Rust doesn't support unsized fields in enum variants"),
|
|
|
|
LvalueExtra::Vtable(_) |
|
|
|
|
LvalueExtra::Length(_) => {},
|
|
|
|
}
|
|
|
|
return Ok(Lvalue {
|
|
|
|
ptr: ptr,
|
|
|
|
extra: base.extra,
|
|
|
|
});
|
2016-09-21 18:00:04 +02:00
|
|
|
}
|
2016-03-13 07:23:48 -06:00
|
|
|
},
|
|
|
|
|
2016-05-25 00:37:52 -06:00
|
|
|
Downcast(_, variant) => {
|
|
|
|
use rustc::ty::layout::Layout::*;
|
|
|
|
match *base_layout {
|
2016-09-20 13:34:53 +02:00
|
|
|
General { ref variants, .. } => {
|
2016-09-27 10:14:53 +02:00
|
|
|
return Ok(Lvalue {
|
|
|
|
ptr: base.ptr.offset(variants[variant].field_offset(1).bytes() as isize),
|
|
|
|
extra: LvalueExtra::DowncastVariant(variant),
|
|
|
|
});
|
2016-05-25 00:37:52 -06:00
|
|
|
}
|
|
|
|
RawNullablePointer { .. } | StructWrappedNullablePointer { .. } => {
|
|
|
|
return Ok(base);
|
|
|
|
}
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("variant downcast on non-aggregate: {:?}", base_layout),
|
2016-04-29 23:32:15 -06:00
|
|
|
}
|
2016-03-13 06:48:04 -06:00
|
|
|
},
|
|
|
|
|
2016-09-27 10:14:53 +02:00
|
|
|
Deref => {
|
|
|
|
use primval::PrimVal::*;
|
|
|
|
use interpreter::value::Value::*;
|
|
|
|
let (ptr, extra) = match self.read_value(base.ptr, base_ty)? {
|
|
|
|
ByValPair(Ptr(ptr), Ptr(vptr)) => (ptr, LvalueExtra::Vtable(vptr)),
|
|
|
|
ByValPair(Ptr(ptr), n) => (ptr, LvalueExtra::Length(n.expect_uint("slice length"))),
|
|
|
|
ByVal(Ptr(ptr)) => (ptr, LvalueExtra::None),
|
|
|
|
_ => bug!("can't deref non pointer types"),
|
|
|
|
};
|
|
|
|
return Ok(Lvalue { ptr: ptr, extra: extra });
|
|
|
|
}
|
2016-03-13 14:36:25 -06:00
|
|
|
|
2016-03-20 21:30:31 -06:00
|
|
|
Index(ref operand) => {
|
|
|
|
let elem_size = match base_ty.sty {
|
2016-04-29 06:01:17 +02:00
|
|
|
ty::TyArray(elem_ty, _) |
|
2016-06-13 11:24:01 +02:00
|
|
|
ty::TySlice(elem_ty) => self.type_size(elem_ty),
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("indexing expected an array or slice, got {:?}", base_ty),
|
2016-03-20 21:30:31 -06:00
|
|
|
};
|
2016-09-23 10:27:14 +02:00
|
|
|
let n_ptr = self.eval_operand(operand)?;
|
|
|
|
let usize = self.tcx.types.usize;
|
|
|
|
let n = self.value_to_primval(n_ptr, usize)?.expect_uint("Projection::Index expected usize");
|
2016-09-27 10:14:53 +02:00
|
|
|
base.ptr.offset(n as isize * elem_size as isize)
|
2016-03-20 21:30:31 -06:00
|
|
|
}
|
|
|
|
|
2016-03-21 04:01:52 -06:00
|
|
|
ConstantIndex { .. } => unimplemented!(),
|
2016-06-11 12:38:28 -06:00
|
|
|
Subslice { .. } => unimplemented!(),
|
2016-03-13 06:48:04 -06:00
|
|
|
}
|
|
|
|
}
|
2016-03-07 07:48:38 -06:00
|
|
|
};
|
2016-09-27 10:14:53 +02:00
|
|
|
|
|
|
|
Ok(Lvalue { ptr: ptr, extra: LvalueExtra::None })
|
2016-03-07 07:48:38 -06:00
|
|
|
}
|
|
|
|
|
2016-05-25 00:37:52 -06:00
|
|
|
fn lvalue_ty(&self, lvalue: &mir::Lvalue<'tcx>) -> Ty<'tcx> {
|
2016-08-27 01:44:46 -06:00
|
|
|
self.monomorphize(lvalue.ty(&self.mir(), self.tcx).to_ty(self.tcx), self.substs())
|
2016-03-20 23:11:06 -06:00
|
|
|
}
|
|
|
|
|
2016-05-25 00:37:52 -06:00
|
|
|
fn operand_ty(&self, operand: &mir::Operand<'tcx>) -> Ty<'tcx> {
|
2016-08-27 01:44:46 -06:00
|
|
|
self.monomorphize(operand.ty(&self.mir(), self.tcx), self.substs())
|
2016-04-07 03:02:02 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 10:34:54 +02:00
|
|
|
fn move_(&mut self, src: Pointer, dest: Pointer, ty: Ty<'tcx>) -> EvalResult<'tcx, ()> {
|
2016-06-13 11:24:01 +02:00
|
|
|
let size = self.type_size(ty);
|
2016-07-06 11:12:44 +02:00
|
|
|
let align = self.type_align(ty);
|
2016-07-22 16:35:39 +02:00
|
|
|
self.memory.copy(src, dest, size, align)?;
|
2016-04-07 05:56:07 -06:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-09-19 19:40:56 -06:00
|
|
|
// FIXME(solson): This method unnecessarily allocates and should not be necessary. We can
|
|
|
|
// remove it as soon as PrimVal can represent fat pointers.
|
2016-09-23 10:27:14 +02:00
|
|
|
fn value_to_ptr_dont_use(&mut self, value: Value, ty: Ty<'tcx>) -> EvalResult<'tcx, Pointer> {
|
2016-09-19 19:40:56 -06:00
|
|
|
match value {
|
|
|
|
Value::ByRef(ptr) => Ok(ptr),
|
|
|
|
|
|
|
|
Value::ByVal(primval) => {
|
|
|
|
let size = self.type_size(ty);
|
|
|
|
let align = self.type_align(ty);
|
|
|
|
let ptr = self.memory.allocate(size, align)?;
|
|
|
|
self.memory.write_primval(ptr, primval)?;
|
|
|
|
Ok(ptr)
|
|
|
|
}
|
2016-09-26 17:49:30 +02:00
|
|
|
|
|
|
|
Value::ByValPair(a, b) => {
|
|
|
|
let size = self.type_size(ty);
|
|
|
|
let align = self.type_align(ty);
|
|
|
|
let ptr = self.memory.allocate(size, align)?;
|
|
|
|
let ptr_size = self.memory.pointer_size() as isize;
|
|
|
|
self.memory.write_primval(ptr, a)?;
|
|
|
|
self.memory.write_primval(ptr.offset(ptr_size), b)?;
|
|
|
|
Ok(ptr)
|
|
|
|
}
|
2016-09-19 19:40:56 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-19 02:19:31 -06:00
|
|
|
fn value_to_primval(&mut self, value: Value, ty: Ty<'tcx>) -> EvalResult<'tcx, PrimVal> {
|
|
|
|
match value {
|
2016-09-26 17:49:30 +02:00
|
|
|
Value::ByRef(ptr) => match self.read_value(ptr, ty)? {
|
|
|
|
Value::ByRef(_) => bug!("read_value can't result in `ByRef`"),
|
|
|
|
Value::ByVal(primval) => Ok(primval),
|
|
|
|
Value::ByValPair(..) => bug!("value_to_primval can't work with fat pointers"),
|
|
|
|
},
|
2016-09-19 02:19:31 -06:00
|
|
|
|
|
|
|
// TODO(solson): Sanity-check the primval type against the input type.
|
2016-09-19 03:35:35 -06:00
|
|
|
Value::ByVal(primval) => Ok(primval),
|
2016-09-26 17:49:30 +02:00
|
|
|
Value::ByValPair(..) => bug!("value_to_primval can't work with fat pointers"),
|
2016-09-19 02:19:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-19 03:35:35 -06:00
|
|
|
fn write_value(
|
|
|
|
&mut self,
|
|
|
|
value: Value,
|
|
|
|
dest: Pointer,
|
|
|
|
dest_ty: Ty<'tcx>
|
|
|
|
) -> EvalResult<'tcx, ()> {
|
2016-09-19 02:19:31 -06:00
|
|
|
match value {
|
2016-09-19 03:35:35 -06:00
|
|
|
Value::ByRef(ptr) => self.move_(ptr, dest, dest_ty),
|
|
|
|
Value::ByVal(primval) => self.memory.write_primval(dest, primval),
|
2016-09-26 17:49:30 +02:00
|
|
|
Value::ByValPair(a, b) => {
|
|
|
|
self.memory.write_primval(dest, a)?;
|
2016-09-27 10:33:47 +02:00
|
|
|
let layout = self.type_layout(dest_ty);
|
|
|
|
let offset = match *layout {
|
2016-09-27 10:39:14 +02:00
|
|
|
Layout::Univariant { .. } => {
|
2016-09-27 10:33:47 +02:00
|
|
|
bug!("I don't think this can ever happen until we have custom fat pointers");
|
|
|
|
//variant.field_offset(1).bytes() as isize
|
|
|
|
},
|
|
|
|
Layout::FatPointer { .. } => self.memory.pointer_size() as isize,
|
|
|
|
_ => bug!("tried to write value pair of non-fat pointer type: {:?}", layout),
|
|
|
|
};
|
|
|
|
let extra_dest = dest.offset(offset);
|
2016-09-26 17:49:30 +02:00
|
|
|
self.memory.write_primval(extra_dest, b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_value(&mut self, ptr: Pointer, ty: Ty<'tcx>) -> EvalResult<'tcx, Value> {
|
2016-07-05 09:08:24 +02:00
|
|
|
use syntax::ast::{IntTy, UintTy, FloatTy};
|
2016-09-19 04:38:51 -06:00
|
|
|
let val = match &ty.sty {
|
|
|
|
&ty::TyBool => PrimVal::Bool(self.memory.read_bool(ptr)?),
|
|
|
|
&ty::TyChar => {
|
2016-06-20 12:29:45 +02:00
|
|
|
let c = self.memory.read_uint(ptr, 4)? as u32;
|
|
|
|
match ::std::char::from_u32(c) {
|
|
|
|
Some(ch) => PrimVal::Char(ch),
|
2016-09-07 18:34:59 +02:00
|
|
|
None => return Err(EvalError::InvalidChar(c as u64)),
|
2016-06-20 12:29:45 +02:00
|
|
|
}
|
|
|
|
}
|
2016-09-19 04:56:09 -06:00
|
|
|
|
2016-09-19 04:38:51 -06:00
|
|
|
&ty::TyInt(IntTy::I8) => PrimVal::I8(self.memory.read_int(ptr, 1)? as i8),
|
|
|
|
&ty::TyInt(IntTy::I16) => PrimVal::I16(self.memory.read_int(ptr, 2)? as i16),
|
|
|
|
&ty::TyInt(IntTy::I32) => PrimVal::I32(self.memory.read_int(ptr, 4)? as i32),
|
|
|
|
&ty::TyInt(IntTy::I64) => PrimVal::I64(self.memory.read_int(ptr, 8)? as i64),
|
|
|
|
&ty::TyUint(UintTy::U8) => PrimVal::U8(self.memory.read_uint(ptr, 1)? as u8),
|
|
|
|
&ty::TyUint(UintTy::U16) => PrimVal::U16(self.memory.read_uint(ptr, 2)? as u16),
|
|
|
|
&ty::TyUint(UintTy::U32) => PrimVal::U32(self.memory.read_uint(ptr, 4)? as u32),
|
|
|
|
&ty::TyUint(UintTy::U64) => PrimVal::U64(self.memory.read_uint(ptr, 8)? as u64),
|
|
|
|
|
2016-09-19 04:56:09 -06:00
|
|
|
&ty::TyInt(IntTy::Is) => self.target_isize_primval(self.memory.read_isize(ptr)?),
|
|
|
|
&ty::TyUint(UintTy::Us) => self.target_usize_primval(self.memory.read_usize(ptr)?),
|
2016-09-19 04:38:51 -06:00
|
|
|
|
|
|
|
&ty::TyFloat(FloatTy::F32) => PrimVal::F32(self.memory.read_f32(ptr)?),
|
|
|
|
&ty::TyFloat(FloatTy::F64) => PrimVal::F64(self.memory.read_f64(ptr)?),
|
|
|
|
|
|
|
|
&ty::TyFnDef(def_id, substs, fn_ty) => {
|
2016-06-20 10:35:15 +02:00
|
|
|
PrimVal::FnPtr(self.memory.create_fn_ptr(def_id, substs, fn_ty))
|
|
|
|
},
|
2016-09-19 04:38:51 -06:00
|
|
|
&ty::TyFnPtr(_) => self.memory.read_ptr(ptr).map(PrimVal::FnPtr)?,
|
2016-09-23 15:48:23 +02:00
|
|
|
&ty::TyBox(ty) |
|
2016-09-19 04:38:51 -06:00
|
|
|
&ty::TyRef(_, ty::TypeAndMut { ty, .. }) |
|
|
|
|
&ty::TyRawPtr(ty::TypeAndMut { ty, .. }) => {
|
2016-09-23 15:48:23 +02:00
|
|
|
let p = self.memory.read_ptr(ptr)?;
|
2016-03-18 23:03:46 -06:00
|
|
|
if self.type_is_sized(ty) {
|
2016-09-23 15:48:23 +02:00
|
|
|
PrimVal::Ptr(p)
|
2016-03-18 23:03:46 -06:00
|
|
|
} else {
|
2016-09-23 15:48:23 +02:00
|
|
|
// FIXME: extract the offset to the tail field for `Box<(i64, i32, [u8])>`
|
|
|
|
let extra = ptr.offset(self.memory.pointer_size() as isize);
|
2016-09-26 17:49:30 +02:00
|
|
|
let extra = match self.tcx.struct_tail(ty).sty {
|
|
|
|
ty::TyTrait(..) => PrimVal::Ptr(self.memory.read_ptr(extra)?),
|
2016-09-23 15:48:23 +02:00
|
|
|
ty::TySlice(..) |
|
2016-09-26 17:49:30 +02:00
|
|
|
ty::TyStr => self.target_usize_primval(self.memory.read_usize(extra)?),
|
2016-09-23 15:48:23 +02:00
|
|
|
_ => bug!("unsized primval ptr read from {:?}", ty),
|
2016-09-26 17:49:30 +02:00
|
|
|
};
|
|
|
|
return Ok(Value::ByValPair(PrimVal::Ptr(p), extra));
|
2016-03-18 23:03:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-19 04:38:51 -06:00
|
|
|
&ty::TyAdt(..) => {
|
2016-09-07 18:34:59 +02:00
|
|
|
use rustc::ty::layout::Layout::*;
|
|
|
|
if let CEnum { discr, signed, .. } = *self.type_layout(ty) {
|
|
|
|
match (discr.size().bytes(), signed) {
|
|
|
|
(1, true) => PrimVal::I8(self.memory.read_int(ptr, 1)? as i8),
|
|
|
|
(2, true) => PrimVal::I16(self.memory.read_int(ptr, 2)? as i16),
|
|
|
|
(4, true) => PrimVal::I32(self.memory.read_int(ptr, 4)? as i32),
|
|
|
|
(8, true) => PrimVal::I64(self.memory.read_int(ptr, 8)? as i64),
|
|
|
|
(1, false) => PrimVal::U8(self.memory.read_uint(ptr, 1)? as u8),
|
|
|
|
(2, false) => PrimVal::U16(self.memory.read_uint(ptr, 2)? as u16),
|
|
|
|
(4, false) => PrimVal::U32(self.memory.read_uint(ptr, 4)? as u32),
|
|
|
|
(8, false) => PrimVal::U64(self.memory.read_uint(ptr, 8)? as u64),
|
|
|
|
(size, _) => bug!("CEnum discr size {}", size),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bug!("primitive read of non-clike enum: {:?}", ty);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-09-06 16:16:49 +02:00
|
|
|
_ => bug!("primitive read of non-primitive type: {:?}", ty),
|
2016-03-18 23:03:46 -06:00
|
|
|
};
|
2016-09-26 17:49:30 +02:00
|
|
|
Ok(Value::ByVal(val))
|
2016-03-18 23:03:46 -06:00
|
|
|
}
|
|
|
|
|
2016-06-09 16:01:53 +02:00
|
|
|
fn frame(&self) -> &Frame<'a, 'tcx> {
|
2016-03-07 07:10:52 -06:00
|
|
|
self.stack.last().expect("no call frames exist")
|
|
|
|
}
|
2016-03-14 20:39:51 -06:00
|
|
|
|
2016-06-15 12:55:04 +02:00
|
|
|
pub fn frame_mut(&mut self) -> &mut Frame<'a, 'tcx> {
|
2016-03-14 20:39:51 -06:00
|
|
|
self.stack.last_mut().expect("no call frames exist")
|
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2016-06-09 16:01:53 +02:00
|
|
|
fn mir(&self) -> CachedMir<'a, 'tcx> {
|
2016-05-09 18:21:21 -06:00
|
|
|
self.frame().mir.clone()
|
2016-03-20 22:07:25 -06:00
|
|
|
}
|
2016-06-08 11:11:08 +02:00
|
|
|
|
|
|
|
fn substs(&self) -> &'tcx Substs<'tcx> {
|
|
|
|
self.frame().substs
|
|
|
|
}
|
2016-03-14 21:18:39 -06:00
|
|
|
|
2016-09-27 18:01:33 +02:00
|
|
|
fn unsize_into(
|
|
|
|
&mut self,
|
|
|
|
src: Value,
|
|
|
|
src_ty: Ty<'tcx>,
|
|
|
|
dest: Pointer,
|
|
|
|
dest_ty: Ty<'tcx>,
|
|
|
|
) -> EvalResult<'tcx, ()> {
|
|
|
|
match (&src_ty.sty, &dest_ty.sty) {
|
|
|
|
(&ty::TyBox(sty), &ty::TyBox(dty)) |
|
|
|
|
(&ty::TyRef(_, ty::TypeAndMut { ty: sty, .. }), &ty::TyRef(_, ty::TypeAndMut { ty: dty, .. })) |
|
|
|
|
(&ty::TyRef(_, ty::TypeAndMut { ty: sty, .. }), &ty::TyRawPtr(ty::TypeAndMut { ty: dty, .. })) |
|
|
|
|
(&ty::TyRawPtr(ty::TypeAndMut { ty: sty, .. }), &ty::TyRawPtr(ty::TypeAndMut { ty: dty, .. })) => {
|
|
|
|
// A<Struct> -> A<Trait> conversion
|
|
|
|
let (src_pointee_ty, dest_pointee_ty) = self.tcx.struct_lockstep_tails(sty, dty);
|
|
|
|
|
|
|
|
match (&src_pointee_ty.sty, &dest_pointee_ty.sty) {
|
|
|
|
(&ty::TyArray(_, length), &ty::TySlice(_)) => {
|
|
|
|
let ptr = src.read_ptr(&self.memory)?;
|
|
|
|
self.memory.write_ptr(dest, ptr)?;
|
|
|
|
let ptr_size = self.memory.pointer_size() as isize;
|
|
|
|
let dest_extra = dest.offset(ptr_size);
|
|
|
|
self.memory.write_usize(dest_extra, length as u64)?;
|
|
|
|
}
|
|
|
|
(&ty::TyTrait(_), &ty::TyTrait(_)) => {
|
|
|
|
// For now, upcasts are limited to changes in marker
|
|
|
|
// traits, and hence never actually require an actual
|
|
|
|
// change to the vtable.
|
|
|
|
self.write_value(src, dest, dest_ty)?;
|
|
|
|
},
|
|
|
|
(_, &ty::TyTrait(ref data)) => {
|
|
|
|
let trait_ref = data.principal.with_self_ty(self.tcx, src_pointee_ty);
|
|
|
|
let trait_ref = self.tcx.erase_regions(&trait_ref);
|
|
|
|
let vtable = self.get_vtable(trait_ref)?;
|
|
|
|
let ptr = src.read_ptr(&self.memory)?;
|
|
|
|
|
|
|
|
self.memory.write_ptr(dest, ptr)?;
|
|
|
|
let ptr_size = self.memory.pointer_size() as isize;
|
|
|
|
let dest_extra = dest.offset(ptr_size);
|
|
|
|
self.memory.write_ptr(dest_extra, vtable)?;
|
|
|
|
},
|
|
|
|
|
|
|
|
_ => bug!("invalid unsizing {:?} -> {:?}", src_ty, dest_ty),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(&ty::TyAdt(def_a, substs_a), &ty::TyAdt(def_b, substs_b)) => {
|
|
|
|
// unsizing of generic struct with pointer fields
|
|
|
|
// Example: `Arc<T>` -> `Arc<Trait>`
|
|
|
|
// here we need to increase the size of every &T thin ptr field to a fat ptr
|
|
|
|
|
|
|
|
assert_eq!(def_a, def_b);
|
|
|
|
|
|
|
|
let src_fields = def_a.variants[0].fields.iter();
|
|
|
|
let dst_fields = def_b.variants[0].fields.iter();
|
|
|
|
|
|
|
|
//let src = adt::MaybeSizedValue::sized(src);
|
|
|
|
//let dst = adt::MaybeSizedValue::sized(dst);
|
|
|
|
let src_ptr = match src {
|
|
|
|
Value::ByRef(ptr) => ptr,
|
|
|
|
_ => panic!("expected pointer, got {:?}", src),
|
|
|
|
};
|
|
|
|
|
|
|
|
let iter = src_fields.zip(dst_fields).enumerate();
|
|
|
|
for (i, (src_f, dst_f)) in iter {
|
|
|
|
let src_fty = self.monomorphize_field_ty(src_f, substs_a);
|
|
|
|
let dst_fty = self.monomorphize_field_ty(dst_f, substs_b);
|
|
|
|
if self.type_size(dst_fty) == 0 {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let src_field_offset = self.get_field_offset(src_ty, i)?.bytes() as isize;
|
|
|
|
let dst_field_offset = self.get_field_offset(dest_ty, i)?.bytes() as isize;
|
|
|
|
let src_f_ptr = src_ptr.offset(src_field_offset);
|
|
|
|
let dst_f_ptr = dest.offset(dst_field_offset);
|
|
|
|
if src_fty == dst_fty {
|
|
|
|
self.move_(src_f_ptr, dst_f_ptr, src_fty)?;
|
|
|
|
} else {
|
|
|
|
self.unsize_into(Value::ByRef(src_f_ptr), src_fty, dst_f_ptr, dst_fty)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => bug!("unsize_into: invalid conversion: {:?} -> {:?}",
|
|
|
|
src_ty,
|
|
|
|
dest_ty),
|
2016-03-20 22:59:13 -06:00
|
|
|
}
|
2016-09-27 18:01:33 +02:00
|
|
|
Ok(())
|
2016-03-20 22:59:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 10:14:53 +02:00
|
|
|
impl Lvalue {
|
|
|
|
fn to_ptr(self) -> Pointer {
|
|
|
|
assert_eq!(self.extra, LvalueExtra::None);
|
|
|
|
self.ptr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-14 21:48:00 -06:00
|
|
|
impl<'mir, 'tcx: 'mir> Deref for CachedMir<'mir, 'tcx> {
|
|
|
|
type Target = mir::Mir<'tcx>;
|
|
|
|
fn deref(&self) -> &mir::Mir<'tcx> {
|
|
|
|
match *self {
|
|
|
|
CachedMir::Ref(r) => r,
|
2016-05-27 16:12:17 +02:00
|
|
|
CachedMir::Owned(ref rc) => rc,
|
2016-03-14 21:48:00 -06:00
|
|
|
}
|
2016-03-14 21:18:39 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-17 21:35:37 -06:00
|
|
|
pub fn eval_main<'a, 'tcx: 'a>(
|
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
mir_map: &'a MirMap<'tcx>,
|
2016-08-27 01:44:46 -06:00
|
|
|
def_id: DefId,
|
2016-07-07 11:20:46 +02:00
|
|
|
memory_size: usize,
|
2016-07-05 13:17:40 +02:00
|
|
|
step_limit: u64,
|
2016-07-07 11:20:46 +02:00
|
|
|
stack_limit: usize,
|
2016-09-27 17:02:04 +02:00
|
|
|
session: &'a Session,
|
2016-06-17 21:35:37 -06:00
|
|
|
) {
|
2016-08-27 01:44:46 -06:00
|
|
|
let mir = mir_map.map.get(&def_id).expect("no mir for main function");
|
2016-09-27 17:02:04 +02:00
|
|
|
let mut ecx = EvalContext::new(tcx, mir_map, memory_size, stack_limit, session);
|
2016-08-27 01:44:46 -06:00
|
|
|
let substs = subst::Substs::empty(tcx);
|
2016-07-05 10:47:10 +02:00
|
|
|
let return_ptr = ecx.alloc_ret_ptr(mir.return_ty, substs)
|
2016-08-27 01:44:46 -06:00
|
|
|
.expect("should at least be able to allocate space for the main function's return value");
|
2016-06-17 21:35:37 -06:00
|
|
|
|
2016-09-09 17:44:04 +02:00
|
|
|
ecx.push_stack_frame(def_id, mir.span, CachedMir::Ref(mir), substs, Some(return_ptr), StackPopCleanup::None)
|
2016-08-27 01:44:46 -06:00
|
|
|
.expect("could not allocate first stack frame");
|
2016-06-17 21:35:37 -06:00
|
|
|
|
|
|
|
if mir.arg_decls.len() == 2 {
|
|
|
|
// start function
|
2016-06-23 10:00:31 +02:00
|
|
|
let ptr_size = ecx.memory().pointer_size();
|
2016-07-05 14:27:27 +02:00
|
|
|
let nargs = ecx.memory_mut().allocate(ptr_size, ptr_size).expect("can't allocate memory for nargs");
|
2016-06-17 21:35:37 -06:00
|
|
|
ecx.memory_mut().write_usize(nargs, 0).unwrap();
|
2016-07-05 14:27:27 +02:00
|
|
|
let args = ecx.memory_mut().allocate(ptr_size, ptr_size).expect("can't allocate memory for arg pointer");
|
2016-06-17 21:35:37 -06:00
|
|
|
ecx.memory_mut().write_usize(args, 0).unwrap();
|
|
|
|
ecx.frame_mut().locals[0] = nargs;
|
|
|
|
ecx.frame_mut().locals[1] = args;
|
|
|
|
}
|
|
|
|
|
2016-07-05 13:17:40 +02:00
|
|
|
for _ in 0..step_limit {
|
2016-06-23 00:02:47 -06:00
|
|
|
match ecx.step() {
|
2016-06-17 21:35:37 -06:00
|
|
|
Ok(true) => {}
|
2016-07-05 13:17:40 +02:00
|
|
|
Ok(false) => return,
|
2016-06-17 21:35:37 -06:00
|
|
|
// FIXME: diverging functions can end up here in some future miri
|
|
|
|
Err(e) => {
|
|
|
|
report(tcx, &ecx, e);
|
2016-07-05 13:17:40 +02:00
|
|
|
return;
|
2016-06-17 21:35:37 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-05 13:17:40 +02:00
|
|
|
report(tcx, &ecx, EvalError::ExecutionTimeLimitReached);
|
2016-06-17 21:35:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn report(tcx: TyCtxt, ecx: &EvalContext, e: EvalError) {
|
|
|
|
let frame = ecx.stack().last().expect("stackframe was empty");
|
|
|
|
let block = &frame.mir.basic_blocks()[frame.block];
|
|
|
|
let span = if frame.stmt < block.statements.len() {
|
|
|
|
block.statements[frame.stmt].source_info.span
|
|
|
|
} else {
|
|
|
|
block.terminator().source_info.span
|
|
|
|
};
|
|
|
|
let mut err = tcx.sess.struct_span_err(span, &e.to_string());
|
|
|
|
for &Frame { def_id, substs, span, .. } in ecx.stack().iter().rev() {
|
|
|
|
// FIXME(solson): Find a way to do this without this Display impl hack.
|
|
|
|
use rustc::util::ppaux;
|
|
|
|
use std::fmt;
|
|
|
|
struct Instance<'tcx>(DefId, &'tcx subst::Substs<'tcx>);
|
2016-09-15 16:10:58 +02:00
|
|
|
impl<'tcx> ::std::panic::UnwindSafe for Instance<'tcx> {}
|
|
|
|
impl<'tcx> ::std::panic::RefUnwindSafe for Instance<'tcx> {}
|
2016-06-17 21:35:37 -06:00
|
|
|
impl<'tcx> fmt::Display for Instance<'tcx> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2016-08-27 01:44:46 -06:00
|
|
|
ppaux::parameterized(f, self.1, self.0, ppaux::Ns::Value, &[])
|
2016-06-17 21:35:37 -06:00
|
|
|
}
|
|
|
|
}
|
2016-09-20 12:51:48 +02:00
|
|
|
err.span_note(span, &format!("inside call to {}", Instance(def_id, substs)));
|
2016-06-17 21:35:37 -06:00
|
|
|
}
|
|
|
|
err.emit();
|
|
|
|
}
|
2016-06-23 01:03:58 -06:00
|
|
|
|
2016-06-30 21:33:24 -06:00
|
|
|
pub fn run_mir_passes<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, mir_map: &mut MirMap<'tcx>) {
|
|
|
|
let mut passes = ::rustc::mir::transform::Passes::new();
|
|
|
|
passes.push_hook(Box::new(::rustc_mir::transform::dump_mir::DumpMir));
|
|
|
|
passes.push_pass(Box::new(::rustc_mir::transform::no_landing_pads::NoLandingPads));
|
|
|
|
passes.push_pass(Box::new(::rustc_mir::transform::simplify_cfg::SimplifyCfg::new("no-landing-pads")));
|
|
|
|
|
|
|
|
passes.push_pass(Box::new(::rustc_mir::transform::erase_regions::EraseRegions));
|
|
|
|
|
|
|
|
passes.push_pass(Box::new(::rustc_borrowck::ElaborateDrops));
|
|
|
|
passes.push_pass(Box::new(::rustc_mir::transform::no_landing_pads::NoLandingPads));
|
|
|
|
passes.push_pass(Box::new(::rustc_mir::transform::simplify_cfg::SimplifyCfg::new("elaborate-drops")));
|
|
|
|
passes.push_pass(Box::new(::rustc_mir::transform::dump_mir::Marker("PreMiri")));
|
|
|
|
|
|
|
|
passes.run_passes(tcx, mir_map);
|
|
|
|
}
|
|
|
|
|
2016-06-23 01:03:58 -06:00
|
|
|
// TODO(solson): Upstream these methods into rustc::ty::layout.
|
|
|
|
|
|
|
|
trait IntegerExt {
|
|
|
|
fn size(self) -> Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntegerExt for layout::Integer {
|
|
|
|
fn size(self) -> Size {
|
|
|
|
use rustc::ty::layout::Integer::*;
|
|
|
|
match self {
|
|
|
|
I1 | I8 => Size::from_bits(8),
|
|
|
|
I16 => Size::from_bits(16),
|
|
|
|
I32 => Size::from_bits(32),
|
|
|
|
I64 => Size::from_bits(64),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait StructExt {
|
|
|
|
fn field_offset(&self, index: usize) -> Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StructExt for layout::Struct {
|
|
|
|
fn field_offset(&self, index: usize) -> Size {
|
|
|
|
if index == 0 {
|
|
|
|
Size::from_bytes(0)
|
|
|
|
} else {
|
|
|
|
self.offset_after_field[index - 1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|