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