]> git.lizzy.rs Git - rust.git/blob - src/librustc_middle/lib.rs
Rollup merge of #73269 - mzohreva:mz/sgx-wait-timeout, r=jethrogb
[rust.git] / src / librustc_middle / 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 `librustc_mir` 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/")]
26 #![feature(backtrace)]
27 #![feature(bool_to_option)]
28 #![feature(box_patterns)]
29 #![feature(box_syntax)]
30 #![cfg_attr(bootstrap, feature(const_if_match))]
31 #![feature(const_fn)]
32 #![feature(const_panic)]
33 #![cfg_attr(not(bootstrap), feature(const_fn_transmute))]
34 #![feature(core_intrinsics)]
35 #![feature(discriminant_kind)]
36 #![feature(drain_filter)]
37 #![feature(never_type)]
38 #![feature(exhaustive_patterns)]
39 #![feature(extern_types)]
40 #![feature(nll)]
41 #![feature(option_expect_none)]
42 #![feature(or_patterns)]
43 #![feature(range_is_empty)]
44 #![feature(min_specialization)]
45 #![cfg_attr(bootstrap, feature(track_caller))]
46 #![feature(trusted_len)]
47 #![feature(stmt_expr_attributes)]
48 #![feature(test)]
49 #![feature(in_band_lifetimes)]
50 #![feature(crate_visibility_modifier)]
51 #![feature(associated_type_bounds)]
52 #![feature(rustc_attrs)]
53 #![feature(hash_raw_entry)]
54 #![feature(int_error_matching)]
55 #![recursion_limit = "512"]
56
57 #[macro_use]
58 extern crate bitflags;
59 #[macro_use]
60 extern crate scoped_tls;
61 #[macro_use]
62 extern crate rustc_macros;
63 #[macro_use]
64 extern crate rustc_data_structures;
65 #[macro_use]
66 extern crate log;
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 pub mod dep_graph;
82 pub mod hir;
83 pub mod ich;
84 pub mod infer;
85 pub mod lint;
86 pub mod middle;
87 pub mod mir;
88 pub mod traits;
89 pub mod ty;
90
91 pub mod util {
92     pub mod bug;
93     pub mod common;
94 }
95
96 // Allows macros to refer to this crate as `::rustc_middle`
97 extern crate self as rustc_middle;