]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Rollup merge of #30952 - jonastepe:nomicon_vec_zst_code_fix, r=Gankro
[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_const;
98     pub mod check_static_recursion;
99     pub mod check_loop;
100     pub mod check_match;
101     pub mod check_rvalues;
102     pub mod const_eval;
103     pub mod cstore;
104     pub mod dataflow;
105     pub mod dead;
106     pub mod def;
107     pub mod def_id;
108     pub mod dependency_format;
109     pub mod effect;
110     pub mod entry;
111     pub mod free_region;
112     pub mod intrinsicck;
113     pub mod infer;
114     pub mod implicator;
115     pub mod lang_items;
116     pub mod liveness;
117     pub mod mem_categorization;
118     pub mod pat_util;
119     pub mod privacy;
120     pub mod reachable;
121     pub mod region;
122     pub mod recursion_limit;
123     pub mod resolve_lifetime;
124     pub mod stability;
125     pub mod subst;
126     pub mod traits;
127     pub mod ty;
128     pub mod weak_lang_items;
129 }
130
131 pub mod mir {
132     pub mod repr;
133     pub mod tcx;
134     pub mod visit;
135 }
136
137 pub mod session;
138
139 pub mod lint;
140
141 pub mod util {
142     pub use rustc_back::sha2;
143
144     pub mod common;
145     pub mod ppaux;
146     pub mod nodemap;
147     pub mod num;
148     pub mod fs;
149 }
150
151 pub mod lib {
152     pub use llvm;
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 }