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