]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
debuginfo: Make debuginfo source location assignment more stable (Pt. 1)
[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]
19 #![staged_api]
20 #![crate_type = "dylib"]
21 #![crate_type = "rlib"]
22 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
23       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
24       html_root_url = "http://doc.rust-lang.org/nightly/")]
25
26 #![allow(unknown_features)]
27 #![feature(quote)]
28 #![feature(slicing_syntax, unsafe_destructor)]
29 #![feature(box_syntax)]
30 #![allow(unknown_features)] #![feature(int_uint)]
31 #![feature(rustc_diagnostic_macros)]
32 #![allow(unstable)]
33
34 extern crate arena;
35 extern crate flate;
36 extern crate fmt_macros;
37 extern crate getopts;
38 extern crate graphviz;
39 extern crate libc;
40 extern crate regex;
41 extern crate rustc_llvm;
42 extern crate rustc_back;
43 extern crate serialize;
44 extern crate rbml;
45 extern crate collections;
46 #[macro_use] extern crate log;
47 #[macro_use] extern crate syntax;
48 #[macro_use] #[no_link] extern crate rustc_bitflags;
49
50 extern crate "serialize" as rustc_serialize; // used by deriving
51
52 #[cfg(test)]
53 extern crate test;
54
55 pub use rustc_llvm as llvm;
56
57 mod diagnostics;
58
59 pub mod back {
60     pub use rustc_back::abi;
61     pub use rustc_back::archive;
62     pub use rustc_back::arm;
63     pub use rustc_back::mips;
64     pub use rustc_back::mipsel;
65     pub use rustc_back::rpath;
66     pub use rustc_back::svh;
67     pub use rustc_back::target_strs;
68     pub use rustc_back::x86;
69     pub use rustc_back::x86_64;
70 }
71
72 pub mod middle {
73     pub mod astconv_util;
74     pub mod astencode;
75     pub mod cfg;
76     pub mod check_const;
77     pub mod check_static_recursion;
78     pub mod check_loop;
79     pub mod check_match;
80     pub mod check_rvalues;
81     pub mod check_static;
82     pub mod const_eval;
83     pub mod dataflow;
84     pub mod dead;
85     pub mod def;
86     pub mod dependency_format;
87     pub mod effect;
88     pub mod entry;
89     pub mod expr_use_visitor;
90     pub mod fast_reject;
91     pub mod graph;
92     pub mod intrinsicck;
93     pub mod infer;
94     pub mod lang_items;
95     pub mod liveness;
96     pub mod mem_categorization;
97     pub mod pat_util;
98     pub mod privacy;
99     pub mod reachable;
100     pub mod region;
101     pub mod recursion_limit;
102     pub mod resolve_lifetime;
103     pub mod stability;
104     pub mod subst;
105     pub mod traits;
106     pub mod ty;
107     pub mod ty_fold;
108     pub mod ty_walk;
109     pub mod weak_lang_items;
110 }
111
112 pub mod metadata;
113
114 pub mod session;
115
116 pub mod plugin;
117
118 pub mod lint;
119
120 pub mod util {
121     pub use rustc_back::fs;
122     pub use rustc_back::sha2;
123
124     pub mod common;
125     pub mod ppaux;
126     pub mod nodemap;
127     pub mod snapshot_vec;
128     pub mod lev_distance;
129 }
130
131 pub mod lib {
132     pub use llvm;
133 }
134
135 __build_diagnostic_array! { DIAGNOSTICS }
136
137 // A private module so that macro-expanded idents like
138 // `::rustc::lint::Lint` will also work in `rustc` itself.
139 //
140 // `libstd` uses the same trick.
141 #[doc(hidden)]
142 mod rustc {
143     pub use lint;
144 }