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, 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::{
15    AppendOnlyIndexVec, DynSend, DynSync, FreezeLock, WorkerLocal, par_fns,
16};
17use rustc_data_structures::thousands;
18use rustc_errors::timings::TimingSection;
19use rustc_errors::{Diag, DiagCtxtHandle, Diagnostic, Level};
20use rustc_expand::base::{ExtCtxt, LintStoreExpand};
21use rustc_feature::Features;
22use rustc_fs_util::try_canonicalize;
23use rustc_hir::attrs::AttributeKind;
24use rustc_hir::def_id::{LOCAL_CRATE, StableCrateId, StableCrateIdMap};
25use rustc_hir::definitions::Definitions;
26use rustc_hir::limit::Limit;
27use rustc_hir::{Attribute, MaybeOwner, Target, find_attr};
28use rustc_incremental::setup_dep_graph;
29use rustc_lint::{BufferedEarlyLint, EarlyCheckNode, LintStore, unerased_lint_store};
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                features,
100                true,
101                lint_store,
102                registered_tools,
103                None,
104                rustc_lint::BuiltinCombinedPreExpansionLintPass::new(),
105                check_node,
106            );
107        },
108    );
109}
110
111// Cannot implement directly for `LintStore` due to trait coherence.
112struct LintStoreExpandImpl<'a>(&'a LintStore);
113
114impl LintStoreExpand for LintStoreExpandImpl<'_> {
115    fn pre_expansion_lint(
116        &self,
117        sess: &Session,
118        features: &Features,
119        registered_tools: &RegisteredTools,
120        node_id: ast::NodeId,
121        attrs: &[ast::Attribute],
122        items: &[Box<ast::Item>],
123        name: Symbol,
124    ) {
125        pre_expansion_lint(sess, features, self.0, registered_tools, (node_id, attrs, items), name);
126    }
127}
128
129/// Runs the "early phases" of the compiler: initial `cfg` processing,
130/// syntax expansion, secondary `cfg` expansion, synthesis of a test
131/// harness if one is to be provided, injection of a dependency on the
132/// standard library and prelude, and name resolution.
133#[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(133u32),
                                    ::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(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))]
134fn configure_and_expand(
135    mut krate: ast::Crate,
136    pre_configured_attrs: &[ast::Attribute],
137    resolver: &mut Resolver<'_, '_>,
138) -> ast::Crate {
139    let tcx = resolver.tcx();
140    let sess = tcx.sess;
141    let features = tcx.features();
142    let lint_store = unerased_lint_store(sess);
143    let crate_name = tcx.crate_name(LOCAL_CRATE);
144    let lint_check_node = (&krate, pre_configured_attrs);
145    pre_expansion_lint(
146        sess,
147        features,
148        lint_store,
149        tcx.registered_tools(()),
150        lint_check_node,
151        crate_name,
152    );
153    rustc_builtin_macros::register_builtin_macros(resolver);
154
155    let num_standard_library_imports = sess.time("crate_injection", || {
156        rustc_builtin_macros::standard_library_imports::inject(
157            &mut krate,
158            pre_configured_attrs,
159            resolver,
160            sess,
161            features,
162        )
163    });
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_session_incompatibilities(tcx, &krate);
307    krate
308}
309
310fn print_macro_stats(ecx: &ExtCtxt<'_>) {
311    use std::fmt::Write;
312
313    let crate_name = ecx.ecfg.crate_name.as_str();
314    let crate_name = if crate_name == "build_script_build" {
315        // This is a build script. Get the package name from the environment.
316        let pkg_name =
317            std::env::var("CARGO_PKG_NAME").unwrap_or_else(|_| "<unknown crate>".to_string());
318        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0} build script", pkg_name))
    })format!("{pkg_name} build script")
