2017-08-31 14:33:19 -04: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
|
|
|
|
//! on MIR are found in `librustc_mir` crate.
|
|
|
|
//! - **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 18:07:42 -03:00
|
|
|
//! For more information about how rustc works, see the [rustc dev guide].
|
2018-02-25 15:24:14 -06:00
|
|
|
//!
|
2020-03-09 18:33:04 -03:00
|
|
|
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/
|
2014-11-25 21:17:11 -05:00
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
2014-01-07 21:17:52 -08:00
|
|
|
|
2020-09-23 21:14:43 +02:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/")]
|
2020-09-17 09:28:14 +02:00
|
|
|
#![feature(array_windows)]
|
2020-04-30 18:24:43 +02:00
|
|
|
#![feature(backtrace)]
|
2019-10-08 01:14:42 +01:00
|
|
|
#![feature(bool_to_option)]
|
2015-02-10 22:52:44 +01:00
|
|
|
#![feature(box_patterns)]
|
2015-01-07 15:15:34 +01:00
|
|
|
#![feature(box_syntax)]
|
2020-07-05 14:29:30 -04:00
|
|
|
#![feature(cmp_min_max_by)]
|
2020-03-10 13:41:33 -07:00
|
|
|
#![feature(const_fn)]
|
|
|
|
#![feature(const_panic)]
|
2016-06-09 00:16:35 +03:00
|
|
|
#![feature(core_intrinsics)]
|
2020-04-05 20:36:39 +02:00
|
|
|
#![feature(discriminant_kind)]
|
2019-12-11 09:55:29 -05:00
|
|
|
#![feature(never_type)]
|
2018-05-02 08:02:57 +02:00
|
|
|
#![feature(extern_types)]
|
2018-09-26 14:26:46 -07:00
|
|
|
#![feature(nll)]
|
2020-08-29 19:16:49 +01:00
|
|
|
#![feature(once_cell)]
|
2019-10-20 12:06:03 +02:00
|
|
|
#![feature(option_expect_none)]
|
2020-02-17 15:36:36 -08:00
|
|
|
#![feature(or_patterns)]
|
2020-06-01 18:58:18 +01:00
|
|
|
#![feature(min_specialization)]
|
2018-02-16 19:20:18 +02:00
|
|
|
#![feature(trusted_len)]
|
2017-06-08 14:20:55 -07:00
|
|
|
#![feature(test)]
|
2018-05-24 14:11:56 +02:00
|
|
|
#![feature(in_band_lifetimes)]
|
2018-08-03 18:34:23 -06:00
|
|
|
#![feature(crate_visibility_modifier)]
|
2019-07-31 21:00:35 +02:00
|
|
|
#![feature(associated_type_bounds)]
|
2019-05-19 20:16:04 +02:00
|
|
|
#![feature(rustc_attrs)]
|
2019-12-12 21:18:21 -07:00
|
|
|
#![feature(int_error_matching)]
|
2019-12-22 17:42:04 -05:00
|
|
|
#![recursion_limit = "512"]
|
2017-04-28 12:09:15 -04:00
|
|
|
|
2019-12-22 17:42:04 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate bitflags;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_macros;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_data_structures;
|
|
|
|
#[macro_use]
|
2020-08-13 23:05:01 -07:00
|
|
|
extern crate tracing;
|
2019-12-22 17:42:04 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate smallvec;
|
2018-08-13 22:15:16 +03:00
|
|
|
|
2019-08-01 03:35:26 +03:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
|
2015-04-17 15:32:42 -07:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
2018-12-03 01:14:35 +01:00
|
|
|
#[macro_use]
|
|
|
|
pub mod query;
|
|
|
|
|
2019-03-29 17:49:11 +01:00
|
|
|
#[macro_use]
|
|
|
|
pub mod arena;
|
2016-01-05 13:02:57 -05:00
|
|
|
pub mod dep_graph;
|
2016-03-29 08:50:44 +03:00
|
|
|
pub mod hir;
|
2017-03-20 16:35:06 +01:00
|
|
|
pub mod ich;
|
2016-03-22 17:30:57 +02:00
|
|
|
pub mod infer;
|
|
|
|
pub mod lint;
|
2019-12-29 11:57:30 +01:00
|
|
|
pub mod middle;
|
2016-09-19 23:50:00 +03:00
|
|
|
pub mod mir;
|
2016-03-22 17:30:57 +02:00
|
|
|
pub mod traits;
|
|
|
|
pub mod ty;
|
2014-06-01 15:58:06 -07:00
|
|
|
|
2013-01-29 15:16:07 -08:00
|
|
|
pub mod util {
|
2019-12-22 17:42:04 -05:00
|
|
|
pub mod bug;
|
2013-01-29 15:16:07 -08:00
|
|
|
pub mod common;
|
2010-08-18 11:34:47 -07:00
|
|
|
}
|
|
|
|
|
2020-03-29 18:08:01 +02:00
|
|
|
// Allows macros to refer to this crate as `::rustc_middle`
|
2020-03-29 16:41:09 +02:00
|
|
|
extern crate self as rustc_middle;
|