rustc_interface/
passes.rs

1use std::any::Any;
2use std::ffi::{OsStr, OsString};
3use std::io::{self, BufWriter, Write};
4use std::path::{Path, PathBuf};
5use std::sync::{Arc, LazyLock, OnceLock};
6use std::{env, fs, iter};
7
8use rustc_ast as ast;
9use rustc_attr_parsing::{AttributeParser, ShouldEmit};
10use rustc_codegen_ssa::traits::CodegenBackend;
11use rustc_data_structures::jobserver::Proxy;
12use rustc_data_structures::steal::Steal;
13use rustc_data_structures::sync::{AppendOnlyIndexVec, FreezeLock, WorkerLocal};
14use rustc_data_structures::{parallel, thousands};
15use rustc_errors::timings::TimingSection;
16use rustc_expand::base::{ExtCtxt, LintStoreExpand};
17use rustc_feature::Features;
18use rustc_fs_util::try_canonicalize;
19use rustc_hir::attrs::AttributeKind;
20use rustc_hir::def_id::{LOCAL_CRATE, StableCrateId, StableCrateIdMap};
21use rustc_hir::definitions::Definitions;
22use rustc_hir::limit::Limit;
23use rustc_incremental::setup_dep_graph;
24use rustc_lint::{BufferedEarlyLint, EarlyCheckNode, LintStore, unerased_lint_store};
25use rustc_metadata::EncodedMetadata;
26use rustc_metadata::creader::CStore;
27use rustc_middle::arena::Arena;
28use rustc_middle::dep_graph::DepsType;
29use rustc_middle::ty::{self, CurrentGcx, GlobalCtxt, RegisteredTools, TyCtxt};
30use rustc_middle::util::Providers;
31use rustc_parse::lexer::StripTokens;
32use rustc_parse::{new_parser_from_file, new_parser_from_source_str, unwrap_or_emit_fatal};
33use rustc_passes::{abi_test, input_stats, layout_test};
34use rustc_resolve::{Resolver, ResolverOutputs};
35use rustc_session::Session;
36use rustc_session::config::{CrateType, Input, OutFileName, OutputFilenames, OutputType};
37use rustc_session::cstore::Untracked;
38use rustc_session::output::{collect_crate_types, filename_for_input};
39use rustc_session::parse::feature_err;
40use rustc_session::search_paths::PathKind;
41use rustc_span::{
42    DUMMY_SP, ErrorGuaranteed, ExpnKind, FileName, SourceFileHash, SourceFileHashAlgorithm, Span,
43    Symbol, sym,
44};
45use rustc_trait_selection::{solve, traits};
46use tracing::{info, instrument};
47
48use crate::interface::Compiler;
49use crate::{errors, limits, proc_macro_decls, util};
50
51pub fn parse<'a>(sess: &'a Session) -> ast::Crate {
52    let mut krate = sess
53        .time("parse_crate", || {
54            let mut parser = unwrap_or_emit_fatal(match &sess.io.input {
55                Input::File(file) => new_parser_from_file(
56                    &sess.psess,
57                    file,
58                    StripTokens::ShebangAndFrontmatter,
59                    None,
60                ),
61                Input::Str { input, name } => new_parser_from_source_str(
62                    &sess.psess,
63                    name.clone(),
64                    input.clone(),
65                    StripTokens::ShebangAndFrontmatter,
66                ),
67            });
68            parser.parse_crate_mod()
69        })
70        .unwrap_or_else(|parse_error| {
71            let guar: ErrorGuaranteed = parse_error.emit();
72            guar.raise_fatal();
73        });
74
75    rustc_builtin_macros::cmdline_attrs::inject(
76        &mut krate,
77        &sess.psess,
78        &sess.opts.unstable_opts.crate_attr,
79    );
80
81    krate
82}
83
84fn pre_expansion_lint<'a>(
85    sess: &Session,
86    features: &Features,
87    lint_store: &LintStore,
88    registered_tools: &RegisteredTools,
89    check_node: impl EarlyCheckNode<'a>,
90    node_name: Symbol,
91) {
92    sess.prof.generic_activity_with_arg("pre_AST_expansion_lint_checks", node_name.as_str()).run(
93        || {
94            rustc_lint::check_ast_node(
95                sess,
96                None,
97                features,
98                true,
99                lint_store,
100                registered_tools,
101                None,
102                rustc_lint::BuiltinCombinedPreExpansionLintPass::new(),
103                check_node,
104            );
105        },
106    );
107}
108
109// Cannot implement directly for `LintStore` due to trait coherence.
110struct LintStoreExpandImpl<'a>(&'a LintStore);
111
112impl LintStoreExpand for LintStoreExpandImpl<'_> {
113    fn pre_expansion_lint(
114        &self,
115        sess: &Session,
116        features: &Features,
117        registered_tools: &RegisteredTools,
118        node_id: ast::NodeId,
119        attrs: &[ast::Attribute],
120        items: &[Box<ast::Item>],
121        name: Symbol,
122    ) {
123        pre_expansion_lint(sess, features, self.0, registered_tools, (node_id, attrs, items), name);
124    }
125}
126
127/// Runs the "early phases" of the compiler: initial `cfg` processing,
128/// syntax expansion, secondary `cfg` expansion, synthesis of a test
129/// harness if one is to be provided, injection of a dependency on the
130/// standard library and prelude, and name resolution.
131#[instrument(level = "trace", skip(krate, resolver))]
132fn configure_and_expand(
133    mut krate: ast::Crate,
134    pre_configured_attrs: &[ast::Attribute],
135    resolver: &mut Resolver<'_, '_>,
136) -> ast::Crate {
137    let tcx = resolver.tcx();
138    let sess = tcx.sess;
139    let features = tcx.features();
140    let lint_store = unerased_lint_store(tcx.sess);
141    let crate_name = tcx.crate_name(LOCAL_CRATE);
142    let lint_check_node = (&krate, pre_configured_attrs);
143    pre_expansion_lint(
144        sess,
145        features,
146        lint_store,
147        tcx.registered_tools(()),
148        lint_check_node,
149        crate_name,
150    );
151    rustc_builtin_macros::register_builtin_macros(resolver);
152
153    let num_standard_library_imports = sess.time("crate_injection", || {
154        rustc_builtin_macros::standard_library_imports::inject(
155            &mut krate,
156            pre_configured_attrs,
157            resolver,
158            sess,
159            features,
160        )
161    });
162
163    util::check_attr_crate_type(sess, pre_configured_attrs, resolver.lint_buffer());
164
165    // Expand all macros
166    krate = sess.time("macro_expand_crate", || {
167        // Windows dlls do not have rpaths, so they don't know how to find their
168        // dependencies. It's up to us to tell the system where to find all the
169        // dependent dlls. Note that this uses cfg!(windows) as opposed to
170        // targ_cfg because syntax extensions are always loaded for the host
171        // compiler, not for the target.
172        //
173        // This is somewhat of an inherently racy operation, however, as
174        // multiple threads calling this function could possibly continue
175        // extending PATH far beyond what it should. To solve this for now we
176        // just don't add any new elements to PATH which are already there
177        // within PATH. This is basically a targeted fix at #17360 for rustdoc
178        // which runs rustc in parallel but has been seen (#33844) to cause
179        // problems with PATH becoming too long.
180        let mut old_path = OsString::new();
181        if cfg!(windows) {
182            old_path = env::var_os("PATH").unwrap_or(old_path);
183            let mut new_path = Vec::from_iter(
184                sess.host_filesearch().search_paths(PathKind::All).map(|p| p.dir.clone()),
185            );
186            for path in env::split_paths(&old_path) {
187                if !new_path.contains(&path) {
188                    new_path.push(path);
189                }
190            }
191            unsafe {
192                env::set_var(
193                    "PATH",
194                    env::join_paths(
195                        new_path.iter().filter(|p| env::join_paths(iter::once(p)).is_ok()),
196                    )
197                    .unwrap(),
198                );
199            }
200        }
201
202        // Create the config for macro expansion
203        let recursion_limit = get_recursion_limit(pre_configured_attrs, sess);
204        let cfg = rustc_expand::expand::ExpansionConfig {
205            crate_name,
206            features,
207            recursion_limit,
208            trace_mac: sess.opts.unstable_opts.trace_macros,
209            should_test: sess.is_test_crate(),
210            span_debug: sess.opts.unstable_opts.span_debug,
211            proc_macro_backtrace: sess.opts.unstable_opts.proc_macro_backtrace,
212        };
213
214        let lint_store = LintStoreExpandImpl(lint_store);
215        let mut ecx = ExtCtxt::new(sess, cfg, resolver, Some(&lint_store));
216        ecx.num_standard_library_imports = num_standard_library_imports;
217        // Expand macros now!
218        let krate = sess.time("expand_crate", || ecx.monotonic_expander().expand_crate(krate));
219
220        if ecx.nb_macro_errors > 0 {
221            sess.dcx().abort_if_errors();
222        }
223
224        // The rest is error reporting and stats
225
226        sess.psess.buffered_lints.with_lock(|buffered_lints: &mut Vec<BufferedEarlyLint>| {
227            buffered_lints.append(&mut ecx.buffered_early_lint);
228        });
229
230        sess.time("check_unused_macros", || {
231            ecx.check_unused_macros();
232        });
233
234        // If we hit a recursion limit, exit early to avoid later passes getting overwhelmed
235        // with a large AST
236        if ecx.reduced_recursion_limit.is_some() {
237            sess.dcx().abort_if_errors();
238            unreachable!();
239        }
240
241        if cfg!(windows) {
242            unsafe {
243                env::set_var("PATH", &old_path);
244            }
245        }
246
247        if ecx.sess.opts.unstable_opts.macro_stats {
248            print_macro_stats(&ecx);
249        }
250
251        krate
252    });
253
254    sess.time("maybe_building_test_harness", || {
255        rustc_builtin_macros::test_harness::inject(&mut krate, sess, features, resolver)
256    });
257
258    let has_proc_macro_decls = sess.time("AST_validation", || {
259        rustc_ast_passes::ast_validation::check_crate(
260            sess,
261            features,
262            &krate,
263            tcx.is_sdylib_interface_build(),
264            resolver.lint_buffer(),
265        )
266    });
267
268    let crate_types = tcx.crate_types();
269    let is_executable_crate = crate_types.contains(&CrateType::Executable);
270    let is_proc_macro_crate = crate_types.contains(&CrateType::ProcMacro);
271
272    if crate_types.len() > 1 {
273        if is_executable_crate {
274            sess.dcx().emit_err(errors::MixedBinCrate);
275        }
276        if is_proc_macro_crate {
277            sess.dcx().emit_err(errors::MixedProcMacroCrate);
278        }
279    }
280    if crate_types.contains(&CrateType::Sdylib) && !tcx.features().export_stable() {
281        feature_err(sess, sym::export_stable, DUMMY_SP, "`sdylib` crate type is unstable").emit();
282    }
283
284    if is_proc_macro_crate && !sess.panic_strategy().unwinds() {
285        sess.dcx().emit_warn(errors::ProcMacroCratePanicAbort);
286    }
287
288    sess.time("maybe_create_a_macro_crate", || {
289        let is_test_crate = sess.is_test_crate();
290        rustc_builtin_macros::proc_macro_harness::inject(
291            &mut krate,
292            sess,
293            features,
294            resolver,
295            is_proc_macro_crate,
296            has_proc_macro_decls,
297            is_test_crate,
298            sess.dcx(),
299        )
300    });
301
302    // Done with macro expansion!
303
304    resolver.resolve_crate(&krate);
305
306    CStore::from_tcx(tcx).report_incompatible_target_modifiers(tcx, &krate);
307    CStore::from_tcx(tcx).report_incompatible_async_drop_feature(tcx, &krate);
308    krate
309}
310
311fn print_macro_stats(ecx: &ExtCtxt<'_>) {
312    use std::fmt::Write;
313
314    let crate_name = ecx.ecfg.crate_name.as_str();
315    let crate_name = if crate_name == "build_script_build" {
316        // This is a build script. Get the package name from the environment.
317        let pkg_name =
318            std::env::var("CARGO_PKG_NAME").unwrap_or_else(|_| "<unknown crate>".to_string());
319        format!("{pkg_name} build script")
320    } else {
321        crate_name.to_string()
322    };
323
324    // No instability because we immediately sort the produced vector.
325    #[allow(rustc::potential_query_instability)]
326    let mut macro_stats: Vec<_> = ecx
327        .macro_stats
328        .iter()
329        .map(|((name, kind), stat)| {
330            // This gives the desired sort order: sort by bytes, then lines, etc.
331            (stat.bytes, stat.lines, stat.uses, name, *kind)
332        })
333        .collect();
334    macro_stats.sort_unstable();
335    macro_stats.reverse(); // bigger items first
336
337    let prefix = "macro-stats";
338    let name_w = 32;
339    let uses_w = 7;
340    let lines_w = 11;
341    let avg_lines_w = 11;
342    let bytes_w = 11;
343    let avg_bytes_w = 11;
344    let banner_w = name_w + uses_w + lines_w + avg_lines_w + bytes_w + avg_bytes_w;
345
346    // We write all the text into a string and print it with a single
347    // `eprint!`. This is an attempt to minimize interleaved text if multiple
348    // rustc processes are printing macro-stats at the same time (e.g. with
349    // `RUSTFLAGS='-Zmacro-stats' cargo build`). It still doesn't guarantee
350    // non-interleaving, though.
351    let mut s = String::new();
352    _ = writeln!(s, "{prefix} {}", "=".repeat(banner_w));
353    _ = writeln!(s, "{prefix} MACRO EXPANSION STATS: {}", crate_name);
354    _ = writeln!(
355        s,
356        "{prefix} {:<name_w$}{:>uses_w$}{:>lines_w$}{:>avg_lines_w$}{:>bytes_w$}{:>avg_bytes_w$}",
357        "Macro Name", "Uses", "Lines", "Avg Lines", "Bytes", "Avg Bytes",
358    );
359    _ = writeln!(s, "{prefix} {}", "-".repeat(banner_w));
360    // It's helpful to print something when there are no entries, otherwise it
361    // might look like something went wrong.
362    if macro_stats.is_empty() {
363        _ = writeln!(s, "{prefix} (none)");
364    }
365    for (bytes, lines, uses, name, kind) in macro_stats {
366        let mut name = ExpnKind::Macro(kind, *name).descr();
367        let uses_with_underscores = thousands::usize_with_underscores(uses);
368        let avg_lines = lines as f64 / uses as f64;
369        let avg_bytes = bytes as f64 / uses as f64;
370
371        // Ensure the "Macro Name" and "Uses" columns are as compact as possible.
372        let mut uses_w = uses_w;
373        if name.len() + uses_with_underscores.len() >= name_w + uses_w {
374            // The name would abut or overlap the uses value. Print the name
375            // on a line by itself, then set the name to empty and print things
376            // normally, to show the stats on the next line.
377            _ = writeln!(s, "{prefix} {:<name_w$}", name);
378            name = String::new();
379        } else if name.len() >= name_w {
380            // The name won't abut or overlap with the uses value, but it does
381            // overlap with the empty part of the uses column. Shrink the width
382            // of the uses column to account for the excess name length.
383            uses_w -= name.len() - name_w;
384        };
385
386        _ = writeln!(
387            s,
388            "{prefix} {:<name_w$}{:>uses_w$}{:>lines_w$}{:>avg_lines_w$}{:>bytes_w$}{:>avg_bytes_w$}",
389            name,
390            uses_with_underscores,
391            thousands::usize_with_underscores(lines),
392            thousands::f64p1_with_underscores(avg_lines),
393            thousands::usize_with_underscores(bytes),
394            thousands::f64p1_with_underscores(avg_bytes),
395        );
396    }
397    _ = writeln!(s, "{prefix} {}", "=".repeat(banner_w));
398    eprint!("{s}");
399}
400
401fn early_lint_checks(tcx: TyCtxt<'_>, (): ()) {
402    let sess = tcx.sess;
403    let (resolver, krate) = &*tcx.resolver_for_lowering().borrow();
404    let mut lint_buffer = resolver.lint_buffer.steal();
405
406    if sess.opts.unstable_opts.input_stats {
407        input_stats::print_ast_stats(tcx, krate);
408    }
409
410    // Needs to go *after* expansion to be able to check the results of macro expansion.
411    sess.time("complete_gated_feature_checking", || {
412        rustc_ast_passes::feature_gate::check_crate(krate, sess, tcx.features());
413    });
414
415    // Add all buffered lints from the `ParseSess` to the `Session`.
416    sess.psess.buffered_lints.with_lock(|buffered_lints| {
417        info!("{} parse sess buffered_lints", buffered_lints.len());
418        for early_lint in buffered_lints.drain(..) {
419            lint_buffer.add_early_lint(early_lint);
420        }
421    });
422
423    // Gate identifiers containing invalid Unicode codepoints that were recovered during lexing.
424    sess.psess.bad_unicode_identifiers.with_lock(|identifiers| {
425        for (ident, mut spans) in identifiers.drain(..) {
426            spans.sort();
427            if ident == sym::ferris {
428                enum FerrisFix {
429                    SnakeCase,
430                    ScreamingSnakeCase,
431                    PascalCase,
432                }
433
434                impl FerrisFix {
435                    const fn as_str(self) -> &'static str {
436                        match self {
437                            FerrisFix::SnakeCase => "ferris",
438                            FerrisFix::ScreamingSnakeCase => "FERRIS",
439                            FerrisFix::PascalCase => "Ferris",
440                        }
441                    }
442                }
443
444                let first_span = spans[0];
445                let prev_source = sess.psess.source_map().span_to_prev_source(first_span);
446                let ferris_fix = prev_source
447                    .map_or(FerrisFix::SnakeCase, |source| {
448                        let mut source_before_ferris = source.split_whitespace().rev();
449                        match source_before_ferris.next() {
450                            Some("struct" | "trait" | "mod" | "union" | "type" | "enum") => {
451                                FerrisFix::PascalCase
452                            }
453                            Some("const" | "static") => FerrisFix::ScreamingSnakeCase,
454                            Some("mut") if source_before_ferris.next() == Some("static") => {
455                                FerrisFix::ScreamingSnakeCase
456                            }
457                            _ => FerrisFix::SnakeCase,
458                        }
459                    })
460                    .as_str();
461
462                sess.dcx().emit_err(errors::FerrisIdentifier { spans, first_span, ferris_fix });
463            } else {
464                sess.dcx().emit_err(errors::EmojiIdentifier { spans, ident });
465            }
466        }
467    });
468
469    let lint_store = unerased_lint_store(tcx.sess);
470    rustc_lint::check_ast_node(
471        sess,
472        Some(tcx),
473        tcx.features(),
474        false,
475        lint_store,
476        tcx.registered_tools(()),
477        Some(lint_buffer),
478        rustc_lint::BuiltinCombinedEarlyLintPass::new(),
479        (&**krate, &*krate.attrs),
480    )
481}
482
483fn env_var_os<'tcx>(tcx: TyCtxt<'tcx>, key: &'tcx OsStr) -> Option<&'tcx OsStr> {
484    let value = env::var_os(key);
485
486    let value_tcx = value.as_ref().map(|value| {
487        let encoded_bytes = tcx.arena.alloc_slice(value.as_encoded_bytes());
488        debug_assert_eq!(value.as_encoded_bytes(), encoded_bytes);
489        // SAFETY: The bytes came from `as_encoded_bytes`, and we assume that
490        // `alloc_slice` is implemented correctly, and passes the same bytes
491        // back (debug asserted above).
492        unsafe { OsStr::from_encoded_bytes_unchecked(encoded_bytes) }
493    });
494
495    // Also add the variable to Cargo's dependency tracking
496    //
497    // NOTE: This only works for passes run before `write_dep_info`. See that
498    // for extension points for configuring environment variables to be
499    // properly change-tracked.
500    tcx.sess.psess.env_depinfo.borrow_mut().insert((
501        Symbol::intern(&key.to_string_lossy()),
502        value.as_ref().and_then(|value| value.to_str()).map(|value| Symbol::intern(value)),
503    ));
504
505    value_tcx
506}
507
508// Returns all the paths that correspond to generated files.
509fn generated_output_paths(
510    tcx: TyCtxt<'_>,
511    outputs: &OutputFilenames,
512    exact_name: bool,
513    crate_name: Symbol,
514) -> Vec<PathBuf> {
515    let sess = tcx.sess;
516    let mut out_filenames = Vec::new();
517    for output_type in sess.opts.output_types.keys() {
518        let out_filename = outputs.path(*output_type);
519        let file = out_filename.as_path().to_path_buf();
520        match *output_type {
521            // If the filename has been overridden using `-o`, it will not be modified
522            // by appending `.rlib`, `.exe`, etc., so we can skip this transformation.
523            OutputType::Exe if !exact_name => {
524                for crate_type in tcx.crate_types().iter() {
525                    let p = filename_for_input(sess, *crate_type, crate_name, outputs);
526                    out_filenames.push(p.as_path().to_path_buf());
527                }
528            }
529            OutputType::DepInfo if sess.opts.unstable_opts.dep_info_omit_d_target => {
530                // Don't add the dep-info output when omitting it from dep-info targets
531            }
532            OutputType::DepInfo if out_filename.is_stdout() => {
533                // Don't add the dep-info output when it goes to stdout
534            }
535            _ => {
536                out_filenames.push(file);
537            }
538        }
539    }
540    out_filenames
541}
542
543fn output_contains_path(output_paths: &[PathBuf], input_path: &Path) -> bool {
544    let input_path = try_canonicalize(input_path).ok();
545    if input_path.is_none() {
546        return false;
547    }
548    output_paths.iter().any(|output_path| try_canonicalize(output_path).ok() == input_path)
549}
550
551fn output_conflicts_with_dir(output_paths: &[PathBuf]) -> Option<&PathBuf> {
552    output_paths.iter().find(|output_path| output_path.is_dir())
553}
554
555fn escape_dep_filename(filename: &str) -> String {
556    // Apparently clang and gcc *only* escape spaces:
557    // https://llvm.org/klaus/clang/commit/9d50634cfc268ecc9a7250226dd5ca0e945240d4
558    filename.replace(' ', "\\ ")
559}
560
561// Makefile comments only need escaping newlines and `\`.
562// The result can be unescaped by anything that can unescape `escape_default` and friends.
563fn escape_dep_env(symbol: Symbol) -> String {
564    let s = symbol.as_str();
565    let mut escaped = String::with_capacity(s.len());
566    for c in s.chars() {
567        match c {
568            '\n' => escaped.push_str(r"\n"),
569            '\r' => escaped.push_str(r"\r"),
570            '\\' => escaped.push_str(r"\\"),
571            _ => escaped.push(c),
572        }
573    }
574    escaped
575}
576
577fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[PathBuf]) {
578    // Write out dependency rules to the dep-info file if requested
579    let sess = tcx.sess;
580    if !sess.opts.output_types.contains_key(&OutputType::DepInfo) {
581        return;
582    }
583    let deps_output = outputs.path(OutputType::DepInfo);
584    let deps_filename = deps_output.as_path();
585
586    let result: io::Result<()> = try {
587        // Build a list of files used to compile the output and
588        // write Makefile-compatible dependency rules
589        let mut files: Vec<(String, u64, Option<SourceFileHash>)> = sess
590            .source_map()
591            .files()
592            .iter()
593            .filter(|fmap| fmap.is_real_file())
594            .filter(|fmap| !fmap.is_imported())
595            .map(|fmap| {
596                (
597                    escape_dep_filename(&fmap.name.prefer_local().to_string()),
598                    fmap.source_len.0 as u64,
599                    fmap.checksum_hash,
600                )
601            })
602            .collect();
603
604        let checksum_hash_algo = sess.opts.unstable_opts.checksum_hash_algorithm;
605
606        // Account for explicitly marked-to-track files
607        // (e.g. accessed in proc macros).
608        let file_depinfo = sess.psess.file_depinfo.borrow();
609
610        let normalize_path = |path: PathBuf| {
611            let file = FileName::from(path);
612            escape_dep_filename(&file.prefer_local().to_string())
613        };
614
615        // The entries will be used to declare dependencies between files in a
616        // Makefile-like output, so the iteration order does not matter.
617        fn hash_iter_files<P: AsRef<Path>>(
618            it: impl Iterator<Item = P>,
619            checksum_hash_algo: Option<SourceFileHashAlgorithm>,
620        ) -> impl Iterator<Item = (P, u64, Option<SourceFileHash>)> {
621            it.map(move |path| {
622                match checksum_hash_algo.and_then(|algo| {
623                    fs::File::open(path.as_ref())
624                        .and_then(|mut file| {
625                            SourceFileHash::new(algo, &mut file).map(|h| (file, h))
626                        })
627                        .and_then(|(file, h)| file.metadata().map(|m| (m.len(), h)))
628                        .map_err(|e| {
629                            tracing::error!(
630                                "failed to compute checksum, omitting it from dep-info {} {e}",
631                                path.as_ref().display()
632                            )
633                        })
634                        .ok()
635                }) {
636                    Some((file_len, checksum)) => (path, file_len, Some(checksum)),
637                    None => (path, 0, None),
638                }
639            })
640        }
641
642        let extra_tracked_files = hash_iter_files(
643            file_depinfo.iter().map(|path_sym| normalize_path(PathBuf::from(path_sym.as_str()))),
644            checksum_hash_algo,
645        );
646        files.extend(extra_tracked_files);
647
648        // We also need to track used PGO profile files
649        if let Some(ref profile_instr) = sess.opts.cg.profile_use {
650            files.extend(hash_iter_files(
651                iter::once(normalize_path(profile_instr.as_path().to_path_buf())),
652                checksum_hash_algo,
653            ));
654        }
655        if let Some(ref profile_sample) = sess.opts.unstable_opts.profile_sample_use {
656            files.extend(hash_iter_files(
657                iter::once(normalize_path(profile_sample.as_path().to_path_buf())),
658                checksum_hash_algo,
659            ));
660        }
661
662        // Debugger visualizer files
663        for debugger_visualizer in tcx.debugger_visualizers(LOCAL_CRATE) {
664            files.extend(hash_iter_files(
665                iter::once(normalize_path(debugger_visualizer.path.clone().unwrap())),
666                checksum_hash_algo,
667            ));
668        }
669
670        if sess.binary_dep_depinfo() {
671            if let Some(ref backend) = sess.opts.unstable_opts.codegen_backend {
672                if backend.contains('.') {
673                    // If the backend name contain a `.`, it is the path to an external dynamic
674                    // library. If not, it is not a path.
675                    files.extend(hash_iter_files(
676                        iter::once(backend.to_string()),
677                        checksum_hash_algo,
678                    ));
679                }
680            }
681
682            for &cnum in tcx.crates(()) {
683                let source = tcx.used_crate_source(cnum);
684                if let Some((path, _)) = &source.dylib {
685                    files.extend(hash_iter_files(
686                        iter::once(escape_dep_filename(&path.display().to_string())),
687                        checksum_hash_algo,
688                    ));
689                }
690                if let Some((path, _)) = &source.rlib {
691                    files.extend(hash_iter_files(
692                        iter::once(escape_dep_filename(&path.display().to_string())),
693                        checksum_hash_algo,
694                    ));
695                }
696                if let Some((path, _)) = &source.rmeta {
697                    files.extend(hash_iter_files(
698                        iter::once(escape_dep_filename(&path.display().to_string())),
699                        checksum_hash_algo,
700                    ));
701                }
702            }
703        }
704
705        let write_deps_to_file = |file: &mut dyn Write| -> io::Result<()> {
706            for path in out_filenames {
707                writeln!(
708                    file,
709                    "{}: {}\n",
710                    path.display(),
711                    files
712                        .iter()
713                        .map(|(path, _file_len, _checksum_hash_algo)| path.as_str())
714                        .intersperse(" ")
715                        .collect::<String>()
716                )?;
717            }
718
719            // Emit a fake target for each input file to the compilation. This
720            // prevents `make` from spitting out an error if a file is later
721            // deleted. For more info see #28735
722            for (path, _file_len, _checksum_hash_algo) in &files {
723                writeln!(file, "{path}:")?;
724            }
725
726            // Emit special comments with information about accessed environment variables.
727            let env_depinfo = sess.psess.env_depinfo.borrow();
728            if !env_depinfo.is_empty() {
729                // We will soon sort, so the initial order does not matter.
730                #[allow(rustc::potential_query_instability)]
731                let mut envs: Vec<_> = env_depinfo
732                    .iter()
733                    .map(|(k, v)| (escape_dep_env(*k), v.map(escape_dep_env)))
734                    .collect();
735                envs.sort_unstable();
736                writeln!(file)?;
737                for (k, v) in envs {
738                    write!(file, "# env-dep:{k}")?;
739                    if let Some(v) = v {
740                        write!(file, "={v}")?;
741                    }
742                    writeln!(file)?;
743                }
744            }
745
746            // If caller requested this information, add special comments about source file checksums.
747            // These are not necessarily the same checksums as was used in the debug files.
748            if sess.opts.unstable_opts.checksum_hash_algorithm().is_some() {
749                files
750                    .iter()
751                    .filter_map(|(path, file_len, hash_algo)| {
752                        hash_algo.map(|hash_algo| (path, file_len, hash_algo))
753                    })
754                    .try_for_each(|(path, file_len, checksum_hash)| {
755                        writeln!(file, "# checksum:{checksum_hash} file_len:{file_len} {path}")
756                    })?;
757            }
758
759            Ok(())
760        };
761
762        match deps_output {
763            OutFileName::Stdout => {
764                let mut file = BufWriter::new(io::stdout());
765                write_deps_to_file(&mut file)?;
766            }
767            OutFileName::Real(ref path) => {
768                let mut file = fs::File::create_buffered(path)?;
769                write_deps_to_file(&mut file)?;
770            }
771        }
772    };
773
774    match result {
775        Ok(_) => {
776            if sess.opts.json_artifact_notifications {
777                sess.dcx().emit_artifact_notification(deps_filename, "dep-info");
778            }
779        }
780        Err(error) => {
781            sess.dcx().emit_fatal(errors::ErrorWritingDependencies { path: deps_filename, error });
782        }
783    }
784}
785
786fn resolver_for_lowering_raw<'tcx>(
787    tcx: TyCtxt<'tcx>,
788    (): (),
789) -> (&'tcx Steal<(ty::ResolverAstLowering, Arc<ast::Crate>)>, &'tcx ty::ResolverGlobalCtxt) {
790    let arenas = Resolver::arenas();
791    let _ = tcx.registered_tools(()); // Uses `crate_for_resolver`.
792    let (krate, pre_configured_attrs) = tcx.crate_for_resolver(()).steal();
793    let mut resolver = Resolver::new(
794        tcx,
795        &pre_configured_attrs,
796        krate.spans.inner_span,
797        krate.spans.inject_use_span,
798        &arenas,
799    );
800    let krate = configure_and_expand(krate, &pre_configured_attrs, &mut resolver);
801
802    // Make sure we don't mutate the cstore from here on.
803    tcx.untracked().cstore.freeze();
804
805    let ResolverOutputs {
806        global_ctxt: untracked_resolutions,
807        ast_lowering: untracked_resolver_for_lowering,
808    } = resolver.into_outputs();
809
810    let resolutions = tcx.arena.alloc(untracked_resolutions);
811    (tcx.arena.alloc(Steal::new((untracked_resolver_for_lowering, Arc::new(krate)))), resolutions)
812}
813
814pub fn write_dep_info(tcx: TyCtxt<'_>) {
815    // Make sure name resolution and macro expansion is run for
816    // the side-effect of providing a complete set of all
817    // accessed files and env vars.
818    let _ = tcx.resolver_for_lowering();
819
820    let sess = tcx.sess;
821    let _timer = sess.timer("write_dep_info");
822    let crate_name = tcx.crate_name(LOCAL_CRATE);
823
824    let outputs = tcx.output_filenames(());
825    let output_paths =
826        generated_output_paths(tcx, outputs, sess.io.output_file.is_some(), crate_name);
827
828    // Ensure the source file isn't accidentally overwritten during compilation.
829    if let Some(input_path) = sess.io.input.opt_path() {
830        if sess.opts.will_create_output_file() {
831            if output_contains_path(&output_paths, input_path) {
832                sess.dcx().emit_fatal(errors::InputFileWouldBeOverWritten { path: input_path });
833            }
834            if let Some(dir_path) = output_conflicts_with_dir(&output_paths) {
835                sess.dcx().emit_fatal(errors::GeneratedFileConflictsWithDirectory {
836                    input_path,
837                    dir_path,
838                });
839            }
840        }
841    }
842
843    if let Some(ref dir) = sess.io.temps_dir {
844        if fs::create_dir_all(dir).is_err() {
845            sess.dcx().emit_fatal(errors::TempsDirError);
846        }
847    }
848
849    write_out_deps(tcx, outputs, &output_paths);
850
851    let only_dep_info = sess.opts.output_types.contains_key(&OutputType::DepInfo)
852        && sess.opts.output_types.len() == 1;
853
854    if !only_dep_info {
855        if let Some(ref dir) = sess.io.output_dir {
856            if fs::create_dir_all(dir).is_err() {
857                sess.dcx().emit_fatal(errors::OutDirError);
858            }
859        }
860    }
861}
862
863pub fn write_interface<'tcx>(tcx: TyCtxt<'tcx>) {
864    if !tcx.crate_types().contains(&rustc_session::config::CrateType::Sdylib) {
865        return;
866    }
867    let _timer = tcx.sess.timer("write_interface");
868    let (_, krate) = &*tcx.resolver_for_lowering().borrow();
869
870    let krate = rustc_ast_pretty::pprust::print_crate_as_interface(
871        krate,
872        tcx.sess.psess.edition,
873        &tcx.sess.psess.attr_id_generator,
874    );
875    let export_output = tcx.output_filenames(()).interface_path();
876    let mut file = fs::File::create_buffered(export_output).unwrap();
877    if let Err(err) = write!(file, "{}", krate) {
878        tcx.dcx().fatal(format!("error writing interface file: {}", err));
879    }
880}
881
882pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
883    let providers = &mut Providers::default();
884    providers.analysis = analysis;
885    providers.hir_crate = rustc_ast_lowering::lower_to_hir;
886    providers.resolver_for_lowering_raw = resolver_for_lowering_raw;
887    providers.stripped_cfg_items = |tcx, _| &tcx.resolutions(()).stripped_cfg_items[..];
888    providers.resolutions = |tcx, ()| tcx.resolver_for_lowering_raw(()).1;
889    providers.early_lint_checks = early_lint_checks;
890    providers.env_var_os = env_var_os;
891    limits::provide(providers);
892    proc_macro_decls::provide(providers);
893    rustc_const_eval::provide(providers);
894    rustc_middle::hir::provide(providers);
895    rustc_borrowck::provide(providers);
896    rustc_incremental::provide(providers);
897    rustc_mir_build::provide(providers);
898    rustc_mir_transform::provide(providers);
899    rustc_monomorphize::provide(providers);
900    rustc_privacy::provide(providers);
901    rustc_query_impl::provide(providers);
902    rustc_resolve::provide(providers);
903    rustc_hir_analysis::provide(providers);
904    rustc_hir_typeck::provide(providers);
905    ty::provide(providers);
906    traits::provide(providers);
907    solve::provide(providers);
908    rustc_passes::provide(providers);
909    rustc_traits::provide(providers);
910    rustc_ty_utils::provide(providers);
911    rustc_metadata::provide(providers);
912    rustc_lint::provide(providers);
913    rustc_symbol_mangling::provide(providers);
914    rustc_codegen_ssa::provide(providers);
915    *providers
916});
917
918pub fn create_and_enter_global_ctxt<T, F: for<'tcx> FnOnce(TyCtxt<'tcx>) -> T>(
919    compiler: &Compiler,
920    krate: rustc_ast::Crate,
921    f: F,
922) -> T {
923    let sess = &compiler.sess;
924
925    let pre_configured_attrs = rustc_expand::config::pre_configure_attrs(sess, &krate.attrs);
926
927    let crate_name = get_crate_name(sess, &pre_configured_attrs);
928    let crate_types = collect_crate_types(sess, &pre_configured_attrs);
929    let stable_crate_id = StableCrateId::new(
930        crate_name,
931        crate_types.contains(&CrateType::Executable),
932        sess.opts.cg.metadata.clone(),
933        sess.cfg_version,
934    );
935
936    let outputs = util::build_output_filenames(&pre_configured_attrs, sess);
937
938    let dep_type = DepsType { dep_names: rustc_query_impl::dep_kind_names() };
939    let dep_graph = setup_dep_graph(sess, crate_name, &dep_type);
940
941    let cstore =
942        FreezeLock::new(Box::new(CStore::new(compiler.codegen_backend.metadata_loader())) as _);
943    let definitions = FreezeLock::new(Definitions::new(stable_crate_id));
944
945    let stable_crate_ids = FreezeLock::new(StableCrateIdMap::default());
946    let untracked =
947        Untracked { cstore, source_span: AppendOnlyIndexVec::new(), definitions, stable_crate_ids };
948
949    // We're constructing the HIR here; we don't care what we will
950    // read, since we haven't even constructed the *input* to
951    // incr. comp. yet.
952    dep_graph.assert_ignored();
953
954    let query_result_on_disk_cache = rustc_incremental::load_query_result_cache(sess);
955
956    let codegen_backend = &compiler.codegen_backend;
957    let mut providers = *DEFAULT_QUERY_PROVIDERS;
958    codegen_backend.provide(&mut providers);
959
960    if let Some(callback) = compiler.override_queries {
961        callback(sess, &mut providers);
962    }
963
964    let incremental = dep_graph.is_fully_enabled();
965
966    let gcx_cell = OnceLock::new();
967    let arena = WorkerLocal::new(|_| Arena::default());
968    let hir_arena = WorkerLocal::new(|_| rustc_hir::Arena::default());
969
970    // This closure is necessary to force rustc to perform the correct lifetime
971    // subtyping for GlobalCtxt::enter to be allowed.
972    let inner: Box<
973        dyn for<'tcx> FnOnce(
974            &'tcx Session,
975            CurrentGcx,
976            Arc<Proxy>,
977            &'tcx OnceLock<GlobalCtxt<'tcx>>,
978            &'tcx WorkerLocal<Arena<'tcx>>,
979            &'tcx WorkerLocal<rustc_hir::Arena<'tcx>>,
980            F,
981        ) -> T,
982    > = Box::new(move |sess, current_gcx, jobserver_proxy, gcx_cell, arena, hir_arena, f| {
983        TyCtxt::create_global_ctxt(
984            gcx_cell,
985            sess,
986            crate_types,
987            stable_crate_id,
988            arena,
989            hir_arena,
990            untracked,
991            dep_graph,
992            rustc_query_impl::query_callbacks(arena),
993            rustc_query_impl::query_system(
994                providers.queries,
995                providers.extern_queries,
996                query_result_on_disk_cache,
997                incremental,
998            ),
999            providers.hooks,
1000            current_gcx,
1001            jobserver_proxy,
1002            |tcx| {
1003                let feed = tcx.create_crate_num(stable_crate_id).unwrap();
1004                assert_eq!(feed.key(), LOCAL_CRATE);
1005                feed.crate_name(crate_name);
1006
1007                let feed = tcx.feed_unit_query();
1008                feed.features_query(tcx.arena.alloc(rustc_expand::config::features(
1009                    tcx.sess,
1010                    &pre_configured_attrs,
1011                    crate_name,
1012                )));
1013                feed.crate_for_resolver(tcx.arena.alloc(Steal::new((krate, pre_configured_attrs))));
1014                feed.output_filenames(Arc::new(outputs));
1015
1016                let res = f(tcx);
1017                // FIXME maybe run finish even when a fatal error occurred? or at least tcx.alloc_self_profile_query_strings()?
1018                tcx.finish();
1019                res
1020            },
1021        )
1022    });
1023
1024    inner(
1025        &compiler.sess,
1026        compiler.current_gcx.clone(),
1027        Arc::clone(&compiler.jobserver_proxy),
1028        &gcx_cell,
1029        &arena,
1030        &hir_arena,
1031        f,
1032    )
1033}
1034
1035/// Runs all analyses that we guarantee to run, even if errors were reported in earlier analyses.
1036/// This function never fails.
1037fn run_required_analyses(tcx: TyCtxt<'_>) {
1038    if tcx.sess.opts.unstable_opts.input_stats {
1039        rustc_passes::input_stats::print_hir_stats(tcx);
1040    }
1041    // When using rustdoc's "jump to def" feature, it enters this code and `check_crate`
1042    // is not defined. So we need to cfg it out.
1043    #[cfg(all(not(doc), debug_assertions))]
1044    rustc_passes::hir_id_validator::check_crate(tcx);
1045
1046    // Prefetch this to prevent multiple threads from blocking on it later.
1047    // This is needed since the `hir_id_validator::check_crate` call above is not guaranteed
1048    // to use `hir_crate_items`.
1049    tcx.ensure_done().hir_crate_items(());
1050
1051    let sess = tcx.sess;
1052    sess.time("misc_checking_1", || {
1053        parallel!(
1054            {
1055                sess.time("looking_for_entry_point", || tcx.ensure_ok().entry_fn(()));
1056
1057                sess.time("looking_for_derive_registrar", || {
1058                    tcx.ensure_ok().proc_macro_decls_static(())
1059                });
1060
1061                CStore::from_tcx(tcx).report_unused_deps(tcx);
1062            },
1063            {
1064                tcx.ensure_ok().exportable_items(LOCAL_CRATE);
1065                tcx.ensure_ok().stable_order_of_exportable_impls(LOCAL_CRATE);
1066                tcx.par_hir_for_each_module(|module| {
1067                    tcx.ensure_ok().check_mod_attrs(module);
1068                    tcx.ensure_ok().check_mod_unstable_api_usage(module);
1069                });
1070            },
1071            {
1072                // We force these queries to run,
1073                // since they might not otherwise get called.
1074                // This marks the corresponding crate-level attributes
1075                // as used, and ensures that their values are valid.
1076                tcx.ensure_ok().limits(());
1077            }
1078        );
1079    });
1080
1081    rustc_hir_analysis::check_crate(tcx);
1082    // Freeze definitions as we don't add new ones at this point.
1083    // We need to wait until now since we synthesize a by-move body
1084    // for all coroutine-closures.
1085    //
1086    // This improves performance by allowing lock-free access to them.
1087    tcx.untracked().definitions.freeze();
1088
1089    sess.time("MIR_borrow_checking", || {
1090        tcx.par_hir_body_owners(|def_id| {
1091            if !tcx.is_typeck_child(def_id.to_def_id()) {
1092                // Child unsafety and borrowck happens together with the parent
1093                tcx.ensure_ok().check_unsafety(def_id);
1094                tcx.ensure_ok().mir_borrowck(def_id);
1095                tcx.ensure_ok().check_transmutes(def_id);
1096            }
1097            tcx.ensure_ok().has_ffi_unwind_calls(def_id);
1098
1099            // If we need to codegen, ensure that we emit all errors from
1100            // `mir_drops_elaborated_and_const_checked` now, to avoid discovering
1101            // them later during codegen.
1102            if tcx.sess.opts.output_types.should_codegen()
1103                || tcx.hir_body_const_context(def_id).is_some()
1104            {
1105                tcx.ensure_ok().mir_drops_elaborated_and_const_checked(def_id);
1106            }
1107            if tcx.is_coroutine(def_id.to_def_id()) {
1108                tcx.ensure_ok().mir_coroutine_witnesses(def_id);
1109                let _ = tcx.ensure_ok().check_coroutine_obligations(
1110                    tcx.typeck_root_def_id(def_id.to_def_id()).expect_local(),
1111                );
1112                if !tcx.is_async_drop_in_place_coroutine(def_id.to_def_id()) {
1113                    // Eagerly check the unsubstituted layout for cycles.
1114                    tcx.ensure_ok().layout_of(
1115                        ty::TypingEnv::post_analysis(tcx, def_id.to_def_id())
1116                            .as_query_input(tcx.type_of(def_id).instantiate_identity()),
1117                    );
1118                }
1119            }
1120        });
1121    });
1122
1123    sess.time("layout_testing", || layout_test::test_layout(tcx));
1124    sess.time("abi_testing", || abi_test::test_abi(tcx));
1125
1126    // If `-Zvalidate-mir` is set, we also want to compute the final MIR for each item
1127    // (either its `mir_for_ctfe` or `optimized_mir`) since that helps uncover any bugs
1128    // in MIR optimizations that may only be reachable through codegen, or other codepaths
1129    // that requires the optimized/ctfe MIR, coroutine bodies, or evaluating consts.
1130    if tcx.sess.opts.unstable_opts.validate_mir {
1131        sess.time("ensuring_final_MIR_is_computable", || {
1132            tcx.par_hir_body_owners(|def_id| {
1133                tcx.instance_mir(ty::InstanceKind::Item(def_id.into()));
1134            });
1135        });
1136    }
1137}
1138
1139/// Runs the type-checking, region checking and other miscellaneous analysis
1140/// passes on the crate.
1141fn analysis(tcx: TyCtxt<'_>, (): ()) {
1142    run_required_analyses(tcx);
1143
1144    let sess = tcx.sess;
1145
1146    // Avoid overwhelming user with errors if borrow checking failed.
1147    // I'm not sure how helpful this is, to be honest, but it avoids a
1148    // lot of annoying errors in the ui tests (basically,
1149    // lint warnings and so on -- kindck used to do this abort, but
1150    // kindck is gone now). -nmatsakis
1151    //
1152    // But we exclude lint errors from this, because lint errors are typically
1153    // less serious and we're more likely to want to continue (#87337).
1154    if let Some(guar) = sess.dcx().has_errors_excluding_lint_errors() {
1155        guar.raise_fatal();
1156    }
1157
1158    sess.time("misc_checking_3", || {
1159        parallel!(
1160            {
1161                tcx.ensure_ok().effective_visibilities(());
1162
1163                parallel!(
1164                    {
1165                        tcx.par_hir_for_each_module(|module| {
1166                            tcx.ensure_ok().check_private_in_public(module)
1167                        })
1168                    },
1169                    {
1170                        tcx.par_hir_for_each_module(|module| {
1171                            tcx.ensure_ok().check_mod_deathness(module)
1172                        });
1173                    },
1174                    {
1175                        sess.time("lint_checking", || {
1176                            rustc_lint::check_crate(tcx);
1177                        });
1178                    },
1179                    {
1180                        tcx.ensure_ok().clashing_extern_declarations(());
1181                    }
1182                );
1183            },
1184            {
1185                sess.time("privacy_checking_modules", || {
1186                    tcx.par_hir_for_each_module(|module| {
1187                        tcx.ensure_ok().check_mod_privacy(module);
1188                    });
1189                });
1190            }
1191        );
1192
1193        // This check has to be run after all lints are done processing. We don't
1194        // define a lint filter, as all lint checks should have finished at this point.
1195        sess.time("check_lint_expectations", || tcx.ensure_ok().check_expectations(None));
1196
1197        // This query is only invoked normally if a diagnostic is emitted that needs any
1198        // diagnostic item. If the crate compiles without checking any diagnostic items,
1199        // we will fail to emit overlap diagnostics. Thus we invoke it here unconditionally.
1200        let _ = tcx.all_diagnostic_items(());
1201    });
1202}
1203
1204/// Runs the codegen backend, after which the AST and analysis can
1205/// be discarded.
1206pub(crate) fn start_codegen<'tcx>(
1207    codegen_backend: &dyn CodegenBackend,
1208    tcx: TyCtxt<'tcx>,
1209) -> (Box<dyn Any>, EncodedMetadata) {
1210    tcx.sess.timings.start_section(tcx.sess.dcx(), TimingSection::Codegen);
1211
1212    // Hook for tests.
1213    if let Some((def_id, _)) = tcx.entry_fn(())
1214        && tcx.has_attr(def_id, sym::rustc_delayed_bug_from_inside_query)
1215    {
1216        tcx.ensure_ok().trigger_delayed_bug(def_id);
1217    }
1218
1219    // Don't run this test assertions when not doing codegen. Compiletest tries to build
1220    // build-fail tests in check mode first and expects it to not give an error in that case.
1221    if tcx.sess.opts.output_types.should_codegen() {
1222        rustc_symbol_mangling::test::report_symbol_names(tcx);
1223    }
1224
1225    // Don't do code generation if there were any errors. Likewise if
1226    // there were any delayed bugs, because codegen will likely cause
1227    // more ICEs, obscuring the original problem.
1228    if let Some(guar) = tcx.sess.dcx().has_errors_or_delayed_bugs() {
1229        guar.raise_fatal();
1230    }
1231
1232    info!("Pre-codegen\n{:?}", tcx.debug_stats());
1233
1234    let metadata = rustc_metadata::fs::encode_and_write_metadata(tcx);
1235
1236    let codegen = tcx.sess.time("codegen_crate", move || codegen_backend.codegen_crate(tcx));
1237
1238    info!("Post-codegen\n{:?}", tcx.debug_stats());
1239
1240    // This must run after monomorphization so that all generic types
1241    // have been instantiated.
1242    if tcx.sess.opts.unstable_opts.print_type_sizes {
1243        tcx.sess.code_stats.print_type_sizes();
1244    }
1245
1246    (codegen, metadata)
1247}
1248
1249/// Compute and validate the crate name.
1250pub fn get_crate_name(sess: &Session, krate_attrs: &[ast::Attribute]) -> Symbol {
1251    // We validate *all* occurrences of `#![crate_name]`, pick the first find and
1252    // if a crate name was passed on the command line via `--crate-name` we enforce
1253    // that they match.
1254    // We perform the validation step here instead of later to ensure it gets run
1255    // in all code paths that require the crate name very early on, namely before
1256    // macro expansion.
1257
1258    let attr_crate_name =
1259        parse_crate_name(sess, krate_attrs, ShouldEmit::EarlyFatal { also_emit_lints: true });
1260
1261    let validate = |name, span| {
1262        rustc_session::output::validate_crate_name(sess, name, span);
1263        name
1264    };
1265
1266    if let Some(crate_name) = &sess.opts.crate_name {
1267        let crate_name = Symbol::intern(crate_name);
1268        if let Some((attr_crate_name, span)) = attr_crate_name
1269            && attr_crate_name != crate_name
1270        {
1271            sess.dcx().emit_err(errors::CrateNameDoesNotMatch {
1272                span,
1273                crate_name,
1274                attr_crate_name,
1275            });
1276        }
1277        return validate(crate_name, None);
1278    }
1279
1280    if let Some((crate_name, span)) = attr_crate_name {
1281        return validate(crate_name, Some(span));
1282    }
1283
1284    if let Input::File(ref path) = sess.io.input
1285        && let Some(file_stem) = path.file_stem().and_then(|s| s.to_str())
1286    {
1287        if file_stem.starts_with('-') {
1288            sess.dcx().emit_err(errors::CrateNameInvalid { crate_name: file_stem });
1289        } else {
1290            return validate(Symbol::intern(&file_stem.replace('-', "_")), None);
1291        }
1292    }
1293
1294    sym::rust_out
1295}
1296
1297pub(crate) fn parse_crate_name(
1298    sess: &Session,
1299    attrs: &[ast::Attribute],
1300    emit_errors: ShouldEmit,
1301) -> Option<(Symbol, Span)> {
1302    let rustc_hir::Attribute::Parsed(AttributeKind::CrateName { name, name_span, .. }) =
1303        AttributeParser::parse_limited_should_emit(
1304            sess,
1305            attrs,
1306            sym::crate_name,
1307            DUMMY_SP,
1308            rustc_ast::node_id::CRATE_NODE_ID,
1309            None,
1310            emit_errors,
1311        )?
1312    else {
1313        unreachable!("crate_name is the only attr we could've parsed here");
1314    };
1315
1316    Some((name, name_span))
1317}
1318
1319fn get_recursion_limit(krate_attrs: &[ast::Attribute], sess: &Session) -> Limit {
1320    let attr = AttributeParser::parse_limited_should_emit(
1321        sess,
1322        &krate_attrs,
1323        sym::recursion_limit,
1324        DUMMY_SP,
1325        rustc_ast::node_id::CRATE_NODE_ID,
1326        None,
1327        // errors are fatal here, but lints aren't.
1328        // If things aren't fatal we continue, and will parse this again.
1329        // That makes the same lint trigger again.
1330        // So, no lints here to avoid duplicates.
1331        ShouldEmit::EarlyFatal { also_emit_lints: false },
1332    );
1333    crate::limits::get_recursion_limit(attr.as_slice())
1334}