68 lines
1.9 KiB
Rust
Raw Normal View History

2015-08-18 17:59:21 -04:00
/*!
2020-02-21 11:03:21 -03:00
Rust MIR: a lowered representation of Rust.
2015-08-18 17:59:21 -04:00
*/
2019-02-08 19:56:52 +09:00
#![feature(nll)]
#![feature(in_band_lifetimes)]
2019-10-08 01:14:42 +01:00
#![feature(bool_to_option)]
2016-02-11 18:05:28 +02:00
#![feature(box_patterns)]
#![feature(box_syntax)]
#![feature(const_fn)]
2020-03-22 12:09:40 -07:00
#![feature(const_if_match)]
#![feature(const_loop)]
#![feature(const_panic)]
#![feature(crate_visibility_modifier)]
#![feature(decl_macro)]
2019-10-16 18:01:01 -07:00
#![feature(drain_filter)]
#![feature(exhaustive_patterns)]
#![feature(iter_order_by)]
#![feature(never_type)]
#![feature(specialization)]
#![feature(trusted_len)]
2019-02-08 20:08:08 +09:00
#![feature(try_blocks)]
#![feature(associated_type_bounds)]
2020-03-22 12:09:40 -07:00
#![feature(associated_type_defaults)]
2019-09-17 16:25:29 -07:00
#![feature(range_is_empty)]
#![feature(stmt_expr_attributes)]
2019-11-24 19:09:58 -05:00
#![feature(trait_alias)]
#![feature(option_expect_none)]
#![feature(or_patterns)]
2019-12-22 17:42:04 -05:00
#![recursion_limit = "256"]
2015-08-18 17:59:21 -04:00
2019-12-22 17:42:04 -05:00
#[macro_use]
extern crate log;
#[macro_use]
2020-03-29 16:41:09 +02:00
extern crate rustc_middle;
2015-08-18 17:59:21 -04:00
mod borrow_check;
2019-12-22 17:42:04 -05:00
pub mod const_eval;
2019-09-06 14:31:09 +09:00
pub mod dataflow;
2019-12-22 17:42:04 -05:00
pub mod interpret;
pub mod monomorphize;
mod shim;
pub mod transform;
pub mod util;
2020-03-29 16:41:09 +02:00
use rustc_middle::ty::query::Providers;
2019-02-08 06:28:15 +09:00
pub fn provide(providers: &mut Providers<'_>) {
borrow_check::provide(providers);
const_eval::provide(providers);
shim::provide(providers);
transform::provide(providers);
monomorphize::partitioning::provide(providers);
providers.const_eval_validated = const_eval::const_eval_validated_provider;
providers.const_eval_raw = const_eval::const_eval_raw_provider;
providers.const_caller_location = const_eval::const_caller_location;
2019-05-24 14:58:37 -05:00
providers.const_field = |tcx, param_env_and_value| {
let (param_env, (value, field)) = param_env_and_value.into_parts();
const_eval::const_field(tcx, param_env, None, field, value)
};
providers.destructure_const = |tcx, param_env_and_value| {
let (param_env, value) = param_env_and_value.into_parts();
const_eval::destructure_const(tcx, param_env, value)
};
}