Skip to main content

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::{self as ast, CRATE_NODE_ID};
9use rustc_attr_parsing::{AttributeParser, Early, ShouldEmit};
10use rustc_codegen_ssa::traits::CodegenBackend;
11use rustc_codegen_ssa::{CompiledModules, CrateInfo};
12use rustc_data_structures::indexmap::IndexMap;
13use rustc_data_structures::steal::Steal;
14use rustc_data_structures::sync::{AppendOnlyIndexVec, FreezeLock, WorkerLocal, par_fns};
15use rustc_data_structures::thousands;
16use rustc_errors::timings::TimingSection;
17use rustc_expand::base::{ExtCtxt, LintStoreExpand};
18use rustc_feature::Features;
19use rustc_fs_util::try_canonicalize;
20use rustc_hir::attrs::AttributeKind;
21use rustc_hir::def_id::{LOCAL_CRATE, StableCrateId, StableCrateIdMap};
22use rustc_hir::definitions::Definitions;
23use rustc_hir::limit::Limit;
24use rustc_hir::lints::DelayedLint;
25use rustc_hir::{Attribute, MaybeOwner, Target, find_attr};
26use rustc_incremental::setup_dep_graph;
27use rustc_lint::{
28    BufferedEarlyLint, DecorateAttrLint, EarlyCheckNode, LintStore, unerased_lint_store,
29};
30use rustc_metadata::EncodedMetadata;
31use rustc_metadata::creader::CStore;
32use rustc_middle::arena::Arena;
33use rustc_middle::ty::{self, RegisteredTools, TyCtxt};
34use rustc_middle::util::Providers;
35use rustc_parse::lexer::StripTokens;
36use rustc_parse::{new_parser_from_file, new_parser_from_source_str, unwrap_or_emit_fatal};
37use rustc_passes::{abi_test, input_stats, layout_test};
38use rustc_resolve::{Resolver, ResolverOutputs};
39use rustc_session::Session;
40use rustc_session::config::{CrateType, Input, OutFileName, OutputFilenames, OutputType};
41use rustc_session::cstore::Untracked;
42use rustc_session::output::{filename_for_input, invalid_output_for_target};
43use rustc_session::parse::feature_err;
44use rustc_session::search_paths::PathKind;
45use rustc_span::{
46    DUMMY_SP, ErrorGuaranteed, ExpnKind, SourceFileHash, SourceFileHashAlgorithm, Span, Symbol, sym,
47};
48use rustc_trait_selection::{solve, traits};
49use tracing::{info, instrument};
50
51use crate::interface::Compiler;
52use crate::{errors, limits, proc_macro_decls, util};
53
54pub fn parse<'a>(sess: &'a Session) -> ast::Crate {
55    let mut krate = sess
56        .time("parse_crate", || {
57            let mut parser = unwrap_or_emit_fatal(match &sess.io.input {
58                Input::File(file) => new_parser_from_file(
59                    &sess.psess,
60                    file,
61                    StripTokens::ShebangAndFrontmatter,
62                    None,
63                ),
64                Input::Str { input, name } => new_parser_from_source_str(
65                    &sess.psess,
66                    name.clone(),
67                    input.clone(),
68                    StripTokens::ShebangAndFrontmatter,
69                ),
70            });
71            parser.parse_crate_mod()
72        })
73        .unwrap_or_else(|parse_error| {
74            let guar: ErrorGuaranteed = parse_error.emit();
75            guar.raise_fatal();
76        });
77
78    rustc_builtin_macros::cmdline_attrs::inject(
79        &mut krate,
80        &sess.psess,
81        &sess.opts.unstable_opts.crate_attr,
82    );
83
84    krate
85}
86
87fn pre_expansion_lint<'a>(
88    sess: &Session,
89    features: &Features,
90    lint_store: &LintStore,
91    registered_tools: &RegisteredTools,
92    check_node: impl EarlyCheckNode<'a>,
93    node_name: Symbol,
94) {
95    sess.prof.generic_activity_with_arg("pre_AST_expansion_lint_checks", node_name.as_str()).run(
96        || {
97            rustc_lint::check_ast_node(
98                sess,
99                None,
100                features,
101                true,
102                lint_store,
103                registered_tools,
104                None,
105                rustc_lint::BuiltinCombinedPreExpansionLintPass::new(),
106                check_node,
107            );
108        },
109    );
110}
111
112// Cannot implement directly for `LintStore` due to trait coherence.
113struct LintStoreExpandImpl<'a>(&'a LintStore);
114
115impl LintStoreExpand for LintStoreExpandImpl<'_> {
116    fn pre_expansion_lint(
117        &self,
118        sess: &Session,
119        features: &Features,
120        registered_tools: &RegisteredTools,
121        node_id: ast::NodeId,
122        attrs: &[ast::Attribute],
123        items: &[Box<ast::Item>],
124        name: Symbol,
125    ) {
126        pre_expansion_lint(sess, features, self.0, registered_tools, (node_id, attrs, items), name);
127    }
128}
129
130/// Runs the "early phases" of the compiler: initial `cfg` processing,
131/// syntax expansion, secondary `cfg` expansion, synthesis of a test
132/// harness if one is to be provided, injection of a dependency on the
133/// standard library and prelude, and name resolution.
134#[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("configure_and_expand",
                                    "rustc_interface::passes", ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                                    ::tracing_core::__macro_support::Option::Some(134u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_interface::passes"),
                                    ::tracing_core::field::FieldSet::new(&["pre_configured_attrs"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&pre_configured_attrs)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: ast::Crate = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let tcx = resolver.tcx();
            let sess = tcx.sess;
            let features = tcx.features();
            let lint_store = unerased_lint_store(tcx.sess);
            let crate_name = tcx.crate_name(LOCAL_CRATE);
            let lint_check_node = (&krate, pre_configured_attrs);
            pre_expansion_lint(sess, features, lint_store,
                tcx.registered_tools(()), lint_check_node, crate_name);
            rustc_builtin_macros::register_builtin_macros(resolver);
            let num_standard_library_imports =
                sess.time("crate_injection",
                    ||
                        {
                            rustc_builtin_macros::standard_library_imports::inject(&mut krate,
                                pre_configured_attrs, resolver, sess, features)
                        });
            krate =
                sess.time("macro_expand_crate",
                    ||
                        {
                            let mut old_path = OsString::new();
                            if false {
                                old_path = env::var_os("PATH").unwrap_or(old_path);
                                let mut new_path =
                                    Vec::from_iter(sess.host_filesearch().search_paths(PathKind::All).map(|p|
                                                p.dir.clone()));
                                for path in env::split_paths(&old_path) {
                                    if !new_path.contains(&path) { new_path.push(path); }
                                }
                                unsafe {
                                    env::set_var("PATH",
                                        env::join_paths(new_path.iter().filter(|p|
                                                        env::join_paths(iter::once(p)).is_ok())).unwrap());
                                }
                            }
                            let recursion_limit =
                                get_recursion_limit(pre_configured_attrs, sess);
                            let cfg =
                                rustc_expand::expand::ExpansionConfig {
                                    crate_name,
                                    features,
                                    recursion_limit,
                                    trace_mac: sess.opts.unstable_opts.trace_macros,
                                    should_test: sess.is_test_crate(),
                                    span_debug: sess.opts.unstable_opts.span_debug,
                                    proc_macro_backtrace: sess.opts.unstable_opts.proc_macro_backtrace,
                                };
                            let lint_store = LintStoreExpandImpl(lint_store);
                            let mut ecx =
                                ExtCtxt::new(sess, cfg, resolver, Some(&lint_store));
                            ecx.num_standard_library_imports =
                                num_standard_library_imports;
                            let krate =
                                sess.time("expand_crate",
                                    || ecx.monotonic_expander().expand_crate(krate));
                            if ecx.nb_macro_errors > 0 { sess.dcx().abort_if_errors(); }
                            sess.psess.buffered_lints.with_lock(|buffered_lints:
                                        &mut Vec<BufferedEarlyLint>|
                                    { buffered_lints.append(&mut ecx.buffered_early_lint); });
                            sess.time("check_unused_macros",
                                || { ecx.check_unused_macros(); });
                            if ecx.reduced_recursion_limit.is_some() {
                                sess.dcx().abort_if_errors();
                                ::core::panicking::panic("internal error: entered unreachable code");
                            }
                            if false { unsafe { env::set_var("PATH", &old_path); } }
                            if ecx.sess.opts.unstable_opts.macro_stats {
                                print_macro_stats(&ecx);
                            }
                            krate
                        });
            sess.time("maybe_building_test_harness",
                ||
                    {
                        rustc_builtin_macros::test_harness::inject(&mut krate, sess,
                            features, resolver)
                    });
            let has_proc_macro_decls =
                sess.time("AST_validation",
                    ||
                        {
                            rustc_ast_passes::ast_validation::check_crate(sess,
                                features, &krate, tcx.is_sdylib_interface_build(),
                                resolver.lint_buffer())
                        });
            let crate_types = tcx.crate_types();
            let is_executable_crate =
                crate_types.contains(&CrateType::Executable);
            let is_proc_macro_crate =
                crate_types.contains(&CrateType::ProcMacro);
            if crate_types.len() > 1 {
                if is_executable_crate {
                    sess.dcx().emit_err(errors::MixedBinCrate);
                }
                if is_proc_macro_crate {
                    sess.dcx().emit_err(errors::MixedProcMacroCrate);
                }
            }
            if crate_types.contains(&CrateType::Sdylib) &&
                    !tcx.features().export_stable() {
                feature_err(sess, sym::export_stable, DUMMY_SP,
                        "`sdylib` crate type is unstable").emit();
            }
            if is_proc_macro_crate && !sess.panic_strategy().unwinds() {
                sess.dcx().emit_warn(errors::ProcMacroCratePanicAbort);
            }
            sess.time("maybe_create_a_macro_crate",
                ||
                    {
                        let is_test_crate = sess.is_test_crate();
                        rustc_builtin_macros::proc_macro_harness::inject(&mut krate,
                            sess, features, resolver, is_proc_macro_crate,
                            has_proc_macro_decls, is_test_crate, sess.dcx())
                    });
            resolver.resolve_crate(&krate);
            CStore::from_tcx(tcx).report_session_incompatibilities(tcx,
                &krate);
            krate
        }
    }
}#[instrument(level = "trace", skip(krate, resolver))]
135fn configure_and_expand(
136    mut krate: ast::Crate,
137    pre_configured_attrs: &[ast::Attribute],
138    resolver: &mut Resolver<'_, '_>,
139) -> ast::Crate {
140    let tcx = resolver.tcx();
141    let sess = tcx.sess;
142    let features = tcx.features();
143    let lint_store = unerased_lint_store(tcx.sess);
144    let crate_name = tcx.crate_name(LOCAL_CRATE);
145    let lint_check_node = (&krate, pre_configured_attrs);
146    pre_expansion_lint(
147        sess,
148        features,
149        lint_store,
150        tcx.registered_tools(()),
151        lint_check_node,
152        crate_name,
153    );
154    rustc_builtin_macros::register_builtin_macros(resolver);
155
156    let num_standard_library_imports = sess.time("crate_injection", || {
157        rustc_builtin_macros::standard_library_imports::inject(
158            &mut krate,
159            pre_configured_attrs,
160            resolver,
161            sess,
162            features,
163        )
164    });
165
166    // Expand all macros
167    krate = sess.time("macro_expand_crate", || {
168        // Windows dlls do not have rpaths, so they don't know how to find their
169        // dependencies. It's up to us to tell the system where to find all the
170        // dependent dlls. Note that this uses cfg!(windows) as opposed to
171        // targ_cfg because syntax extensions are always loaded for the host
172        // compiler, not for the target.
173        //
174        // This is somewhat of an inherently racy operation, however, as
175        // multiple threads calling this function could possibly continue
176        // extending PATH far beyond what it should. To solve this for now we
177        // just don't add any new elements to PATH which are already there
178        // within PATH. This is basically a targeted fix at #17360 for rustdoc
179        // which runs rustc in parallel but has been seen (#33844) to cause
180        // problems with PATH becoming too long.
181        let mut old_path = OsString::new();
182        if cfg!(windows) {
183            old_path = env::var_os("PATH").unwrap_or(old_path);
184            let mut new_path = Vec::from_iter(
185                sess.host_filesearch().search_paths(PathKind::All).map(|p| p.dir.clone()),
186            );
187            for path in env::split_paths(&old_path) {
188                if !new_path.contains(&path) {
189                    new_path.push(path);
190                }
191            }
192            unsafe {
193                env::set_var(
194                    "PATH",
195                    env::join_paths(
196                        new_path.iter().filter(|p| env::join_paths(iter::once(p)).is_ok()),
197                    )
198                    .unwrap(),
199                );
200            }
201        }
202
203        // Create the config for macro expansion
204        let recursion_limit = get_recursion_limit(pre_configured_attrs, sess);
205        let cfg = rustc_expand::expand::ExpansionConfig {
206            crate_name,
207            features,
208            recursion_limit,
209            trace_mac: sess.opts.unstable_opts.trace_macros,
210            should_test: sess.is_test_crate(),
211            span_debug: sess.opts.unstable_opts.span_debug,
212            proc_macro_backtrace: sess.opts.unstable_opts.proc_macro_backtrace,
213        };
214
215        let lint_store = LintStoreExpandImpl(lint_store);
216        let mut ecx = ExtCtxt::new(sess, cfg, resolver, Some(&lint_store));
217        ecx.num_standard_library_imports = num_standard_library_imports;
218        // Expand macros now!
219        let krate = sess.time("expand_crate", || ecx.monotonic_expander().expand_crate(krate));
220
221        if ecx.nb_macro_errors > 0 {
222            sess.dcx().abort_if_errors();
223        }
224
225        // The rest is error reporting and stats
226
227        sess.psess.buffered_lints.with_lock(|buffered_lints: &mut Vec<BufferedEarlyLint>| {
228            buffered_lints.append(&mut ecx.buffered_early_lint);
229        });
230
231        sess.time("check_unused_macros", || {
232            ecx.check_unused_macros();
233        });
234
235        // If we hit a recursion limit, exit early to avoid later passes getting overwhelmed
236        // with a large AST
237        if ecx.reduced_recursion_limit.is_some() {
238            sess.dcx().abort_if_errors();
239            unreachable!();
240        }
241
242        if cfg!(windows) {
243            unsafe {
244                env::set_var("PATH", &old_path);
245            }
246        }
247
248        if ecx.sess.opts.unstable_opts.macro_stats {
249            print_macro_stats(&ecx);
250        }
251
252        krate
253    });
254
255    sess.time("maybe_building_test_harness", || {
256        rustc_builtin_macros::test_harness::inject(&mut krate, sess, features, resolver)
257    });
258
259    let has_proc_macro_decls = sess.time("AST_validation", || {
260        rustc_ast_passes::ast_validation::check_crate(
261            sess,
262            features,
263            &krate,
264            tcx.is_sdylib_interface_build(),
265            resolver.lint_buffer(),
266        )
267    });
268
269    let crate_types = tcx.crate_types();
270    let is_executable_crate = crate_types.contains(&CrateType::Executable);
271    let is_proc_macro_crate = crate_types.contains(&CrateType::ProcMacro);
272
273    if crate_types.len() > 1 {
274        if is_executable_crate {
275            sess.dcx().emit_err(errors::MixedBinCrate);
276        }
277        if is_proc_macro_crate {
278            sess.dcx().emit_err(errors::MixedProcMacroCrate);
279        }
280    }
281    if crate_types.contains(&CrateType::Sdylib) && !tcx.features().export_stable() {
282        feature_err(sess, sym::export_stable, DUMMY_SP, "`sdylib` crate type is unstable").emit();
283    }
284
285    if is_proc_macro_crate && !sess.panic_strategy().unwinds() {
286        sess.dcx().emit_warn(errors::ProcMacroCratePanicAbort);
287    }
288
289    sess.time("maybe_create_a_macro_crate", || {
290        let is_test_crate = sess.is_test_crate();
291        rustc_builtin_macros::proc_macro_harness::inject(
292            &mut krate,
293            sess,
294            features,
295            resolver,
296            is_proc_macro_crate,
297            has_proc_macro_decls,
298            is_test_crate,
299            sess.dcx(),
300        )
301    });
302
303    // Done with macro expansion!
304
305    resolver.resolve_crate(&krate);
306
307    CStore::from_tcx(tcx).report_session_incompatibilities(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        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0} build script", pkg_name))
    })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    _ = s.write_fmt(format_args!("{1} {0}\n", "=".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "=".repeat(banner_w));
353    _ = s.write_fmt(format_args!("{1} MACRO EXPANSION STATS: {0}\n", crate_name,
        prefix))writeln!(s, "{prefix} MACRO EXPANSION STATS: {}", crate_name);
354    _ = s.write_fmt(format_args!("{6} {0:<7$}{1:>8$}{2:>9$}{3:>10$}{4:>11$}{5:>12$}\n",
        "Macro Name", "Uses", "Lines", "Avg Lines", "Bytes", "Avg Bytes",
        prefix, name_w, uses_w, lines_w, avg_lines_w, bytes_w, avg_bytes_w))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    _ = s.write_fmt(format_args!("{1} {0}\n", "-".repeat(banner_w), prefix))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        _ = s.write_fmt(format_args!("{0} (none)\n", prefix))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            _ = s.write_fmt(format_args!("{1} {0:<2$}\n", name, prefix, name_w))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        _ = s.write_fmt(format_args!("{6} {0:<7$}{1:>8$}{2:>9$}{3:>10$}{4:>11$}{5:>12$}\n",
        name, uses_with_underscores, thousands::usize_with_underscores(lines),
        thousands::f64p1_with_underscores(avg_lines),
        thousands::usize_with_underscores(bytes),
        thousands::f64p1_with_underscores(avg_bytes), prefix, name_w, uses_w,
        lines_w, avg_lines_w, bytes_w, avg_bytes_w))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    _ = s.write_fmt(format_args!("{1} {0}\n", "=".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "=".repeat(banner_w));
398    { ::std::io::_eprint(format_args!("{0}", s)); };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        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_interface/src/passes.rs:417",
                        "rustc_interface::passes", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                        ::tracing_core::__macro_support::Option::Some(417u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_interface::passes"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("{0} parse sess buffered_lints",
                                                    buffered_lints.len()) as &dyn Value))])
            });
    } else { ; }
};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        if true {
    match (&value.as_encoded_bytes(), &encoded_bytes) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    };
};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.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 = try {
587        // Build a list of files used to compile the output and
588        // write Makefile-compatible dependency rules
589        let mut files: IndexMap<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_unconditionally().to_string()),
598                    (
599                        // This needs to be unnormalized,
600                        // as external tools wouldn't know how rustc normalizes them
601                        fmap.unnormalized_source_len as u64,
602                        fmap.checksum_hash,
603                    ),
604                )
605            })
606            .collect();
607
608        let checksum_hash_algo = sess.opts.unstable_opts.checksum_hash_algorithm;
609
610        // Account for explicitly marked-to-track files
611        // (e.g. accessed in proc macros).
612        let file_depinfo = sess.file_depinfo.borrow();
613
614        let normalize_path = |path: PathBuf| escape_dep_filename(&path.to_string_lossy());
615
616        // The entries will be used to declare dependencies between files in a
617        // Makefile-like output, so the iteration order does not matter.
618        fn hash_iter_files<P: AsRef<Path>>(
619            it: impl Iterator<Item = P>,
620            checksum_hash_algo: Option<SourceFileHashAlgorithm>,
621        ) -> impl Iterator<Item = (P, (u64, Option<SourceFileHash>))> {
622            it.map(move |path| {
623                match checksum_hash_algo.and_then(|algo| {
624                    fs::File::open(path.as_ref())
625                        .and_then(|mut file| {
626                            SourceFileHash::new(algo, &mut file).map(|h| (file, h))
627                        })
628                        .and_then(|(file, h)| file.metadata().map(|m| (m.len(), h)))
629                        .map_err(|e| {
630                            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_interface/src/passes.rs:630",
                        "rustc_interface::passes", ::tracing::Level::ERROR,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                        ::tracing_core::__macro_support::Option::Some(630u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_interface::passes"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::ERROR <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::ERROR <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("failed to compute checksum, omitting it from dep-info {0} {1}",
                                                    path.as_ref().display(), e) as &dyn Value))])
            });
    } else { ; }
}tracing::error!(
631                                "failed to compute checksum, omitting it from dep-info {} {e}",
632                                path.as_ref().display()
633                            )
634                        })
635                        .ok()
636                }) {
637                    Some((file_len, checksum)) => (path, (file_len, Some(checksum))),
638                    None => (path, (0, None)),
639                }
640            })
641        }
642
643        let extra_tracked_files = hash_iter_files(
644            file_depinfo.iter().map(|path_sym| normalize_path(PathBuf::from(path_sym.as_str()))),
645            checksum_hash_algo,
646        );
647        files.extend(extra_tracked_files);
648
649        // We also need to track used PGO profile files
650        if let Some(ref profile_instr) = sess.opts.cg.profile_use {
651            files.extend(hash_iter_files(
652                iter::once(normalize_path(profile_instr.as_path().to_path_buf())),
653                checksum_hash_algo,
654            ));
655        }
656        if let Some(ref profile_sample) = sess.opts.unstable_opts.profile_sample_use {
657            files.extend(hash_iter_files(
658                iter::once(normalize_path(profile_sample.as_path().to_path_buf())),
659                checksum_hash_algo,
660            ));
661        }
662
663        // Debugger visualizer files
664        for debugger_visualizer in tcx.debugger_visualizers(LOCAL_CRATE) {
665            files.extend(hash_iter_files(
666                iter::once(normalize_path(debugger_visualizer.path.clone().unwrap())),
667                checksum_hash_algo,
668            ));
669        }
670
671        if sess.binary_dep_depinfo() {
672            if let Some(ref backend) = sess.opts.unstable_opts.codegen_backend {
673                if backend.contains('.') {
674                    // If the backend name contain a `.`, it is the path to an external dynamic
675                    // library. If not, it is not a path.
676                    files.extend(hash_iter_files(
677                        iter::once(backend.to_string()),
678                        checksum_hash_algo,
679                    ));
680                }
681            }
682
683            for &cnum in tcx.crates(()) {
684                let source = tcx.used_crate_source(cnum);
685                if let Some(path) = &source.dylib {
686                    files.extend(hash_iter_files(
687                        iter::once(escape_dep_filename(&path.display().to_string())),
688                        checksum_hash_algo,
689                    ));
690                }
691                if let Some(path) = &source.rlib {
692                    files.extend(hash_iter_files(
693                        iter::once(escape_dep_filename(&path.display().to_string())),
694                        checksum_hash_algo,
695                    ));
696                }
697                if let Some(path) = &source.rmeta {
698                    files.extend(hash_iter_files(
699                        iter::once(escape_dep_filename(&path.display().to_string())),
700                        checksum_hash_algo,
701                    ));
702                }
703            }
704        }
705
706        let write_deps_to_file = |file: &mut dyn Write| -> io::Result<()> {
707            for path in out_filenames {
708                file.write_fmt(format_args!("{0}: {1}\n\n", path.display(),
        files.keys().map(String::as_str).intersperse(" ").collect::<String>()))writeln!(
709                    file,
710                    "{}: {}\n",
711                    path.display(),
712                    files.keys().map(String::as_str).intersperse(" ").collect::<String>()
713                )?;
714            }
715
716            // Emit a fake target for each input file to the compilation. This
717            // prevents `make` from spitting out an error if a file is later
718            // deleted. For more info see #28735
719            for path in files.keys() {
720                file.write_fmt(format_args!("{0}:\n", path))writeln!(file, "{path}:")?;
721            }
722
723            // Emit special comments with information about accessed environment variables.
724            let env_depinfo = sess.env_depinfo.borrow();
725            if !env_depinfo.is_empty() {
726                // We will soon sort, so the initial order does not matter.
727                #[allow(rustc::potential_query_instability)]
728                let mut envs: Vec<_> = env_depinfo
729                    .iter()
730                    .map(|(k, v)| (escape_dep_env(*k), v.map(escape_dep_env)))
731                    .collect();
732                envs.sort_unstable();
733                file.write_fmt(format_args!("\n"))writeln!(file)?;
734                for (k, v) in envs {
735                    file.write_fmt(format_args!("# env-dep:{0}", k))write!(file, "# env-dep:{k}")?;
736                    if let Some(v) = v {
737                        file.write_fmt(format_args!("={0}", v))write!(file, "={v}")?;
738                    }
739                    file.write_fmt(format_args!("\n"))writeln!(file)?;
740                }
741            }
742
743            // If caller requested this information, add special comments about source file checksums.
744            // These are not necessarily the same checksums as was used in the debug files.
745            if sess.opts.unstable_opts.checksum_hash_algorithm().is_some() {
746                files
747                    .iter()
748                    .filter_map(|(path, (file_len, hash_algo))| {
749                        hash_algo.map(|hash_algo| (path, file_len, hash_algo))
750                    })
751                    .try_for_each(|(path, file_len, checksum_hash)| {
752                        file.write_fmt(format_args!("# checksum:{0} file_len:{1} {2}\n",
        checksum_hash, file_len, path))writeln!(file, "# checksum:{checksum_hash} file_len:{file_len} {path}")
753                    })?;
754            }
755
756            Ok(())
757        };
758
759        match deps_output {
760            OutFileName::Stdout => {
761                let mut file = BufWriter::new(io::stdout());
762                write_deps_to_file(&mut file)?;
763            }
764            OutFileName::Real(ref path) => {
765                let mut file = fs::File::create_buffered(path)?;
766                write_deps_to_file(&mut file)?;
767            }
768        }
769    };
770
771    match result {
772        Ok(_) => {
773            if sess.opts.json_artifact_notifications {
774                sess.dcx().emit_artifact_notification(deps_filename, "dep-info");
775            }
776        }
777        Err(error) => {
778            sess.dcx().emit_fatal(errors::ErrorWritingDependencies { path: deps_filename, error });
779        }
780    }
781}
782
783fn resolver_for_lowering_raw<'tcx>(
784    tcx: TyCtxt<'tcx>,
785    (): (),
786) -> (&'tcx Steal<(ty::ResolverAstLowering<'tcx>, Arc<ast::Crate>)>, &'tcx ty::ResolverGlobalCtxt) {
787    let arenas = Resolver::arenas();
788    let _ = tcx.registered_tools(()); // Uses `crate_for_resolver`.
789    let (krate, pre_configured_attrs) = tcx.crate_for_resolver(()).steal();
790    let mut resolver = Resolver::new(
791        tcx,
792        &pre_configured_attrs,
793        krate.spans.inner_span,
794        krate.spans.inject_use_span,
795        &arenas,
796    );
797    let krate = configure_and_expand(krate, &pre_configured_attrs, &mut resolver);
798
799    // Make sure we don't mutate the cstore from here on.
800    tcx.untracked().cstore.freeze();
801
802    let ResolverOutputs {
803        global_ctxt: untracked_resolutions,
804        ast_lowering: untracked_resolver_for_lowering,
805    } = resolver.into_outputs();
806
807    let resolutions = tcx.arena.alloc(untracked_resolutions);
808    (tcx.arena.alloc(Steal::new((untracked_resolver_for_lowering, Arc::new(krate)))), resolutions)
809}
810
811pub fn write_dep_info(tcx: TyCtxt<'_>) {
812    // Make sure name resolution and macro expansion is run for
813    // the side-effect of providing a complete set of all
814    // accessed files and env vars.
815    let _ = tcx.resolver_for_lowering();
816
817    let sess = tcx.sess;
818    let _timer = sess.timer("write_dep_info");
819    let crate_name = tcx.crate_name(LOCAL_CRATE);
820
821    let outputs = tcx.output_filenames(());
822    let output_paths =
823        generated_output_paths(tcx, outputs, sess.io.output_file.is_some(), crate_name);
824
825    // Ensure the source file isn't accidentally overwritten during compilation.
826    if let Some(input_path) = sess.io.input.opt_path() {
827        if sess.opts.will_create_output_file() {
828            if output_contains_path(&output_paths, input_path) {
829                sess.dcx().emit_fatal(errors::InputFileWouldBeOverWritten { path: input_path });
830            }
831            if let Some(dir_path) = output_conflicts_with_dir(&output_paths) {
832                sess.dcx().emit_fatal(errors::GeneratedFileConflictsWithDirectory {
833                    input_path,
834                    dir_path,
835                });
836            }
837        }
838    }
839
840    if let Some(ref dir) = sess.io.temps_dir {
841        if fs::create_dir_all(dir).is_err() {
842            sess.dcx().emit_fatal(errors::TempsDirError);
843        }
844    }
845
846    write_out_deps(tcx, outputs, &output_paths);
847
848    let only_dep_info = sess.opts.output_types.contains_key(&OutputType::DepInfo)
849        && sess.opts.output_types.len() == 1;
850
851    if !only_dep_info {
852        if let Some(ref dir) = sess.io.output_dir {
853            if fs::create_dir_all(dir).is_err() {
854                sess.dcx().emit_fatal(errors::OutDirError);
855            }
856        }
857    }
858}
859
860pub fn write_interface<'tcx>(tcx: TyCtxt<'tcx>) {
861    if !tcx.crate_types().contains(&rustc_session::config::CrateType::Sdylib) {
862        return;
863    }
864    let _timer = tcx.sess.timer("write_interface");
865    let (_, krate) = &*tcx.resolver_for_lowering().borrow();
866
867    let krate = rustc_ast_pretty::pprust::print_crate_as_interface(
868        krate,
869        tcx.sess.psess.edition,
870        &tcx.sess.psess.attr_id_generator,
871    );
872    let export_output = tcx.output_filenames(()).interface_path();
873    let mut file = fs::File::create_buffered(export_output).unwrap();
874    if let Err(err) = file.write_fmt(format_args!("{0}", krate))write!(file, "{}", krate) {
875        tcx.dcx().fatal(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("error writing interface file: {0}",
                err))
    })format!("error writing interface file: {}", err));
