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