2019-06-30 08:35:28 -05:00
|
|
|
pub mod foreign_items;
|
|
|
|
pub mod intrinsics;
|
2019-07-03 16:12:44 -05:00
|
|
|
pub mod tls;
|
2019-06-30 09:03:13 -05:00
|
|
|
pub mod dlsym;
|
2019-08-06 17:40:07 -05:00
|
|
|
pub mod env;
|
2019-06-30 16:24:08 -05:00
|
|
|
|
|
|
|
use rustc::{ty, mir};
|
|
|
|
|
|
|
|
use crate::*;
|
|
|
|
|
|
|
|
impl<'mir, 'tcx> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mir, 'tcx> {}
|
|
|
|
pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx> {
|
|
|
|
fn find_fn(
|
|
|
|
&mut self,
|
|
|
|
instance: ty::Instance<'tcx>,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
|
|
|
dest: Option<PlaceTy<'tcx, Tag>>,
|
|
|
|
ret: Option<mir::BasicBlock>,
|
|
|
|
) -> InterpResult<'tcx, Option<&'mir mir::Body<'tcx>>> {
|
|
|
|
let this = self.eval_context_mut();
|
|
|
|
trace!("eval_fn_call: {:#?}, {:?}", instance, dest.map(|place| *place));
|
|
|
|
|
|
|
|
// First, run the common hooks also supported by CTFE.
|
|
|
|
if this.hook_fn(instance, args, dest)? {
|
|
|
|
this.goto_block(ret)?;
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
// There are some more lang items we want to hook that CTFE does not hook (yet).
|
|
|
|
if this.tcx.lang_items().align_offset_fn() == Some(instance.def.def_id()) {
|
|
|
|
// FIXME: return a real value in case the target allocation has an
|
|
|
|
// alignment bigger than the one requested.
|
|
|
|
let n = u128::max_value();
|
|
|
|
let dest = dest.unwrap();
|
|
|
|
let n = this.truncate(n, dest.layout);
|
|
|
|
this.write_scalar(Scalar::from_uint(n, dest.layout.size), dest)?;
|
|
|
|
this.goto_block(ret)?;
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to see if we can do something about foreign items.
|
|
|
|
if this.tcx.is_foreign_item(instance.def_id()) {
|
|
|
|
// An external function that we cannot find MIR for, but we can still run enough
|
|
|
|
// of them to make miri viable.
|
|
|
|
this.emulate_foreign_item(instance.def_id(), args, dest, ret)?;
|
|
|
|
// `goto_block` already handled.
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, load the MIR.
|
|
|
|
Ok(Some(this.load_mir(instance.def)?))
|
|
|
|
}
|
|
|
|
}
|