2016-03-17 06:32:00 -05:00
|
|
|
use arena::TypedArena;
|
2016-03-28 18:43:23 -05:00
|
|
|
use rustc::infer;
|
2016-03-31 23:34:07 -05:00
|
|
|
use rustc::middle::const_val;
|
2016-03-13 18:19:42 -05:00
|
|
|
use rustc::middle::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-03-28 18:43:23 -05:00
|
|
|
use rustc::traits::{self, ProjectionMode};
|
|
|
|
use rustc::ty::fold::TypeFoldable;
|
|
|
|
use rustc::ty::subst::{self, Subst, Substs};
|
|
|
|
use rustc::ty::{self, TyCtxt};
|
2016-03-13 18:19:42 -05:00
|
|
|
use rustc::util::nodemap::DefIdMap;
|
2016-03-17 06:32:00 -05:00
|
|
|
use rustc_data_structures::fnv::FnvHashMap;
|
2016-03-13 18:19:42 -05:00
|
|
|
use std::cell::RefCell;
|
2016-03-17 05:38:46 -05:00
|
|
|
use std::iter;
|
2016-03-13 18:19:42 -05:00
|
|
|
use std::ops::Deref;
|
|
|
|
use std::rc::Rc;
|
2016-03-18 12:52:13 -05:00
|
|
|
use syntax::ast;
|
2016-03-20 19:41:39 -05:00
|
|
|
use syntax::attr;
|
2016-03-29 20:09:26 -05:00
|
|
|
use syntax::codemap::{self, DUMMY_SP};
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2016-03-19 00:03:46 -05:00
|
|
|
use error::{EvalError, EvalResult};
|
2016-04-06 04:45:06 -05:00
|
|
|
use memory::{FieldRepr, Memory, Pointer, Repr};
|
2016-03-19 00:03:46 -05:00
|
|
|
use primval::{self, PrimVal};
|
2016-03-05 00:23:37 -06:00
|
|
|
|
2016-03-21 05:19:27 -05:00
|
|
|
const TRACE_EXECUTION: bool = false;
|
2016-02-27 19:20:25 -06:00
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
struct Interpreter<'a, 'tcx: 'a, 'arena> {
|
2016-03-14 22:18:39 -05:00
|
|
|
/// The results of the type checker, from rustc.
|
|
|
|
tcx: &'a TyCtxt<'tcx>,
|
|
|
|
|
|
|
|
/// 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>>>>,
|
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
/// An arena allocator for type representations.
|
|
|
|
repr_arena: &'arena TypedArena<Repr>,
|
|
|
|
|
|
|
|
/// A cache for in-memory representations of types.
|
|
|
|
repr_cache: RefCell<FnvHashMap<ty::Ty<'tcx>, &'arena Repr>>,
|
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
/// The virtual memory system.
|
|
|
|
memory: Memory,
|
|
|
|
|
|
|
|
/// The virtual call stack.
|
|
|
|
stack: Vec<Frame<'a, 'tcx>>,
|
|
|
|
|
2016-03-14 22:48:00 -05:00
|
|
|
/// Another stack containing the type substitutions for the current function invocation. It
|
|
|
|
/// exists separately from `stack` because it must contain the `Substs` for a function while
|
2016-03-14 22:18:39 -05:00
|
|
|
/// *creating* the `Frame` for that same function.
|
|
|
|
substs_stack: Vec<&'tcx Substs<'tcx>>,
|
2016-03-30 23:04:53 -05:00
|
|
|
|
|
|
|
// TODO(tsion): Merge with `substs_stack`. Also try restructuring `Frame` to accomodate.
|
|
|
|
/// A stack of the things necessary to print good strack traces:
|
|
|
|
/// * Function DefIds and Substs to print proper substituted function names.
|
|
|
|
/// * Spans pointing to specific function calls in the source.
|
|
|
|
name_stack: Vec<(DefId, &'tcx Substs<'tcx>, codemap::Span)>,
|
2016-03-14 22:18:39 -05:00
|
|
|
}
|
|
|
|
|
2016-03-06 04:23:24 -06:00
|
|
|
/// A stack frame.
|
2016-03-07 07:10:52 -06:00
|
|
|
struct Frame<'a, 'tcx: 'a> {
|
2016-03-13 15:46:24 -05:00
|
|
|
/// The MIR for the function called on this frame.
|
2016-03-13 18:19:42 -05:00
|
|
|
mir: CachedMir<'a, 'tcx>,
|
2016-03-07 07:10:52 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
/// The block this frame will execute when a function call returns back to this frame.
|
2016-03-14 21:39:51 -05:00
|
|
|
next_block: mir::BasicBlock,
|
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
/// A pointer for writing the return value of the current call if it's not a diverging call.
|
2016-03-06 04:23:24 -06:00
|
|
|
return_ptr: Option<Pointer>,
|
2016-02-27 19:20:25 -06: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`.
|
|
|
|
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`.
|
|
|
|
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`.
|
|
|
|
temp_offset: usize,
|
|
|
|
}
|
2016-02-27 19:20:25 -06:00
|
|
|
|
2016-03-20 23:59:13 -05: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(memory::AllocId),
|
|
|
|
}
|
|
|
|
|
2016-03-14 22:48:00 -05:00
|
|
|
#[derive(Clone)]
|
|
|
|
enum CachedMir<'mir, 'tcx: 'mir> {
|
|
|
|
Ref(&'mir mir::Mir<'tcx>),
|
|
|
|
Owned(Rc<mir::Mir<'tcx>>)
|
|
|
|
}
|
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
/// Represents the action to be taken in the main loop as a result of executing a terminator.
|
|
|
|
enum TerminatorTarget {
|
|
|
|
/// Make a local jump to the given block.
|
|
|
|
Block(mir::BasicBlock),
|
2016-03-06 04:23:24 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
/// Start executing from the new current frame. (For function calls.)
|
|
|
|
Call,
|
2015-11-19 07:07:47 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
/// Stop executing the current frame and resume the previous frame.
|
|
|
|
Return,
|
2015-11-16 15:22:27 -06:00
|
|
|
}
|
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
impl<'a, 'tcx: 'a, 'arena> Interpreter<'a, 'tcx, 'arena> {
|
|
|
|
fn new(tcx: &'a TyCtxt<'tcx>, mir_map: &'a MirMap<'tcx>, repr_arena: &'arena TypedArena<Repr>)
|
|
|
|
-> Self
|
|
|
|
{
|
2015-11-12 15:50:58 -06:00
|
|
|
Interpreter {
|
2015-11-19 07:07:47 -06:00
|
|
|
tcx: tcx,
|
|
|
|
mir_map: mir_map,
|
2016-03-13 18:19:42 -05:00
|
|
|
mir_cache: RefCell::new(DefIdMap()),
|
2016-03-17 06:32:00 -05:00
|
|
|
repr_arena: repr_arena,
|
|
|
|
repr_cache: RefCell::new(FnvHashMap()),
|
2016-03-07 10:14:47 -06:00
|
|
|
memory: Memory::new(),
|
2016-03-06 04:23:24 -06:00
|
|
|
stack: Vec::new(),
|
2016-03-14 21:39:51 -05:00
|
|
|
substs_stack: Vec::new(),
|
2016-03-30 23:04:53 -05:00
|
|
|
name_stack: Vec::new(),
|
2016-03-06 04:23:24 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-29 20:09:26 -05:00
|
|
|
fn maybe_report<T>(&self, span: codemap::Span, r: EvalResult<T>) -> EvalResult<T> {
|
|
|
|
if let Err(ref e) = r {
|
|
|
|
let mut err = self.tcx.sess.struct_span_err(span, &e.to_string());
|
2016-03-30 23:04:53 -05:00
|
|
|
for &(def_id, substs, span) in self.name_stack.iter().rev() {
|
|
|
|
// FIXME(tsion): Find a way to do this without this Display impl hack.
|
|
|
|
use rustc::util::ppaux;
|
|
|
|
use std::fmt;
|
|
|
|
struct Instance<'tcx>(DefId, &'tcx Substs<'tcx>);
|
|
|
|
impl<'tcx> fmt::Display for Instance<'tcx> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
ppaux::parameterized(f, self.1, self.0, ppaux::Ns::Value, &[],
|
|
|
|
|tcx| tcx.lookup_item_type(self.0).generics)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err.span_note(span, &format!("inside call to {}", Instance(def_id, substs)));
|
|
|
|
}
|
2016-03-29 20:09:26 -05:00
|
|
|
err.emit();
|
|
|
|
}
|
|
|
|
r
|
|
|
|
}
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
fn log<F>(&self, extra_indent: usize, f: F) where F: FnOnce() {
|
2016-04-06 20:28:40 -05:00
|
|
|
let indent = self.stack.len() + extra_indent;
|
2016-04-06 04:45:06 -05:00
|
|
|
if !TRACE_EXECUTION { return; }
|
2016-04-06 20:28:40 -05:00
|
|
|
for _ in 0..indent { print!(" "); }
|
2016-04-06 04:45:06 -05:00
|
|
|
f();
|
|
|
|
println!("");
|
|
|
|
}
|
2016-03-14 22:48:00 -05:00
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
fn run(&mut self) -> EvalResult<()> {
|
2016-03-14 22:48:00 -05:00
|
|
|
'outer: while !self.stack.is_empty() {
|
2016-03-20 23:07:25 -05:00
|
|
|
let mut current_block = self.frame().next_block;
|
2016-03-14 22:48:00 -05:00
|
|
|
|
|
|
|
loop {
|
2016-04-06 20:28:40 -05:00
|
|
|
self.log(0, || print!("// {:?}", current_block));
|
2016-03-20 23:07:25 -05:00
|
|
|
let current_mir = self.mir().clone(); // Cloning a reference.
|
2016-03-14 22:48:00 -05:00
|
|
|
let block_data = current_mir.basic_block_data(current_block);
|
|
|
|
|
|
|
|
for stmt in &block_data.statements {
|
2016-04-06 20:28:40 -05:00
|
|
|
self.log(0, || print!("{:?}", stmt));
|
2016-03-14 22:48:00 -05:00
|
|
|
let mir::StatementKind::Assign(ref lvalue, ref rvalue) = stmt.kind;
|
2016-03-29 20:09:26 -05:00
|
|
|
let result = self.eval_assignment(lvalue, rvalue);
|
|
|
|
try!(self.maybe_report(stmt.span, result));
|
2016-03-14 22:48:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let terminator = block_data.terminator();
|
2016-04-06 20:28:40 -05:00
|
|
|
self.log(0, || print!("{:?}", terminator.kind));
|
2016-03-14 22:48:00 -05:00
|
|
|
|
2016-03-29 20:09:26 -05:00
|
|
|
let result = self.eval_terminator(terminator);
|
|
|
|
match try!(self.maybe_report(terminator.span, result)) {
|
2016-03-14 22:48:00 -05:00
|
|
|
TerminatorTarget::Block(block) => current_block = block,
|
|
|
|
TerminatorTarget::Return => {
|
|
|
|
self.pop_stack_frame();
|
2016-03-30 23:04:53 -05:00
|
|
|
self.name_stack.pop();
|
2016-03-14 22:48:00 -05:00
|
|
|
continue 'outer;
|
|
|
|
}
|
|
|
|
TerminatorTarget::Call => continue 'outer,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-03-29 23:13:31 -05:00
|
|
|
fn push_stack_frame(&mut self, mir: CachedMir<'a, 'tcx>, substs: &'tcx Substs<'tcx>,
|
|
|
|
return_ptr: Option<Pointer>)
|
|
|
|
{
|
|
|
|
self.substs_stack.push(substs);
|
|
|
|
|
2016-03-18 11:48:31 -05: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 11:48:31 -05:00
|
|
|
|
|
|
|
let locals: Vec<Pointer> = arg_tys.chain(var_tys).chain(temp_tys).map(|ty| {
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = self.type_size(ty);
|
2016-03-17 03:53:03 -05:00
|
|
|
self.memory.allocate(size)
|
2016-03-18 11:48:31 -05:00
|
|
|
}).collect();
|
|
|
|
|
|
|
|
let num_args = mir.arg_decls.len();
|
|
|
|
let num_vars = mir.var_decls.len();
|
2016-03-07 07:10:52 -06:00
|
|
|
|
|
|
|
self.stack.push(Frame {
|
2016-03-13 18:19:42 -05:00
|
|
|
mir: mir.clone(),
|
2016-03-14 21:39:51 -05:00
|
|
|
next_block: mir::START_BLOCK,
|
2016-03-06 04:23:24 -06:00
|
|
|
return_ptr: return_ptr,
|
|
|
|
locals: locals,
|
|
|
|
var_offset: num_args,
|
|
|
|
temp_offset: num_args + num_vars,
|
|
|
|
});
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
|
2016-03-06 04:23:24 -06:00
|
|
|
fn pop_stack_frame(&mut self) {
|
|
|
|
let _frame = self.stack.pop().expect("tried to pop a stack frame, but there were none");
|
|
|
|
// TODO(tsion): Deallocate local variables.
|
2016-03-29 23:13:31 -05:00
|
|
|
self.substs_stack.pop();
|
2016-03-06 04:23:24 -06:00
|
|
|
}
|
|
|
|
|
2016-03-17 00:28:09 -05:00
|
|
|
fn eval_terminator(&mut self, terminator: &mir::Terminator<'tcx>)
|
|
|
|
-> EvalResult<TerminatorTarget> {
|
2016-03-28 18:43:23 -05:00
|
|
|
use rustc::mir::repr::TerminatorKind::*;
|
|
|
|
let target = match terminator.kind {
|
2016-03-14 22:18:39 -05:00
|
|
|
Return => TerminatorTarget::Return,
|
2015-11-19 03:23:50 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
Goto { target } => TerminatorTarget::Block(target),
|
2016-03-07 08:22:18 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
If { ref cond, targets: (then_target, else_target) } => {
|
2016-03-17 00:28:09 -05:00
|
|
|
let cond_ptr = try!(self.eval_operand(cond));
|
2016-03-14 22:18:39 -05:00
|
|
|
let cond_val = try!(self.memory.read_bool(cond_ptr));
|
|
|
|
TerminatorTarget::Block(if cond_val { then_target } else { else_target })
|
|
|
|
}
|
2016-03-07 08:22:18 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
SwitchInt { ref discr, ref values, ref targets, .. } => {
|
2016-03-21 19:51:08 -05:00
|
|
|
let discr_ptr = try!(self.eval_lvalue(discr)).to_ptr();
|
2016-03-17 03:53:03 -05:00
|
|
|
let discr_size = self.lvalue_repr(discr).size();
|
|
|
|
let discr_val = try!(self.memory.read_uint(discr_ptr, discr_size));
|
2016-03-07 08:22:18 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
// Branch to the `otherwise` case by default, if no match is found.
|
|
|
|
let mut target_block = targets[targets.len() - 1];
|
2016-03-07 04:48:12 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
for (index, val_const) in values.iter().enumerate() {
|
|
|
|
let ptr = try!(self.const_to_ptr(val_const));
|
2016-03-17 03:53:03 -05:00
|
|
|
let val = try!(self.memory.read_uint(ptr, discr_size));
|
2016-03-14 22:18:39 -05:00
|
|
|
if discr_val == val {
|
|
|
|
target_block = targets[index];
|
|
|
|
break;
|
2016-03-14 21:39:51 -05:00
|
|
|
}
|
2016-03-14 22:18:39 -05:00
|
|
|
}
|
2016-03-13 07:30:28 -05:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
TerminatorTarget::Block(target_block)
|
|
|
|
}
|
2016-03-13 17:08:23 -05:00
|
|
|
|
2016-03-28 22:08:08 -05:00
|
|
|
Switch { ref discr, ref targets, adt_def } => {
|
2016-03-21 19:51:08 -05:00
|
|
|
let adt_ptr = try!(self.eval_lvalue(discr)).to_ptr();
|
2016-03-15 08:13:31 -05:00
|
|
|
let adt_repr = self.lvalue_repr(discr);
|
2016-03-17 06:32:00 -05:00
|
|
|
let discr_size = match *adt_repr {
|
2016-03-17 05:38:46 -05:00
|
|
|
Repr::Aggregate { discr_size, .. } => discr_size,
|
|
|
|
_ => panic!("attmpted to switch on non-aggregate type"),
|
2016-03-14 22:18:39 -05:00
|
|
|
};
|
2016-03-17 03:53:03 -05:00
|
|
|
let discr_val = try!(self.memory.read_uint(adt_ptr, discr_size));
|
2016-03-28 22:08:08 -05:00
|
|
|
|
|
|
|
let matching = adt_def.variants.iter()
|
|
|
|
.position(|v| discr_val == v.disr_val.to_u64_unchecked());
|
|
|
|
|
|
|
|
match matching {
|
|
|
|
Some(i) => TerminatorTarget::Block(targets[i]),
|
|
|
|
None => return Err(EvalError::InvalidDiscriminant),
|
|
|
|
}
|
2016-03-14 22:18:39 -05:00
|
|
|
}
|
2016-03-14 21:39:51 -05:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
Call { ref func, ref args, ref destination, .. } => {
|
|
|
|
let mut return_ptr = None;
|
|
|
|
if let Some((ref lv, target)) = *destination {
|
2016-03-20 23:07:25 -05:00
|
|
|
self.frame_mut().next_block = target;
|
2016-03-21 19:51:08 -05:00
|
|
|
return_ptr = Some(try!(self.eval_lvalue(lv)).to_ptr());
|
2016-03-14 22:18:39 -05:00
|
|
|
}
|
2016-03-14 21:39:51 -05:00
|
|
|
|
2016-03-18 11:48:31 -05:00
|
|
|
let func_ty = self.operand_ty(func);
|
2016-03-14 22:18:39 -05:00
|
|
|
match func_ty.sty {
|
2016-03-17 00:28:49 -05:00
|
|
|
ty::TyFnDef(def_id, substs, fn_ty) => {
|
2016-03-15 01:45:25 -05:00
|
|
|
use syntax::abi::Abi;
|
2016-03-17 00:28:49 -05:00
|
|
|
match fn_ty.abi {
|
2016-03-17 07:04:24 -05:00
|
|
|
Abi::RustIntrinsic => {
|
|
|
|
let name = self.tcx.item_name(def_id).as_str();
|
2016-03-19 11:01:53 -05:00
|
|
|
match fn_ty.sig.0.output {
|
|
|
|
ty::FnConverging(ty) => {
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = self.type_size(ty);
|
2016-03-19 11:01:53 -05:00
|
|
|
try!(self.call_intrinsic(&name, substs, args,
|
|
|
|
return_ptr.unwrap(), size))
|
|
|
|
}
|
|
|
|
ty::FnDiverging => unimplemented!(),
|
|
|
|
}
|
2016-03-17 07:04:24 -05:00
|
|
|
}
|
2016-03-15 01:45:25 -05:00
|
|
|
|
2016-03-20 19:41:39 -05:00
|
|
|
Abi::C =>
|
|
|
|
try!(self.call_c_abi(def_id, args, return_ptr.unwrap())),
|
|
|
|
|
2016-03-18 11:48:31 -05:00
|
|
|
Abi::Rust | Abi::RustCall => {
|
|
|
|
// TODO(tsion): Adjust the first argument when calling a Fn or
|
|
|
|
// FnMut closure via FnOnce::call_once.
|
|
|
|
|
2016-03-17 00:28:49 -05:00
|
|
|
// Only trait methods can have a Self parameter.
|
2016-03-30 23:04:53 -05:00
|
|
|
let (resolved_def_id, resolved_substs) = if substs.self_ty().is_some() {
|
2016-03-17 00:28:49 -05:00
|
|
|
self.trait_method(def_id, substs)
|
|
|
|
} else {
|
|
|
|
(def_id, substs)
|
|
|
|
};
|
|
|
|
|
2016-03-18 11:48:31 -05:00
|
|
|
let mut arg_srcs = Vec::new();
|
|
|
|
for arg in args {
|
|
|
|
let (src, repr) = try!(self.eval_operand_and_repr(arg));
|
|
|
|
arg_srcs.push((src, repr.size()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if fn_ty.abi == Abi::RustCall && !args.is_empty() {
|
|
|
|
arg_srcs.pop();
|
|
|
|
let last_arg = args.last().unwrap();
|
|
|
|
let (last_src, last_repr) =
|
|
|
|
try!(self.eval_operand_and_repr(last_arg));
|
|
|
|
match *last_repr {
|
|
|
|
Repr::Aggregate { discr_size: 0, ref variants, .. } => {
|
|
|
|
assert_eq!(variants.len(), 1);
|
|
|
|
for field in &variants[0] {
|
|
|
|
let src = last_src.offset(field.offset as isize);
|
|
|
|
arg_srcs.push((src, field.size));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_ => panic!("expected tuple as last argument in function with 'rust-call' ABI"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-30 23:04:53 -05:00
|
|
|
let mir = self.load_mir(resolved_def_id);
|
|
|
|
self.name_stack.push((def_id, substs, terminator.span));
|
|
|
|
self.push_stack_frame(mir, resolved_substs, return_ptr);
|
2016-03-18 11:48:31 -05:00
|
|
|
|
|
|
|
for (i, (src, size)) in arg_srcs.into_iter().enumerate() {
|
2016-03-20 23:07:25 -05:00
|
|
|
let dest = self.frame().locals[i];
|
2016-03-18 11:48:31 -05:00
|
|
|
try!(self.memory.copy(src, dest, size));
|
|
|
|
}
|
|
|
|
|
2016-03-15 01:45:25 -05:00
|
|
|
TerminatorTarget::Call
|
|
|
|
}
|
|
|
|
|
2016-03-20 19:41:39 -05:00
|
|
|
abi => panic!("can't handle function with {:?} ABI", abi),
|
2016-03-15 01:45:25 -05:00
|
|
|
}
|
2016-03-13 17:08:23 -05:00
|
|
|
}
|
2016-02-27 19:20:25 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
_ => panic!("can't handle callee of type {:?}", func_ty),
|
2016-02-18 19:06:22 -06:00
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
2016-03-14 21:39:51 -05:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
Drop { target, .. } => {
|
|
|
|
// TODO: Handle destructors and dynamic drop.
|
|
|
|
TerminatorTarget::Block(target)
|
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2016-03-14 22:18:39 -05:00
|
|
|
Resume => unimplemented!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(target)
|
2015-11-14 01:19:07 -06:00
|
|
|
}
|
|
|
|
|
2016-03-17 07:04:24 -05:00
|
|
|
fn call_intrinsic(&mut self, name: &str, substs: &'tcx Substs<'tcx>,
|
2016-03-19 11:01:53 -05:00
|
|
|
args: &[mir::Operand<'tcx>], dest: Pointer, dest_size: usize)
|
|
|
|
-> EvalResult<TerminatorTarget>
|
2016-03-17 07:00:27 -05:00
|
|
|
{
|
|
|
|
match name {
|
2016-03-19 00:04:07 -05:00
|
|
|
"assume" => {}
|
|
|
|
|
2016-03-18 12:52:28 -05:00
|
|
|
"copy_nonoverlapping" => {
|
|
|
|
let elem_ty = *substs.types.get(subst::FnSpace, 0);
|
2016-04-06 20:01:00 -05:00
|
|
|
let elem_size = self.type_size(elem_ty);
|
2016-03-18 12:52:28 -05:00
|
|
|
|
|
|
|
let src_arg = try!(self.eval_operand(&args[0]));
|
|
|
|
let dest_arg = try!(self.eval_operand(&args[1]));
|
|
|
|
let count_arg = try!(self.eval_operand(&args[2]));
|
|
|
|
|
|
|
|
let src = try!(self.memory.read_ptr(src_arg));
|
|
|
|
let dest = try!(self.memory.read_ptr(dest_arg));
|
2016-03-21 00:24:27 -05:00
|
|
|
let count = try!(self.memory.read_isize(count_arg));
|
2016-03-18 12:52:28 -05:00
|
|
|
|
|
|
|
try!(self.memory.copy(src, dest, count as usize * elem_size));
|
2016-03-17 07:00:27 -05:00
|
|
|
}
|
|
|
|
|
2016-03-19 00:04:07 -05:00
|
|
|
// TODO(tsion): Mark as dropped?
|
2016-03-18 12:52:28 -05:00
|
|
|
"forget" => {}
|
|
|
|
|
2016-03-19 12:01:33 -05:00
|
|
|
"min_align_of" => {
|
|
|
|
try!(self.memory.write_int(dest, 1, dest_size));
|
|
|
|
}
|
|
|
|
|
2016-03-20 20:23:57 -05:00
|
|
|
"move_val_init" => {
|
|
|
|
let ty = *substs.types.get(subst::FnSpace, 0);
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = self.type_size(ty);
|
2016-03-20 20:23:57 -05:00
|
|
|
|
|
|
|
let ptr_arg = try!(self.eval_operand(&args[0]));
|
|
|
|
let ptr = try!(self.memory.read_ptr(ptr_arg));
|
|
|
|
|
|
|
|
let val = try!(self.eval_operand(&args[1]));
|
|
|
|
try!(self.memory.copy(val, ptr, size));
|
|
|
|
}
|
|
|
|
|
2016-04-06 05:19:36 -05:00
|
|
|
// FIXME(tsion): Handle different integer types correctly.
|
|
|
|
"add_with_overflow" => {
|
|
|
|
let ty = *substs.types.get(subst::FnSpace, 0);
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = self.type_size(ty);
|
2016-04-06 05:19:36 -05:00
|
|
|
|
|
|
|
let left_arg = try!(self.eval_operand(&args[0]));
|
|
|
|
let right_arg = try!(self.eval_operand(&args[1]));
|
|
|
|
|
|
|
|
let left = try!(self.memory.read_int(left_arg, size));
|
|
|
|
let right = try!(self.memory.read_int(right_arg, size));
|
|
|
|
|
|
|
|
let (n, overflowed) = unsafe {
|
|
|
|
::std::intrinsics::add_with_overflow::<i64>(left, right)
|
|
|
|
};
|
|
|
|
|
|
|
|
try!(self.memory.write_int(dest, n, size));
|
|
|
|
try!(self.memory.write_bool(dest.offset(size as isize), overflowed));
|
|
|
|
}
|
|
|
|
|
2016-03-19 12:01:33 -05:00
|
|
|
// FIXME(tsion): Handle different integer types correctly.
|
|
|
|
"mul_with_overflow" => {
|
|
|
|
let ty = *substs.types.get(subst::FnSpace, 0);
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = self.type_size(ty);
|
2016-03-19 12:01:33 -05:00
|
|
|
|
|
|
|
let left_arg = try!(self.eval_operand(&args[0]));
|
|
|
|
let right_arg = try!(self.eval_operand(&args[1]));
|
|
|
|
|
|
|
|
let left = try!(self.memory.read_int(left_arg, size));
|
|
|
|
let right = try!(self.memory.read_int(right_arg, size));
|
|
|
|
|
|
|
|
let (n, overflowed) = unsafe {
|
|
|
|
::std::intrinsics::mul_with_overflow::<i64>(left, right)
|
|
|
|
};
|
|
|
|
|
|
|
|
try!(self.memory.write_int(dest, n, size));
|
|
|
|
try!(self.memory.write_bool(dest.offset(size as isize), overflowed));
|
|
|
|
}
|
|
|
|
|
2016-03-17 07:00:27 -05:00
|
|
|
"offset" => {
|
|
|
|
let pointee_ty = *substs.types.get(subst::FnSpace, 0);
|
2016-04-06 20:01:00 -05:00
|
|
|
let pointee_size = self.type_size(pointee_ty) as isize;
|
2016-03-18 12:53:24 -05:00
|
|
|
|
|
|
|
let ptr_arg = try!(self.eval_operand(&args[0]));
|
2016-03-17 07:00:27 -05:00
|
|
|
let offset_arg = try!(self.eval_operand(&args[1]));
|
2016-03-18 12:53:24 -05:00
|
|
|
|
2016-03-21 00:24:27 -05:00
|
|
|
let offset = try!(self.memory.read_isize(offset_arg));
|
2016-03-18 12:53:24 -05:00
|
|
|
|
2016-03-19 10:09:13 -05:00
|
|
|
match self.memory.read_ptr(ptr_arg) {
|
|
|
|
Ok(ptr) => {
|
|
|
|
let result_ptr = ptr.offset(offset as isize * pointee_size);
|
|
|
|
try!(self.memory.write_ptr(dest, result_ptr));
|
|
|
|
}
|
|
|
|
Err(EvalError::ReadBytesAsPointer) => {
|
2016-03-21 00:24:27 -05:00
|
|
|
let addr = try!(self.memory.read_isize(ptr_arg));
|
2016-03-19 10:09:13 -05:00
|
|
|
let result_addr = addr + offset * pointee_size as i64;
|
2016-03-21 00:24:27 -05:00
|
|
|
try!(self.memory.write_isize(dest, result_addr));
|
2016-03-19 10:09:13 -05:00
|
|
|
}
|
|
|
|
Err(e) => return Err(e),
|
|
|
|
}
|
2016-03-17 07:00:27 -05:00
|
|
|
}
|
|
|
|
|
2016-03-21 04:42:34 -05:00
|
|
|
// FIXME(tsion): Handle different integer types correctly. Use primvals?
|
|
|
|
"overflowing_sub" => {
|
|
|
|
let ty = *substs.types.get(subst::FnSpace, 0);
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = self.type_size(ty);
|
2016-03-21 04:42:34 -05:00
|
|
|
|
|
|
|
let left_arg = try!(self.eval_operand(&args[0]));
|
|
|
|
let right_arg = try!(self.eval_operand(&args[1]));
|
|
|
|
|
|
|
|
let left = try!(self.memory.read_int(left_arg, size));
|
|
|
|
let right = try!(self.memory.read_int(right_arg, size));
|
|
|
|
|
|
|
|
let n = left.wrapping_sub(right);
|
|
|
|
try!(self.memory.write_int(dest, n, size));
|
|
|
|
}
|
|
|
|
|
2016-03-18 12:52:28 -05:00
|
|
|
"size_of" => {
|
|
|
|
let ty = *substs.types.get(subst::FnSpace, 0);
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = self.type_size(ty) as u64;
|
2016-03-18 12:52:28 -05:00
|
|
|
try!(self.memory.write_uint(dest, size, dest_size));
|
|
|
|
}
|
|
|
|
|
2016-03-18 13:42:09 -05:00
|
|
|
"transmute" => {
|
|
|
|
let src = try!(self.eval_operand(&args[0]));
|
|
|
|
try!(self.memory.copy(src, dest, dest_size));
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:37:07 -05:00
|
|
|
"uninit" => {
|
|
|
|
try!(self.memory.mark_definedness(dest, dest_size, false));
|
|
|
|
}
|
2016-03-18 12:52:28 -05:00
|
|
|
|
2016-03-17 07:00:27 -05:00
|
|
|
name => panic!("can't handle intrinsic: {}", name),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since we pushed no stack frame, the main loop will act
|
|
|
|
// as if the call just completed and it's returning to the
|
|
|
|
// current frame.
|
|
|
|
Ok(TerminatorTarget::Call)
|
|
|
|
}
|
|
|
|
|
2016-03-20 19:41:39 -05:00
|
|
|
fn call_c_abi(&mut self, def_id: DefId, args: &[mir::Operand<'tcx>], dest: Pointer)
|
|
|
|
-> EvalResult<TerminatorTarget>
|
|
|
|
{
|
|
|
|
let name = self.tcx.item_name(def_id);
|
|
|
|
let attrs = self.tcx.get_attrs(def_id);
|
|
|
|
let link_name = match attr::first_attr_value_str_by_name(&attrs, "link_name") {
|
|
|
|
Some(ln) => ln.clone(),
|
|
|
|
None => name.as_str(),
|
|
|
|
};
|
|
|
|
|
|
|
|
match &link_name[..] {
|
|
|
|
"__rust_allocate" => {
|
|
|
|
let size_arg = try!(self.eval_operand(&args[0]));
|
|
|
|
let _align_arg = try!(self.eval_operand(&args[1]));
|
2016-03-21 00:24:27 -05:00
|
|
|
let size = try!(self.memory.read_usize(size_arg));
|
2016-03-20 19:41:39 -05:00
|
|
|
let ptr = self.memory.allocate(size as usize);
|
|
|
|
try!(self.memory.write_ptr(dest, ptr));
|
|
|
|
}
|
|
|
|
|
2016-04-06 18:29:56 -05:00
|
|
|
"__rust_reallocate" => {
|
|
|
|
let ptr_arg = try!(self.eval_operand(&args[0]));
|
|
|
|
let _old_size_arg = try!(self.eval_operand(&args[1]));
|
|
|
|
let size_arg = try!(self.eval_operand(&args[2]));
|
|
|
|
let _align_arg = try!(self.eval_operand(&args[3]));
|
|
|
|
let ptr = try!(self.memory.read_ptr(ptr_arg));
|
|
|
|
let size = try!(self.memory.read_usize(size_arg));
|
|
|
|
try!(self.memory.reallocate(ptr, size as usize));
|
|
|
|
try!(self.memory.write_ptr(dest, ptr));
|
|
|
|
}
|
|
|
|
|
2016-03-20 19:41:39 -05:00
|
|
|
_ => panic!("can't call C ABI function: {}", link_name),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since we pushed no stack frame, the main loop will act
|
|
|
|
// as if the call just completed and it's returning to the
|
|
|
|
// current frame.
|
|
|
|
Ok(TerminatorTarget::Call)
|
|
|
|
}
|
|
|
|
|
2016-03-28 22:08:08 -05:00
|
|
|
fn assign_to_aggregate(
|
|
|
|
&mut self,
|
|
|
|
dest: Pointer,
|
|
|
|
dest_repr: &Repr,
|
|
|
|
variant: usize,
|
|
|
|
discr: Option<u64>,
|
|
|
|
operands: &[mir::Operand<'tcx>],
|
|
|
|
) -> EvalResult<()> {
|
2016-03-12 22:27:54 -06:00
|
|
|
match *dest_repr {
|
2016-03-17 05:38:46 -05:00
|
|
|
Repr::Aggregate { discr_size, ref variants, .. } => {
|
|
|
|
if discr_size > 0 {
|
2016-03-28 22:08:08 -05:00
|
|
|
try!(self.memory.write_uint(dest, discr.unwrap(), discr_size));
|
2016-03-17 05:38:46 -05:00
|
|
|
}
|
|
|
|
let after_discr = dest.offset(discr_size as isize);
|
|
|
|
for (field, operand) in variants[variant].iter().zip(operands) {
|
2016-03-17 00:28:09 -05:00
|
|
|
let src = try!(self.eval_operand(operand));
|
2016-03-17 05:38:46 -05:00
|
|
|
let field_dest = after_discr.offset(field.offset as isize);
|
2016-03-17 04:11:40 -05:00
|
|
|
try!(self.memory.copy(src, field_dest, field.size));
|
2016-03-12 22:15:59 -06:00
|
|
|
}
|
|
|
|
}
|
2016-03-17 05:38:46 -05:00
|
|
|
_ => panic!("expected Repr::Aggregate target"),
|
2016-03-12 22:15:59 -06:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-03-07 07:10:52 -06:00
|
|
|
fn eval_assignment(&mut self, lvalue: &mir::Lvalue<'tcx>, rvalue: &mir::Rvalue<'tcx>)
|
|
|
|
-> EvalResult<()>
|
|
|
|
{
|
2016-03-21 19:51:08 -05:00
|
|
|
let dest = try!(self.eval_lvalue(lvalue)).to_ptr();
|
2016-03-15 08:13:31 -05:00
|
|
|
let dest_repr = self.lvalue_repr(lvalue);
|
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-03-17 00:28:09 -05:00
|
|
|
let src = try!(self.eval_operand(operand));
|
2016-03-21 00:09:27 -05:00
|
|
|
try!(self.memory.copy(src, dest, dest_repr.size()));
|
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-03-17 03:53:03 -05:00
|
|
|
let left_ptr = try!(self.eval_operand(left));
|
|
|
|
let left_ty = self.operand_ty(left);
|
2016-03-19 00:03:46 -05:00
|
|
|
let left_val = try!(self.read_primval(left_ptr, left_ty));
|
2016-03-17 03:53:03 -05:00
|
|
|
|
|
|
|
let right_ptr = try!(self.eval_operand(right));
|
|
|
|
let right_ty = self.operand_ty(right);
|
2016-03-19 00:03:46 -05:00
|
|
|
let right_val = try!(self.read_primval(right_ptr, right_ty));
|
2016-03-17 03:53:03 -05:00
|
|
|
|
2016-03-19 00:03:46 -05:00
|
|
|
let val = try!(primval::binary_op(bin_op, left_val, right_val));
|
2016-03-21 00:09:27 -05:00
|
|
|
try!(self.memory.write_primval(dest, val));
|
2016-03-13 01:43:28 -06:00
|
|
|
}
|
2016-03-07 07:10:52 -06:00
|
|
|
|
2016-03-07 07:57:08 -06:00
|
|
|
UnaryOp(un_op, ref operand) => {
|
2016-03-17 03:53:03 -05:00
|
|
|
let ptr = try!(self.eval_operand(operand));
|
|
|
|
let ty = self.operand_ty(operand);
|
2016-03-19 00:03:46 -05:00
|
|
|
let val = try!(self.read_primval(ptr, ty));
|
2016-03-21 00:09:27 -05:00
|
|
|
try!(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) => {
|
|
|
|
use rustc::mir::repr::AggregateKind::*;
|
|
|
|
match *kind {
|
2016-03-21 00:09:27 -05:00
|
|
|
Tuple | Closure(..) =>
|
2016-03-28 22:08:08 -05:00
|
|
|
try!(self.assign_to_aggregate(dest, &dest_repr, 0, None, operands)),
|
2016-03-12 22:27:54 -06:00
|
|
|
|
2016-03-28 22:08:08 -05:00
|
|
|
Adt(adt_def, variant, _) => {
|
|
|
|
let discr = Some(adt_def.variants[variant].disr_val.to_u64_unchecked());
|
|
|
|
try!(self.assign_to_aggregate(dest, &dest_repr, variant, discr, operands));
|
|
|
|
}
|
2016-03-21 00:09:27 -05:00
|
|
|
|
|
|
|
Vec => if let Repr::Array { elem_size, length } = *dest_repr {
|
|
|
|
assert_eq!(length, operands.len());
|
|
|
|
for (i, operand) in operands.iter().enumerate() {
|
|
|
|
let src = try!(self.eval_operand(operand));
|
2016-03-21 04:34:24 -05:00
|
|
|
let elem_dest = dest.offset((i * elem_size) as isize);
|
2016-03-21 00:09:27 -05:00
|
|
|
try!(self.memory.copy(src, elem_dest, elem_size));
|
2016-03-15 06:50:53 -05:00
|
|
|
}
|
2016-03-21 00:09:27 -05:00
|
|
|
} else {
|
|
|
|
panic!("expected Repr::Array target");
|
2016-03-15 06:50:53 -05:00
|
|
|
},
|
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 04:34:24 -05:00
|
|
|
Repeat(ref operand, _) => {
|
|
|
|
if let Repr::Array { elem_size, length } = *dest_repr {
|
|
|
|
let src = try!(self.eval_operand(operand));
|
|
|
|
for i in 0..length {
|
|
|
|
let elem_dest = dest.offset((i * elem_size) as isize);
|
|
|
|
try!(self.memory.copy(src, elem_dest, elem_size));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
panic!("expected Repr::Array target");
|
|
|
|
}
|
|
|
|
}
|
2016-03-21 04:19:48 -05:00
|
|
|
|
2016-03-20 22:30:31 -05:00
|
|
|
Len(ref lvalue) => {
|
2016-03-20 23:59:13 -05:00
|
|
|
let src = try!(self.eval_lvalue(lvalue));
|
2016-03-20 22:30:31 -05:00
|
|
|
let ty = self.lvalue_ty(lvalue);
|
2016-03-20 23:59:13 -05:00
|
|
|
let len = match ty.sty {
|
|
|
|
ty::TyArray(_, n) => n as u64,
|
|
|
|
ty::TySlice(_) => if let LvalueExtra::Length(n) = src.extra {
|
|
|
|
n
|
|
|
|
} else {
|
|
|
|
panic!("Rvalue::Len of a slice given non-slice pointer: {:?}", src);
|
|
|
|
},
|
2016-03-20 22:30:31 -05:00
|
|
|
_ => panic!("Rvalue::Len expected array or slice, got {:?}", ty),
|
2016-03-20 23:59:13 -05:00
|
|
|
};
|
2016-03-21 00:24:27 -05:00
|
|
|
try!(self.memory.write_usize(dest, len));
|
2016-03-20 22:30:31 -05:00
|
|
|
}
|
|
|
|
|
2016-03-13 15:36:25 -05:00
|
|
|
Ref(_, _, ref lvalue) => {
|
2016-03-20 23:59:13 -05:00
|
|
|
let lv = try!(self.eval_lvalue(lvalue));
|
|
|
|
try!(self.memory.write_ptr(dest, lv.ptr));
|
|
|
|
match lv.extra {
|
|
|
|
LvalueExtra::None => {},
|
|
|
|
LvalueExtra::Length(len) => {
|
2016-03-21 00:24:27 -05:00
|
|
|
let len_ptr = dest.offset(self.memory.pointer_size as isize);
|
|
|
|
try!(self.memory.write_usize(len_ptr, len));
|
2016-03-20 23:59:13 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-13 15:36:25 -05:00
|
|
|
}
|
2015-12-28 22:24:05 -06:00
|
|
|
|
2016-03-14 23:05:50 -05:00
|
|
|
Box(ty) => {
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = self.type_size(ty);
|
2016-03-17 04:19:13 -05:00
|
|
|
let ptr = self.memory.allocate(size);
|
2016-03-21 00:09:27 -05:00
|
|
|
try!(self.memory.write_ptr(dest, ptr));
|
2016-03-14 23:05:50 -05:00
|
|
|
}
|
|
|
|
|
2016-03-17 00:28:49 -05:00
|
|
|
Cast(kind, ref operand, dest_ty) => {
|
|
|
|
let src = try!(self.eval_operand(operand));
|
2016-03-18 11:48:31 -05:00
|
|
|
let src_ty = self.operand_ty(operand);
|
2016-03-17 00:28:49 -05:00
|
|
|
|
|
|
|
use rustc::mir::repr::CastKind::*;
|
|
|
|
match kind {
|
|
|
|
Unsize => {
|
|
|
|
try!(self.memory.copy(src, dest, 8));
|
|
|
|
let src_pointee_ty = pointee_type(src_ty).unwrap();
|
|
|
|
let dest_pointee_ty = pointee_type(dest_ty).unwrap();
|
|
|
|
|
|
|
|
match (&src_pointee_ty.sty, &dest_pointee_ty.sty) {
|
2016-03-17 09:01:34 -05:00
|
|
|
(&ty::TyArray(_, length), &ty::TySlice(_)) => {
|
2016-03-21 00:24:27 -05:00
|
|
|
let len_ptr = dest.offset(self.memory.pointer_size as isize);
|
|
|
|
try!(self.memory.write_usize(len_ptr, length as u64));
|
2016-03-17 09:01:34 -05:00
|
|
|
}
|
2016-03-17 00:28:49 -05:00
|
|
|
|
|
|
|
_ => panic!("can't handle cast: {:?}", rvalue),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Misc => {
|
2016-03-19 12:07:19 -05:00
|
|
|
// FIXME(tsion): Wrong for almost everything.
|
|
|
|
let size = dest_repr.size();
|
2016-03-21 00:09:27 -05:00
|
|
|
try!(self.memory.copy(src, dest, size));
|
2016-03-17 00:28:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
_ => panic!("can't handle cast: {:?}", rvalue),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-21 04:19:48 -05:00
|
|
|
Slice { .. } => unimplemented!(),
|
2016-03-28 18:43:23 -05:00
|
|
|
InlineAsm { .. } => unimplemented!(),
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
2016-03-21 00:09:27 -05:00
|
|
|
|
|
|
|
Ok(())
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
|
2016-03-17 00:28:09 -05:00
|
|
|
fn eval_operand(&mut self, op: &mir::Operand<'tcx>) -> EvalResult<Pointer> {
|
|
|
|
self.eval_operand_and_repr(op).map(|(p, _)| p)
|
|
|
|
}
|
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
fn eval_operand_and_repr(&mut self, op: &mir::Operand<'tcx>)
|
|
|
|
-> EvalResult<(Pointer, &'arena Repr)>
|
|
|
|
{
|
2016-03-07 03:32:02 -06:00
|
|
|
use rustc::mir::repr::Operand::*;
|
2015-11-12 15:50:58 -06:00
|
|
|
match *op {
|
2016-03-20 23:59:13 -05:00
|
|
|
Consume(ref lvalue) =>
|
2016-03-21 19:51:08 -05:00
|
|
|
Ok((try!(self.eval_lvalue(lvalue)).to_ptr(), self.lvalue_repr(lvalue))),
|
2016-03-13 01:14:20 -06:00
|
|
|
Constant(mir::Constant { ref literal, ty, .. }) => {
|
2016-03-07 03:32:02 -06:00
|
|
|
use rustc::mir::repr::Literal::*;
|
2016-03-13 01:14:20 -06:00
|
|
|
match *literal {
|
|
|
|
Value { ref value } => Ok((
|
|
|
|
try!(self.const_to_ptr(value)),
|
2016-04-06 20:01:00 -05:00
|
|
|
self.type_repr(ty),
|
2016-03-13 01:14:20 -06:00
|
|
|
)),
|
2016-03-21 05:01:52 -05:00
|
|
|
Item { .. } => unimplemented!(),
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-12 17:44:29 -06:00
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
// TODO(tsion): Replace this inefficient hack with a wrapper like LvalueTy (e.g. LvalueRepr).
|
|
|
|
fn lvalue_repr(&self, lvalue: &mir::Lvalue<'tcx>) -> &'arena Repr {
|
2016-03-15 08:13:31 -05:00
|
|
|
use rustc::mir::tcx::LvalueTy;
|
2016-03-20 23:07:25 -05:00
|
|
|
match self.mir().lvalue_ty(self.tcx, lvalue) {
|
2016-04-06 20:01:00 -05:00
|
|
|
LvalueTy::Ty { ty } => self.type_repr(ty),
|
2016-03-28 22:08:08 -05:00
|
|
|
LvalueTy::Downcast { adt_def, substs, variant_index } => {
|
2016-03-17 05:38:46 -05:00
|
|
|
let field_tys = adt_def.variants[variant_index].fields.iter()
|
|
|
|
.map(|f| f.ty(self.tcx, substs));
|
2016-03-17 06:32:00 -05:00
|
|
|
self.repr_arena.alloc(self.make_aggregate_repr(iter::once(field_tys)))
|
2016-03-17 05:38:46 -05:00
|
|
|
}
|
2016-03-15 08:13:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-20 23:59:13 -05:00
|
|
|
fn eval_lvalue(&mut self, lvalue: &mir::Lvalue<'tcx>) -> EvalResult<Lvalue> {
|
2016-03-07 07:48:38 -06:00
|
|
|
use rustc::mir::repr::Lvalue::*;
|
|
|
|
let ptr = match *lvalue {
|
2016-03-20 23:07:25 -05:00
|
|
|
ReturnPointer => self.frame().return_ptr
|
2016-03-20 22:30:31 -05:00
|
|
|
.expect("ReturnPointer used in a function with no return value"),
|
2016-03-20 23:07:25 -05:00
|
|
|
Arg(i) => self.frame().locals[i as usize],
|
|
|
|
Var(i) => self.frame().locals[self.frame().var_offset + i as usize],
|
|
|
|
Temp(i) => self.frame().locals[self.frame().temp_offset + i as usize],
|
2016-03-13 07:48:04 -05:00
|
|
|
|
2016-03-21 05:01:52 -05:00
|
|
|
Static(_def_id) => unimplemented!(),
|
|
|
|
|
2016-03-13 07:48:04 -05:00
|
|
|
Projection(ref proj) => {
|
2016-03-21 19:51:08 -05:00
|
|
|
let base_ptr = try!(self.eval_lvalue(&proj.base)).to_ptr();
|
2016-03-15 08:13:31 -05:00
|
|
|
let base_repr = self.lvalue_repr(&proj.base);
|
2016-03-20 23:59:13 -05:00
|
|
|
let base_ty = self.lvalue_ty(&proj.base);
|
2016-03-13 07:48:04 -05:00
|
|
|
use rustc::mir::repr::ProjectionElem::*;
|
|
|
|
match proj.elem {
|
2016-03-17 06:32:00 -05:00
|
|
|
Field(field, _) => match *base_repr {
|
2016-03-17 05:38:46 -05:00
|
|
|
Repr::Aggregate { discr_size: 0, ref variants, .. } => {
|
|
|
|
let fields = &variants[0];
|
|
|
|
base_ptr.offset(fields[field.index()].offset as isize)
|
|
|
|
}
|
2016-03-13 08:23:48 -05:00
|
|
|
_ => panic!("field access on non-product type: {:?}", base_repr),
|
|
|
|
},
|
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
Downcast(..) => match *base_repr {
|
2016-03-17 05:38:46 -05:00
|
|
|
Repr::Aggregate { discr_size, .. } => base_ptr.offset(discr_size as isize),
|
|
|
|
_ => panic!("variant downcast on non-aggregate type: {:?}", base_repr),
|
2016-03-13 07:48:04 -05:00
|
|
|
},
|
|
|
|
|
2016-03-20 23:59:13 -05:00
|
|
|
Deref => {
|
|
|
|
let pointee_ty = pointee_type(base_ty).expect("Deref of non-pointer");
|
|
|
|
let ptr = try!(self.memory.read_ptr(base_ptr));
|
|
|
|
let extra = match pointee_ty.sty {
|
2016-03-27 00:57:14 -05:00
|
|
|
ty::TySlice(_) | ty::TyStr => {
|
2016-03-21 00:24:27 -05:00
|
|
|
let len_ptr = base_ptr.offset(self.memory.pointer_size as isize);
|
|
|
|
let len = try!(self.memory.read_usize(len_ptr));
|
2016-03-20 23:59:13 -05:00
|
|
|
LvalueExtra::Length(len)
|
|
|
|
}
|
|
|
|
ty::TyTrait(_) => unimplemented!(),
|
|
|
|
_ => LvalueExtra::None,
|
|
|
|
};
|
|
|
|
return Ok(Lvalue { ptr: ptr, extra: extra });
|
|
|
|
}
|
2016-03-13 15:36:25 -05:00
|
|
|
|
2016-03-20 22:30:31 -05:00
|
|
|
Index(ref operand) => {
|
|
|
|
let elem_size = match base_ty.sty {
|
2016-04-06 20:01:00 -05:00
|
|
|
ty::TyArray(elem_ty, _) => self.type_size(elem_ty),
|
|
|
|
ty::TySlice(elem_ty) => self.type_size(elem_ty),
|
2016-03-20 22:30:31 -05:00
|
|
|
_ => panic!("indexing expected an array or slice, got {:?}", base_ty),
|
|
|
|
};
|
|
|
|
let n_ptr = try!(self.eval_operand(operand));
|
2016-03-21 00:24:27 -05:00
|
|
|
let n = try!(self.memory.read_usize(n_ptr));
|
2016-03-20 22:30:31 -05:00
|
|
|
base_ptr.offset(n as isize * elem_size as isize)
|
|
|
|
}
|
|
|
|
|
2016-03-21 05:01:52 -05:00
|
|
|
ConstantIndex { .. } => unimplemented!(),
|
2016-03-13 07:48:04 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-07 07:48:38 -06:00
|
|
|
};
|
|
|
|
|
2016-03-20 23:59:13 -05:00
|
|
|
Ok(Lvalue { ptr: ptr, extra: LvalueExtra::None })
|
2016-03-07 07:48:38 -06:00
|
|
|
}
|
|
|
|
|
2016-03-19 00:19:39 -05:00
|
|
|
// TODO(tsion): Try making const_to_primval instead.
|
2016-03-31 23:34:07 -05:00
|
|
|
fn const_to_ptr(&mut self, const_val: &const_val::ConstVal) -> EvalResult<Pointer> {
|
|
|
|
use rustc::middle::const_val::ConstVal::*;
|
2015-11-12 17:44:29 -06:00
|
|
|
match *const_val {
|
2016-03-07 04:44:03 -06:00
|
|
|
Float(_f) => unimplemented!(),
|
2016-03-15 17:09:08 -05:00
|
|
|
Integral(int) => {
|
2016-03-12 23:15:53 -06:00
|
|
|
// TODO(tsion): Check int constant type.
|
|
|
|
let ptr = self.memory.allocate(8);
|
2016-03-17 07:26:37 -05:00
|
|
|
try!(self.memory.write_uint(ptr, int.to_u64_unchecked(), 8));
|
2016-03-15 01:45:25 -05:00
|
|
|
Ok(ptr)
|
|
|
|
}
|
2016-03-19 00:19:39 -05:00
|
|
|
Str(ref s) => {
|
|
|
|
let psize = self.memory.pointer_size;
|
|
|
|
let static_ptr = self.memory.allocate(s.len());
|
|
|
|
let ptr = self.memory.allocate(psize * 2);
|
|
|
|
try!(self.memory.write_bytes(static_ptr, s.as_bytes()));
|
|
|
|
try!(self.memory.write_ptr(ptr, static_ptr));
|
2016-03-21 00:24:27 -05:00
|
|
|
try!(self.memory.write_usize(ptr.offset(psize as isize), s.len() as u64));
|
2016-03-19 00:19:39 -05:00
|
|
|
Ok(ptr)
|
|
|
|
}
|
2016-03-19 00:20:59 -05:00
|
|
|
ByteStr(ref bs) => {
|
|
|
|
let psize = self.memory.pointer_size;
|
|
|
|
let static_ptr = self.memory.allocate(bs.len());
|
|
|
|
let ptr = self.memory.allocate(psize);
|
|
|
|
try!(self.memory.write_bytes(static_ptr, bs));
|
|
|
|
try!(self.memory.write_ptr(ptr, static_ptr));
|
|
|
|
Ok(ptr)
|
|
|
|
}
|
2016-03-07 04:44:03 -06:00
|
|
|
Bool(b) => {
|
2016-03-17 04:19:13 -05:00
|
|
|
let ptr = self.memory.allocate(1);
|
2016-03-07 07:10:52 -06:00
|
|
|
try!(self.memory.write_bool(ptr, b));
|
2016-03-07 04:44:03 -06:00
|
|
|
Ok(ptr)
|
2016-03-15 01:45:25 -05:00
|
|
|
}
|
2016-03-15 17:09:08 -05:00
|
|
|
Char(_c) => unimplemented!(),
|
2016-03-07 03:32:02 -06:00
|
|
|
Struct(_node_id) => unimplemented!(),
|
|
|
|
Tuple(_node_id) => unimplemented!(),
|
|
|
|
Function(_def_id) => unimplemented!(),
|
|
|
|
Array(_, _) => unimplemented!(),
|
|
|
|
Repeat(_, _) => unimplemented!(),
|
2016-03-15 17:09:08 -05:00
|
|
|
Dummy => unimplemented!(),
|
2015-11-12 17:44:29 -06:00
|
|
|
}
|
|
|
|
}
|
2016-03-07 07:10:52 -06:00
|
|
|
|
2016-03-20 22:30:31 -05:00
|
|
|
fn lvalue_ty(&self, lvalue: &mir::Lvalue<'tcx>) -> ty::Ty<'tcx> {
|
2016-03-21 00:11:06 -05:00
|
|
|
self.monomorphize(self.mir().lvalue_ty(self.tcx, lvalue).to_ty(self.tcx))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn operand_ty(&self, operand: &mir::Operand<'tcx>) -> ty::Ty<'tcx> {
|
|
|
|
self.monomorphize(self.mir().operand_ty(self.tcx, operand))
|
2016-03-20 22:30:31 -05:00
|
|
|
}
|
|
|
|
|
2016-03-18 12:52:13 -05:00
|
|
|
fn monomorphize(&self, ty: ty::Ty<'tcx>) -> ty::Ty<'tcx> {
|
2016-03-20 23:07:25 -05:00
|
|
|
let substituted = ty.subst(self.tcx, self.substs());
|
2016-03-18 12:52:13 -05:00
|
|
|
infer::normalize_associated_type(self.tcx, &substituted)
|
|
|
|
}
|
|
|
|
|
2016-03-19 00:03:46 -05:00
|
|
|
fn type_is_sized(&self, ty: ty::Ty<'tcx>) -> bool {
|
|
|
|
ty.is_sized(&self.tcx.empty_parameter_environment(), DUMMY_SP)
|
|
|
|
}
|
|
|
|
|
2016-04-06 20:01:00 -05:00
|
|
|
fn type_size(&self, ty: ty::Ty<'tcx>) -> usize {
|
|
|
|
self.type_repr(ty).size()
|
2016-03-13 08:23:48 -05:00
|
|
|
}
|
|
|
|
|
2016-04-06 20:01:00 -05:00
|
|
|
fn type_repr(&self, ty: ty::Ty<'tcx>) -> &'arena Repr {
|
2016-03-18 12:52:13 -05:00
|
|
|
let ty = self.monomorphize(ty);
|
2016-03-17 06:32:00 -05:00
|
|
|
|
2016-03-17 06:40:56 -05:00
|
|
|
if let Some(repr) = self.repr_cache.borrow().get(ty) {
|
2016-03-17 06:32:00 -05:00
|
|
|
return repr;
|
|
|
|
}
|
|
|
|
|
2016-03-14 23:26:39 -05:00
|
|
|
use syntax::ast::{IntTy, UintTy};
|
2016-03-17 06:32:00 -05:00
|
|
|
let repr = match ty.sty {
|
2016-03-17 04:36:06 -05:00
|
|
|
ty::TyBool => Repr::Primitive { size: 1 },
|
2016-03-20 21:33:46 -05:00
|
|
|
|
|
|
|
ty::TyInt(IntTy::I8) | ty::TyUint(UintTy::U8) => Repr::Primitive { size: 1 },
|
|
|
|
ty::TyInt(IntTy::I16) | ty::TyUint(UintTy::U16) => Repr::Primitive { size: 2 },
|
|
|
|
ty::TyInt(IntTy::I32) | ty::TyUint(UintTy::U32) => Repr::Primitive { size: 4 },
|
|
|
|
ty::TyInt(IntTy::I64) | ty::TyUint(UintTy::U64) => Repr::Primitive { size: 8 },
|
|
|
|
|
|
|
|
ty::TyInt(IntTy::Is) | ty::TyUint(UintTy::Us) =>
|
|
|
|
Repr::Primitive { size: self.memory.pointer_size },
|
2016-03-15 00:03:31 -05:00
|
|
|
|
2016-03-17 05:38:46 -05:00
|
|
|
ty::TyTuple(ref fields) =>
|
|
|
|
self.make_aggregate_repr(iter::once(fields.iter().cloned())),
|
2016-03-11 21:27:54 -06:00
|
|
|
|
2016-03-17 05:38:46 -05:00
|
|
|
ty::TyEnum(adt_def, substs) | ty::TyStruct(adt_def, substs) => {
|
|
|
|
let variants = adt_def.variants.iter().map(|v| {
|
|
|
|
v.fields.iter().map(|f| f.ty(self.tcx, substs))
|
|
|
|
});
|
|
|
|
self.make_aggregate_repr(variants)
|
2016-03-11 21:27:54 -06:00
|
|
|
}
|
|
|
|
|
2016-03-20 22:30:31 -05:00
|
|
|
ty::TyArray(elem_ty, length) => Repr::Array {
|
2016-04-06 20:01:00 -05:00
|
|
|
elem_size: self.type_size(elem_ty),
|
2016-03-15 06:50:53 -05:00
|
|
|
length: length,
|
|
|
|
},
|
|
|
|
|
2016-03-17 00:28:49 -05:00
|
|
|
ty::TyRef(_, ty::TypeAndMut { ty, .. }) |
|
|
|
|
ty::TyRawPtr(ty::TypeAndMut { ty, .. }) |
|
|
|
|
ty::TyBox(ty) => {
|
2016-03-19 00:03:46 -05:00
|
|
|
if self.type_is_sized(ty) {
|
2016-03-17 08:53:26 -05:00
|
|
|
Repr::Primitive { size: self.memory.pointer_size }
|
2016-03-17 00:28:49 -05:00
|
|
|
} else {
|
2016-03-17 08:53:26 -05:00
|
|
|
Repr::Primitive { size: self.memory.pointer_size * 2 }
|
2016-03-17 00:28:49 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-13 15:36:25 -05:00
|
|
|
|
2016-03-20 21:16:40 -05:00
|
|
|
ty::TyFnPtr(..) => Repr::Primitive { size: self.memory.pointer_size },
|
|
|
|
|
2016-03-18 11:48:31 -05:00
|
|
|
ty::TyClosure(_, ref closure_substs) =>
|
|
|
|
self.make_aggregate_repr(iter::once(closure_substs.upvar_tys.iter().cloned())),
|
|
|
|
|
2016-03-11 21:27:54 -06:00
|
|
|
ref t => panic!("can't convert type to repr: {:?}", t),
|
2016-03-17 06:32:00 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let repr_ref = self.repr_arena.alloc(repr);
|
|
|
|
self.repr_cache.borrow_mut().insert(ty, repr_ref);
|
|
|
|
repr_ref
|
2016-03-11 21:27:54 -06:00
|
|
|
}
|
|
|
|
|
2016-03-17 06:49:12 -05:00
|
|
|
fn make_aggregate_repr<V>(&self, variant_fields: V) -> Repr
|
|
|
|
where V: IntoIterator, V::Item: IntoIterator<Item = ty::Ty<'tcx>>
|
|
|
|
{
|
|
|
|
let mut variants = Vec::new();
|
|
|
|
let mut max_variant_size = 0;
|
|
|
|
|
|
|
|
for field_tys in variant_fields {
|
|
|
|
let mut fields = Vec::new();
|
|
|
|
let mut size = 0;
|
|
|
|
|
|
|
|
for ty in field_tys {
|
2016-04-06 20:01:00 -05:00
|
|
|
let field_size = self.type_size(ty);
|
2016-03-17 06:49:12 -05:00
|
|
|
let offest = size;
|
|
|
|
size += field_size;
|
|
|
|
fields.push(FieldRepr { offset: offest, size: field_size });
|
|
|
|
}
|
|
|
|
|
|
|
|
if size > max_variant_size { max_variant_size = size; }
|
|
|
|
variants.push(fields);
|
|
|
|
}
|
|
|
|
|
|
|
|
let discr_size = match variants.len() {
|
|
|
|
n if n <= 1 => 0,
|
|
|
|
n if n <= 1 << 8 => 1,
|
|
|
|
n if n <= 1 << 16 => 2,
|
|
|
|
n if n <= 1 << 32 => 4,
|
|
|
|
_ => 8,
|
|
|
|
};
|
|
|
|
Repr::Aggregate {
|
|
|
|
discr_size: discr_size,
|
|
|
|
size: max_variant_size + discr_size,
|
|
|
|
variants: variants,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-19 00:03:46 -05:00
|
|
|
pub fn read_primval(&mut self, ptr: Pointer, ty: ty::Ty<'tcx>) -> EvalResult<PrimVal> {
|
|
|
|
use syntax::ast::{IntTy, UintTy};
|
|
|
|
let val = match ty.sty {
|
|
|
|
ty::TyBool => PrimVal::Bool(try!(self.memory.read_bool(ptr))),
|
|
|
|
ty::TyInt(IntTy::I8) => PrimVal::I8(try!(self.memory.read_int(ptr, 1)) as i8),
|
|
|
|
ty::TyInt(IntTy::I16) => PrimVal::I16(try!(self.memory.read_int(ptr, 2)) as i16),
|
|
|
|
ty::TyInt(IntTy::I32) => PrimVal::I32(try!(self.memory.read_int(ptr, 4)) as i32),
|
|
|
|
ty::TyInt(IntTy::I64) => PrimVal::I64(try!(self.memory.read_int(ptr, 8)) as i64),
|
|
|
|
ty::TyUint(UintTy::U8) => PrimVal::U8(try!(self.memory.read_uint(ptr, 1)) as u8),
|
|
|
|
ty::TyUint(UintTy::U16) => PrimVal::U16(try!(self.memory.read_uint(ptr, 2)) as u16),
|
|
|
|
ty::TyUint(UintTy::U32) => PrimVal::U32(try!(self.memory.read_uint(ptr, 4)) as u32),
|
|
|
|
ty::TyUint(UintTy::U64) => PrimVal::U64(try!(self.memory.read_uint(ptr, 8)) as u64),
|
|
|
|
|
|
|
|
// TODO(tsion): Pick the PrimVal dynamically.
|
2016-03-21 00:24:27 -05:00
|
|
|
ty::TyInt(IntTy::Is) => PrimVal::I64(try!(self.memory.read_isize(ptr))),
|
|
|
|
ty::TyUint(UintTy::Us) => PrimVal::U64(try!(self.memory.read_usize(ptr))),
|
2016-03-19 00:03:46 -05:00
|
|
|
|
|
|
|
ty::TyRef(_, ty::TypeAndMut { ty, .. }) |
|
|
|
|
ty::TyRawPtr(ty::TypeAndMut { ty, .. }) => {
|
|
|
|
if self.type_is_sized(ty) {
|
|
|
|
match self.memory.read_ptr(ptr) {
|
|
|
|
Ok(p) => PrimVal::AbstractPtr(p),
|
|
|
|
Err(EvalError::ReadBytesAsPointer) => {
|
2016-03-21 00:24:27 -05:00
|
|
|
let n = try!(self.memory.read_usize(ptr));
|
2016-03-19 00:03:46 -05:00
|
|
|
PrimVal::IntegerPtr(n)
|
|
|
|
}
|
|
|
|
Err(e) => return Err(e),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
panic!("unimplemented: primitive read of fat pointer type: {:?}", ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_ => panic!("primitive read of non-primitive type: {:?}", ty),
|
|
|
|
};
|
|
|
|
Ok(val)
|
|
|
|
}
|
|
|
|
|
2016-03-20 23:07:25 -05: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 21:39:51 -05:00
|
|
|
|
2016-03-20 23:07:25 -05:00
|
|
|
fn frame_mut(&mut self) -> &mut Frame<'a, 'tcx> {
|
2016-03-14 21:39:51 -05:00
|
|
|
self.stack.last_mut().expect("no call frames exist")
|
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2016-03-20 23:07:25 -05:00
|
|
|
fn mir(&self) -> &mir::Mir<'tcx> {
|
|
|
|
&self.frame().mir
|
|
|
|
}
|
|
|
|
|
|
|
|
fn substs(&self) -> &'tcx Substs<'tcx> {
|
2016-03-14 23:26:39 -05:00
|
|
|
self.substs_stack.last().cloned().unwrap_or_else(|| self.tcx.mk_substs(Substs::empty()))
|
|
|
|
}
|
|
|
|
|
2016-03-14 22:48:00 -05:00
|
|
|
fn load_mir(&self, def_id: DefId) -> CachedMir<'a, 'tcx> {
|
|
|
|
match self.tcx.map.as_local_node_id(def_id) {
|
|
|
|
Some(node_id) => CachedMir::Ref(self.mir_map.map.get(&node_id).unwrap()),
|
|
|
|
None => {
|
|
|
|
let mut mir_cache = self.mir_cache.borrow_mut();
|
|
|
|
if let Some(mir) = mir_cache.get(&def_id) {
|
|
|
|
return CachedMir::Owned(mir.clone());
|
|
|
|
}
|
2016-03-14 22:18:39 -05:00
|
|
|
|
2016-03-14 22:48:00 -05:00
|
|
|
use rustc::middle::cstore::CrateStore;
|
|
|
|
let cs = &self.tcx.sess.cstore;
|
2016-03-18 13:11:39 -05:00
|
|
|
let mir = cs.maybe_get_item_mir(self.tcx, def_id).unwrap_or_else(|| {
|
|
|
|
panic!("no mir for {:?}", def_id);
|
|
|
|
});
|
2016-03-14 22:48:00 -05:00
|
|
|
let cached = Rc::new(mir);
|
|
|
|
mir_cache.insert(def_id, cached.clone());
|
|
|
|
CachedMir::Owned(cached)
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 22:18:39 -05:00
|
|
|
}
|
2016-03-17 00:28:49 -05:00
|
|
|
|
|
|
|
fn fulfill_obligation(&self, trait_ref: ty::PolyTraitRef<'tcx>) -> traits::Vtable<'tcx, ()> {
|
|
|
|
// Do the initial selection for the obligation. This yields the shallow result we are
|
|
|
|
// looking for -- that is, what specific impl.
|
2016-03-28 18:43:23 -05:00
|
|
|
let infcx = infer::normalizing_infer_ctxt(self.tcx, &self.tcx.tables, ProjectionMode::Any);
|
2016-03-17 00:28:49 -05:00
|
|
|
let mut selcx = traits::SelectionContext::new(&infcx);
|
|
|
|
|
|
|
|
let obligation = traits::Obligation::new(
|
|
|
|
traits::ObligationCause::misc(DUMMY_SP, ast::DUMMY_NODE_ID),
|
|
|
|
trait_ref.to_poly_trait_predicate(),
|
|
|
|
);
|
|
|
|
let selection = selcx.select(&obligation).unwrap().unwrap();
|
|
|
|
|
|
|
|
// Currently, we use a fulfillment context to completely resolve all nested obligations.
|
|
|
|
// This is because they can inform the inference of the impl's type parameters.
|
|
|
|
let mut fulfill_cx = traits::FulfillmentContext::new();
|
|
|
|
let vtable = selection.map(|predicate| {
|
|
|
|
fulfill_cx.register_predicate_obligation(&infcx, predicate);
|
|
|
|
});
|
|
|
|
let vtable = infer::drain_fulfillment_cx_or_panic(
|
|
|
|
DUMMY_SP, &infcx, &mut fulfill_cx, &vtable
|
|
|
|
);
|
|
|
|
|
|
|
|
vtable
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Trait method, which has to be resolved to an impl method.
|
|
|
|
pub fn trait_method(&self, def_id: DefId, substs: &'tcx Substs<'tcx>)
|
2016-03-28 18:43:23 -05:00
|
|
|
-> (DefId, &'tcx Substs<'tcx>)
|
|
|
|
{
|
2016-03-17 00:28:49 -05:00
|
|
|
let method_item = self.tcx.impl_or_trait_item(def_id);
|
|
|
|
let trait_id = method_item.container().id();
|
|
|
|
let trait_ref = ty::Binder(substs.to_trait_ref(self.tcx, trait_id));
|
|
|
|
match self.fulfill_obligation(trait_ref) {
|
|
|
|
traits::VtableImpl(vtable_impl) => {
|
|
|
|
let impl_did = vtable_impl.impl_def_id;
|
|
|
|
let mname = self.tcx.item_name(def_id);
|
2016-03-18 11:48:31 -05:00
|
|
|
// Create a concatenated set of substitutions which includes those from the impl
|
|
|
|
// and those from the method:
|
|
|
|
let impl_substs = vtable_impl.substs.with_method_from(substs);
|
2016-03-17 00:28:49 -05:00
|
|
|
let substs = self.tcx.mk_substs(impl_substs);
|
2016-03-28 18:43:23 -05:00
|
|
|
let mth = get_impl_method(self.tcx, impl_did, substs, mname);
|
2016-03-17 00:28:49 -05:00
|
|
|
|
|
|
|
(mth.method.def_id, mth.substs)
|
|
|
|
}
|
|
|
|
|
2016-03-18 11:48:31 -05:00
|
|
|
traits::VtableClosure(vtable_closure) =>
|
|
|
|
(vtable_closure.closure_def_id, vtable_closure.substs.func_substs),
|
|
|
|
|
2016-03-17 03:53:03 -05:00
|
|
|
traits::VtableFnPointer(_fn_ty) => {
|
|
|
|
let _trait_closure_kind = self.tcx.lang_items.fn_trait_kind(trait_id).unwrap();
|
2016-03-17 00:28:49 -05:00
|
|
|
unimplemented!()
|
|
|
|
// let llfn = trans_fn_pointer_shim(ccx, trait_closure_kind, fn_ty);
|
|
|
|
|
|
|
|
// let method_ty = def_ty(tcx, def_id, substs);
|
|
|
|
// let fn_ptr_ty = match method_ty.sty {
|
|
|
|
// ty::TyFnDef(_, _, fty) => tcx.mk_ty(ty::TyFnPtr(fty)),
|
|
|
|
// _ => unreachable!("expected fn item type, found {}",
|
|
|
|
// method_ty)
|
|
|
|
// };
|
|
|
|
// Callee::ptr(immediate_rvalue(llfn, fn_ptr_ty))
|
|
|
|
}
|
2016-03-18 11:48:31 -05:00
|
|
|
|
2016-03-17 03:53:03 -05:00
|
|
|
traits::VtableObject(ref _data) => {
|
2016-03-17 00:28:49 -05:00
|
|
|
unimplemented!()
|
|
|
|
// Callee {
|
|
|
|
// data: Virtual(traits::get_vtable_index_of_object_method(
|
|
|
|
// tcx, data, def_id)),
|
|
|
|
// ty: def_ty(tcx, def_id, substs)
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
vtable => unreachable!("resolved vtable bad vtable {:?} in trans", vtable),
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 22:48:00 -05:00
|
|
|
}
|
2016-03-14 22:18:39 -05:00
|
|
|
|
2016-03-20 23:59:13 -05:00
|
|
|
fn pointee_type<'tcx>(ptr_ty: ty::Ty<'tcx>) -> Option<ty::Ty<'tcx>> {
|
|
|
|
match ptr_ty.sty {
|
|
|
|
ty::TyRef(_, ty::TypeAndMut { ty, .. }) |
|
|
|
|
ty::TyRawPtr(ty::TypeAndMut { ty, .. }) |
|
|
|
|
ty::TyBox(ty) => {
|
|
|
|
Some(ty)
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-21 19:51:08 -05:00
|
|
|
impl Lvalue {
|
|
|
|
fn to_ptr(self) -> Pointer {
|
|
|
|
assert_eq!(self.extra, LvalueExtra::None);
|
|
|
|
self.ptr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-14 22:48:00 -05: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,
|
|
|
|
CachedMir::Owned(ref rc) => &rc,
|
|
|
|
}
|
2016-03-14 22:18:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-28 18:43:23 -05:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct ImplMethod<'tcx> {
|
|
|
|
pub method: Rc<ty::Method<'tcx>>,
|
|
|
|
pub substs: &'tcx Substs<'tcx>,
|
|
|
|
pub is_provided: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Locates the applicable definition of a method, given its name.
|
|
|
|
pub fn get_impl_method<'tcx>(
|
|
|
|
tcx: &TyCtxt<'tcx>,
|
|
|
|
impl_def_id: DefId,
|
|
|
|
substs: &'tcx Substs<'tcx>,
|
|
|
|
name: ast::Name,
|
|
|
|
) -> ImplMethod<'tcx> {
|
|
|
|
assert!(!substs.types.needs_infer());
|
|
|
|
|
|
|
|
let trait_def_id = tcx.trait_id_of_impl(impl_def_id).unwrap();
|
|
|
|
let trait_def = tcx.lookup_trait_def(trait_def_id);
|
|
|
|
let infcx = infer::normalizing_infer_ctxt(tcx, &tcx.tables, ProjectionMode::Any);
|
|
|
|
|
|
|
|
match trait_def.ancestors(impl_def_id).fn_defs(tcx, name).next() {
|
|
|
|
Some(node_item) => {
|
|
|
|
ImplMethod {
|
|
|
|
method: node_item.item,
|
|
|
|
substs: traits::translate_substs(&infcx, impl_def_id, substs, node_item.node),
|
|
|
|
is_provided: node_item.node.is_from_trait(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {
|
2016-04-06 20:00:34 -05:00
|
|
|
bug!("method {:?} not found in {:?}", name, impl_def_id);
|
2016-03-28 18:43:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:17:31 -06:00
|
|
|
pub fn interpret_start_points<'tcx>(tcx: &TyCtxt<'tcx>, mir_map: &MirMap<'tcx>) {
|
2016-02-18 19:06:22 -06:00
|
|
|
for (&id, mir) in &mir_map.map {
|
2015-11-12 15:50:58 -06:00
|
|
|
for attr in tcx.map.attrs(id) {
|
2016-03-07 10:14:47 -06:00
|
|
|
use syntax::attr::AttrMetaMethods;
|
2015-11-12 15:50:58 -06:00
|
|
|
if attr.check_name("miri_run") {
|
2015-11-12 17:11:41 -06:00
|
|
|
let item = tcx.map.expect_item(id);
|
|
|
|
|
2015-11-12 15:50:58 -06:00
|
|
|
println!("Interpreting: {}", item.name);
|
2015-11-20 20:49:25 -06:00
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
let repr_arena = TypedArena::new();
|
|
|
|
let mut miri = Interpreter::new(tcx, mir_map, &repr_arena);
|
2016-02-27 19:20:25 -06:00
|
|
|
let return_ptr = match mir.return_ty {
|
2016-03-11 21:27:54 -06:00
|
|
|
ty::FnConverging(ty) => {
|
2016-04-06 20:01:00 -05:00
|
|
|
let size = miri.type_size(ty);
|
2016-03-17 04:19:13 -05:00
|
|
|
Some(miri.memory.allocate(size))
|
2016-03-11 21:27:54 -06:00
|
|
|
}
|
2016-03-04 23:17:31 -06:00
|
|
|
ty::FnDiverging => None,
|
2016-02-27 19:20:25 -06:00
|
|
|
};
|
2016-03-29 23:13:31 -05:00
|
|
|
let substs = miri.tcx.mk_substs(Substs::empty());
|
|
|
|
miri.push_stack_frame(CachedMir::Ref(mir), substs, return_ptr);
|
2016-04-06 05:19:36 -05:00
|
|
|
if let Err(_e) = miri.run() {
|
|
|
|
// TODO(tsion): Detect whether the error was already reported or not.
|
|
|
|
// tcx.sess.err(&e.to_string());
|
|
|
|
} else if let Some(ret) = return_ptr {
|
2016-04-06 04:45:06 -05:00
|
|
|
miri.memory.dump(ret.alloc_id);
|
2015-11-12 17:11:41 -06:00
|
|
|
}
|
2016-04-06 05:19:36 -05:00
|
|
|
println!("");
|
2015-11-12 17:11:41 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|