2017-08-31 18:33:19 +00:00
|
|
|
//! The "main crate" of the Rust compiler. This crate contains common
|
|
|
|
//! type definitions that are used by the other crates in the rustc
|
|
|
|
//! "family". Some prominent examples (note that each of these modules
|
|
|
|
//! has their own README with further details).
|
|
|
|
//!
|
|
|
|
//! - **HIR.** The "high-level (H) intermediate representation (IR)" is
|
|
|
|
//! defined in the `hir` module.
|
|
|
|
//! - **MIR.** The "mid-level (M) intermediate representation (IR)" is
|
|
|
|
//! defined in the `mir` module. This module contains only the
|
|
|
|
//! *definition* of the MIR; the passes that transform and operate
|
2021-01-05 19:08:11 +00:00
|
|
|
//! on MIR are found in `rustc_const_eval` crate.
|
2017-08-31 18:33:19 +00:00
|
|
|
//! - **Types.** The internal representation of types used in rustc is
|
|
|
|
//! defined in the `ty` module. This includes the **type context**
|
|
|
|
//! (or `tcx`), which is the central context during most of
|
|
|
|
//! compilation, containing the interners and other things.
|
|
|
|
//!
|
2020-03-05 21:07:42 +00:00
|
|
|
//! For more information about how rustc works, see the [rustc dev guide].
|
2018-02-25 21:24:14 +00:00
|
|
|
//!
|
2020-03-09 21:33:04 +00:00
|
|
|
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/
|
2014-11-26 02:17:11 +00:00
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
2014-01-08 05:17:52 +00:00
|
|
|
|
2020-09-23 19:51:56 +00:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
2021-08-04 22:24:31 +00:00
|
|
|
#![feature(allocator_api)]
|
2020-09-17 07:28:14 +00:00
|
|
|
#![feature(array_windows)]
|
2021-03-04 12:06:01 +00:00
|
|
|
#![feature(assert_matches)]
|
2015-02-10 21:52:44 +00:00
|
|
|
#![feature(box_patterns)]
|
2016-06-08 21:16:35 +00:00
|
|
|
#![feature(core_intrinsics)]
|
2020-04-05 18:36:39 +00:00
|
|
|
#![feature(discriminant_kind)]
|
2021-08-30 14:38:27 +00:00
|
|
|
#![feature(exhaustive_patterns)]
|
2021-11-29 12:55:00 +00:00
|
|
|
#![feature(get_mut_unchecked)]
|
2022-05-22 19:34:34 +00:00
|
|
|
#![feature(generic_associated_types)]
|
2021-08-16 15:29:49 +00:00
|
|
|
#![feature(if_let_guard)]
|
2021-07-18 16:12:17 +00:00
|
|
|
#![feature(map_first_last)]
|
2022-05-10 02:48:43 +00:00
|
|
|
#![feature(negative_impls)]
|
2019-12-11 14:55:29 +00:00
|
|
|
#![feature(never_type)]
|
2018-05-02 06:02:57 +00:00
|
|
|
#![feature(extern_types)]
|
2021-08-04 22:24:31 +00:00
|
|
|
#![feature(new_uninit)]
|
2020-08-29 18:16:49 +00:00
|
|
|
#![feature(once_cell)]
|
2022-08-20 18:40:08 +00:00
|
|
|
#![feature(let_chains)]
|
2021-10-16 01:45:14 +00:00
|
|
|
#![feature(let_else)]
|
2020-06-01 17:58:18 +00:00
|
|
|
#![feature(min_specialization)]
|
2018-02-16 17:20:18 +00:00
|
|
|
#![feature(trusted_len)]
|
2022-03-08 14:39:52 +00:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2019-07-31 19:00:35 +00:00
|
|
|
#![feature(associated_type_bounds)]
|
2019-05-19 18:16:04 +00:00
|
|
|
#![feature(rustc_attrs)]
|
2020-10-22 18:42:44 +00:00
|
|
|
#![feature(half_open_range_patterns)]
|
2020-10-21 12:22:44 +00:00
|
|
|
#![feature(control_flow_enum)]
|
2020-11-05 16:30:39 +00:00
|
|
|
#![feature(associated_type_defaults)]
|
2021-01-05 18:53:07 +00:00
|
|
|
#![feature(trusted_step)]
|
|
|
|
#![feature(try_blocks)]
|
2021-07-23 15:40:43 +00:00
|
|
|
#![feature(try_reserve_kind)]
|
2021-07-13 06:58:59 +00:00
|
|
|
#![feature(nonzero_ops)]
|
2021-05-19 13:03:43 +00:00
|
|
|
#![feature(unwrap_infallible)]
|
2022-02-16 18:04:48 +00:00
|
|
|
#![feature(decl_macro)]
|
2022-02-25 16:01:44 +00:00
|
|
|
#![feature(drain_filter)]
|
2022-03-25 02:29:33 +00:00
|
|
|
#![feature(intra_doc_pointers)]
|
2022-05-29 08:19:52 +00:00
|
|
|
#![feature(yeet_expr)]
|
2022-07-03 15:17:23 +00:00
|
|
|
#![feature(const_option)]
|
2017-12-06 08:25:29 +00:00
|
|
|
#![recursion_limit = "512"]
|
2022-02-23 13:06:22 +00:00
|
|
|
#![allow(rustc::potential_query_instability)]
|
2017-04-28 16:09:15 +00:00
|
|
|
|
2017-09-08 19:08:01 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate bitflags;
|
2018-04-06 10:56:59 +00:00
|
|
|
#[macro_use]
|
2018-12-03 00:14:35 +00:00
|
|
|
extern crate rustc_macros;
|
2017-12-06 08:25:29 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_data_structures;
|
2015-01-06 17:24:46 +00:00
|
|
|
#[macro_use]
|
2020-08-14 06:05:01 +00:00
|
|
|
extern crate tracing;
|
2015-01-06 17:24:46 +00:00
|
|
|
#[macro_use]
|
2019-02-05 17:20:45 +00:00
|
|
|
extern crate smallvec;
|
2018-08-13 19:15:16 +00:00
|
|
|
|
2019-08-01 00:35:26 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
|
2015-04-17 22:32:42 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
2018-12-03 00:14:35 +00:00
|
|
|
#[macro_use]
|
|
|
|
pub mod query;
|
|
|
|
|
2019-03-29 16:49:11 +00:00
|
|
|
#[macro_use]
|
|
|
|
pub mod arena;
|
2021-01-19 18:07:06 +00:00
|
|
|
#[macro_use]
|
2016-01-05 18:02:57 +00:00
|
|
|
pub mod dep_graph;
|
2016-03-29 05:50:44 +00:00
|
|
|
pub mod hir;
|
2016-03-22 15:30:57 +00:00
|
|
|
pub mod infer;
|
|
|
|
pub mod lint;
|
2021-12-21 03:24:43 +00:00
|
|
|
pub mod metadata;
|
2019-12-29 10:57:30 +00:00
|
|
|
pub mod middle;
|
2016-09-19 20:50:00 +00:00
|
|
|
pub mod mir;
|
2021-04-04 00:24:02 +00:00
|
|
|
pub mod thir;
|
2016-03-22 15:30:57 +00:00
|
|
|
pub mod traits;
|
|
|
|
pub mod ty;
|
2014-06-01 22:58:06 +00:00
|
|
|
|
2013-01-29 23:16:07 +00:00
|
|
|
pub mod util {
|
2018-08-04 12:51:33 +00:00
|
|
|
pub mod bug;
|
2013-01-29 23:16:07 +00:00
|
|
|
pub mod common;
|
2010-08-18 18:34:47 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 16:08:01 +00:00
|
|
|
// Allows macros to refer to this crate as `::rustc_middle`
|
2020-03-29 14:41:09 +00:00
|
|
|
extern crate self as rustc_middle;
|