]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
681dffc0116e3d2941165dcc3f19e28c9254993b
[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
31 #![deny(rust_2018_idioms)]
32 #![allow(explicit_outlives_requirements)]
33
34 #![feature(box_patterns)]
35 #![feature(box_syntax)]
36 #![feature(core_intrinsics)]
37 #![feature(drain_filter)]
38 #![cfg_attr(windows, feature(libc))]
39 #![feature(never_type)]
40 #![feature(exhaustive_patterns)]
41 #![feature(extern_types)]
42 #![feature(nll)]
43 #![feature(non_exhaustive)]
44 #![feature(proc_macro_internals)]
45 #![feature(optin_builtin_traits)]
46 #![feature(refcell_replace_swap)]
47 #![feature(rustc_diagnostic_macros)]
48 #![feature(rustc_attrs)]
49 #![feature(slice_patterns)]
50 #![feature(specialization)]
51 #![feature(unboxed_closures)]
52 #![feature(thread_local)]
53 #![feature(trace_macros)]
54 #![feature(trusted_len)]
55 #![feature(vec_remove_item)]
56 #![feature(step_trait)]
57 #![feature(stmt_expr_attributes)]
58 #![feature(integer_atomics)]
59 #![feature(test)]
60 #![feature(in_band_lifetimes)]
61 #![feature(crate_visibility_modifier)]
62
63 #![recursion_limit="512"]
64
65 #[macro_use] extern crate bitflags;
66 extern crate getopts;
67 #[macro_use] extern crate lazy_static;
68 #[macro_use] extern crate scoped_tls;
69 #[cfg(windows)]
70 extern crate libc;
71 #[macro_use] extern crate rustc_data_structures;
72
73 #[macro_use] extern crate log;
74 #[macro_use] extern crate syntax;
75
76 // FIXME: This import is used by deriving `RustcDecodable` and `RustcEncodable`. Removing this
77 // results in a bunch of "failed to resolve" errors. Hopefully, the compiler moves to serde or
78 // something, and we can get rid of this.
79 #[allow(rust_2018_idioms)]
80 extern crate serialize as rustc_serialize;
81
82 #[macro_use] extern crate smallvec;
83
84 // Note that librustc doesn't actually depend on these crates, see the note in
85 // `Cargo.toml` for this crate about why these are here.
86 #[allow(unused_extern_crates)]
87 extern crate flate2;
88 #[allow(unused_extern_crates)]
89 extern crate test;
90
91 #[macro_use]
92 mod macros;
93
94 // N.B., this module needs to be declared first so diagnostics are
95 // registered before they are used.
96 pub mod diagnostics;
97
98 pub mod cfg;
99 pub mod dep_graph;
100 pub mod hir;
101 pub mod ich;
102 pub mod infer;
103 pub mod lint;
104
105 pub mod middle {
106     pub mod allocator;
107     pub mod borrowck;
108     pub mod expr_use_visitor;
109     pub mod cstore;
110     pub mod dead;
111     pub mod dependency_format;
112     pub mod entry;
113     pub mod exported_symbols;
114     pub mod free_region;
115     pub mod intrinsicck;
116     pub mod lib_features;
117     pub mod lang_items;
118     pub mod liveness;
119     pub mod mem_categorization;
120     pub mod privacy;
121     pub mod reachable;
122     pub mod region;
123     pub mod recursion_limit;
124     pub mod resolve_lifetime;
125     pub mod stability;
126     pub mod weak_lang_items;
127 }
128
129 pub mod mir;
130 pub mod session;
131 pub mod traits;
132 pub mod ty;
133
134 pub mod util {
135     pub mod captures;
136     pub mod common;
137     pub mod ppaux;
138     pub mod nodemap;
139     pub mod profiling;
140     pub mod bug;
141 }
142
143 // Allows macros to refer to this crate as `::rustc`
144 extern crate self as rustc;
145
146 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
147 //                functions generated in librustc_data_structures (all
148 //                references are through generic functions), but statics are
149 //                referenced from time to time. Due to this bug we won't
150 //                actually correctly link in the statics unless we also
151 //                reference a function, so be sure to reference a dummy
152 //                function.
153 #[test]
154 fn noop() {
155     rustc_data_structures::__noop_fix_for_27438();
156 }
157
158
159 // Build the diagnostics array at the end so that the metadata includes error use sites.
160 __build_diagnostic_array! { librustc, DIAGNOSTICS }