]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Rollup merge of #34175 - rwz:patch-2, r=alexcrichton
[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 #![cfg_attr(not(stage0), deny(warnings))]
25
26 #![feature(associated_consts)]
27 #![feature(box_patterns)]
28 #![feature(box_syntax)]
29 #![feature(collections)]
30 #![feature(const_fn)]
31 #![feature(core_intrinsics)]
32 #![feature(enumset)]
33 #![feature(iter_arith)]
34 #![feature(libc)]
35 #![feature(nonzero)]
36 #![feature(quote)]
37 #![feature(rustc_diagnostic_macros)]
38 #![feature(rustc_private)]
39 #![feature(slice_patterns)]
40 #![feature(staged_api)]
41 #![feature(question_mark)]
42 #![cfg_attr(test, feature(test))]
43
44 extern crate arena;
45 extern crate core;
46 extern crate flate;
47 extern crate fmt_macros;
48 extern crate getopts;
49 extern crate graphviz;
50 extern crate libc;
51 extern crate rbml;
52 extern crate rustc_llvm as llvm;
53 extern crate rustc_back;
54 extern crate rustc_data_structures;
55 extern crate serialize;
56 extern crate collections;
57 extern crate rustc_const_math;
58 #[macro_use] extern crate log;
59 #[macro_use] extern crate syntax;
60 #[macro_use] #[no_link] extern crate rustc_bitflags;
61
62 extern crate serialize as rustc_serialize; // used by deriving
63
64 #[cfg(test)]
65 extern crate test;
66
67 #[macro_use]
68 mod macros;
69
70 // NB: This module needs to be declared first so diagnostics are
71 // registered before they are used.
72 pub mod diagnostics;
73
74 pub mod cfg;
75 pub mod dep_graph;
76 pub mod hir;
77 pub mod infer;
78 pub mod lint;
79
80 pub mod middle {
81     pub mod astconv_util;
82     pub mod expr_use_visitor; // STAGE0: increase glitch immunity
83     pub mod const_val;
84     pub mod const_qualif;
85     pub mod cstore;
86     pub mod dataflow;
87     pub mod dead;
88     pub mod dependency_format;
89     pub mod effect;
90     pub mod entry;
91     pub mod free_region;
92     pub mod intrinsicck;
93     pub mod lang_items;
94     pub mod liveness;
95     pub mod mem_categorization;
96     pub mod privacy;
97     pub mod reachable;
98     pub mod region;
99     pub mod recursion_limit;
100     pub mod resolve_lifetime;
101     pub mod stability;
102     pub mod weak_lang_items;
103 }
104
105 pub mod mir {
106     mod cache;
107     pub mod repr;
108     pub mod tcx;
109     pub mod visit;
110     pub mod transform;
111     pub mod traversal;
112     pub mod mir_map;
113 }
114
115 pub mod session;
116 pub mod traits;
117 pub mod ty;
118
119 pub mod util {
120     pub use rustc_back::sha2;
121
122     pub mod common;
123     pub mod ppaux;
124     pub mod nodemap;
125     pub mod num;
126     pub mod fs;
127 }
128
129 // A private module so that macro-expanded idents like
130 // `::rustc::lint::Lint` will also work in `rustc` itself.
131 //
132 // `libstd` uses the same trick.
133 #[doc(hidden)]
134 mod rustc {
135     pub use lint;
136 }
137
138 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
139 //                functions generated in librustc_data_structures (all
140 //                references are through generic functions), but statics are
141 //                referenced from time to time. Due to this bug we won't
142 //                actually correctly link in the statics unless we also
143 //                reference a function, so be sure to reference a dummy
144 //                function.
145 #[test]
146 fn noop() {
147     rustc_data_structures::__noop_fix_for_27438();
148 }
149
150
151 // Build the diagnostics array at the end so that the metadata includes error use sites.
152 __build_diagnostic_array! { librustc, DIAGNOSTICS }