2013-02-28 13:15:32 +00:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-04 00:48:01 +00:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-11-26 02:17:11 +00:00
|
|
|
//! The Rust compiler.
|
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
2014-01-08 05:17:52 +00:00
|
|
|
|
2014-07-01 14:12:04 +00:00
|
|
|
#![crate_name = "rustc"]
|
2014-03-22 01:05:05 +00:00
|
|
|
#![crate_type = "dylib"]
|
|
|
|
#![crate_type = "rlib"]
|
2015-08-09 21:15:05 +00:00
|
|
|
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
2016-01-21 23:26:19 +00:00
|
|
|
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
|
|
|
|
html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2016-12-29 17:47:34 +00:00
|
|
|
#![deny(warnings)]
|
2011-05-06 02:44:00 +00:00
|
|
|
|
2015-04-28 23:36:22 +00:00
|
|
|
#![feature(associated_consts)]
|
2015-02-10 21:52:44 +00:00
|
|
|
#![feature(box_patterns)]
|
2015-01-07 14:15:34 +00:00
|
|
|
#![feature(box_syntax)]
|
2016-08-26 22:13:48 +00:00
|
|
|
#![feature(conservative_impl_trait)]
|
2015-05-29 13:42:32 +00:00
|
|
|
#![feature(const_fn)]
|
2016-06-08 21:16:35 +00:00
|
|
|
#![feature(core_intrinsics)]
|
2017-02-01 23:57:50 +00:00
|
|
|
#![feature(i128_type)]
|
2015-01-23 02:22:03 +00:00
|
|
|
#![feature(libc)]
|
2017-01-11 15:35:54 +00:00
|
|
|
#![feature(loop_break_value)]
|
2017-03-16 13:05:39 +00:00
|
|
|
#![feature(never_type)]
|
2015-07-22 17:10:18 +00:00
|
|
|
#![feature(nonzero)]
|
2015-01-30 20:26:44 +00:00
|
|
|
#![feature(quote)]
|
|
|
|
#![feature(rustc_diagnostic_macros)]
|
2015-04-28 23:36:22 +00:00
|
|
|
#![feature(slice_patterns)]
|
2017-02-11 17:26:13 +00:00
|
|
|
#![feature(specialization)]
|
2016-11-03 20:19:33 +00:00
|
|
|
#![feature(unboxed_closures)]
|
2017-03-30 13:27:27 +00:00
|
|
|
#![feature(discriminant_value)]
|
2017-04-05 11:00:17 +00:00
|
|
|
#![feature(sort_unstable)]
|
2017-04-28 16:09:15 +00:00
|
|
|
#![feature(trace_macros)]
|
|
|
|
|
2017-05-08 21:36:44 +00:00
|
|
|
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
|
|
|
|
#![cfg_attr(stage0, feature(rustc_private))]
|
|
|
|
#![cfg_attr(stage0, feature(staged_api))]
|
|
|
|
|
2017-04-28 16:09:15 +00:00
|
|
|
#![recursion_limit="128"]
|
2015-03-06 23:11:59 +00:00
|
|
|
|
2014-02-14 18:10:06 +00:00
|
|
|
extern crate arena;
|
2015-07-22 17:10:18 +00:00
|
|
|
extern crate core;
|
2015-01-10 18:21:27 +00:00
|
|
|
extern crate fmt_macros;
|
2014-05-22 18:28:01 +00:00
|
|
|
extern crate getopts;
|
2014-04-17 19:00:08 +00:00
|
|
|
extern crate graphviz;
|
2014-05-22 18:28:01 +00:00
|
|
|
extern crate libc;
|
2016-03-30 10:11:58 +00:00
|
|
|
extern crate rustc_llvm as llvm;
|
2014-09-06 18:54:11 +00:00
|
|
|
extern crate rustc_back;
|
2015-04-07 10:10:53 +00:00
|
|
|
extern crate rustc_data_structures;
|
2014-02-14 18:10:06 +00:00
|
|
|
extern crate serialize;
|
2016-03-15 11:33:13 +00:00
|
|
|
extern crate rustc_const_math;
|
2016-06-21 22:08:13 +00:00
|
|
|
extern crate rustc_errors as errors;
|
2015-01-06 17:24:46 +00:00
|
|
|
#[macro_use] extern crate log;
|
|
|
|
#[macro_use] extern crate syntax;
|
2017-01-14 08:58:50 +00:00
|
|
|
extern crate syntax_pos;
|
2015-01-16 20:20:03 +00:00
|
|
|
#[macro_use] #[no_link] extern crate rustc_bitflags;
|
2014-07-01 16:39:41 +00:00
|
|
|
|
2015-03-25 01:13:54 +00:00
|
|
|
extern crate serialize as rustc_serialize; // used by deriving
|
2014-12-19 06:52:48 +00:00
|
|
|
|
2015-04-17 22:32:42 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
2015-01-16 23:54:58 +00:00
|
|
|
// NB: This module needs to be declared first so diagnostics are
|
|
|
|
// registered before they are used.
|
|
|
|
pub mod diagnostics;
|
2014-05-25 04:15:16 +00:00
|
|
|
|
2016-03-22 15:30:57 +00:00
|
|
|
pub mod cfg;
|
2016-01-05 18:02:57 +00:00
|
|
|
pub mod dep_graph;
|
2016-03-29 05:50:44 +00:00
|
|
|
pub mod hir;
|
2017-03-20 15:35:06 +00:00
|
|
|
pub mod ich;
|
2016-03-22 15:30:57 +00:00
|
|
|
pub mod infer;
|
|
|
|
pub mod lint;
|
|
|
|
|
2013-01-29 23:16:07 +00:00
|
|
|
pub mod middle {
|
2016-12-20 21:05:21 +00:00
|
|
|
pub mod expr_use_visitor;
|
2016-03-30 11:43:36 +00:00
|
|
|
pub mod const_val;
|
2015-11-24 22:00:26 +00:00
|
|
|
pub mod cstore;
|
2013-04-17 22:05:17 +00:00
|
|
|
pub mod dataflow;
|
2014-07-13 13:12:47 +00:00
|
|
|
pub mod dead;
|
|
|
|
pub mod dependency_format;
|
|
|
|
pub mod effect;
|
|
|
|
pub mod entry;
|
2015-04-18 15:23:14 +00:00
|
|
|
pub mod free_region;
|
2014-07-13 13:12:47 +00:00
|
|
|
pub mod intrinsicck;
|
2013-01-29 23:16:07 +00:00
|
|
|
pub mod lang_items;
|
2014-07-13 13:12:47 +00:00
|
|
|
pub mod liveness;
|
|
|
|
pub mod mem_categorization;
|
2013-01-29 23:16:07 +00:00
|
|
|
pub mod privacy;
|
2013-06-15 01:21:47 +00:00
|
|
|
pub mod reachable;
|
2014-07-13 13:12:47 +00:00
|
|
|
pub mod region;
|
2014-12-02 17:57:38 +00:00
|
|
|
pub mod recursion_limit;
|
2014-07-13 13:12:47 +00:00
|
|
|
pub mod resolve_lifetime;
|
Add stability inheritance
This commit makes several changes to the stability index infrastructure:
* Stability levels are now inherited lexically, i.e., each item's
stability level becomes the default for any nested items.
* The computed stability level for an item is stored as part of the
metadata. When using an item from an external crate, this data is
looked up and cached.
* The stability lint works from the computed stability level, rather
than manual stability attribute annotations. However, the lint still
checks only a limited set of item uses (e.g., it does not check every
component of a path on import). This will be addressed in a later PR,
as part of issue #8962.
* The stability lint only applies to items originating from external
crates, since the stability index is intended as a promise to
downstream crates.
* The "experimental" lint is now _allow_ by default. This is because
almost all existing crates have been marked "experimental", pending
library stabilization. With inheritance in place, this would generate
a massive explosion of warnings for every Rust program.
The lint should be changed back to deny-by-default after library
stabilization is complete.
* The "deprecated" lint still warns by default.
The net result: we can begin tracking stability index for the standard
libraries as we stabilize, without impacting most clients.
Closes #13540.
2014-06-12 00:23:11 +00:00
|
|
|
pub mod stability;
|
2014-07-13 13:12:47 +00:00
|
|
|
pub mod weak_lang_items;
|
2011-04-19 23:40:46 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 20:50:00 +00:00
|
|
|
pub mod mir;
|
2014-11-16 01:30:33 +00:00
|
|
|
pub mod session;
|
2016-03-22 15:30:57 +00:00
|
|
|
pub mod traits;
|
|
|
|
pub mod ty;
|
2014-06-01 22:58:06 +00:00
|
|
|
|
2013-01-29 23:16:07 +00:00
|
|
|
pub mod util {
|
|
|
|
pub mod common;
|
|
|
|
pub mod ppaux;
|
2014-02-28 22:34:26 +00:00
|
|
|
pub mod nodemap;
|
2015-05-05 22:19:36 +00:00
|
|
|
pub mod fs;
|
2010-08-18 18:34:47 +00:00
|
|
|
}
|
|
|
|
|
2014-06-04 21:35:58 +00:00
|
|
|
// A private module so that macro-expanded idents like
|
|
|
|
// `::rustc::lint::Lint` will also work in `rustc` itself.
|
|
|
|
//
|
|
|
|
// `libstd` uses the same trick.
|
|
|
|
#[doc(hidden)]
|
|
|
|
mod rustc {
|
|
|
|
pub use lint;
|
|
|
|
}
|
2015-04-28 02:48:22 +00:00
|
|
|
|
2015-08-11 18:48:43 +00:00
|
|
|
// FIXME(#27438): right now the unit tests of librustc don't refer to any actual
|
|
|
|
// functions generated in librustc_data_structures (all
|
|
|
|
// references are through generic functions), but statics are
|
|
|
|
// referenced from time to time. Due to this bug we won't
|
|
|
|
// actually correctly link in the statics unless we also
|
|
|
|
// reference a function, so be sure to reference a dummy
|
|
|
|
// function.
|
|
|
|
#[test]
|
|
|
|
fn noop() {
|
|
|
|
rustc_data_structures::__noop_fix_for_27438();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-28 02:48:22 +00:00
|
|
|
// Build the diagnostics array at the end so that the metadata includes error use sites.
|
|
|
|
__build_diagnostic_array! { librustc, DIAGNOSTICS }
|