876    }
877}
878
879pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
880    let providers = &mut Providers::default();
881    providers.queries.analysis = analysis;
882    providers.queries.hir_crate = rustc_ast_lowering::lower_to_hir;
883    providers.queries.lower_delayed_owner = rustc_ast_lowering::lower_delayed_owner;
884    // `delayed_owner` is fed during `lower_delayed_owner`, by default it returns phantom,
885    // as if this query was not fed it means that `MaybeOwner` does not exist for provided LocalDefId.
886    providers.queries.delayed_owner = |_, _| MaybeOwner::Phantom;
887    providers.queries.resolver_for_lowering_raw = resolver_for_lowering_raw;
888    providers.queries.stripped_cfg_items = |tcx, _| &tcx.resolutions(()).stripped_cfg_items[..];
889    providers.queries.resolutions = |tcx, ()| tcx.resolver_for_lowering_raw(()).1;
890    providers.queries.early_lint_checks = early_lint_checks;
891    providers.queries.env_var_os = env_var_os;
892    limits::provide(&mut providers.queries);
893    proc_macro_decls::provide(&mut providers.queries);
894    rustc_expand::provide(&mut providers.queries);
895    rustc_const_eval::provide(providers);
896    rustc_middle::hir::provide(&mut providers.queries);
897    rustc_borrowck::provide(&mut providers.queries);
898    rustc_incremental::provide(providers);
899    rustc_mir_build::provide(providers);
900    rustc_mir_transform::provide(providers);
901    rustc_monomorphize::provide(providers);
902    rustc_privacy::provide(&mut providers.queries);
903    rustc_query_impl::provide(providers);
904    rustc_resolve::provide(&mut providers.queries);
905    rustc_hir_analysis::provide(&mut providers.queries);
906    rustc_hir_typeck::provide(&mut providers.queries);
907    ty::provide(&mut providers.queries);
908    traits::provide(&mut providers.queries);
909    solve::provide(&mut providers.queries);
910    rustc_passes::provide(&mut providers.queries);
911    rustc_traits::provide(&mut providers.queries);
912    rustc_ty_utils::provide(&mut providers.queries);
913    rustc_metadata::provide(providers);
914    rustc_lint::provide(&mut providers.queries);
915    rustc_symbol_mangling::provide(&mut providers.queries);
916    rustc_codegen_ssa::provide(providers);
917    *providers
918});
919
920pub fn create_and_enter_global_ctxt<T, F: for<'tcx> FnOnce(TyCtxt<'tcx>) -> T>(
921    compiler: &Compiler,
922    krate: rustc_ast::Crate,
923    f: F,
924) -> T {
925    let sess = &compiler.sess;
926
927    let pre_configured_attrs = rustc_expand::config::pre_configure_attrs(sess, &krate.attrs);
928
929    let crate_name = get_crate_name(sess, &pre_configured_attrs);
930    let crate_types = collect_crate_types(
931        sess,
932        &compiler.codegen_backend.supported_crate_types(sess),
933        compiler.codegen_backend.name(),
934        &pre_configured_attrs,
935        krate.spans.inner_span,
936    );
937    let stable_crate_id = StableCrateId::new(
938        crate_name,
939        crate_types.contains(&CrateType::Executable),
940        sess.opts.cg.metadata.clone(),
941        sess.cfg_version,
942    );
943
944    let outputs = util::build_output_filenames(&pre_configured_attrs, sess);
945
946    let dep_graph = setup_dep_graph(sess, crate_name, stable_crate_id);
947
948    let cstore =
949        FreezeLock::new(Box::new(CStore::new(compiler.codegen_backend.metadata_loader())) as _);
950    let definitions = FreezeLock::new(Definitions::new(stable_crate_id));
951
952    let stable_crate_ids = FreezeLock::new(StableCrateIdMap::default());
953    let untracked =
954        Untracked { cstore, source_span: AppendOnlyIndexVec::new(), definitions, stable_crate_ids };
955
956    // We're constructing the HIR here; we don't care what we will
957    // read, since we haven't even constructed the *input* to
958    // incr. comp. yet.
959    dep_graph.assert_ignored();
960
961    let query_result_on_disk_cache = rustc_incremental::load_query_result_cache(sess);
962
963    let codegen_backend = &compiler.codegen_backend;
964    let mut providers = *DEFAULT_QUERY_PROVIDERS;
965    codegen_backend.provide(&mut providers);
966
967    if let Some(callback) = compiler.override_queries {
968        callback(sess, &mut providers);
969    }
970
971    let incremental = dep_graph.is_fully_enabled();
972
973    // Note: this function body is the origin point of the widely-used 'tcx lifetime.
974    //
975    // `gcx_cell` is defined here and `&gcx_cell` is passed to `create_global_ctxt`, which then
976    // actually creates the `GlobalCtxt` with a `gcx_cell.get_or_init(...)` call. This is done so
977    // that the resulting reference has the type `&'tcx GlobalCtxt<'tcx>`, which is what `TyCtxt`
978    // needs. If we defined and created the `GlobalCtxt` within `create_global_ctxt` then its type
979    // would be `&'a GlobalCtxt<'tcx>`, with two lifetimes.
980    //
981    // Similarly, by creating `arena` here and passing in `&arena`, that reference has the type
982    // `&'tcx WorkerLocal<Arena<'tcx>>`, also with one lifetime. And likewise for `hir_arena`.
983
984    let gcx_cell = OnceLock::new();
985    let arena = WorkerLocal::new(|_| Arena::default());
986    let hir_arena = WorkerLocal::new(|_| rustc_hir::Arena::default());
987
988    TyCtxt::create_global_ctxt(
989        &gcx_cell,
990        &compiler.sess,
991        crate_types,
992        stable_crate_id,
993        &arena,
994        &hir_arena,
995        untracked,
996        dep_graph,
997        rustc_query_impl::make_dep_kind_vtables(&arena),
998        rustc_query_impl::query_system(
999            providers.queries,
1000            providers.extern_queries,
1001            query_result_on_disk_cache,
1002            incremental,
1003        ),
1004        providers.hooks,
1005        compiler.current_gcx.clone(),
1006        Arc::clone(&compiler.jobserver_proxy),
1007        |tcx| {
1008            let feed = tcx.create_crate_num(stable_crate_id).unwrap();
1009            match (&feed.key(), &LOCAL_CRATE) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(feed.key(), LOCAL_CRATE);
1010            feed.crate_name(crate_name);
1011
1012            let feed = tcx.feed_unit_query();
1013            feed.features_query(tcx.arena.alloc(rustc_expand::config::features(
1014                tcx.sess,
1015                &pre_configured_attrs,
1016                crate_name,
1017            )));
1018            feed.crate_for_resolver(tcx.arena.alloc(Steal::new((krate, pre_configured_attrs))));
1019            feed.output_filenames(Arc::new(outputs));
1020
1021            let res = f(tcx);
1022            // FIXME maybe run finish even when a fatal error occurred? or at least
1023            // tcx.alloc_self_profile_query_strings()?
1024            tcx.finish();
1025            res
1026        },
1027    )
1028}
1029
1030pub fn emit_delayed_lints(tcx: TyCtxt<'_>) {
1031    for owner_id in tcx.hir_crate_items(()).delayed_lint_items() {
1032        if let Some(delayed_lints) = tcx.opt_ast_lowering_delayed_lints(owner_id) {
1033            for lint in &delayed_lints.lints {
1034                match lint {
1035                    DelayedLint::AttributeParsing(attribute_lint) => {
1036                        tcx.emit_node_span_lint(
1037                            attribute_lint.lint_id.lint,
1038                            attribute_lint.id,
1039                            attribute_lint.span.clone(),
1040                            DecorateAttrLint {
1041                                sess: tcx.sess,
1042                                tcx: Some(tcx),
1043                                diagnostic: &attribute_lint.kind,
1044                            },
1045                        );
1046                    }
1047                }
1048            }
1049        }
1050    }
1051}
1052
1053/// Runs all analyses that we guarantee to run, even if errors were reported in earlier analyses.
1054/// This function never fails.
1055fn run_required_analyses(tcx: TyCtxt<'_>) {
1056    if tcx.sess.opts.unstable_opts.input_stats {
1057        rustc_passes::input_stats::print_hir_stats(tcx);
1058    }
1059    // When using rustdoc's "jump to def" feature, it enters this code and `check_crate`
1060    // is not defined. So we need to cfg it out.
1061    #[cfg(all(not(doc), debug_assertions))]
1062    rustc_passes::hir_id_validator::check_crate(tcx);
1063
1064    // Prefetch this to prevent multiple threads from blocking on it later.
1065    // This is needed since the `hir_id_validator::check_crate` call above is not guaranteed
1066    // to use `hir_crate_items`.
1067    tcx.ensure_done().hir_crate_items(());
1068
1069    let sess = tcx.sess;
1070    sess.time("misc_checking_1", || {
1071        par_fns(&mut [
1072            &mut || {
1073                sess.time("looking_for_entry_point", || tcx.ensure_ok().entry_fn(()));
1074                sess.time("check_externally_implementable_items", || {
1075                    tcx.ensure_ok().check_externally_implementable_items(())
1076                });
1077
1078                sess.time("looking_for_derive_registrar", || {
1079                    tcx.ensure_ok().proc_macro_decls_static(())
1080                });
1081
1082                CStore::from_tcx(tcx).report_unused_deps(tcx);
1083            },
1084            &mut || {
1085                tcx.ensure_ok().exportable_items(LOCAL_CRATE);
1086                tcx.ensure_ok().stable_order_of_exportable_impls(LOCAL_CRATE);
1087                tcx.par_hir_for_each_module(|module| {
1088                    tcx.ensure_ok().check_mod_attrs(module);
1089                    tcx.ensure_ok().check_mod_unstable_api_usage(module);
1090                });
1091            },
1092            &mut || {
1093                // We force these queries to run,
1094                // since they might not otherwise get called.
1095                // This marks the corresponding crate-level attributes
1096                // as used, and ensures that their values are valid.
1097                tcx.ensure_ok().limits(());
1098            },
1099        ]);
1100    });
1101
1102    sess.time("emit_ast_lowering_delayed_lints", || {
1103        // Sanity check in debug mode that all lints are really noticed and we really will emit
1104        // them all in the loop right below.
1105        //
1106        // During ast lowering, when creating items, foreign items, trait items and impl items,
1107        // we store in them whether they have any lints in their owner node that should be
1108        // picked up by `hir_crate_items`. However, theoretically code can run between that
1109        // boolean being inserted into the item and the owner node being created. We don't want
1110        // any new lints to be emitted there (you have to really try to manage that but still),
1111        // but this check is there to catch that.
1112        #[cfg(debug_assertions)]
1113        {
1114            let hir_items = tcx.hir_crate_items(());
1115            for owner_id in hir_items.owners() {
1116                if let Some(delayed_lints) = tcx.opt_ast_lowering_delayed_lints(owner_id) {
1117                    if !delayed_lints.lints.is_empty() {
1118                        // Assert that delayed_lint_items also picked up this item to have lints.
1119                        if !hir_items.delayed_lint_items().any(|i| i == owner_id) {
    ::core::panicking::panic("assertion failed: hir_items.delayed_lint_items().any(|i| i == owner_id)")
};assert!(hir_items.delayed_lint_items().any(|i| i == owner_id));
1120                    }
1121                }
1122            }
1123        }
1124
1125        emit_delayed_lints(tcx);
1126    });
1127
1128    rustc_hir_analysis::check_crate(tcx);
1129    // Freeze definitions as we don't add new ones at this point.
1130    // We need to wait until now since we synthesize a by-move body
1131    // for all coroutine-closures.
1132    //
1133    // This improves performance by allowing lock-free access to them.
1134    tcx.untracked().definitions.freeze();
1135
1136    sess.time("MIR_borrow_checking", || {
1137        tcx.par_hir_body_owners(|def_id| {
1138            let not_typeck_child = !tcx.is_typeck_child(def_id.to_def_id());
1139            if not_typeck_child {
1140                // Child unsafety and borrowck happens together with the parent
1141                tcx.ensure_ok().check_unsafety(def_id);
1142            }
1143            if tcx.is_trivial_const(def_id) {
1144                return;
1145            }
1146            if not_typeck_child {
1147                tcx.ensure_ok().mir_borrowck(def_id);
1148                tcx.ensure_ok().check_transmutes(def_id);
1149            }
1150            tcx.ensure_ok().has_ffi_unwind_calls(def_id);
1151            tcx.ensure_ok().check_liveness(def_id);
1152
1153            // If we need to codegen, ensure that we emit all errors from
1154            // `mir_drops_elaborated_and_const_checked` now, to avoid discovering
1155            // them later during codegen.
1156            if tcx.sess.opts.output_types.should_codegen()
1157                || tcx.hir_body_const_context(def_id).is_some()
1158            {
1159                tcx.ensure_ok().mir_drops_elaborated_and_const_checked(def_id);
1160            }
1161            if tcx.is_coroutine(def_id.to_def_id())
1162                && (!tcx.is_async_drop_in_place_coroutine(def_id.to_def_id()))
1163            {
1164                // Eagerly check the unsubstituted layout for cycles.
1165                tcx.ensure_ok().layout_of(
1166                    ty::TypingEnv::post_analysis(tcx, def_id.to_def_id())
1167                        .as_query_input(tcx.type_of(def_id).instantiate_identity()),
1168                );
1169            }
1170        });
1171    });
1172
1173    sess.time("layout_testing", || layout_test::test_layout(tcx));
1174    sess.time("abi_testing", || abi_test::test_abi(tcx));
1175}
1176
1177/// Runs the type-checking, region checking and other miscellaneous analysis
1178/// passes on the crate.
1179fn analysis(tcx: TyCtxt<'_>, (): ()) {
1180    run_required_analyses(tcx);
1181
1182    let sess = tcx.sess;
1183
1184    // Avoid overwhelming user with errors if borrow checking failed.
1185    // I'm not sure how helpful this is, to be honest, but it avoids a
1186    // lot of annoying errors in the ui tests (basically,
1187    // lint warnings and so on -- kindck used to do this abort, but
1188    // kindck is gone now). -nmatsakis
1189    //
1190    // But we exclude lint errors from this, because lint errors are typically
1191    // less serious and we're more likely to want to continue (#87337).
1192    if let Some(guar) = sess.dcx().has_errors_excluding_lint_errors() {
1193        guar.raise_fatal();
1194    }
1195
1196    sess.time("misc_checking_3", || {
1197        par_fns(&mut [
1198            &mut || {
1199                tcx.ensure_ok().effective_visibilities(());
1200
1201                par_fns(&mut [
1202                    &mut || {
1203                        tcx.par_hir_for_each_module(|module| {
1204                            tcx.ensure_ok().check_private_in_public(module)
1205                        })
1206                    },
1207                    &mut || {
1208                        tcx.par_hir_for_each_module(|module| {
1209                            tcx.ensure_ok().check_mod_deathness(module)
1210                        });
1211                    },
1212                    &mut || {
1213                        sess.time("lint_checking", || {
1214                            rustc_lint::check_crate(tcx);
1215                        });
1216                    },
1217                    &mut || {
1218                        tcx.ensure_ok().clashing_extern_declarations(());
1219                    },
1220                ]);
1221            },
1222            &mut || {
1223                sess.time("privacy_checking_modules", || {
1224                    tcx.par_hir_for_each_module(|module| {
1225                        tcx.ensure_ok().check_mod_privacy(module);
1226                    });
1227                });
1228            },
1229        ]);
1230
1231        // This check has to be run after all lints are done processing. We don't
1232        // define a lint filter, as all lint checks should have finished at this point.
1233        sess.time("check_lint_expectations", || tcx.ensure_ok().check_expectations(None));
1234
1235        // This query is only invoked normally if a diagnostic is emitted that needs any
1236        // diagnostic item. If the crate compiles without checking any diagnostic items,
1237        // we will fail to emit overlap diagnostics. Thus we invoke it here unconditionally.
1238        let _ = tcx.all_diagnostic_items(());
1239    });
1240
1241    // If `-Zvalidate-mir` is set, we also want to compute the final MIR for each item
1242    // (either its `mir_for_ctfe` or `optimized_mir`) since that helps uncover any bugs
1243    // in MIR optimizations that may only be reachable through codegen, or other codepaths
1244    // that requires the optimized/ctfe MIR, coroutine bodies, or evaluating consts.
1245    // Nevertheless, wait after type checking is finished, as optimizing code that does not
1246    // type-check is very prone to ICEs.
1247    if tcx.sess.opts.unstable_opts.validate_mir {
1248        sess.time("ensuring_final_MIR_is_computable", || {
1249            tcx.par_hir_body_owners(|def_id| {
1250                if !tcx.is_trivial_const(def_id) {
1251                    tcx.instance_mir(ty::InstanceKind::Item(def_id.into()));
1252                }
1253            });
1254        });
1255    }
1256}
1257
1258/// Runs the codegen backend, after which the AST and analysis can
1259/// be discarded.
1260pub(crate) fn start_codegen<'tcx>(
1261    codegen_backend: &dyn CodegenBackend,
1262    tcx: TyCtxt<'tcx>,
1263) -> (Box<dyn Any>, CrateInfo, EncodedMetadata) {
1264    tcx.sess.timings.start_section(tcx.sess.dcx(), TimingSection::Codegen);
1265
1266    // Hook for tests.
1267    if let Some((def_id, _)) = tcx.entry_fn(())
1268        && {
        {
            'done:
                {
                for i in ::rustc_hir::attrs::HasAttrs::get_attrs(def_id, &tcx)
                    {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(RustcDelayedBugFromInsideQuery)
                            => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(tcx, def_id, RustcDelayedBugFromInsideQuery)
1269    {
1270        tcx.ensure_ok().trigger_delayed_bug(def_id);
1271    }
1272
1273    // Don't run this test assertions when not doing codegen. Compiletest tries to build
1274    // build-fail tests in check mode first and expects it to not give an error in that case.
1275    if tcx.sess.opts.output_types.should_codegen() {
1276        rustc_symbol_mangling::test::dump_symbol_names_and_def_paths(tcx);
1277    }
1278
1279    // Don't do code generation if there were any errors. Likewise if
1280    // there were any delayed bugs, because codegen will likely cause
1281    // more ICEs, obscuring the original problem.
1282    if let Some(guar) = tcx.sess.dcx().has_errors_or_delayed_bugs() {
1283        guar.raise_fatal();
1284    }
1285
1286    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_interface/src/passes.rs:1286",
                        "rustc_interface::passes", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                        ::tracing_core::__macro_support::Option::Some(1286u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_interface::passes"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("Pre-codegen\n{0:?}",
                                                    tcx.debug_stats()) as &dyn Value))])
            });
    } else { ; }
};info!("Pre-codegen\n{:?}", tcx.debug_stats());
1287
1288    let metadata = rustc_metadata::fs::encode_and_write_metadata(tcx);
1289
1290    let crate_info = CrateInfo::new(tcx, codegen_backend.target_cpu(tcx.sess));
1291
1292    let codegen = tcx.sess.time("codegen_crate", || {
1293        if tcx.sess.opts.unstable_opts.no_codegen || !tcx.sess.opts.output_types.should_codegen() {
1294            // Skip crate items and just output metadata in -Z no-codegen mode.
1295            tcx.sess.dcx().abort_if_errors();
1296
1297            // Linker::link will skip join_codegen in case of a CodegenResults Any value.
1298            Box::new(CompiledModules { modules: ::alloc::vec::Vec::new()vec![], allocator_module: None })
1299        } else {
1300            codegen_backend.codegen_crate(tcx, &crate_info)
1301        }
1302    });
1303
1304    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_interface/src/passes.rs:1304",
                        "rustc_interface::passes", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                        ::tracing_core::__macro_support::Option::Some(1304u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_interface::passes"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("Post-codegen\n{0:?}",
                                                    tcx.debug_stats()) as &dyn Value))])
            });
    } else { ; }
};info!("Post-codegen\n{:?}", tcx.debug_stats());
1305
1306    // This must run after monomorphization so that all generic types
1307    // have been instantiated.
1308    if tcx.sess.opts.unstable_opts.print_type_sizes {
1309        tcx.sess.code_stats.print_type_sizes();
1310    }
1311
1312    (codegen, crate_info, metadata)
1313}
1314
1315/// Compute and validate the crate name.
1316pub fn get_crate_name(sess: &Session, krate_attrs: &[ast::Attribute]) -> Symbol {
1317    // We validate *all* occurrences of `#![crate_name]`, pick the first find and
1318    // if a crate name was passed on the command line via `--crate-name` we enforce
1319    // that they match.
1320    // We perform the validation step here instead of later to ensure it gets run
1321    // in all code paths that require the crate name very early on, namely before
1322    // macro expansion.
1323
1324    let attr_crate_name =
1325        parse_crate_name(sess, krate_attrs, ShouldEmit::EarlyFatal { also_emit_lints: true });
1326
1327    let validate = |name, span| {
1328        rustc_session::output::validate_crate_name(sess, name, span);
1329        name
1330    };
1331
1332    if let Some(crate_name) = &sess.opts.crate_name {
1333        let crate_name = Symbol::intern(crate_name);
1334        if let Some((attr_crate_name, span)) = attr_crate_name
1335            && attr_crate_name != crate_name
1336        {
1337            sess.dcx().emit_err(errors::CrateNameDoesNotMatch {
1338                span,
1339                crate_name,
1340                attr_crate_name,
1341            });
1342        }
1343        return validate(crate_name, None);
1344    }
1345
1346    if let Some((crate_name, span)) = attr_crate_name {
1347        return validate(crate_name, Some(span));
1348    }
1349
1350    if let Input::File(ref path) = sess.io.input
1351        && let Some(file_stem) = path.file_stem().and_then(|s| s.to_str())
1352    {
1353        if file_stem.starts_with('-') {
1354            sess.dcx().emit_err(errors::CrateNameInvalid { crate_name: file_stem });
1355        } else {
1356            return validate(Symbol::intern(&file_stem.replace('-', "_")), None);
1357        }
1358    }
1359
1360    sym::rust_out
1361}
1362
1363pub(crate) fn parse_crate_name(
1364    sess: &Session,
1365    attrs: &[ast::Attribute],
1366    emit_errors: ShouldEmit,
1367) -> Option<(Symbol, Span)> {
1368    let rustc_hir::Attribute::Parsed(AttributeKind::CrateName { name, name_span, .. }) =
1369        AttributeParser::parse_limited_should_emit(
1370            sess,
1371            attrs,
1372            &[sym::crate_name],
1373            DUMMY_SP,
1374            rustc_ast::node_id::CRATE_NODE_ID,
1375            Target::Crate,
1376            None,
1377            emit_errors,
1378        )?
1379    else {
1380        {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("crate_name is the only attr we could\'ve parsed here")));
};unreachable!("crate_name is the only attr we could've parsed here");
1381    };
1382
1383    Some((name, name_span))
1384}
1385
1386pub fn collect_crate_types(
1387    session: &Session,
1388    backend_crate_types: &[CrateType],
1389    codegen_backend_name: &'static str,
1390    attrs: &[ast::Attribute],
1391    crate_span: Span,
1392) -> Vec<CrateType> {
1393    // If we're generating a test executable, then ignore all other output
1394    // styles at all other locations
1395    if session.opts.test {
1396        if !session.target.executables {
1397            session.dcx().emit_warn(errors::UnsupportedCrateTypeForTarget {
1398                crate_type: CrateType::Executable,
1399                target_triple: &session.opts.target_triple,
1400            });
1401            return Vec::new();
1402        }
1403        return ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [CrateType::Executable]))vec![CrateType::Executable];
1404    }
1405
1406    // Shadow `sdylib` crate type in interface build.
1407    if session.opts.unstable_opts.build_sdylib_interface {
1408        return ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [CrateType::Rlib]))vec![CrateType::Rlib];
1409    }
1410
1411    // Only check command line flags if present. If no types are specified by
1412    // command line, then reuse the empty `base` Vec to hold the types that
1413    // will be found in crate attributes.
1414    // JUSTIFICATION: before wrapper fn is available
1415    #[allow(rustc::bad_opt_access)]
1416    let mut base = session.opts.crate_types.clone();
1417    if base.is_empty() {
1418        if let Some(Attribute::Parsed(AttributeKind::CrateType(crate_type))) =
1419            AttributeParser::<Early>::parse_limited_should_emit(
1420                session,
1421                attrs,
1422                &[sym::crate_type],
1423                crate_span,
1424                CRATE_NODE_ID,
1425                Target::Crate,
1426                None,
1427                ShouldEmit::EarlyFatal { also_emit_lints: false },
1428            )
1429        {
1430            base.extend(crate_type);
1431        }
1432
1433        if base.is_empty() {
1434            base.push(default_output_for_target(session));
1435        } else {
1436            base.sort();
1437            base.dedup();
1438        }
1439    }
1440
1441    base.retain(|crate_type| {
1442        if invalid_output_for_target(session, *crate_type) {
1443            session.dcx().emit_warn(errors::UnsupportedCrateTypeForTarget {
1444                crate_type: *crate_type,
1445                target_triple: &session.opts.target_triple,
1446            });
1447            false
1448        } else if !backend_crate_types.contains(crate_type) {
1449            session.dcx().emit_warn(errors::UnsupportedCrateTypeForCodegenBackend {
1450                crate_type: *crate_type,
1451                codegen_backend: codegen_backend_name,
1452            });
1453            false
1454        } else {
1455            true
1456        }
1457    });
1458
1459    base
1460}
1461
1462/// Returns default crate type for target
1463///
1464/// Default crate type is used when crate type isn't provided neither
1465/// through cmd line arguments nor through crate attributes
1466///
1467/// It is CrateType::Executable for all platforms but iOS as there is no
1468/// way to run iOS binaries anyway without jailbreaking and
1469/// interaction with Rust code through static library is the only
1470/// option for now
1471fn default_output_for_target(sess: &Session) -> CrateType {
1472    if !sess.target.executables { CrateType::StaticLib } else { CrateType::Executable }
1473}
1474
1475fn get_recursion_limit(krate_attrs: &[ast::Attribute], sess: &Session) -> Limit {
1476    let attr = AttributeParser::parse_limited_should_emit(
1477        sess,
1478        &krate_attrs,
1479        &[sym::recursion_limit],
1480        DUMMY_SP,
1481        rustc_ast::node_id::CRATE_NODE_ID,
1482        Target::Crate,
1483        None,
1484        // errors are fatal here, but lints aren't.
1485        // If things aren't fatal we continue, and will parse this again.
1486        // That makes the same lint trigger again.
1487        // So, no lints here to avoid duplicates.
1488        ShouldEmit::EarlyFatal { also_emit_lints: false },
1489    );
1490    crate::limits::get_recursion_limit(attr.as_slice(), sess)
1491}