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