]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/lib.rs
Prevent EPIPE causing ICEs in rustc and rustdoc
[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 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19       html_root_url = "https://doc.rust-lang.org/nightly/")]
20 #![deny(warnings)]
21
22 #![feature(box_syntax)]
23 #![cfg_attr(unix, feature(libc))]
24 #![feature(quote)]
25 #![feature(rustc_diagnostic_macros)]
26 #![feature(set_stdio)]
27 #![feature(rustc_stack_internals)]
28
29 extern crate arena;
30 extern crate getopts;
31 extern crate graphviz;
32 extern crate env_logger;
33 #[cfg(unix)]
34 extern crate libc;
35 extern crate rustc;
36 extern crate rustc_allocator;
37 extern crate rustc_back;
38 extern crate rustc_borrowck;
39 extern crate rustc_data_structures;
40 extern crate rustc_errors as errors;
41 extern crate rustc_passes;
42 extern crate rustc_lint;
43 extern crate rustc_plugin;
44 extern crate rustc_privacy;
45 extern crate rustc_incremental;
46 extern crate rustc_metadata;
47 extern crate rustc_mir;
48 extern crate rustc_resolve;
49 extern crate rustc_save_analysis;
50 extern crate rustc_traits;
51 extern crate rustc_trans_utils;
52 extern crate rustc_typeck;
53 extern crate serialize;
54 #[macro_use]
55 extern crate log;
56 extern crate syntax;
57 extern crate syntax_ext;
58 extern crate syntax_pos;
59
60 use driver::CompileController;
61 use pretty::{PpMode, UserIdentifiedItem};
62
63 use rustc_resolve as resolve;
64 use rustc_save_analysis as save;
65 use rustc_save_analysis::DumpHandler;
66 use rustc_data_structures::sync::Lrc;
67 use rustc_data_structures::OnDrop;
68 use rustc::session::{self, config, Session, build_session, CompileResult};
69 use rustc::session::CompileIncomplete;
70 use rustc::session::config::{Input, PrintRequest, ErrorOutputType};
71 use rustc::session::config::nightly_options;
72 use rustc::session::filesearch;
73 use rustc::session::{early_error, early_warn};
74 use rustc::lint::Lint;
75 use rustc::lint;
76 use rustc::middle::cstore::CrateStore;
77 use rustc_metadata::locator;
78 use rustc_metadata::cstore::CStore;
79 use rustc_metadata::dynamic_lib::DynamicLibrary;
80 use rustc::util::common::{time, ErrorReported};
81 use rustc_trans_utils::trans_crate::TransCrate;
82
83 use serialize::json::ToJson;
84
85 use std::any::Any;
86 use std::cmp::Ordering::Equal;
87 use std::cmp::max;
88 use std::default::Default;
89 use std::env::consts::{DLL_PREFIX, DLL_SUFFIX};
90 use std::env;
91 use std::ffi::OsString;
92 use std::io::{self, Read, Write};
93 use std::iter::repeat;
94 use std::mem;
95 use std::panic;
96 use std::path::{PathBuf, Path};
97 use std::process::{self, Command, Stdio};
98 use std::str;
99 use std::sync::atomic::{AtomicBool, ATOMIC_BOOL_INIT, Ordering};
100 use std::sync::{Once, ONCE_INIT};
101 use std::thread;
102
103 use syntax::ast;
104 use syntax::codemap::{CodeMap, FileLoader, RealFileLoader};
105 use syntax::feature_gate::{GatedCfg, UnstableFeatures};
106 use syntax::parse::{self, PResult};
107 use syntax_pos::{DUMMY_SP, MultiSpan, FileName};
108
109 #[cfg(test)]
110 mod test;
111
112 pub mod profile;
113 pub mod driver;
114 pub mod pretty;
115 mod derive_registrar;
116
117 pub mod target_features {
118     use syntax::ast;
119     use syntax::symbol::Symbol;
120     use rustc::session::Session;
121     use rustc_trans_utils::trans_crate::TransCrate;
122
123     /// Add `target_feature = "..."` cfgs for a variety of platform
124     /// specific features (SSE, NEON etc.).
125     ///
126     /// This is performed by checking whether a whitelisted set of
127     /// features is available on the target machine, by querying LLVM.
128     pub fn add_configuration(cfg: &mut ast::CrateConfig, sess: &Session, trans: &TransCrate) {
129         let tf = Symbol::intern("target_feature");
130
131         for feat in trans.target_features(sess) {
132             cfg.insert((tf, Some(feat)));
133         }
134
135         if sess.crt_static_feature() {
136             cfg.insert((tf, Some(Symbol::intern("crt-static"))));
137         }
138     }
139 }
140
141 const BUG_REPORT_URL: &'static str = "https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.\
142                                       md#bug-reports";
143
144 const ICE_REPORT_COMPILER_FLAGS: &'static [&'static str] = &[
145     "Z",
146     "C",
147     "crate-type",
148 ];
149 const ICE_REPORT_COMPILER_FLAGS_EXCLUDE: &'static [&'static str] = &[
150     "metadata",
151     "extra-filename",
152 ];
153 const ICE_REPORT_COMPILER_FLAGS_STRIP_VALUE: &'static [&'static str] = &[
154     "incremental",
155 ];
156
157 pub fn abort_on_err<T>(result: Result<T, CompileIncomplete>, sess: &Session) -> T {
158     match result {
159         Err(CompileIncomplete::Errored(ErrorReported)) => {
160             sess.abort_if_errors();
161             panic!("error reported but abort_if_errors didn't abort???");
162         }
163         Err(CompileIncomplete::Stopped) => {
164             sess.fatal("compilation terminated");
165         }
166         Ok(x) => x,
167     }
168 }
169
170 pub fn run<F>(run_compiler: F) -> isize
171     where F: FnOnce() -> (CompileResult, Option<Session>) + Send + 'static
172 {
173     monitor(move || {
174         let (result, session) = run_compiler();
175         if let Err(CompileIncomplete::Errored(_)) = result {
176             match session {
177                 Some(sess) => {
178                     sess.abort_if_errors();
179                     panic!("error reported but abort_if_errors didn't abort???");
180                 }
181                 None => {
182                     let emitter =
183                         errors::emitter::EmitterWriter::stderr(errors::ColorConfig::Auto,
184                                                                None,
185                                                                true,
186                                                                false);
187                     let handler = errors::Handler::with_emitter(true, false, Box::new(emitter));
188                     handler.emit(&MultiSpan::new(),
189                                  "aborting due to previous error(s)",
190                                  errors::Level::Fatal);
191                     panic::resume_unwind(Box::new(errors::FatalErrorMarker));
192                 }
193             }
194         }
195     });
196     0
197 }
198
199 fn load_backend_from_dylib(path: &Path) -> fn() -> Box<TransCrate> {
200     // Note that we're specifically using `open_global_now` here rather than
201     // `open`, namely we want the behavior on Unix of RTLD_GLOBAL and RTLD_NOW,
202     // where NOW means "bind everything right now" because we don't want
203     // surprises later on and RTLD_GLOBAL allows the symbols to be made
204     // available for future dynamic libraries opened. This is currently used by
205     // loading LLVM and then making its symbols available for other dynamic
206     // libraries.
207     let lib = match DynamicLibrary::open_global_now(path) {
208         Ok(lib) => lib,
209         Err(err) => {
210             let err = format!("couldn't load codegen backend {:?}: {:?}",
211                               path,
212                               err);
213             early_error(ErrorOutputType::default(), &err);
214         }
215     };
216     unsafe {
217         match lib.symbol("__rustc_codegen_backend") {
218             Ok(f) => {
219                 mem::forget(lib);
220                 mem::transmute::<*mut u8, _>(f)
221             }
222             Err(e) => {
223                 let err = format!("couldn't load codegen backend as it \
224                                    doesn't export the `__rustc_codegen_backend` \
225                                    symbol: {:?}", e);
226                 early_error(ErrorOutputType::default(), &err);
227             }
228         }
229     }
230 }
231
232 pub fn get_trans(sess: &Session) -> Box<TransCrate> {
233     static INIT: Once = ONCE_INIT;
234     static mut LOAD: fn() -> Box<TransCrate> = || unreachable!();
235
236     INIT.call_once(|| {
237         let trans_name = sess.opts.debugging_opts.codegen_backend.as_ref()
238             .unwrap_or(&sess.target.target.options.codegen_backend);
239         let backend = match &trans_name[..] {
240             "metadata_only" => {
241                 rustc_trans_utils::trans_crate::MetadataOnlyTransCrate::new
242             }
243             filename if filename.contains(".") => {
244                 load_backend_from_dylib(filename.as_ref())
245             }
246             trans_name => get_trans_sysroot(trans_name),
247         };
248
249         unsafe {
250             LOAD = backend;
251         }
252     });
253     let backend = unsafe { LOAD() };
254     backend.init(sess);
255     backend
256 }
257
258 fn get_trans_sysroot(backend_name: &str) -> fn() -> Box<TransCrate> {
259     // For now we only allow this function to be called once as it'll dlopen a
260     // few things, which seems to work best if we only do that once. In
261     // general this assertion never trips due to the once guard in `get_trans`,
262     // but there's a few manual calls to this function in this file we protect
263     // against.
264     static LOADED: AtomicBool = ATOMIC_BOOL_INIT;
265     assert!(!LOADED.fetch_or(true, Ordering::SeqCst),
266             "cannot load the default trans backend twice");
267
268     // When we're compiling this library with `--test` it'll run as a binary but
269     // not actually exercise much functionality. As a result most of the logic
270     // here is defunkt (it assumes we're a dynamic library in a sysroot) so
271     // let's just return a dummy creation function which won't be used in
272     // general anyway.
273     if cfg!(test) {
274         return rustc_trans_utils::trans_crate::MetadataOnlyTransCrate::new
275     }
276
277     let target = session::config::host_triple();
278     let mut sysroot_candidates = vec![filesearch::get_or_default_sysroot()];
279     let path = current_dll_path()
280         .and_then(|s| s.canonicalize().ok());
281     if let Some(dll) = path {
282         // use `parent` twice to chop off the file name and then also the
283         // directory containing the dll which should be either `lib` or `bin`.
284         if let Some(path) = dll.parent().and_then(|p| p.parent()) {
285             // The original `path` pointed at the `rustc_driver` crate's dll.
286             // Now that dll should only be in one of two locations. The first is
287             // in the compiler's libdir, for example `$sysroot/lib/*.dll`. The
288             // other is the target's libdir, for example
289             // `$sysroot/lib/rustlib/$target/lib/*.dll`.
290             //
291             // We don't know which, so let's assume that if our `path` above
292             // ends in `$target` we *could* be in the target libdir, and always
293             // assume that we may be in the main libdir.
294             sysroot_candidates.push(path.to_owned());
295
296             if path.ends_with(target) {
297                 sysroot_candidates.extend(path.parent() // chop off `$target`
298                     .and_then(|p| p.parent())           // chop off `rustlib`
299                     .and_then(|p| p.parent())           // chop off `lib`
300                     .map(|s| s.to_owned()));
301             }
302         }
303     }
304
305     let sysroot = sysroot_candidates.iter()
306         .map(|sysroot| {
307             let libdir = filesearch::relative_target_lib_path(&sysroot, &target);
308             sysroot.join(libdir)
309                 .with_file_name(option_env!("CFG_CODEGEN_BACKENDS_DIR")
310                                 .unwrap_or("codegen-backends"))
311         })
312         .filter(|f| {
313             info!("codegen backend candidate: {}", f.display());
314             f.exists()
315         })
316         .next();
317     let sysroot = match sysroot {
318         Some(path) => path,
319         None => {
320             let candidates = sysroot_candidates.iter()
321                 .map(|p| p.display().to_string())
322                 .collect::<Vec<_>>()
323                 .join("\n* ");
324             let err = format!("failed to find a `codegen-backends` folder \
325                                in the sysroot candidates:\n* {}", candidates);
326             early_error(ErrorOutputType::default(), &err);
327         }
328     };
329     info!("probing {} for a codegen backend", sysroot.display());
330
331     let d = match sysroot.read_dir() {
332         Ok(d) => d,
333         Err(e) => {
334             let err = format!("failed to load default codegen backend, couldn't \
335                                read `{}`: {}", sysroot.display(), e);
336             early_error(ErrorOutputType::default(), &err);
337         }
338     };
339
340     let mut file: Option<PathBuf> = None;
341
342     let expected_name = format!("rustc_trans-{}", backend_name);
343     for entry in d.filter_map(|e| e.ok()) {
344         let path = entry.path();
345         let filename = match path.file_name().and_then(|s| s.to_str()) {
346             Some(s) => s,
347             None => continue,
348         };
349         if !(filename.starts_with(DLL_PREFIX) && filename.ends_with(DLL_SUFFIX)) {
350             continue
351         }
352         let name = &filename[DLL_PREFIX.len() .. filename.len() - DLL_SUFFIX.len()];
353         if name != expected_name {
354             continue
355         }
356         if let Some(ref prev) = file {
357             let err = format!("duplicate codegen backends found\n\
358                 first:  {}\n\
359                 second: {}\n\
360             ", prev.display(), path.display());
361             early_error(ErrorOutputType::default(), &err);
362         }
363         file = Some(path.clone());
364     }
365
366     match file {
367         Some(ref s) => return load_backend_from_dylib(s),
368         None => {
369             let err = format!("failed to load default codegen backend for `{}`, \
370                                no appropriate codegen dylib found in `{}`",
371                                backend_name, sysroot.display());
372             early_error(ErrorOutputType::default(), &err);
373         }
374     }
375
376     #[cfg(unix)]
377     fn current_dll_path() -> Option<PathBuf> {
378         use std::ffi::{OsStr, CStr};
379         use std::os::unix::prelude::*;
380
381         unsafe {
382             let addr = current_dll_path as usize as *mut _;
383             let mut info = mem::zeroed();
384             if libc::dladdr(addr, &mut info) == 0 {
385                 info!("dladdr failed");
386                 return None
387             }
388             if info.dli_fname.is_null() {
389                 info!("dladdr returned null pointer");
390                 return None
391             }
392             let bytes = CStr::from_ptr(info.dli_fname).to_bytes();
393             let os = OsStr::from_bytes(bytes);
394             Some(PathBuf::from(os))
395         }
396     }
397
398     #[cfg(windows)]
399     fn current_dll_path() -> Option<PathBuf> {
400         use std::ffi::OsString;
401         use std::os::windows::prelude::*;
402
403         extern "system" {
404             fn GetModuleHandleExW(dwFlags: u32,
405                                   lpModuleName: usize,
406                                   phModule: *mut usize) -> i32;
407             fn GetModuleFileNameW(hModule: usize,
408                                   lpFilename: *mut u16,
409                                   nSize: u32) -> u32;
410         }
411
412         const GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS: u32 = 0x00000004;
413
414         unsafe {
415             let mut module = 0;
416             let r = GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
417                                        current_dll_path as usize,
418                                        &mut module);
419             if r == 0 {
420                 info!("GetModuleHandleExW failed: {}", io::Error::last_os_error());
421                 return None
422             }
423             let mut space = Vec::with_capacity(1024);
424             let r = GetModuleFileNameW(module,
425                                        space.as_mut_ptr(),
426                                        space.capacity() as u32);
427             if r == 0 {
428                 info!("GetModuleFileNameW failed: {}", io::Error::last_os_error());
429                 return None
430             }
431             let r = r as usize;
432             if r >= space.capacity() {
433                 info!("our buffer was too small? {}",
434                       io::Error::last_os_error());
435                 return None
436             }
437             space.set_len(r);
438             let os = OsString::from_wide(&space);
439             Some(PathBuf::from(os))
440         }
441     }
442 }
443
444 // Parse args and run the compiler. This is the primary entry point for rustc.
445 // See comments on CompilerCalls below for details about the callbacks argument.
446 // The FileLoader provides a way to load files from sources other than the file system.
447 pub fn run_compiler<'a>(args: &[String],
448                         callbacks: &mut CompilerCalls<'a>,
449                         file_loader: Option<Box<FileLoader + Send + Sync + 'static>>,
450                         emitter_dest: Option<Box<Write + Send>>)
451                         -> (CompileResult, Option<Session>)
452 {
453     syntax::with_globals(|| {
454         run_compiler_impl(args, callbacks, file_loader, emitter_dest)
455     })
456 }
457
458 fn run_compiler_impl<'a>(args: &[String],
459                          callbacks: &mut CompilerCalls<'a>,
460                          file_loader: Option<Box<FileLoader + Send + Sync + 'static>>,
461                          emitter_dest: Option<Box<Write + Send>>)
462                          -> (CompileResult, Option<Session>)
463 {
464     macro_rules! do_or_return {($expr: expr, $sess: expr) => {
465         match $expr {
466             Compilation::Stop => return (Ok(()), $sess),
467             Compilation::Continue => {}
468         }
469     }}
470
471     let matches = match handle_options(args) {
472         Some(matches) => matches,
473         None => return (Ok(()), None),
474     };
475
476     let (sopts, cfg) = config::build_session_options_and_crate_config(&matches);
477
478     let descriptions = diagnostics_registry();
479
480     do_or_return!(callbacks.early_callback(&matches,
481                                            &sopts,
482                                            &cfg,
483                                            &descriptions,
484                                            sopts.error_format),
485                                            None);
486
487     let (odir, ofile) = make_output(&matches);
488     let (input, input_file_path, input_err) = match make_input(&matches.free) {
489         Some((input, input_file_path, input_err)) => {
490             let (input, input_file_path) = callbacks.some_input(input, input_file_path);
491             (input, input_file_path, input_err)
492         },
493         None => match callbacks.no_input(&matches, &sopts, &cfg, &odir, &ofile, &descriptions) {
494             Some((input, input_file_path)) => (input, input_file_path, None),
495             None => return (Ok(()), None),
496         },
497     };
498
499     let loader = file_loader.unwrap_or(box RealFileLoader);
500     let codemap = Lrc::new(CodeMap::with_file_loader(loader, sopts.file_path_mapping()));
501     let mut sess = session::build_session_with_codemap(
502         sopts, input_file_path.clone(), descriptions, codemap, emitter_dest,
503     );
504
505     if let Some(err) = input_err {
506         // Immediately stop compilation if there was an issue reading
507         // the input (for example if the input stream is not UTF-8).
508         sess.err(&format!("{}", err));
509         return (Err(CompileIncomplete::Stopped), Some(sess));
510     }
511
512     let trans = get_trans(&sess);
513
514     rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
515
516     let mut cfg = config::build_configuration(&sess, cfg);
517     target_features::add_configuration(&mut cfg, &sess, &*trans);
518     sess.parse_sess.config = cfg;
519
520     let result = {
521         let plugins = sess.opts.debugging_opts.extra_plugins.clone();
522
523         let cstore = CStore::new(trans.metadata_loader());
524
525         do_or_return!(callbacks.late_callback(&*trans,
526                                               &matches,
527                                               &sess,
528                                               &cstore,
529                                               &input,
530                                               &odir,
531                                               &ofile), Some(sess));
532
533         let _sess_abort_error = OnDrop(|| sess.diagnostic().print_error_count());
534
535         let control = callbacks.build_controller(&sess, &matches);
536
537         driver::compile_input(trans,
538                               &sess,
539                               &cstore,
540                               &input_file_path,
541                               &input,
542                               &odir,
543                               &ofile,
544                               Some(plugins),
545                               &control)
546     };
547
548     (result, Some(sess))
549 }
550
551 #[cfg(unix)]
552 pub fn set_sigpipe_handler() {
553     unsafe {
554         // Set the SIGPIPE signal handler, so that an EPIPE
555         // will cause rustc to terminate, as expected.
556         assert!(libc::signal(libc::SIGPIPE, libc::SIG_DFL) != libc::SIG_ERR);
557     }
558 }
559
560 #[cfg(windows)]
561 pub fn set_sigpipe_handler() {}
562
563 // Extract output directory and file from matches.
564 fn make_output(matches: &getopts::Matches) -> (Option<PathBuf>, Option<PathBuf>) {
565     let odir = matches.opt_str("out-dir").map(|o| PathBuf::from(&o));
566     let ofile = matches.opt_str("o").map(|o| PathBuf::from(&o));
567     (odir, ofile)
568 }
569
570 // Extract input (string or file and optional path) from matches.
571 fn make_input(free_matches: &[String]) -> Option<(Input, Option<PathBuf>, Option<io::Error>)> {
572     if free_matches.len() == 1 {
573         let ifile = &free_matches[0];
574         if ifile == "-" {
575             let mut src = String::new();
576             let err = if io::stdin().read_to_string(&mut src).is_err() {
577                 Some(io::Error::new(io::ErrorKind::InvalidData,
578                                     "couldn't read from stdin, as it did not contain valid UTF-8"))
579             } else {
580                 None
581             };
582             Some((Input::Str { name: FileName::Anon, input: src },
583                   None, err))
584         } else {
585             Some((Input::File(PathBuf::from(ifile)),
586                   Some(PathBuf::from(ifile)), None))
587         }
588     } else {
589         None
590     }
591 }
592
593 fn parse_pretty(sess: &Session,
594                 matches: &getopts::Matches)
595                 -> Option<(PpMode, Option<UserIdentifiedItem>)> {
596     let pretty = if sess.opts.debugging_opts.unstable_options {
597         matches.opt_default("pretty", "normal").map(|a| {
598             // stable pretty-print variants only
599             pretty::parse_pretty(sess, &a, false)
600         })
601     } else {
602         None
603     };
604
605     if pretty.is_none() {
606         sess.opts.debugging_opts.unpretty.as_ref().map(|a| {
607             // extended with unstable pretty-print variants
608             pretty::parse_pretty(sess, &a, true)
609         })
610     } else {
611         pretty
612     }
613 }
614
615 // Whether to stop or continue compilation.
616 #[derive(Copy, Clone, Debug, Eq, PartialEq)]
617 pub enum Compilation {
618     Stop,
619     Continue,
620 }
621
622 impl Compilation {
623     pub fn and_then<F: FnOnce() -> Compilation>(self, next: F) -> Compilation {
624         match self {
625             Compilation::Stop => Compilation::Stop,
626             Compilation::Continue => next(),
627         }
628     }
629 }
630
631 // A trait for customising the compilation process. Offers a number of hooks for
632 // executing custom code or customising input.
633 pub trait CompilerCalls<'a> {
634     // Hook for a callback early in the process of handling arguments. This will
635     // be called straight after options have been parsed but before anything
636     // else (e.g., selecting input and output).
637     fn early_callback(&mut self,
638                       _: &getopts::Matches,
639                       _: &config::Options,
640                       _: &ast::CrateConfig,
641                       _: &errors::registry::Registry,
642                       _: ErrorOutputType)
643                       -> Compilation {
644         Compilation::Continue
645     }
646
647     // Hook for a callback late in the process of handling arguments. This will
648     // be called just before actual compilation starts (and before build_controller
649     // is called), after all arguments etc. have been completely handled.
650     fn late_callback(&mut self,
651                      _: &TransCrate,
652                      _: &getopts::Matches,
653                      _: &Session,
654                      _: &CrateStore,
655                      _: &Input,
656                      _: &Option<PathBuf>,
657                      _: &Option<PathBuf>)
658                      -> Compilation {
659         Compilation::Continue
660     }
661
662     // Called after we extract the input from the arguments. Gives the implementer
663     // an opportunity to change the inputs or to add some custom input handling.
664     // The default behaviour is to simply pass through the inputs.
665     fn some_input(&mut self,
666                   input: Input,
667                   input_path: Option<PathBuf>)
668                   -> (Input, Option<PathBuf>) {
669         (input, input_path)
670     }
671
672     // Called after we extract the input from the arguments if there is no valid
673     // input. Gives the implementer an opportunity to supply alternate input (by
674     // returning a Some value) or to add custom behaviour for this error such as
675     // emitting error messages. Returning None will cause compilation to stop
676     // at this point.
677     fn no_input(&mut self,
678                 _: &getopts::Matches,
679                 _: &config::Options,
680                 _: &ast::CrateConfig,
681                 _: &Option<PathBuf>,
682                 _: &Option<PathBuf>,
683                 _: &errors::registry::Registry)
684                 -> Option<(Input, Option<PathBuf>)> {
685         None
686     }
687
688     // Create a CompilController struct for controlling the behaviour of
689     // compilation.
690     fn build_controller(&mut self, _: &Session, _: &getopts::Matches) -> CompileController<'a>;
691 }
692
693 // CompilerCalls instance for a regular rustc build.
694 #[derive(Copy, Clone)]
695 pub struct RustcDefaultCalls;
696
697 // FIXME remove these and use winapi 0.3 instead
698 // Duplicates: bootstrap/compile.rs, librustc_errors/emitter.rs
699 #[cfg(unix)]
700 fn stdout_isatty() -> bool {
701     unsafe { libc::isatty(libc::STDOUT_FILENO) != 0 }
702 }
703
704 #[cfg(windows)]
705 fn stdout_isatty() -> bool {
706     type DWORD = u32;
707     type BOOL = i32;
708     type HANDLE = *mut u8;
709     type LPDWORD = *mut u32;
710     const STD_OUTPUT_HANDLE: DWORD = -11i32 as DWORD;
711     extern "system" {
712         fn GetStdHandle(which: DWORD) -> HANDLE;
713         fn GetConsoleMode(hConsoleHandle: HANDLE, lpMode: LPDWORD) -> BOOL;
714     }
715     unsafe {
716         let handle = GetStdHandle(STD_OUTPUT_HANDLE);
717         let mut out = 0;
718         GetConsoleMode(handle, &mut out) != 0
719     }
720 }
721
722 fn handle_explain(code: &str,
723                   descriptions: &errors::registry::Registry,
724                   output: ErrorOutputType) {
725     let normalised = if code.starts_with("E") {
726         code.to_string()
727     } else {
728         format!("E{0:0>4}", code)
729     };
730     match descriptions.find_description(&normalised) {
731         Some(ref description) => {
732             let mut is_in_code_block = false;
733             let mut text = String::new();
734
735             // Slice off the leading newline and print.
736             for line in description[1..].lines() {
737                 let indent_level = line.find(|c: char| !c.is_whitespace())
738                     .unwrap_or_else(|| line.len());
739                 let dedented_line = &line[indent_level..];
740                 if dedented_line.starts_with("```") {
741                     is_in_code_block = !is_in_code_block;
742                     text.push_str(&line[..(indent_level+3)]);
743                 } else if is_in_code_block && dedented_line.starts_with("# ") {
744                     continue;
745                 } else {
746                     text.push_str(line);
747                 }
748                 text.push('\n');
749             }
750
751             if stdout_isatty() {
752                 show_content_with_pager(&text);
753             } else {
754                 print!("{}", text);
755             }
756         }
757         None => {
758             early_error(output, &format!("no extended information for {}", code));
759         }
760     }
761 }
762
763 fn show_content_with_pager(content: &String) {
764     let pager_name = env::var_os("PAGER").unwrap_or_else(|| if cfg!(windows) {
765         OsString::from("more.com")
766     } else {
767         OsString::from("less")
768     });
769
770     let mut fallback_to_println = false;
771
772     match Command::new(pager_name).stdin(Stdio::piped()).spawn() {
773         Ok(mut pager) => {
774             if let Some(pipe) = pager.stdin.as_mut() {
775                 if pipe.write_all(content.as_bytes()).is_err() {
776                     fallback_to_println = true;
777                 }
778             }
779
780             if pager.wait().is_err() {
781                 fallback_to_println = true;
782             }
783         }
784         Err(_) => {
785             fallback_to_println = true;
786         }
787     }
788
789     // If pager fails for whatever reason, we should still print the content
790     // to standard output
791     if fallback_to_println {
792         print!("{}", content);
793     }
794 }
795
796 impl<'a> CompilerCalls<'a> for RustcDefaultCalls {
797     fn early_callback(&mut self,
798                       matches: &getopts::Matches,
799                       _: &config::Options,
800                       _: &ast::CrateConfig,
801                       descriptions: &errors::registry::Registry,
802                       output: ErrorOutputType)
803                       -> Compilation {
804         if let Some(ref code) = matches.opt_str("explain") {
805             handle_explain(code, descriptions, output);
806             return Compilation::Stop;
807         }
808
809         Compilation::Continue
810     }
811
812     fn no_input(&mut self,
813                 matches: &getopts::Matches,
814                 sopts: &config::Options,
815                 cfg: &ast::CrateConfig,
816                 odir: &Option<PathBuf>,
817                 ofile: &Option<PathBuf>,
818                 descriptions: &errors::registry::Registry)
819                 -> Option<(Input, Option<PathBuf>)> {
820         match matches.free.len() {
821             0 => {
822                 let mut sess = build_session(sopts.clone(),
823                     None,
824                     descriptions.clone());
825                 if sopts.describe_lints {
826                     let mut ls = lint::LintStore::new();
827                     rustc_lint::register_builtins(&mut ls, Some(&sess));
828                     describe_lints(&sess, &ls, false);
829                     return None;
830                 }
831                 rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
832                 let mut cfg = config::build_configuration(&sess, cfg.clone());
833                 let trans = get_trans(&sess);
834                 target_features::add_configuration(&mut cfg, &sess, &*trans);
835                 sess.parse_sess.config = cfg;
836                 let should_stop = RustcDefaultCalls::print_crate_info(
837                     &*trans,
838                     &sess,
839                     None,
840                     odir,
841                     ofile
842                 );
843
844                 if should_stop == Compilation::Stop {
845                     return None;
846                 }
847                 early_error(sopts.error_format, "no input filename given");
848             }
849             1 => panic!("make_input should have provided valid inputs"),
850             _ => early_error(sopts.error_format, "multiple input filenames provided"),
851         }
852     }
853
854     fn late_callback(&mut self,
855                      trans: &TransCrate,
856                      matches: &getopts::Matches,
857                      sess: &Session,
858                      cstore: &CrateStore,
859                      input: &Input,
860                      odir: &Option<PathBuf>,
861                      ofile: &Option<PathBuf>)
862                      -> Compilation {
863         RustcDefaultCalls::print_crate_info(trans, sess, Some(input), odir, ofile)
864             .and_then(|| RustcDefaultCalls::list_metadata(sess, cstore, matches, input))
865     }
866
867     fn build_controller(&mut self,
868                         sess: &Session,
869                         matches: &getopts::Matches)
870                         -> CompileController<'a> {
871         let mut control = CompileController::basic();
872
873         control.keep_ast = sess.opts.debugging_opts.keep_ast;
874         control.continue_parse_after_error = sess.opts.debugging_opts.continue_parse_after_error;
875
876         if let Some((ppm, opt_uii)) = parse_pretty(sess, matches) {
877             if ppm.needs_ast_map(&opt_uii) {
878                 control.after_hir_lowering.stop = Compilation::Stop;
879
880                 control.after_parse.callback = box move |state| {
881                     state.krate = Some(pretty::fold_crate(state.session,
882                                                           state.krate.take().unwrap(),
883                                                           ppm));
884                 };
885                 control.after_hir_lowering.callback = box move |state| {
886                     pretty::print_after_hir_lowering(state.session,
887                                                      state.cstore.unwrap(),
888                                                      state.hir_map.unwrap(),
889                                                      state.analysis.unwrap(),
890                                                      state.resolutions.unwrap(),
891                                                      state.input,
892                                                      &state.expanded_crate.take().unwrap(),
893                                                      state.crate_name.unwrap(),
894                                                      ppm,
895                                                      state.arenas.unwrap(),
896                                                      state.output_filenames.unwrap(),
897                                                      opt_uii.clone(),
898                                                      state.out_file);
899                 };
900             } else {
901                 control.after_parse.stop = Compilation::Stop;
902
903                 control.after_parse.callback = box move |state| {
904                     let krate = pretty::fold_crate(state.session, state.krate.take().unwrap(), ppm);
905                     pretty::print_after_parsing(state.session,
906                                                 state.input,
907                                                 &krate,
908                                                 ppm,
909                                                 state.out_file);
910                 };
911             }
912
913             return control;
914         }
915
916         if sess.opts.debugging_opts.parse_only ||
917            sess.opts.debugging_opts.show_span.is_some() ||
918            sess.opts.debugging_opts.ast_json_noexpand {
919             control.after_parse.stop = Compilation::Stop;
920         }
921
922         if sess.opts.debugging_opts.no_analysis ||
923            sess.opts.debugging_opts.ast_json {
924             control.after_hir_lowering.stop = Compilation::Stop;
925         }
926
927         if sess.opts.debugging_opts.save_analysis {
928             enable_save_analysis(&mut control);
929         }
930
931         if sess.print_fuel_crate.is_some() {
932             let old_callback = control.compilation_done.callback;
933             control.compilation_done.callback = box move |state| {
934                 old_callback(state);
935                 let sess = state.session;
936                 println!("Fuel used by {}: {}",
937                     sess.print_fuel_crate.as_ref().unwrap(),
938                     sess.print_fuel.get());
939             }
940         }
941         control
942     }
943 }
944
945 pub fn enable_save_analysis(control: &mut CompileController) {
946     control.keep_ast = true;
947     control.after_analysis.callback = box |state| {
948         time(state.session, "save analysis", || {
949             save::process_crate(state.tcx.unwrap(),
950                                 state.expanded_crate.unwrap(),
951                                 state.analysis.unwrap(),
952                                 state.crate_name.unwrap(),
953                                 None,
954                                 DumpHandler::new(state.out_dir,
955                                                  state.crate_name.unwrap()))
956         });
957     };
958     control.after_analysis.run_callback_on_error = true;
959     control.make_glob_map = resolve::MakeGlobMap::Yes;
960 }
961
962 impl RustcDefaultCalls {
963     pub fn list_metadata(sess: &Session,
964                          cstore: &CrateStore,
965                          matches: &getopts::Matches,
966                          input: &Input)
967                          -> Compilation {
968         let r = matches.opt_strs("Z");
969         if r.contains(&("ls".to_string())) {
970             match input {
971                 &Input::File(ref ifile) => {
972                     let path = &(*ifile);
973                     let mut v = Vec::new();
974                     locator::list_file_metadata(&sess.target.target,
975                                                 path,
976                                                 cstore.metadata_loader(),
977                                                 &mut v)
978                             .unwrap();
979                     println!("{}", String::from_utf8(v).unwrap());
980                 }
981                 &Input::Str { .. } => {
982                     early_error(ErrorOutputType::default(), "cannot list metadata for stdin");
983                 }
984             }
985             return Compilation::Stop;
986         }
987
988         return Compilation::Continue;
989     }
990
991
992     fn print_crate_info(trans: &TransCrate,
993                         sess: &Session,
994                         input: Option<&Input>,
995                         odir: &Option<PathBuf>,
996                         ofile: &Option<PathBuf>)
997                         -> Compilation {
998         use rustc::session::config::PrintRequest::*;
999         // PrintRequest::NativeStaticLibs is special - printed during linking
1000         // (empty iterator returns true)
1001         if sess.opts.prints.iter().all(|&p| p==PrintRequest::NativeStaticLibs) {
1002             return Compilation::Continue;
1003         }
1004
1005         let attrs = match input {
1006             None => None,
1007             Some(input) => {
1008                 let result = parse_crate_attrs(sess, input);
1009                 match result {
1010                     Ok(attrs) => Some(attrs),
1011                     Err(mut parse_error) => {
1012                         parse_error.emit();
1013                         return Compilation::Stop;
1014                     }
1015                 }
1016             }
1017         };
1018         for req in &sess.opts.prints {
1019             match *req {
1020                 TargetList => {
1021                     let mut targets = rustc_back::target::get_targets().collect::<Vec<String>>();
1022                     targets.sort();
1023                     println!("{}", targets.join("\n"));
1024                 },
1025                 Sysroot => println!("{}", sess.sysroot().display()),
1026                 TargetSpec => println!("{}", sess.target.target.to_json().pretty()),
1027                 FileNames | CrateName => {
1028                     let input = match input {
1029                         Some(input) => input,
1030                         None => early_error(ErrorOutputType::default(), "no input file provided"),
1031                     };
1032                     let attrs = attrs.as_ref().unwrap();
1033                     let t_outputs = driver::build_output_filenames(input, odir, ofile, attrs, sess);
1034                     let id = rustc_trans_utils::link::find_crate_name(Some(sess), attrs, input);
1035                     if *req == PrintRequest::CrateName {
1036                         println!("{}", id);
1037                         continue;
1038                     }
1039                     let crate_types = driver::collect_crate_types(sess, attrs);
1040                     for &style in &crate_types {
1041                         let fname = rustc_trans_utils::link::filename_for_input(
1042                             sess,
1043                             style,
1044                             &id,
1045                             &t_outputs
1046                         );
1047                         println!("{}",
1048                                  fname.file_name()
1049                                       .unwrap()
1050                                       .to_string_lossy());
1051                     }
1052                 }
1053                 Cfg => {
1054                     let allow_unstable_cfg = UnstableFeatures::from_environment()
1055                         .is_nightly_build();
1056
1057                     let mut cfgs = Vec::new();
1058                     for &(name, ref value) in sess.parse_sess.config.iter() {
1059                         let gated_cfg = GatedCfg::gate(&ast::MetaItem {
1060                             ident: ast::Ident::with_empty_ctxt(name),
1061                             node: ast::MetaItemKind::Word,
1062                             span: DUMMY_SP,
1063                         });
1064
1065                         // Note that crt-static is a specially recognized cfg
1066                         // directive that's printed out here as part of
1067                         // rust-lang/rust#37406, but in general the
1068                         // `target_feature` cfg is gated under
1069                         // rust-lang/rust#29717. For now this is just
1070                         // specifically allowing the crt-static cfg and that's
1071                         // it, this is intended to get into Cargo and then go
1072                         // through to build scripts.
1073                         let value = value.as_ref().map(|s| s.as_str());
1074                         let value = value.as_ref().map(|s| s.as_ref());
1075                         if name != "target_feature" || value != Some("crt-static") {
1076                             if !allow_unstable_cfg && gated_cfg.is_some() {
1077                                 continue;
1078                             }
1079                         }
1080
1081                         cfgs.push(if let Some(value) = value {
1082                             format!("{}=\"{}\"", name, value)
1083                         } else {
1084                             format!("{}", name)
1085                         });
1086                     }
1087
1088                     cfgs.sort();
1089                     for cfg in cfgs {
1090                         println!("{}", cfg);
1091                     }
1092                 }
1093                 RelocationModels | CodeModels | TlsModels | TargetCPUs | TargetFeatures => {
1094                     trans.print(*req, sess);
1095                 }
1096                 // Any output here interferes with Cargo's parsing of other printed output
1097                 PrintRequest::NativeStaticLibs => {}
1098             }
1099         }
1100         return Compilation::Stop;
1101     }
1102 }
1103
1104 /// Returns a version string such as "0.12.0-dev".
1105 fn release_str() -> Option<&'static str> {
1106     option_env!("CFG_RELEASE")
1107 }
1108
1109 /// Returns the full SHA1 hash of HEAD of the Git repo from which rustc was built.
1110 fn commit_hash_str() -> Option<&'static str> {
1111     option_env!("CFG_VER_HASH")
1112 }
1113
1114 /// Returns the "commit date" of HEAD of the Git repo from which rustc was built as a static string.
1115 fn commit_date_str() -> Option<&'static str> {
1116     option_env!("CFG_VER_DATE")
1117 }
1118
1119 /// Prints version information
1120 pub fn version(binary: &str, matches: &getopts::Matches) {
1121     let verbose = matches.opt_present("verbose");
1122
1123     println!("{} {}",
1124              binary,
1125              option_env!("CFG_VERSION").unwrap_or("unknown version"));
1126     if verbose {
1127         fn unw(x: Option<&str>) -> &str {
1128             x.unwrap_or("unknown")
1129         }
1130         println!("binary: {}", binary);
1131         println!("commit-hash: {}", unw(commit_hash_str()));
1132         println!("commit-date: {}", unw(commit_date_str()));
1133         println!("host: {}", config::host_triple());
1134         println!("release: {}", unw(release_str()));
1135         get_trans_sysroot("llvm")().print_version();
1136     }
1137 }
1138
1139 fn usage(verbose: bool, include_unstable_options: bool) {
1140     let groups = if verbose {
1141         config::rustc_optgroups()
1142     } else {
1143         config::rustc_short_optgroups()
1144     };
1145     let mut options = getopts::Options::new();
1146     for option in groups.iter().filter(|x| include_unstable_options || x.is_stable()) {
1147         (option.apply)(&mut options);
1148     }
1149     let message = format!("Usage: rustc [OPTIONS] INPUT");
1150     let nightly_help = if nightly_options::is_nightly_build() {
1151         "\n    -Z help             Print internal options for debugging rustc"
1152     } else {
1153         ""
1154     };
1155     let verbose_help = if verbose {
1156         ""
1157     } else {
1158         "\n    --help -v           Print the full set of options rustc accepts"
1159     };
1160     println!("{}\nAdditional help:
1161     -C help             Print codegen options
1162     -W help             \
1163               Print 'lint' options and default settings{}{}\n",
1164              options.usage(&message),
1165              nightly_help,
1166              verbose_help);
1167 }
1168
1169 fn print_wall_help() {
1170     println!("
1171 The flag `-Wall` does not exist in `rustc`. Most useful lints are enabled by
1172 default. Use `rustc -W help` to see all available lints. It's more common to put
1173 warning settings in the crate root using `#![warn(LINT_NAME)]` instead of using
1174 the command line flag directly.
1175 ");
1176 }
1177
1178 fn describe_lints(sess: &Session, lint_store: &lint::LintStore, loaded_plugins: bool) {
1179     println!("
1180 Available lint options:
1181     -W <foo>           Warn about <foo>
1182     -A <foo>           \
1183               Allow <foo>
1184     -D <foo>           Deny <foo>
1185     -F <foo>           Forbid <foo> \
1186               (deny <foo> and all attempts to override)
1187
1188 ");
1189
1190     fn sort_lints(sess: &Session, lints: Vec<(&'static Lint, bool)>) -> Vec<&'static Lint> {
1191         let mut lints: Vec<_> = lints.into_iter().map(|(x, _)| x).collect();
1192         lints.sort_by(|x: &&Lint, y: &&Lint| {
1193             match x.default_level(sess).cmp(&y.default_level(sess)) {
1194                 // The sort doesn't case-fold but it's doubtful we care.
1195                 Equal => x.name.cmp(y.name),
1196                 r => r,
1197             }
1198         });
1199         lints
1200     }
1201
1202     fn sort_lint_groups(lints: Vec<(&'static str, Vec<lint::LintId>, bool)>)
1203                         -> Vec<(&'static str, Vec<lint::LintId>)> {
1204         let mut lints: Vec<_> = lints.into_iter().map(|(x, y, _)| (x, y)).collect();
1205         lints.sort_by(|&(x, _): &(&'static str, Vec<lint::LintId>),
1206                        &(y, _): &(&'static str, Vec<lint::LintId>)| {
1207             x.cmp(y)
1208         });
1209         lints
1210     }
1211
1212     let (plugin, builtin): (Vec<_>, _) = lint_store.get_lints()
1213                                                    .iter()
1214                                                    .cloned()
1215                                                    .partition(|&(_, p)| p);
1216     let plugin = sort_lints(sess, plugin);
1217     let builtin = sort_lints(sess, builtin);
1218
1219     let (plugin_groups, builtin_groups): (Vec<_>, _) = lint_store.get_lint_groups()
1220                                                                  .iter()
1221                                                                  .cloned()
1222                                                                  .partition(|&(.., p)| p);
1223     let plugin_groups = sort_lint_groups(plugin_groups);
1224     let builtin_groups = sort_lint_groups(builtin_groups);
1225
1226     let max_name_len = plugin.iter()
1227                              .chain(&builtin)
1228                              .map(|&s| s.name.chars().count())
1229                              .max()
1230                              .unwrap_or(0);
1231     let padded = |x: &str| {
1232         let mut s = repeat(" ")
1233                         .take(max_name_len - x.chars().count())
1234                         .collect::<String>();
1235         s.push_str(x);
1236         s
1237     };
1238
1239     println!("Lint checks provided by rustc:\n");
1240     println!("    {}  {:7.7}  {}", padded("name"), "default", "meaning");
1241     println!("    {}  {:7.7}  {}", padded("----"), "-------", "-------");
1242
1243     let print_lints = |lints: Vec<&Lint>| {
1244         for lint in lints {
1245             let name = lint.name_lower().replace("_", "-");
1246             println!("    {}  {:7.7}  {}",
1247                      padded(&name),
1248                      lint.default_level.as_str(),
1249                      lint.desc);
1250         }
1251         println!("\n");
1252     };
1253
1254     print_lints(builtin);
1255
1256
1257
1258     let max_name_len = max("warnings".len(),
1259                            plugin_groups.iter()
1260                                         .chain(&builtin_groups)
1261                                         .map(|&(s, _)| s.chars().count())
1262                                         .max()
1263                                         .unwrap_or(0));
1264
1265     let padded = |x: &str| {
1266         let mut s = repeat(" ")
1267                         .take(max_name_len - x.chars().count())
1268                         .collect::<String>();
1269         s.push_str(x);
1270         s
1271     };
1272
1273     println!("Lint groups provided by rustc:\n");
1274     println!("    {}  {}", padded("name"), "sub-lints");
1275     println!("    {}  {}", padded("----"), "---------");
1276     println!("    {}  {}", padded("warnings"), "all lints that are set to issue warnings");
1277
1278     let print_lint_groups = |lints: Vec<(&'static str, Vec<lint::LintId>)>| {
1279         for (name, to) in lints {
1280             let name = name.to_lowercase().replace("_", "-");
1281             let desc = to.into_iter()
1282                          .map(|x| x.to_string().replace("_", "-"))
1283                          .collect::<Vec<String>>()
1284                          .join(", ");
1285             println!("    {}  {}", padded(&name), desc);
1286         }
1287         println!("\n");
1288     };
1289
1290     print_lint_groups(builtin_groups);
1291
1292     match (loaded_plugins, plugin.len(), plugin_groups.len()) {
1293         (false, 0, _) | (false, _, 0) => {
1294             println!("Compiler plugins can provide additional lints and lint groups. To see a \
1295                       listing of these, re-run `rustc -W help` with a crate filename.");
1296         }
1297         (false, ..) => panic!("didn't load lint plugins but got them anyway!"),
1298         (true, 0, 0) => println!("This crate does not load any lint plugins or lint groups."),
1299         (true, l, g) => {
1300             if l > 0 {
1301                 println!("Lint checks provided by plugins loaded by this crate:\n");
1302                 print_lints(plugin);
1303             }
1304             if g > 0 {
1305                 println!("Lint groups provided by plugins loaded by this crate:\n");
1306                 print_lint_groups(plugin_groups);
1307             }
1308         }
1309     }
1310 }
1311
1312 fn describe_debug_flags() {
1313     println!("\nAvailable debug options:\n");
1314     print_flag_list("-Z", config::DB_OPTIONS);
1315 }
1316
1317 fn describe_codegen_flags() {
1318     println!("\nAvailable codegen options:\n");
1319     print_flag_list("-C", config::CG_OPTIONS);
1320 }
1321
1322 fn print_flag_list<T>(cmdline_opt: &str,
1323                       flag_list: &[(&'static str, T, Option<&'static str>, &'static str)]) {
1324     let max_len = flag_list.iter()
1325                            .map(|&(name, _, opt_type_desc, _)| {
1326                                let extra_len = match opt_type_desc {
1327                                    Some(..) => 4,
1328                                    None => 0,
1329                                };
1330                                name.chars().count() + extra_len
1331                            })
1332                            .max()
1333                            .unwrap_or(0);
1334
1335     for &(name, _, opt_type_desc, desc) in flag_list {
1336         let (width, extra) = match opt_type_desc {
1337             Some(..) => (max_len - 4, "=val"),
1338             None => (max_len, ""),
1339         };
1340         println!("    {} {:>width$}{} -- {}",
1341                  cmdline_opt,
1342                  name.replace("_", "-"),
1343                  extra,
1344                  desc,
1345                  width = width);
1346     }
1347 }
1348
1349 /// Process command line options. Emits messages as appropriate. If compilation
1350 /// should continue, returns a getopts::Matches object parsed from args,
1351 /// otherwise returns None.
1352 ///
1353 /// The compiler's handling of options is a little complicated as it ties into
1354 /// our stability story, and it's even *more* complicated by historical
1355 /// accidents. The current intention of each compiler option is to have one of
1356 /// three modes:
1357 ///
1358 /// 1. An option is stable and can be used everywhere.
1359 /// 2. An option is unstable, but was historically allowed on the stable
1360 ///    channel.
1361 /// 3. An option is unstable, and can only be used on nightly.
1362 ///
1363 /// Like unstable library and language features, however, unstable options have
1364 /// always required a form of "opt in" to indicate that you're using them. This
1365 /// provides the easy ability to scan a code base to check to see if anything
1366 /// unstable is being used. Currently, this "opt in" is the `-Z` "zed" flag.
1367 ///
1368 /// All options behind `-Z` are considered unstable by default. Other top-level
1369 /// options can also be considered unstable, and they were unlocked through the
1370 /// `-Z unstable-options` flag. Note that `-Z` remains to be the root of
1371 /// instability in both cases, though.
1372 ///
1373 /// So with all that in mind, the comments below have some more detail about the
1374 /// contortions done here to get things to work out correctly.
1375 pub fn handle_options(args: &[String]) -> Option<getopts::Matches> {
1376     // Throw away the first argument, the name of the binary
1377     let args = &args[1..];
1378
1379     if args.is_empty() {
1380         // user did not write `-v` nor `-Z unstable-options`, so do not
1381         // include that extra information.
1382         usage(false, false);
1383         return None;
1384     }
1385
1386     // Parse with *all* options defined in the compiler, we don't worry about
1387     // option stability here we just want to parse as much as possible.
1388     let mut options = getopts::Options::new();
1389     for option in config::rustc_optgroups() {
1390         (option.apply)(&mut options);
1391     }
1392     let matches = match options.parse(args) {
1393         Ok(m) => m,
1394         Err(f) => early_error(ErrorOutputType::default(), &f.to_string()),
1395     };
1396
1397     // For all options we just parsed, we check a few aspects:
1398     //
1399     // * If the option is stable, we're all good
1400     // * If the option wasn't passed, we're all good
1401     // * If `-Z unstable-options` wasn't passed (and we're not a -Z option
1402     //   ourselves), then we require the `-Z unstable-options` flag to unlock
1403     //   this option that was passed.
1404     // * If we're a nightly compiler, then unstable options are now unlocked, so
1405     //   we're good to go.
1406     // * Otherwise, if we're a truly unstable option then we generate an error
1407     //   (unstable option being used on stable)
1408     // * If we're a historically stable-but-should-be-unstable option then we
1409     //   emit a warning that we're going to turn this into an error soon.
1410     nightly_options::check_nightly_options(&matches, &config::rustc_optgroups());
1411
1412     if matches.opt_present("h") || matches.opt_present("help") {
1413         // Only show unstable options in --help if we *really* accept unstable
1414         // options, which catches the case where we got `-Z unstable-options` on
1415         // the stable channel of Rust which was accidentally allowed
1416         // historically.
1417         usage(matches.opt_present("verbose"),
1418               nightly_options::is_unstable_enabled(&matches));
1419         return None;
1420     }
1421
1422     // Handle the special case of -Wall.
1423     let wall = matches.opt_strs("W");
1424     if wall.iter().any(|x| *x == "all") {
1425         print_wall_help();
1426         return None;
1427     }
1428
1429     // Don't handle -W help here, because we might first load plugins.
1430     let r = matches.opt_strs("Z");
1431     if r.iter().any(|x| *x == "help") {
1432         describe_debug_flags();
1433         return None;
1434     }
1435
1436     let cg_flags = matches.opt_strs("C");
1437     if cg_flags.iter().any(|x| *x == "help") {
1438         describe_codegen_flags();
1439         return None;
1440     }
1441
1442     if cg_flags.iter().any(|x| *x == "no-stack-check") {
1443         early_warn(ErrorOutputType::default(),
1444                    "the --no-stack-check flag is deprecated and does nothing");
1445     }
1446
1447     if cg_flags.contains(&"passes=list".to_string()) {
1448         get_trans_sysroot("llvm")().print_passes();
1449         return None;
1450     }
1451
1452     if matches.opt_present("version") {
1453         version("rustc", &matches);
1454         return None;
1455     }
1456
1457     Some(matches)
1458 }
1459
1460 fn parse_crate_attrs<'a>(sess: &'a Session, input: &Input) -> PResult<'a, Vec<ast::Attribute>> {
1461     match *input {
1462         Input::File(ref ifile) => {
1463             parse::parse_crate_attrs_from_file(ifile, &sess.parse_sess)
1464         }
1465         Input::Str { ref name, ref input } => {
1466             parse::parse_crate_attrs_from_source_str(name.clone(),
1467                                                      input.clone(),
1468                                                      &sess.parse_sess)
1469         }
1470     }
1471 }
1472
1473 /// Runs `f` in a suitable thread for running `rustc`; returns a
1474 /// `Result` with either the return value of `f` or -- if a panic
1475 /// occurs -- the panic value.
1476 pub fn in_rustc_thread<F, R>(f: F) -> Result<R, Box<Any + Send>>
1477     where F: FnOnce() -> R + Send + 'static,
1478           R: Send + 'static,
1479 {
1480     // Temporarily have stack size set to 16MB to deal with nom-using crates failing
1481     const STACK_SIZE: usize = 16 * 1024 * 1024; // 16MB
1482
1483     #[cfg(unix)]
1484     let spawn_thread = unsafe {
1485         // Fetch the current resource limits
1486         let mut rlim = libc::rlimit {
1487             rlim_cur: 0,
1488             rlim_max: 0,
1489         };
1490         if libc::getrlimit(libc::RLIMIT_STACK, &mut rlim) != 0 {
1491             let err = io::Error::last_os_error();
1492             error!("in_rustc_thread: error calling getrlimit: {}", err);
1493             true
1494         } else if rlim.rlim_max < STACK_SIZE as libc::rlim_t {
1495             true
1496         } else {
1497             std::rt::deinit_stack_guard();
1498             rlim.rlim_cur = STACK_SIZE as libc::rlim_t;
1499             if libc::setrlimit(libc::RLIMIT_STACK, &mut rlim) != 0 {
1500                 let err = io::Error::last_os_error();
1501                 error!("in_rustc_thread: error calling setrlimit: {}", err);
1502                 std::rt::update_stack_guard();
1503                 true
1504             } else {
1505                 std::rt::update_stack_guard();
1506                 false
1507             }
1508         }
1509     };
1510
1511     // We set the stack size at link time. See src/rustc/rustc.rs.
1512     #[cfg(windows)]
1513     let spawn_thread = false;
1514
1515     #[cfg(not(any(windows,unix)))]
1516     let spawn_thread = true;
1517
1518     // The or condition is added from backward compatibility.
1519     if spawn_thread || env::var_os("RUST_MIN_STACK").is_some() {
1520         let mut cfg = thread::Builder::new().name("rustc".to_string());
1521
1522         // FIXME: Hacks on hacks. If the env is trying to override the stack size
1523         // then *don't* set it explicitly.
1524         if env::var_os("RUST_MIN_STACK").is_none() {
1525             cfg = cfg.stack_size(STACK_SIZE);
1526         }
1527
1528         let thread = cfg.spawn(f);
1529         thread.unwrap().join()
1530     } else {
1531         Ok(f())
1532     }
1533 }
1534
1535 /// Get a list of extra command-line flags provided by the user, as strings.
1536 ///
1537 /// This function is used during ICEs to show more information useful for
1538 /// debugging, since some ICEs only happens with non-default compiler flags
1539 /// (and the users don't always report them).
1540 fn extra_compiler_flags() -> Option<(Vec<String>, bool)> {
1541     let mut args = Vec::new();
1542     for arg in env::args_os() {
1543         args.push(arg.to_string_lossy().to_string());
1544     }
1545
1546     // Avoid printing help because of empty args. This can suggest the compiler
1547     // itself is not the program root (consider RLS).
1548     if args.len() < 2 {
1549         return None;
1550     }
1551
1552     let matches = if let Some(matches) = handle_options(&args) {
1553         matches
1554     } else {
1555         return None;
1556     };
1557
1558     let mut result = Vec::new();
1559     let mut excluded_cargo_defaults = false;
1560     for flag in ICE_REPORT_COMPILER_FLAGS {
1561         let prefix = if flag.len() == 1 { "-" } else { "--" };
1562
1563         for content in &matches.opt_strs(flag) {
1564             // Split always returns the first element
1565             let name = if let Some(first) = content.split('=').next() {
1566                 first
1567             } else {
1568                 &content
1569             };
1570
1571             let content = if ICE_REPORT_COMPILER_FLAGS_STRIP_VALUE.contains(&name) {
1572                 name
1573             } else {
1574                 content
1575             };
1576
1577             if !ICE_REPORT_COMPILER_FLAGS_EXCLUDE.contains(&name) {
1578                 result.push(format!("{}{} {}", prefix, flag, content));
1579             } else {
1580                 excluded_cargo_defaults = true;
1581             }
1582         }
1583     }
1584
1585     if result.len() > 0 {
1586         Some((result, excluded_cargo_defaults))
1587     } else {
1588         None
1589     }
1590 }
1591
1592 /// Run a procedure which will detect panics in the compiler and print nicer
1593 /// error messages rather than just failing the test.
1594 ///
1595 /// The diagnostic emitter yielded to the procedure should be used for reporting
1596 /// errors of the compiler.
1597 pub fn monitor<F: FnOnce() + Send + 'static>(f: F) {
1598     let result = in_rustc_thread(move || {
1599         f()
1600     });
1601
1602     if let Err(value) = result {
1603         // Thread panicked without emitting a fatal diagnostic
1604         if !value.is::<errors::FatalErrorMarker>() {
1605             // Emit a newline
1606             eprintln!("");
1607
1608             let emitter =
1609                 Box::new(errors::emitter::EmitterWriter::stderr(errors::ColorConfig::Auto,
1610                                                                 None,
1611                                                                 false,
1612                                                                 false));
1613             let handler = errors::Handler::with_emitter(true, false, emitter);
1614
1615             // a .span_bug or .bug call has already printed what
1616             // it wants to print.
1617             if !value.is::<errors::ExplicitBug>() {
1618                 handler.emit(&MultiSpan::new(),
1619                              "unexpected panic",
1620                              errors::Level::Bug);
1621             }
1622
1623             let mut xs = vec![
1624                 "the compiler unexpectedly panicked. this is a bug.".to_string(),
1625                 format!("we would appreciate a bug report: {}", BUG_REPORT_URL),
1626                 format!("rustc {} running on {}",
1627                         option_env!("CFG_VERSION").unwrap_or("unknown_version"),
1628                         config::host_triple()),
1629             ];
1630
1631             if let Some((flags, excluded_cargo_defaults)) = extra_compiler_flags() {
1632                 xs.push(format!("compiler flags: {}", flags.join(" ")));
1633
1634                 if excluded_cargo_defaults {
1635                     xs.push("some of the compiler flags provided by cargo are hidden".to_string());
1636                 }
1637             }
1638
1639             for note in &xs {
1640                 handler.emit(&MultiSpan::new(),
1641                              &note,
1642                              errors::Level::Note);
1643             }
1644         }
1645
1646         panic::resume_unwind(Box::new(errors::FatalErrorMarker));
1647     }
1648 }
1649
1650 pub fn diagnostics_registry() -> errors::registry::Registry {
1651     use errors::registry::Registry;
1652
1653     let mut all_errors = Vec::new();
1654     all_errors.extend_from_slice(&rustc::DIAGNOSTICS);
1655     all_errors.extend_from_slice(&rustc_typeck::DIAGNOSTICS);
1656     all_errors.extend_from_slice(&rustc_resolve::DIAGNOSTICS);
1657     all_errors.extend_from_slice(&rustc_privacy::DIAGNOSTICS);
1658     // FIXME: need to figure out a way to get these back in here
1659     // all_errors.extend_from_slice(get_trans(sess).diagnostics());
1660     all_errors.extend_from_slice(&rustc_trans_utils::DIAGNOSTICS);
1661     all_errors.extend_from_slice(&rustc_metadata::DIAGNOSTICS);
1662     all_errors.extend_from_slice(&rustc_passes::DIAGNOSTICS);
1663     all_errors.extend_from_slice(&rustc_plugin::DIAGNOSTICS);
1664     all_errors.extend_from_slice(&rustc_mir::DIAGNOSTICS);
1665     all_errors.extend_from_slice(&syntax::DIAGNOSTICS);
1666
1667     Registry::new(&all_errors)
1668 }
1669
1670 /// This allows tools to enable rust logging without having to magically match rustc's
1671 /// log crate version
1672 pub fn init_rustc_env_logger() {
1673     env_logger::init();
1674 }
1675
1676 pub fn main() {
1677     init_rustc_env_logger();
1678     let result = run(|| {
1679         let args = env::args_os().enumerate()
1680             .map(|(i, arg)| arg.into_string().unwrap_or_else(|arg| {
1681                 early_error(ErrorOutputType::default(),
1682                             &format!("Argument {} is not valid Unicode: {:?}", i, arg))
1683             }))
1684             .collect::<Vec<_>>();
1685         run_compiler(&args,
1686                      &mut RustcDefaultCalls,
1687                      None,
1688                      None)
1689     });
1690     process::exit(result as i32);
1691 }