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