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.
|
|
|
|
//! - **Traits.** Trait resolution is implemented in the `traits` module.
|
|
|
|
//! - **Type inference.** The type inference code can be found in the `infer` module;
|
|
|
|
//! this code handles low-level equality and subtyping operations. The
|
|
|
|
//! type check pass in the compiler is found in the `librustc_typeck` crate.
|
|
|
|
//!
|
2018-02-25 15:24:14 -06:00
|
|
|
//! For more information about how rustc works, see the [rustc guide].
|
|
|
|
//!
|
2018-11-26 15:03:13 -06:00
|
|
|
//! [rustc guide]: https://rust-lang.github.io/rustc-guide/
|
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
|
|
|
|
2019-02-05 14:37:15 +01:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2011-05-05 22:44:00 -04:00
|
|
|
|
2018-12-10 16:10:22 +02:00
|
|
|
#![feature(arbitrary_self_types)]
|
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)]
|
2019-06-12 09:41:00 +03:00
|
|
|
#![feature(const_fn)]
|
|
|
|
#![feature(const_transmute)]
|
2016-06-09 00:16:35 +03:00
|
|
|
#![feature(core_intrinsics)]
|
2017-12-06 09:25:29 +01:00
|
|
|
#![feature(drain_filter)]
|
2017-08-14 09:26:14 +09:00
|
|
|
#![cfg_attr(windows, feature(libc))]
|
2019-10-13 01:50:03 +02:00
|
|
|
#![cfg_attr(bootstrap, feature(never_type))]
|
2018-01-21 16:44:41 +08:00
|
|
|
#![feature(exhaustive_patterns)]
|
2019-03-30 01:36:51 +01:00
|
|
|
#![feature(overlapping_marker_traits)]
|
2018-05-02 08:02:57 +02:00
|
|
|
#![feature(extern_types)]
|
2018-09-26 14:26:46 -07:00
|
|
|
#![feature(nll)]
|
2018-04-11 23:02:41 +02:00
|
|
|
#![feature(optin_builtin_traits)]
|
2019-10-20 12:06:03 +02:00
|
|
|
#![feature(option_expect_none)]
|
2019-03-21 12:37:31 +00:00
|
|
|
#![feature(range_is_empty)]
|
2015-04-28 16:36:22 -07:00
|
|
|
#![feature(slice_patterns)]
|
2017-02-11 19:26:13 +02:00
|
|
|
#![feature(specialization)]
|
2016-11-03 22:19:33 +02:00
|
|
|
#![feature(unboxed_closures)]
|
2018-12-04 16:26:34 +01:00
|
|
|
#![feature(thread_local)]
|
2017-04-28 12:09:15 -04:00
|
|
|
#![feature(trace_macros)]
|
2018-02-16 19:20:18 +02:00
|
|
|
#![feature(trusted_len)]
|
2018-04-06 12:56:59 +02:00
|
|
|
#![feature(vec_remove_item)]
|
2018-12-04 16:26:34 +01:00
|
|
|
#![feature(stmt_expr_attributes)]
|
2018-05-25 17:19:31 +02:00
|
|
|
#![feature(integer_atomics)]
|
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)]
|
2018-12-03 01:14:35 +01:00
|
|
|
#![feature(log_syntax)]
|
2019-07-31 21:00:35 +02:00
|
|
|
#![feature(associated_type_bounds)]
|
2019-05-19 20:16:04 +02:00
|
|
|
#![feature(rustc_attrs)]
|
2019-11-01 08:52:14 +11:00
|
|
|
#![feature(hash_raw_entry)]
|
2017-04-28 12:09:15 -04:00
|
|
|
|
2017-12-06 09:25:29 +01:00
|
|
|
#![recursion_limit="512"]
|
2015-03-06 15:11:59 -08:00
|
|
|
|
2017-09-08 15:08:01 -04:00
|
|
|
#[macro_use] extern crate bitflags;
|
2018-04-06 12:56:59 +02:00
|
|
|
#[macro_use] extern crate scoped_tls;
|
2017-08-14 09:26:14 +09:00
|
|
|
#[cfg(windows)]
|
|
|
|
extern crate libc;
|
2018-12-03 01:14:35 +01:00
|
|
|
#[macro_use] extern crate rustc_macros;
|
2017-12-06 09:25:29 +01:00
|
|
|
#[macro_use] extern crate rustc_data_structures;
|
2015-01-06 09:24:46 -08:00
|
|
|
#[macro_use] extern crate log;
|
|
|
|
#[macro_use] extern crate syntax;
|
2019-02-05 11:20:45 -06: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;
|
|
|
|
|
2013-01-29 15:16:07 -08:00
|
|
|
pub mod middle {
|
2015-11-25 00:00:26 +02:00
|
|
|
pub mod cstore;
|
2014-07-13 15:12:47 +02:00
|
|
|
pub mod dependency_format;
|
2019-05-19 20:16:04 +02:00
|
|
|
pub mod diagnostic_items;
|
2017-09-12 09:32:37 -07:00
|
|
|
pub mod exported_symbols;
|
2015-04-18 11:23:14 -04:00
|
|
|
pub mod free_region;
|
2018-07-23 01:20:33 +01:00
|
|
|
pub mod lib_features;
|
2013-01-29 15:16:07 -08:00
|
|
|
pub mod lang_items;
|
|
|
|
pub mod privacy;
|
2013-06-14 18:21:47 -07:00
|
|
|
pub mod reachable;
|
2014-07-13 15:12:47 +02:00
|
|
|
pub mod region;
|
2014-12-02 12:57:38 -05:00
|
|
|
pub mod recursion_limit;
|
2014-07-13 15:12:47 +02:00
|
|
|
pub mod resolve_lifetime;
|
Add stability inheritance
This commit makes several changes to the stability index infrastructure:
* Stability levels are now inherited lexically, i.e., each item's
stability level becomes the default for any nested items.
* The computed stability level for an item is stored as part of the
metadata. When using an item from an external crate, this data is
looked up and cached.
* The stability lint works from the computed stability level, rather
than manual stability attribute annotations. However, the lint still
checks only a limited set of item uses (e.g., it does not check every
component of a path on import). This will be addressed in a later PR,
as part of issue #8962.
* The stability lint only applies to items originating from external
crates, since the stability index is intended as a promise to
downstream crates.
* The "experimental" lint is now _allow_ by default. This is because
almost all existing crates have been marked "experimental", pending
library stabilization. With inheritance in place, this would generate
a massive explosion of warnings for every Rust program.
The lint should be changed back to deny-by-default after library
stabilization is complete.
* The "deprecated" lint still warns by default.
The net result: we can begin tracking stability index for the standard
libraries as we stabilize, without impacting most clients.
Closes #13540.
2014-06-11 17:23:11 -07:00
|
|
|
pub mod stability;
|
2014-07-13 15:12:47 +02:00
|
|
|
pub mod weak_lang_items;
|
2011-04-19 16:40:46 -07:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:50:00 +03:00
|
|
|
pub mod mir;
|
2019-11-29 16:05:28 -05:00
|
|
|
pub use rustc_session as session;
|
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 {
|
2018-03-15 16:17:27 -04:00
|
|
|
pub mod captures;
|
2013-01-29 15:16:07 -08:00
|
|
|
pub mod common;
|
2014-02-28 14:34:26 -08:00
|
|
|
pub mod nodemap;
|
2018-08-04 06:51:33 -06:00
|
|
|
pub mod bug;
|
2010-08-18 11:34:47 -07:00
|
|
|
}
|
|
|
|
|
2019-03-05 19:27:50 +01:00
|
|
|
// Allows macros to refer to this crate as `::rustc`
|
|
|
|
extern crate self as rustc;
|