]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/lib.rs
Rollup merge of #67358 - cuviper:get_or_insert_owned, r=LukasKalbertodt
[rust.git] / src / librustc_driver / lib.rs
1 //! The Rust compiler.
2 //!
3 //! # Note
4 //!
5 //! This API is completely unstable and subject to change.
6
7 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
8 #![feature(box_syntax)]
9 #![cfg_attr(unix, feature(libc))]
10 #![feature(nll)]
11 #![feature(set_stdio)]
12 #![feature(no_debug)]
13 #![feature(integer_atomics)]
14 #![recursion_limit = "256"]
15
16 pub extern crate getopts;
17 #[cfg(unix)]
18 extern crate libc;
19 #[macro_use]
20 extern crate log;
21 #[macro_use]
22 extern crate lazy_static;
23
24 pub extern crate rustc_plugin_impl as plugin;
25
26 //use rustc_resolve as resolve;
27 use errors::{registry::Registry, PResult};
28 use rustc::lint;
29 use rustc::lint::Lint;
30 use rustc::middle::cstore::MetadataLoader;
31 use rustc::session::config::nightly_options;
32 use rustc::session::config::{ErrorOutputType, Input, OutputType, PrintRequest};
33 use rustc::session::{config, DiagnosticOutput, Session};
34 use rustc::session::{early_error, early_warn};
35 use rustc::ty::TyCtxt;
36 use rustc::util::common::ErrorReported;
37 use rustc_codegen_utils::codegen_backend::CodegenBackend;
38 use rustc_data_structures::profiling::print_time_passes_entry;
39 use rustc_data_structures::sync::SeqCst;
40 use rustc_feature::{find_gated_cfg, UnstableFeatures};
41 use rustc_hir::def_id::LOCAL_CRATE;
42 use rustc_interface::util::get_builtin_codegen_backend;
43 use rustc_interface::{interface, Queries};
44 use rustc_metadata::locator;
45 use rustc_save_analysis as save;
46 use rustc_save_analysis::DumpHandler;
47 use rustc_serialize::json::ToJson;
48
49 use std::borrow::Cow;
50 use std::cmp::max;
51 use std::default::Default;
52 use std::env;
53 use std::ffi::OsString;
54 use std::io::{self, Read, Write};
55 use std::mem;
56 use std::panic::{self, catch_unwind};
57 use std::path::PathBuf;
58 use std::process::{self, Command, Stdio};
59 use std::str;
60 use std::time::Instant;
61
62 use rustc_span::source_map::FileLoader;
63 use rustc_span::symbol::sym;
64 use rustc_span::FileName;
65 use syntax::ast;
66
67 mod args;
68 pub mod pretty;
69
70 /// Exit status code used for successful compilation and help output.
71 pub const EXIT_SUCCESS: i32 = 0;
72
73 /// Exit status code used for compilation failures and invalid flags.
74 pub const EXIT_FAILURE: i32 = 1;
75
76 const BUG_REPORT_URL: &str = "https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.\
77                               md#bug-reports";
78
79 const ICE_REPORT_COMPILER_FLAGS: &[&str] = &["Z", "C", "crate-type"];
80
81 const ICE_REPORT_COMPILER_FLAGS_EXCLUDE: &[&str] = &["metadata", "extra-filename"];
82
83 const ICE_REPORT_COMPILER_FLAGS_STRIP_VALUE: &[&str] = &["incremental"];
84
85 pub fn abort_on_err<T>(result: Result<T, ErrorReported>, sess: &Session) -> T {
86     match result {
87         Err(..) => {
88             sess.abort_if_errors();
89             panic!("error reported but abort_if_errors didn't abort???");
90         }
91         Ok(x) => x,
92     }
93 }
94
95 pub trait Callbacks {
96     /// Called before creating the compiler instance
97     fn config(&mut self, _config: &mut interface::Config) {}
98     /// Called after parsing. Return value instructs the compiler whether to
99     /// continue the compilation afterwards (defaults to `Compilation::Continue`)
100     fn after_parsing<'tcx>(
101         &mut self,
102         _compiler: &interface::Compiler,
103         _queries: &'tcx Queries<'tcx>,
104     ) -> Compilation {
105         Compilation::Continue
106     }
107     /// Called after expansion. Return value instructs the compiler whether to
108     /// continue the compilation afterwards (defaults to `Compilation::Continue`)
109     fn after_expansion<'tcx>(
110         &mut self,
111         _compiler: &interface::Compiler,
112         _queries: &'tcx Queries<'tcx>,
113     ) -> Compilation {
114         Compilation::Continue
115     }
116     /// Called after analysis. Return value instructs the compiler whether to
117     /// continue the compilation afterwards (defaults to `Compilation::Continue`)
118     fn after_analysis<'tcx>(
119         &mut self,
120         _compiler: &interface::Compiler,
121         _queries: &'tcx Queries<'tcx>,
122     ) -> Compilation {
123         Compilation::Continue
124     }
125 }
126
127 pub struct DefaultCallbacks;
128
129 impl Callbacks for DefaultCallbacks {}
130
131 #[derive(Default)]
132 pub struct TimePassesCallbacks {
133     time_passes: bool,
134 }
135
136 impl Callbacks for TimePassesCallbacks {
137     fn config(&mut self, config: &mut interface::Config) {
138         // If a --prints=... option has been given, we don't print the "total"
139         // time because it will mess up the --prints output. See #64339.
140         self.time_passes = config.opts.prints.is_empty()
141             && (config.opts.debugging_opts.time_passes || config.opts.debugging_opts.time);
142     }
143 }
144
145 pub fn diagnostics_registry() -> Registry {
146     Registry::new(&rustc_error_codes::DIAGNOSTICS)
147 }
148
149 // Parse args and run the compiler. This is the primary entry point for rustc.
150 // See comments on CompilerCalls below for details about the callbacks argument.
151 // The FileLoader provides a way to load files from sources other than the file system.
152 pub fn run_compiler(
153     at_args: &[String],
154     callbacks: &mut (dyn Callbacks + Send),
155     file_loader: Option<Box<dyn FileLoader + Send + Sync>>,
156     emitter: Option<Box<dyn Write + Send>>,
157 ) -> interface::Result<()> {
158     let mut args = Vec::new();
159     for arg in at_args {
160         match args::arg_expand(arg.clone()) {
161             Ok(arg) => args.extend(arg),
162             Err(err) => early_error(
163                 ErrorOutputType::default(),
164                 &format!("Failed to load argument file: {}", err),
165             ),
166         }
167     }
168     let diagnostic_output =
169         emitter.map(|emitter| DiagnosticOutput::Raw(emitter)).unwrap_or(DiagnosticOutput::Default);
170     let matches = match handle_options(&args) {
171         Some(matches) => matches,
172         None => return Ok(()),
173     };
174
175     let sopts = config::build_session_options(&matches);
176     let cfg = interface::parse_cfgspecs(matches.opt_strs("cfg"));
177
178     let mut dummy_config = |sopts, cfg, diagnostic_output| {
179         let mut config = interface::Config {
180             opts: sopts,
181             crate_cfg: cfg,
182             input: Input::File(PathBuf::new()),
183             input_path: None,
184             output_file: None,
185             output_dir: None,
186             file_loader: None,
187             diagnostic_output,
188             stderr: None,
189             crate_name: None,
190             lint_caps: Default::default(),
191             register_lints: None,
192             override_queries: None,
193             registry: diagnostics_registry(),
194         };
195         callbacks.config(&mut config);
196         config
197     };
198
199     if let Some(ref code) = matches.opt_str("explain") {
200         handle_explain(diagnostics_registry(), code, sopts.error_format);
201         return Ok(());
202     }
203
204     let (odir, ofile) = make_output(&matches);
205     let (input, input_file_path, input_err) = match make_input(&matches.free) {
206         Some(v) => v,
207         None => match matches.free.len() {
208             0 => {
209                 let config = dummy_config(sopts, cfg, diagnostic_output);
210                 interface::run_compiler(config, |compiler| {
211                     let sopts = &compiler.session().opts;
212                     if sopts.describe_lints {
213                         let lint_store = rustc_lint::new_lint_store(
214                             sopts.debugging_opts.no_interleave_lints,
215                             compiler.session().unstable_options(),
216                         );
217                         describe_lints(compiler.session(), &lint_store, false);
218                         return;
219                     }
220                     let should_stop = RustcDefaultCalls::print_crate_info(
221                         &***compiler.codegen_backend(),
222                         compiler.session(),
223                         None,
224                         &odir,
225                         &ofile,
226                     );
227
228                     if should_stop == Compilation::Stop {
229                         return;
230                     }
231                     early_error(sopts.error_format, "no input filename given")
232                 });
233                 return Ok(());
234             }
235             1 => panic!("make_input should have provided valid inputs"),
236             _ => early_error(
237                 sopts.error_format,
238                 &format!(
239                     "multiple input filenames provided (first two filenames are `{}` and `{}`)",
240                     matches.free[0], matches.free[1],
241                 ),
242             ),
243         },
244     };
245
246     if let Some(err) = input_err {
247         // Immediately stop compilation if there was an issue reading
248         // the input (for example if the input stream is not UTF-8).
249         interface::run_compiler(dummy_config(sopts, cfg, diagnostic_output), |compiler| {
250             compiler.session().err(&err.to_string());
251         });
252         return Err(ErrorReported);
253     }
254
255     let mut config = interface::Config {
256         opts: sopts,
257         crate_cfg: cfg,
258         input,
259         input_path: input_file_path,
260         output_file: ofile,
261         output_dir: odir,
262         file_loader,
263         diagnostic_output,
264         stderr: None,
265         crate_name: None,
266         lint_caps: Default::default(),
267         register_lints: None,
268         override_queries: None,
269         registry: diagnostics_registry(),
270     };
271
272     callbacks.config(&mut config);
273
274     interface::run_compiler(config, |compiler| {
275         let sess = compiler.session();
276         let should_stop = RustcDefaultCalls::print_crate_info(
277             &***compiler.codegen_backend(),
278             sess,
279             Some(compiler.input()),
280             compiler.output_dir(),
281             compiler.output_file(),
282         )
283         .and_then(|| {
284             RustcDefaultCalls::list_metadata(
285                 sess,
286                 &*compiler.codegen_backend().metadata_loader(),
287                 &matches,
288                 compiler.input(),
289             )
290         });
291
292         if should_stop == Compilation::Stop {
293             return sess.compile_status();
294         }
295
296         let linker = compiler.enter(|queries| {
297             let early_exit = || sess.compile_status().map(|_| None);
298             queries.parse()?;
299
300             if let Some(ppm) = &sess.opts.pretty {
301                 if ppm.needs_ast_map() {
302                     queries.global_ctxt()?.peek_mut().enter(|tcx| {
303                         let expanded_crate = queries.expansion()?.take().0;
304                         pretty::print_after_hir_lowering(
305                             tcx,
306                             compiler.input(),
307                             &expanded_crate,
308                             *ppm,
309                             compiler.output_file().as_ref().map(|p| &**p),
310                         );
311                         Ok(())
312                     })?;
313                 } else {
314                     let krate = queries.parse()?.take();
315                     pretty::print_after_parsing(
316                         sess,
317                         &compiler.input(),
318                         &krate,
319                         *ppm,
320                         compiler.output_file().as_ref().map(|p| &**p),
321                     );
322                 }
323                 return early_exit();
324             }
325
326             if callbacks.after_parsing(compiler, queries) == Compilation::Stop {
327                 return early_exit();
328             }
329
330             if sess.opts.debugging_opts.parse_only
331                 || sess.opts.debugging_opts.show_span.is_some()
332                 || sess.opts.debugging_opts.ast_json_noexpand
333             {
334                 return early_exit();
335             }
336
337             {
338                 let (_, lint_store) = &*queries.register_plugins()?.peek();
339
340                 // Lint plugins are registered; now we can process command line flags.
341                 if sess.opts.describe_lints {
342                     describe_lints(&sess, &lint_store, true);
343                     return early_exit();
344                 }
345             }
346
347             queries.expansion()?;
348             if callbacks.after_expansion(compiler, queries) == Compilation::Stop {
349                 return early_exit();
350             }
351
352             queries.prepare_outputs()?;
353
354             if sess.opts.output_types.contains_key(&OutputType::DepInfo)
355                 && sess.opts.output_types.len() == 1
356             {
357                 return early_exit();
358             }
359
360             queries.global_ctxt()?;
361
362             if sess.opts.debugging_opts.no_analysis || sess.opts.debugging_opts.ast_json {
363                 return early_exit();
364             }
365
366             if sess.opts.debugging_opts.save_analysis {
367                 let expanded_crate = &queries.expansion()?.peek().0;
368                 let crate_name = queries.crate_name()?.peek().clone();
369                 queries.global_ctxt()?.peek_mut().enter(|tcx| {
370                     let result = tcx.analysis(LOCAL_CRATE);
371
372                     sess.time("save_analysis", || {
373                         save::process_crate(
374                             tcx,
375                             &expanded_crate,
376                             &crate_name,
377                             &compiler.input(),
378                             None,
379                             DumpHandler::new(
380                                 compiler.output_dir().as_ref().map(|p| &**p),
381                                 &crate_name,
382                             ),
383                         )
384                     });
385
386                     result
387                     // AST will be dropped *after* the `after_analysis` callback
388                     // (needed by the RLS)
389                 })?;
390             } else {
391                 // Drop AST after creating GlobalCtxt to free memory
392                 mem::drop(queries.expansion()?.take());
393             }
394
395             queries.global_ctxt()?.peek_mut().enter(|tcx| tcx.analysis(LOCAL_CRATE))?;
396
397             if callbacks.after_analysis(compiler, queries) == Compilation::Stop {
398                 return early_exit();
399             }
400
401             if sess.opts.debugging_opts.save_analysis {
402                 mem::drop(queries.expansion()?.take());
403             }
404
405             queries.ongoing_codegen()?;
406
407             if sess.opts.debugging_opts.print_type_sizes {
408                 sess.code_stats.print_type_sizes();
409             }
410
411             let linker = queries.linker()?;
412             Ok(Some(linker))
413         })?;
414
415         if let Some(linker) = linker {
416             linker.link()?
417         }
418
419         if sess.opts.debugging_opts.perf_stats {
420             sess.print_perf_stats();
421         }
422
423         if sess.print_fuel_crate.is_some() {
424             eprintln!(
425                 "Fuel used by {}: {}",
426                 sess.print_fuel_crate.as_ref().unwrap(),
427                 sess.print_fuel.load(SeqCst)
428             );
429         }
430
431         Ok(())
432     })
433 }
434
435 #[cfg(unix)]
436 pub fn set_sigpipe_handler() {
437     unsafe {
438         // Set the SIGPIPE signal handler, so that an EPIPE
439         // will cause rustc to terminate, as expected.
440         assert_ne!(libc::signal(libc::SIGPIPE, libc::SIG_DFL), libc::SIG_ERR);
441     }
442 }
443
444 #[cfg(windows)]
445 pub fn set_sigpipe_handler() {}
446
447 // Extract output directory and file from matches.
448 fn make_output(matches: &getopts::Matches) -> (Option<PathBuf>, Option<PathBuf>) {
449     let odir = matches.opt_str("out-dir").map(|o| PathBuf::from(&o));
450     let ofile = matches.opt_str("o").map(|o| PathBuf::from(&o));
451     (odir, ofile)
452 }
453
454 // Extract input (string or file and optional path) from matches.
455 fn make_input(free_matches: &[String]) -> Option<(Input, Option<PathBuf>, Option<io::Error>)> {
456     if free_matches.len() == 1 {
457         let ifile = &free_matches[0];
458         if ifile == "-" {
459             let mut src = String::new();
460             let err = if io::stdin().read_to_string(&mut src).is_err() {
461                 Some(io::Error::new(
462                     io::ErrorKind::InvalidData,
463                     "couldn't read from stdin, as it did not contain valid UTF-8",
464                 ))
465             } else {
466                 None
467             };
468             if let Ok(path) = env::var("UNSTABLE_RUSTDOC_TEST_PATH") {
469                 let line = env::var("UNSTABLE_RUSTDOC_TEST_LINE").expect(
470                     "when UNSTABLE_RUSTDOC_TEST_PATH is set \
471                                     UNSTABLE_RUSTDOC_TEST_LINE also needs to be set",
472                 );
473                 let line = isize::from_str_radix(&line, 10)
474                     .expect("UNSTABLE_RUSTDOC_TEST_LINE needs to be an number");
475                 let file_name = FileName::doc_test_source_code(PathBuf::from(path), line);
476                 return Some((Input::Str { name: file_name, input: src }, None, err));
477             }
478             Some((Input::Str { name: FileName::anon_source_code(&src), input: src }, None, err))
479         } else {
480             Some((Input::File(PathBuf::from(ifile)), Some(PathBuf::from(ifile)), None))
481         }
482     } else {
483         None
484     }
485 }
486
487 // Whether to stop or continue compilation.
488 #[derive(Copy, Clone, Debug, Eq, PartialEq)]
489 pub enum Compilation {
490     Stop,
491     Continue,
492 }
493
494 impl Compilation {
495     pub fn and_then<F: FnOnce() -> Compilation>(self, next: F) -> Compilation {
496         match self {
497             Compilation::Stop => Compilation::Stop,
498             Compilation::Continue => next(),
499         }
500     }
501 }
502
503 /// CompilerCalls instance for a regular rustc build.
504 #[derive(Copy, Clone)]
505 pub struct RustcDefaultCalls;
506
507 // FIXME remove these and use winapi 0.3 instead
508 // Duplicates: bootstrap/compile.rs, librustc_errors/emitter.rs
509 #[cfg(unix)]
510 fn stdout_isatty() -> bool {
511     unsafe { libc::isatty(libc::STDOUT_FILENO) != 0 }
512 }
513
514 #[cfg(windows)]
515 fn stdout_isatty() -> bool {
516     type DWORD = u32;
517     type BOOL = i32;
518     type HANDLE = *mut u8;
519     type LPDWORD = *mut u32;
520     const STD_OUTPUT_HANDLE: DWORD = -11i32 as DWORD;
521     extern "system" {
522         fn GetStdHandle(which: DWORD) -> HANDLE;
523         fn GetConsoleMode(hConsoleHandle: HANDLE, lpMode: LPDWORD) -> BOOL;
524     }
525     unsafe {
526         let handle = GetStdHandle(STD_OUTPUT_HANDLE);
527         let mut out = 0;
528         GetConsoleMode(handle, &mut out) != 0
529     }
530 }
531
532 fn handle_explain(registry: Registry, code: &str, output: ErrorOutputType) {
533     let normalised =
534         if code.starts_with("E") { code.to_string() } else { format!("E{0:0>4}", code) };
535     match registry.find_description(&normalised) {
536         Some(ref description) => {
537             let mut is_in_code_block = false;
538             let mut text = String::new();
539
540             // Slice off the leading newline and print.
541             for line in description.lines() {
542                 let indent_level =
543                     line.find(|c: char| !c.is_whitespace()).unwrap_or_else(|| line.len());
544                 let dedented_line = &line[indent_level..];
545                 if dedented_line.starts_with("```") {
546                     is_in_code_block = !is_in_code_block;
547                     text.push_str(&line[..(indent_level + 3)]);
548                 } else if is_in_code_block && dedented_line.starts_with("# ") {
549                     continue;
550                 } else {
551                     text.push_str(line);
552                 }
553                 text.push('\n');
554             }
555
556             if stdout_isatty() {
557                 show_content_with_pager(&text);
558             } else {
559                 print!("{}", text);
560             }
561         }
562         None => {
563             early_error(output, &format!("no extended information for {}", code));
564         }
565     }
566 }
567
568 fn show_content_with_pager(content: &String) {
569     let pager_name = env::var_os("PAGER").unwrap_or_else(|| {
570         if cfg!(windows) { OsString::from("more.com") } else { OsString::from("less") }
571     });
572
573     let mut fallback_to_println = false;
574
575     match Command::new(pager_name).stdin(Stdio::piped()).spawn() {
576         Ok(mut pager) => {
577             if let Some(pipe) = pager.stdin.as_mut() {
578                 if pipe.write_all(content.as_bytes()).is_err() {
579                     fallback_to_println = true;
580                 }
581             }
582
583             if pager.wait().is_err() {
584                 fallback_to_println = true;
585             }
586         }
587         Err(_) => {
588             fallback_to_println = true;
589         }
590     }
591
592     // If pager fails for whatever reason, we should still print the content
593     // to standard output
594     if fallback_to_println {
595         print!("{}", content);
596     }
597 }
598
599 impl RustcDefaultCalls {
600     pub fn list_metadata(
601         sess: &Session,
602         metadata_loader: &dyn MetadataLoader,
603         matches: &getopts::Matches,
604         input: &Input,
605     ) -> Compilation {
606         let r = matches.opt_strs("Z");
607         if r.iter().any(|s| *s == "ls") {
608             match input {
609                 &Input::File(ref ifile) => {
610                     let path = &(*ifile);
611                     let mut v = Vec::new();
612                     locator::list_file_metadata(&sess.target.target, path, metadata_loader, &mut v)
613                         .unwrap();
614                     println!("{}", String::from_utf8(v).unwrap());
615                 }
616                 &Input::Str { .. } => {
617                     early_error(ErrorOutputType::default(), "cannot list metadata for stdin");
618                 }
619             }
620             return Compilation::Stop;
621         }
622
623         Compilation::Continue
624     }
625
626     fn print_crate_info(
627         codegen_backend: &dyn CodegenBackend,
628         sess: &Session,
629         input: Option<&Input>,
630         odir: &Option<PathBuf>,
631         ofile: &Option<PathBuf>,
632     ) -> Compilation {
633         use rustc::session::config::PrintRequest::*;
634         // PrintRequest::NativeStaticLibs is special - printed during linking
635         // (empty iterator returns true)
636         if sess.opts.prints.iter().all(|&p| p == PrintRequest::NativeStaticLibs) {
637             return Compilation::Continue;
638         }
639
640         let attrs = match input {
641             None => None,
642             Some(input) => {
643                 let result = parse_crate_attrs(sess, input);
644                 match result {
645                     Ok(attrs) => Some(attrs),
646                     Err(mut parse_error) => {
647                         parse_error.emit();
648                         return Compilation::Stop;
649                     }
650                 }
651             }
652         };
653         for req in &sess.opts.prints {
654             match *req {
655                 TargetList => {
656                     let mut targets = rustc_target::spec::get_targets().collect::<Vec<String>>();
657                     targets.sort();
658                     println!("{}", targets.join("\n"));
659                 }
660                 Sysroot => println!("{}", sess.sysroot.display()),
661                 TargetSpec => println!("{}", sess.target.target.to_json().pretty()),
662                 FileNames | CrateName => {
663                     let input = input.unwrap_or_else(|| {
664                         early_error(ErrorOutputType::default(), "no input file provided")
665                     });
666                     let attrs = attrs.as_ref().unwrap();
667                     let t_outputs = rustc_interface::util::build_output_filenames(
668                         input, odir, ofile, attrs, sess,
669                     );
670                     let id = rustc_codegen_utils::link::find_crate_name(Some(sess), attrs, input);
671                     if *req == PrintRequest::CrateName {
672                         println!("{}", id);
673                         continue;
674                     }
675                     let crate_types = rustc_interface::util::collect_crate_types(sess, attrs);
676                     for &style in &crate_types {
677                         let fname = rustc_codegen_utils::link::filename_for_input(
678                             sess, style, &id, &t_outputs,
679                         );
680                         println!("{}", fname.file_name().unwrap().to_string_lossy());
681                     }
682                 }
683                 Cfg => {
684                     let allow_unstable_cfg =
685                         UnstableFeatures::from_environment().is_nightly_build();
686
687                     let mut cfgs = sess
688                         .parse_sess
689                         .config
690                         .iter()
691                         .filter_map(|&(name, ref value)| {
692                             // Note that crt-static is a specially recognized cfg
693                             // directive that's printed out here as part of
694                             // rust-lang/rust#37406, but in general the
695                             // `target_feature` cfg is gated under
696                             // rust-lang/rust#29717. For now this is just
697                             // specifically allowing the crt-static cfg and that's
698                             // it, this is intended to get into Cargo and then go
699                             // through to build scripts.
700                             let value = value.as_ref().map(|s| s.as_str());
701                             let value = value.as_ref().map(|s| s.as_ref());
702                             if (name != sym::target_feature || value != Some("crt-static"))
703                                 && !allow_unstable_cfg
704                                 && find_gated_cfg(|cfg_sym| cfg_sym == name).is_some()
705                             {
706                                 return None;
707                             }
708
709                             if let Some(value) = value {
710                                 Some(format!("{}=\"{}\"", name, value))
711                             } else {
712                                 Some(name.to_string())
713                             }
714                         })
715                         .collect::<Vec<String>>();
716
717                     cfgs.sort();
718                     for cfg in cfgs {
719                         println!("{}", cfg);
720                     }
721                 }
722                 RelocationModels | CodeModels | TlsModels | TargetCPUs | TargetFeatures => {
723                     codegen_backend.print(*req, sess);
724                 }
725                 // Any output here interferes with Cargo's parsing of other printed output
726                 PrintRequest::NativeStaticLibs => {}
727             }
728         }
729         return Compilation::Stop;
730     }
731 }
732
733 /// Returns a version string such as "0.12.0-dev".
734 fn release_str() -> Option<&'static str> {
735     option_env!("CFG_RELEASE")
736 }
737
738 /// Returns the full SHA1 hash of HEAD of the Git repo from which rustc was built.
739 fn commit_hash_str() -> Option<&'static str> {
740     option_env!("CFG_VER_HASH")
741 }
742
743 /// Returns the "commit date" of HEAD of the Git repo from which rustc was built as a static string.
744 fn commit_date_str() -> Option<&'static str> {
745     option_env!("CFG_VER_DATE")
746 }
747
748 /// Prints version information
749 pub fn version(binary: &str, matches: &getopts::Matches) {
750     let verbose = matches.opt_present("verbose");
751
752     println!("{} {}", binary, option_env!("CFG_VERSION").unwrap_or("unknown version"));
753
754     if verbose {
755         fn unw(x: Option<&str>) -> &str {
756             x.unwrap_or("unknown")
757         }
758         println!("binary: {}", binary);
759         println!("commit-hash: {}", unw(commit_hash_str()));
760         println!("commit-date: {}", unw(commit_date_str()));
761         println!("host: {}", config::host_triple());
762         println!("release: {}", unw(release_str()));
763         get_builtin_codegen_backend("llvm")().print_version();
764     }
765 }
766
767 fn usage(verbose: bool, include_unstable_options: bool) {
768     let groups = if verbose { config::rustc_optgroups() } else { config::rustc_short_optgroups() };
769     let mut options = getopts::Options::new();
770     for option in groups.iter().filter(|x| include_unstable_options || x.is_stable()) {
771         (option.apply)(&mut options);
772     }
773     let message = "Usage: rustc [OPTIONS] INPUT";
774     let nightly_help = if nightly_options::is_nightly_build() {
775         "\n    -Z help             Print unstable compiler options"
776     } else {
777         ""
778     };
779     let verbose_help = if verbose {
780         ""
781     } else {
782         "\n    --help -v           Print the full set of options rustc accepts"
783     };
784     let at_path = if verbose && nightly_options::is_nightly_build() {
785         "    @path               Read newline separated options from `path`\n"
786     } else {
787         ""
788     };
789     println!(
790         "{options}{at_path}\nAdditional help:
791     -C help             Print codegen options
792     -W help             \
793               Print 'lint' options and default settings{nightly}{verbose}\n",
794         options = options.usage(message),
795         at_path = at_path,
796         nightly = nightly_help,
797         verbose = verbose_help
798     );
799 }
800
801 fn print_wall_help() {
802     println!(
803         "
804 The flag `-Wall` does not exist in `rustc`. Most useful lints are enabled by
805 default. Use `rustc -W help` to see all available lints. It's more common to put
806 warning settings in the crate root using `#![warn(LINT_NAME)]` instead of using
807 the command line flag directly.
808 "
809     );
810 }
811
812 fn describe_lints(sess: &Session, lint_store: &lint::LintStore, loaded_plugins: bool) {
813     println!(
814         "
815 Available lint options:
816     -W <foo>           Warn about <foo>
817     -A <foo>           \
818               Allow <foo>
819     -D <foo>           Deny <foo>
820     -F <foo>           Forbid <foo> \
821               (deny <foo> and all attempts to override)
822
823 "
824     );
825
826     fn sort_lints(sess: &Session, mut lints: Vec<&'static Lint>) -> Vec<&'static Lint> {
827         // The sort doesn't case-fold but it's doubtful we care.
828         lints.sort_by_cached_key(|x: &&Lint| (x.default_level(sess.edition()), x.name));
829         lints
830     }
831
832     fn sort_lint_groups(
833         lints: Vec<(&'static str, Vec<lint::LintId>, bool)>,
834     ) -> Vec<(&'static str, Vec<lint::LintId>)> {
835         let mut lints: Vec<_> = lints.into_iter().map(|(x, y, _)| (x, y)).collect();
836         lints.sort_by_key(|l| l.0);
837         lints
838     }
839
840     let (plugin, builtin): (Vec<_>, _) =
841         lint_store.get_lints().iter().cloned().partition(|&lint| lint.is_plugin);
842     let plugin = sort_lints(sess, plugin);
843     let builtin = sort_lints(sess, builtin);
844
845     let (plugin_groups, builtin_groups): (Vec<_>, _) =
846         lint_store.get_lint_groups().iter().cloned().partition(|&(.., p)| p);
847     let plugin_groups = sort_lint_groups(plugin_groups);
848     let builtin_groups = sort_lint_groups(builtin_groups);
849
850     let max_name_len =
851         plugin.iter().chain(&builtin).map(|&s| s.name.chars().count()).max().unwrap_or(0);
852     let padded = |x: &str| {
853         let mut s = " ".repeat(max_name_len - x.chars().count());
854         s.push_str(x);
855         s
856     };
857
858     println!("Lint checks provided by rustc:\n");
859     println!("    {}  {:7.7}  {}", padded("name"), "default", "meaning");
860     println!("    {}  {:7.7}  {}", padded("----"), "-------", "-------");
861
862     let print_lints = |lints: Vec<&Lint>| {
863         for lint in lints {
864             let name = lint.name_lower().replace("_", "-");
865             println!("    {}  {:7.7}  {}", padded(&name), lint.default_level.as_str(), lint.desc);
866         }
867         println!("\n");
868     };
869
870     print_lints(builtin);
871
872     let max_name_len = max(
873         "warnings".len(),
874         plugin_groups
875             .iter()
876             .chain(&builtin_groups)
877             .map(|&(s, _)| s.chars().count())
878             .max()
879             .unwrap_or(0),
880     );
881
882     let padded = |x: &str| {
883         let mut s = " ".repeat(max_name_len - x.chars().count());
884         s.push_str(x);
885         s
886     };
887
888     println!("Lint groups provided by rustc:\n");
889     println!("    {}  {}", padded("name"), "sub-lints");
890     println!("    {}  {}", padded("----"), "---------");
891     println!("    {}  {}", padded("warnings"), "all lints that are set to issue warnings");
892
893     let print_lint_groups = |lints: Vec<(&'static str, Vec<lint::LintId>)>| {
894         for (name, to) in lints {
895             let name = name.to_lowercase().replace("_", "-");
896             let desc = to
897                 .into_iter()
898                 .map(|x| x.to_string().replace("_", "-"))
899                 .collect::<Vec<String>>()
900                 .join(", ");
901             println!("    {}  {}", padded(&name), desc);
902         }
903         println!("\n");
904     };
905
906     print_lint_groups(builtin_groups);
907
908     match (loaded_plugins, plugin.len(), plugin_groups.len()) {
909         (false, 0, _) | (false, _, 0) => {
910             println!(
911                 "Compiler plugins can provide additional lints and lint groups. To see a \
912                       listing of these, re-run `rustc -W help` with a crate filename."
913             );
914         }
915         (false, ..) => panic!("didn't load lint plugins but got them anyway!"),
916         (true, 0, 0) => println!("This crate does not load any lint plugins or lint groups."),
917         (true, l, g) => {
918             if l > 0 {
919                 println!("Lint checks provided by plugins loaded by this crate:\n");
920                 print_lints(plugin);
921             }
922             if g > 0 {
923                 println!("Lint groups provided by plugins loaded by this crate:\n");
924                 print_lint_groups(plugin_groups);
925             }
926         }
927     }
928 }
929
930 fn describe_debug_flags() {
931     println!("\nAvailable options:\n");
932     print_flag_list("-Z", config::DB_OPTIONS);
933 }
934
935 fn describe_codegen_flags() {
936     println!("\nAvailable codegen options:\n");
937     print_flag_list("-C", config::CG_OPTIONS);
938 }
939
940 fn print_flag_list<T>(
941     cmdline_opt: &str,
942     flag_list: &[(&'static str, T, Option<&'static str>, &'static str)],
943 ) {
944     let max_len = flag_list
945         .iter()
946         .map(|&(name, _, opt_type_desc, _)| {
947             let extra_len = match opt_type_desc {
948                 Some(..) => 4,
949                 None => 0,
950             };
951             name.chars().count() + extra_len
952         })
953         .max()
954         .unwrap_or(0);
955
956     for &(name, _, opt_type_desc, desc) in flag_list {
957         let (width, extra) = match opt_type_desc {
958             Some(..) => (max_len - 4, "=val"),
959             None => (max_len, ""),
960         };
961         println!(
962             "    {} {:>width$}{} -- {}",
963             cmdline_opt,
964             name.replace("_", "-"),
965             extra,
966             desc,
967             width = width
968         );
969     }
970 }
971
972 /// Process command line options. Emits messages as appropriate. If compilation
973 /// should continue, returns a getopts::Matches object parsed from args,
974 /// otherwise returns `None`.
975 ///
976 /// The compiler's handling of options is a little complicated as it ties into
977 /// our stability story. The current intention of each compiler option is to
978 /// have one of two modes:
979 ///
980 /// 1. An option is stable and can be used everywhere.
981 /// 2. An option is unstable, and can only be used on nightly.
982 ///
983 /// Like unstable library and language features, however, unstable options have
984 /// always required a form of "opt in" to indicate that you're using them. This
985 /// provides the easy ability to scan a code base to check to see if anything
986 /// unstable is being used. Currently, this "opt in" is the `-Z` "zed" flag.
987 ///
988 /// All options behind `-Z` are considered unstable by default. Other top-level
989 /// options can also be considered unstable, and they were unlocked through the
990 /// `-Z unstable-options` flag. Note that `-Z` remains to be the root of
991 /// instability in both cases, though.
992 ///
993 /// So with all that in mind, the comments below have some more detail about the
994 /// contortions done here to get things to work out correctly.
995 pub fn handle_options(args: &[String]) -> Option<getopts::Matches> {
996     // Throw away the first argument, the name of the binary
997     let args = &args[1..];
998
999     if args.is_empty() {
1000         // user did not write `-v` nor `-Z unstable-options`, so do not
1001         // include that extra information.
1002         usage(false, false);
1003         return None;
1004     }
1005
1006     // Parse with *all* options defined in the compiler, we don't worry about
1007     // option stability here we just want to parse as much as possible.
1008     let mut options = getopts::Options::new();
1009     for option in config::rustc_optgroups() {
1010         (option.apply)(&mut options);
1011     }
1012     let matches = options
1013         .parse(args)
1014         .unwrap_or_else(|f| early_error(ErrorOutputType::default(), &f.to_string()));
1015
1016     // For all options we just parsed, we check a few aspects:
1017     //
1018     // * If the option is stable, we're all good
1019     // * If the option wasn't passed, we're all good
1020     // * If `-Z unstable-options` wasn't passed (and we're not a -Z option
1021     //   ourselves), then we require the `-Z unstable-options` flag to unlock
1022     //   this option that was passed.
1023     // * If we're a nightly compiler, then unstable options are now unlocked, so
1024     //   we're good to go.
1025     // * Otherwise, if we're an unstable option then we generate an error
1026     //   (unstable option being used on stable)
1027     nightly_options::check_nightly_options(&matches, &config::rustc_optgroups());
1028
1029     if matches.opt_present("h") || matches.opt_present("help") {
1030         // Only show unstable options in --help if we accept unstable options.
1031         usage(matches.opt_present("verbose"), nightly_options::is_unstable_enabled(&matches));
1032         return None;
1033     }
1034
1035     // Handle the special case of -Wall.
1036     let wall = matches.opt_strs("W");
1037     if wall.iter().any(|x| *x == "all") {
1038         print_wall_help();
1039         return None;
1040     }
1041
1042     // Don't handle -W help here, because we might first load plugins.
1043     let r = matches.opt_strs("Z");
1044     if r.iter().any(|x| *x == "help") {
1045         describe_debug_flags();
1046         return None;
1047     }
1048
1049     let cg_flags = matches.opt_strs("C");
1050
1051     if cg_flags.iter().any(|x| *x == "help") {
1052         describe_codegen_flags();
1053         return None;
1054     }
1055
1056     if cg_flags.iter().any(|x| *x == "no-stack-check") {
1057         early_warn(
1058             ErrorOutputType::default(),
1059             "the --no-stack-check flag is deprecated and does nothing",
1060         );
1061     }
1062
1063     if cg_flags.iter().any(|x| *x == "passes=list") {
1064         get_builtin_codegen_backend("llvm")().print_passes();
1065         return None;
1066     }
1067
1068     if matches.opt_present("version") {
1069         version("rustc", &matches);
1070         return None;
1071     }
1072
1073     Some(matches)
1074 }
1075
1076 fn parse_crate_attrs<'a>(sess: &'a Session, input: &Input) -> PResult<'a, Vec<ast::Attribute>> {
1077     match input {
1078         Input::File(ifile) => rustc_parse::parse_crate_attrs_from_file(ifile, &sess.parse_sess),
1079         Input::Str { name, input } => rustc_parse::parse_crate_attrs_from_source_str(
1080             name.clone(),
1081             input.clone(),
1082             &sess.parse_sess,
1083         ),
1084     }
1085 }
1086
1087 /// Gets a list of extra command-line flags provided by the user, as strings.
1088 ///
1089 /// This function is used during ICEs to show more information useful for
1090 /// debugging, since some ICEs only happens with non-default compiler flags
1091 /// (and the users don't always report them).
1092 fn extra_compiler_flags() -> Option<(Vec<String>, bool)> {
1093     let args = env::args_os().map(|arg| arg.to_string_lossy().to_string()).collect::<Vec<_>>();
1094
1095     // Avoid printing help because of empty args. This can suggest the compiler
1096     // itself is not the program root (consider RLS).
1097     if args.len() < 2 {
1098         return None;
1099     }
1100
1101     let matches = if let Some(matches) = handle_options(&args) {
1102         matches
1103     } else {
1104         return None;
1105     };
1106
1107     let mut result = Vec::new();
1108     let mut excluded_cargo_defaults = false;
1109     for flag in ICE_REPORT_COMPILER_FLAGS {
1110         let prefix = if flag.len() == 1 { "-" } else { "--" };
1111
1112         for content in &matches.opt_strs(flag) {
1113             // Split always returns the first element
1114             let name = if let Some(first) = content.split('=').next() { first } else { &content };
1115
1116             let content =
1117                 if ICE_REPORT_COMPILER_FLAGS_STRIP_VALUE.contains(&name) { name } else { content };
1118
1119             if !ICE_REPORT_COMPILER_FLAGS_EXCLUDE.contains(&name) {
1120                 result.push(format!("{}{} {}", prefix, flag, content));
1121             } else {
1122                 excluded_cargo_defaults = true;
1123             }
1124         }
1125     }
1126
1127     if !result.is_empty() { Some((result, excluded_cargo_defaults)) } else { None }
1128 }
1129
1130 /// Runs a closure and catches unwinds triggered by fatal errors.
1131 ///
1132 /// The compiler currently unwinds with a special sentinel value to abort
1133 /// compilation on fatal errors. This function catches that sentinel and turns
1134 /// the panic into a `Result` instead.
1135 pub fn catch_fatal_errors<F: FnOnce() -> R, R>(f: F) -> Result<R, ErrorReported> {
1136     catch_unwind(panic::AssertUnwindSafe(f)).map_err(|value| {
1137         if value.is::<errors::FatalErrorMarker>() {
1138             ErrorReported
1139         } else {
1140             panic::resume_unwind(value);
1141         }
1142     })
1143 }
1144
1145 lazy_static! {
1146     static ref DEFAULT_HOOK: Box<dyn Fn(&panic::PanicInfo<'_>) + Sync + Send + 'static> = {
1147         let hook = panic::take_hook();
1148         panic::set_hook(Box::new(|info| report_ice(info, BUG_REPORT_URL)));
1149         hook
1150     };
1151 }
1152
1153 /// Prints the ICE message, including backtrace and query stack.
1154 ///
1155 /// The message will point the user at `bug_report_url` to report the ICE.
1156 ///
1157 /// When `install_ice_hook` is called, this function will be called as the panic
1158 /// hook.
1159 pub fn report_ice(info: &panic::PanicInfo<'_>, bug_report_url: &str) {
1160     // Invoke the default handler, which prints the actual panic message and optionally a backtrace
1161     (*DEFAULT_HOOK)(info);
1162
1163     // Separate the output with an empty line
1164     eprintln!();
1165
1166     let emitter = Box::new(errors::emitter::EmitterWriter::stderr(
1167         errors::ColorConfig::Auto,
1168         None,
1169         false,
1170         false,
1171         None,
1172         false,
1173     ));
1174     let handler = errors::Handler::with_emitter(true, None, emitter);
1175
1176     // a .span_bug or .bug call has already printed what
1177     // it wants to print.
1178     if !info.payload().is::<errors::ExplicitBug>() {
1179         let d = errors::Diagnostic::new(errors::Level::Bug, "unexpected panic");
1180         handler.emit_diagnostic(&d);
1181     }
1182
1183     let mut xs: Vec<Cow<'static, str>> = vec![
1184         "the compiler unexpectedly panicked. this is a bug.".into(),
1185         format!("we would appreciate a bug report: {}", bug_report_url).into(),
1186         format!(
1187             "rustc {} running on {}",
1188             option_env!("CFG_VERSION").unwrap_or("unknown_version"),
1189             config::host_triple()
1190         )
1191         .into(),
1192     ];
1193
1194     if let Some((flags, excluded_cargo_defaults)) = extra_compiler_flags() {
1195         xs.push(format!("compiler flags: {}", flags.join(" ")).into());
1196
1197         if excluded_cargo_defaults {
1198             xs.push("some of the compiler flags provided by cargo are hidden".into());
1199         }
1200     }
1201
1202     for note in &xs {
1203         handler.note_without_error(&note);
1204     }
1205
1206     // If backtraces are enabled, also print the query stack
1207     let backtrace = env::var_os("RUST_BACKTRACE").map(|x| &x != "0").unwrap_or(false);
1208
1209     if backtrace {
1210         TyCtxt::try_print_query_stack(&handler);
1211     }
1212
1213     #[cfg(windows)]
1214     unsafe {
1215         if env::var("RUSTC_BREAK_ON_ICE").is_ok() {
1216             extern "system" {
1217                 fn DebugBreak();
1218             }
1219             // Trigger a debugger if we crashed during bootstrap
1220             DebugBreak();
1221         }
1222     }
1223 }
1224
1225 /// Installs a panic hook that will print the ICE message on unexpected panics.
1226 ///
1227 /// A custom rustc driver can skip calling this to set up a custom ICE hook.
1228 pub fn install_ice_hook() {
1229     lazy_static::initialize(&DEFAULT_HOOK);
1230 }
1231
1232 /// This allows tools to enable rust logging without having to magically match rustc's
1233 /// log crate version
1234 pub fn init_rustc_env_logger() {
1235     env_logger::init_from_env("RUSTC_LOG");
1236 }
1237
1238 pub fn main() {
1239     let start = Instant::now();
1240     init_rustc_env_logger();
1241     let mut callbacks = TimePassesCallbacks::default();
1242     install_ice_hook();
1243     let result = catch_fatal_errors(|| {
1244         let args = env::args_os()
1245             .enumerate()
1246             .map(|(i, arg)| {
1247                 arg.into_string().unwrap_or_else(|arg| {
1248                     early_error(
1249                         ErrorOutputType::default(),
1250                         &format!("Argument {} is not valid Unicode: {:?}", i, arg),
1251                     )
1252                 })
1253             })
1254             .collect::<Vec<_>>();
1255         run_compiler(&args, &mut callbacks, None, None)
1256     })
1257     .and_then(|result| result);
1258     let exit_code = match result {
1259         Ok(_) => EXIT_SUCCESS,
1260         Err(_) => EXIT_FAILURE,
1261     };
1262     // The extra `\t` is necessary to align this label with the others.
1263     print_time_passes_entry(callbacks.time_passes, "\ttotal", start.elapsed());
1264     process::exit(exit_code);
1265 }