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