2018-03-23 06:18:33 -05:00
|
|
|
#![feature(rustc_private)]
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2016-05-09 16:30:47 -05:00
|
|
|
extern crate getopts;
|
2015-11-21 21:20:06 -06:00
|
|
|
extern crate miri;
|
2015-11-12 15:50:58 -06:00
|
|
|
extern crate rustc;
|
2018-08-07 08:22:11 -05:00
|
|
|
extern crate rustc_metadata;
|
2015-11-12 15:50:58 -06:00
|
|
|
extern crate rustc_driver;
|
2017-01-24 06:28:36 -06:00
|
|
|
extern crate rustc_errors;
|
2018-05-19 05:14:13 -05:00
|
|
|
extern crate rustc_codegen_utils;
|
2016-05-30 11:09:52 -05:00
|
|
|
extern crate env_logger;
|
|
|
|
extern crate log_settings;
|
2016-06-10 06:01:51 -05:00
|
|
|
extern crate syntax;
|
2017-01-28 08:27:20 -06:00
|
|
|
extern crate log;
|
2015-11-12 15:50:58 -06:00
|
|
|
|
|
|
|
use rustc::session::Session;
|
2018-08-07 08:22:11 -05:00
|
|
|
use rustc_metadata::cstore::CStore;
|
2017-01-24 06:28:36 -06:00
|
|
|
use rustc_driver::{Compilation, CompilerCalls, RustcDefaultCalls};
|
2016-11-26 19:36:31 -06:00
|
|
|
use rustc_driver::driver::{CompileState, CompileController};
|
2017-01-24 06:28:36 -06:00
|
|
|
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-05-19 05:14:13 -05:00
|
|
|
use rustc_codegen_utils::codegen_backend::CodegenBackend;
|
2018-01-14 11:59:13 -06:00
|
|
|
use syntax::ast;
|
2017-01-24 06:28:36 -06:00
|
|
|
use std::path::PathBuf;
|
2015-11-12 15:50:58 -06:00
|
|
|
|
2017-08-28 10:32:21 -05:00
|
|
|
struct MiriCompilerCalls {
|
2018-06-10 04:23:56 -05:00
|
|
|
default: Box<RustcDefaultCalls>,
|
2018-10-11 04:24:22 -05:00
|
|
|
|
|
|
|
/// Whether to enforce the validity invariant.
|
|
|
|
validate: bool,
|
2017-08-28 10:32:21 -05:00
|
|
|
}
|
2015-11-12 15:50:58 -06:00
|
|
|
|
|
|
|
impl<'a> CompilerCalls<'a> for MiriCompilerCalls {
|
2017-01-24 06:28:36 -06:00
|
|
|
fn early_callback(
|
|
|
|
&mut self,
|
|
|
|
matches: &getopts::Matches,
|
|
|
|
sopts: &config::Options,
|
|
|
|
cfg: &ast::CrateConfig,
|
|
|
|
descriptions: &rustc_errors::registry::Registry,
|
2017-08-10 10:48:38 -05:00
|
|
|
output: ErrorOutputType,
|
2017-01-24 06:28:36 -06:00
|
|
|
) -> Compilation {
|
2017-08-28 10:32:21 -05:00
|
|
|
self.default.early_callback(
|
2017-08-10 10:48:38 -05:00
|
|
|
matches,
|
|
|
|
sopts,
|
|
|
|
cfg,
|
|
|
|
descriptions,
|
|
|
|
output,
|
|
|
|
)
|
2017-01-24 06:28:36 -06:00
|
|
|
}
|
|
|
|
fn no_input(
|
|
|
|
&mut self,
|
|
|
|
matches: &getopts::Matches,
|
|
|
|
sopts: &config::Options,
|
|
|
|
cfg: &ast::CrateConfig,
|
|
|
|
odir: &Option<PathBuf>,
|
|
|
|
ofile: &Option<PathBuf>,
|
2017-08-10 10:48:38 -05:00
|
|
|
descriptions: &rustc_errors::registry::Registry,
|
2017-01-24 06:28:36 -06:00
|
|
|
) -> Option<(Input, Option<PathBuf>)> {
|
2017-08-28 10:32:21 -05:00
|
|
|
self.default.no_input(
|
2017-08-10 10:48:38 -05:00
|
|
|
matches,
|
|
|
|
sopts,
|
|
|
|
cfg,
|
|
|
|
odir,
|
|
|
|
ofile,
|
|
|
|
descriptions,
|
|
|
|
)
|
2017-01-24 06:28:36 -06:00
|
|
|
}
|
|
|
|
fn late_callback(
|
|
|
|
&mut self,
|
2018-05-19 07:09:29 -05:00
|
|
|
codegen_backend: &CodegenBackend,
|
2017-01-24 06:28:36 -06:00
|
|
|
matches: &getopts::Matches,
|
|
|
|
sess: &Session,
|
2018-08-07 08:22:11 -05:00
|
|
|
cstore: &CStore,
|
2017-01-24 06:28:36 -06:00
|
|
|
input: &Input,
|
|
|
|
odir: &Option<PathBuf>,
|
2017-08-10 10:48:38 -05:00
|
|
|
ofile: &Option<PathBuf>,
|
2017-01-24 06:28:36 -06:00
|
|
|
) -> Compilation {
|
2018-05-19 07:09:29 -05:00
|
|
|
self.default.late_callback(codegen_backend, matches, sess, cstore, input, odir, ofile)
|
2017-01-24 06:28:36 -06:00
|
|
|
}
|
2017-08-10 10:48:38 -05:00
|
|
|
fn build_controller(
|
2018-06-10 04:23:56 -05:00
|
|
|
self: Box<Self>,
|
2017-08-10 10:48:38 -05:00
|
|
|
sess: &Session,
|
|
|
|
matches: &getopts::Matches,
|
|
|
|
) -> CompileController<'a> {
|
2018-06-10 04:23:56 -05:00
|
|
|
let this = *self;
|
|
|
|
let mut control = this.default.build_controller(sess, matches);
|
2016-11-26 19:36:31 -06:00
|
|
|
control.after_hir_lowering.callback = Box::new(after_hir_lowering);
|
2018-10-11 04:24:22 -05:00
|
|
|
let validate = this.validate;
|
|
|
|
control.after_analysis.callback =
|
2018-10-19 03:07:17 -05:00
|
|
|
Box::new(move |state| after_analysis(state, validate));
|
2018-07-11 10:53:44 -05:00
|
|
|
control.after_analysis.stop = Compilation::Stop;
|
2016-11-26 19:36:31 -06:00
|
|
|
control
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn after_hir_lowering(state: &mut CompileState) {
|
2017-08-10 10:48:38 -05:00
|
|
|
let attr = (
|
|
|
|
String::from("miri"),
|
|
|
|
syntax::feature_gate::AttributeType::Whitelisted,
|
|
|
|
);
|
2016-11-26 19:36:31 -06:00
|
|
|
state.session.plugin_attributes.borrow_mut().push(attr);
|
|
|
|
}
|
2016-06-13 07:27:05 -05:00
|
|
|
|
2018-10-11 04:24:22 -05:00
|
|
|
fn after_analysis<'a, 'tcx>(
|
|
|
|
state: &mut CompileState<'a, 'tcx>,
|
|
|
|
validate: bool,
|
|
|
|
) {
|
2016-11-26 19:36:31 -06:00
|
|
|
state.session.abort_if_errors();
|
2016-06-30 22:33:24 -05:00
|
|
|
|
2016-11-26 19:36:31 -06:00
|
|
|
let tcx = state.tcx.unwrap();
|
2016-12-16 19:10:16 -06:00
|
|
|
|
2017-01-24 08:33:51 -06:00
|
|
|
if std::env::args().any(|arg| arg == "--test") {
|
2018-10-11 04:24:22 -05:00
|
|
|
struct Visitor<'a, 'tcx: 'a> {
|
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
state: &'a CompileState<'a, 'tcx>,
|
|
|
|
validate: bool,
|
|
|
|
};
|
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) {
|
2018-07-16 15:26:32 -05:00
|
|
|
if let hir::ItemKind::Fn(.., body_id) = i.node {
|
2017-08-10 10:48:38 -05:00
|
|
|
if i.attrs.iter().any(|attr| {
|
2018-05-07 03:18:45 -05:00
|
|
|
attr.name() == "test"
|
2017-08-10 10:48:38 -05:00
|
|
|
})
|
|
|
|
{
|
2018-10-11 04:24:22 -05:00
|
|
|
let did = self.tcx.hir.body_owner_def_id(body_id);
|
2017-08-10 10:48:38 -05:00
|
|
|
println!(
|
|
|
|
"running test: {}",
|
2018-10-11 04:24:22 -05:00
|
|
|
self.tcx.def_path_debug_str(did),
|
2017-08-10 10:48:38 -05:00
|
|
|
);
|
2018-10-19 03:07:17 -05:00
|
|
|
miri::eval_main(self.tcx, did, self.validate);
|
2018-10-11 04:24:22 -05:00
|
|
|
self.state.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) {}
|
|
|
|
}
|
2017-08-10 10:48:38 -05:00
|
|
|
state.hir_crate.unwrap().visit_all_item_likes(
|
2018-10-11 04:24:22 -05:00
|
|
|
&mut Visitor { tcx, state, validate }
|
2017-08-10 10:48:38 -05:00
|
|
|
);
|
2018-04-17 07:26:17 -05:00
|
|
|
} else if let Some((entry_node_id, _, _)) = *state.session.entry_fn.borrow() {
|
2017-05-05 03:34:38 -05:00
|
|
|
let entry_def_id = tcx.hir.local_def_id(entry_node_id);
|
2018-10-19 03:07:17 -05:00
|
|
|
miri::eval_main(tcx, entry_def_id, validate);
|
2017-01-24 08:33:51 -06:00
|
|
|
|
2017-05-05 03:34:38 -05:00
|
|
|
state.session.abort_if_errors();
|
|
|
|
} else {
|
|
|
|
println!("no main function found, assuming auxiliary build");
|
2016-12-16 19:10:16 -06:00
|
|
|
}
|
2016-11-26 19:54:19 -06:00
|
|
|
}
|
|
|
|
|
2016-05-30 11:09:52 -05: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 {
|
2017-10-06 10:12:32 -05:00
|
|
|
// 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,
|
2017-10-06 10:12:32 -05:00
|
|
|
"{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
|
|
|
}
|
2016-05-30 11:09:52 -05:00
|
|
|
};
|
|
|
|
|
2018-01-06 09:21:24 -06:00
|
|
|
let mut builder = env_logger::Builder::new();
|
2017-08-10 10:48:38 -05:00
|
|
|
builder.format(format).filter(
|
|
|
|
None,
|
2018-01-06 09:21:24 -06:00
|
|
|
log::LevelFilter::Info,
|
2017-08-10 10:48:38 -05:00
|
|
|
);
|
2016-05-30 11:09:52 -05:00
|
|
|
|
2016-06-01 10:32:57 -05:00
|
|
|
if std::env::var("MIRI_LOG").is_ok() {
|
|
|
|
builder.parse(&std::env::var("MIRI_LOG").unwrap());
|
2016-05-30 11:09:52 -05:00
|
|
|
}
|
|
|
|
|
2018-01-06 09:21:24 -06:00
|
|
|
builder.init();
|
2016-05-30 11:09:52 -05:00
|
|
|
}
|
2016-06-14 20:30:59 -05:00
|
|
|
|
|
|
|
fn find_sysroot() -> String {
|
2017-05-30 16:09:40 -05:00
|
|
|
if let Ok(sysroot) = std::env::var("MIRI_SYSROOT") {
|
|
|
|
return sysroot;
|
|
|
|
}
|
|
|
|
|
2016-06-14 20:30:59 -05:00
|
|
|
// 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),
|
2017-08-10 10:48:38 -05:00
|
|
|
_ => {
|
|
|
|
option_env!("RUST_SYSROOT")
|
|
|
|
.expect(
|
2018-07-30 07:49:01 -05:00
|
|
|
"Could not find sysroot. Either set MIRI_SYSROOT at run-time, or at \
|
|
|
|
build-time specify RUST_SYSROOT env var or use rustup or multirust",
|
2017-08-10 10:48:38 -05:00
|
|
|
)
|
|
|
|
.to_owned()
|
|
|
|
}
|
2016-06-14 20:30:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2018-04-13 09:02:55 -05:00
|
|
|
rustc_driver::init_rustc_env_logger();
|
2016-06-14 20:30:59 -05:00
|
|
|
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
|
|
|
|
2018-10-11 04:24:22 -05:00
|
|
|
let mut validate = true;
|
2018-05-07 03:46:32 -05:00
|
|
|
args.retain(|arg| {
|
2018-10-11 04:24:22 -05:00
|
|
|
match arg.as_str() {
|
|
|
|
"-Zmiri-disable-validation" => {
|
|
|
|
validate = false;
|
|
|
|
false
|
|
|
|
},
|
|
|
|
_ => true
|
2018-05-07 03:46:32 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-07-25 10:28:16 -05:00
|
|
|
|
|
|
|
let result = rustc_driver::run(move || {
|
|
|
|
rustc_driver::run_compiler(&args, Box::new(MiriCompilerCalls {
|
|
|
|
default: Box::new(RustcDefaultCalls),
|
2018-10-11 04:24:22 -05:00
|
|
|
validate,
|
2018-07-25 10:28:16 -05:00
|
|
|
}), None, None)
|
|
|
|
});
|
|
|
|
std::process::exit(result as i32);
|
2016-06-14 20:30:59 -05:00
|
|
|
}
|