]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
2cec42b76bce3359e8f772ea1bda80a492cbabd3
[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")]
21 #![staged_api]
22 #![crate_type = "dylib"]
23 #![crate_type = "rlib"]
24 #![doc(html_logo_url = "http://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 = "http://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(duration)]
36 #![feature(duration_span)]
37 #![feature(dynamic_lib)]
38 #![feature(enumset)]
39 #![feature(fs_canonicalize)]
40 #![feature(hash_default)]
41 #![feature(hashmap_hasher)]
42 #![feature(into_cow)]
43 #![feature(iter_cmp)]
44 #![feature(iter_arith)]
45 #![feature(libc)]
46 #![feature(map_in_place)]
47 #![feature(num_bits_bytes)]
48 #![feature(path_ext)]
49 #![feature(quote)]
50 #![feature(range_inclusive)]
51 #![feature(ref_slice)]
52 #![feature(rustc_diagnostic_macros)]
53 #![feature(rustc_private)]
54 #![feature(scoped_tls)]
55 #![feature(slice_bytes)]
56 #![feature(slice_extras)]
57 #![feature(slice_patterns)]
58 #![feature(slice_position_elem)]
59 #![feature(staged_api)]
60 #![feature(str_char)]
61 #![feature(str_match_indices)]
62 #![feature(vec_push_all)]
63 #![feature(wrapping)]
64 #![feature(cell_extras)]
65 #![cfg_attr(test, feature(test))]
66
67 #![allow(trivial_casts)]
68
69 extern crate arena;
70 extern crate flate;
71 extern crate fmt_macros;
72 extern crate getopts;
73 extern crate graphviz;
74 extern crate libc;
75 extern crate rustc_llvm;
76 extern crate rustc_back;
77 extern crate rustc_data_structures;
78 extern crate serialize;
79 extern crate rbml;
80 extern crate collections;
81 #[macro_use] extern crate log;
82 #[macro_use] extern crate syntax;
83 #[macro_use] #[no_link] extern crate rustc_bitflags;
84
85 extern crate serialize as rustc_serialize; // used by deriving
86
87 #[cfg(test)]
88 extern crate test;
89
90 pub use rustc_llvm as llvm;
91
92 #[macro_use]
93 mod macros;
94
95 // NB: This module needs to be declared first so diagnostics are
96 // registered before they are used.
97 pub mod diagnostics;
98
99 pub mod back {
100     pub use rustc_back::abi;
101     pub use rustc_back::archive;
102     pub use rustc_back::arm;
103     pub use rustc_back::mips;
104     pub use rustc_back::mipsel;
105     pub use rustc_back::rpath;
106     pub use rustc_back::svh;
107     pub use rustc_back::target_strs;
108     pub use rustc_back::x86;
109     pub use rustc_back::x86_64;
110 }
111
112 pub mod ast_map;
113
114 pub mod middle {
115     pub mod astconv_util;
116     pub mod astencode;
117     pub mod cast;
118     pub mod cfg;
119     pub mod check_const;
120     pub mod check_static_recursion;
121     pub mod check_loop;
122     pub mod check_match;
123     pub mod check_rvalues;
124     pub mod const_eval;
125     pub mod dataflow;
126     pub mod dead;
127     pub mod def;
128     pub mod dependency_format;
129     pub mod effect;
130     pub mod entry;
131     pub mod expr_use_visitor;
132     pub mod fast_reject;
133     pub mod free_region;
134     pub mod intrinsicck;
135     pub mod infer;
136     pub mod implicator;
137     pub mod lang_items;
138     pub mod liveness;
139     pub mod mem_categorization;
140     pub mod pat_util;
141     pub mod privacy;
142     pub mod reachable;
143     pub mod region;
144     pub mod recursion_limit;
145     pub mod resolve_lifetime;
146     pub mod stability;
147     pub mod subst;
148     pub mod traits;
149     pub mod ty;
150     pub mod ty_fold;
151     pub mod ty_match;
152     pub mod ty_relate;
153     pub mod ty_walk;
154     pub mod weak_lang_items;
155 }
156
157 pub mod metadata;
158
159 pub mod session;
160
161 pub mod plugin;
162
163 pub mod lint;
164
165 pub mod util {
166     pub use rustc_back::sha2;
167
168     pub mod common;
169     pub mod ppaux;
170     pub mod nodemap;
171     pub mod lev_distance;
172     pub mod num;
173     pub mod fs;
174 }
175
176 pub mod lib {
177     pub use llvm;
178 }
179
180 // A private module so that macro-expanded idents like
181 // `::rustc::lint::Lint` will also work in `rustc` itself.
182 //
183 // `libstd` uses the same trick.
184 #[doc(hidden)]
185 mod rustc {
186     pub use lint;
187 }
188
189 // Build the diagnostics array at the end so that the metadata includes error use sites.
190 __build_diagnostic_array! { librustc, DIAGNOSTICS }