]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
rustc: Move some attr methods to queries
[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 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19        html_root_url = "https://doc.rust-lang.org/nightly/")]
20 #![deny(warnings)]
21
22 #![feature(box_patterns)]
23 #![feature(box_syntax)]
24 #![feature(conservative_impl_trait)]
25 #![feature(core_intrinsics)]
26 #![feature(i128_type)]
27 #![cfg_attr(windows, feature(libc))]
28 #![feature(never_type)]
29 #![feature(nonzero)]
30 #![feature(quote)]
31 #![feature(rustc_diagnostic_macros)]
32 #![feature(slice_patterns)]
33 #![feature(specialization)]
34 #![feature(unboxed_closures)]
35 #![feature(trace_macros)]
36 #![feature(test)]
37
38 #![cfg_attr(stage0, feature(const_fn))]
39 #![cfg_attr(not(stage0), feature(const_atomic_bool_new))]
40
41 #![recursion_limit="256"]
42
43 extern crate arena;
44 extern crate core;
45 extern crate fmt_macros;
46 extern crate getopts;
47 extern crate graphviz;
48 #[cfg(windows)]
49 extern crate libc;
50 extern crate owning_ref;
51 extern crate rustc_back;
52 extern crate rustc_data_structures;
53 extern crate serialize;
54 extern crate rustc_const_math;
55 extern crate rustc_errors as errors;
56 #[macro_use] extern crate log;
57 #[macro_use] extern crate syntax;
58 extern crate syntax_pos;
59 #[macro_use] #[no_link] extern crate rustc_bitflags;
60 extern crate jobserver;
61
62 extern crate serialize as rustc_serialize; // used by deriving
63
64 // Note that librustc doesn't actually depend on these crates, see the note in
65 // `Cargo.toml` for this crate about why these are here.
66 #[allow(unused_extern_crates)]
67 extern crate flate2;
68 #[allow(unused_extern_crates)]
69 extern crate test;
70
71 #[macro_use]
72 mod macros;
73
74 // NB: This module needs to be declared first so diagnostics are
75 // registered before they are used.
76 pub mod diagnostics;
77
78 pub mod cfg;
79 pub mod dep_graph;
80 pub mod hir;
81 pub mod ich;
82 pub mod infer;
83 pub mod lint;
84
85 pub mod middle {
86     pub mod allocator;
87     pub mod expr_use_visitor;
88     pub mod const_val;
89     pub mod cstore;
90     pub mod dataflow;
91     pub mod dead;
92     pub mod dependency_format;
93     pub mod effect;
94     pub mod entry;
95     pub mod exported_symbols;
96     pub mod free_region;
97     pub mod intrinsicck;
98     pub mod lang_items;
99     pub mod liveness;
100     pub mod mem_categorization;
101     pub mod privacy;
102     pub mod reachable;
103     pub mod region;
104     pub mod recursion_limit;
105     pub mod resolve_lifetime;
106     pub mod stability;
107     pub mod trans;
108     pub mod weak_lang_items;
109 }
110
111 pub mod mir;
112 pub mod session;
113 pub mod traits;
114 pub mod ty;
115
116 pub mod util {
117     pub mod common;
118     pub mod ppaux;
119     pub mod nodemap;
120     pub mod fs;
121 }
122
123 // A private module so that macro-expanded idents like
124 // `::rustc::lint::Lint` will also work in `rustc` itself.
125 //
126 // `libstd` uses the same trick.
127 #[doc(hidden)]
128 mod rustc {
129     pub use lint;
130 }
131
132 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
133 //                functions generated in librustc_data_structures (all
134 //                references are through generic functions), but statics are
135 //                referenced from time to time. Due to this bug we won't
136 //                actually correctly link in the statics unless we also
137 //                reference a function, so be sure to reference a dummy
138 //                function.
139 #[test]
140 fn noop() {
141     rustc_data_structures::__noop_fix_for_27438();
142 }
143
144
145 // Build the diagnostics array at the end so that the metadata includes error use sites.
146 __build_diagnostic_array! { librustc, DIAGNOSTICS }