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
|
|
|
|
//! 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 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
|
|
|
|
2019-02-05 13:37:15 +00:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2020-04-30 16:24:43 +00:00
|
|
|
#![feature(backtrace)]
|
2019-10-08 00:14:42 +00:00
|
|
|
#![feature(bool_to_option)]
|
2015-02-10 21:52:44 +00:00
|
|
|
#![feature(box_patterns)]
|
2015-01-07 14:15:34 +00:00
|
|
|
#![feature(box_syntax)]
|
2020-03-10 20:41:33 +00:00
|
|
|
#![feature(const_if_match)]
|
|
|
|
#![feature(const_fn)]
|
|
|
|
#![feature(const_panic)]
|
2019-06-12 06:41:00 +00:00
|
|
|
#![feature(const_transmute)]
|
2016-06-08 21:16:35 +00:00
|
|
|
#![feature(core_intrinsics)]
|
2017-12-06 08:25:29 +00:00
|
|
|
#![feature(drain_filter)]
|
2019-12-11 14:55:29 +00:00
|
|
|
#![feature(never_type)]
|
2018-01-21 08:44:41 +00:00
|
|
|
#![feature(exhaustive_patterns)]
|
2020-01-25 20:30:19 +00:00
|
|
|
#![feature(marker_trait_attr)]
|
2018-05-02 06:02:57 +00:00
|
|
|
#![feature(extern_types)]
|
2018-09-26 21:26:46 +00:00
|
|
|
#![feature(nll)]
|
2019-10-20 10:06:03 +00:00
|
|
|
#![feature(option_expect_none)]
|
2020-02-17 23:36:36 +00:00
|
|
|
#![feature(or_patterns)]
|
2019-03-21 12:37:31 +00:00
|
|
|
#![feature(range_is_empty)]
|
2020-05-09 11:59:21 +00:00
|
|
|
#![feature(specialization)] // FIXME: min_specialization does not work
|
2020-04-24 15:33:25 +00:00
|
|
|
#![feature(track_caller)]
|
2018-02-16 17:20:18 +00:00
|
|
|
#![feature(trusted_len)]
|
2020-01-10 10:34:35 +00:00
|
|
|
#![feature(vec_remove_item)]
|
2018-12-04 15:26:34 +00:00
|
|
|
#![feature(stmt_expr_attributes)]
|
2017-06-08 21:20:55 +00:00
|
|
|
#![feature(test)]
|
2018-05-24 12:11:56 +00:00
|
|
|
#![feature(in_band_lifetimes)]
|
2018-08-04 00:34:23 +00:00
|
|
|
#![feature(crate_visibility_modifier)]
|
2019-07-31 19:00:35 +00:00
|
|
|
#![feature(associated_type_bounds)]
|
2019-05-19 18:16:04 +00:00
|
|
|
#![feature(rustc_attrs)]
|
2019-10-31 21:52:14 +00:00
|
|
|
#![feature(hash_raw_entry)]
|
2019-12-13 04:18:21 +00:00
|
|
|
#![feature(int_error_matching)]
|
2019-12-22 22:42:04 +00:00
|
|
|
#![recursion_limit = "512"]
|
2017-04-28 16:09:15 +00:00
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate bitflags;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate scoped_tls;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_macros;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_data_structures;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
|
|
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;
|
2016-01-05 18:02:57 +00:00
|
|
|
pub mod dep_graph;
|
2016-03-29 05:50:44 +00:00
|
|
|
pub mod hir;
|
2017-03-20 15:35:06 +00:00
|
|
|
pub mod ich;
|
2016-03-22 15:30:57 +00:00
|
|
|
pub mod infer;
|
|
|
|
pub mod lint;
|
2019-12-29 10:57:30 +00:00
|
|
|
pub mod middle;
|
2016-09-19 20:50:00 +00:00
|
|
|
pub mod mir;
|
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 {
|
2019-12-22 22:42:04 +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;
|