319    } else {
320        crate_name.to_string()
321    };
322
323    // No instability because we immediately sort the produced vector.
324    #[allow(rustc::potential_query_instability)]
325    let mut macro_stats: Vec<_> = ecx
326        .macro_stats
327        .iter()
328        .map(|((name, kind), stat)| {
329            // This gives the desired sort order: sort by bytes, then lines, etc.
330            (stat.bytes, stat.lines, stat.uses, name, *kind)
331        })
332        .collect();
333    macro_stats.sort_unstable();
334    macro_stats.reverse(); // bigger items first
335
336    let prefix = "macro-stats";
337    let name_w = 32;
338    let uses_w = 7;
339    let lines_w = 11;
340    let avg_lines_w = 11;
341    let bytes_w = 11;
342    let avg_bytes_w = 11;
343    let banner_w = name_w + uses_w + lines_w + avg_lines_w + bytes_w + avg_bytes_w;
344
345    // We write all the text into a string and print it with a single
346    // `eprint!`. This is an attempt to minimize interleaved text if multiple
347    // rustc processes are printing macro-stats at the same time (e.g. with
348    // `RUSTFLAGS='-Zmacro-stats' cargo build`). It still doesn't guarantee
349    // non-interleaving, though.
350    let mut s = String::new();
351    _ = s.write_fmt(format_args!("{1} {0}\n", "=".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "=".repeat(banner_w));
352    _ = s.write_fmt(format_args!("{1} MACRO EXPANSION STATS: {0}\n", crate_name,
        prefix))writeln!(s, "{prefix} MACRO EXPANSION STATS: {}", crate_name);
353    _ = 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!(
354        s,
355        "{prefix} {:<name_w$}{:>uses_w$}{:>lines_w$}{:>avg_lines_w$}{:>bytes_w$}{:>avg_bytes_w$}",
356        "Macro Name", "Uses", "Lines", "Avg Lines", "Bytes", "Avg Bytes",
357    );
358    _ = s.write_fmt(format_args!("{1} {0}\n", "-".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "-".repeat(banner_w));
359    // It's helpful to print something when there are no entries, otherwise it
360    // might look like something went wrong.
361    if macro_stats.is_empty() {
362        _ = s.write_fmt(format_args!("{0} (none)\n", prefix))writeln!(s, "{prefix} (none)");
363    }
364    for (bytes, lines, uses, name, kind) in macro_stats {
365        let mut name = ExpnKind::Macro(kind, *name).descr();
366        let uses_with_underscores = thousands::usize_with_underscores(uses);
367        let avg_lines = lines as f64 / uses as f64;
368        let avg_bytes = bytes as f64 / uses as f64;
369
370        // Ensure the "Macro Name" and "Uses" columns are as compact as possible.
371        let mut uses_w = uses_w;
372        if name.len() + uses_with_underscores.len() >= name_w + uses_w {
373            // The name would abut or overlap the uses value. Print the name
374            // on a line by itself, then set the name to empty and print things
375            // normally, to show the stats on the next line.
376            _ = s.write_fmt(format_args!("{1} {0:<2$}\n", name, prefix, name_w))writeln!(s, "{prefix} {:<name_w$}", name);
377            name = String::new();
378        } else if name.len() >= name_w {
379            // The name won't abut or overlap with the uses value, but it does
380            // overlap with the empty part of the uses column. Shrink the width
381            // of the uses column to account for the excess name length.
382            uses_w -= name.len() - name_w;
383        };
384
385        _ = 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!(
386            s,
387            "{prefix} {:<name_w$}{:>uses_w$}{:>lines_w$}{:>avg_lines_w$}{:>bytes_w$}{:>avg_bytes_w$}",
388            name,
389            uses_with_underscores,
390            thousands::usize_with_underscores(lines),
391            thousands::f64p1_with_underscores(avg_lines),
392            thousands::usize_with_underscores(bytes),
393            thousands::f64p1_with_underscores(avg_bytes),
394        );
395    }
396    _ = s.write_fmt(format_args!("{1} {0}\n", "=".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "=".repeat(banner_w));
397    { ::std::io::_eprint(format_args!("{0}", s)); };eprint!("{s}");
398}
399
400fn early_lint_checks(tcx: TyCtxt<'_>, (): ()) {
401    let sess = tcx.sess;
402    let (resolver, krate) = &*tcx.resolver_for_lowering().borrow();
403    let mut lint_buffer = resolver.lint_buffer.steal();
404
405    if sess.opts.unstable_opts.input_stats {
406        input_stats::print_ast_stats(tcx, krate);
407    }
408
409    // Needs to go *after* expansion to be able to check the results of macro expansion.
410    sess.time("complete_gated_feature_checking", || {
411        rustc_ast_passes::feature_gate::check_crate(krate, sess, tcx.features());
412    });
413
414    // Add all buffered lints from the `ParseSess` to the `Session`.
415    sess.psess.buffered_lints.with_lock(|buffered_lints| {
416        {
    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:416",
                        "rustc_interface::passes", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                        ::tracing_core::__macro_support::Option::Some(416u32),
                        ::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());
417        for early_lint in buffered_lints.drain(..) {
418            lint_buffer.add_early_lint(early_lint);
419        }
420    });
421
422    // Gate identifiers containing invalid Unicode codepoints that were recovered during lexing.
423    sess.psess.bad_unicode_identifiers.with_lock(|identifiers| {
424        for (ident, mut spans) in identifiers.drain(..) {
425            spans.sort();
426            if ident == sym::ferris {
427                enum FerrisFix {
428                    SnakeCase,
429                    ScreamingSnakeCase,
430                    PascalCase,
431                }
432
433                impl FerrisFix {
434                    const fn as_str(self) -> &'static str {
435                        match self {
436                            FerrisFix::SnakeCase => "ferris",
437                            FerrisFix::ScreamingSnakeCase => "FERRIS",
438                            FerrisFix::PascalCase => "Ferris",
439                        }
440                    }
441                }
442
443                let first_span = spans[0];
444                let prev_source = sess.psess.source_map().span_to_prev_source(first_span);
445                let ferris_fix = prev_source
446                    .map_or(FerrisFix::SnakeCase, |source| {
447                        let mut source_before_ferris = source.split_whitespace().rev();
448                        match source_before_ferris.next() {
449                            Some("struct" | "trait" | "mod" | "union" | "type" | "enum") => {
450                                FerrisFix::PascalCase
451                            }
452                            Some("const" | "static") => FerrisFix::ScreamingSnakeCase,
453                            Some("mut") if source_before_ferris.next() == Some("static") => {
454                                FerrisFix::ScreamingSnakeCase
455                            }
456                            _ => FerrisFix::SnakeCase,
457                        }
458                    })
459                    .as_str();
460
461                sess.dcx().emit_err(errors::FerrisIdentifier { spans, first_span, ferris_fix });
462            } else {
463                sess.dcx().emit_err(errors::EmojiIdentifier { spans, ident });
464            }
465        }
466    });
467
468    let lint_store = unerased_lint_store(tcx.sess);
469    rustc_lint::check_ast_node(
470        sess,
471        tcx.features(),
472        false,
473        lint_store,
474        tcx.registered_tools(()),
475        Some(lint_buffer),
476        rustc_lint::BuiltinCombinedEarlyLintPass::new(),
477        (&**krate, &*krate.attrs),
478    )
479}
480
481fn env_var_os<'tcx>(tcx: TyCtxt<'tcx>, key: &'tcx OsStr) -> Option<&'tcx OsStr> {
482    let value = env::var_os(key);
483
484    let value_tcx = value.as_ref().map(|value| {
485        let encoded_bytes = tcx.arena.alloc_slice(value.as_encoded_bytes());
486        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);
487        // SAFETY: The bytes came from `as_encoded_bytes`, and we assume that
488        // `alloc_slice` is implemented correctly, and passes the same bytes
489        // back (debug asserted above).
490        unsafe { OsStr::from_encoded_bytes_unchecked(encoded_bytes) }
491    });
492
493    // Also add the variable to Cargo's dependency tracking
494    //
495    // NOTE: This only works for passes run before `write_dep_info`. See that
496    // for extension points for configuring environment variables to be
497    // properly change-tracked.
498    tcx.sess.env_depinfo.borrow_mut().insert((
499        Symbol::intern(&key.to_string_lossy()),
500        value.as_ref().and_then(|value| value.to_str()).map(|value| Symbol::intern(value)),
501    ));
502
503    value_tcx
504}
505
506// Returns all the paths that correspond to generated files.
507fn generated_output_paths(
508    tcx: TyCtxt<'_>,
509    outputs: &OutputFilenames,
510    exact_name: bool,
511    crate_name: Symbol,
512) -> Vec<PathBuf> {
513    let sess = tcx.sess;
514    let mut out_filenames = Vec::new();
515    for output_type in sess.opts.output_types.keys() {
516        let out_filename = outputs.path(*output_type);
517        let file = out_filename.as_path().to_path_buf();
518        match *output_type {
519            // If the filename has been overridden using `-o`, it will not be modified
520            // by appending `.rlib`, `.exe`, etc., so we can skip this transformation.
521            OutputType::Exe if !exact_name => {
522                for crate_type in tcx.crate_types().iter() {
523                    let p = filename_for_input(sess, *crate_type, crate_name, outputs);
524                    out_filenames.push(p.as_path().to_path_buf());
525                }
526            }
527            OutputType::DepInfo if sess.opts.unstable_opts.dep_info_omit_d_target => {
528                // Don't add the dep-info output when omitting it from dep-info targets
529            }
530            OutputType::DepInfo if out_filename.is_stdout() => {
531                // Don't add the dep-info output when it goes to stdout
532            }
533            _ => {
534                out_filenames.push(file);
535            }
536        }
537    }
538    out_filenames
539}
540
541fn output_contains_path(output_paths: &[PathBuf], input_path: &Path) -> bool {
542    let input_path = try_canonicalize(input_path).ok();
543    if input_path.is_none() {
544        return false;
545    }
546    output_paths.iter().any(|output_path| try_canonicalize(output_path).ok() == input_path)
547}
548
549fn output_conflicts_with_dir(output_paths: &[PathBuf]) -> Option<&PathBuf> {
550    output_paths.iter().find(|output_path| output_path.is_dir())
551}
552
553fn escape_dep_filename(filename: &str) -> String {
554    // Apparently clang and gcc *only* escape spaces:
555    // https://llvm.org/klaus/clang/commit/9d50634cfc268ecc9a7250226dd5ca0e945240d4
556    filename.replace(' ', "\\ ")
557}
558
559// Makefile comments only need escaping newlines and `\`.
560// The result can be unescaped by anything that can unescape `escape_default` and friends.
561fn escape_dep_env(symbol: Symbol) -> String {
562    let s = symbol.as_str();
563    let mut escaped = String::with_capacity(s.len());
564    for c in s.chars() {
565        match c {
566            '\n' => escaped.push_str(r"\n"),
567            '\r' => escaped.push_str(r"\r"),
568            '\\' => escaped.push_str(r"\\"),
569            _ => escaped.push(c),
570        }
571    }
572    escaped
573}
574
575fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[PathBuf]) {
576    // Write out dependency rules to the dep-info file if requested
577    let sess = tcx.sess;
578    if !sess.opts.output_types.contains_key(&OutputType::DepInfo) {
579        return;
580    }
581    let deps_output = outputs.path(OutputType::DepInfo);
582    let deps_filename = deps_output.as_path();
583
584    let result = try {
585        // Build a list of files used to compile the output and
586        // write Makefile-compatible dependency rules
587        let mut files: IndexMap<String, (u64, Option<SourceFileHash>)> = sess
588            .source_map()
589            .files()
590            .iter()
591            .filter(|fmap| fmap.is_real_file())
592            .filter(|fmap| !fmap.is_imported())
593            .map(|fmap| {
594                (
595                    escape_dep_filename(&fmap.name.prefer_local_unconditionally().to_string()),
596                    (
597                        // This needs to be unnormalized,
598                        // as external tools wouldn't know how rustc normalizes them
599                        fmap.unnormalized_source_len as u64,
600                        fmap.checksum_hash,
601                    ),
602                )
603            })
604            .collect();
605
606        let checksum_hash_algo = sess.opts.unstable_opts.checksum_hash_algorithm;
607
608        // Account for explicitly marked-to-track files
609        // (e.g. accessed in proc macros).
610        let file_depinfo = sess.file_depinfo.borrow();
611
612        let normalize_path = |path: PathBuf| escape_dep_filename(&path.to_string_lossy());
613
614        // The entries will be used to declare dependencies between files in a
615        // Makefile-like output, so the iteration order does not matter.
616        fn hash_iter_files<P: AsRef<Path>>(
617            it: impl Iterator<Item = P>,
618            checksum_hash_algo: Option<SourceFileHashAlgorithm>,
619        ) -> impl Iterator<Item = (P, (u64, Option<SourceFileHash>))> {
620            it.map(move |path| {
621                match checksum_hash_algo.and_then(|algo| {
622                    fs::File::open(path.as_ref())
623                        .and_then(|mut file| {
624                            SourceFileHash::new(algo, &mut file).map(|h| (file, h))
625                        })
626                        .and_then(|(file, h)| file.metadata().map(|m| (m.len(), h)))
627                        .map_err(|e| {
628                            {
    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:628",
                        "rustc_interface::passes", ::tracing::Level::ERROR,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                        ::tracing_core::__macro_support::Option::Some(628u32),
                        ::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!(
629                                "failed to compute checksum, omitting it from dep-info {} {e}",
630                                path.as_ref().display()
631                            )
632                        })
633                        .ok()
634                }) {
635                    Some((file_len, checksum)) => (path, (file_len, Some(checksum))),
636                    None => (path, (0, None)),
637                }
638            })
639        }
640
641        let extra_tracked_files = hash_iter_files(
642            file_depinfo.iter().map(|path_sym| normalize_path(PathBuf::from(path_sym.as_str()))),
643            checksum_hash_algo,
644        );
645        files.extend(extra_tracked_files);
646
647        // We also need to track used PGO profile files
648        if let Some(ref profile_instr) = sess.opts.cg.profile_use {
649            files.extend(hash_iter_files(
650                iter::once(normalize_path(profile_instr.as_path().to_path_buf())),
651                checksum_hash_algo,
652            ));
653        }
654        if let Some(ref profile_sample) = sess.opts.unstable_opts.profile_sample_use {
655            files.extend(hash_iter_files(
656                iter::once(normalize_path(profile_sample.as_path().to_path_buf())),
657                checksum_hash_algo,
658            ));
659        }
660
661        // Debugger visualizer files
662        for debugger_visualizer in tcx.debugger_visualizers(LOCAL_CRATE) {
663            files.extend(hash_iter_files(
664                iter::once(normalize_path(debugger_visualizer.path.clone().unwrap())),
665                checksum_hash_algo,
666            ));
667        }
668
669        if sess.binary_dep_depinfo() {
670            if let Some(ref backend) = sess.opts.unstable_opts.codegen_backend {
671                if backend.contains('.') {
672                    // If the backend name contain a `.`, it is the path to an external dynamic
673                    // library. If not, it is not a path.
674                    files.extend(hash_iter_files(
675                        iter::once(backend.to_string()),
676                        checksum_hash_algo,
677                    ));
678                }
679            }
680
681            for &cnum in tcx.crates(()) {
682                let source = tcx.used_crate_source(cnum);
683                if let Some(path) = &source.dylib {
684                    files.extend(hash_iter_files(
685                        iter::once(escape_dep_filename(&path.display().to_string())),
686                        checksum_hash_algo,
687                    ));
688                }
689                if let Some(path) = &source.rlib {
690                    files.extend(hash_iter_files(
691                        iter::once(escape_dep_filename(&path.display().to_string())),
692                        checksum_hash_algo,
693                    ));
694                }
695                if let Some(path) = &source.rmeta {
696                    files.extend(hash_iter_files(
697                        iter::once(escape_dep_filename(&path.display().to_string())),
698                        checksum_hash_algo,
699                    ));
700                }
701            }
702        }
703
704        let write_deps_to_file = |file: &mut dyn Write| -> io::Result<()> {
705            for path in out_filenames {
706                file.write_fmt(format_args!("{0}: {1}\n\n", path.display(),
        files.keys().map(String::as_str).intersperse(" ").collect::<String>()))writeln!(
707                    file,
708                    "{}: {}\n",
709                    path.display(),
710                    files.keys().map(String::as_str).intersperse(" ").collect::<String>()
711                )?;
712            }
713
714            // Emit a fake target for each input file to the compilation. This
715            // prevents `make` from spitting out an error if a file is later
716            // deleted. For more info see #28735
717            for path in files.keys() {
718                file.write_fmt(format_args!("{0}:\n", path))writeln!(file, "{path}:")?;
719            }
720
721            // Emit special comments with information about accessed environment variables.
722            let env_depinfo = sess.env_depinfo.borrow();
723            if !env_depinfo.is_empty() {
724                // We will soon sort, so the initial order does not matter.
725                #[allow(rustc::potential_query_instability)]
726                let mut envs: Vec<_> = env_depinfo
727                    .iter()
728                    .map(|(k, v)| (escape_dep_env(*k), v.map(escape_dep_env)))
729                    .collect();
730                envs.sort_unstable();
731                file.write_fmt(format_args!("\n"))writeln!(file)?;
732                for (k, v) in envs {
733                    file.write_fmt(format_args!("# env-dep:{0}", k))write!(file, "# env-dep:{k}")?;
734                    if let Some(v) = v {
735                        file.write_fmt(format_args!("={0}", v))write!(file, "={v}")?;
736                    }
737                    file.write_fmt(format_args!("\n"))writeln!(file)?;
738                }
739            }
740
741            // If caller requested this information, add special comments about source file checksums.
742            // These are not necessarily the same checksums as was used in the debug files.
743            if sess.opts.unstable_opts.checksum_hash_algorithm().is_some() {
744                files
745                    .iter()
746                    .filter_map(|(path, (file_len, hash_algo))| {
747                        hash_algo.map(|hash_algo| (path, file_len, hash_algo))
748                    })
749                    .try_for_each(|(path, file_len, checksum_hash)| {
750                        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}")
751                    })?;
752            }
753
754            Ok(())
755        };
756
757        match deps_output {
758            OutFileName::Stdout => {
759                let mut file = BufWriter::new(io::stdout());
760                write_deps_to_file(&mut file)?;
761            }
762            OutFileName::Real(ref path) => {
763                let mut file = fs::File::create_buffered(path)?;
764                write_deps_to_file(&mut file)?;
765            }
766        }
767    };
768
769    match result {
770        Ok(_) => {
771            if sess.opts.json_artifact_notifications {
772                sess.dcx().emit_artifact_notification(deps_filename, "dep-info");
773            }
774        }
775        Err(error) => {
776            sess.dcx().emit_fatal(errors::ErrorWritingDependencies { path: deps_filename, error });
777        }
778    }
779}
780
781fn resolver_for_lowering_raw<'tcx>(
782    tcx: TyCtxt<'tcx>,
783    (): (),
784) -> (&'tcx Steal<(ty::ResolverAstLowering<'tcx>, Arc<ast::Crate>)>, &'tcx ty::ResolverGlobalCtxt) {
785    let arenas = Resolver::arenas();
786    let _ = tcx.registered_tools(()); // Uses `crate_for_resolver`.
787    let (krate, pre_configured_attrs) = tcx.crate_for_resolver(()).steal();
788    let mut resolver = Resolver::new(
789        tcx,
790        &pre_configured_attrs,
791        krate.spans.inner_span,
792        krate.spans.inject_use_span,
793        &arenas,
794    );
795    let krate = configure_and_expand(krate, &pre_configured_attrs, &mut resolver);
796
797    // Make sure we don't mutate the cstore from here on.
798    tcx.untracked().cstore.freeze();
799
800    let ResolverOutputs {
801        global_ctxt: untracked_resolutions,
802        ast_lowering: untracked_resolver_for_lowering,
803    } = resolver.into_outputs();
804
805    let resolutions = tcx.arena.alloc(untracked_resolutions);
806    (tcx.arena.alloc(Steal::new((untracked_resolver_for_lowering, Arc::new(krate)))), resolutions)
807}
808
809pub fn write_dep_info(tcx: TyCtxt<'_>) {
810    // Make sure name resolution and macro expansion is run for
811    // the side-effect of providing a complete set of all
812    // accessed files and env vars.
813    let _ = tcx.resolver_for_lowering();
814
815    let sess = tcx.sess;
816    let _timer = sess.timer("write_dep_info");
817    let crate_name = tcx.crate_name(LOCAL_CRATE);
818
819    let outputs = tcx.output_filenames(());
820    let output_paths =
821        generated_output_paths(tcx, outputs, sess.io.output_file.is_some(), crate_name);
822
823    // Ensure the source file isn't accidentally overwritten during compilation.
824    if let Some(input_path) = sess.io.input.opt_path() {
825        if sess.opts.will_create_output_file() {
826            if output_contains_path(&output_paths, input_path) {
827                sess.dcx().emit_fatal(errors::InputFileWouldBeOverWritten { path: input_path });
828            }
829            if let Some(dir_path) = output_conflicts_with_dir(&output_paths) {
830                sess.dcx().emit_fatal(errors::GeneratedFileConflictsWithDirectory {
831                    input_path,
832                    dir_path,
833                });
834            }
835        }
836    }
837
838    if let Some(ref dir) = sess.io.temps_dir {
839        if fs::create_dir_all(dir).is_err() {
840            sess.dcx().emit_fatal(errors::TempsDirError);
841        }
842    }
843
844    write_out_deps(tcx, outputs, &output_paths);
845
846    let only_dep_info = sess.opts.output_types.contains_key(&OutputType::DepInfo)
847        && sess.opts.output_types.len() == 1;
848
849    if !only_dep_info {
850        if let Some(ref dir) = sess.io.output_dir {
851            if fs::create_dir_all(dir).is_err() {
852                sess.dcx().emit_fatal(errors::OutDirError);
853            }
854        }
855    }
856}
857
858pub fn write_interface<'tcx>(tcx: TyCtxt<'tcx>) {
859    if !tcx.crate_types().contains(&rustc_session::config::CrateType::Sdylib) {
860        return;
861    }
862    let _timer = tcx.sess.timer("write_interface");
863    let (_, krate) = &*tcx.resolver_for_lowering().borrow();
864
865    let krate = rustc_ast_pretty::pprust::print_crate_as_interface(
866        krate,
867        tcx.sess.psess.edition,
868        &tcx.sess.psess.attr_id_generator,
869    );
870    let export_output = tcx.output_filenames(()).interface_path();
871    let mut file = fs::File::create_buffered(export_output).unwrap();
872    if let Err(err) = file.write_fmt(format_args!("{0}", krate))write!(file, "{}", krate) {
873        tcx.dcx().fatal(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("error writing interface file: {0}",
                err))
    })format!("error writing interface file: {}", err));
