]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Add transpose conversions for Option and Result
[rust.git] / src / librustc / lib.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! The "main crate" of the Rust compiler. This crate contains common
12 //! type definitions that are used by the other crates in the rustc
13 //! "family". Some prominent examples (note that each of these modules
14 //! has their own README with further details).
15 //!
16 //! - **HIR.** The "high-level (H) intermediate representation (IR)" is
17 //!   defined in the `hir` module.
18 //! - **MIR.** The "mid-level (M) intermediate representation (IR)" is
19 //!   defined in the `mir` module. This module contains only the
20 //!   *definition* of the MIR; the passes that transform and operate
21 //!   on MIR are found in `librustc_mir` crate.
22 //! - **Types.** The internal representation of types used in rustc is
23 //!   defined in the `ty` module. This includes the **type context**
24 //!   (or `tcx`), which is the central context during most of
25 //!   compilation, containing the interners and other things.
26 //! - **Traits.** Trait resolution is implemented in the `traits` module.
27 //! - **Type inference.** The type inference code can be found in the `infer` module;
28 //!   this code handles low-level equality and subtyping operations. The
29 //!   type check pass in the compiler is found in the `librustc_typeck` crate.
30 //!
31 //! For a deeper explanation of how the compiler works and is
32 //! organized, see the README.md file in this directory.
33 //!
34 //! # Note
35 //!
36 //! This API is completely unstable and subject to change.
37
38 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
39        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
40        html_root_url = "https://doc.rust-lang.org/nightly/")]
41 #![deny(warnings)]
42
43 #![feature(box_patterns)]
44 #![feature(box_syntax)]
45 #![feature(conservative_impl_trait)]
46 #![feature(const_fn)]
47 #![feature(core_intrinsics)]
48 #![feature(drain_filter)]
49 #![feature(dyn_trait)]
50 #![feature(from_ref)]
51 #![feature(i128)]
52 #![feature(i128_type)]
53 #![feature(inclusive_range)]
54 #![feature(inclusive_range_syntax)]
55 #![cfg_attr(windows, feature(libc))]
56 #![feature(macro_vis_matcher)]
57 #![feature(match_default_bindings)]
58 #![feature(never_type)]
59 #![feature(nonzero)]
60 #![feature(quote)]
61 #![feature(refcell_replace_swap)]
62 #![feature(rustc_diagnostic_macros)]
63 #![feature(slice_patterns)]
64 #![feature(specialization)]
65 #![feature(unboxed_closures)]
66 #![feature(underscore_lifetimes)]
67 #![feature(trace_macros)]
68 #![feature(catch_expr)]
69 #![feature(test)]
70
71 #![recursion_limit="512"]
72
73 extern crate arena;
74 #[macro_use] extern crate bitflags;
75 extern crate core;
76 extern crate fmt_macros;
77 extern crate getopts;
78 extern crate graphviz;
79 #[cfg(windows)]
80 extern crate libc;
81 extern crate rustc_back;
82 #[macro_use] extern crate rustc_data_structures;
83 extern crate serialize;
84 extern crate rustc_const_math;
85 extern crate rustc_errors as errors;
86 #[macro_use] extern crate log;
87 #[macro_use] extern crate syntax;
88 extern crate syntax_pos;
89 extern crate jobserver;
90
91 extern crate serialize as rustc_serialize; // used by deriving
92
93 extern crate rustc_apfloat;
94 extern crate byteorder;
95 extern crate backtrace;
96
97 // Note that librustc doesn't actually depend on these crates, see the note in
98 // `Cargo.toml` for this crate about why these are here.
99 #[allow(unused_extern_crates)]
100 extern crate flate2;
101 #[allow(unused_extern_crates)]
102 extern crate test;
103
104 #[macro_use]
105 mod macros;
106
107 // NB: This module needs to be declared first so diagnostics are
108 // registered before they are used.
109 pub mod diagnostics;
110
111 pub mod cfg;
112 pub mod dep_graph;
113 pub mod hir;
114 pub mod ich;
115 pub mod infer;
116 pub mod lint;
117
118 pub mod middle {
119     pub mod allocator;
120     pub mod borrowck;
121     pub mod expr_use_visitor;
122     pub mod const_val;
123     pub mod cstore;
124     pub mod dataflow;
125     pub mod dead;
126     pub mod dependency_format;
127     pub mod entry;
128     pub mod exported_symbols;
129     pub mod free_region;
130     pub mod intrinsicck;
131     pub mod lang_items;
132     pub mod liveness;
133     pub mod mem_categorization;
134     pub mod privacy;
135     pub mod reachable;
136     pub mod region;
137     pub mod recursion_limit;
138     pub mod resolve_lifetime;
139     pub mod stability;
140     pub mod weak_lang_items;
141 }
142
143 pub mod mir;
144 pub mod session;
145 pub mod traits;
146 pub mod ty;
147
148 pub mod util {
149     pub mod common;
150     pub mod ppaux;
151     pub mod nodemap;
152     pub mod fs;
153 }
154
155 // A private module so that macro-expanded idents like
156 // `::rustc::lint::Lint` will also work in `rustc` itself.
157 //
158 // `libstd` uses the same trick.
159 #[doc(hidden)]
160 mod rustc {
161     pub use lint;
162 }
163
164 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
165 //                functions generated in librustc_data_structures (all
166 //                references are through generic functions), but statics are
167 //                referenced from time to time. Due to this bug we won't
168 //                actually correctly link in the statics unless we also
169 //                reference a function, so be sure to reference a dummy
170 //                function.
171 #[test]
172 fn noop() {
173     rustc_data_structures::__noop_fix_for_27438();
174 }
175
176
177 // Build the diagnostics array at the end so that the metadata includes error use sites.
178 __build_diagnostic_array! { librustc, DIAGNOSTICS }