]> git.lizzy.rs Git - rust.git/blob - src/librustc_interface/passes.rs
1a9bf4e1e8f3d0268f877df2cd00ffcb99f7d8ac
[rust.git] / src / librustc_interface / passes.rs
1 use crate::interface::{Compiler, Result};
2 use crate::proc_macro_decls;
3 use crate::util;
4
5 use log::{info, log_enabled, warn};
6 use rustc_ast::mut_visit::MutVisitor;
7 use rustc_ast::{self, ast, visit};
8 use rustc_codegen_ssa::back::link::emit_metadata;
9 use rustc_codegen_ssa::traits::CodegenBackend;
10 use rustc_data_structures::sync::{par_iter, Lrc, OnceCell, ParallelIterator, WorkerLocal};
11 use rustc_data_structures::{box_region_allow_access, declare_box_region_type, parallel};
12 use rustc_errors::{ErrorReported, PResult};
13 use rustc_expand::base::ExtCtxt;
14 use rustc_hir::def_id::{CrateNum, LOCAL_CRATE};
15 use rustc_hir::definitions::Definitions;
16 use rustc_hir::Crate;
17 use rustc_lint::LintStore;
18 use rustc_middle::arena::Arena;
19 use rustc_middle::dep_graph::DepGraph;
20 use rustc_middle::middle;
21 use rustc_middle::middle::cstore::{CrateStore, MetadataLoader, MetadataLoaderDyn};
22 use rustc_middle::ty::steal::Steal;
23 use rustc_middle::ty::{self, GlobalCtxt, ResolverOutputs, TyCtxt};
24 use rustc_mir as mir;
25 use rustc_mir_build as mir_build;
26 use rustc_parse::{parse_crate_from_file, parse_crate_from_source_str};
27 use rustc_passes::{self, hir_stats, layout_test};
28 use rustc_plugin_impl as plugin;
29 use rustc_resolve::{Resolver, ResolverArenas};
30 use rustc_session::config::{CrateType, Input, OutputFilenames, OutputType, PpMode, PpSourceMode};
31 use rustc_session::lint;
32 use rustc_session::output::{filename_for_input, filename_for_metadata};
33 use rustc_session::search_paths::PathKind;
34 use rustc_session::Session;
35 use rustc_span::symbol::Symbol;
36 use rustc_span::{FileName, RealFileName};
37 use rustc_trait_selection::traits;
38 use rustc_typeck as typeck;
39
40 use rustc_serialize::json;
41 use tempfile::Builder as TempFileBuilder;
42
43 use std::any::Any;
44 use std::cell::RefCell;
45 use std::ffi::OsString;
46 use std::io::{self, BufWriter, Write};
47 use std::path::PathBuf;
48 use std::rc::Rc;
49 use std::{env, fs, iter, mem};
50
51 pub fn parse<'a>(sess: &'a Session, input: &Input) -> PResult<'a, ast::Crate> {
52     let krate = sess.time("parse_crate", || match input {
53         Input::File(file) => parse_crate_from_file(file, &sess.parse_sess),
54         Input::Str { input, name } => {
55             parse_crate_from_source_str(name.clone(), input.clone(), &sess.parse_sess)
56         }
57     })?;
58
59     if sess.opts.debugging_opts.ast_json_noexpand {
60         println!("{}", json::as_json(&krate));
61     }
62
63     if sess.opts.debugging_opts.input_stats {
64         println!("Lines of code:             {}", sess.source_map().count_lines());
65         println!("Pre-expansion node count:  {}", count_nodes(&krate));
66     }
67
68     if let Some(ref s) = sess.opts.debugging_opts.show_span {
69         rustc_ast_passes::show_span::run(sess.diagnostic(), s, &krate);
70     }
71
72     if sess.opts.debugging_opts.hir_stats {
73         hir_stats::print_ast_stats(&krate, "PRE EXPANSION AST STATS");
74     }
75
76     Ok(krate)
77 }
78
79 fn count_nodes(krate: &ast::Crate) -> usize {
80     let mut counter = rustc_ast_passes::node_count::NodeCounter::new();
81     visit::walk_crate(&mut counter, krate);
82     counter.count
83 }
84
85 declare_box_region_type!(
86     pub BoxedResolver,
87     for(),
88     (&mut Resolver<'_>) -> (Result<ast::Crate>, ResolverOutputs)
89 );
90
91 /// Runs the "early phases" of the compiler: initial `cfg` processing, loading compiler plugins,
92 /// syntax expansion, secondary `cfg` expansion, synthesis of a test
93 /// harness if one is to be provided, injection of a dependency on the
94 /// standard library and prelude, and name resolution.
95 ///
96 /// Returns `None` if we're aborting after handling -W help.
97 pub fn configure_and_expand(
98     sess: Lrc<Session>,
99     lint_store: Lrc<LintStore>,
100     metadata_loader: Box<MetadataLoaderDyn>,
101     krate: ast::Crate,
102     crate_name: &str,
103 ) -> Result<(ast::Crate, BoxedResolver)> {
104     // Currently, we ignore the name resolution data structures for the purposes of dependency
105     // tracking. Instead we will run name resolution and include its output in the hash of each
106     // item, much like we do for macro expansion. In other words, the hash reflects not just
107     // its contents but the results of name resolution on those contents. Hopefully we'll push
108     // this back at some point.
109     let crate_name = crate_name.to_string();
110     let (result, resolver) = BoxedResolver::new(static move |mut action| {
111         let _ = action;
112         let sess = &*sess;
113         let resolver_arenas = Resolver::arenas();
114         let res = configure_and_expand_inner(
115             sess,
116             &lint_store,
117             krate,
118             &crate_name,
119             &resolver_arenas,
120             &*metadata_loader,
121         );
122         let mut resolver = match res {
123             Err(v) => {
124                 yield BoxedResolver::initial_yield(Err(v));
125                 panic!()
126             }
127             Ok((krate, resolver)) => {
128                 action = yield BoxedResolver::initial_yield(Ok(krate));
129                 resolver
130             }
131         };
132         box_region_allow_access!(for(), (&mut Resolver<'_>), (&mut resolver), action);
133         resolver.into_outputs()
134     });
135     result.map(|k| (k, resolver))
136 }
137
138 impl BoxedResolver {
139     pub fn to_resolver_outputs(resolver: Rc<RefCell<BoxedResolver>>) -> ResolverOutputs {
140         match Rc::try_unwrap(resolver) {
141             Ok(resolver) => resolver.into_inner().complete(),
142             Err(resolver) => resolver.borrow_mut().access(|resolver| resolver.clone_outputs()),
143         }
144     }
145 }
146
147 pub fn register_plugins<'a>(
148     sess: &'a Session,
149     metadata_loader: &'a dyn MetadataLoader,
150     register_lints: impl Fn(&Session, &mut LintStore),
151     mut krate: ast::Crate,
152     crate_name: &str,
153 ) -> Result<(ast::Crate, Lrc<LintStore>)> {
154     krate = sess.time("attributes_injection", || {
155         rustc_builtin_macros::cmdline_attrs::inject(
156             krate,
157             &sess.parse_sess,
158             &sess.opts.debugging_opts.crate_attr,
159         )
160     });
161
162     let (krate, features) = rustc_expand::config::features(
163         krate,
164         &sess.parse_sess,
165         sess.edition(),
166         &sess.opts.debugging_opts.allow_features,
167     );
168     // these need to be set "early" so that expansion sees `quote` if enabled.
169     sess.init_features(features);
170
171     let crate_types = util::collect_crate_types(sess, &krate.attrs);
172     sess.init_crate_types(crate_types);
173
174     let disambiguator = util::compute_crate_disambiguator(sess);
175     sess.crate_disambiguator.set(disambiguator).expect("not yet initialized");
176     rustc_incremental::prepare_session_directory(sess, &crate_name, disambiguator);
177
178     if sess.opts.incremental.is_some() {
179         sess.time("incr_comp_garbage_collect_session_directories", || {
180             if let Err(e) = rustc_incremental::garbage_collect_session_directories(sess) {
181                 warn!(
182                     "Error while trying to garbage collect incremental \
183                      compilation cache directory: {}",
184                     e
185                 );
186             }
187         });
188     }
189
190     sess.time("recursion_limit", || {
191         middle::limits::update_limits(sess, &krate);
192     });
193
194     let mut lint_store = rustc_lint::new_lint_store(
195         sess.opts.debugging_opts.no_interleave_lints,
196         sess.unstable_options(),
197     );
198     register_lints(&sess, &mut lint_store);
199
200     let registrars =
201         sess.time("plugin_loading", || plugin::load::load_plugins(sess, metadata_loader, &krate));
202     sess.time("plugin_registration", || {
203         let mut registry = plugin::Registry { lint_store: &mut lint_store };
204         for registrar in registrars {
205             registrar(&mut registry);
206         }
207     });
208
209     Ok((krate, Lrc::new(lint_store)))
210 }
211
212 fn pre_expansion_lint(sess: &Session, lint_store: &LintStore, krate: &ast::Crate) {
213     sess.time("pre_AST_expansion_lint_checks", || {
214         rustc_lint::check_ast_crate(
215             sess,
216             lint_store,
217             &krate,
218             true,
219             None,
220             rustc_lint::BuiltinCombinedPreExpansionLintPass::new(),
221         );
222     });
223 }
224
225 fn configure_and_expand_inner<'a>(
226     sess: &'a Session,
227     lint_store: &'a LintStore,
228     mut krate: ast::Crate,
229     crate_name: &str,
230     resolver_arenas: &'a ResolverArenas<'a>,
231     metadata_loader: &'a MetadataLoaderDyn,
232 ) -> Result<(ast::Crate, Resolver<'a>)> {
233     pre_expansion_lint(sess, lint_store, &krate);
234
235     let mut resolver = Resolver::new(sess, &krate, crate_name, metadata_loader, &resolver_arenas);
236     rustc_builtin_macros::register_builtin_macros(&mut resolver, sess.edition());
237
238     krate = sess.time("crate_injection", || {
239         let alt_std_name = sess.opts.alt_std_name.as_ref().map(|s| Symbol::intern(s));
240         let (krate, name) = rustc_builtin_macros::standard_library_imports::inject(
241             krate,
242             &mut resolver,
243             &sess.parse_sess,
244             alt_std_name,
245         );
246         if let Some(name) = name {
247             sess.parse_sess.injected_crate_name.set(name).expect("not yet initialized");
248         }
249         krate
250     });
251
252     util::check_attr_crate_type(&krate.attrs, &mut resolver.lint_buffer());
253
254     // Expand all macros
255     krate = sess.time("macro_expand_crate", || {
256         // Windows dlls do not have rpaths, so they don't know how to find their
257         // dependencies. It's up to us to tell the system where to find all the
258         // dependent dlls. Note that this uses cfg!(windows) as opposed to
259         // targ_cfg because syntax extensions are always loaded for the host
260         // compiler, not for the target.
261         //
262         // This is somewhat of an inherently racy operation, however, as
263         // multiple threads calling this function could possibly continue
264         // extending PATH far beyond what it should. To solve this for now we
265         // just don't add any new elements to PATH which are already there
266         // within PATH. This is basically a targeted fix at #17360 for rustdoc
267         // which runs rustc in parallel but has been seen (#33844) to cause
268         // problems with PATH becoming too long.
269         let mut old_path = OsString::new();
270         if cfg!(windows) {
271             old_path = env::var_os("PATH").unwrap_or(old_path);
272             let mut new_path = sess.host_filesearch(PathKind::All).search_path_dirs();
273             for path in env::split_paths(&old_path) {
274                 if !new_path.contains(&path) {
275                     new_path.push(path);
276                 }
277             }
278             env::set_var(
279                 "PATH",
280                 &env::join_paths(
281                     new_path.iter().filter(|p| env::join_paths(iter::once(p)).is_ok()),
282                 )
283                 .unwrap(),
284             );
285         }
286
287         // Create the config for macro expansion
288         let features = sess.features_untracked();
289         let cfg = rustc_expand::expand::ExpansionConfig {
290             features: Some(&features),
291             recursion_limit: sess.recursion_limit(),
292             trace_mac: sess.opts.debugging_opts.trace_macros,
293             should_test: sess.opts.test,
294             span_debug: sess.opts.debugging_opts.span_debug,
295             ..rustc_expand::expand::ExpansionConfig::default(crate_name.to_string())
296         };
297
298         let extern_mod_loaded = |k: &ast::Crate| pre_expansion_lint(sess, lint_store, k);
299         let mut ecx = ExtCtxt::new(&sess.parse_sess, cfg, &mut resolver, Some(&extern_mod_loaded));
300
301         // Expand macros now!
302         let krate = sess.time("expand_crate", || ecx.monotonic_expander().expand_crate(krate));
303
304         // The rest is error reporting
305
306         sess.time("check_unused_macros", || {
307             ecx.check_unused_macros();
308         });
309
310         let mut missing_fragment_specifiers: Vec<_> = ecx
311             .parse_sess
312             .missing_fragment_specifiers
313             .borrow()
314             .iter()
315             .map(|(span, node_id)| (*span, *node_id))
316             .collect();
317         missing_fragment_specifiers.sort_unstable_by_key(|(span, _)| *span);
318
319         let recursion_limit_hit = ecx.reduced_recursion_limit.is_some();
320
321         for (span, node_id) in missing_fragment_specifiers {
322             let lint = lint::builtin::MISSING_FRAGMENT_SPECIFIER;
323             let msg = "missing fragment specifier";
324             resolver.lint_buffer().buffer_lint(lint, node_id, span, msg);
325         }
326         if cfg!(windows) {
327             env::set_var("PATH", &old_path);
328         }
329
330         if recursion_limit_hit {
331             // If we hit a recursion limit, exit early to avoid later passes getting overwhelmed
332             // with a large AST
333             Err(ErrorReported)
334         } else {
335             Ok(krate)
336         }
337     })?;
338
339     sess.time("maybe_building_test_harness", || {
340         rustc_builtin_macros::test_harness::inject(
341             &sess.parse_sess,
342             &mut resolver,
343             sess.opts.test,
344             &mut krate,
345             sess.diagnostic(),
346             &sess.features_untracked(),
347             sess.panic_strategy(),
348             sess.target.target.options.panic_strategy,
349             sess.opts.debugging_opts.panic_abort_tests,
350         )
351     });
352
353     // If we're actually rustdoc then there's no need to actually compile
354     // anything, so switch everything to just looping
355     let mut should_loop = sess.opts.actually_rustdoc;
356     if let Some(PpMode::PpmSource(PpSourceMode::PpmEveryBodyLoops)) = sess.opts.pretty {
357         should_loop |= true;
358     }
359     if should_loop {
360         util::ReplaceBodyWithLoop::new(&mut resolver).visit_crate(&mut krate);
361     }
362
363     let has_proc_macro_decls = sess.time("AST_validation", || {
364         rustc_ast_passes::ast_validation::check_crate(sess, &krate, &mut resolver.lint_buffer())
365     });
366
367     let crate_types = sess.crate_types();
368     let is_proc_macro_crate = crate_types.contains(&CrateType::ProcMacro);
369
370     // For backwards compatibility, we don't try to run proc macro injection
371     // if rustdoc is run on a proc macro crate without '--crate-type proc-macro' being
372     // specified. This should only affect users who manually invoke 'rustdoc', as
373     // 'cargo doc' will automatically pass the proper '--crate-type' flags.
374     // However, we do emit a warning, to let such users know that they should
375     // start passing '--crate-type proc-macro'
376     if has_proc_macro_decls && sess.opts.actually_rustdoc && !is_proc_macro_crate {
377         let mut msg = sess.diagnostic().struct_warn(
378             &"Trying to document proc macro crate \
379             without passing '--crate-type proc-macro to rustdoc",
380         );
381
382         msg.warn("The generated documentation may be incorrect");
383         msg.emit()
384     } else {
385         krate = sess.time("maybe_create_a_macro_crate", || {
386             let num_crate_types = crate_types.len();
387             let is_test_crate = sess.opts.test;
388             rustc_builtin_macros::proc_macro_harness::inject(
389                 &sess.parse_sess,
390                 &mut resolver,
391                 krate,
392                 is_proc_macro_crate,
393                 has_proc_macro_decls,
394                 is_test_crate,
395                 num_crate_types,
396                 sess.diagnostic(),
397             )
398         });
399     }
400
401     // Done with macro expansion!
402
403     if sess.opts.debugging_opts.input_stats {
404         println!("Post-expansion node count: {}", count_nodes(&krate));
405     }
406
407     if sess.opts.debugging_opts.hir_stats {
408         hir_stats::print_ast_stats(&krate, "POST EXPANSION AST STATS");
409     }
410
411     if sess.opts.debugging_opts.ast_json {
412         println!("{}", json::as_json(&krate));
413     }
414
415     resolver.resolve_crate(&krate);
416
417     // Needs to go *after* expansion to be able to check the results of macro expansion.
418     sess.time("complete_gated_feature_checking", || {
419         rustc_ast_passes::feature_gate::check_crate(
420             &krate,
421             &sess.parse_sess,
422             &sess.features_untracked(),
423             sess.opts.unstable_features,
424         );
425     });
426
427     // Add all buffered lints from the `ParseSess` to the `Session`.
428     sess.parse_sess.buffered_lints.with_lock(|buffered_lints| {
429         info!("{} parse sess buffered_lints", buffered_lints.len());
430         for early_lint in buffered_lints.drain(..) {
431             resolver.lint_buffer().add_early_lint(early_lint);
432         }
433     });
434
435     Ok((krate, resolver))
436 }
437
438 pub fn lower_to_hir<'res, 'tcx>(
439     sess: &'tcx Session,
440     lint_store: &LintStore,
441     resolver: &'res mut Resolver<'_>,
442     dep_graph: &'res DepGraph,
443     krate: &'res ast::Crate,
444     arena: &'tcx rustc_ast_lowering::Arena<'tcx>,
445 ) -> Crate<'tcx> {
446     // We're constructing the HIR here; we don't care what we will
447     // read, since we haven't even constructed the *input* to
448     // incr. comp. yet.
449     dep_graph.assert_ignored();
450
451     // Lower AST to HIR.
452     let hir_crate = rustc_ast_lowering::lower_crate(
453         sess,
454         &krate,
455         resolver,
456         rustc_parse::nt_to_tokenstream,
457         arena,
458     );
459
460     if sess.opts.debugging_opts.hir_stats {
461         hir_stats::print_hir_stats(&hir_crate);
462     }
463
464     sess.time("early_lint_checks", || {
465         rustc_lint::check_ast_crate(
466             sess,
467             lint_store,
468             &krate,
469             false,
470             Some(std::mem::take(resolver.lint_buffer())),
471             rustc_lint::BuiltinCombinedEarlyLintPass::new(),
472         )
473     });
474
475     // Discard hygiene data, which isn't required after lowering to HIR.
476     if !sess.opts.debugging_opts.keep_hygiene_data {
477         rustc_span::hygiene::clear_syntax_context_map();
478     }
479
480     hir_crate
481 }
482
483 // Returns all the paths that correspond to generated files.
484 fn generated_output_paths(
485     sess: &Session,
486     outputs: &OutputFilenames,
487     exact_name: bool,
488     crate_name: &str,
489 ) -> Vec<PathBuf> {
490     let mut out_filenames = Vec::new();
491     for output_type in sess.opts.output_types.keys() {
492         let file = outputs.path(*output_type);
493         match *output_type {
494             // If the filename has been overridden using `-o`, it will not be modified
495             // by appending `.rlib`, `.exe`, etc., so we can skip this transformation.
496             OutputType::Exe if !exact_name => {
497                 for crate_type in sess.crate_types().iter() {
498                     let p = filename_for_input(sess, *crate_type, crate_name, outputs);
499                     out_filenames.push(p);
500                 }
501             }
502             OutputType::DepInfo if sess.opts.debugging_opts.dep_info_omit_d_target => {
503                 // Don't add the dep-info output when omitting it from dep-info targets
504             }
505             _ => {
506                 out_filenames.push(file);
507             }
508         }
509     }
510     out_filenames
511 }
512
513 // Runs `f` on every output file path and returns the first non-None result, or None if `f`
514 // returns None for every file path.
515 fn check_output<F, T>(output_paths: &[PathBuf], f: F) -> Option<T>
516 where
517     F: Fn(&PathBuf) -> Option<T>,
518 {
519     for output_path in output_paths {
520         if let Some(result) = f(output_path) {
521             return Some(result);
522         }
523     }
524     None
525 }
526
527 fn output_contains_path(output_paths: &[PathBuf], input_path: &PathBuf) -> bool {
528     let input_path = input_path.canonicalize().ok();
529     if input_path.is_none() {
530         return false;
531     }
532     let check = |output_path: &PathBuf| {
533         if output_path.canonicalize().ok() == input_path { Some(()) } else { None }
534     };
535     check_output(output_paths, check).is_some()
536 }
537
538 fn output_conflicts_with_dir(output_paths: &[PathBuf]) -> Option<PathBuf> {
539     let check = |output_path: &PathBuf| output_path.is_dir().then(|| output_path.clone());
540     check_output(output_paths, check)
541 }
542
543 fn escape_dep_filename(filename: &FileName) -> String {
544     // Apparently clang and gcc *only* escape spaces:
545     // http://llvm.org/klaus/clang/commit/9d50634cfc268ecc9a7250226dd5ca0e945240d4
546     filename.to_string().replace(" ", "\\ ")
547 }
548
549 fn write_out_deps(
550     sess: &Session,
551     boxed_resolver: &Steal<Rc<RefCell<BoxedResolver>>>,
552     outputs: &OutputFilenames,
553     out_filenames: &[PathBuf],
554 ) {
555     // Write out dependency rules to the dep-info file if requested
556     if !sess.opts.output_types.contains_key(&OutputType::DepInfo) {
557         return;
558     }
559     let deps_filename = outputs.path(OutputType::DepInfo);
560
561     let result = (|| -> io::Result<()> {
562         // Build a list of files used to compile the output and
563         // write Makefile-compatible dependency rules
564         let mut files: Vec<String> = sess
565             .source_map()
566             .files()
567             .iter()
568             .filter(|fmap| fmap.is_real_file())
569             .filter(|fmap| !fmap.is_imported())
570             .map(|fmap| escape_dep_filename(&fmap.unmapped_path.as_ref().unwrap_or(&fmap.name)))
571             .collect();
572
573         if sess.binary_dep_depinfo() {
574             boxed_resolver.borrow().borrow_mut().access(|resolver| {
575                 for cnum in resolver.cstore().crates_untracked() {
576                     let source = resolver.cstore().crate_source_untracked(cnum);
577                     if let Some((path, _)) = source.dylib {
578                         let file_name = FileName::Real(RealFileName::Named(path));
579                         files.push(escape_dep_filename(&file_name));
580                     }
581                     if let Some((path, _)) = source.rlib {
582                         let file_name = FileName::Real(RealFileName::Named(path));
583                         files.push(escape_dep_filename(&file_name));
584                     }
585                     if let Some((path, _)) = source.rmeta {
586                         let file_name = FileName::Real(RealFileName::Named(path));
587                         files.push(escape_dep_filename(&file_name));
588                     }
589                 }
590             });
591         }
592
593         let mut file = BufWriter::new(fs::File::create(&deps_filename)?);
594         for path in out_filenames {
595             writeln!(file, "{}: {}\n", path.display(), files.join(" "))?;
596         }
597
598         // Emit a fake target for each input file to the compilation. This
599         // prevents `make` from spitting out an error if a file is later
600         // deleted. For more info see #28735
601         for path in files {
602             writeln!(file, "{}:", path)?;
603         }
604         Ok(())
605     })();
606
607     match result {
608         Ok(_) => {
609             if sess.opts.json_artifact_notifications {
610                 sess.parse_sess
611                     .span_diagnostic
612                     .emit_artifact_notification(&deps_filename, "dep-info");
613             }
614         }
615         Err(e) => sess.fatal(&format!(
616             "error writing dependencies to `{}`: {}",
617             deps_filename.display(),
618             e
619         )),
620     }
621 }
622
623 pub fn prepare_outputs(
624     sess: &Session,
625     compiler: &Compiler,
626     krate: &ast::Crate,
627     boxed_resolver: &Steal<Rc<RefCell<BoxedResolver>>>,
628     crate_name: &str,
629 ) -> Result<OutputFilenames> {
630     let _timer = sess.timer("prepare_outputs");
631
632     // FIXME: rustdoc passes &[] instead of &krate.attrs here
633     let outputs = util::build_output_filenames(
634         &compiler.input,
635         &compiler.output_dir,
636         &compiler.output_file,
637         &krate.attrs,
638         sess,
639     );
640
641     let output_paths =
642         generated_output_paths(sess, &outputs, compiler.output_file.is_some(), &crate_name);
643
644     // Ensure the source file isn't accidentally overwritten during compilation.
645     if let Some(ref input_path) = compiler.input_path {
646         if sess.opts.will_create_output_file() {
647             if output_contains_path(&output_paths, input_path) {
648                 sess.err(&format!(
649                     "the input file \"{}\" would be overwritten by the generated \
650                         executable",
651                     input_path.display()
652                 ));
653                 return Err(ErrorReported);
654             }
655             if let Some(dir_path) = output_conflicts_with_dir(&output_paths) {
656                 sess.err(&format!(
657                     "the generated executable for the input file \"{}\" conflicts with the \
658                         existing directory \"{}\"",
659                     input_path.display(),
660                     dir_path.display()
661                 ));
662                 return Err(ErrorReported);
663             }
664         }
665     }
666
667     write_out_deps(sess, boxed_resolver, &outputs, &output_paths);
668
669     let only_dep_info = sess.opts.output_types.contains_key(&OutputType::DepInfo)
670         && sess.opts.output_types.len() == 1;
671
672     if !only_dep_info {
673         if let Some(ref dir) = compiler.output_dir {
674             if fs::create_dir_all(dir).is_err() {
675                 sess.err("failed to find or create the directory specified by `--out-dir`");
676                 return Err(ErrorReported);
677             }
678         }
679     }
680
681     Ok(outputs)
682 }
683
684 pub fn default_provide(providers: &mut ty::query::Providers<'_>) {
685     providers.analysis = analysis;
686     proc_macro_decls::provide(providers);
687     plugin::build::provide(providers);
688     rustc_middle::hir::provide(providers);
689     mir::provide(providers);
690     mir_build::provide(providers);
691     rustc_privacy::provide(providers);
692     typeck::provide(providers);
693     ty::provide(providers);
694     traits::provide(providers);
695     rustc_passes::provide(providers);
696     rustc_resolve::provide(providers);
697     rustc_traits::provide(providers);
698     rustc_ty::provide(providers);
699     rustc_metadata::provide(providers);
700     rustc_lint::provide(providers);
701     rustc_symbol_mangling::provide(providers);
702     rustc_codegen_ssa::provide(providers);
703 }
704
705 pub fn default_provide_extern(providers: &mut ty::query::Providers<'_>) {
706     rustc_metadata::provide_extern(providers);
707     rustc_codegen_ssa::provide_extern(providers);
708 }
709
710 pub struct QueryContext<'tcx>(&'tcx GlobalCtxt<'tcx>);
711
712 impl<'tcx> QueryContext<'tcx> {
713     pub fn enter<F, R>(&mut self, f: F) -> R
714     where
715         F: FnOnce(TyCtxt<'tcx>) -> R,
716     {
717         ty::tls::enter_global(self.0, f)
718     }
719
720     pub fn print_stats(&mut self) {
721         self.enter(ty::query::print_stats)
722     }
723 }
724
725 pub fn create_global_ctxt<'tcx>(
726     compiler: &'tcx Compiler,
727     lint_store: Lrc<LintStore>,
728     krate: &'tcx Crate<'tcx>,
729     dep_graph: DepGraph,
730     mut resolver_outputs: ResolverOutputs,
731     outputs: OutputFilenames,
732     crate_name: &str,
733     global_ctxt: &'tcx OnceCell<GlobalCtxt<'tcx>>,
734     arena: &'tcx WorkerLocal<Arena<'tcx>>,
735 ) -> QueryContext<'tcx> {
736     let sess = &compiler.session();
737     let defs: &'tcx Definitions = arena.alloc(mem::take(&mut resolver_outputs.definitions));
738
739     let query_result_on_disk_cache = rustc_incremental::load_query_result_cache(sess);
740
741     let codegen_backend = compiler.codegen_backend();
742     let mut local_providers = ty::query::Providers::default();
743     default_provide(&mut local_providers);
744     codegen_backend.provide(&mut local_providers);
745
746     let mut extern_providers = local_providers;
747     default_provide_extern(&mut extern_providers);
748     codegen_backend.provide_extern(&mut extern_providers);
749
750     if let Some(callback) = compiler.override_queries {
751         callback(sess, &mut local_providers, &mut extern_providers);
752     }
753
754     let gcx = sess.time("setup_global_ctxt", || {
755         global_ctxt.get_or_init(|| {
756             TyCtxt::create_global_ctxt(
757                 sess,
758                 lint_store,
759                 local_providers,
760                 extern_providers,
761                 arena,
762                 resolver_outputs,
763                 krate,
764                 defs,
765                 dep_graph,
766                 query_result_on_disk_cache,
767                 &crate_name,
768                 &outputs,
769             )
770         })
771     });
772
773     // Do some initialization of the DepGraph that can only be done with the tcx available.
774     ty::tls::enter_global(&gcx, |tcx| {
775         tcx.sess.time("dep_graph_tcx_init", || rustc_incremental::dep_graph_tcx_init(tcx));
776     });
777
778     QueryContext(gcx)
779 }
780
781 /// Runs the resolution, type-checking, region checking and other
782 /// miscellaneous analysis passes on the crate.
783 fn analysis(tcx: TyCtxt<'_>, cnum: CrateNum) -> Result<()> {
784     assert_eq!(cnum, LOCAL_CRATE);
785
786     rustc_passes::hir_id_validator::check_crate(tcx);
787
788     let sess = tcx.sess;
789     let mut entry_point = None;
790
791     sess.time("misc_checking_1", || {
792         parallel!(
793             {
794                 entry_point = sess
795                     .time("looking_for_entry_point", || rustc_passes::entry::find_entry_point(tcx));
796
797                 sess.time("looking_for_plugin_registrar", || {
798                     plugin::build::find_plugin_registrar(tcx)
799                 });
800
801                 sess.time("looking_for_derive_registrar", || proc_macro_decls::find(tcx));
802             },
803             {
804                 par_iter(&tcx.hir().krate().modules).for_each(|(&module, _)| {
805                     let local_def_id = tcx.hir().local_def_id(module);
806                     tcx.ensure().check_mod_loops(local_def_id);
807                     tcx.ensure().check_mod_attrs(local_def_id);
808                     tcx.ensure().check_mod_unstable_api_usage(local_def_id);
809                     tcx.ensure().check_mod_const_bodies(local_def_id);
810                 });
811             }
812         );
813     });
814
815     // passes are timed inside typeck
816     typeck::check_crate(tcx)?;
817
818     sess.time("misc_checking_2", || {
819         parallel!(
820             {
821                 sess.time("match_checking", || {
822                     tcx.par_body_owners(|def_id| {
823                         tcx.ensure().check_match(def_id.to_def_id());
824                     });
825                 });
826             },
827             {
828                 sess.time("liveness_and_intrinsic_checking", || {
829                     par_iter(&tcx.hir().krate().modules).for_each(|(&module, _)| {
830                         // this must run before MIR dump, because
831                         // "not all control paths return a value" is reported here.
832                         //
833                         // maybe move the check to a MIR pass?
834                         let local_def_id = tcx.hir().local_def_id(module);
835
836                         tcx.ensure().check_mod_liveness(local_def_id);
837                         tcx.ensure().check_mod_intrinsics(local_def_id);
838                     });
839                 });
840             }
841         );
842     });
843
844     sess.time("MIR_borrow_checking", || {
845         tcx.par_body_owners(|def_id| tcx.ensure().mir_borrowck(def_id));
846     });
847
848     sess.time("MIR_effect_checking", || {
849         for def_id in tcx.body_owners() {
850             mir::transform::check_unsafety::check_unsafety(tcx, def_id)
851         }
852     });
853
854     sess.time("layout_testing", || layout_test::test_layout(tcx));
855
856     // Avoid overwhelming user with errors if borrow checking failed.
857     // I'm not sure how helpful this is, to be honest, but it avoids a
858     // lot of annoying errors in the compile-fail tests (basically,
859     // lint warnings and so on -- kindck used to do this abort, but
860     // kindck is gone now). -nmatsakis
861     if sess.has_errors() {
862         return Err(ErrorReported);
863     }
864
865     sess.time("misc_checking_3", || {
866         parallel!(
867             {
868                 tcx.ensure().privacy_access_levels(LOCAL_CRATE);
869
870                 parallel!(
871                     {
872                         tcx.ensure().check_private_in_public(LOCAL_CRATE);
873                     },
874                     {
875                         sess.time("death_checking", || rustc_passes::dead::check_crate(tcx));
876                     },
877                     {
878                         sess.time("unused_lib_feature_checking", || {
879                             rustc_passes::stability::check_unused_or_stable_features(tcx)
880                         });
881                     },
882                     {
883                         sess.time("lint_checking", || {
884                             rustc_lint::check_crate(tcx, || {
885                                 rustc_lint::BuiltinCombinedLateLintPass::new()
886                             });
887                         });
888                     }
889                 );
890             },
891             {
892                 sess.time("privacy_checking_modules", || {
893                     par_iter(&tcx.hir().krate().modules).for_each(|(&module, _)| {
894                         tcx.ensure().check_mod_privacy(tcx.hir().local_def_id(module));
895                     });
896                 });
897             }
898         );
899     });
900
901     Ok(())
902 }
903
904 fn encode_and_write_metadata(
905     tcx: TyCtxt<'_>,
906     outputs: &OutputFilenames,
907 ) -> (middle::cstore::EncodedMetadata, bool) {
908     #[derive(PartialEq, Eq, PartialOrd, Ord)]
909     enum MetadataKind {
910         None,
911         Uncompressed,
912         Compressed,
913     }
914
915     let metadata_kind = tcx
916         .sess
917         .crate_types()
918         .iter()
919         .map(|ty| match *ty {
920             CrateType::Executable | CrateType::Staticlib | CrateType::Cdylib => MetadataKind::None,
921
922             CrateType::Rlib => MetadataKind::Uncompressed,
923
924             CrateType::Dylib | CrateType::ProcMacro => MetadataKind::Compressed,
925         })
926         .max()
927         .unwrap_or(MetadataKind::None);
928
929     let metadata = match metadata_kind {
930         MetadataKind::None => middle::cstore::EncodedMetadata::new(),
931         MetadataKind::Uncompressed | MetadataKind::Compressed => tcx.encode_metadata(),
932     };
933
934     let _prof_timer = tcx.sess.prof.generic_activity("write_crate_metadata");
935
936     let need_metadata_file = tcx.sess.opts.output_types.contains_key(&OutputType::Metadata);
937     if need_metadata_file {
938         let crate_name = &tcx.crate_name(LOCAL_CRATE).as_str();
939         let out_filename = filename_for_metadata(tcx.sess, crate_name, outputs);
940         // To avoid races with another rustc process scanning the output directory,
941         // we need to write the file somewhere else and atomically move it to its
942         // final destination, with an `fs::rename` call. In order for the rename to
943         // always succeed, the temporary file needs to be on the same filesystem,
944         // which is why we create it inside the output directory specifically.
945         let metadata_tmpdir = TempFileBuilder::new()
946             .prefix("rmeta")
947             .tempdir_in(out_filename.parent().unwrap())
948             .unwrap_or_else(|err| tcx.sess.fatal(&format!("couldn't create a temp dir: {}", err)));
949         let metadata_filename = emit_metadata(tcx.sess, &metadata, &metadata_tmpdir);
950         if let Err(e) = fs::rename(&metadata_filename, &out_filename) {
951             tcx.sess.fatal(&format!("failed to write {}: {}", out_filename.display(), e));
952         }
953         if tcx.sess.opts.json_artifact_notifications {
954             tcx.sess
955                 .parse_sess
956                 .span_diagnostic
957                 .emit_artifact_notification(&out_filename, "metadata");
958         }
959     }
960
961     let need_metadata_module = metadata_kind == MetadataKind::Compressed;
962
963     (metadata, need_metadata_module)
964 }
965
966 /// Runs the codegen backend, after which the AST and analysis can
967 /// be discarded.
968 pub fn start_codegen<'tcx>(
969     codegen_backend: &dyn CodegenBackend,
970     tcx: TyCtxt<'tcx>,
971     outputs: &OutputFilenames,
972 ) -> Box<dyn Any> {
973     if log_enabled!(::log::Level::Info) {
974         println!("Pre-codegen");
975         tcx.print_debug_stats();
976     }
977
978     let (metadata, need_metadata_module) = encode_and_write_metadata(tcx, outputs);
979
980     let codegen = tcx.sess.time("codegen_crate", move || {
981         codegen_backend.codegen_crate(tcx, metadata, need_metadata_module)
982     });
983
984     if log_enabled!(::log::Level::Info) {
985         println!("Post-codegen");
986         tcx.print_debug_stats();
987     }
988
989     if tcx.sess.opts.output_types.contains_key(&OutputType::Mir) {
990         if let Err(e) = mir::transform::dump_mir::emit_mir(tcx, outputs) {
991             tcx.sess.err(&format!("could not emit MIR: {}", e));
992             tcx.sess.abort_if_errors();
993         }
994     }
995
996     codegen
997 }