874    }
875}
876
877pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
878    let providers = &mut Providers::default();
879    providers.queries.analysis = analysis;
880    providers.queries.hir_crate = rustc_ast_lowering::lower_to_hir;
881    providers.queries.lower_delayed_owner = rustc_ast_lowering::lower_delayed_owner;
882    // `delayed_owner` is fed during `lower_delayed_owner`, by default it returns phantom,
883    // as if this query was not fed it means that `MaybeOwner` does not exist for provided LocalDefId.
884    providers.queries.delayed_owner = |_, _| MaybeOwner::Phantom;
885    providers.queries.resolver_for_lowering_raw = resolver_for_lowering_raw;
886    providers.queries.stripped_cfg_items = |tcx, _| &tcx.resolutions(()).stripped_cfg_items[..];
887    providers.queries.resolutions = |tcx, ()| tcx.resolver_for_lowering_raw(()).1;
888    providers.queries.early_lint_checks = early_lint_checks;
889    providers.queries.env_var_os = env_var_os;
890    limits::provide(&mut providers.queries);
891    proc_macro_decls::provide(&mut providers.queries);
892    rustc_expand::provide(&mut providers.queries);
893    rustc_const_eval::provide(providers);
894    rustc_middle::hir::provide(&mut providers.queries);
895    rustc_borrowck::provide(&mut providers.queries);
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(&mut providers.queries);
901    rustc_query_impl::provide(providers);
902    rustc_resolve::provide(&mut providers.queries);
903    rustc_hir_analysis::provide(&mut providers.queries);
904    rustc_hir_typeck::provide(&mut providers.queries);
905    ty::provide(&mut providers.queries);
906    traits::provide(&mut providers.queries);
907    solve::provide(&mut providers.queries);
908    rustc_passes::provide(&mut providers.queries);
909    rustc_traits::provide(&mut providers.queries);
910    rustc_ty_utils::provide(&mut providers.queries);
911    rustc_metadata::provide(providers);
912    rustc_lint::provide(&mut providers.queries);
913    rustc_symbol_mangling::provide(&mut providers.queries);
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(
929        sess,
930        &compiler.codegen_backend.supported_crate_types(sess),
931        compiler.codegen_backend.name(),
932        &pre_configured_attrs,
933        krate.spans.inner_span,
934    );
935    let stable_crate_id = StableCrateId::new(
936        crate_name,
937        crate_types.contains(&CrateType::Executable),
938        sess.opts.cg.metadata.clone(),
939        sess.cfg_version,
940    );
941
942    let outputs = util::build_output_filenames(&pre_configured_attrs, sess);
943
944    let dep_graph = setup_dep_graph(sess, crate_name, stable_crate_id);
945
946    let cstore =
947        FreezeLock::new(Box::new(CStore::new(compiler.codegen_backend.metadata_loader())) as _);
948    let definitions = FreezeLock::new(Definitions::new(stable_crate_id));
949
950    let stable_crate_ids = FreezeLock::new(StableCrateIdMap::default());
951    let untracked =
952        Untracked { cstore, source_span: AppendOnlyIndexVec::new(), definitions, stable_crate_ids };
953
954    // We're constructing the HIR here; we don't care what we will
955    // read, since we haven't even constructed the *input* to
956    // incr. comp. yet.
957    dep_graph.assert_ignored();
958
959    let query_result_on_disk_cache = rustc_incremental::load_query_result_cache(sess);
960
961    let codegen_backend = &compiler.codegen_backend;
962    let mut providers = *DEFAULT_QUERY_PROVIDERS;
963    codegen_backend.provide(&mut providers);
964
965    if let Some(callback) = compiler.override_queries {
966        callback(sess, &mut providers);
967    }
968
969    let incremental = dep_graph.is_fully_enabled();
970
971    // Note: this function body is the origin point of the widely-used 'tcx lifetime.
972    //
973    // `gcx_cell` is defined here and `&gcx_cell` is passed to `create_global_ctxt`, which then
974    // actually creates the `GlobalCtxt` with a `gcx_cell.get_or_init(...)` call. This is done so
975    // that the resulting reference has the type `&'tcx GlobalCtxt<'tcx>`, which is what `TyCtxt`
976    // needs. If we defined and created the `GlobalCtxt` within `create_global_ctxt` then its type
977    // would be `&'a GlobalCtxt<'tcx>`, with two lifetimes.
978    //
979    // Similarly, by creating `arena` here and passing in `&arena`, that reference has the type
980    // `&'tcx WorkerLocal<Arena<'tcx>>`, also with one lifetime. And likewise for `hir_arena`.
981
982    let gcx_cell = OnceLock::new();
983    let arena = WorkerLocal::new(|_| Arena::default());
984    let hir_arena = WorkerLocal::new(|_| rustc_hir::Arena::default());
985
986    TyCtxt::create_global_ctxt(
987        &gcx_cell,
988        &compiler.sess,
989        crate_types,
990        stable_crate_id,
991        &arena,
992        &hir_arena,
993        untracked,
994        dep_graph,
995        rustc_query_impl::make_dep_kind_vtables(&arena),
996        rustc_query_impl::query_system(
997            providers.queries,
998            providers.extern_queries,
999            query_result_on_disk_cache,
1000            incremental,
1001        ),
1002        providers.hooks,
1003        compiler.current_gcx.clone(),
1004        Arc::clone(&compiler.jobserver_proxy),
1005        |tcx| {
1006            let feed = tcx.create_crate_num(stable_crate_id).unwrap();
1007            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);
1008            feed.crate_name(crate_name);
1009
1010            let feed = tcx.feed_unit_query();
1011            feed.features_query(tcx.arena.alloc(rustc_expand::config::features(
1012                tcx.sess,
1013                &pre_configured_attrs,
1014                crate_name,
1015            )));
1016            feed.crate_for_resolver(tcx.arena.alloc(Steal::new((krate, pre_configured_attrs))));
1017            feed.output_filenames(Arc::new(outputs));
1018
1019            let res = f(tcx);
1020            // FIXME maybe run finish even when a fatal error occurred? or at least
1021            // tcx.alloc_self_profile_query_strings()?
1022            tcx.finish();
1023            res
1024        },
1025    )
1026}
1027
1028struct DiagCallback<'a, 'tcx> {
1029    callback: &'a Box<
1030        dyn for<'b> Fn(DiagCtxtHandle<'b>, Level, &dyn Any) -> Diag<'b, ()> + DynSend + DynSync,
1031    >,
1032    tcx: TyCtxt<'tcx>,
1033}
1034
1035impl<'a, 'b, 'tcx> Diagnostic<'a, ()> for DiagCallback<'b, 'tcx> {
1036    fn into_diag(self, dcx: DiagCtxtHandle<'a>, level: Level) -> Diag<'a, ()> {
1037        (self.callback)(dcx, level, self.tcx.sess)
1038    }
1039}
1040
1041pub fn emit_delayed_lints(tcx: TyCtxt<'_>) {
1042    for owner_id in tcx.hir_crate_items(()).delayed_lint_items() {
1043        if let Some(delayed_lints) = tcx.opt_ast_lowering_delayed_lints(owner_id) {
1044            for lint in delayed_lints {
1045                tcx.emit_node_span_lint(
1046                    lint.lint_id.lint,
1047                    lint.id,
1048                    lint.span.clone(),
1049                    DiagCallback { callback: &lint.callback, tcx },
1050                );
1051            }
1052        }
1053    }
1054}
1055
1056/// Runs all analyses that we guarantee to run, even if errors were reported in earlier analyses.
1057/// This function never fails.
1058fn run_required_analyses(tcx: TyCtxt<'_>) {
1059    if tcx.sess.opts.unstable_opts.input_stats {
1060        rustc_passes::input_stats::print_hir_stats(tcx);
1061    }
1062    // When using rustdoc's "jump to def" feature, it enters this code and `check_crate`
1063    // is not defined. So we need to cfg it out.
1064    #[cfg(all(not(doc), debug_assertions))]
1065    rustc_passes::hir_id_validator::check_crate(tcx);
1066
1067    // Prefetch this to prevent multiple threads from blocking on it later.
1068    // This is needed since the `hir_id_validator::check_crate` call above is not guaranteed
1069    // to use `hir_crate_items`.
1070    tcx.ensure_done().hir_crate_items(());
1071
1072    let sess = tcx.sess;
1073    sess.time("misc_checking_1", || {
1074        par_fns(&mut [
1075            &mut || {
1076                sess.time("looking_for_entry_point", || tcx.ensure_ok().entry_fn(()));
1077                sess.time("check_externally_implementable_items", || {
1078                    tcx.ensure_ok().check_externally_implementable_items(())
1079                });
1080
1081                sess.time("looking_for_derive_registrar", || {
1082                    tcx.ensure_ok().proc_macro_decls_static(())
1083                });
1084
1085                CStore::from_tcx(tcx).report_unused_deps(tcx);
1086            },
1087            &mut || {
1088                tcx.ensure_ok().exportable_items(LOCAL_CRATE);
1089                tcx.ensure_ok().stable_order_of_exportable_impls(LOCAL_CRATE);
1090                tcx.par_hir_for_each_module(|module| {
1091                    tcx.ensure_ok().check_mod_attrs(module);
1092                    tcx.ensure_ok().check_mod_unstable_api_usage(module);
1093                });
1094            },
1095            &mut || {
1096                // We force these queries to run,
1097                // since they might not otherwise get called.
1098                // This marks the corresponding crate-level attributes
1099                // as used, and ensures that their values are valid.
1100                tcx.ensure_ok().limits(());
1101            },
1102        ]);
1103    });
1104
1105    sess.time("emit_ast_lowering_delayed_lints", || {
1106        // Sanity check in debug mode that all lints are really noticed and we really will emit
1107        // them all in the loop right below.
1108        //
1109        // During ast lowering, when creating items, foreign items, trait items and impl items,
1110        // we store in them whether they have any lints in their owner node that should be
1111        // picked up by `hir_crate_items`. However, theoretically code can run between that
1112        // boolean being inserted into the item and the owner node being created. We don't want
1113        // any new lints to be emitted there (you have to really try to manage that but still),
1114        // but this check is there to catch that.
1115        #[cfg(debug_assertions)]
1116        {
1117            let hir_items = tcx.hir_crate_items(());
1118            for owner_id in hir_items.owners() {
1119                if let Some(delayed_lints) = tcx.opt_ast_lowering_delayed_lints(owner_id)
1120                    && !delayed_lints.is_empty()
1121                {
1122                    // Assert that delayed_lint_items also picked up this item to have lints.
1123                    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));
1124                }
1125            }
1126        }
1127
1128        emit_delayed_lints(tcx);
1129    });
1130
1131    rustc_hir_analysis::check_crate(tcx);
1132    // Freeze definitions as we don't add new ones at this point.
1133    // We need to wait until now since we synthesize a by-move body
1134    // for all coroutine-closures.
1135    //
1136    // This improves performance by allowing lock-free access to them.
1137    tcx.untracked().definitions.freeze();
1138
1139    sess.time("MIR_borrow_checking", || {
1140        tcx.par_hir_body_owners(|def_id| {
1141            let not_typeck_child = !tcx.is_typeck_child(def_id.to_def_id());
1142            if not_typeck_child {
1143                // Child unsafety and borrowck happens together with the parent
1144                tcx.ensure_ok().check_unsafety(def_id);
1145            }
1146            if tcx.is_trivial_const(def_id) {
1147                return;
1148            }
1149            if not_typeck_child {
1150                tcx.ensure_ok().mir_borrowck(def_id);
1151                tcx.ensure_ok().check_transmutes(def_id);
1152            }
1153            tcx.ensure_ok().has_ffi_unwind_calls(def_id);
1154            tcx.ensure_ok().check_liveness(def_id);
1155
1156            // If we need to codegen, ensure that we emit all errors from
1157            // `mir_drops_elaborated_and_const_checked` now, to avoid discovering
1158            // them later during codegen.
1159            if tcx.sess.opts.output_types.should_codegen()
1160                || tcx.hir_body_const_context(def_id).is_some()
1161            {
1162                tcx.ensure_ok().mir_drops_elaborated_and_const_checked(def_id);
1163            }
1164            if tcx.is_coroutine(def_id.to_def_id())
1165                && (!tcx.is_async_drop_in_place_coroutine(def_id.to_def_id()))
1166            {
1167                // Eagerly check the unsubstituted layout for cycles.
1168                tcx.ensure_ok().layout_of(
1169                    ty::TypingEnv::post_analysis(tcx, def_id.to_def_id())
1170                        .as_query_input(tcx.type_of(def_id).instantiate_identity().skip_norm_wip()),
1171                );
1172            }
1173        });
1174    });
1175
1176    sess.time("layout_testing", || layout_test::test_layout(tcx));
1177    sess.time("abi_testing", || abi_test::test_abi(tcx));
1178}
1179
1180/// Runs the type-checking, region checking and other miscellaneous analysis
1181/// passes on the crate.
1182fn analysis(tcx: TyCtxt<'_>, (): ()) {
1183    run_required_analyses(tcx);
1184
1185    let sess = tcx.sess;
1186
1187    // Avoid overwhelming user with errors if borrow checking failed.
1188    // I'm not sure how helpful this is, to be honest, but it avoids a
1189    // lot of annoying errors in the ui tests (basically,
1190    // lint warnings and so on -- kindck used to do this abort, but
1191    // kindck is gone now). -nmatsakis
1192    //
1193    // But we exclude lint errors from this, because lint errors are typically
1194    // less serious and we're more likely to want to continue (#87337).
1195    if let Some(guar) = sess.dcx().has_errors_excluding_lint_errors() {
1196        guar.raise_fatal();
1197    }
1198
1199    sess.time("misc_checking_3", || {
1200        par_fns(&mut [
1201            &mut || {
1202                tcx.ensure_ok().effective_visibilities(());
1203
1204                par_fns(&mut [
1205                    &mut || {
1206                        tcx.par_hir_for_each_module(|module| {
1207                            tcx.ensure_ok().check_private_in_public(module)
1208                        })
1209                    },
1210                    &mut || {
1211                        tcx.par_hir_for_each_module(|module| {
1212                            tcx.ensure_ok().check_mod_deathness(module)
1213                        });
1214                    },
1215                    &mut || {
1216                        sess.time("lint_checking", || {
1217                            rustc_lint::check_crate(tcx);
1218                        });
1219                    },
1220                    &mut || {
1221                        tcx.ensure_ok().clashing_extern_declarations(());
1222                    },
1223                ]);
1224            },
1225            &mut || {
1226                sess.time("privacy_checking_modules", || {
1227                    tcx.par_hir_for_each_module(|module| {
1228                        tcx.ensure_ok().check_mod_privacy(module);
1229                    });
1230                });
1231            },
1232        ]);
1233
1234        // This check has to be run after all lints are done processing. We don't
1235        // define a lint filter, as all lint checks should have finished at this point.
1236        sess.time("check_lint_expectations", || tcx.ensure_ok().check_expectations(None));
1237
1238        // This query is only invoked normally if a diagnostic is emitted that needs any
1239        // diagnostic item. If the crate compiles without checking any diagnostic items,
1240        // we will fail to emit overlap diagnostics. Thus we invoke it here unconditionally.
1241        let _ = tcx.all_diagnostic_items(());
1242    });
1243
1244    // If `-Zvalidate-mir` is set, we also want to compute the final MIR for each item
1245    // (either its `mir_for_ctfe` or `optimized_mir`) since that helps uncover any bugs
1246    // in MIR optimizations that may only be reachable through codegen, or other codepaths
1247    // that requires the optimized/ctfe MIR, coroutine bodies, or evaluating consts.
1248    // Nevertheless, wait after type checking is finished, as optimizing code that does not
1249    // type-check is very prone to ICEs.
1250    if tcx.sess.opts.unstable_opts.validate_mir {
1251        sess.time("ensuring_final_MIR_is_computable", || {
1252            tcx.par_hir_body_owners(|def_id| {
1253                if !tcx.is_trivial_const(def_id) {
1254                    tcx.instance_mir(ty::InstanceKind::Item(def_id.into()));
1255                }
1256            });
1257        });
1258    }
1259}
1260
1261/// Runs the codegen backend, after which the AST and analysis can
1262/// be discarded.
1263pub(crate) fn start_codegen<'tcx>(
1264    codegen_backend: &dyn CodegenBackend,
1265    tcx: TyCtxt<'tcx>,
1266) -> (Box<dyn Any>, CrateInfo, EncodedMetadata) {
1267    tcx.sess.timings.start_section(tcx.sess.dcx(), TimingSection::Codegen);
1268
1269    // Hook for tests.
1270    if let Some((def_id, _)) = tcx.entry_fn(())
1271        && {
        {
            '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)
1272    {
1273        tcx.ensure_ok().trigger_delayed_bug(def_id);
1274    }
1275
1276    // Don't run this test assertions when not doing codegen. Compiletest tries to build
1277    // build-fail tests in check mode first and expects it to not give an error in that case.
1278    if tcx.sess.opts.output_types.should_codegen() {
1279        rustc_symbol_mangling::test::dump_symbol_names_and_def_paths(tcx);
1280    }
1281
1282    // Don't do code generation if there were any errors. Likewise if
1283    // there were any delayed bugs, because codegen will likely cause
1284    // more ICEs, obscuring the original problem.
1285    if let Some(guar) = tcx.sess.dcx().has_errors_or_delayed_bugs() {
1286        guar.raise_fatal();
1287    }
1288
1289    {
    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:1289",
                        "rustc_interface::passes", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                        ::tracing_core::__macro_support::Option::Some(1289u32),
                        ::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());
1290
1291    let metadata = rustc_metadata::fs::encode_and_write_metadata(tcx);
1292
1293    let crate_info = CrateInfo::new(tcx, codegen_backend.target_cpu(tcx.sess));
1294
1295    let codegen = tcx.sess.time("codegen_crate", || {
1296        if tcx.sess.opts.unstable_opts.no_codegen || !tcx.sess.opts.output_types.should_codegen() {
1297            // Skip crate items and just output metadata in -Z no-codegen mode.
1298            tcx.sess.dcx().abort_if_errors();
1299
1300            // Linker::link will skip join_codegen in case of a CodegenResults Any value.
1301            Box::new(CompiledModules { modules: ::alloc::vec::Vec::new()vec![], allocator_module: None })
1302        } else {
1303            codegen_backend.codegen_crate(tcx, &crate_info)
1304        }
1305    });
1306
1307    {
    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:1307",
                        "rustc_interface::passes", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_interface/src/passes.rs"),
                        ::tracing_core::__macro_support::Option::Some(1307u32),
                        ::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());
1308
1309    // This must run after monomorphization so that all generic types
1310    // have been instantiated.
1311    if tcx.sess.opts.unstable_opts.print_type_sizes {
1312        tcx.sess.code_stats.print_type_sizes();
1313    }
1314
1315    (codegen, crate_info, metadata)
1316}
1317
1318/// Compute and validate the crate name.
1319pub fn get_crate_name(sess: &Session, krate_attrs: &[ast::Attribute]) -> Symbol {
1320    // We validate *all* occurrences of `#![crate_name]`, pick the first find and
1321    // if a crate name was passed on the command line via `--crate-name` we enforce
1322    // that they match.
1323    // We perform the validation step here instead of later to ensure it gets run
1324    // in all code paths that require the crate name very early on, namely before
1325    // macro expansion.
1326
1327    let attr_crate_name =
1328        parse_crate_name(sess, krate_attrs, ShouldEmit::EarlyFatal { also_emit_lints: true });
1329
1330    let validate = |name, span| {
1331        rustc_session::output::validate_crate_name(sess, name, span);
1332        name
1333    };
1334
1335    if let Some(crate_name) = &sess.opts.crate_name {
1336        let crate_name = Symbol::intern(crate_name);
1337        if let Some((attr_crate_name, span)) = attr_crate_name
1338            && attr_crate_name != crate_name
1339        {
1340            sess.dcx().emit_err(errors::CrateNameDoesNotMatch {
1341                span,
1342                crate_name,
1343                attr_crate_name,
1344            });
1345        }
1346        return validate(crate_name, None);
1347    }
1348
1349    if let Some((crate_name, span)) = attr_crate_name {
1350        return validate(crate_name, Some(span));
1351    }
1352
1353    if let Input::File(ref path) = sess.io.input
1354        && let Some(file_stem) = path.file_stem().and_then(|s| s.to_str())
1355    {
1356        if file_stem.starts_with('-') {
1357            sess.dcx().emit_err(errors::CrateNameInvalid { crate_name: file_stem });
1358        } else {
1359            return validate(Symbol::intern(&file_stem.replace('-', "_")), None);
1360        }
1361    }
1362
1363    sym::rust_out
1364}
1365
1366pub(crate) fn parse_crate_name(
1367    sess: &Session,
1368    attrs: &[ast::Attribute],
1369    emit_errors: ShouldEmit,
1370) -> Option<(Symbol, Span)> {
1371    let rustc_hir::Attribute::Parsed(AttributeKind::CrateName { name, name_span, .. }) =
1372        AttributeParser::parse_limited_should_emit(
1373            sess,
1374            attrs,
1375            &[sym::crate_name],
1376            DUMMY_SP,
1377            rustc_ast::node_id::CRATE_NODE_ID,
1378            Target::Crate,
1379            None,
1380            emit_errors,
1381        )?
1382    else {
1383        {
    ::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");
1384    };
1385
1386    Some((name, name_span))
1387}
1388
1389pub fn collect_crate_types(
1390    session: &Session,
1391    backend_crate_types: &[CrateType],
1392    codegen_backend_name: &'static str,
1393    attrs: &[ast::Attribute],
1394    crate_span: Span,
1395) -> Vec<CrateType> {
1396    // If we're generating a test executable, then ignore all other output
1397    // styles at all other locations
1398    if session.opts.test {
1399        if !session.target.executables {
1400            session.dcx().emit_warn(errors::UnsupportedCrateTypeForTarget {
1401                crate_type: CrateType::Executable,
1402                target_triple: &session.opts.target_triple,
1403            });
1404            return Vec::new();
1405        }
1406        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];
1407    }
1408
1409    // Shadow `sdylib` crate type in interface build.
1410    if session.opts.unstable_opts.build_sdylib_interface {
1411        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];
1412    }
1413
1414    // Only check command line flags if present. If no types are specified by
1415    // command line, then reuse the empty `base` Vec to hold the types that
1416    // will be found in crate attributes.
1417    // JUSTIFICATION: before wrapper fn is available
1418    #[allow(rustc::bad_opt_access)]
1419    let mut base = session.opts.crate_types.clone();
1420    if base.is_empty() {
1421        if let Some(Attribute::Parsed(AttributeKind::CrateType(crate_type))) =
1422            AttributeParser::parse_limited_should_emit(
1423                session,
1424                attrs,
1425                &[sym::crate_type],
1426                crate_span,
1427                CRATE_NODE_ID,
1428                Target::Crate,
1429                None,
1430                ShouldEmit::EarlyFatal { also_emit_lints: false },
1431            )
1432        {
1433            base.extend(crate_type);
1434        }
1435
1436        if base.is_empty() {
1437            base.push(default_output_for_target(session));
1438        } else {
1439            base.sort();
1440            base.dedup();
1441        }
1442    }
1443
1444    base.retain(|crate_type| {
1445        if invalid_output_for_target(session, *crate_type) {
1446            session.dcx().emit_warn(errors::UnsupportedCrateTypeForTarget {
1447                crate_type: *crate_type,
1448                target_triple: &session.opts.target_triple,
1449            });
1450            false
1451        } else if !backend_crate_types.contains(crate_type) {
1452            session.dcx().emit_warn(errors::UnsupportedCrateTypeForCodegenBackend {
1453                crate_type: *crate_type,
1454                codegen_backend: codegen_backend_name,
1455            });
1456            false
1457        } else {
1458            true
1459        }
1460    });
1461
1462    base
1463}
1464
1465/// Returns default crate type for target
1466///
1467/// Default crate type is used when crate type isn't provided neither
1468/// through cmd line arguments nor through crate attributes
1469///
1470/// It is CrateType::Executable for all platforms but iOS as there is no
1471/// way to run iOS binaries anyway without jailbreaking and
1472/// interaction with Rust code through static library is the only
1473/// option for now
1474fn default_output_for_target(sess: &Session) -> CrateType {
1475    if !sess.target.executables { CrateType::StaticLib } else { CrateType::Executable }
1476}
1477
1478fn get_recursion_limit(krate_attrs: &[ast::Attribute], sess: &Session) -> Limit {
1479    let attr = AttributeParser::parse_limited_should_emit(
1480        sess,
1481        &krate_attrs,
1482        &[sym::recursion_limit],
1483        DUMMY_SP,
1484        rustc_ast::node_id::CRATE_NODE_ID,
1485        Target::Crate,
1486        None,
1487        // errors are fatal here, but lints aren't.
1488        // If things aren't fatal we continue, and will parse this again.
1489        // That makes the same lint trigger again.
1490        // So, no lints here to avoid duplicates.
1491        ShouldEmit::EarlyFatal { also_emit_lints: false },
1492    );
1493    crate::limits::get_recursion_limit(attr.as_slice(), sess)
1494}