]> git.proxmox.com Git - rustc.git/blob - src/librustc_passes/lib.rs
New upstream version 1.27.1+dfsg1
[rustc.git] / src / librustc_passes / 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 //! Various checks
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
21 #![feature(rustc_diagnostic_macros)]
22
23 #[macro_use]
24 extern crate rustc;
25 extern crate rustc_mir;
26 extern crate rustc_data_structures;
27
28 #[macro_use]
29 extern crate log;
30 #[macro_use]
31 extern crate syntax;
32 extern crate syntax_pos;
33 extern crate rustc_errors as errors;
34
35 use rustc::ty::maps::Providers;
36
37 mod diagnostics;
38
39 pub mod ast_validation;
40 pub mod rvalue_promotion;
41 pub mod hir_stats;
42 pub mod loops;
43 mod mir_stats;
44
45 __build_diagnostic_array! { librustc_passes, DIAGNOSTICS }
46
47 pub fn provide(providers: &mut Providers) {
48 rvalue_promotion::provide(providers);
49 }