2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// 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.
|
|
|
|
|
2013-01-29 17:16:07 -06:00
|
|
|
pub use syntax::diagnostic;
|
2012-11-28 18:20:41 -06:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
use back::link;
|
|
|
|
use driver::driver::{Input, FileInput, StrInput};
|
|
|
|
use driver::session::{Session, build_session};
|
2014-06-10 16:03:19 -05:00
|
|
|
use lint::Lint;
|
2014-06-01 17:58:06 -05:00
|
|
|
use lint;
|
2014-05-06 06:38:01 -05:00
|
|
|
use metadata;
|
|
|
|
|
|
|
|
use std::any::AnyRefExt;
|
|
|
|
use std::io;
|
|
|
|
use std::os;
|
|
|
|
use std::str;
|
|
|
|
use std::task::TaskBuilder;
|
|
|
|
|
|
|
|
use syntax::ast;
|
|
|
|
use syntax::parse;
|
|
|
|
use syntax::diagnostic::Emitter;
|
|
|
|
|
|
|
|
use getopts;
|
|
|
|
|
|
|
|
|
2013-01-29 17:16:07 -06:00
|
|
|
pub mod driver;
|
|
|
|
pub mod session;
|
2014-05-06 06:38:01 -05:00
|
|
|
pub mod config;
|
|
|
|
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
pub fn main_args(args: &[String]) -> int {
|
2014-05-06 06:38:01 -05:00
|
|
|
let owned_args = args.to_owned();
|
2014-06-06 12:27:49 -05:00
|
|
|
monitor(proc() run_compiler(owned_args.as_slice()));
|
2014-05-06 06:38:01 -05:00
|
|
|
0
|
|
|
|
}
|
|
|
|
|
|
|
|
static BUG_REPORT_URL: &'static str =
|
2014-05-21 21:55:39 -05:00
|
|
|
"http://doc.rust-lang.org/complement-bugreport.html";
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
fn run_compiler(args: &[String]) {
|
2014-05-06 06:38:01 -05:00
|
|
|
let matches = match handle_options(Vec::from_slice(args)) {
|
|
|
|
Some(matches) => matches,
|
|
|
|
None => return
|
|
|
|
};
|
2014-06-04 16:35:58 -05:00
|
|
|
let sopts = config::build_session_options(&matches);
|
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
let (input, input_file_path) = match matches.free.len() {
|
2014-06-10 16:03:19 -05:00
|
|
|
0u => {
|
|
|
|
if sopts.describe_lints {
|
|
|
|
let mut ls = lint::LintStore::new();
|
|
|
|
ls.register_builtin(None);
|
2014-06-18 19:26:14 -05:00
|
|
|
describe_lints(&ls, false);
|
2014-06-10 16:03:19 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
early_error("no input filename given");
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
1u => {
|
|
|
|
let ifile = matches.free.get(0).as_slice();
|
|
|
|
if ifile == "-" {
|
|
|
|
let contents = io::stdin().read_to_end().unwrap();
|
2014-05-09 20:45:36 -05:00
|
|
|
let src = str::from_utf8(contents.as_slice()).unwrap()
|
2014-05-25 05:17:19 -05:00
|
|
|
.to_string();
|
2014-05-06 06:38:01 -05:00
|
|
|
(StrInput(src), None)
|
|
|
|
} else {
|
|
|
|
(FileInput(Path::new(ifile)), Some(Path::new(ifile)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => early_error("multiple input filenames provided")
|
|
|
|
};
|
|
|
|
|
|
|
|
let sess = build_session(sopts, input_file_path);
|
|
|
|
let cfg = config::build_configuration(&sess);
|
|
|
|
let odir = matches.opt_str("out-dir").map(|o| Path::new(o));
|
|
|
|
let ofile = matches.opt_str("o").map(|o| Path::new(o));
|
|
|
|
|
|
|
|
let pretty = matches.opt_default("pretty", "normal").map(|a| {
|
2014-05-14 23:39:11 -05:00
|
|
|
parse_pretty(&sess, a.as_slice())
|
2014-05-06 06:38:01 -05:00
|
|
|
});
|
|
|
|
match pretty {
|
|
|
|
Some::<PpMode>(ppm) => {
|
|
|
|
driver::pretty_print_input(sess, cfg, &input, ppm, ofile);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
None::<PpMode> => {/* continue */ }
|
|
|
|
}
|
|
|
|
|
|
|
|
let r = matches.opt_strs("Z");
|
2014-05-25 05:17:19 -05:00
|
|
|
if r.contains(&("ls".to_string())) {
|
2014-05-06 06:38:01 -05:00
|
|
|
match input {
|
|
|
|
FileInput(ref ifile) => {
|
|
|
|
let mut stdout = io::stdout();
|
|
|
|
list_metadata(&sess, &(*ifile), &mut stdout).unwrap();
|
|
|
|
}
|
|
|
|
StrInput(_) => {
|
|
|
|
early_error("can not list metadata for stdin");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if print_crate_info(&sess, &input, &odir, &ofile) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
driver::compile_input(sess, cfg, &input, &odir, &ofile);
|
|
|
|
}
|
|
|
|
|
2014-05-12 17:39:07 -05:00
|
|
|
pub fn version(command: &str) {
|
2014-05-06 06:38:01 -05:00
|
|
|
let vers = match option_env!("CFG_VERSION") {
|
|
|
|
Some(vers) => vers,
|
|
|
|
None => "unknown version"
|
|
|
|
};
|
2014-05-12 17:39:07 -05:00
|
|
|
println!("{} {}", command, vers);
|
2014-05-06 06:38:01 -05:00
|
|
|
println!("host: {}", driver::host_triple());
|
|
|
|
}
|
|
|
|
|
2014-05-12 17:39:07 -05:00
|
|
|
fn usage() {
|
|
|
|
let message = format!("Usage: rustc [OPTIONS] INPUT");
|
2014-05-06 06:38:01 -05:00
|
|
|
println!("{}\n\
|
|
|
|
Additional help:
|
|
|
|
-C help Print codegen options
|
|
|
|
-W help Print 'lint' options and default settings
|
|
|
|
-Z help Print internal options for debugging rustc\n",
|
2014-05-16 12:45:16 -05:00
|
|
|
getopts::usage(message.as_slice(),
|
|
|
|
config::optgroups().as_slice()));
|
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>
|
|
|
|
-A <foo> Allow <foo>
|
|
|
|
-D <foo> Deny <foo>
|
|
|
|
-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-06-10 16:03:19 -05:00
|
|
|
fn sort_lints(lints: Vec<(&'static Lint, bool)>) -> Vec<&'static Lint> {
|
|
|
|
let mut lints: Vec<_> = lints.move_iter().map(|(x, _)| x).collect();
|
|
|
|
lints.sort_by(|x: &&Lint, y: &&Lint| {
|
|
|
|
match x.default_level.cmp(&y.default_level) {
|
2014-06-13 15:04:52 -05:00
|
|
|
// The sort doesn't case-fold but it's doubtful we care.
|
2014-06-10 16:03:19 -05:00
|
|
|
Equal => x.name.cmp(&y.name),
|
|
|
|
r => r,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
lints
|
|
|
|
}
|
2014-06-04 16:35:58 -05:00
|
|
|
|
2014-06-18 19:26:14 -05:00
|
|
|
let (plugin, builtin) = lint_store.get_lints().partitioned(|&(_, p)| p);
|
|
|
|
let plugin = sort_lints(plugin);
|
2014-06-10 16:03:19 -05:00
|
|
|
let builtin = sort_lints(builtin);
|
|
|
|
|
|
|
|
// FIXME (#7043): We should use the width in character cells rather than
|
|
|
|
// the number of codepoints.
|
2014-06-18 19:26:14 -05:00
|
|
|
let max_name_len = plugin.iter().chain(builtin.iter())
|
2014-06-04 16:35:58 -05:00
|
|
|
.map(|&s| s.name.char_len())
|
|
|
|
.max().unwrap_or(0);
|
|
|
|
let padded = |x: &str| {
|
2014-06-10 16:03:19 -05:00
|
|
|
" ".repeat(max_name_len - x.char_len()).append(x)
|
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-06-04 16:35:58 -05:00
|
|
|
println!(" {} {:7.7s} {}", padded("name"), "default", "meaning");
|
|
|
|
println!(" {} {:7.7s} {}", padded("----"), "-------", "-------");
|
|
|
|
|
2014-06-10 16:03:19 -05:00
|
|
|
let print_lints = |lints: Vec<&Lint>| {
|
|
|
|
for lint in lints.move_iter() {
|
2014-06-13 15:04:52 -05:00
|
|
|
let name = lint.name_lower().replace("_", "-");
|
2014-06-10 16:03:19 -05:00
|
|
|
println!(" {} {:7.7s} {}",
|
2014-06-17 19:41:50 -05:00
|
|
|
padded(name.as_slice()), lint.default_level.as_str(), lint.desc);
|
2014-06-10 16:03:19 -05:00
|
|
|
}
|
|
|
|
println!("\n");
|
|
|
|
};
|
|
|
|
|
|
|
|
print_lints(builtin);
|
|
|
|
|
2014-06-18 19:26:14 -05:00
|
|
|
match (loaded_plugins, plugin.len()) {
|
|
|
|
(false, 0) => {
|
|
|
|
println!("Compiler plugins can provide additional lints. To see a listing of these, \
|
|
|
|
re-run `rustc -W help` with a crate filename.");
|
|
|
|
}
|
|
|
|
(false, _) => fail!("didn't load lint plugins but got them anyway!"),
|
|
|
|
(true, 0) => println!("This crate does not load any lint plugins."),
|
|
|
|
(true, _) => {
|
|
|
|
println!("Lint checks provided by plugins loaded by this crate:\n");
|
|
|
|
print_lints(plugin);
|
|
|
|
}
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn describe_debug_flags() {
|
|
|
|
println!("\nAvailable debug options:\n");
|
|
|
|
let r = config::debugging_opts_map();
|
|
|
|
for tuple in r.iter() {
|
|
|
|
match *tuple {
|
|
|
|
(ref name, ref desc, _) => {
|
|
|
|
println!(" -Z {:>20s} -- {}", *name, *desc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn describe_codegen_flags() {
|
|
|
|
println!("\nAvailable codegen options:\n");
|
|
|
|
let mut cg = config::basic_codegen_options();
|
|
|
|
for &(name, parser, desc) in config::CG_OPTIONS.iter() {
|
|
|
|
// we invoke the parser function on `None` to see if this option needs
|
|
|
|
// an argument or not.
|
|
|
|
let (width, extra) = if parser(&mut cg, None) {
|
|
|
|
(25, "")
|
|
|
|
} else {
|
|
|
|
(21, "=val")
|
|
|
|
};
|
|
|
|
println!(" -C {:>width$s}{} -- {}", name.replace("_", "-"),
|
|
|
|
extra, desc, width=width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-08 23:00:52 -05:00
|
|
|
/// Process command line options. Emits messages as appropriate. If compilation
|
2014-05-06 06:38:01 -05:00
|
|
|
/// should continue, returns a getopts::Matches object parsed from args, otherwise
|
|
|
|
/// returns None.
|
2014-05-22 18:57:53 -05:00
|
|
|
pub fn handle_options(mut args: Vec<String>) -> Option<getopts::Matches> {
|
2014-05-12 17:39:07 -05:00
|
|
|
// Throw away the first argument, the name of the binary
|
|
|
|
let _binary = args.shift().unwrap();
|
2014-05-06 06:38:01 -05:00
|
|
|
|
2014-05-14 23:39:11 -05:00
|
|
|
if args.is_empty() {
|
|
|
|
usage();
|
|
|
|
return None;
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
|
|
|
|
let matches =
|
|
|
|
match getopts::getopts(args.as_slice(), config::optgroups().as_slice()) {
|
|
|
|
Ok(m) => m,
|
|
|
|
Err(f) => {
|
2014-06-13 20:11:09 -05:00
|
|
|
early_error(f.to_str().as_slice());
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if matches.opt_present("h") || matches.opt_present("help") {
|
2014-05-12 17:39:07 -05:00
|
|
|
usage();
|
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-05-14 23:39:11 -05:00
|
|
|
if r.iter().any(|x| x.as_slice() == "help") {
|
2014-05-06 06:38:01 -05:00
|
|
|
describe_debug_flags();
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let cg_flags = matches.opt_strs("C");
|
2014-05-14 23:39:11 -05:00
|
|
|
if cg_flags.iter().any(|x| x.as_slice() == "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()) {
|
2014-05-06 06:38:01 -05:00
|
|
|
unsafe { ::lib::llvm::llvm::LLVMRustPrintPasses(); }
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
if matches.opt_present("v") || matches.opt_present("version") {
|
2014-05-12 17:39:07 -05:00
|
|
|
version("rustc");
|
2014-05-06 06:38:01 -05:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(matches)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn print_crate_info(sess: &Session,
|
|
|
|
input: &Input,
|
|
|
|
odir: &Option<Path>,
|
|
|
|
ofile: &Option<Path>)
|
|
|
|
-> bool {
|
|
|
|
let (crate_id, crate_name, crate_file_name) = sess.opts.print_metas;
|
|
|
|
// these nasty nested conditions are to avoid doing extra work
|
|
|
|
if crate_id || crate_name || crate_file_name {
|
|
|
|
let attrs = parse_crate_attrs(sess, input);
|
2014-05-09 20:45:36 -05:00
|
|
|
let t_outputs = driver::build_output_filenames(input,
|
|
|
|
odir,
|
|
|
|
ofile,
|
|
|
|
attrs.as_slice(),
|
|
|
|
sess);
|
|
|
|
let id = link::find_crate_id(attrs.as_slice(),
|
|
|
|
t_outputs.out_filestem.as_slice());
|
2014-05-06 06:38:01 -05:00
|
|
|
|
|
|
|
if crate_id {
|
|
|
|
println!("{}", id.to_str());
|
|
|
|
}
|
|
|
|
if crate_name {
|
|
|
|
println!("{}", id.name);
|
|
|
|
}
|
|
|
|
if crate_file_name {
|
|
|
|
let crate_types = driver::collect_crate_types(sess, attrs.as_slice());
|
|
|
|
for &style in crate_types.iter() {
|
|
|
|
let fname = link::filename_for_input(sess, style, &id,
|
|
|
|
&t_outputs.with_extension(""));
|
|
|
|
println!("{}", fname.filename_display());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum PpMode {
|
|
|
|
PpmNormal,
|
|
|
|
PpmExpanded,
|
|
|
|
PpmTyped,
|
|
|
|
PpmIdentified,
|
2014-04-17 14:00:08 -05:00
|
|
|
PpmExpandedIdentified,
|
|
|
|
PpmFlowGraph(ast::NodeId),
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse_pretty(sess: &Session, name: &str) -> PpMode {
|
2014-04-17 14:00:08 -05:00
|
|
|
let mut split = name.splitn('=', 1);
|
|
|
|
let first = split.next().unwrap();
|
|
|
|
let opt_second = split.next();
|
|
|
|
match (opt_second, first) {
|
|
|
|
(None, "normal") => PpmNormal,
|
|
|
|
(None, "expanded") => PpmExpanded,
|
|
|
|
(None, "typed") => PpmTyped,
|
|
|
|
(None, "expanded,identified") => PpmExpandedIdentified,
|
|
|
|
(None, "identified") => PpmIdentified,
|
2014-05-21 07:21:11 -05:00
|
|
|
(arg, "flowgraph") => {
|
|
|
|
match arg.and_then(from_str) {
|
2014-04-17 14:00:08 -05:00
|
|
|
Some(id) => PpmFlowGraph(id),
|
2014-05-16 12:45:16 -05:00
|
|
|
None => {
|
|
|
|
sess.fatal(format!("`pretty flowgraph=<nodeid>` needs \
|
|
|
|
an integer <nodeid>; got {}",
|
|
|
|
arg.unwrap_or("nothing")).as_slice())
|
|
|
|
}
|
2014-04-17 14:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
_ => {
|
2014-04-17 14:00:08 -05:00
|
|
|
sess.fatal(format!(
|
|
|
|
"argument to `pretty` must be one of `normal`, \
|
|
|
|
`expanded`, `flowgraph=<nodeid>`, `typed`, `identified`, \
|
2014-05-16 12:45:16 -05:00
|
|
|
or `expanded,identified`; got {}", name).as_slice());
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_crate_attrs(sess: &Session, input: &Input) ->
|
|
|
|
Vec<ast::Attribute> {
|
|
|
|
let result = match *input {
|
|
|
|
FileInput(ref ifile) => {
|
|
|
|
parse::parse_crate_attrs_from_file(ifile,
|
|
|
|
Vec::new(),
|
|
|
|
&sess.parse_sess)
|
|
|
|
}
|
|
|
|
StrInput(ref src) => {
|
|
|
|
parse::parse_crate_attrs_from_source_str(
|
2014-05-25 05:17:19 -05:00
|
|
|
driver::anon_src().to_string(),
|
|
|
|
src.to_string(),
|
2014-05-06 06:38:01 -05:00
|
|
|
Vec::new(),
|
|
|
|
&sess.parse_sess)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
result.move_iter().collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn early_error(msg: &str) -> ! {
|
2014-05-08 08:10:03 -05:00
|
|
|
let mut emitter = diagnostic::EmitterWriter::stderr(diagnostic::Auto);
|
2014-05-06 06:38:01 -05:00
|
|
|
emitter.emit(None, msg, diagnostic::Fatal);
|
|
|
|
fail!(diagnostic::FatalError);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list_metadata(sess: &Session, path: &Path,
|
|
|
|
out: &mut io::Writer) -> io::IoResult<()> {
|
2014-06-11 02:48:17 -05:00
|
|
|
metadata::loader::list_file_metadata(sess.targ_cfg.os, path, out)
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Run a procedure which will detect failures in the compiler and print nicer
|
|
|
|
/// error messages rather than just failing the test.
|
|
|
|
///
|
|
|
|
/// The diagnostic emitter yielded to the procedure should be used for reporting
|
|
|
|
/// errors of the compiler.
|
|
|
|
fn monitor(f: proc():Send) {
|
|
|
|
// FIXME: This is a hack for newsched since it doesn't support split stacks.
|
|
|
|
// rustc needs a lot of stack! When optimizations are disabled, it needs
|
|
|
|
// even *more* stack than usual as well.
|
|
|
|
#[cfg(rtopt)]
|
|
|
|
static STACK_SIZE: uint = 6000000; // 6MB
|
|
|
|
#[cfg(not(rtopt))]
|
|
|
|
static STACK_SIZE: uint = 20000000; // 20MB
|
|
|
|
|
2014-06-16 18:17:59 -05:00
|
|
|
let (tx, rx) = channel();
|
|
|
|
let w = io::ChanWriter::new(tx);
|
|
|
|
let mut r = io::ChanReader::new(rx);
|
|
|
|
|
|
|
|
let mut task = TaskBuilder::new().named("rustc").stderr(box w);
|
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.
|
|
|
|
if os::getenv("RUST_MIN_STACK").is_none() {
|
2014-06-16 18:17:59 -05:00
|
|
|
task = task.stack_size(STACK_SIZE);
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
2014-06-16 18:17:59 -05:00
|
|
|
match task.try(f) {
|
2014-05-06 06:38:01 -05:00
|
|
|
Ok(()) => { /* fallthrough */ }
|
|
|
|
Err(value) => {
|
|
|
|
// Task failed without emitting a fatal diagnostic
|
|
|
|
if !value.is::<diagnostic::FatalError>() {
|
2014-05-08 08:10:03 -05:00
|
|
|
let mut emitter = diagnostic::EmitterWriter::stderr(diagnostic::Auto);
|
2014-05-06 06:38:01 -05:00
|
|
|
|
|
|
|
// a .span_bug or .bug call has already printed what
|
|
|
|
// it wants to print.
|
|
|
|
if !value.is::<diagnostic::ExplicitBug>() {
|
|
|
|
emitter.emit(
|
|
|
|
None,
|
|
|
|
"unexpected failure",
|
|
|
|
diagnostic::Bug);
|
|
|
|
}
|
|
|
|
|
|
|
|
let xs = [
|
2014-05-25 05:10:11 -05:00
|
|
|
"the compiler hit an unexpected failure path. this is a bug.".to_string(),
|
2014-05-19 19:23:26 -05:00
|
|
|
format!("we would appreciate a bug report: {}",
|
|
|
|
BUG_REPORT_URL),
|
2014-05-25 05:10:11 -05:00
|
|
|
"run with `RUST_BACKTRACE=1` for a backtrace".to_string(),
|
2014-05-06 06:38:01 -05:00
|
|
|
];
|
|
|
|
for note in xs.iter() {
|
2014-05-19 19:23:26 -05:00
|
|
|
emitter.emit(None, note.as_slice(), diagnostic::Note)
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
match r.read_to_str() {
|
|
|
|
Ok(s) => println!("{}", s),
|
2014-05-16 12:45:16 -05:00
|
|
|
Err(e) => {
|
|
|
|
emitter.emit(None,
|
|
|
|
format!("failed to read internal \
|
|
|
|
stderr: {}",
|
|
|
|
e).as_slice(),
|
|
|
|
diagnostic::Error)
|
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fail so the process returns a failure code, but don't pollute the
|
|
|
|
// output with some unnecessary failure messages, we've already
|
|
|
|
// printed everything that we needed to.
|
|
|
|
io::stdio::set_stderr(box io::util::NullWriter);
|
|
|
|
fail!();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|