]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Auto merge of #28329 - tshepang:comfort, r=steveklabnik
[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 // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
18 #![cfg_attr(stage0, feature(custom_attribute))]
19 #![crate_name = "rustc"]
20 #![unstable(feature = "rustc_private", issue = "27812")]
21 #![staged_api]
22 #![crate_type = "dylib"]
23 #![crate_type = "rlib"]
24 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
25       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26       html_root_url = "https://doc.rust-lang.org/nightly/")]
27
28 #![feature(append)]
29 #![feature(associated_consts)]
30 #![feature(box_patterns)]
31 #![feature(box_syntax)]
32 #![feature(clone_from_slice)]
33 #![feature(collections)]
34 #![feature(const_fn)]
35 #![feature(core)]
36 #![feature(duration_span)]
37 #![feature(dynamic_lib)]
38 #![feature(enumset)]
39 #![feature(fs_canonicalize)]
40 #![feature(hashmap_hasher)]
41 #![feature(into_cow)]
42 #![feature(iter_cmp)]
43 #![feature(iter_arith)]
44 #![feature(libc)]
45 #![feature(nonzero)]
46 #![feature(num_bits_bytes)]
47 #![feature(path_ext)]
48 #![feature(quote)]
49 #![feature(range_inclusive)]
50 #![feature(ref_slice)]
51 #![feature(rustc_diagnostic_macros)]
52 #![feature(rustc_private)]
53 #![feature(scoped_tls)]
54 #![feature(slice_splits)]
55 #![feature(slice_patterns)]
56 #![feature(staged_api)]
57 #![feature(str_char)]
58 #![feature(str_match_indices)]
59 #![feature(vec_push_all)]
60 #![feature(wrapping)]
61 #![feature(cell_extras)]
62 #![cfg_attr(test, feature(test))]
63
64 #![allow(trivial_casts)]
65
66 extern crate arena;
67 extern crate core;
68 extern crate flate;
69 extern crate fmt_macros;
70 extern crate getopts;
71 extern crate graphviz;
72 extern crate libc;
73 extern crate rustc_llvm;
74 extern crate rustc_back;
75 extern crate rustc_front;
76 extern crate rustc_data_structures;
77 extern crate serialize;
78 extern crate rbml;
79 extern crate collections;
80 #[macro_use] extern crate log;
81 #[macro_use] extern crate syntax;
82 #[macro_use] #[no_link] extern crate rustc_bitflags;
83
84 extern crate serialize as rustc_serialize; // used by deriving
85
86 #[cfg(test)]
87 extern crate test;
88
89 pub use rustc_llvm as llvm;
90
91 #[macro_use]
92 mod macros;
93
94 // NB: This module needs to be declared first so diagnostics are
95 // registered before they are used.
96 pub mod diagnostics;
97
98 pub mod back {
99     pub use rustc_back::abi;
100     pub use rustc_back::rpath;
101     pub use rustc_back::svh;
102 }
103
104 pub mod front {
105     pub mod map;
106 }
107
108 pub mod middle {
109     pub mod astconv_util;
110     pub mod astencode;
111     pub mod cast;
112     pub mod cfg;
113     pub mod check_const;
114     pub mod check_static_recursion;
115     pub mod check_loop;
116     pub mod check_match;
117     pub mod check_no_asm;
118     pub mod check_rvalues;
119     pub mod const_eval;
120     pub mod dataflow;
121     pub mod dead;
122     pub mod def;
123     pub mod def_id;
124     pub mod dependency_format;
125     pub mod effect;
126     pub mod entry;
127     pub mod expr_use_visitor;
128     pub mod fast_reject;
129     pub mod free_region;
130     pub mod intrinsicck;
131     pub mod infer;
132     pub mod implicator;
133     pub mod lang_items;
134     pub mod liveness;
135     pub mod mem_categorization;
136     pub mod outlives;
137     pub mod pat_util;
138     pub mod privacy;
139     pub mod reachable;
140     pub mod region;
141     pub mod recursion_limit;
142     pub mod resolve_lifetime;
143     pub mod stability;
144     pub mod subst;
145     pub mod traits;
146     pub mod ty;
147     pub mod ty_fold;
148     pub mod ty_match;
149     pub mod ty_relate;
150     pub mod ty_walk;
151     pub mod wf;
152     pub mod weak_lang_items;
153 }
154
155 pub mod metadata;
156
157 pub mod session;
158
159 pub mod plugin;
160
161 pub mod lint;
162
163 pub mod util {
164     pub use rustc_back::sha2;
165
166     pub mod common;
167     pub mod ppaux;
168     pub mod nodemap;
169     pub mod lev_distance;
170     pub mod num;
171     pub mod fs;
172 }
173
174 pub mod lib {
175     pub use llvm;
176 }
177
178 // A private module so that macro-expanded idents like
179 // `::rustc::lint::Lint` will also work in `rustc` itself.
180 //
181 // `libstd` uses the same trick.
182 #[doc(hidden)]
183 mod rustc {
184     pub use lint;
185 }
186
187 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
188 //                functions generated in librustc_data_structures (all
189 //                references are through generic functions), but statics are
190 //                referenced from time to time. Due to this bug we won't
191 //                actually correctly link in the statics unless we also
192 //                reference a function, so be sure to reference a dummy
193 //                function.
194 #[test]
195 fn noop() {
196     rustc_data_structures::__noop_fix_for_27438();
197 }
198
199
200 // Build the diagnostics array at the end so that the metadata includes error use sites.
201 __build_diagnostic_array! { librustc, DIAGNOSTICS }