]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_interface/src/passes.rs
rustdoc-json-types: Improve docs for HRTB fields
[rust.git] / compiler / rustc_interface / src / passes.rs
1 use crate::interface::{Compiler, Result};
2 use crate::proc_macro_decls;
3 use crate::util;
4
5 use ast::CRATE_NODE_ID;
6 use rustc_ast::{self as ast, visit};
7 use rustc_borrowck as mir_borrowck;
8 use rustc_codegen_ssa::back::link::emit_metadata;
9 use rustc_codegen_ssa::traits::CodegenBackend;
10 use rustc_data_structures::parallel;
11 use rustc_data_structures::sync::{Lrc, OnceCell, WorkerLocal};
12 use rustc_data_structures::temp_dir::MaybeTempDir;
13 use rustc_errors::{Applicability, ErrorGuaranteed, MultiSpan, PResult};
14 use rustc_expand::base::{ExtCtxt, LintStoreExpand, ResolverExpand};
15 use rustc_hir::def_id::{StableCrateId, LOCAL_CRATE};
16 use rustc_hir::Crate;
17 use rustc_lint::{EarlyCheckNode, LintStore};
18 use rustc_metadata::creader::CStore;
19 use rustc_metadata::{encode_metadata, EncodedMetadata};
20 use rustc_middle::arena::Arena;
21 use rustc_middle::dep_graph::DepGraph;
22 use rustc_middle::ty::query::{ExternProviders, Providers};
23 use rustc_middle::ty::{self, GlobalCtxt, RegisteredTools, ResolverOutputs, TyCtxt};
24 use rustc_mir_build as mir_build;
25 use rustc_parse::{parse_crate_from_file, parse_crate_from_source_str, validate_attr};
26 use rustc_passes::{self, hir_stats, layout_test};
27 use rustc_plugin_impl as plugin;
28 use rustc_query_impl::{OnDiskCache, Queries as TcxQueries};
29 use rustc_resolve::{Resolver, ResolverArenas};
30 use rustc_serialize::json;
31 use rustc_session::config::{CrateType, Input, OutputFilenames, OutputType};
32 use rustc_session::cstore::{MetadataLoader, MetadataLoaderDyn};
33 use rustc_session::output::{filename_for_input, filename_for_metadata};
34 use rustc_session::search_paths::PathKind;
35 use rustc_session::{Limit, Session};
36 use rustc_span::symbol::{sym, Symbol};
37 use rustc_span::FileName;
38 use rustc_trait_selection::traits;
39 use rustc_typeck as typeck;
40 use tempfile::Builder as TempFileBuilder;
41 use tracing::{info, warn};
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::lazy::SyncLazy;
48 use std::marker::PhantomPinned;
49 use std::path::{Path, PathBuf};
50 use std::pin::Pin;
51 use std::rc::Rc;
52 use std::{env, fs, iter};
53
54 pub fn parse<'a>(sess: &'a Session, input: &Input) -> PResult<'a, ast::Crate> {
55     let krate = sess.time("parse_crate", || match input {
56         Input::File(file) => parse_crate_from_file(file, &sess.parse_sess),
57         Input::Str { input, name } => {
58             parse_crate_from_source_str(name.clone(), input.clone(), &sess.parse_sess)
59         }
60     })?;
61
62     if sess.opts.debugging_opts.ast_json_noexpand {
63         println!("{}", json::as_json(&krate));
64     }
65
66     if sess.opts.debugging_opts.input_stats {
67         eprintln!("Lines of code:             {}", sess.source_map().count_lines());
68         eprintln!("Pre-expansion node count:  {}", count_nodes(&krate));
69     }
70
71     if let Some(ref s) = sess.opts.debugging_opts.show_span {
72         rustc_ast_passes::show_span::run(sess.diagnostic(), s, &krate);
73     }
74
75     if sess.opts.debugging_opts.hir_stats {
76         hir_stats::print_ast_stats(&krate, "PRE EXPANSION AST STATS");
77     }
78
79     Ok(krate)
80 }
81
82 fn count_nodes(krate: &ast::Crate) -> usize {
83     let mut counter = rustc_ast_passes::node_count::NodeCounter::new();
84     visit::walk_crate(&mut counter, krate);
85     counter.count
86 }
87
88 pub use boxed_resolver::BoxedResolver;
89 mod boxed_resolver {
90     use super::*;
91
92     pub struct BoxedResolver(Pin<Box<BoxedResolverInner>>);
93
94     struct BoxedResolverInner {
95         session: Lrc<Session>,
96         resolver_arenas: Option<ResolverArenas<'static>>,
97         resolver: Option<Resolver<'static>>,
98         _pin: PhantomPinned,
99     }
100
101     // Note: Drop order is important to prevent dangling references. Resolver must be dropped first,
102     // then resolver_arenas and session.
103     impl Drop for BoxedResolverInner {
104         fn drop(&mut self) {
105             self.resolver.take();
106             self.resolver_arenas.take();
107         }
108     }
109
110     impl BoxedResolver {
111         pub(super) fn new(
112             session: Lrc<Session>,
113             make_resolver: impl for<'a> FnOnce(&'a Session, &'a ResolverArenas<'a>) -> Resolver<'a>,
114         ) -> BoxedResolver {
115             let mut boxed_resolver = Box::new(BoxedResolverInner {
116                 session,
117                 resolver_arenas: Some(Resolver::arenas()),
118                 resolver: None,
119                 _pin: PhantomPinned,
120             });
121             // SAFETY: `make_resolver` takes a resolver arena with an arbitrary lifetime and
122             // returns a resolver with the same lifetime as the arena. We ensure that the arena
123             // outlives the resolver in the drop impl and elsewhere so these transmutes are sound.
124             unsafe {
125                 let resolver = make_resolver(
126                     std::mem::transmute::<&Session, &Session>(&boxed_resolver.session),
127                     std::mem::transmute::<&ResolverArenas<'_>, &ResolverArenas<'_>>(
128                         boxed_resolver.resolver_arenas.as_ref().unwrap(),
129                     ),
130                 );
131                 boxed_resolver.resolver = Some(resolver);
132                 BoxedResolver(Pin::new_unchecked(boxed_resolver))
133             }
134         }
135
136         pub fn access<F: for<'a> FnOnce(&mut Resolver<'a>) -> R, R>(&mut self, f: F) -> R {
137             // SAFETY: The resolver doesn't need to be pinned.
138             let mut resolver = unsafe {
139                 self.0.as_mut().map_unchecked_mut(|boxed_resolver| &mut boxed_resolver.resolver)
140             };
141             f((&mut *resolver).as_mut().unwrap())
142         }
143
144         pub fn to_resolver_outputs(resolver: Rc<RefCell<BoxedResolver>>) -> ResolverOutputs {
145             match Rc::try_unwrap(resolver) {
146                 Ok(resolver) => {
147                     let mut resolver = resolver.into_inner();
148                     // SAFETY: The resolver doesn't need to be pinned.
149                     let mut resolver = unsafe {
150                         resolver
151                             .0
152                             .as_mut()
153                             .map_unchecked_mut(|boxed_resolver| &mut boxed_resolver.resolver)
154                     };
155                     resolver.take().unwrap().into_outputs()
156                 }
157                 Err(resolver) => resolver.borrow_mut().access(|resolver| resolver.clone_outputs()),
158             }
159         }
160     }
161 }
162
163 pub fn create_resolver(
164     sess: Lrc<Session>,
165     metadata_loader: Box<MetadataLoaderDyn>,
166     krate: &ast::Crate,
167     crate_name: &str,
168 ) -> BoxedResolver {
169     tracing::trace!("create_resolver");
170     BoxedResolver::new(sess, move |sess, resolver_arenas| {
171         Resolver::new(sess, krate, crate_name, metadata_loader, resolver_arenas)
172     })
173 }
174
175 pub fn register_plugins<'a>(
176     sess: &'a Session,
177     metadata_loader: &'a dyn MetadataLoader,
178     register_lints: impl Fn(&Session, &mut LintStore),
179     mut krate: ast::Crate,
180     crate_name: &str,
181 ) -> Result<(ast::Crate, LintStore)> {
182     krate = sess.time("attributes_injection", || {
183         rustc_builtin_macros::cmdline_attrs::inject(
184             krate,
185             &sess.parse_sess,
186             &sess.opts.debugging_opts.crate_attr,
187         )
188     });
189
190     let (krate, features) = rustc_expand::config::features(sess, krate, CRATE_NODE_ID);
191     // these need to be set "early" so that expansion sees `quote` if enabled.
192     sess.init_features(features);
193
194     let crate_types = util::collect_crate_types(sess, &krate.attrs);
195     sess.init_crate_types(crate_types);
196
197     let stable_crate_id = StableCrateId::new(
198         crate_name,
199         sess.crate_types().contains(&CrateType::Executable),
200         sess.opts.cg.metadata.clone(),
201     );
202     sess.stable_crate_id.set(stable_crate_id).expect("not yet initialized");
203     rustc_incremental::prepare_session_directory(sess, crate_name, stable_crate_id)?;
204
205     if sess.opts.incremental.is_some() {
206         sess.time("incr_comp_garbage_collect_session_directories", || {
207             if let Err(e) = rustc_incremental::garbage_collect_session_directories(sess) {
208                 warn!(
209                     "Error while trying to garbage collect incremental \
210                      compilation cache directory: {}",
211                     e
212                 );
213             }
214         });
215     }
216
217     let mut lint_store = rustc_lint::new_lint_store(
218         sess.opts.debugging_opts.no_interleave_lints,
219         sess.unstable_options(),
220     );
221     register_lints(sess, &mut lint_store);
222
223     let registrars =
224         sess.time("plugin_loading", || plugin::load::load_plugins(sess, metadata_loader, &krate));
225     sess.time("plugin_registration", || {
226         let mut registry = plugin::Registry { lint_store: &mut lint_store };
227         for registrar in registrars {
228             registrar(&mut registry);
229         }
230     });
231
232     Ok((krate, lint_store))
233 }
234
235 fn pre_expansion_lint<'a>(
236     sess: &Session,
237     lint_store: &LintStore,
238     registered_tools: &RegisteredTools,
239     check_node: impl EarlyCheckNode<'a>,
240     node_name: &str,
241 ) {
242     sess.prof.generic_activity_with_arg("pre_AST_expansion_lint_checks", node_name).run(|| {
243         rustc_lint::check_ast_node(
244             sess,
245             true,
246             lint_store,
247             registered_tools,
248             None,
249             rustc_lint::BuiltinCombinedPreExpansionLintPass::new(),
250             check_node,
251         );
252     });
253 }
254
255 // Cannot implement directly for `LintStore` due to trait coherence.
256 struct LintStoreExpandImpl<'a>(&'a LintStore);
257
258 impl LintStoreExpand for LintStoreExpandImpl<'_> {
259     fn pre_expansion_lint(
260         &self,
261         sess: &Session,
262         registered_tools: &RegisteredTools,
263         node_id: ast::NodeId,
264         attrs: &[ast::Attribute],
265         items: &[rustc_ast::ptr::P<ast::Item>],
266         name: &str,
267     ) {
268         pre_expansion_lint(sess, self.0, registered_tools, (node_id, attrs, items), name);
269     }
270 }
271
272 /// Runs the "early phases" of the compiler: initial `cfg` processing, loading compiler plugins,
273 /// syntax expansion, secondary `cfg` expansion, synthesis of a test
274 /// harness if one is to be provided, injection of a dependency on the
275 /// standard library and prelude, and name resolution.
276 pub fn configure_and_expand(
277     sess: &Session,
278     lint_store: &LintStore,
279     mut krate: ast::Crate,
280     crate_name: &str,
281     resolver: &mut Resolver<'_>,
282 ) -> Result<ast::Crate> {
283     tracing::trace!("configure_and_expand");
284     pre_expansion_lint(sess, lint_store, resolver.registered_tools(), &krate, crate_name);
285     rustc_builtin_macros::register_builtin_macros(resolver);
286
287     krate = sess.time("crate_injection", || {
288         rustc_builtin_macros::standard_library_imports::inject(krate, resolver, sess)
289     });
290
291     util::check_attr_crate_type(sess, &krate.attrs, &mut resolver.lint_buffer());
292
293     // Expand all macros
294     krate = sess.time("macro_expand_crate", || {
295         // Windows dlls do not have rpaths, so they don't know how to find their
296         // dependencies. It's up to us to tell the system where to find all the
297         // dependent dlls. Note that this uses cfg!(windows) as opposed to
298         // targ_cfg because syntax extensions are always loaded for the host
299         // compiler, not for the target.
300         //
301         // This is somewhat of an inherently racy operation, however, as
302         // multiple threads calling this function could possibly continue
303         // extending PATH far beyond what it should. To solve this for now we
304         // just don't add any new elements to PATH which are already there
305         // within PATH. This is basically a targeted fix at #17360 for rustdoc
306         // which runs rustc in parallel but has been seen (#33844) to cause
307         // problems with PATH becoming too long.
308         let mut old_path = OsString::new();
309         if cfg!(windows) {
310             old_path = env::var_os("PATH").unwrap_or(old_path);
311             let mut new_path = sess.host_filesearch(PathKind::All).search_path_dirs();
312             for path in env::split_paths(&old_path) {
313                 if !new_path.contains(&path) {
314                     new_path.push(path);
315                 }
316             }
317             env::set_var(
318                 "PATH",
319                 &env::join_paths(
320                     new_path.iter().filter(|p| env::join_paths(iter::once(p)).is_ok()),
321                 )
322                 .unwrap(),
323             );
324         }
325
326         // Create the config for macro expansion
327         let features = sess.features_untracked();
328         let recursion_limit = get_recursion_limit(&krate.attrs, sess);
329         let cfg = rustc_expand::expand::ExpansionConfig {
330             features: Some(features),
331             recursion_limit,
332             trace_mac: sess.opts.debugging_opts.trace_macros,
333             should_test: sess.opts.test,
334             span_debug: sess.opts.debugging_opts.span_debug,
335             proc_macro_backtrace: sess.opts.debugging_opts.proc_macro_backtrace,
336             ..rustc_expand::expand::ExpansionConfig::default(crate_name.to_string())
337         };
338
339         let lint_store = LintStoreExpandImpl(lint_store);
340         let mut ecx = ExtCtxt::new(sess, cfg, resolver, Some(&lint_store));
341
342         // Expand macros now!
343         let krate = sess.time("expand_crate", || ecx.monotonic_expander().expand_crate(krate));
344
345         // The rest is error reporting
346
347         sess.time("check_unused_macros", || {
348             ecx.check_unused_macros();
349         });
350
351         let recursion_limit_hit = ecx.reduced_recursion_limit.is_some();
352
353         if cfg!(windows) {
354             env::set_var("PATH", &old_path);
355         }
356
357         if recursion_limit_hit {
358             // If we hit a recursion limit, exit early to avoid later passes getting overwhelmed
359             // with a large AST
360             Err(ErrorGuaranteed::unchecked_claim_error_was_emitted())
361         } else {
362             Ok(krate)
363         }
364     })?;
365
366     sess.time("maybe_building_test_harness", || {
367         rustc_builtin_macros::test_harness::inject(sess, resolver, &mut krate)
368     });
369
370     let has_proc_macro_decls = sess.time("AST_validation", || {
371         rustc_ast_passes::ast_validation::check_crate(sess, &krate, resolver.lint_buffer())
372     });
373
374     let crate_types = sess.crate_types();
375     let is_executable_crate = crate_types.contains(&CrateType::Executable);
376     let is_proc_macro_crate = crate_types.contains(&CrateType::ProcMacro);
377
378     if crate_types.len() > 1 {
379         if is_executable_crate {
380             sess.err("cannot mix `bin` crate type with others");
381         }
382         if is_proc_macro_crate {
383             sess.err("cannot mix `proc-macro` crate type with others");
384         }
385     }
386
387     // For backwards compatibility, we don't try to run proc macro injection
388     // if rustdoc is run on a proc macro crate without '--crate-type proc-macro' being
389     // specified. This should only affect users who manually invoke 'rustdoc', as
390     // 'cargo doc' will automatically pass the proper '--crate-type' flags.
391     // However, we do emit a warning, to let such users know that they should
392     // start passing '--crate-type proc-macro'
393     if has_proc_macro_decls && sess.opts.actually_rustdoc && !is_proc_macro_crate {
394         let mut msg = sess.diagnostic().struct_warn(
395             "Trying to document proc macro crate \
396              without passing '--crate-type proc-macro to rustdoc",
397         );
398
399         msg.warn("The generated documentation may be incorrect");
400         msg.emit();
401     } else {
402         krate = sess.time("maybe_create_a_macro_crate", || {
403             let is_test_crate = sess.opts.test;
404             rustc_builtin_macros::proc_macro_harness::inject(
405                 sess,
406                 resolver,
407                 krate,
408                 is_proc_macro_crate,
409                 has_proc_macro_decls,
410                 is_test_crate,
411                 sess.diagnostic(),
412             )
413         });
414     }
415
416     // Done with macro expansion!
417
418     if sess.opts.debugging_opts.input_stats {
419         eprintln!("Post-expansion node count: {}", count_nodes(&krate));
420     }
421
422     if sess.opts.debugging_opts.hir_stats {
423         hir_stats::print_ast_stats(&krate, "POST EXPANSION AST STATS");
424     }
425
426     if sess.opts.debugging_opts.ast_json {
427         println!("{}", json::as_json(&krate));
428     }
429
430     resolver.resolve_crate(&krate);
431
432     // Needs to go *after* expansion to be able to check the results of macro expansion.
433     sess.time("complete_gated_feature_checking", || {
434         rustc_ast_passes::feature_gate::check_crate(&krate, sess);
435     });
436
437     // Add all buffered lints from the `ParseSess` to the `Session`.
438     sess.parse_sess.buffered_lints.with_lock(|buffered_lints| {
439         info!("{} parse sess buffered_lints", buffered_lints.len());
440         for early_lint in buffered_lints.drain(..) {
441             resolver.lint_buffer().add_early_lint(early_lint);
442         }
443     });
444
445     // Gate identifiers containing invalid Unicode codepoints that were recovered during lexing.
446     sess.parse_sess.bad_unicode_identifiers.with_lock(|identifiers| {
447         let mut identifiers: Vec<_> = identifiers.drain().collect();
448         identifiers.sort_by_key(|&(key, _)| key);
449         for (ident, mut spans) in identifiers.into_iter() {
450             spans.sort();
451             if ident == sym::ferris {
452                 let first_span = spans[0];
453                 sess.diagnostic()
454                     .struct_span_err(
455                         MultiSpan::from(spans),
456                         "Ferris cannot be used as an identifier",
457                     )
458                     .span_suggestion(
459                         first_span,
460                         "try using their name instead",
461                         "ferris".to_string(),
462                         Applicability::MaybeIncorrect,
463                     )
464                     .emit();
465             } else {
466                 sess.diagnostic().span_err(
467                     MultiSpan::from(spans),
468                     &format!("identifiers cannot contain emoji: `{}`", ident),
469                 );
470             }
471         }
472     });
473
474     sess.time("early_lint_checks", || {
475         let lint_buffer = Some(std::mem::take(resolver.lint_buffer()));
476         rustc_lint::check_ast_node(
477             sess,
478             false,
479             lint_store,
480             resolver.registered_tools(),
481             lint_buffer,
482             rustc_lint::BuiltinCombinedEarlyLintPass::new(),
483             &krate,
484         )
485     });
486
487     Ok(krate)
488 }
489
490 pub fn lower_to_hir<'res, 'tcx>(
491     sess: &'tcx Session,
492     resolver: &'res mut Resolver<'_>,
493     krate: Rc<ast::Crate>,
494     arena: &'tcx rustc_ast_lowering::Arena<'tcx>,
495 ) -> &'tcx Crate<'tcx> {
496     // Lower AST to HIR.
497     let hir_crate = rustc_ast_lowering::lower_crate(
498         sess,
499         &*krate,
500         resolver,
501         rustc_parse::nt_to_tokenstream,
502         arena,
503     );
504
505     // Drop AST to free memory
506     sess.time("drop_ast", || std::mem::drop(krate));
507
508     // Discard hygiene data, which isn't required after lowering to HIR.
509     if !sess.opts.debugging_opts.keep_hygiene_data {
510         rustc_span::hygiene::clear_syntax_context_map();
511     }
512
513     hir_crate
514 }
515
516 // Returns all the paths that correspond to generated files.
517 fn generated_output_paths(
518     sess: &Session,
519     outputs: &OutputFilenames,
520     exact_name: bool,
521     crate_name: &str,
522 ) -> Vec<PathBuf> {
523     let mut out_filenames = Vec::new();
524     for output_type in sess.opts.output_types.keys() {
525         let file = outputs.path(*output_type);
526         match *output_type {
527             // If the filename has been overridden using `-o`, it will not be modified
528             // by appending `.rlib`, `.exe`, etc., so we can skip this transformation.
529             OutputType::Exe if !exact_name => {
530                 for crate_type in sess.crate_types().iter() {
531                     let p = filename_for_input(sess, *crate_type, crate_name, outputs);
532                     out_filenames.push(p);
533                 }
534             }
535             OutputType::DepInfo if sess.opts.debugging_opts.dep_info_omit_d_target => {
536                 // Don't add the dep-info output when omitting it from dep-info targets
537             }
538             _ => {
539                 out_filenames.push(file);
540             }
541         }
542     }
543     out_filenames
544 }
545
546 // Runs `f` on every output file path and returns the first non-None result, or None if `f`
547 // returns None for every file path.
548 fn check_output<F, T>(output_paths: &[PathBuf], f: F) -> Option<T>
549 where
550     F: Fn(&PathBuf) -> Option<T>,
551 {
552     for output_path in output_paths {
553         if let Some(result) = f(output_path) {
554             return Some(result);
555         }
556     }
557     None
558 }
559
560 fn output_contains_path(output_paths: &[PathBuf], input_path: &Path) -> bool {
561     let input_path = input_path.canonicalize().ok();
562     if input_path.is_none() {
563         return false;
564     }
565     let check = |output_path: &PathBuf| {
566         if output_path.canonicalize().ok() == input_path { Some(()) } else { None }
567     };
568     check_output(output_paths, check).is_some()
569 }
570
571 fn output_conflicts_with_dir(output_paths: &[PathBuf]) -> Option<PathBuf> {
572     let check = |output_path: &PathBuf| output_path.is_dir().then(|| output_path.clone());
573     check_output(output_paths, check)
574 }
575
576 fn escape_dep_filename(filename: &str) -> String {
577     // Apparently clang and gcc *only* escape spaces:
578     // https://llvm.org/klaus/clang/commit/9d50634cfc268ecc9a7250226dd5ca0e945240d4
579     filename.replace(' ', "\\ ")
580 }
581
582 // Makefile comments only need escaping newlines and `\`.
583 // The result can be unescaped by anything that can unescape `escape_default` and friends.
584 fn escape_dep_env(symbol: Symbol) -> String {
585     let s = symbol.as_str();
586     let mut escaped = String::with_capacity(s.len());
587     for c in s.chars() {
588         match c {
589             '\n' => escaped.push_str(r"\n"),
590             '\r' => escaped.push_str(r"\r"),
591             '\\' => escaped.push_str(r"\\"),
592             _ => escaped.push(c),
593         }
594     }
595     escaped
596 }
597
598 fn write_out_deps(
599     sess: &Session,
600     boxed_resolver: &RefCell<BoxedResolver>,
601     outputs: &OutputFilenames,
602     out_filenames: &[PathBuf],
603 ) {
604     // Write out dependency rules to the dep-info file if requested
605     if !sess.opts.output_types.contains_key(&OutputType::DepInfo) {
606         return;
607     }
608     let deps_filename = outputs.path(OutputType::DepInfo);
609
610     let result = (|| -> io::Result<()> {
611         // Build a list of files used to compile the output and
612         // write Makefile-compatible dependency rules
613         let mut files: Vec<String> = sess
614             .source_map()
615             .files()
616             .iter()
617             .filter(|fmap| fmap.is_real_file())
618             .filter(|fmap| !fmap.is_imported())
619             .map(|fmap| escape_dep_filename(&fmap.name.prefer_local().to_string()))
620             .collect();
621
622         // Account for explicitly marked-to-track files
623         // (e.g. accessed in proc macros).
624         let file_depinfo = sess.parse_sess.file_depinfo.borrow();
625         let extra_tracked_files = file_depinfo.iter().map(|path_sym| {
626             let path = PathBuf::from(path_sym.as_str());
627             let file = FileName::from(path);
628             escape_dep_filename(&file.prefer_local().to_string())
629         });
630         files.extend(extra_tracked_files);
631
632         if sess.binary_dep_depinfo() {
633             if let Some(ref backend) = sess.opts.debugging_opts.codegen_backend {
634                 if backend.contains('.') {
635                     // If the backend name contain a `.`, it is the path to an external dynamic
636                     // library. If not, it is not a path.
637                     files.push(backend.to_string());
638                 }
639             }
640
641             boxed_resolver.borrow_mut().access(|resolver| {
642                 for cnum in resolver.cstore().crates_untracked() {
643                     let source = resolver.cstore().crate_source_untracked(cnum);
644                     if let Some((path, _)) = &source.dylib {
645                         files.push(escape_dep_filename(&path.display().to_string()));
646                     }
647                     if let Some((path, _)) = &source.rlib {
648                         files.push(escape_dep_filename(&path.display().to_string()));
649                     }
650                     if let Some((path, _)) = &source.rmeta {
651                         files.push(escape_dep_filename(&path.display().to_string()));
652                     }
653                 }
654             });
655         }
656
657         let mut file = BufWriter::new(fs::File::create(&deps_filename)?);
658         for path in out_filenames {
659             writeln!(file, "{}: {}\n", path.display(), files.join(" "))?;
660         }
661
662         // Emit a fake target for each input file to the compilation. This
663         // prevents `make` from spitting out an error if a file is later
664         // deleted. For more info see #28735
665         for path in files {
666             writeln!(file, "{}:", path)?;
667         }
668
669         // Emit special comments with information about accessed environment variables.
670         let env_depinfo = sess.parse_sess.env_depinfo.borrow();
671         if !env_depinfo.is_empty() {
672             let mut envs: Vec<_> = env_depinfo
673                 .iter()
674                 .map(|(k, v)| (escape_dep_env(*k), v.map(escape_dep_env)))
675                 .collect();
676             envs.sort_unstable();
677             writeln!(file)?;
678             for (k, v) in envs {
679                 write!(file, "# env-dep:{}", k)?;
680                 if let Some(v) = v {
681                     write!(file, "={}", v)?;
682                 }
683                 writeln!(file)?;
684             }
685         }
686
687         Ok(())
688     })();
689
690     match result {
691         Ok(_) => {
692             if sess.opts.json_artifact_notifications {
693                 sess.parse_sess
694                     .span_diagnostic
695                     .emit_artifact_notification(&deps_filename, "dep-info");
696             }
697         }
698         Err(e) => sess.fatal(&format!(
699             "error writing dependencies to `{}`: {}",
700             deps_filename.display(),
701             e
702         )),
703     }
704 }
705
706 pub fn prepare_outputs(
707     sess: &Session,
708     compiler: &Compiler,
709     krate: &ast::Crate,
710     boxed_resolver: &RefCell<BoxedResolver>,
711     crate_name: &str,
712 ) -> Result<OutputFilenames> {
713     let _timer = sess.timer("prepare_outputs");
714
715     // FIXME: rustdoc passes &[] instead of &krate.attrs here
716     let outputs = util::build_output_filenames(
717         &compiler.input,
718         &compiler.output_dir,
719         &compiler.output_file,
720         &compiler.temps_dir,
721         &krate.attrs,
722         sess,
723     );
724
725     let output_paths =
726         generated_output_paths(sess, &outputs, compiler.output_file.is_some(), crate_name);
727
728     // Ensure the source file isn't accidentally overwritten during compilation.
729     if let Some(ref input_path) = compiler.input_path {
730         if sess.opts.will_create_output_file() {
731             if output_contains_path(&output_paths, input_path) {
732                 let reported = sess.err(&format!(
733                     "the input file \"{}\" would be overwritten by the generated \
734                         executable",
735                     input_path.display()
736                 ));
737                 return Err(reported);
738             }
739             if let Some(dir_path) = output_conflicts_with_dir(&output_paths) {
740                 let reported = sess.err(&format!(
741                     "the generated executable for the input file \"{}\" conflicts with the \
742                         existing directory \"{}\"",
743                     input_path.display(),
744                     dir_path.display()
745                 ));
746                 return Err(reported);
747             }
748         }
749     }
750
751     if let Some(ref dir) = compiler.temps_dir {
752         if fs::create_dir_all(dir).is_err() {
753             let reported =
754                 sess.err("failed to find or create the directory specified by `--temps-dir`");
755             return Err(reported);
756         }
757     }
758
759     write_out_deps(sess, boxed_resolver, &outputs, &output_paths);
760
761     let only_dep_info = sess.opts.output_types.contains_key(&OutputType::DepInfo)
762         && sess.opts.output_types.len() == 1;
763
764     if !only_dep_info {
765         if let Some(ref dir) = compiler.output_dir {
766             if fs::create_dir_all(dir).is_err() {
767                 let reported =
768                     sess.err("failed to find or create the directory specified by `--out-dir`");
769                 return Err(reported);
770             }
771         }
772     }
773
774     Ok(outputs)
775 }
776
777 pub static DEFAULT_QUERY_PROVIDERS: SyncLazy<Providers> = SyncLazy::new(|| {
778     let providers = &mut Providers::default();
779     providers.analysis = analysis;
780     proc_macro_decls::provide(providers);
781     rustc_const_eval::provide(providers);
782     rustc_middle::hir::provide(providers);
783     mir_borrowck::provide(providers);
784     mir_build::provide(providers);
785     rustc_mir_transform::provide(providers);
786     rustc_monomorphize::provide(providers);
787     rustc_privacy::provide(providers);
788     typeck::provide(providers);
789     ty::provide(providers);
790     traits::provide(providers);
791     rustc_passes::provide(providers);
792     rustc_resolve::provide(providers);
793     rustc_traits::provide(providers);
794     rustc_ty_utils::provide(providers);
795     rustc_metadata::provide(providers);
796     rustc_lint::provide(providers);
797     rustc_symbol_mangling::provide(providers);
798     rustc_codegen_ssa::provide(providers);
799     *providers
800 });
801
802 pub static DEFAULT_EXTERN_QUERY_PROVIDERS: SyncLazy<ExternProviders> = SyncLazy::new(|| {
803     let mut extern_providers = ExternProviders::default();
804     rustc_metadata::provide_extern(&mut extern_providers);
805     rustc_codegen_ssa::provide_extern(&mut extern_providers);
806     extern_providers
807 });
808
809 pub struct QueryContext<'tcx> {
810     gcx: &'tcx GlobalCtxt<'tcx>,
811 }
812
813 impl<'tcx> QueryContext<'tcx> {
814     pub fn enter<F, R>(&mut self, f: F) -> R
815     where
816         F: FnOnce(TyCtxt<'tcx>) -> R,
817     {
818         let icx = ty::tls::ImplicitCtxt::new(self.gcx);
819         ty::tls::enter_context(&icx, |_| f(icx.tcx))
820     }
821 }
822
823 pub fn create_global_ctxt<'tcx>(
824     compiler: &'tcx Compiler,
825     lint_store: Lrc<LintStore>,
826     krate: Rc<ast::Crate>,
827     dep_graph: DepGraph,
828     resolver: Rc<RefCell<BoxedResolver>>,
829     outputs: OutputFilenames,
830     crate_name: &str,
831     queries: &'tcx OnceCell<TcxQueries<'tcx>>,
832     global_ctxt: &'tcx OnceCell<GlobalCtxt<'tcx>>,
833     arena: &'tcx WorkerLocal<Arena<'tcx>>,
834     hir_arena: &'tcx WorkerLocal<rustc_ast_lowering::Arena<'tcx>>,
835 ) -> QueryContext<'tcx> {
836     // We're constructing the HIR here; we don't care what we will
837     // read, since we haven't even constructed the *input* to
838     // incr. comp. yet.
839     dep_graph.assert_ignored();
840
841     let sess = &compiler.session();
842     let krate =
843         resolver.borrow_mut().access(|resolver| lower_to_hir(sess, resolver, krate, hir_arena));
844     let resolver_outputs = BoxedResolver::to_resolver_outputs(resolver);
845
846     let query_result_on_disk_cache = rustc_incremental::load_query_result_cache(sess);
847
848     let codegen_backend = compiler.codegen_backend();
849     let mut local_providers = *DEFAULT_QUERY_PROVIDERS;
850     codegen_backend.provide(&mut local_providers);
851
852     let mut extern_providers = *DEFAULT_EXTERN_QUERY_PROVIDERS;
853     codegen_backend.provide_extern(&mut extern_providers);
854
855     if let Some(callback) = compiler.override_queries {
856         callback(sess, &mut local_providers, &mut extern_providers);
857     }
858
859     let queries = queries.get_or_init(|| {
860         TcxQueries::new(local_providers, extern_providers, query_result_on_disk_cache)
861     });
862
863     let gcx = sess.time("setup_global_ctxt", || {
864         global_ctxt.get_or_init(move || {
865             TyCtxt::create_global_ctxt(
866                 sess,
867                 lint_store,
868                 arena,
869                 resolver_outputs,
870                 krate,
871                 dep_graph,
872                 queries.on_disk_cache.as_ref().map(OnDiskCache::as_dyn),
873                 queries.as_dyn(),
874                 rustc_query_impl::query_callbacks(arena),
875                 crate_name,
876                 outputs,
877             )
878         })
879     });
880
881     QueryContext { gcx }
882 }
883
884 /// Runs the resolution, type-checking, region checking and other
885 /// miscellaneous analysis passes on the crate.
886 fn analysis(tcx: TyCtxt<'_>, (): ()) -> Result<()> {
887     rustc_passes::hir_id_validator::check_crate(tcx);
888
889     let sess = tcx.sess;
890     let mut entry_point = None;
891
892     sess.time("misc_checking_1", || {
893         parallel!(
894             {
895                 entry_point = sess.time("looking_for_entry_point", || tcx.entry_fn(()));
896
897                 sess.time("looking_for_derive_registrar", || {
898                     tcx.ensure().proc_macro_decls_static(())
899                 });
900
901                 CStore::from_tcx(tcx).report_unused_deps(tcx);
902             },
903             {
904                 tcx.hir().par_for_each_module(|module| {
905                     tcx.ensure().check_mod_loops(module);
906                     tcx.ensure().check_mod_attrs(module);
907                     tcx.ensure().check_mod_naked_functions(module);
908                     tcx.ensure().check_mod_unstable_api_usage(module);
909                     tcx.ensure().check_mod_const_bodies(module);
910                 });
911             },
912             {
913                 sess.time("unused_lib_feature_checking", || {
914                     rustc_passes::stability::check_unused_or_stable_features(tcx)
915                 });
916             },
917             {
918                 // We force these queries to run,
919                 // since they might not otherwise get called.
920                 // This marks the corresponding crate-level attributes
921                 // as used, and ensures that their values are valid.
922                 tcx.ensure().limits(());
923                 tcx.ensure().stability_index(());
924             }
925         );
926     });
927
928     // passes are timed inside typeck
929     typeck::check_crate(tcx)?;
930
931     sess.time("misc_checking_2", || {
932         parallel!(
933             {
934                 sess.time("match_checking", || {
935                     tcx.hir().par_body_owners(|def_id| tcx.ensure().check_match(def_id.to_def_id()))
936                 });
937             },
938             {
939                 sess.time("liveness_and_intrinsic_checking", || {
940                     tcx.hir().par_for_each_module(|module| {
941                         // this must run before MIR dump, because
942                         // "not all control paths return a value" is reported here.
943                         //
944                         // maybe move the check to a MIR pass?
945                         tcx.ensure().check_mod_liveness(module);
946                         tcx.ensure().check_mod_intrinsics(module);
947                     });
948                 });
949             }
950         );
951     });
952
953     sess.time("MIR_borrow_checking", || {
954         tcx.hir().par_body_owners(|def_id| tcx.ensure().mir_borrowck(def_id));
955     });
956
957     sess.time("MIR_effect_checking", || {
958         for def_id in tcx.hir().body_owners() {
959             tcx.ensure().thir_check_unsafety(def_id);
960             if !tcx.sess.opts.debugging_opts.thir_unsafeck {
961                 rustc_mir_transform::check_unsafety::check_unsafety(tcx, def_id);
962             }
963
964             if tcx.hir().body_const_context(def_id).is_some() {
965                 tcx.ensure()
966                     .mir_drops_elaborated_and_const_checked(ty::WithOptConstParam::unknown(def_id));
967             }
968         }
969     });
970
971     sess.time("layout_testing", || layout_test::test_layout(tcx));
972
973     // Avoid overwhelming user with errors if borrow checking failed.
974     // I'm not sure how helpful this is, to be honest, but it avoids a
975     // lot of annoying errors in the ui tests (basically,
976     // lint warnings and so on -- kindck used to do this abort, but
977     // kindck is gone now). -nmatsakis
978     if let Some(reported) = sess.has_errors() {
979         return Err(reported);
980     }
981
982     sess.time("misc_checking_3", || {
983         parallel!(
984             {
985                 tcx.ensure().privacy_access_levels(());
986
987                 parallel!(
988                     {
989                         tcx.ensure().check_private_in_public(());
990                     },
991                     {
992                         tcx.hir()
993                             .par_for_each_module(|module| tcx.ensure().check_mod_deathness(module));
994                     },
995                     {
996                         sess.time("lint_checking", || {
997                             rustc_lint::check_crate(tcx, || {
998                                 rustc_lint::BuiltinCombinedLateLintPass::new()
999                             });
1000                         });
1001                     }
1002                 );
1003             },
1004             {
1005                 sess.time("privacy_checking_modules", || {
1006                     tcx.hir().par_for_each_module(|module| {
1007                         tcx.ensure().check_mod_privacy(module);
1008                     });
1009                 });
1010             }
1011         );
1012     });
1013
1014     Ok(())
1015 }
1016
1017 fn encode_and_write_metadata(
1018     tcx: TyCtxt<'_>,
1019     outputs: &OutputFilenames,
1020 ) -> (EncodedMetadata, bool) {
1021     #[derive(PartialEq, Eq, PartialOrd, Ord)]
1022     enum MetadataKind {
1023         None,
1024         Uncompressed,
1025         Compressed,
1026     }
1027
1028     let metadata_kind = tcx
1029         .sess
1030         .crate_types()
1031         .iter()
1032         .map(|ty| match *ty {
1033             CrateType::Executable | CrateType::Staticlib | CrateType::Cdylib => MetadataKind::None,
1034
1035             CrateType::Rlib => MetadataKind::Uncompressed,
1036
1037             CrateType::Dylib | CrateType::ProcMacro => MetadataKind::Compressed,
1038         })
1039         .max()
1040         .unwrap_or(MetadataKind::None);
1041
1042     let metadata = match metadata_kind {
1043         MetadataKind::None => EncodedMetadata::new(),
1044         MetadataKind::Uncompressed | MetadataKind::Compressed => encode_metadata(tcx),
1045     };
1046
1047     let _prof_timer = tcx.sess.prof.generic_activity("write_crate_metadata");
1048
1049     let need_metadata_file = tcx.sess.opts.output_types.contains_key(&OutputType::Metadata);
1050     if need_metadata_file {
1051         let crate_name = tcx.crate_name(LOCAL_CRATE);
1052         let out_filename = filename_for_metadata(tcx.sess, crate_name.as_str(), outputs);
1053         // To avoid races with another rustc process scanning the output directory,
1054         // we need to write the file somewhere else and atomically move it to its
1055         // final destination, with an `fs::rename` call. In order for the rename to
1056         // always succeed, the temporary file needs to be on the same filesystem,
1057         // which is why we create it inside the output directory specifically.
1058         let metadata_tmpdir = TempFileBuilder::new()
1059             .prefix("rmeta")
1060             .tempdir_in(out_filename.parent().unwrap())
1061             .unwrap_or_else(|err| tcx.sess.fatal(&format!("couldn't create a temp dir: {}", err)));
1062         let metadata_tmpdir = MaybeTempDir::new(metadata_tmpdir, tcx.sess.opts.cg.save_temps);
1063         let metadata_filename = emit_metadata(tcx.sess, metadata.raw_data(), &metadata_tmpdir);
1064         if let Err(e) = util::non_durable_rename(&metadata_filename, &out_filename) {
1065             tcx.sess.fatal(&format!("failed to write {}: {}", out_filename.display(), e));
1066         }
1067         if tcx.sess.opts.json_artifact_notifications {
1068             tcx.sess
1069                 .parse_sess
1070                 .span_diagnostic
1071                 .emit_artifact_notification(&out_filename, "metadata");
1072         }
1073     }
1074
1075     let need_metadata_module = metadata_kind == MetadataKind::Compressed;
1076
1077     (metadata, need_metadata_module)
1078 }
1079
1080 /// Runs the codegen backend, after which the AST and analysis can
1081 /// be discarded.
1082 pub fn start_codegen<'tcx>(
1083     codegen_backend: &dyn CodegenBackend,
1084     tcx: TyCtxt<'tcx>,
1085     outputs: &OutputFilenames,
1086 ) -> Box<dyn Any> {
1087     info!("Pre-codegen\n{:?}", tcx.debug_stats());
1088
1089     let (metadata, need_metadata_module) = encode_and_write_metadata(tcx, outputs);
1090
1091     let codegen = tcx.sess.time("codegen_crate", move || {
1092         codegen_backend.codegen_crate(tcx, metadata, need_metadata_module)
1093     });
1094
1095     // Don't run these test assertions when not doing codegen. Compiletest tries to build
1096     // build-fail tests in check mode first and expects it to not give an error in that case.
1097     if tcx.sess.opts.output_types.should_codegen() {
1098         rustc_incremental::assert_module_sources::assert_module_sources(tcx);
1099         rustc_symbol_mangling::test::report_symbol_names(tcx);
1100     }
1101
1102     info!("Post-codegen\n{:?}", tcx.debug_stats());
1103
1104     if tcx.sess.opts.output_types.contains_key(&OutputType::Mir) {
1105         if let Err(e) = rustc_mir_transform::dump_mir::emit_mir(tcx, outputs) {
1106             tcx.sess.err(&format!("could not emit MIR: {}", e));
1107             tcx.sess.abort_if_errors();
1108         }
1109     }
1110
1111     codegen
1112 }
1113
1114 fn get_recursion_limit(krate_attrs: &[ast::Attribute], sess: &Session) -> Limit {
1115     if let Some(attr) = krate_attrs
1116         .iter()
1117         .find(|attr| attr.has_name(sym::recursion_limit) && attr.value_str().is_none())
1118     {
1119         // This is here mainly to check for using a macro, such as
1120         // #![recursion_limit = foo!()]. That is not supported since that
1121         // would require expanding this while in the middle of expansion,
1122         // which needs to know the limit before expanding. Otherwise,
1123         // validation would normally be caught in AstValidator (via
1124         // `check_builtin_attribute`), but by the time that runs the macro
1125         // is expanded, and it doesn't give an error.
1126         validate_attr::emit_fatal_malformed_builtin_attribute(
1127             &sess.parse_sess,
1128             attr,
1129             sym::recursion_limit,
1130         );
1131     }
1132     rustc_middle::middle::limits::get_recursion_limit(krate_attrs, sess)
1133 }