]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
adjust the macro to allow for `multi` modifier
[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 #![deny(warnings)]
25
26 #![feature(associated_consts)]
27 #![feature(box_patterns)]
28 #![feature(box_syntax)]
29 #![feature(conservative_impl_trait)]
30 #![feature(const_fn)]
31 #![feature(core_intrinsics)]
32 #![feature(i128_type)]
33 #![feature(libc)]
34 #![feature(loop_break_value)]
35 #![feature(never_type)]
36 #![feature(nonzero)]
37 #![feature(quote)]
38 #![feature(rustc_diagnostic_macros)]
39 #![feature(rustc_private)]
40 #![feature(slice_patterns)]
41 #![feature(specialization)]
42 #![feature(staged_api)]
43 #![feature(unboxed_closures)]
44 #![feature(discriminant_value)]
45 #![feature(sort_unstable)]
46 #![feature(trace_macros)]
47
48 #![recursion_limit="128"]
49
50 extern crate arena;
51 extern crate core;
52 extern crate fmt_macros;
53 extern crate getopts;
54 extern crate graphviz;
55 extern crate libc;
56 extern crate rustc_llvm as llvm;
57 extern crate rustc_back;
58 extern crate rustc_data_structures;
59 extern crate serialize;
60 extern crate rustc_const_math;
61 extern crate rustc_errors as errors;
62 #[macro_use] extern crate log;
63 #[macro_use] extern crate syntax;
64 extern crate syntax_pos;
65 #[macro_use] #[no_link] extern crate rustc_bitflags;
66
67 extern crate serialize as rustc_serialize; // used by deriving
68
69 #[macro_use]
70 mod macros;
71
72 // NB: This module needs to be declared first so diagnostics are
73 // registered before they are used.
74 pub mod diagnostics;
75
76 pub mod cfg;
77 pub mod dep_graph;
78 pub mod hir;
79 pub mod ich;
80 pub mod infer;
81 pub mod lint;
82
83 pub mod middle {
84     pub mod expr_use_visitor;
85     pub mod const_val;
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 pub mod session;
108 pub mod traits;
109 pub mod ty;
110
111 pub mod util {
112     pub mod common;
113     pub mod ppaux;
114     pub mod nodemap;
115     pub mod fs;
116 }
117
118 // A private module so that macro-expanded idents like
119 // `::rustc::lint::Lint` will also work in `rustc` itself.
120 //
121 // `libstd` uses the same trick.
122 #[doc(hidden)]
123 mod rustc {
124     pub use lint;
125 }
126
127 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
128 //                functions generated in librustc_data_structures (all
129 //                references are through generic functions), but statics are
130 //                referenced from time to time. Due to this bug we won't
131 //                actually correctly link in the statics unless we also
132 //                reference a function, so be sure to reference a dummy
133 //                function.
134 #[test]
135 fn noop() {
136     rustc_data_structures::__noop_fix_for_27438();
137 }
138
139
140 // Build the diagnostics array at the end so that the metadata includes error use sites.
141 __build_diagnostic_array! { librustc, DIAGNOSTICS }