]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_const_eval/src/lib.rs
Rollup merge of #101655 - dns2utf8:box_docs, r=dtolnay
[rust.git] / compiler / rustc_const_eval / src / lib.rs
1 /*!
2
3 Rust MIR: a lowered representation of Rust.
4
5 */
6
7 #![feature(assert_matches)]
8 #![feature(box_patterns)]
9 #![feature(control_flow_enum)]
10 #![feature(decl_macro)]
11 #![feature(exact_size_is_empty)]
12 #![feature(let_chains)]
13 #![feature(map_try_insert)]
14 #![feature(min_specialization)]
15 #![feature(slice_ptr_get)]
16 #![feature(option_get_or_insert_default)]
17 #![feature(never_type)]
18 #![feature(trait_alias)]
19 #![feature(trusted_len)]
20 #![feature(trusted_step)]
21 #![feature(try_blocks)]
22 #![feature(yeet_expr)]
23 #![feature(is_some_and)]
24 #![recursion_limit = "256"]
25
26 #[macro_use]
27 extern crate tracing;
28 #[macro_use]
29 extern crate rustc_middle;
30
31 pub mod const_eval;
32 mod errors;
33 pub mod interpret;
34 pub mod transform;
35 pub mod util;
36
37 use rustc_middle::ty;
38 use rustc_middle::ty::query::Providers;
39 use rustc_target::abi::InitKind;
40
41 pub fn provide(providers: &mut Providers) {
42     const_eval::provide(providers);
43     providers.eval_to_const_value_raw = const_eval::eval_to_const_value_raw_provider;
44     providers.eval_to_allocation_raw = const_eval::eval_to_allocation_raw_provider;
45     providers.const_caller_location = const_eval::const_caller_location;
46     providers.eval_to_valtree = |tcx, param_env_and_value| {
47         let (param_env, raw) = param_env_and_value.into_parts();
48         const_eval::eval_to_valtree(tcx, param_env, raw)
49     };
50     providers.try_destructure_mir_constant = |tcx, param_env_and_value| {
51         let (param_env, value) = param_env_and_value.into_parts();
52         const_eval::try_destructure_mir_constant(tcx, param_env, value).ok()
53     };
54     providers.valtree_to_const_val = |tcx, (ty, valtree)| {
55         const_eval::valtree_to_const_value(tcx, ty::ParamEnv::empty().and(ty), valtree)
56     };
57     providers.deref_mir_constant = |tcx, param_env_and_value| {
58         let (param_env, value) = param_env_and_value.into_parts();
59         const_eval::deref_mir_constant(tcx, param_env, value)
60     };
61     providers.permits_uninit_init =
62         |tcx, ty| util::might_permit_raw_init(tcx, ty, InitKind::UninitMitigated0x01Fill);
63     providers.permits_zero_init = |tcx, ty| util::might_permit_raw_init(tcx, ty, InitKind::Zero);
64 }