]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/lib.rs
Revert "rustc_driver: Print stage info in --version --verbose"
[rust.git] / src / librustc_driver / lib.rs
1 // Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! The Rust compiler.
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
18 #![cfg_attr(stage0, feature(custom_attribute))]
19 #![crate_name = "rustc_driver"]
20 #![unstable(feature = "rustc_private")]
21 #![staged_api]
22 #![crate_type = "dylib"]
23 #![crate_type = "rlib"]
24 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
25       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26       html_root_url = "http://doc.rust-lang.org/nightly/")]
27
28 #![feature(box_syntax)]
29 #![feature(libc)]
30 #![feature(quote)]
31 #![feature(rustc_diagnostic_macros)]
32 #![feature(rustc_private)]
33 #![feature(set_stdio)]
34 #![feature(staged_api)]
35 #![feature(vec_push_all)]
36
37 extern crate arena;
38 extern crate flate;
39 extern crate getopts;
40 extern crate graphviz;
41 extern crate libc;
42 extern crate rustc;
43 extern crate rustc_back;
44 extern crate rustc_borrowck;
45 extern crate rustc_lint;
46 extern crate rustc_privacy;
47 extern crate rustc_resolve;
48 extern crate rustc_trans;
49 extern crate rustc_typeck;
50 extern crate serialize;
51 extern crate rustc_llvm as llvm;
52 #[macro_use] extern crate log;
53 #[macro_use] extern crate syntax;
54
55 pub use syntax::diagnostic;
56
57 use driver::CompileController;
58 use pretty::{PpMode, UserIdentifiedItem};
59
60 use rustc_resolve as resolve;
61 use rustc_trans::back::link;
62 use rustc_trans::save;
63 use rustc::session::{config, Session, build_session};
64 use rustc::session::config::{Input, PrintRequest};
65 use rustc::lint::Lint;
66 use rustc::lint;
67 use rustc::metadata;
68 use rustc::util::common::time;
69
70 use std::cmp::Ordering::Equal;
71 use std::env;
72 use std::io::{self, Read, Write};
73 use std::iter::repeat;
74 use std::path::PathBuf;
75 use std::process;
76 use std::str;
77 use std::sync::{Arc, Mutex};
78 use std::thread;
79
80 use rustc::session::early_error;
81
82 use syntax::ast;
83 use syntax::parse;
84 use syntax::diagnostic::Emitter;
85 use syntax::diagnostics;
86
87 #[cfg(test)]
88 pub mod test;
89
90 pub mod driver;
91 pub mod pretty;
92
93
94 const BUG_REPORT_URL: &'static str =
95     "https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports";
96
97
98 pub fn run(args: Vec<String>) -> isize {
99     monitor(move || run_compiler(&args, &mut RustcDefaultCalls));
100     0
101 }
102
103 // Parse args and run the compiler. This is the primary entry point for rustc.
104 // See comments on CompilerCalls below for details about the callbacks argument.
105 pub fn run_compiler<'a>(args: &[String],
106                         callbacks: &mut CompilerCalls<'a>) {
107     macro_rules! do_or_return {($expr: expr) => {
108         match $expr {
109             Compilation::Stop => return,
110             Compilation::Continue => {}
111         }
112     }}
113
114     let matches = match handle_options(args.to_vec()) {
115         Some(matches) => matches,
116         None => return
117     };
118
119     let descriptions = diagnostics_registry();
120
121     do_or_return!(callbacks.early_callback(&matches, &descriptions));
122
123     let sopts = config::build_session_options(&matches);
124
125     let (odir, ofile) = make_output(&matches);
126     let (input, input_file_path) = match make_input(&matches.free) {
127         Some((input, input_file_path)) => callbacks.some_input(input, input_file_path),
128         None => match callbacks.no_input(&matches, &sopts, &odir, &ofile, &descriptions) {
129             Some((input, input_file_path)) => (input, input_file_path),
130             None => return
131         }
132     };
133
134     let mut sess = build_session(sopts, input_file_path, descriptions);
135     rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
136     if sess.unstable_options() {
137         sess.opts.show_span = matches.opt_str("show-span");
138     }
139     let cfg = config::build_configuration(&sess);
140
141     do_or_return!(callbacks.late_callback(&matches, &sess, &input, &odir, &ofile));
142
143     // It is somewhat unfortunate that this is hardwired in - this is forced by
144     // the fact that pretty_print_input requires the session by value.
145     let pretty = callbacks.parse_pretty(&sess, &matches);
146     match pretty {
147         Some((ppm, opt_uii)) => {
148             pretty::pretty_print_input(sess, cfg, &input, ppm, opt_uii, ofile);
149             return;
150         }
151         None => {/* continue */ }
152     }
153
154     let plugins = sess.opts.debugging_opts.extra_plugins.clone();
155     let control = callbacks.build_controller(&sess);
156     driver::compile_input(sess, cfg, &input, &odir, &ofile, Some(plugins), control);
157 }
158
159 // Extract output directory and file from matches.
160 fn make_output(matches: &getopts::Matches) -> (Option<PathBuf>, Option<PathBuf>) {
161     let odir = matches.opt_str("out-dir").map(|o| PathBuf::from(&o));
162     let ofile = matches.opt_str("o").map(|o| PathBuf::from(&o));
163     (odir, ofile)
164 }
165
166 // Extract input (string or file and optional path) from matches.
167 fn make_input(free_matches: &[String]) -> Option<(Input, Option<PathBuf>)> {
168     if free_matches.len() == 1 {
169         let ifile = &free_matches[0][..];
170         if ifile == "-" {
171             let mut src = String::new();
172             io::stdin().read_to_string(&mut src).unwrap();
173             Some((Input::Str(src), None))
174         } else {
175             Some((Input::File(PathBuf::from(ifile)), Some(PathBuf::from(ifile))))
176         }
177     } else {
178         None
179     }
180 }
181
182 // Whether to stop or continue compilation.
183 #[derive(Copy, Clone, Debug, Eq, PartialEq)]
184 pub enum Compilation {
185     Stop,
186     Continue,
187 }
188
189 impl Compilation {
190     pub fn and_then<F: FnOnce() -> Compilation>(self, next: F) -> Compilation {
191         match self {
192             Compilation::Stop => Compilation::Stop,
193             Compilation::Continue => next()
194         }
195     }
196 }
197
198 // A trait for customising the compilation process. Offers a number of hooks for
199 // executing custom code or customising input.
200 pub trait CompilerCalls<'a> {
201     // Hook for a callback early in the process of handling arguments. This will
202     // be called straight after options have been parsed but before anything
203     // else (e.g., selecting input and output).
204     fn early_callback(&mut self,
205                       &getopts::Matches,
206                       &diagnostics::registry::Registry)
207                       -> Compilation;
208
209     // Hook for a callback late in the process of handling arguments. This will
210     // be called just before actual compilation starts (and before build_controller
211     // is called), after all arguments etc. have been completely handled.
212     fn late_callback(&mut self,
213                      &getopts::Matches,
214                      &Session,
215                      &Input,
216                      &Option<PathBuf>,
217                      &Option<PathBuf>)
218                      -> Compilation;
219
220     // Called after we extract the input from the arguments. Gives the implementer
221     // an opportunity to change the inputs or to add some custom input handling.
222     // The default behaviour is to simply pass through the inputs.
223     fn some_input(&mut self, input: Input, input_path: Option<PathBuf>)
224                   -> (Input, Option<PathBuf>) {
225         (input, input_path)
226     }
227
228     // Called after we extract the input from the arguments if there is no valid
229     // input. Gives the implementer an opportunity to supply alternate input (by
230     // returning a Some value) or to add custom behaviour for this error such as
231     // emitting error messages. Returning None will cause compilation to stop
232     // at this point.
233     fn no_input(&mut self,
234                 &getopts::Matches,
235                 &config::Options,
236                 &Option<PathBuf>,
237                 &Option<PathBuf>,
238                 &diagnostics::registry::Registry)
239                 -> Option<(Input, Option<PathBuf>)>;
240
241     // Parse pretty printing information from the arguments. The implementer can
242     // choose to ignore this (the default will return None) which will skip pretty
243     // printing. If you do want to pretty print, it is recommended to use the
244     // implementation of this method from RustcDefaultCalls.
245     // FIXME, this is a terrible bit of API. Parsing of pretty printing stuff
246     // should be done as part of the framework and the implementor should customise
247     // handling of it. However, that is not possible atm because pretty printing
248     // essentially goes off and takes another path through the compiler which
249     // means the session is either moved or not depending on what parse_pretty
250     // returns (we could fix this by cloning, but it's another hack). The proper
251     // solution is to handle pretty printing as if it were a compiler extension,
252     // extending CompileController to make this work (see for example the treatment
253     // of save-analysis in RustcDefaultCalls::build_controller).
254     fn parse_pretty(&mut self,
255                     _sess: &Session,
256                     _matches: &getopts::Matches)
257                     -> Option<(PpMode, Option<UserIdentifiedItem>)> {
258         None
259     }
260
261     // Create a CompilController struct for controlling the behaviour of compilation.
262     fn build_controller(&mut self, &Session) -> CompileController<'a>;
263 }
264
265 // CompilerCalls instance for a regular rustc build.
266 #[derive(Copy, Clone)]
267 pub struct RustcDefaultCalls;
268
269 impl<'a> CompilerCalls<'a> for RustcDefaultCalls {
270     fn early_callback(&mut self,
271                       matches: &getopts::Matches,
272                       descriptions: &diagnostics::registry::Registry)
273                       -> Compilation {
274         match matches.opt_str("explain") {
275             Some(ref code) => {
276                 match descriptions.find_description(&code[..]) {
277                     Some(ref description) => {
278                         // Slice off the leading newline and print.
279                         print!("{}", &description[1..]);
280                     }
281                     None => {
282                         early_error(&format!("no extended information for {}", code));
283                     }
284                 }
285                 return Compilation::Stop;
286             },
287             None => ()
288         }
289
290         return Compilation::Continue;
291     }
292
293     fn no_input(&mut self,
294                 matches: &getopts::Matches,
295                 sopts: &config::Options,
296                 odir: &Option<PathBuf>,
297                 ofile: &Option<PathBuf>,
298                 descriptions: &diagnostics::registry::Registry)
299                 -> Option<(Input, Option<PathBuf>)> {
300         match matches.free.len() {
301             0 => {
302                 if sopts.describe_lints {
303                     let mut ls = lint::LintStore::new();
304                     rustc_lint::register_builtins(&mut ls, None);
305                     describe_lints(&ls, false);
306                     return None;
307                 }
308                 let sess = build_session(sopts.clone(), None, descriptions.clone());
309                 rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
310                 let should_stop = RustcDefaultCalls::print_crate_info(&sess, None, odir, ofile);
311                 if should_stop == Compilation::Stop {
312                     return None;
313                 }
314                 early_error("no input filename given");
315             }
316             1 => panic!("make_input should have provided valid inputs"),
317             _ => early_error("multiple input filenames provided")
318         }
319
320         None
321     }
322
323     fn parse_pretty(&mut self,
324                     sess: &Session,
325                     matches: &getopts::Matches)
326                     -> Option<(PpMode, Option<UserIdentifiedItem>)> {
327         let pretty = if sess.opts.debugging_opts.unstable_options {
328             matches.opt_default("pretty", "normal").map(|a| {
329                 // stable pretty-print variants only
330                 pretty::parse_pretty(sess, &a, false)
331             })
332         } else {
333             None
334         };
335         if pretty.is_none() && sess.unstable_options() {
336             matches.opt_str("xpretty").map(|a| {
337                 // extended with unstable pretty-print variants
338                 pretty::parse_pretty(sess, &a, true)
339             })
340         } else {
341             pretty
342         }
343     }
344
345     fn late_callback(&mut self,
346                      matches: &getopts::Matches,
347                      sess: &Session,
348                      input: &Input,
349                      odir: &Option<PathBuf>,
350                      ofile: &Option<PathBuf>)
351                      -> Compilation {
352         RustcDefaultCalls::print_crate_info(sess, Some(input), odir, ofile).and_then(
353             || RustcDefaultCalls::list_metadata(sess, matches, input))
354     }
355
356     fn build_controller(&mut self, sess: &Session) -> CompileController<'a> {
357         let mut control = CompileController::basic();
358
359         if sess.opts.parse_only ||
360            sess.opts.show_span.is_some() ||
361            sess.opts.debugging_opts.ast_json_noexpand {
362             control.after_parse.stop = Compilation::Stop;
363         }
364
365         if sess.opts.no_analysis || sess.opts.debugging_opts.ast_json {
366             control.after_write_deps.stop = Compilation::Stop;
367         }
368
369         if sess.opts.no_trans {
370             control.after_analysis.stop = Compilation::Stop;
371         }
372
373         if !sess.opts.output_types.iter().any(|&i| i == config::OutputTypeExe) {
374             control.after_llvm.stop = Compilation::Stop;
375         }
376
377         if sess.opts.debugging_opts.save_analysis {
378             control.after_analysis.callback = box |state| {
379                 time(state.session.time_passes(),
380                      "save analysis", (),
381                      |_| save::process_crate(state.tcx.unwrap(),
382                                              state.analysis.unwrap(),
383                                              state.out_dir));
384             };
385             control.make_glob_map = resolve::MakeGlobMap::Yes;
386         }
387
388         control
389     }
390 }
391
392 impl RustcDefaultCalls {
393     pub fn list_metadata(sess: &Session,
394                          matches: &getopts::Matches,
395                          input: &Input)
396                          -> Compilation {
397         let r = matches.opt_strs("Z");
398         if r.contains(&("ls".to_string())) {
399             match input {
400                 &Input::File(ref ifile) => {
401                     let path = &(*ifile);
402                     let mut v = Vec::new();
403                     metadata::loader::list_file_metadata(&sess.target.target,
404                                                          path,
405                                                          &mut v).unwrap();
406                     println!("{}", String::from_utf8(v).unwrap());
407                 }
408                 &Input::Str(_) => {
409                     early_error("cannot list metadata for stdin");
410                 }
411             }
412             return Compilation::Stop;
413         }
414
415         return Compilation::Continue;
416     }
417
418
419     fn print_crate_info(sess: &Session,
420                         input: Option<&Input>,
421                         odir: &Option<PathBuf>,
422                         ofile: &Option<PathBuf>)
423                         -> Compilation {
424         if sess.opts.prints.is_empty() {
425             return Compilation::Continue;
426         }
427
428         let attrs = input.map(|input| parse_crate_attrs(sess, input));
429         for req in &sess.opts.prints {
430             match *req {
431                 PrintRequest::Sysroot => println!("{}", sess.sysroot().display()),
432                 PrintRequest::FileNames |
433                 PrintRequest::CrateName => {
434                     let input = match input {
435                         Some(input) => input,
436                         None => early_error("no input file provided"),
437                     };
438                     let attrs = attrs.as_ref().unwrap();
439                     let t_outputs = driver::build_output_filenames(input,
440                                                                    odir,
441                                                                    ofile,
442                                                                    attrs,
443                                                                    sess);
444                     let id = link::find_crate_name(Some(sess),
445                                                    attrs,
446                                                    input);
447                     if *req == PrintRequest::CrateName {
448                         println!("{}", id);
449                         continue
450                     }
451                     let crate_types = driver::collect_crate_types(sess, attrs);
452                     let metadata = driver::collect_crate_metadata(sess, attrs);
453                     *sess.crate_metadata.borrow_mut() = metadata;
454                     for &style in &crate_types {
455                         let fname = link::filename_for_input(sess,
456                                                              style,
457                                                              &id,
458                                                              &t_outputs.with_extension(""));
459                         println!("{}", fname.file_name().unwrap()
460                                             .to_string_lossy());
461                     }
462                 }
463             }
464         }
465         return Compilation::Stop;
466     }
467 }
468
469 /// Returns a version string such as "0.12.0-dev".
470 pub fn release_str() -> Option<&'static str> {
471     option_env!("CFG_RELEASE")
472 }
473
474 /// Returns the full SHA1 hash of HEAD of the Git repo from which rustc was built.
475 pub fn commit_hash_str() -> Option<&'static str> {
476     option_env!("CFG_VER_HASH")
477 }
478
479 /// Returns the "commit date" of HEAD of the Git repo from which rustc was built as a static string.
480 pub fn commit_date_str() -> Option<&'static str> {
481     option_env!("CFG_VER_DATE")
482 }
483
484 /// Prints version information
485 pub fn version(binary: &str, matches: &getopts::Matches) {
486     let verbose = matches.opt_present("verbose");
487
488     println!("{} {}", binary, option_env!("CFG_VERSION").unwrap_or("unknown version"));
489     if verbose {
490         fn unw(x: Option<&str>) -> &str { x.unwrap_or("unknown") }
491         println!("binary: {}", binary);
492         println!("commit-hash: {}", unw(commit_hash_str()));
493         println!("commit-date: {}", unw(commit_date_str()));
494         println!("host: {}", config::host_triple());
495         println!("release: {}", unw(release_str()));
496     }
497 }
498
499 fn usage(verbose: bool, include_unstable_options: bool) {
500     let groups = if verbose {
501         config::rustc_optgroups()
502     } else {
503         config::rustc_short_optgroups()
504     };
505     let groups : Vec<_> = groups.into_iter()
506         .filter(|x| include_unstable_options || x.is_stable())
507         .map(|x|x.opt_group)
508         .collect();
509     let message = format!("Usage: rustc [OPTIONS] INPUT");
510     let extra_help = if verbose {
511         ""
512     } else {
513         "\n    --help -v           Print the full set of options rustc accepts"
514     };
515     println!("{}\n\
516 Additional help:
517     -C help             Print codegen options
518     -W help             Print 'lint' options and default settings
519     -Z help             Print internal options for debugging rustc{}\n",
520               getopts::usage(&message, &groups),
521               extra_help);
522 }
523
524 fn describe_lints(lint_store: &lint::LintStore, loaded_plugins: bool) {
525     println!("
526 Available lint options:
527     -W <foo>           Warn about <foo>
528     -A <foo>           Allow <foo>
529     -D <foo>           Deny <foo>
530     -F <foo>           Forbid <foo> (deny, and deny all overrides)
531
532 ");
533
534     fn sort_lints(lints: Vec<(&'static Lint, bool)>) -> Vec<&'static Lint> {
535         let mut lints: Vec<_> = lints.into_iter().map(|(x, _)| x).collect();
536         lints.sort_by(|x: &&Lint, y: &&Lint| {
537             match x.default_level.cmp(&y.default_level) {
538                 // The sort doesn't case-fold but it's doubtful we care.
539                 Equal => x.name.cmp(y.name),
540                 r => r,
541             }
542         });
543         lints
544     }
545
546     fn sort_lint_groups(lints: Vec<(&'static str, Vec<lint::LintId>, bool)>)
547                      -> Vec<(&'static str, Vec<lint::LintId>)> {
548         let mut lints: Vec<_> = lints.into_iter().map(|(x, y, _)| (x, y)).collect();
549         lints.sort_by(|&(x, _): &(&'static str, Vec<lint::LintId>),
550                        &(y, _): &(&'static str, Vec<lint::LintId>)| {
551             x.cmp(y)
552         });
553         lints
554     }
555
556     let (plugin, builtin): (Vec<_>, _) = lint_store.get_lints()
557         .iter().cloned().partition(|&(_, p)| p);
558     let plugin = sort_lints(plugin);
559     let builtin = sort_lints(builtin);
560
561     let (plugin_groups, builtin_groups): (Vec<_>, _) = lint_store.get_lint_groups()
562         .iter().cloned().partition(|&(_, _, p)| p);
563     let plugin_groups = sort_lint_groups(plugin_groups);
564     let builtin_groups = sort_lint_groups(builtin_groups);
565
566     let max_name_len = plugin.iter().chain(&builtin)
567         .map(|&s| s.name.chars().count())
568         .max().unwrap_or(0);
569     let padded = |x: &str| {
570         let mut s = repeat(" ").take(max_name_len - x.chars().count())
571                                .collect::<String>();
572         s.push_str(x);
573         s
574     };
575
576     println!("Lint checks provided by rustc:\n");
577     println!("    {}  {:7.7}  {}", padded("name"), "default", "meaning");
578     println!("    {}  {:7.7}  {}", padded("----"), "-------", "-------");
579
580     let print_lints = |lints: Vec<&Lint>| {
581         for lint in lints {
582             let name = lint.name_lower().replace("_", "-");
583             println!("    {}  {:7.7}  {}",
584                      padded(&name[..]), lint.default_level.as_str(), lint.desc);
585         }
586         println!("\n");
587     };
588
589     print_lints(builtin);
590
591
592
593     let max_name_len = plugin_groups.iter().chain(&builtin_groups)
594         .map(|&(s, _)| s.chars().count())
595         .max().unwrap_or(0);
596     let padded = |x: &str| {
597         let mut s = repeat(" ").take(max_name_len - x.chars().count())
598                                .collect::<String>();
599         s.push_str(x);
600         s
601     };
602
603     println!("Lint groups provided by rustc:\n");
604     println!("    {}  {}", padded("name"), "sub-lints");
605     println!("    {}  {}", padded("----"), "---------");
606
607     let print_lint_groups = |lints: Vec<(&'static str, Vec<lint::LintId>)>| {
608         for (name, to) in lints {
609             let name = name.to_lowercase().replace("_", "-");
610             let desc = to.into_iter().map(|x| x.as_str().replace("_", "-"))
611                          .collect::<Vec<String>>().connect(", ");
612             println!("    {}  {}",
613                      padded(&name[..]), desc);
614         }
615         println!("\n");
616     };
617
618     print_lint_groups(builtin_groups);
619
620     match (loaded_plugins, plugin.len(), plugin_groups.len()) {
621         (false, 0, _) | (false, _, 0) => {
622             println!("Compiler plugins can provide additional lints and lint groups. To see a \
623                       listing of these, re-run `rustc -W help` with a crate filename.");
624         }
625         (false, _, _) => panic!("didn't load lint plugins but got them anyway!"),
626         (true, 0, 0) => println!("This crate does not load any lint plugins or lint groups."),
627         (true, l, g) => {
628             if l > 0 {
629                 println!("Lint checks provided by plugins loaded by this crate:\n");
630                 print_lints(plugin);
631             }
632             if g > 0 {
633                 println!("Lint groups provided by plugins loaded by this crate:\n");
634                 print_lint_groups(plugin_groups);
635             }
636         }
637     }
638 }
639
640 fn describe_debug_flags() {
641     println!("\nAvailable debug options:\n");
642     for &(name, _, opt_type_desc, desc) in config::DB_OPTIONS {
643         let (width, extra) = match opt_type_desc {
644             Some(..) => (21, "=val"),
645             None => (25, "")
646         };
647         println!("    -Z {:>width$}{} -- {}", name.replace("_", "-"),
648                  extra, desc, width=width);
649     }
650 }
651
652 fn describe_codegen_flags() {
653     println!("\nAvailable codegen options:\n");
654     for &(name, _, opt_type_desc, desc) in config::CG_OPTIONS {
655         let (width, extra) = match opt_type_desc {
656             Some(..) => (21, "=val"),
657             None => (25, "")
658         };
659         println!("    -C {:>width$}{} -- {}", name.replace("_", "-"),
660                  extra, desc, width=width);
661     }
662 }
663
664 /// Process command line options. Emits messages as appropriate. If compilation
665 /// should continue, returns a getopts::Matches object parsed from args, otherwise
666 /// returns None.
667 pub fn handle_options(mut args: Vec<String>) -> Option<getopts::Matches> {
668     // Throw away the first argument, the name of the binary
669     let _binary = args.remove(0);
670
671     if args.is_empty() {
672         // user did not write `-v` nor `-Z unstable-options`, so do not
673         // include that extra information.
674         usage(false, false);
675         return None;
676     }
677
678     fn allows_unstable_options(matches: &getopts::Matches) -> bool {
679         let r = matches.opt_strs("Z");
680         r.iter().any(|x| *x == "unstable-options")
681     }
682
683     fn parse_all_options(args: &Vec<String>) -> getopts::Matches {
684         let all_groups : Vec<getopts::OptGroup>
685             = config::rustc_optgroups().into_iter().map(|x|x.opt_group).collect();
686         match getopts::getopts(&args[..], &all_groups) {
687             Ok(m) => {
688                 if !allows_unstable_options(&m) {
689                     // If -Z unstable-options was not specified, verify that
690                     // no unstable options were present.
691                     for opt in config::rustc_optgroups().into_iter().filter(|x| !x.is_stable()) {
692                         let opt_name = if !opt.opt_group.long_name.is_empty() {
693                             &opt.opt_group.long_name
694                         } else {
695                             &opt.opt_group.short_name
696                         };
697                         if m.opt_present(opt_name) {
698                             early_error(&format!("use of unstable option '{}' requires \
699                                                   -Z unstable-options", opt_name));
700                         }
701                     }
702                 }
703                 m
704             }
705             Err(f) => early_error(&f.to_string())
706         }
707     }
708
709     // As a speed optimization, first try to parse the command-line using just
710     // the stable options.
711     let matches = match getopts::getopts(&args[..], &config::optgroups()) {
712         Ok(ref m) if allows_unstable_options(m) => {
713             // If -Z unstable-options was specified, redo parsing with the
714             // unstable options to ensure that unstable options are defined
715             // in the returned getopts::Matches.
716             parse_all_options(&args)
717         }
718         Ok(m) => m,
719         Err(_) => {
720             // redo option parsing, including unstable options this time,
721             // in anticipation that the mishandled option was one of the
722             // unstable ones.
723             parse_all_options(&args)
724         }
725     };
726
727     if matches.opt_present("h") || matches.opt_present("help") {
728         usage(matches.opt_present("verbose"), allows_unstable_options(&matches));
729         return None;
730     }
731
732     // Don't handle -W help here, because we might first load plugins.
733
734     let r = matches.opt_strs("Z");
735     if r.iter().any(|x| *x == "help") {
736         describe_debug_flags();
737         return None;
738     }
739
740     let cg_flags = matches.opt_strs("C");
741     if cg_flags.iter().any(|x| *x == "help") {
742         describe_codegen_flags();
743         return None;
744     }
745
746     if cg_flags.contains(&"passes=list".to_string()) {
747         unsafe { ::llvm::LLVMRustPrintPasses(); }
748         return None;
749     }
750
751     if matches.opt_present("version") {
752         version("rustc", &matches);
753         return None;
754     }
755
756     Some(matches)
757 }
758
759 fn parse_crate_attrs(sess: &Session, input: &Input) ->
760                      Vec<ast::Attribute> {
761     let result = match *input {
762         Input::File(ref ifile) => {
763             parse::parse_crate_attrs_from_file(ifile,
764                                                Vec::new(),
765                                                &sess.parse_sess)
766         }
767         Input::Str(ref src) => {
768             parse::parse_crate_attrs_from_source_str(
769                 driver::anon_src().to_string(),
770                 src.to_string(),
771                 Vec::new(),
772                 &sess.parse_sess)
773         }
774     };
775     result.into_iter().collect()
776 }
777
778 /// Run a procedure which will detect panics in the compiler and print nicer
779 /// error messages rather than just failing the test.
780 ///
781 /// The diagnostic emitter yielded to the procedure should be used for reporting
782 /// errors of the compiler.
783 pub fn monitor<F:FnOnce()+Send+'static>(f: F) {
784     const STACK_SIZE: usize = 8 * 1024 * 1024; // 8MB
785
786     struct Sink(Arc<Mutex<Vec<u8>>>);
787     impl Write for Sink {
788         fn write(&mut self, data: &[u8]) -> io::Result<usize> {
789             Write::write(&mut *self.0.lock().unwrap(), data)
790         }
791         fn flush(&mut self) -> io::Result<()> { Ok(()) }
792     }
793
794     let data = Arc::new(Mutex::new(Vec::new()));
795     let err = Sink(data.clone());
796
797     let mut cfg = thread::Builder::new().name("rustc".to_string());
798
799     // FIXME: Hacks on hacks. If the env is trying to override the stack size
800     // then *don't* set it explicitly.
801     if env::var_os("RUST_MIN_STACK").is_none() {
802         cfg = cfg.stack_size(STACK_SIZE);
803     }
804
805     match cfg.spawn(move || { io::set_panic(box err); f() }).unwrap().join() {
806         Ok(()) => { /* fallthrough */ }
807         Err(value) => {
808             // Thread panicked without emitting a fatal diagnostic
809             if !value.is::<diagnostic::FatalError>() {
810                 let mut emitter = diagnostic::EmitterWriter::stderr(diagnostic::Auto, None);
811
812                 // a .span_bug or .bug call has already printed what
813                 // it wants to print.
814                 if !value.is::<diagnostic::ExplicitBug>() {
815                     emitter.emit(
816                         None,
817                         "unexpected panic",
818                         None,
819                         diagnostic::Bug);
820                 }
821
822                 let xs = [
823                     "the compiler unexpectedly panicked. this is a bug.".to_string(),
824                     format!("we would appreciate a bug report: {}",
825                             BUG_REPORT_URL),
826                 ];
827                 for note in &xs {
828                     emitter.emit(None, &note[..], None, diagnostic::Note)
829                 }
830                 if let None = env::var_os("RUST_BACKTRACE") {
831                     emitter.emit(None, "run with `RUST_BACKTRACE=1` for a backtrace",
832                                  None, diagnostic::Note);
833                 }
834
835                 println!("{}", str::from_utf8(&data.lock().unwrap()).unwrap());
836             }
837
838             // Panic so the process returns a failure code, but don't pollute the
839             // output with some unnecessary panic messages, we've already
840             // printed everything that we needed to.
841             io::set_panic(box io::sink());
842             panic!();
843         }
844     }
845 }
846
847 pub fn diagnostics_registry() -> diagnostics::registry::Registry {
848     use syntax::diagnostics::registry::Registry;
849
850     let mut all_errors = Vec::new();
851     all_errors.push_all(&rustc::DIAGNOSTICS);
852     all_errors.push_all(&rustc_typeck::DIAGNOSTICS);
853     all_errors.push_all(&rustc_borrowck::DIAGNOSTICS);
854     all_errors.push_all(&rustc_resolve::DIAGNOSTICS);
855
856     Registry::new(&*all_errors)
857 }
858
859 pub fn main() {
860     let result = run(env::args().collect());
861     process::exit(result as i32);
862 }