rust/miri/bin/miri.rs

225 lines
7.0 KiB
Rust
Raw Normal View History

2017-01-12 01:28:42 -06:00
#![feature(rustc_private, i128_type)]
2016-05-09 16:30:47 -05:00
extern crate getopts;
extern crate miri;
extern crate rustc;
extern crate rustc_driver;
extern crate rustc_errors;
2018-01-14 11:59:13 -06:00
extern crate rustc_trans_utils;
extern crate env_logger;
extern crate log_settings;
extern crate syntax;
2017-01-28 08:27:20 -06:00
extern crate log;
use rustc::session::Session;
2017-09-14 02:55:17 -05:00
use rustc::middle::cstore::CrateStore;
use rustc_driver::{Compilation, CompilerCalls, RustcDefaultCalls};
use rustc_driver::driver::{CompileState, CompileController};
use rustc::session::config::{self, Input, ErrorOutputType};
2017-01-24 08:33:51 -06:00
use rustc::hir::{self, itemlikevisit};
use rustc::ty::TyCtxt;
2018-01-14 11:59:13 -06:00
use rustc_trans_utils::trans_crate::TransCrate;
use syntax::ast;
use std::path::PathBuf;
struct MiriCompilerCalls {
default: RustcDefaultCalls,
}
impl<'a> CompilerCalls<'a> for MiriCompilerCalls {
fn early_callback(
&mut self,
matches: &getopts::Matches,
sopts: &config::Options,
cfg: &ast::CrateConfig,
descriptions: &rustc_errors::registry::Registry,
output: ErrorOutputType,
) -> Compilation {
self.default.early_callback(
matches,
sopts,
cfg,
descriptions,
output,
)
}
fn no_input(
&mut self,
matches: &getopts::Matches,
sopts: &config::Options,
cfg: &ast::CrateConfig,
odir: &Option<PathBuf>,
ofile: &Option<PathBuf>,
descriptions: &rustc_errors::registry::Registry,
) -> Option<(Input, Option<PathBuf>)> {
self.default.no_input(
matches,
sopts,
cfg,
odir,
ofile,
descriptions,
)
}
fn late_callback(
&mut self,
2018-01-14 11:59:13 -06:00
trans: &TransCrate,
matches: &getopts::Matches,
sess: &Session,
2017-09-14 02:55:17 -05:00
cstore: &CrateStore,
input: &Input,
odir: &Option<PathBuf>,
ofile: &Option<PathBuf>,
) -> Compilation {
2018-01-14 11:59:13 -06:00
self.default.late_callback(trans, matches, sess, cstore, input, odir, ofile)
}
fn build_controller(
&mut self,
sess: &Session,
matches: &getopts::Matches,
) -> CompileController<'a> {
let mut control = self.default.build_controller(sess, matches);
control.after_hir_lowering.callback = Box::new(after_hir_lowering);
control.after_analysis.callback = Box::new(after_analysis);
2017-09-16 06:29:38 -05:00
if sess.target.target != sess.host {
// only fully compile targets on the host. linking will fail for cross-compilation.
control.after_analysis.stop = Compilation::Stop;
}
control
}
}
fn after_hir_lowering(state: &mut CompileState) {
let attr = (
String::from("miri"),
syntax::feature_gate::AttributeType::Whitelisted,
);
state.session.plugin_attributes.borrow_mut().push(attr);
}
2017-01-24 08:33:51 -06:00
fn after_analysis<'a, 'tcx>(state: &mut CompileState<'a, 'tcx>) {
state.session.abort_if_errors();
let tcx = state.tcx.unwrap();
2017-01-24 08:33:51 -06:00
if std::env::args().any(|arg| arg == "--test") {
struct Visitor<'a, 'tcx: 'a>(
TyCtxt<'a, 'tcx, 'tcx>,
&'a CompileState<'a, 'tcx>
);
2017-01-24 08:33:51 -06:00
impl<'a, 'tcx: 'a, 'hir> itemlikevisit::ItemLikeVisitor<'hir> for Visitor<'a, 'tcx> {
fn visit_item(&mut self, i: &'hir hir::Item) {
if let hir::Item_::ItemFn(_, _, _, _, _, body_id) = i.node {
if i.attrs.iter().any(|attr| {
attr.name().map_or(false, |n| n == "test")
})
{
2018-01-14 11:59:13 -06:00
let did = self.0.hir.body_owner_def_id(body_id);
println!(
"running test: {}",
2018-01-14 11:59:13 -06:00
self.0.def_path_debug_str(did),
);
2018-01-14 11:59:13 -06:00
miri::eval_main(self.0, did, None);
self.1.session.abort_if_errors();
2017-01-24 08:33:51 -06:00
}
}
}
fn visit_trait_item(&mut self, _trait_item: &'hir hir::TraitItem) {}
fn visit_impl_item(&mut self, _impl_item: &'hir hir::ImplItem) {}
}
state.hir_crate.unwrap().visit_all_item_likes(
2018-01-14 11:59:13 -06:00
&mut Visitor(tcx, state),
);
} else if let Some((entry_node_id, _)) = *state.session.entry_fn.borrow() {
let entry_def_id = tcx.hir.local_def_id(entry_node_id);
2017-09-08 12:10:21 -05:00
let start_wrapper = tcx.lang_items().start_fn().and_then(|start_fn| {
if tcx.is_mir_available(start_fn) {
Some(start_fn)
} else {
None
}
});
2018-01-14 11:59:13 -06:00
miri::eval_main(tcx, entry_def_id, start_wrapper);
2017-01-24 08:33:51 -06:00
state.session.abort_if_errors();
} else {
println!("no main function found, assuming auxiliary build");
}
2016-11-26 19:54:19 -06:00
}
fn init_logger() {
2018-01-06 09:21:24 -06:00
let format = |formatter: &mut env_logger::fmt::Formatter, record: &log::Record| {
use std::io::Write;
if record.level() == log::Level::Trace {
// prepend frame number
2016-06-17 20:48:45 -05:00
let indentation = log_settings::settings().indentation;
2018-01-06 09:21:24 -06:00
writeln!(
formatter,
"{indentation}:{lvl}:{module}: {text}",
2016-06-17 20:48:45 -05:00
lvl = record.level(),
2018-01-06 09:21:24 -06:00
module = record.module_path().unwrap_or("<unknown module>"),
2017-02-07 02:45:22 -06:00
indentation = indentation,
text = record.args(),
)
2016-06-17 20:48:45 -05:00
} else {
2018-01-06 09:21:24 -06:00
writeln!(
formatter,
2017-02-07 02:45:22 -06:00
"{lvl}:{module}: {text}",
2016-06-17 20:48:45 -05:00
lvl = record.level(),
2018-01-06 09:21:24 -06:00
module = record.module_path().unwrap_or("<unknown_module>"),
2017-02-07 02:45:22 -06:00
text = record.args(),
)
2016-06-17 20:48:45 -05:00
}
};
2018-01-06 09:21:24 -06:00
let mut builder = env_logger::Builder::new();
builder.format(format).filter(
None,
2018-01-06 09:21:24 -06:00
log::LevelFilter::Info,
);
if std::env::var("MIRI_LOG").is_ok() {
builder.parse(&std::env::var("MIRI_LOG").unwrap());
}
2018-01-06 09:21:24 -06:00
builder.init();
}
fn find_sysroot() -> String {
if let Ok(sysroot) = std::env::var("MIRI_SYSROOT") {
return sysroot;
}
// Taken from https://github.com/Manishearth/rust-clippy/pull/911.
let home = option_env!("RUSTUP_HOME").or(option_env!("MULTIRUST_HOME"));
let toolchain = option_env!("RUSTUP_TOOLCHAIN").or(option_env!("MULTIRUST_TOOLCHAIN"));
match (home, toolchain) {
(Some(home), Some(toolchain)) => format!("{}/toolchains/{}", home, toolchain),
_ => {
option_env!("RUST_SYSROOT")
.expect(
"need to specify RUST_SYSROOT env var or use rustup or multirust",
)
.to_owned()
}
}
}
fn main() {
init_logger();
let mut args: Vec<String> = std::env::args().collect();
let sysroot_flag = String::from("--sysroot");
if !args.contains(&sysroot_flag) {
args.push(sysroot_flag);
args.push(find_sysroot());
}
2017-07-20 09:05:14 -05:00
2017-09-16 06:29:38 -05:00
// Make sure we always have all the MIR (e.g. for auxilary builds in unit tests).
args.push("-Zalways-encode-mir".to_owned());
rustc_driver::run_compiler(&args, &mut MiriCompilerCalls {
default: RustcDefaultCalls,
}, None, None);
}