2015-11-19 07:07:47 -06:00
|
|
|
use rustc::middle::{const_eval, def_id, ty};
|
2015-11-12 15:50:58 -06:00
|
|
|
use rustc_mir::mir_map::MirMap;
|
2015-11-12 16:13:22 -06:00
|
|
|
use rustc_mir::repr::{self as mir, Mir};
|
2015-11-12 17:11:41 -06:00
|
|
|
use syntax::ast::Attribute;
|
2015-11-12 15:50:58 -06:00
|
|
|
use syntax::attr::AttrMetaMethods;
|
|
|
|
|
2015-11-14 01:19:07 -06:00
|
|
|
use std::iter;
|
|
|
|
|
2015-11-12 15:50:58 -06:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
enum Value {
|
|
|
|
Uninit,
|
2015-11-12 16:13:35 -06:00
|
|
|
Bool(bool),
|
2015-11-12 17:24:43 -06:00
|
|
|
Int(i64), // FIXME: Should be bit-width aware.
|
2015-11-19 07:07:47 -06:00
|
|
|
Func(def_id::DefId),
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
|
2015-11-16 15:22:27 -06:00
|
|
|
#[derive(Debug)]
|
|
|
|
struct Frame {
|
|
|
|
offset: usize,
|
|
|
|
num_args: usize,
|
2015-11-14 01:19:07 -06:00
|
|
|
num_vars: usize,
|
|
|
|
num_temps: usize,
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
|
2015-11-19 07:07:47 -06:00
|
|
|
impl Frame {
|
|
|
|
fn size(&self) -> usize {
|
|
|
|
1 + self.num_args + self.num_vars + self.num_temps
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Interpreter<'a, 'tcx: 'a> {
|
|
|
|
tcx: &'a ty::ctxt<'tcx>,
|
|
|
|
mir_map: &'a MirMap<'tcx>,
|
2015-11-16 15:22:27 -06:00
|
|
|
value_stack: Vec<Value>,
|
|
|
|
call_stack: Vec<Frame>,
|
|
|
|
}
|
|
|
|
|
2015-11-19 07:07:47 -06:00
|
|
|
impl<'a, 'tcx> Interpreter<'a, 'tcx> {
|
|
|
|
fn new(tcx: &'a ty::ctxt<'tcx>, mir_map: &'a MirMap<'tcx>) -> Self {
|
2015-11-12 15:50:58 -06:00
|
|
|
Interpreter {
|
2015-11-19 07:07:47 -06:00
|
|
|
tcx: tcx,
|
|
|
|
mir_map: mir_map,
|
2015-11-16 15:22:27 -06:00
|
|
|
value_stack: Vec::new(),
|
|
|
|
call_stack: Vec::new(),
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 07:07:47 -06:00
|
|
|
fn push_stack_frame(&mut self, mir: &Mir, args: &[Value]) {
|
2015-11-16 15:22:27 -06:00
|
|
|
self.call_stack.push(Frame {
|
|
|
|
offset: self.value_stack.len(),
|
|
|
|
num_args: mir.arg_decls.len(),
|
|
|
|
num_vars: mir.var_decls.len(),
|
|
|
|
num_temps: mir.temp_decls.len(),
|
|
|
|
});
|
|
|
|
|
2015-11-19 03:23:50 -06:00
|
|
|
let frame = self.call_stack.last().unwrap();
|
2015-11-19 07:07:47 -06:00
|
|
|
self.value_stack.extend(iter::repeat(Value::Uninit).take(frame.size()));
|
|
|
|
|
|
|
|
for (i, arg) in args.iter().enumerate() {
|
|
|
|
self.value_stack[frame.offset + 1 + i] = arg.clone();
|
|
|
|
}
|
|
|
|
}
|
2015-11-19 03:23:50 -06:00
|
|
|
|
2015-11-19 07:07:47 -06:00
|
|
|
fn pop_stack_frame(&mut self) {
|
|
|
|
let frame = self.call_stack.pop().expect("tried to pop stack frame, but there were none");
|
|
|
|
self.value_stack.truncate(frame.offset);
|
2015-11-19 03:23:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, mir: &Mir, args: &[Value]) -> Value {
|
|
|
|
self.push_stack_frame(mir, args);
|
|
|
|
let mut block = mir::START_BLOCK;
|
|
|
|
|
|
|
|
loop {
|
|
|
|
use rustc_mir::repr::Terminator::*;
|
|
|
|
|
|
|
|
let block_data = mir.basic_block_data(block);
|
2015-11-14 01:19:07 -06:00
|
|
|
|
2015-11-19 03:23:50 -06:00
|
|
|
for stmt in &block_data.statements {
|
|
|
|
use rustc_mir::repr::StatementKind::*;
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2015-11-19 03:23:50 -06:00
|
|
|
match stmt.kind {
|
|
|
|
Assign(ref lvalue, ref rvalue) => {
|
|
|
|
let index = self.eval_lvalue(lvalue);
|
|
|
|
let value = self.eval_rvalue(rvalue);
|
|
|
|
self.value_stack[index] = value;
|
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2015-11-19 03:23:50 -06:00
|
|
|
Drop(_kind, ref _lv) => {
|
|
|
|
// TODO
|
|
|
|
},
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
2015-11-19 03:23:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
match block_data.terminator {
|
2015-11-19 07:07:47 -06:00
|
|
|
Return => break,
|
2015-11-19 03:23:50 -06:00
|
|
|
Goto { target } => block = target,
|
|
|
|
|
2015-11-19 07:07:47 -06:00
|
|
|
Call { data: mir::CallData { ref destination, ref func, ref args }, targets } => {
|
|
|
|
let index = self.eval_lvalue(destination);
|
|
|
|
let func_val = self.eval_operand(func);
|
|
|
|
|
|
|
|
if let Value::Func(def_id) = func_val {
|
|
|
|
let node_id = self.tcx.map.as_local_node_id(def_id).unwrap();
|
|
|
|
let mir = &self.mir_map[&node_id];
|
|
|
|
let arg_vals: Vec<Value> =
|
|
|
|
args.iter().map(|arg| self.eval_operand(arg)).collect();
|
|
|
|
|
|
|
|
self.value_stack[index] = self.call(mir, &arg_vals);
|
|
|
|
block = targets[0];
|
|
|
|
} else {
|
|
|
|
panic!("tried to call a non-function value: {:?}", func_val);
|
|
|
|
}
|
|
|
|
}
|
2015-11-19 03:23:50 -06:00
|
|
|
|
|
|
|
If { ref cond, targets } => {
|
2015-11-19 07:07:47 -06:00
|
|
|
match self.eval_operand(cond) {
|
2015-11-19 03:23:50 -06:00
|
|
|
Value::Bool(true) => block = targets[0],
|
|
|
|
Value::Bool(false) => block = targets[1],
|
|
|
|
cond_val => panic!("Non-boolean `if` condition value: {:?}", cond_val),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_ => unimplemented!(),
|
2015-11-19 07:07:47 -06:00
|
|
|
// Diverge => unimplemented!(),
|
|
|
|
// Panic { target } => unimplemented!(),
|
|
|
|
// Switch { ref discr, adt_def, ref targets } => unimplemented!(),
|
|
|
|
// SwitchInt { ref discr, switch_ty, ref values, ref targets } => unimplemented!(),
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 07:07:47 -06:00
|
|
|
let ret_val = self.value_stack[self.eval_lvalue(&mir::Lvalue::ReturnPointer)].clone();
|
|
|
|
self.pop_stack_frame();
|
|
|
|
ret_val
|
2015-11-14 01:19:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn eval_lvalue(&self, lvalue: &mir::Lvalue) -> usize {
|
|
|
|
use rustc_mir::repr::Lvalue::*;
|
|
|
|
|
2015-11-16 15:22:27 -06:00
|
|
|
let frame = self.call_stack.last().expect("missing call frame");
|
|
|
|
|
2015-11-14 01:19:07 -06:00
|
|
|
match *lvalue {
|
2015-11-16 15:22:27 -06:00
|
|
|
ReturnPointer => frame.offset,
|
|
|
|
Arg(i) => frame.offset + 1 + i as usize,
|
|
|
|
Var(i) => frame.offset + 1 + frame.num_args + i as usize,
|
|
|
|
Temp(i) => frame.offset + 1 + frame.num_args + frame.num_vars + i as usize,
|
2015-11-14 01:19:07 -06:00
|
|
|
_ => unimplemented!(),
|
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
|
2015-11-12 16:13:35 -06:00
|
|
|
fn eval_rvalue(&mut self, rvalue: &mir::Rvalue) -> Value {
|
2015-11-12 15:50:58 -06:00
|
|
|
use rustc_mir::repr::Rvalue::*;
|
2015-11-12 16:13:35 -06:00
|
|
|
use rustc_mir::repr::BinOp::*;
|
2015-11-12 17:24:43 -06:00
|
|
|
use rustc_mir::repr::UnOp::*;
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2015-11-12 16:13:35 -06:00
|
|
|
match *rvalue {
|
|
|
|
Use(ref operand) => self.eval_operand(operand),
|
2015-11-12 17:24:43 -06:00
|
|
|
|
2015-11-12 16:13:35 -06:00
|
|
|
BinaryOp(bin_op, ref left, ref right) => {
|
|
|
|
match (self.eval_operand(left), self.eval_operand(right)) {
|
2015-11-12 17:24:43 -06:00
|
|
|
(Value::Int(l), Value::Int(r)) => {
|
|
|
|
match bin_op {
|
|
|
|
Add => Value::Int(l + r),
|
|
|
|
Sub => Value::Int(l - r),
|
|
|
|
Mul => Value::Int(l * r),
|
|
|
|
Div => Value::Int(l / r),
|
|
|
|
Rem => Value::Int(l % r),
|
|
|
|
BitXor => Value::Int(l ^ r),
|
|
|
|
BitAnd => Value::Int(l & r),
|
|
|
|
BitOr => Value::Int(l | r),
|
|
|
|
Shl => Value::Int(l << r),
|
|
|
|
Shr => Value::Int(l >> r),
|
|
|
|
Eq => Value::Bool(l == r),
|
|
|
|
Lt => Value::Bool(l < r),
|
|
|
|
Le => Value::Bool(l <= r),
|
|
|
|
Ne => Value::Bool(l != r),
|
|
|
|
Ge => Value::Bool(l >= r),
|
|
|
|
Gt => Value::Bool(l > r),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => unimplemented!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UnaryOp(un_op, ref operand) => {
|
|
|
|
match (un_op, self.eval_operand(operand)) {
|
|
|
|
(Not, Value::Int(n)) => Value::Int(!n),
|
|
|
|
(Neg, Value::Int(n)) => Value::Int(-n),
|
2015-11-12 15:50:58 -06:00
|
|
|
_ => unimplemented!(),
|
|
|
|
}
|
|
|
|
}
|
2015-11-12 17:24:43 -06:00
|
|
|
|
2015-11-12 15:50:58 -06:00
|
|
|
_ => unimplemented!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 07:07:47 -06:00
|
|
|
fn eval_operand(&mut self, op: &mir::Operand) -> Value {
|
2015-11-12 15:50:58 -06:00
|
|
|
use rustc_mir::repr::Operand::*;
|
|
|
|
|
|
|
|
match *op {
|
2015-11-16 15:22:27 -06:00
|
|
|
Consume(ref lvalue) => self.value_stack[self.eval_lvalue(lvalue)].clone(),
|
2015-11-14 01:19:07 -06:00
|
|
|
|
2015-11-12 15:50:58 -06:00
|
|
|
Constant(ref constant) => {
|
|
|
|
match constant.literal {
|
2015-11-19 07:07:47 -06:00
|
|
|
mir::Literal::Value { ref value } => self.eval_constant(value),
|
|
|
|
|
|
|
|
mir::Literal::Item { def_id, substs: _ } => {
|
|
|
|
Value::Func(def_id)
|
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-12 17:44:29 -06:00
|
|
|
|
|
|
|
fn eval_constant(&self, const_val: &const_eval::ConstVal) -> Value {
|
|
|
|
use rustc::middle::const_eval::ConstVal::*;
|
|
|
|
|
|
|
|
match *const_val {
|
|
|
|
Float(_f) => unimplemented!(),
|
|
|
|
Int(i) => Value::Int(i),
|
|
|
|
Uint(_u) => unimplemented!(),
|
|
|
|
Str(ref _s) => unimplemented!(),
|
|
|
|
ByteStr(ref _bs) => unimplemented!(),
|
|
|
|
Bool(_b) => unimplemented!(),
|
|
|
|
Struct(_node_id) => unimplemented!(),
|
|
|
|
Tuple(_node_id) => unimplemented!(),
|
|
|
|
Function(_def_id) => unimplemented!(),
|
|
|
|
}
|
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn interpret_start_points<'tcx>(tcx: &ty::ctxt<'tcx>, mir_map: &MirMap<'tcx>) {
|
|
|
|
for (&id, mir) in mir_map {
|
|
|
|
for attr in tcx.map.attrs(id) {
|
|
|
|
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-19 07:07:47 -06:00
|
|
|
let mut interpreter = Interpreter::new(tcx, mir_map);
|
2015-11-16 15:22:27 -06:00
|
|
|
let val = interpreter.call(mir, &[]);
|
2015-11-12 17:11:41 -06:00
|
|
|
let val_str = format!("{:?}", val);
|
|
|
|
|
|
|
|
if !check_expected(&val_str, attr) {
|
|
|
|
println!("=> {}\n", val_str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_expected(actual: &str, attr: &Attribute) -> bool {
|
|
|
|
if let Some(meta_items) = attr.meta_item_list() {
|
|
|
|
for meta_item in meta_items {
|
|
|
|
if meta_item.check_name("expected") {
|
|
|
|
let expected = meta_item.value_str().unwrap();
|
|
|
|
|
|
|
|
if actual == &expected[..] {
|
|
|
|
println!("Test passed!\n");
|
|
|
|
} else {
|
|
|
|
println!("Actual value:\t{}\nExpected value:\t{}\n", actual, expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-12 17:11:41 -06:00
|
|
|
|
|
|
|
false
|
2015-11-12 15:50:58 -06:00
|
|
|
}
|