]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Auto merge of #31087 - nikomatsakis:incr-comp-fulfillment-cache, r=arielb1
[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 Rust compiler.
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 #![crate_name = "rustc"]
18 #![unstable(feature = "rustc_private", issue = "27812")]
19 #![crate_type = "dylib"]
20 #![crate_type = "rlib"]
21 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
22       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
23       html_root_url = "https://doc.rust-lang.org/nightly/")]
24
25 #![feature(associated_consts)]
26 #![feature(box_patterns)]
27 #![feature(box_syntax)]
28 #![feature(cell_extras)]
29 #![feature(collections)]
30 #![feature(const_fn)]
31 #![feature(enumset)]
32 #![feature(hashmap_hasher)]
33 #![feature(iter_arith)]
34 #![feature(libc)]
35 #![feature(nonzero)]
36 #![feature(quote)]
37 #![feature(rustc_diagnostic_macros)]
38 #![feature(rustc_private)]
39 #![feature(scoped_tls)]
40 #![feature(slice_patterns)]
41 #![feature(staged_api)]
42 #![feature(str_char)]
43 #![feature(time2)]
44 #![cfg_attr(test, feature(test))]
45
46 #![allow(trivial_casts)]
47
48 extern crate arena;
49 extern crate core;
50 extern crate flate;
51 extern crate fmt_macros;
52 extern crate getopts;
53 extern crate graphviz;
54 extern crate libc;
55 extern crate rbml;
56 extern crate rustc_llvm;
57 extern crate rustc_back;
58 extern crate rustc_front;
59 extern crate rustc_data_structures;
60 extern crate serialize;
61 extern crate collections;
62 #[macro_use] extern crate log;
63 #[macro_use] extern crate syntax;
64 #[macro_use] #[no_link] extern crate rustc_bitflags;
65
66 extern crate serialize as rustc_serialize; // used by deriving
67
68 #[cfg(test)]
69 extern crate test;
70
71 pub use rustc_llvm as llvm;
72
73 #[macro_use]
74 mod macros;
75
76 // NB: This module needs to be declared first so diagnostics are
77 // registered before they are used.
78 pub mod diagnostics;
79
80 pub mod back {
81     pub use rustc_back::abi;
82     pub use rustc_back::rpath;
83     pub use rustc_back::svh;
84 }
85
86 pub mod dep_graph;
87
88 pub mod front {
89     pub mod check_attr;
90     pub mod map;
91 }
92
93 pub mod middle {
94     pub mod astconv_util;
95     pub mod expr_use_visitor; // STAGE0: increase glitch immunity
96     pub mod cfg;
97     pub mod check_match;
98     pub mod const_eval;
99     pub mod const_qualif;
100     pub mod cstore;
101     pub mod dataflow;
102     pub mod dead;
103     pub mod def;
104     pub mod def_id;
105     pub mod dependency_format;
106     pub mod effect;
107     pub mod entry;
108     pub mod free_region;
109     pub mod intrinsicck;
110     pub mod infer;
111     pub mod implicator;
112     pub mod lang_items;
113     pub mod liveness;
114     pub mod mem_categorization;
115     pub mod pat_util;
116     pub mod privacy;
117     pub mod reachable;
118     pub mod region;
119     pub mod recursion_limit;
120     pub mod resolve_lifetime;
121     pub mod stability;
122     pub mod subst;
123     pub mod traits;
124     pub mod ty;
125     pub mod weak_lang_items;
126 }
127
128 pub mod mir {
129     pub mod repr;
130     pub mod tcx;
131     pub mod visit;
132 }
133
134 pub mod session;
135
136 pub mod lint;
137
138 pub mod util {
139     pub use rustc_back::sha2;
140
141     pub mod common;
142     pub mod ppaux;
143     pub mod nodemap;
144     pub mod num;
145     pub mod fs;
146 }
147
148 pub mod lib {
149     pub use llvm;
150 }
151
152 // A private module so that macro-expanded idents like
153 // `::rustc::lint::Lint` will also work in `rustc` itself.
154 //
155 // `libstd` uses the same trick.
156 #[doc(hidden)]
157 mod rustc {
158     pub use lint;
159 }
160
161 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
162 //                functions generated in librustc_data_structures (all
163 //                references are through generic functions), but statics are
164 //                referenced from time to time. Due to this bug we won't
165 //                actually correctly link in the statics unless we also
166 //                reference a function, so be sure to reference a dummy
167 //                function.
168 #[test]
169 fn noop() {
170     rustc_data_structures::__noop_fix_for_27438();
171 }
172
173
174 // Build the diagnostics array at the end so that the metadata includes error use sites.
175 __build_diagnostic_array! { librustc, DIAGNOSTICS }