]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Rollup merge of #68072 - JohnTitor:fix-macro-ice, r=petrochenkov
[rust.git] / src / librustc / 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 //! - **Traits.** Trait resolution is implemented in the `traits` module.
17 //! - **Type inference.** The type inference code can be found in the `infer` module;
18 //!   this code handles low-level equality and subtyping operations. The
19 //!   type check pass in the compiler is found in the `librustc_typeck` crate.
20 //!
21 //! For more information about how rustc works, see the [rustc guide].
22 //!
23 //! [rustc guide]: https://rust-lang.github.io/rustc-guide/
24 //!
25 //! # Note
26 //!
27 //! This API is completely unstable and subject to change.
28
29 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
30 #![feature(arbitrary_self_types)]
31 #![feature(bool_to_option)]
32 #![feature(box_patterns)]
33 #![feature(box_syntax)]
34 #![feature(const_fn)]
35 #![feature(const_transmute)]
36 #![feature(core_intrinsics)]
37 #![feature(drain_filter)]
38 #![cfg_attr(windows, feature(libc))]
39 #![feature(never_type)]
40 #![feature(exhaustive_patterns)]
41 #![feature(overlapping_marker_traits)]
42 #![feature(extern_types)]
43 #![feature(nll)]
44 #![feature(optin_builtin_traits)]
45 #![feature(option_expect_none)]
46 #![feature(range_is_empty)]
47 #![feature(slice_patterns)]
48 #![feature(specialization)]
49 #![feature(unboxed_closures)]
50 #![feature(thread_local)]
51 #![feature(trace_macros)]
52 #![feature(trusted_len)]
53 #![feature(stmt_expr_attributes)]
54 #![feature(integer_atomics)]
55 #![feature(test)]
56 #![feature(in_band_lifetimes)]
57 #![feature(crate_visibility_modifier)]
58 #![feature(log_syntax)]
59 #![feature(associated_type_bounds)]
60 #![feature(rustc_attrs)]
61 #![feature(hash_raw_entry)]
62 #![recursion_limit = "512"]
63
64 #[macro_use]
65 extern crate bitflags;
66 #[macro_use]
67 extern crate scoped_tls;
68 #[macro_use]
69 extern crate rustc_macros;
70 #[macro_use]
71 extern crate rustc_data_structures;
72 #[macro_use]
73 extern crate log;
74 #[macro_use]
75 extern crate syntax;
76 #[macro_use]
77 extern crate smallvec;
78
79 #[cfg(test)]
80 mod tests;
81
82 #[macro_use]
83 mod macros;
84
85 #[macro_use]
86 pub mod query;
87
88 #[macro_use]
89 pub mod arena;
90 pub mod dep_graph;
91 pub mod hir;
92 pub mod ich;
93 pub mod infer;
94 pub mod lint;
95 pub mod middle;
96 pub mod mir;
97 pub use rustc_session as session;
98 pub mod traits;
99 pub mod ty;
100
101 pub mod util {
102     pub mod bug;
103     pub mod common;
104 }
105
106 // Allows macros to refer to this crate as `::rustc`
107 extern crate self as rustc;