2015-02-02 18:40:52 -06:00
|
|
|
// Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-11-27 08:57:47 -06:00
|
|
|
//! The Rust compiler.
|
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
|
|
|
|
#![crate_name = "rustc_driver"]
|
2015-08-13 12:21:36 -05:00
|
|
|
#![unstable(feature = "rustc_private", issue = "27812")]
|
2014-11-27 08:57:47 -06:00
|
|
|
#![crate_type = "dylib"]
|
|
|
|
#![crate_type = "rlib"]
|
2015-08-09 16:15:05 -05:00
|
|
|
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
2015-05-15 18:04:01 -05:00
|
|
|
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
|
2015-08-09 16:15:05 -05:00
|
|
|
html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2016-01-21 17:26:19 -06:00
|
|
|
#![cfg_attr(not(stage0), deny(warnings))]
|
2014-11-27 08:57:47 -06:00
|
|
|
|
2015-01-07 18:17:21 -06:00
|
|
|
#![feature(box_syntax)]
|
2015-01-22 20:22:03 -06:00
|
|
|
#![feature(libc)]
|
2015-01-30 14:26:44 -06:00
|
|
|
#![feature(quote)]
|
|
|
|
#![feature(rustc_diagnostic_macros)]
|
2015-01-22 20:22:03 -06:00
|
|
|
#![feature(rustc_private)]
|
2015-03-08 17:30:15 -05:00
|
|
|
#![feature(set_stdio)]
|
2015-06-09 16:39:23 -05:00
|
|
|
#![feature(staged_api)]
|
2016-03-21 02:23:03 -05:00
|
|
|
#![feature(question_mark)]
|
2014-11-27 08:57:47 -06:00
|
|
|
|
|
|
|
extern crate arena;
|
|
|
|
extern crate flate;
|
|
|
|
extern crate getopts;
|
|
|
|
extern crate graphviz;
|
|
|
|
extern crate libc;
|
|
|
|
extern crate rustc;
|
|
|
|
extern crate rustc_back;
|
2014-12-05 13:17:35 -06:00
|
|
|
extern crate rustc_borrowck;
|
2016-03-30 06:43:36 -05:00
|
|
|
extern crate rustc_const_eval;
|
2016-01-15 06:16:54 -06:00
|
|
|
extern crate rustc_passes;
|
2015-02-25 05:44:44 -06:00
|
|
|
extern crate rustc_lint;
|
2015-11-22 14:14:09 -06:00
|
|
|
extern crate rustc_plugin;
|
2015-01-15 12:47:17 -06:00
|
|
|
extern crate rustc_privacy;
|
2016-03-28 16:36:56 -05:00
|
|
|
extern crate rustc_incremental;
|
2015-11-24 16:00:26 -06:00
|
|
|
extern crate rustc_metadata;
|
2015-08-18 17:01:44 -05:00
|
|
|
extern crate rustc_mir;
|
2014-12-18 16:46:26 -06:00
|
|
|
extern crate rustc_resolve;
|
2016-03-22 11:40:24 -05:00
|
|
|
extern crate rustc_save_analysis;
|
2014-11-27 08:57:47 -06:00
|
|
|
extern crate rustc_trans;
|
2014-12-05 13:17:35 -06:00
|
|
|
extern crate rustc_typeck;
|
2014-11-27 08:57:47 -06:00
|
|
|
extern crate serialize;
|
2015-03-24 20:13:54 -05:00
|
|
|
extern crate rustc_llvm as llvm;
|
2015-11-10 14:48:44 -06:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate syntax;
|
2015-12-10 08:23:14 -06:00
|
|
|
extern crate syntax_ext;
|
2014-12-31 22:43:46 -06:00
|
|
|
|
2015-01-10 20:03:34 -06:00
|
|
|
use driver::CompileController;
|
2015-01-30 02:44:27 -06:00
|
|
|
use pretty::{PpMode, UserIdentifiedItem};
|
2015-01-10 20:03:34 -06:00
|
|
|
|
|
|
|
use rustc_resolve as resolve;
|
2016-03-22 11:40:24 -05:00
|
|
|
use rustc_save_analysis as save;
|
2014-11-27 08:57:47 -06:00
|
|
|
use rustc_trans::back::link;
|
2016-01-27 00:01:01 -06:00
|
|
|
use rustc::session::{config, Session, build_session, CompileResult};
|
2015-12-30 21:50:06 -06:00
|
|
|
use rustc::session::config::{Input, PrintRequest, OutputType, ErrorOutputType};
|
2016-03-15 03:09:29 -05:00
|
|
|
use rustc::session::config::{get_unstable_features_setting, nightly_options};
|
2015-11-24 16:00:26 -06:00
|
|
|
use rustc::middle::cstore::CrateStore;
|
2014-11-27 08:57:47 -06:00
|
|
|
use rustc::lint::Lint;
|
|
|
|
use rustc::lint;
|
2015-11-24 16:00:26 -06:00
|
|
|
use rustc_metadata::loader;
|
|
|
|
use rustc_metadata::cstore::CStore;
|
2015-01-10 20:03:34 -06:00
|
|
|
use rustc::util::common::time;
|
2014-11-15 19:30:33 -06:00
|
|
|
|
2016-01-04 10:54:30 -06:00
|
|
|
use std::cmp::max;
|
2014-12-22 11:04:23 -06:00
|
|
|
use std::cmp::Ordering::Equal;
|
2015-12-30 21:50:06 -06:00
|
|
|
use std::default::Default;
|
2015-01-27 14:20:58 -06:00
|
|
|
use std::env;
|
2015-03-11 17:24:14 -05:00
|
|
|
use std::io::{self, Read, Write};
|
2015-02-26 23:00:43 -06:00
|
|
|
use std::iter::repeat;
|
|
|
|
use std::path::PathBuf;
|
2015-06-10 21:33:04 -05:00
|
|
|
use std::process;
|
2015-11-21 13:39:05 -06:00
|
|
|
use std::rc::Rc;
|
2015-03-11 17:24:14 -05:00
|
|
|
use std::str;
|
|
|
|
use std::sync::{Arc, Mutex};
|
2014-12-06 20:34:37 -06:00
|
|
|
use std::thread;
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2016-03-15 03:09:29 -05:00
|
|
|
use rustc::session::early_error;
|
2014-11-15 19:30:33 -06:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
use syntax::ast;
|
2016-02-13 11:05:16 -06:00
|
|
|
use syntax::parse::{self, PResult};
|
2015-12-13 16:17:55 -06:00
|
|
|
use syntax::errors;
|
|
|
|
use syntax::errors::emitter::Emitter;
|
2014-07-01 11:39:41 -05:00
|
|
|
use syntax::diagnostics;
|
2015-11-21 13:39:05 -06:00
|
|
|
use syntax::parse::token;
|
2016-03-03 03:06:09 -06:00
|
|
|
use syntax::feature_gate::{GatedCfg, UnstableFeatures};
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2014-11-27 08:57:47 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
pub mod test;
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2013-01-29 17:16:07 -06:00
|
|
|
pub mod driver;
|
2014-08-11 05:59:35 -05:00
|
|
|
pub mod pretty;
|
2015-07-14 17:49:03 -05:00
|
|
|
pub mod target_features;
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
|
2015-11-10 14:48:44 -06:00
|
|
|
const BUG_REPORT_URL: &'static str = "https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.\
|
|
|
|
md#bug-reports";
|
2015-01-30 02:44:27 -06:00
|
|
|
|
2016-01-20 18:19:20 -06:00
|
|
|
#[inline]
|
|
|
|
fn abort_msg(err_count: usize) -> String {
|
|
|
|
match err_count {
|
|
|
|
0 => "aborting with no errors (maybe a bug?)".to_owned(),
|
|
|
|
1 => "aborting due to previous error".to_owned(),
|
|
|
|
e => format!("aborting due to {} previous errors", e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn abort_on_err<T>(result: Result<T, usize>, sess: &Session) -> T {
|
|
|
|
match result {
|
|
|
|
Err(err_count) => {
|
|
|
|
sess.fatal(&abort_msg(err_count));
|
|
|
|
}
|
|
|
|
Ok(x) => x,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
pub fn run(args: Vec<String>) -> isize {
|
2016-01-20 18:19:20 -06:00
|
|
|
monitor(move || {
|
|
|
|
let (result, session) = run_compiler(&args, &mut RustcDefaultCalls);
|
|
|
|
if let Err(err_count) = result {
|
|
|
|
if err_count > 0 {
|
|
|
|
match session {
|
|
|
|
Some(sess) => sess.fatal(&abort_msg(err_count)),
|
|
|
|
None => {
|
|
|
|
let mut emitter =
|
|
|
|
errors::emitter::BasicEmitter::stderr(errors::ColorConfig::Auto);
|
|
|
|
emitter.emit(None, &abort_msg(err_count), None, errors::Level::Fatal);
|
2016-01-27 14:49:18 -06:00
|
|
|
exit_on_err();
|
2016-01-20 18:19:20 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-05-06 06:38:01 -05:00
|
|
|
0
|
|
|
|
}
|
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
// Parse args and run the compiler. This is the primary entry point for rustc.
|
|
|
|
// See comments on CompilerCalls below for details about the callbacks argument.
|
2016-01-20 18:19:20 -06:00
|
|
|
pub fn run_compiler<'a>(args: &[String],
|
|
|
|
callbacks: &mut CompilerCalls<'a>)
|
|
|
|
-> (CompileResult, Option<Session>) {
|
|
|
|
macro_rules! do_or_return {($expr: expr, $sess: expr) => {
|
2015-02-02 18:40:52 -06:00
|
|
|
match $expr {
|
2016-01-20 18:19:20 -06:00
|
|
|
Compilation::Stop => return (Ok(()), $sess),
|
2015-02-02 18:40:52 -06:00
|
|
|
Compilation::Continue => {}
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
}}
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2016-03-19 22:37:13 -05:00
|
|
|
let matches = match handle_options(args) {
|
2014-05-06 06:38:01 -05:00
|
|
|
Some(matches) => matches,
|
2016-01-20 18:19:20 -06:00
|
|
|
None => return (Ok(()), None),
|
2014-05-06 06:38:01 -05:00
|
|
|
};
|
2014-06-04 16:35:58 -05:00
|
|
|
|
2015-08-22 09:51:53 -05:00
|
|
|
let sopts = config::build_session_options(&matches);
|
2015-01-30 02:44:27 -06:00
|
|
|
|
2016-03-29 05:50:17 -05:00
|
|
|
if sopts.debugging_opts.debug_llvm {
|
|
|
|
unsafe { llvm::LLVMSetDebug(1); }
|
|
|
|
}
|
|
|
|
|
2015-08-22 09:51:53 -05:00
|
|
|
let descriptions = diagnostics_registry();
|
2014-07-01 11:39:41 -05:00
|
|
|
|
2016-02-08 14:43:01 -06:00
|
|
|
do_or_return!(callbacks.early_callback(&matches,
|
|
|
|
&sopts,
|
|
|
|
&descriptions,
|
|
|
|
sopts.error_format),
|
|
|
|
None);
|
2015-01-30 02:44:27 -06:00
|
|
|
|
|
|
|
let (odir, ofile) = make_output(&matches);
|
2015-02-20 13:08:14 -06:00
|
|
|
let (input, input_file_path) = match make_input(&matches.free) {
|
2015-01-30 02:44:27 -06:00
|
|
|
Some((input, input_file_path)) => callbacks.some_input(input, input_file_path),
|
|
|
|
None => match callbacks.no_input(&matches, &sopts, &odir, &ofile, &descriptions) {
|
|
|
|
Some((input, input_file_path)) => (input, input_file_path),
|
2016-01-20 18:19:20 -06:00
|
|
|
None => return (Ok(()), None),
|
2015-11-10 14:48:44 -06:00
|
|
|
},
|
2014-05-06 06:38:01 -05:00
|
|
|
};
|
|
|
|
|
2015-11-21 13:39:05 -06:00
|
|
|
let cstore = Rc::new(CStore::new(token::get_ident_interner()));
|
2016-01-20 18:19:20 -06:00
|
|
|
let sess = build_session(sopts, input_file_path, descriptions, cstore.clone());
|
2015-02-25 05:44:44 -06:00
|
|
|
rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
|
2015-07-14 17:49:03 -05:00
|
|
|
let mut cfg = config::build_configuration(&sess);
|
|
|
|
target_features::add_configuration(&mut cfg, &sess);
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2016-01-20 18:19:20 -06:00
|
|
|
do_or_return!(callbacks.late_callback(&matches, &sess, &input, &odir, &ofile), Some(sess));
|
2014-12-17 08:13:38 -06:00
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
// It is somewhat unfortunate that this is hardwired in - this is forced by
|
|
|
|
// the fact that pretty_print_input requires the session by value.
|
|
|
|
let pretty = callbacks.parse_pretty(&sess, &matches);
|
2016-04-17 17:30:55 -05:00
|
|
|
if let Some((ppm, opt_uii)) = pretty {
|
|
|
|
pretty::pretty_print_input(sess, &cstore, cfg, &input, ppm, opt_uii, ofile);
|
|
|
|
return (Ok(()), None);
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
2014-12-09 11:25:37 -06:00
|
|
|
let plugins = sess.opts.debugging_opts.extra_plugins.clone();
|
2015-01-30 02:44:27 -06:00
|
|
|
let control = callbacks.build_controller(&sess);
|
2016-01-20 18:19:20 -06:00
|
|
|
(driver::compile_input(&sess, &cstore, cfg, &input, &odir, &ofile,
|
2016-01-05 16:38:11 -06:00
|
|
|
Some(plugins), &control),
|
2016-01-20 18:19:20 -06:00
|
|
|
Some(sess))
|
2015-01-10 20:03:34 -06:00
|
|
|
}
|
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
// Extract output directory and file from matches.
|
2015-02-26 23:00:43 -06:00
|
|
|
fn make_output(matches: &getopts::Matches) -> (Option<PathBuf>, Option<PathBuf>) {
|
2015-03-18 11:14:54 -05:00
|
|
|
let odir = matches.opt_str("out-dir").map(|o| PathBuf::from(&o));
|
|
|
|
let ofile = matches.opt_str("o").map(|o| PathBuf::from(&o));
|
2015-01-30 02:44:27 -06:00
|
|
|
(odir, ofile)
|
|
|
|
}
|
2015-01-10 20:03:34 -06:00
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
// Extract input (string or file and optional path) from matches.
|
2015-02-26 23:00:43 -06:00
|
|
|
fn make_input(free_matches: &[String]) -> Option<(Input, Option<PathBuf>)> {
|
2015-01-30 02:44:27 -06:00
|
|
|
if free_matches.len() == 1 {
|
2015-02-20 13:08:14 -06:00
|
|
|
let ifile = &free_matches[0][..];
|
2015-01-30 02:44:27 -06:00
|
|
|
if ifile == "-" {
|
2015-03-11 17:24:14 -05:00
|
|
|
let mut src = String::new();
|
|
|
|
io::stdin().read_to_string(&mut src).unwrap();
|
2016-03-09 21:49:40 -06:00
|
|
|
Some((Input::Str { name: driver::anon_src(), input: src },
|
|
|
|
None))
|
2015-01-30 02:44:27 -06:00
|
|
|
} else {
|
2015-11-10 14:48:44 -06:00
|
|
|
Some((Input::File(PathBuf::from(ifile)),
|
|
|
|
Some(PathBuf::from(ifile))))
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
2015-01-10 20:03:34 -06:00
|
|
|
}
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
2015-01-10 20:03:34 -06:00
|
|
|
|
2015-02-02 18:40:52 -06:00
|
|
|
// Whether to stop or continue compilation.
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
2015-02-02 18:40:52 -06:00
|
|
|
pub enum Compilation {
|
|
|
|
Stop,
|
|
|
|
Continue,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Compilation {
|
|
|
|
pub fn and_then<F: FnOnce() -> Compilation>(self, next: F) -> Compilation {
|
|
|
|
match self {
|
|
|
|
Compilation::Stop => Compilation::Stop,
|
2015-11-10 14:48:44 -06:00
|
|
|
Compilation::Continue => next(),
|
2015-02-02 18:40:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
// A trait for customising the compilation process. Offers a number of hooks for
|
|
|
|
// executing custom code or customising input.
|
|
|
|
pub trait CompilerCalls<'a> {
|
|
|
|
// Hook for a callback early in the process of handling arguments. This will
|
|
|
|
// be called straight after options have been parsed but before anything
|
2015-02-02 18:40:52 -06:00
|
|
|
// else (e.g., selecting input and output).
|
|
|
|
fn early_callback(&mut self,
|
2015-07-16 04:51:59 -05:00
|
|
|
_: &getopts::Matches,
|
2016-02-08 14:43:01 -06:00
|
|
|
_: &config::Options,
|
2015-08-22 09:51:53 -05:00
|
|
|
_: &diagnostics::registry::Registry,
|
2015-12-30 21:50:06 -06:00
|
|
|
_: ErrorOutputType)
|
2015-07-14 18:38:24 -05:00
|
|
|
-> Compilation {
|
|
|
|
Compilation::Continue
|
|
|
|
}
|
2015-01-30 02:44:27 -06:00
|
|
|
|
|
|
|
// Hook for a callback late in the process of handling arguments. This will
|
|
|
|
// be called just before actual compilation starts (and before build_controller
|
2015-02-02 18:40:52 -06:00
|
|
|
// is called), after all arguments etc. have been completely handled.
|
2015-01-30 02:44:27 -06:00
|
|
|
fn late_callback(&mut self,
|
2015-07-16 04:51:59 -05:00
|
|
|
_: &getopts::Matches,
|
|
|
|
_: &Session,
|
|
|
|
_: &Input,
|
|
|
|
_: &Option<PathBuf>,
|
|
|
|
_: &Option<PathBuf>)
|
2015-07-14 18:38:24 -05:00
|
|
|
-> Compilation {
|
|
|
|
Compilation::Continue
|
|
|
|
}
|
2015-01-30 02:44:27 -06:00
|
|
|
|
|
|
|
// Called after we extract the input from the arguments. Gives the implementer
|
|
|
|
// an opportunity to change the inputs or to add some custom input handling.
|
|
|
|
// The default behaviour is to simply pass through the inputs.
|
2015-11-10 14:48:44 -06:00
|
|
|
fn some_input(&mut self,
|
|
|
|
input: Input,
|
|
|
|
input_path: Option<PathBuf>)
|
2015-02-26 23:00:43 -06:00
|
|
|
-> (Input, Option<PathBuf>) {
|
2015-01-30 02:44:27 -06:00
|
|
|
(input, input_path)
|
2015-01-10 20:03:34 -06:00
|
|
|
}
|
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
// Called after we extract the input from the arguments if there is no valid
|
|
|
|
// input. Gives the implementer an opportunity to supply alternate input (by
|
|
|
|
// returning a Some value) or to add custom behaviour for this error such as
|
|
|
|
// emitting error messages. Returning None will cause compilation to stop
|
|
|
|
// at this point.
|
|
|
|
fn no_input(&mut self,
|
2015-07-16 04:51:59 -05:00
|
|
|
_: &getopts::Matches,
|
|
|
|
_: &config::Options,
|
|
|
|
_: &Option<PathBuf>,
|
|
|
|
_: &Option<PathBuf>,
|
|
|
|
_: &diagnostics::registry::Registry)
|
2015-07-14 18:38:24 -05:00
|
|
|
-> Option<(Input, Option<PathBuf>)> {
|
|
|
|
None
|
|
|
|
}
|
2015-01-30 02:44:27 -06:00
|
|
|
|
|
|
|
// Parse pretty printing information from the arguments. The implementer can
|
|
|
|
// choose to ignore this (the default will return None) which will skip pretty
|
|
|
|
// printing. If you do want to pretty print, it is recommended to use the
|
|
|
|
// implementation of this method from RustcDefaultCalls.
|
|
|
|
// FIXME, this is a terrible bit of API. Parsing of pretty printing stuff
|
|
|
|
// should be done as part of the framework and the implementor should customise
|
|
|
|
// handling of it. However, that is not possible atm because pretty printing
|
|
|
|
// essentially goes off and takes another path through the compiler which
|
|
|
|
// means the session is either moved or not depending on what parse_pretty
|
|
|
|
// returns (we could fix this by cloning, but it's another hack). The proper
|
|
|
|
// solution is to handle pretty printing as if it were a compiler extension,
|
|
|
|
// extending CompileController to make this work (see for example the treatment
|
|
|
|
// of save-analysis in RustcDefaultCalls::build_controller).
|
|
|
|
fn parse_pretty(&mut self,
|
|
|
|
_sess: &Session,
|
|
|
|
_matches: &getopts::Matches)
|
|
|
|
-> Option<(PpMode, Option<UserIdentifiedItem>)> {
|
|
|
|
None
|
2015-01-10 20:03:34 -06:00
|
|
|
}
|
|
|
|
|
2015-11-10 14:48:44 -06:00
|
|
|
// Create a CompilController struct for controlling the behaviour of
|
|
|
|
// compilation.
|
2015-01-30 02:44:27 -06:00
|
|
|
fn build_controller(&mut self, &Session) -> CompileController<'a>;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CompilerCalls instance for a regular rustc build.
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-01-30 02:44:27 -06:00
|
|
|
pub struct RustcDefaultCalls;
|
|
|
|
|
2016-02-08 14:53:05 -06:00
|
|
|
fn handle_explain(code: &str,
|
|
|
|
descriptions: &diagnostics::registry::Registry,
|
|
|
|
output: ErrorOutputType) {
|
2016-03-19 23:35:46 -05:00
|
|
|
let normalised = if code.starts_with("E") {
|
2016-02-08 14:53:05 -06:00
|
|
|
code.to_string()
|
2016-03-19 23:35:46 -05:00
|
|
|
} else {
|
|
|
|
format!("E{0:0>4}", code)
|
2016-02-08 14:53:05 -06:00
|
|
|
};
|
|
|
|
match descriptions.find_description(&normalised) {
|
|
|
|
Some(ref description) => {
|
|
|
|
// Slice off the leading newline and print.
|
|
|
|
print!("{}", &description[1..]);
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
early_error(output, &format!("no extended information for {}", code));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-08 15:38:35 -06:00
|
|
|
fn check_cfg(sopts: &config::Options,
|
|
|
|
output: ErrorOutputType) {
|
2016-02-08 17:47:03 -06:00
|
|
|
let mut emitter: Box<Emitter> = match output {
|
|
|
|
config::ErrorOutputType::HumanReadable(color_config) => {
|
|
|
|
Box::new(errors::emitter::BasicEmitter::stderr(color_config))
|
|
|
|
}
|
|
|
|
config::ErrorOutputType::Json => Box::new(errors::json::JsonEmitter::basic()),
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut saw_invalid_predicate = false;
|
|
|
|
for item in sopts.cfg.iter() {
|
2016-02-08 15:38:35 -06:00
|
|
|
match item.node {
|
2016-02-11 05:35:47 -06:00
|
|
|
ast::MetaItemKind::List(ref pred, _) => {
|
2016-02-08 17:47:03 -06:00
|
|
|
saw_invalid_predicate = true;
|
|
|
|
emitter.emit(None,
|
|
|
|
&format!("invalid predicate in --cfg command line argument: `{}`",
|
|
|
|
pred),
|
|
|
|
None,
|
|
|
|
errors::Level::Fatal);
|
|
|
|
}
|
|
|
|
_ => {},
|
2016-02-08 15:38:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-08 17:47:03 -06:00
|
|
|
if saw_invalid_predicate {
|
|
|
|
panic!(errors::FatalError);
|
2016-02-08 15:38:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
impl<'a> CompilerCalls<'a> for RustcDefaultCalls {
|
|
|
|
fn early_callback(&mut self,
|
|
|
|
matches: &getopts::Matches,
|
2016-02-08 15:38:35 -06:00
|
|
|
sopts: &config::Options,
|
2015-08-22 09:51:53 -05:00
|
|
|
descriptions: &diagnostics::registry::Registry,
|
2015-12-30 21:50:06 -06:00
|
|
|
output: ErrorOutputType)
|
2015-02-02 18:40:52 -06:00
|
|
|
-> Compilation {
|
2016-02-08 14:53:05 -06:00
|
|
|
if let Some(ref code) = matches.opt_str("explain") {
|
|
|
|
handle_explain(code, descriptions, output);
|
|
|
|
return Compilation::Stop;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
2016-02-08 15:38:35 -06:00
|
|
|
check_cfg(sopts, output);
|
2016-02-08 14:53:05 -06:00
|
|
|
Compilation::Continue
|
2015-01-10 20:03:34 -06:00
|
|
|
}
|
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
fn no_input(&mut self,
|
|
|
|
matches: &getopts::Matches,
|
|
|
|
sopts: &config::Options,
|
2015-02-26 23:00:43 -06:00
|
|
|
odir: &Option<PathBuf>,
|
|
|
|
ofile: &Option<PathBuf>,
|
2015-01-30 02:44:27 -06:00
|
|
|
descriptions: &diagnostics::registry::Registry)
|
2015-02-26 23:00:43 -06:00
|
|
|
-> Option<(Input, Option<PathBuf>)> {
|
2015-01-30 02:44:27 -06:00
|
|
|
match matches.free.len() {
|
|
|
|
0 => {
|
|
|
|
if sopts.describe_lints {
|
|
|
|
let mut ls = lint::LintStore::new();
|
2015-02-25 05:44:44 -06:00
|
|
|
rustc_lint::register_builtins(&mut ls, None);
|
2015-01-30 02:44:27 -06:00
|
|
|
describe_lints(&ls, false);
|
|
|
|
return None;
|
|
|
|
}
|
2015-11-21 13:39:05 -06:00
|
|
|
let cstore = Rc::new(CStore::new(token::get_ident_interner()));
|
2015-12-11 15:07:11 -06:00
|
|
|
let sess = build_session(sopts.clone(), None, descriptions.clone(),
|
|
|
|
cstore.clone());
|
2015-02-25 05:44:44 -06:00
|
|
|
rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
|
2015-02-02 18:40:52 -06:00
|
|
|
let should_stop = RustcDefaultCalls::print_crate_info(&sess, None, odir, ofile);
|
|
|
|
if should_stop == Compilation::Stop {
|
2015-01-30 02:44:27 -06:00
|
|
|
return None;
|
|
|
|
}
|
2016-01-06 14:23:01 -06:00
|
|
|
early_error(sopts.error_format, "no input filename given");
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
1 => panic!("make_input should have provided valid inputs"),
|
2016-01-06 14:23:01 -06:00
|
|
|
_ => early_error(sopts.error_format, "multiple input filenames provided"),
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_pretty(&mut self,
|
|
|
|
sess: &Session,
|
|
|
|
matches: &getopts::Matches)
|
|
|
|
-> Option<(PpMode, Option<UserIdentifiedItem>)> {
|
|
|
|
let pretty = if sess.opts.debugging_opts.unstable_options {
|
|
|
|
matches.opt_default("pretty", "normal").map(|a| {
|
|
|
|
// stable pretty-print variants only
|
|
|
|
pretty::parse_pretty(sess, &a, false)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
2015-01-10 20:03:34 -06:00
|
|
|
};
|
2015-01-30 02:44:27 -06:00
|
|
|
if pretty.is_none() && sess.unstable_options() {
|
2015-07-29 18:33:38 -05:00
|
|
|
matches.opt_str("unpretty").map(|a| {
|
2015-01-30 02:44:27 -06:00
|
|
|
// extended with unstable pretty-print variants
|
|
|
|
pretty::parse_pretty(sess, &a, true)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
pretty
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn late_callback(&mut self,
|
|
|
|
matches: &getopts::Matches,
|
|
|
|
sess: &Session,
|
|
|
|
input: &Input,
|
2015-02-26 23:00:43 -06:00
|
|
|
odir: &Option<PathBuf>,
|
|
|
|
ofile: &Option<PathBuf>)
|
2015-02-02 18:40:52 -06:00
|
|
|
-> Compilation {
|
2015-11-10 14:48:44 -06:00
|
|
|
RustcDefaultCalls::print_crate_info(sess, Some(input), odir, ofile)
|
|
|
|
.and_then(|| RustcDefaultCalls::list_metadata(sess, matches, input))
|
2015-01-10 20:03:34 -06:00
|
|
|
}
|
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
fn build_controller(&mut self, sess: &Session) -> CompileController<'a> {
|
|
|
|
let mut control = CompileController::basic();
|
|
|
|
|
2016-01-11 22:44:24 -06:00
|
|
|
if sess.opts.parse_only || sess.opts.debugging_opts.show_span.is_some() ||
|
2015-01-30 02:44:27 -06:00
|
|
|
sess.opts.debugging_opts.ast_json_noexpand {
|
2015-02-02 18:40:52 -06:00
|
|
|
control.after_parse.stop = Compilation::Stop;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if sess.opts.no_analysis || sess.opts.debugging_opts.ast_json {
|
2015-02-02 18:40:52 -06:00
|
|
|
control.after_write_deps.stop = Compilation::Stop;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if sess.opts.no_trans {
|
2015-02-02 18:40:52 -06:00
|
|
|
control.after_analysis.stop = Compilation::Stop;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
2015-09-30 12:08:37 -05:00
|
|
|
if !sess.opts.output_types.keys().any(|&i| i == OutputType::Exe) {
|
2015-02-02 18:40:52 -06:00
|
|
|
control.after_llvm.stop = Compilation::Stop;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if sess.opts.debugging_opts.save_analysis {
|
|
|
|
control.after_analysis.callback = box |state| {
|
2015-11-10 14:48:44 -06:00
|
|
|
time(state.session.time_passes(), "save analysis", || {
|
|
|
|
save::process_crate(state.tcx.unwrap(),
|
|
|
|
state.lcx.unwrap(),
|
|
|
|
state.krate.unwrap(),
|
|
|
|
state.analysis.unwrap(),
|
|
|
|
state.crate_name.unwrap(),
|
|
|
|
state.out_dir)
|
|
|
|
});
|
2015-01-30 02:44:27 -06:00
|
|
|
};
|
2016-01-27 14:49:18 -06:00
|
|
|
control.after_analysis.run_callback_on_error = true;
|
2015-01-30 02:44:27 -06:00
|
|
|
control.make_glob_map = resolve::MakeGlobMap::Yes;
|
|
|
|
}
|
|
|
|
|
|
|
|
control
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
2015-01-30 02:44:27 -06:00
|
|
|
impl RustcDefaultCalls {
|
2015-11-10 14:48:44 -06:00
|
|
|
pub fn list_metadata(sess: &Session, matches: &getopts::Matches, input: &Input) -> Compilation {
|
2015-01-30 02:44:27 -06:00
|
|
|
let r = matches.opt_strs("Z");
|
|
|
|
if r.contains(&("ls".to_string())) {
|
|
|
|
match input {
|
|
|
|
&Input::File(ref ifile) => {
|
|
|
|
let path = &(*ifile);
|
2015-02-26 23:00:43 -06:00
|
|
|
let mut v = Vec::new();
|
2015-11-24 16:00:26 -06:00
|
|
|
loader::list_file_metadata(&sess.target.target, path, &mut v)
|
2015-11-10 14:48:44 -06:00
|
|
|
.unwrap();
|
2015-02-26 23:00:43 -06:00
|
|
|
println!("{}", String::from_utf8(v).unwrap());
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
2016-03-09 21:49:40 -06:00
|
|
|
&Input::Str { .. } => {
|
2015-12-30 21:50:06 -06:00
|
|
|
early_error(ErrorOutputType::default(), "cannot list metadata for stdin");
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
}
|
2015-02-02 18:40:52 -06:00
|
|
|
return Compilation::Stop;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
2015-02-02 18:40:52 -06:00
|
|
|
return Compilation::Continue;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn print_crate_info(sess: &Session,
|
|
|
|
input: Option<&Input>,
|
2015-02-26 23:00:43 -06:00
|
|
|
odir: &Option<PathBuf>,
|
|
|
|
ofile: &Option<PathBuf>)
|
2015-02-02 18:40:52 -06:00
|
|
|
-> Compilation {
|
2015-03-24 18:53:34 -05:00
|
|
|
if sess.opts.prints.is_empty() {
|
2015-02-02 18:40:52 -06:00
|
|
|
return Compilation::Continue;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
|
2016-02-19 07:43:13 -06:00
|
|
|
let attrs = match input {
|
|
|
|
None => None,
|
|
|
|
Some(input) => {
|
|
|
|
let result = parse_crate_attrs(sess, input);
|
|
|
|
match result {
|
|
|
|
Ok(attrs) => Some(attrs),
|
|
|
|
Err(mut parse_error) => {
|
|
|
|
parse_error.emit();
|
|
|
|
return Compilation::Stop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2015-01-30 02:44:27 -06:00
|
|
|
for req in &sess.opts.prints {
|
|
|
|
match *req {
|
2016-02-12 09:11:58 -06:00
|
|
|
PrintRequest::TargetList => {
|
|
|
|
let mut targets = rustc_back::target::TARGETS.to_vec();
|
|
|
|
targets.sort();
|
|
|
|
println!("{}", targets.join("\n"));
|
|
|
|
},
|
2015-01-30 02:44:27 -06:00
|
|
|
PrintRequest::Sysroot => println!("{}", sess.sysroot().display()),
|
|
|
|
PrintRequest::FileNames |
|
|
|
|
PrintRequest::CrateName => {
|
|
|
|
let input = match input {
|
|
|
|
Some(input) => input,
|
2015-12-30 21:50:06 -06:00
|
|
|
None => early_error(ErrorOutputType::default(), "no input file provided"),
|
2015-01-30 02:44:27 -06:00
|
|
|
};
|
|
|
|
let attrs = attrs.as_ref().unwrap();
|
2015-11-10 14:48:44 -06:00
|
|
|
let t_outputs = driver::build_output_filenames(input, odir, ofile, attrs, sess);
|
|
|
|
let id = link::find_crate_name(Some(sess), attrs, input);
|
2015-01-30 02:44:27 -06:00
|
|
|
if *req == PrintRequest::CrateName {
|
|
|
|
println!("{}", id);
|
2015-11-10 14:48:44 -06:00
|
|
|
continue;
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
let crate_types = driver::collect_crate_types(sess, attrs);
|
|
|
|
for &style in &crate_types {
|
2015-11-10 14:48:44 -06:00
|
|
|
let fname = link::filename_for_input(sess, style, &id, &t_outputs);
|
|
|
|
println!("{}",
|
|
|
|
fname.file_name()
|
|
|
|
.unwrap()
|
|
|
|
.to_string_lossy());
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
}
|
2016-01-25 13:36:18 -06:00
|
|
|
PrintRequest::Cfg => {
|
2016-03-02 15:07:03 -06:00
|
|
|
let mut cfg = config::build_configuration(&sess);
|
|
|
|
target_features::add_configuration(&mut cfg, &sess);
|
2016-03-03 03:06:09 -06:00
|
|
|
|
|
|
|
let allow_unstable_cfg = match get_unstable_features_setting() {
|
|
|
|
UnstableFeatures::Disallow => false,
|
|
|
|
_ => true,
|
|
|
|
};
|
|
|
|
|
2016-03-02 15:07:03 -06:00
|
|
|
for cfg in cfg {
|
2016-03-03 03:06:09 -06:00
|
|
|
if !allow_unstable_cfg && GatedCfg::gate(&*cfg).is_some() {
|
|
|
|
continue;
|
|
|
|
}
|
2016-01-25 13:36:18 -06:00
|
|
|
match cfg.node {
|
2016-02-09 05:05:20 -06:00
|
|
|
ast::MetaItemKind::Word(ref word) => println!("{}", word),
|
|
|
|
ast::MetaItemKind::NameValue(ref name, ref value) => {
|
2016-01-25 13:36:18 -06:00
|
|
|
println!("{}=\"{}\"", name, match value.node {
|
2016-02-08 10:06:20 -06:00
|
|
|
ast::LitKind::Str(ref s, _) => s,
|
2016-01-25 13:36:18 -06:00
|
|
|
_ => continue,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// Right now there are not and should not be any
|
2016-02-09 05:05:20 -06:00
|
|
|
// MetaItemKind::List items in the configuration returned by
|
2016-01-25 13:36:18 -06:00
|
|
|
// `build_configuration`.
|
2016-02-09 05:05:20 -06:00
|
|
|
ast::MetaItemKind::List(..) => {
|
|
|
|
panic!("MetaItemKind::List encountered in default cfg")
|
2016-01-25 13:36:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-30 02:44:27 -06:00
|
|
|
}
|
|
|
|
}
|
2015-02-02 18:40:52 -06:00
|
|
|
return Compilation::Stop;
|
Preliminary feature staging
This partially implements the feature staging described in the
[release channel RFC][rc]. It does not yet fully conform to the RFC as
written, but does accomplish its goals sufficiently for the 1.0 alpha
release.
It has three primary user-visible effects:
* On the nightly channel, use of unstable APIs generates a warning.
* On the beta channel, use of unstable APIs generates a warning.
* On the beta channel, use of feature gates generates a warning.
Code that does not trigger these warnings is considered 'stable',
modulo pre-1.0 bugs.
Disabling the warnings for unstable APIs continues to be done in the
existing (i.e. old) style, via `#[allow(...)]`, not that specified in
the RFC. I deem this marginally acceptable since any code that must do
this is not using the stable dialect of Rust.
Use of feature gates is itself gated with the new 'unstable_features'
lint, on nightly set to 'allow', and on beta 'warn'.
The attribute scheme used here corresponds to an older version of the
RFC, with the `#[staged_api]` crate attribute toggling the staging
behavior of the stability attributes, but the user impact is only
in-tree so I'm not concerned about having to make design changes later
(and I may ultimately prefer the scheme here after all, with the
`#[staged_api]` crate attribute).
Since the Rust codebase itself makes use of unstable features the
compiler and build system to a midly elaborate dance to allow it to
bootstrap while disobeying these lints (which would otherwise be
errors because Rust builds with `-D warnings`).
This patch includes one significant hack that causes a
regression. Because the `format_args!` macro emits calls to unstable
APIs it would trigger the lint. I added a hack to the lint to make it
not trigger, but this in turn causes arguments to `println!` not to be
checked for feature gates. I don't presently understand macro
expansion well enough to fix. This is bug #20661.
Closes #16678
[rc]: https://github.com/rust-lang/rfcs/blob/master/text/0507-release-channels.md
2015-01-06 08:26:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-01 06:38:21 -05:00
|
|
|
/// Returns a version string such as "0.12.0-dev".
|
|
|
|
pub fn release_str() -> Option<&'static str> {
|
|
|
|
option_env!("CFG_RELEASE")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the full SHA1 hash of HEAD of the Git repo from which rustc was built.
|
|
|
|
pub fn commit_hash_str() -> Option<&'static str> {
|
|
|
|
option_env!("CFG_VER_HASH")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the "commit date" of HEAD of the Git repo from which rustc was built as a static string.
|
|
|
|
pub fn commit_date_str() -> Option<&'static str> {
|
|
|
|
option_env!("CFG_VER_DATE")
|
|
|
|
}
|
|
|
|
|
2015-06-26 12:32:27 -05:00
|
|
|
/// Prints version information
|
2014-12-15 18:03:39 -06:00
|
|
|
pub fn version(binary: &str, matches: &getopts::Matches) {
|
|
|
|
let verbose = matches.opt_present("verbose");
|
2014-05-18 22:37:07 -05:00
|
|
|
|
2015-11-10 14:48:44 -06:00
|
|
|
println!("{} {}",
|
|
|
|
binary,
|
|
|
|
option_env!("CFG_VERSION").unwrap_or("unknown version"));
|
2014-05-18 22:37:07 -05:00
|
|
|
if verbose {
|
2015-11-10 14:48:44 -06:00
|
|
|
fn unw(x: Option<&str>) -> &str {
|
|
|
|
x.unwrap_or("unknown")
|
|
|
|
}
|
2014-05-18 22:37:07 -05:00
|
|
|
println!("binary: {}", binary);
|
2014-10-01 06:38:21 -05:00
|
|
|
println!("commit-hash: {}", unw(commit_hash_str()));
|
|
|
|
println!("commit-date: {}", unw(commit_date_str()));
|
2014-11-15 19:30:33 -06:00
|
|
|
println!("host: {}", config::host_triple());
|
2014-10-01 06:38:21 -05:00
|
|
|
println!("release: {}", unw(release_str()));
|
2014-05-18 22:37:07 -05:00
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
2014-12-17 07:42:50 -06:00
|
|
|
fn usage(verbose: bool, include_unstable_options: bool) {
|
2014-12-15 18:03:39 -06:00
|
|
|
let groups = if verbose {
|
2014-12-17 07:42:50 -06:00
|
|
|
config::rustc_optgroups()
|
2014-12-15 18:03:39 -06:00
|
|
|
} else {
|
2014-12-17 07:42:50 -06:00
|
|
|
config::rustc_short_optgroups()
|
2014-12-15 18:03:39 -06:00
|
|
|
};
|
2015-11-10 14:48:44 -06:00
|
|
|
let groups: Vec<_> = groups.into_iter()
|
|
|
|
.filter(|x| include_unstable_options || x.is_stable())
|
|
|
|
.map(|x| x.opt_group)
|
|
|
|
.collect();
|
2014-05-12 17:39:07 -05:00
|
|
|
let message = format!("Usage: rustc [OPTIONS] INPUT");
|
2014-12-15 18:03:39 -06:00
|
|
|
let extra_help = if verbose {
|
|
|
|
""
|
|
|
|
} else {
|
|
|
|
"\n --help -v Print the full set of options rustc accepts"
|
|
|
|
};
|
2015-11-10 14:48:44 -06:00
|
|
|
println!("{}\nAdditional help:
|
2014-05-06 06:38:01 -05:00
|
|
|
-C help Print codegen options
|
2015-11-10 14:48:44 -06:00
|
|
|
-W help \
|
|
|
|
Print 'lint' options and default settings
|
|
|
|
-Z help Print internal \
|
|
|
|
options for debugging rustc{}\n",
|
|
|
|
getopts::usage(&message, &groups),
|
|
|
|
extra_help);
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
2014-06-18 19:26:14 -05:00
|
|
|
fn describe_lints(lint_store: &lint::LintStore, loaded_plugins: bool) {
|
2014-05-06 06:38:01 -05:00
|
|
|
println!("
|
|
|
|
Available lint options:
|
|
|
|
-W <foo> Warn about <foo>
|
2015-11-10 14:48:44 -06:00
|
|
|
-A <foo> \
|
|
|
|
Allow <foo>
|
2014-05-06 06:38:01 -05:00
|
|
|
-D <foo> Deny <foo>
|
2015-11-10 14:48:44 -06:00
|
|
|
-F <foo> Forbid <foo> \
|
|
|
|
(deny, and deny all overrides)
|
2014-06-10 16:03:19 -05:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
");
|
|
|
|
|
2014-10-29 20:21:37 -05:00
|
|
|
fn sort_lints(lints: Vec<(&'static Lint, bool)>) -> Vec<&'static Lint> {
|
|
|
|
let mut lints: Vec<_> = lints.into_iter().map(|(x, _)| x).collect();
|
|
|
|
lints.sort_by(|x: &&Lint, y: &&Lint| {
|
|
|
|
match x.default_level.cmp(&y.default_level) {
|
|
|
|
// The sort doesn't case-fold but it's doubtful we care.
|
|
|
|
Equal => x.name.cmp(y.name),
|
|
|
|
r => r,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
lints
|
|
|
|
}
|
|
|
|
|
|
|
|
fn sort_lint_groups(lints: Vec<(&'static str, Vec<lint::LintId>, bool)>)
|
2015-11-10 14:48:44 -06:00
|
|
|
-> Vec<(&'static str, Vec<lint::LintId>)> {
|
2014-10-29 20:21:37 -05:00
|
|
|
let mut lints: Vec<_> = lints.into_iter().map(|(x, y, _)| (x, y)).collect();
|
|
|
|
lints.sort_by(|&(x, _): &(&'static str, Vec<lint::LintId>),
|
|
|
|
&(y, _): &(&'static str, Vec<lint::LintId>)| {
|
|
|
|
x.cmp(y)
|
|
|
|
});
|
|
|
|
lints
|
|
|
|
}
|
|
|
|
|
2014-12-30 12:51:18 -06:00
|
|
|
let (plugin, builtin): (Vec<_>, _) = lint_store.get_lints()
|
2015-11-10 14:48:44 -06:00
|
|
|
.iter()
|
|
|
|
.cloned()
|
|
|
|
.partition(|&(_, p)| p);
|
2014-06-18 19:26:14 -05:00
|
|
|
let plugin = sort_lints(plugin);
|
2014-06-10 16:03:19 -05:00
|
|
|
let builtin = sort_lints(builtin);
|
|
|
|
|
2014-12-30 12:51:18 -06:00
|
|
|
let (plugin_groups, builtin_groups): (Vec<_>, _) = lint_store.get_lint_groups()
|
2015-11-10 14:48:44 -06:00
|
|
|
.iter()
|
|
|
|
.cloned()
|
|
|
|
.partition(|&(_, _, p)| p);
|
2014-07-20 22:27:59 -05:00
|
|
|
let plugin_groups = sort_lint_groups(plugin_groups);
|
|
|
|
let builtin_groups = sort_lint_groups(builtin_groups);
|
|
|
|
|
2015-11-10 14:48:44 -06:00
|
|
|
let max_name_len = plugin.iter()
|
|
|
|
.chain(&builtin)
|
|
|
|
.map(|&s| s.name.chars().count())
|
|
|
|
.max()
|
|
|
|
.unwrap_or(0);
|
2015-02-01 11:44:15 -06:00
|
|
|
let padded = |x: &str| {
|
2015-11-10 14:48:44 -06:00
|
|
|
let mut s = repeat(" ")
|
|
|
|
.take(max_name_len - x.chars().count())
|
|
|
|
.collect::<String>();
|
2014-10-15 01:05:01 -05:00
|
|
|
s.push_str(x);
|
|
|
|
s
|
2014-06-04 16:35:58 -05:00
|
|
|
};
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2014-06-10 16:03:19 -05:00
|
|
|
println!("Lint checks provided by rustc:\n");
|
2014-11-17 13:29:38 -06:00
|
|
|
println!(" {} {:7.7} {}", padded("name"), "default", "meaning");
|
|
|
|
println!(" {} {:7.7} {}", padded("----"), "-------", "-------");
|
2014-06-04 16:35:58 -05:00
|
|
|
|
2015-02-01 11:44:15 -06:00
|
|
|
let print_lints = |lints: Vec<&Lint>| {
|
2015-01-31 19:03:04 -06:00
|
|
|
for lint in lints {
|
2014-06-13 15:04:52 -05:00
|
|
|
let name = lint.name_lower().replace("_", "-");
|
2014-11-17 13:29:38 -06:00
|
|
|
println!(" {} {:7.7} {}",
|
2015-11-10 14:48:44 -06:00
|
|
|
padded(&name[..]),
|
|
|
|
lint.default_level.as_str(),
|
|
|
|
lint.desc);
|
2014-06-10 16:03:19 -05:00
|
|
|
}
|
|
|
|
println!("\n");
|
|
|
|
};
|
|
|
|
|
|
|
|
print_lints(builtin);
|
|
|
|
|
2014-07-20 22:27:59 -05:00
|
|
|
|
|
|
|
|
2016-01-06 00:42:19 -06:00
|
|
|
let max_name_len = max("warnings".len(),
|
|
|
|
plugin_groups.iter()
|
|
|
|
.chain(&builtin_groups)
|
|
|
|
.map(|&(s, _)| s.chars().count())
|
|
|
|
.max()
|
|
|
|
.unwrap_or(0));
|
2016-01-04 10:54:30 -06:00
|
|
|
|
2015-02-01 11:44:15 -06:00
|
|
|
let padded = |x: &str| {
|
2015-11-10 14:48:44 -06:00
|
|
|
let mut s = repeat(" ")
|
|
|
|
.take(max_name_len - x.chars().count())
|
|
|
|
.collect::<String>();
|
2014-10-15 01:05:01 -05:00
|
|
|
s.push_str(x);
|
|
|
|
s
|
2014-07-20 22:27:59 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
println!("Lint groups provided by rustc:\n");
|
|
|
|
println!(" {} {}", padded("name"), "sub-lints");
|
|
|
|
println!(" {} {}", padded("----"), "---------");
|
2016-01-04 10:54:30 -06:00
|
|
|
println!(" {} {}", padded("warnings"), "all built-in lints");
|
2014-07-20 22:27:59 -05:00
|
|
|
|
2015-02-01 11:44:15 -06:00
|
|
|
let print_lint_groups = |lints: Vec<(&'static str, Vec<lint::LintId>)>| {
|
2015-01-31 19:03:04 -06:00
|
|
|
for (name, to) in lints {
|
2015-03-05 20:23:57 -06:00
|
|
|
let name = name.to_lowercase().replace("_", "-");
|
2015-11-10 14:48:44 -06:00
|
|
|
let desc = to.into_iter()
|
|
|
|
.map(|x| x.as_str().replace("_", "-"))
|
|
|
|
.collect::<Vec<String>>()
|
|
|
|
.join(", ");
|
|
|
|
println!(" {} {}", padded(&name[..]), desc);
|
2014-06-18 19:26:14 -05:00
|
|
|
}
|
2014-07-20 22:27:59 -05:00
|
|
|
println!("\n");
|
|
|
|
};
|
|
|
|
|
|
|
|
print_lint_groups(builtin_groups);
|
|
|
|
|
|
|
|
match (loaded_plugins, plugin.len(), plugin_groups.len()) {
|
|
|
|
(false, 0, _) | (false, _, 0) => {
|
|
|
|
println!("Compiler plugins can provide additional lints and lint groups. To see a \
|
|
|
|
listing of these, re-run `rustc -W help` with a crate filename.");
|
|
|
|
}
|
2014-10-09 14:17:22 -05:00
|
|
|
(false, _, _) => panic!("didn't load lint plugins but got them anyway!"),
|
2014-07-20 22:27:59 -05:00
|
|
|
(true, 0, 0) => println!("This crate does not load any lint plugins or lint groups."),
|
|
|
|
(true, l, g) => {
|
|
|
|
if l > 0 {
|
|
|
|
println!("Lint checks provided by plugins loaded by this crate:\n");
|
|
|
|
print_lints(plugin);
|
|
|
|
}
|
|
|
|
if g > 0 {
|
|
|
|
println!("Lint groups provided by plugins loaded by this crate:\n");
|
|
|
|
print_lint_groups(plugin_groups);
|
|
|
|
}
|
2014-06-18 19:26:14 -05:00
|
|
|
}
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn describe_debug_flags() {
|
|
|
|
println!("\nAvailable debug options:\n");
|
2015-11-07 07:00:55 -06:00
|
|
|
print_flag_list("-Z", config::DB_OPTIONS);
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn describe_codegen_flags() {
|
|
|
|
println!("\nAvailable codegen options:\n");
|
2015-11-07 07:00:55 -06:00
|
|
|
print_flag_list("-C", config::CG_OPTIONS);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn print_flag_list<T>(cmdline_opt: &str,
|
|
|
|
flag_list: &[(&'static str, T, Option<&'static str>, &'static str)]) {
|
2015-11-10 14:48:44 -06:00
|
|
|
let max_len = flag_list.iter()
|
|
|
|
.map(|&(name, _, opt_type_desc, _)| {
|
|
|
|
let extra_len = match opt_type_desc {
|
|
|
|
Some(..) => 4,
|
|
|
|
None => 0,
|
|
|
|
};
|
|
|
|
name.chars().count() + extra_len
|
|
|
|
})
|
|
|
|
.max()
|
|
|
|
.unwrap_or(0);
|
2015-11-07 07:00:55 -06:00
|
|
|
|
|
|
|
for &(name, _, opt_type_desc, desc) in flag_list {
|
2014-11-15 07:51:22 -06:00
|
|
|
let (width, extra) = match opt_type_desc {
|
2015-11-07 07:00:55 -06:00
|
|
|
Some(..) => (max_len - 4, "=val"),
|
2015-11-10 14:48:44 -06:00
|
|
|
None => (max_len, ""),
|
2014-05-06 06:38:01 -05:00
|
|
|
};
|
2015-11-10 14:48:44 -06:00
|
|
|
println!(" {} {:>width$}{} -- {}",
|
|
|
|
cmdline_opt,
|
|
|
|
name.replace("_", "-"),
|
|
|
|
extra,
|
|
|
|
desc,
|
|
|
|
width = width);
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-08 23:00:52 -05:00
|
|
|
/// Process command line options. Emits messages as appropriate. If compilation
|
2016-02-20 00:03:54 -06:00
|
|
|
/// should continue, returns a getopts::Matches object parsed from args,
|
|
|
|
/// otherwise returns None.
|
|
|
|
///
|
|
|
|
/// The compiler's handling of options is a little complication as it ties into
|
|
|
|
/// our stability story, and it's even *more* complicated by historical
|
|
|
|
/// accidents. The current intention of each compiler option is to have one of
|
|
|
|
/// three modes:
|
|
|
|
///
|
|
|
|
/// 1. An option is stable and can be used everywhere.
|
|
|
|
/// 2. An option is unstable, but was historically allowed on the stable
|
|
|
|
/// channel.
|
|
|
|
/// 3. An option is unstable, and can only be used on nightly.
|
|
|
|
///
|
|
|
|
/// Like unstable library and language features, however, unstable options have
|
|
|
|
/// always required a form of "opt in" to indicate that you're using them. This
|
|
|
|
/// provides the easy ability to scan a code base to check to see if anything
|
|
|
|
/// unstable is being used. Currently, this "opt in" is the `-Z` "zed" flag.
|
|
|
|
///
|
|
|
|
/// All options behind `-Z` are considered unstable by default. Other top-level
|
|
|
|
/// options can also be considered unstable, and they were unlocked through the
|
|
|
|
/// `-Z unstable-options` flag. Note that `-Z` remains to be the root of
|
|
|
|
/// instability in both cases, though.
|
|
|
|
///
|
|
|
|
/// So with all that in mind, the comments below have some more detail about the
|
|
|
|
/// contortions done here to get things to work out correctly.
|
2016-03-19 22:37:13 -05:00
|
|
|
pub fn handle_options(args: &[String]) -> Option<getopts::Matches> {
|
2014-05-12 17:39:07 -05:00
|
|
|
// Throw away the first argument, the name of the binary
|
2016-03-19 22:37:13 -05:00
|
|
|
let args = &args[1..];
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2014-05-14 23:39:11 -05:00
|
|
|
if args.is_empty() {
|
2014-12-17 07:42:50 -06:00
|
|
|
// user did not write `-v` nor `-Z unstable-options`, so do not
|
|
|
|
// include that extra information.
|
|
|
|
usage(false, false);
|
2014-05-14 23:39:11 -05:00
|
|
|
return None;
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2016-02-20 00:03:54 -06:00
|
|
|
// Parse with *all* options defined in the compiler, we don't worry about
|
|
|
|
// option stability here we just want to parse as much as possible.
|
|
|
|
let all_groups: Vec<getopts::OptGroup> = config::rustc_optgroups()
|
|
|
|
.into_iter()
|
|
|
|
.map(|x| x.opt_group)
|
|
|
|
.collect();
|
|
|
|
let matches = match getopts::getopts(&args[..], &all_groups) {
|
|
|
|
Ok(m) => m,
|
|
|
|
Err(f) => early_error(ErrorOutputType::default(), &f.to_string()),
|
|
|
|
};
|
2015-03-11 03:42:00 -05:00
|
|
|
|
2016-02-20 00:03:54 -06:00
|
|
|
// For all options we just parsed, we check a few aspects:
|
|
|
|
//
|
|
|
|
// * If the option is stable, we're all good
|
|
|
|
// * If the option wasn't passed, we're all good
|
|
|
|
// * If `-Z unstable-options` wasn't passed (and we're not a -Z option
|
|
|
|
// ourselves), then we require the `-Z unstable-options` flag to unlock
|
|
|
|
// this option that was passed.
|
|
|
|
// * If we're a nightly compiler, then unstable options are now unlocked, so
|
|
|
|
// we're good to go.
|
|
|
|
// * Otherwise, if we're a truly unstable option then we generate an error
|
|
|
|
// (unstable option being used on stable)
|
|
|
|
// * If we're a historically stable-but-should-be-unstable option then we
|
|
|
|
// emit a warning that we're going to turn this into an error soon.
|
2016-03-15 03:09:29 -05:00
|
|
|
nightly_options::check_nightly_options(&matches, &config::rustc_optgroups());
|
2014-12-17 07:42:50 -06:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
if matches.opt_present("h") || matches.opt_present("help") {
|
2016-02-20 00:03:54 -06:00
|
|
|
// Only show unstable options in --help if we *really* accept unstable
|
|
|
|
// options, which catches the case where we got `-Z unstable-options` on
|
|
|
|
// the stable channel of Rust which was accidentally allowed
|
|
|
|
// historically.
|
2015-11-10 14:48:44 -06:00
|
|
|
usage(matches.opt_present("verbose"),
|
2016-03-15 03:09:29 -05:00
|
|
|
nightly_options::is_unstable_enabled(&matches));
|
2014-05-06 06:38:01 -05:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2014-06-04 16:35:58 -05:00
|
|
|
// Don't handle -W help here, because we might first load plugins.
|
2014-05-06 06:38:01 -05:00
|
|
|
let r = matches.opt_strs("Z");
|
2014-11-27 13:10:25 -06:00
|
|
|
if r.iter().any(|x| *x == "help") {
|
2014-05-06 06:38:01 -05:00
|
|
|
describe_debug_flags();
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let cg_flags = matches.opt_strs("C");
|
2014-11-27 13:10:25 -06:00
|
|
|
if cg_flags.iter().any(|x| *x == "help") {
|
2014-05-06 06:38:01 -05:00
|
|
|
describe_codegen_flags();
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2014-05-25 05:17:19 -05:00
|
|
|
if cg_flags.contains(&"passes=list".to_string()) {
|
2015-11-10 14:48:44 -06:00
|
|
|
unsafe {
|
|
|
|
::llvm::LLVMRustPrintPasses();
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2014-05-18 22:37:07 -05:00
|
|
|
if matches.opt_present("version") {
|
2014-12-15 18:03:39 -06:00
|
|
|
version("rustc", &matches);
|
|
|
|
return None;
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Some(matches)
|
|
|
|
}
|
|
|
|
|
2016-02-13 11:05:16 -06:00
|
|
|
fn parse_crate_attrs<'a>(sess: &'a Session, input: &Input) -> PResult<'a, Vec<ast::Attribute>> {
|
|
|
|
match *input {
|
2014-11-27 06:21:26 -06:00
|
|
|
Input::File(ref ifile) => {
|
2015-11-10 14:48:44 -06:00
|
|
|
parse::parse_crate_attrs_from_file(ifile, Vec::new(), &sess.parse_sess)
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
2016-03-09 21:49:40 -06:00
|
|
|
Input::Str { ref name, ref input } => {
|
|
|
|
parse::parse_crate_attrs_from_source_str(name.clone(),
|
|
|
|
input.clone(),
|
2015-11-10 14:48:44 -06:00
|
|
|
Vec::new(),
|
|
|
|
&sess.parse_sess)
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
2016-02-13 11:05:16 -06:00
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
2014-11-08 09:47:51 -06:00
|
|
|
/// Run a procedure which will detect panics in the compiler and print nicer
|
2014-05-06 06:38:01 -05:00
|
|
|
/// error messages rather than just failing the test.
|
|
|
|
///
|
|
|
|
/// The diagnostic emitter yielded to the procedure should be used for reporting
|
|
|
|
/// errors of the compiler.
|
2015-11-10 14:48:44 -06:00
|
|
|
pub fn monitor<F: FnOnce() + Send + 'static>(f: F) {
|
2015-03-25 19:06:52 -05:00
|
|
|
const STACK_SIZE: usize = 8 * 1024 * 1024; // 8MB
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2015-03-11 17:24:14 -05:00
|
|
|
struct Sink(Arc<Mutex<Vec<u8>>>);
|
|
|
|
impl Write for Sink {
|
|
|
|
fn write(&mut self, data: &[u8]) -> io::Result<usize> {
|
|
|
|
Write::write(&mut *self.0.lock().unwrap(), data)
|
|
|
|
}
|
2015-11-10 14:48:44 -06:00
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2015-03-11 17:24:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let data = Arc::new(Mutex::new(Vec::new()));
|
|
|
|
let err = Sink(data.clone());
|
2014-06-16 18:17:59 -05:00
|
|
|
|
2014-12-14 02:05:32 -06:00
|
|
|
let mut cfg = thread::Builder::new().name("rustc".to_string());
|
2014-05-06 06:38:01 -05:00
|
|
|
|
|
|
|
// FIXME: Hacks on hacks. If the env is trying to override the stack size
|
|
|
|
// then *don't* set it explicitly.
|
2015-02-11 13:47:53 -06:00
|
|
|
if env::var_os("RUST_MIN_STACK").is_none() {
|
2014-12-06 20:34:37 -06:00
|
|
|
cfg = cfg.stack_size(STACK_SIZE);
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
2016-03-19 23:46:50 -05:00
|
|
|
let thread = cfg.spawn(move || {
|
|
|
|
io::set_panic(box err);
|
|
|
|
f()
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Err(value) = thread.unwrap().join() {
|
|
|
|
// Thread panicked without emitting a fatal diagnostic
|
|
|
|
if !value.is::<errors::FatalError>() {
|
|
|
|
let mut emitter = errors::emitter::BasicEmitter::stderr(errors::ColorConfig::Auto);
|
|
|
|
|
|
|
|
// a .span_bug or .bug call has already printed what
|
|
|
|
// it wants to print.
|
|
|
|
if !value.is::<errors::ExplicitBug>() {
|
|
|
|
emitter.emit(None, "unexpected panic", None, errors::Level::Bug);
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2016-03-19 23:46:50 -05:00
|
|
|
let xs = ["the compiler unexpectedly panicked. this is a bug.".to_string(),
|
|
|
|
format!("we would appreciate a bug report: {}", BUG_REPORT_URL)];
|
|
|
|
for note in &xs {
|
|
|
|
emitter.emit(None, ¬e[..], None, errors::Level::Note)
|
|
|
|
}
|
2016-03-28 07:41:55 -05:00
|
|
|
if match env::var_os("RUST_BACKTRACE") {
|
|
|
|
Some(val) => &val != "0",
|
|
|
|
None => false,
|
|
|
|
} {
|
2016-03-19 23:46:50 -05:00
|
|
|
emitter.emit(None,
|
|
|
|
"run with `RUST_BACKTRACE=1` for a backtrace",
|
|
|
|
None,
|
|
|
|
errors::Level::Note);
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
2016-03-19 23:46:50 -05:00
|
|
|
println!("{}", str::from_utf8(&data.lock().unwrap()).unwrap());
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
2016-03-19 23:46:50 -05:00
|
|
|
|
|
|
|
exit_on_err();
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
}
|
2014-11-15 19:30:33 -06:00
|
|
|
|
2016-01-27 14:49:18 -06:00
|
|
|
fn exit_on_err() -> ! {
|
|
|
|
// Panic so the process returns a failure code, but don't pollute the
|
|
|
|
// output with some unnecessary panic messages, we've already
|
|
|
|
// printed everything that we needed to.
|
|
|
|
io::set_panic(box io::sink());
|
|
|
|
panic!();
|
|
|
|
}
|
|
|
|
|
2015-01-16 17:54:58 -06:00
|
|
|
pub fn diagnostics_registry() -> diagnostics::registry::Registry {
|
|
|
|
use syntax::diagnostics::registry::Registry;
|
|
|
|
|
2015-04-30 17:24:39 -05:00
|
|
|
let mut all_errors = Vec::new();
|
2015-12-02 19:31:49 -06:00
|
|
|
all_errors.extend_from_slice(&rustc::DIAGNOSTICS);
|
|
|
|
all_errors.extend_from_slice(&rustc_typeck::DIAGNOSTICS);
|
|
|
|
all_errors.extend_from_slice(&rustc_borrowck::DIAGNOSTICS);
|
|
|
|
all_errors.extend_from_slice(&rustc_resolve::DIAGNOSTICS);
|
|
|
|
all_errors.extend_from_slice(&rustc_privacy::DIAGNOSTICS);
|
|
|
|
all_errors.extend_from_slice(&rustc_trans::DIAGNOSTICS);
|
2016-03-30 06:43:36 -05:00
|
|
|
all_errors.extend_from_slice(&rustc_const_eval::DIAGNOSTICS);
|
2015-01-16 17:54:58 -06:00
|
|
|
|
2016-02-08 16:42:39 -06:00
|
|
|
Registry::new(&all_errors)
|
2015-01-16 17:54:58 -06:00
|
|
|
}
|
|
|
|
|
2014-11-27 08:57:47 -06:00
|
|
|
pub fn main() {
|
2015-02-11 13:47:53 -06:00
|
|
|
let result = run(env::args().collect());
|
2015-06-10 21:33:04 -05:00
|
|
|
process::exit(result as i32);
|
2014-11-27 08:57:47 -06:00
|
|
|
}
|