]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/lib.rs
Directly use AttributeMap inside OwnerInfo.
[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(discriminant_kind)]
34 #![feature(exhaustive_patterns)]
35 #![feature(if_let_guard)]
36 #![feature(map_first_last)]
37 #![feature(never_type)]
38 #![feature(extern_types)]
39 #![feature(new_uninit)]
40 #![feature(nll)]
41 #![feature(once_cell)]
42 #![feature(min_specialization)]
43 #![feature(trusted_len)]
44 #![feature(in_band_lifetimes)]
45 #![feature(crate_visibility_modifier)]
46 #![feature(associated_type_bounds)]
47 #![feature(rustc_attrs)]
48 #![feature(half_open_range_patterns)]
49 #![feature(control_flow_enum)]
50 #![feature(associated_type_defaults)]
51 #![feature(iter_zip)]
52 #![feature(thread_local_const_init)]
53 #![feature(trusted_step)]
54 #![feature(try_blocks)]
55 #![feature(try_reserve_kind)]
56 #![feature(nonzero_ops)]
57 #![recursion_limit = "512"]
58
59 #[macro_use]
60 extern crate bitflags;
61 #[macro_use]
62 extern crate rustc_macros;
63 #[macro_use]
64 extern crate rustc_data_structures;
65 #[macro_use]
66 extern crate tracing;
67 #[macro_use]
68 extern crate smallvec;
69
70 #[cfg(test)]
71 mod tests;
72
73 #[macro_use]
74 mod macros;
75
76 #[macro_use]
77 pub mod query;
78
79 #[macro_use]
80 pub mod arena;
81 #[macro_use]
82 pub mod dep_graph;
83 pub mod hir;
84 pub mod infer;
85 pub mod lint;
86 pub mod middle;
87 pub mod mir;
88 pub mod thir;
89 pub mod traits;
90 pub mod ty;
91
92 pub mod util {
93     pub mod bug;
94     pub mod common;
95 }
96
97 // Allows macros to refer to this crate as `::rustc_middle`
98 extern crate self as rustc_middle;