]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/lib.rs
move Instance to rustc and use it in the collector
[rust.git] / src / librustc_mir / lib.rs
1 // Copyright 2014 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 /*!
12
13 Rust MIR: a lowered representation of Rust. Also: an experiment!
14
15 */
16
17 #![crate_name = "rustc_mir"]
18 #![crate_type = "rlib"]
19 #![crate_type = "dylib"]
20 #![deny(warnings)]
21 #![unstable(feature = "rustc_private", issue = "27812")]
22
23 #![feature(associated_consts)]
24 #![feature(box_patterns)]
25 #![feature(box_syntax)]
26 #![feature(i128_type)]
27 #![feature(rustc_diagnostic_macros)]
28 #![feature(rustc_private)]
29 #![feature(staged_api)]
30 #![feature(placement_in_syntax)]
31 #![feature(collection_placement)]
32
33 #[macro_use] extern crate log;
34 extern crate graphviz as dot;
35 #[macro_use]
36 extern crate rustc;
37 extern crate rustc_data_structures;
38 #[macro_use]
39 #[no_link]
40 extern crate rustc_bitflags;
41 #[macro_use]
42 extern crate syntax;
43 extern crate syntax_pos;
44 extern crate rustc_const_math;
45 extern crate rustc_const_eval;
46
47 pub mod diagnostics;
48
49 pub mod build;
50 pub mod callgraph;
51 pub mod def_use;
52 pub mod graphviz;
53 mod hair;
54 mod shim;
55 pub mod mir_map;
56 pub mod pretty;
57 pub mod transform;
58
59 use rustc::ty::maps::Providers;
60
61 pub fn provide(providers: &mut Providers) {
62     mir_map::provide(providers);
63     shim::provide(providers);
64     transform::qualify_consts::provide(providers);
65 }