7e2ecb3cd8
This makes it easier to open the messages file while developing on features. The commit was the result of automatted changes: for p in compiler/rustc_*; do mv $p/locales/en-US.ftl $p/messages.ftl; rmdir $p/locales; done for p in compiler/rustc_*; do sed -i "s#\.\./locales/en-US.ftl#../messages.ftl#" $p/src/lib.rs; done
68 lines
2.1 KiB
Rust
68 lines
2.1 KiB
Rust
/*!
|
|
|
|
Rust MIR: a lowered representation of Rust.
|
|
|
|
*/
|
|
|
|
#![feature(assert_matches)]
|
|
#![feature(box_patterns)]
|
|
#![feature(decl_macro)]
|
|
#![feature(exact_size_is_empty)]
|
|
#![feature(let_chains)]
|
|
#![feature(map_try_insert)]
|
|
#![feature(min_specialization)]
|
|
#![feature(slice_ptr_get)]
|
|
#![feature(option_get_or_insert_default)]
|
|
#![feature(never_type)]
|
|
#![feature(trait_alias)]
|
|
#![feature(trusted_len)]
|
|
#![feature(trusted_step)]
|
|
#![feature(try_blocks)]
|
|
#![feature(yeet_expr)]
|
|
#![feature(if_let_guard)]
|
|
#![feature(is_some_and)]
|
|
#![recursion_limit = "256"]
|
|
|
|
#[macro_use]
|
|
extern crate tracing;
|
|
#[macro_use]
|
|
extern crate rustc_middle;
|
|
|
|
pub mod const_eval;
|
|
mod errors;
|
|
pub mod interpret;
|
|
pub mod transform;
|
|
pub mod util;
|
|
|
|
use rustc_errors::{DiagnosticMessage, SubdiagnosticMessage};
|
|
use rustc_macros::fluent_messages;
|
|
use rustc_middle::ty;
|
|
use rustc_middle::ty::query::Providers;
|
|
|
|
fluent_messages! { "../messages.ftl" }
|
|
|
|
pub fn provide(providers: &mut Providers) {
|
|
const_eval::provide(providers);
|
|
providers.eval_to_const_value_raw = const_eval::eval_to_const_value_raw_provider;
|
|
providers.eval_to_allocation_raw = const_eval::eval_to_allocation_raw_provider;
|
|
providers.const_caller_location = const_eval::const_caller_location;
|
|
providers.eval_to_valtree = |tcx, param_env_and_value| {
|
|
let (param_env, raw) = param_env_and_value.into_parts();
|
|
const_eval::eval_to_valtree(tcx, param_env, raw)
|
|
};
|
|
providers.try_destructure_mir_constant = |tcx, param_env_and_value| {
|
|
let (param_env, value) = param_env_and_value.into_parts();
|
|
const_eval::try_destructure_mir_constant(tcx, param_env, value).ok()
|
|
};
|
|
providers.valtree_to_const_val = |tcx, (ty, valtree)| {
|
|
const_eval::valtree_to_const_value(tcx, ty::ParamEnv::empty().and(ty), valtree)
|
|
};
|
|
providers.deref_mir_constant = |tcx, param_env_and_value| {
|
|
let (param_env, value) = param_env_and_value.into_parts();
|
|
const_eval::deref_mir_constant(tcx, param_env, value)
|
|
};
|
|
providers.check_validity_requirement = |tcx, (init_kind, param_env_and_ty)| {
|
|
util::check_validity_requirement(tcx, init_kind, param_env_and_ty)
|
|
};
|
|
}
|