]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/lib.rs
e85cb413deb2ae6060174ba282a9d2c9393d5c65
[rust.git] / compiler / rustc_middle / src / lib.rs
1 //! The "main crate" of the Rust compiler. This crate contains common
2 //! type definitions that are used by the other crates in the rustc
3 //! "family". Some prominent examples (note that each of these modules
4 //! has their own README with further details).
5 //!
6 //! - **HIR.** The "high-level (H) intermediate representation (IR)" is
7 //!   defined in the `hir` module.
8 //! - **MIR.** The "mid-level (M) intermediate representation (IR)" is
9 //!   defined in the `mir` module. This module contains only the
10 //!   *definition* of the MIR; the passes that transform and operate
11 //!   on MIR are found in `rustc_const_eval` crate.
12 //! - **Types.** The internal representation of types used in rustc is
13 //!   defined in the `ty` module. This includes the **type context**
14 //!   (or `tcx`), which is the central context during most of
15 //!   compilation, containing the interners and other things.
16 //!
17 //! For more information about how rustc works, see the [rustc dev guide].
18 //!
19 //! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/
20 //!
21 //! # Note
22 //!
23 //! This API is completely unstable and subject to change.
24
25 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
26 #![feature(allocator_api)]
27 #![feature(array_windows)]
28 #![feature(assert_matches)]
29 #![feature(backtrace)]
30 #![feature(bool_to_option)]
31 #![feature(box_patterns)]
32 #![feature(core_intrinsics)]
33 #![feature(derive_default_enum)]
34 #![feature(discriminant_kind)]
35 #![feature(exhaustive_patterns)]
36 #![feature(get_mut_unchecked)]
37 #![feature(if_let_guard)]
38 #![feature(map_first_last)]
39 #![feature(never_type)]
40 #![feature(extern_types)]
41 #![feature(new_uninit)]
42 #![feature(nll)]
43 #![feature(once_cell)]
44 #![feature(let_else)]
45 #![feature(min_specialization)]
46 #![feature(trusted_len)]
47 #![feature(crate_visibility_modifier)]
48 #![feature(associated_type_bounds)]
49 #![feature(rustc_attrs)]
50 #![feature(half_open_range_patterns)]
51 #![feature(control_flow_enum)]
52 #![feature(associated_type_defaults)]
53 #![feature(trusted_step)]
54 #![feature(try_blocks)]
55 #![feature(try_reserve_kind)]
56 #![feature(nonzero_ops)]
57 #![feature(unwrap_infallible)]
58 #![recursion_limit = "512"]
59 #![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
60
61 #[macro_use]
62 extern crate bitflags;
63 #[macro_use]
64 extern crate rustc_macros;
65 #[macro_use]
66 extern crate rustc_data_structures;
67 #[macro_use]
68 extern crate tracing;
69 #[macro_use]
70 extern crate smallvec;
71
72 #[cfg(test)]
73 mod tests;
74
75 #[macro_use]
76 mod macros;
77
78 #[macro_use]
79 pub mod query;
80
81 #[macro_use]
82 pub mod arena;
83 #[macro_use]
84 pub mod dep_graph;
85 pub mod hir;
86 pub mod infer;
87 pub mod lint;
88 pub mod metadata;
89 pub mod middle;
90 pub mod mir;
91 pub mod thir;
92 pub mod traits;
93 pub mod ty;
94
95 pub mod util {
96     pub mod bug;
97     pub mod common;
98 }
99
100 // Allows macros to refer to this crate as `::rustc_middle`
101 extern crate self as rustc_middle;