Rollup of 17 pull requests Successful merges: - #51962 (Provide llvm-strip in llvm-tools component) - #52003 (Implement `Option::replace` in the core library) - #52156 (Update std::ascii::ASCIIExt deprecation notes) - #52280 (llvm-tools-preview: fix build-manifest) - #52290 (Deny bare trait objects in src/librustc_save_analysis) - #52293 (Deny bare trait objects in librustc_typeck) - #52299 (Deny bare trait objects in src/libserialize) - #52300 (Deny bare trait objects in librustc_target and libtest) - #52302 (Deny bare trait objects in the rest of rust) - #52310 (Backport 1.27.1 release notes to master) - #52315 (Resolve FIXME(#27942)) - #52316 (task: remove wrong comments about non-existent LocalWake trait) - #52322 (Update llvm-rebuild-trigger in light of LLVM 7 upgrade) - #52330 (Don't silently ignore invalid data in target spec) - #52333 (CI: Enable core dump on Linux, and print their stack trace on segfault. ) - #52346 (Fix typo in improper_ctypes suggestion) - #52350 (Bump bootstrap compiler to 1.28.0-beta.10) Failed merges: r? @ghost
88 lines
2.3 KiB
Rust
88 lines
2.3 KiB
Rust
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
// 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.
|
|
|
|
/*!
|
|
|
|
Rust MIR: a lowered representation of Rust. Also: an experiment!
|
|
|
|
*/
|
|
|
|
#![deny(bare_trait_objects)]
|
|
|
|
#![feature(slice_patterns)]
|
|
#![feature(slice_sort_by_cached_key)]
|
|
#![feature(from_ref)]
|
|
#![feature(box_patterns)]
|
|
#![feature(box_syntax)]
|
|
#![feature(catch_expr)]
|
|
#![feature(crate_visibility_modifier)]
|
|
#![feature(const_fn)]
|
|
#![feature(core_intrinsics)]
|
|
#![feature(decl_macro)]
|
|
#![feature(fs_read_write)]
|
|
#![feature(macro_vis_matcher)]
|
|
#![feature(exhaustive_patterns)]
|
|
#![feature(range_contains)]
|
|
#![feature(rustc_diagnostic_macros)]
|
|
#![feature(crate_visibility_modifier)]
|
|
#![feature(never_type)]
|
|
#![feature(specialization)]
|
|
#![feature(try_trait)]
|
|
#![feature(unicode_internals)]
|
|
|
|
#![recursion_limit="256"]
|
|
|
|
extern crate arena;
|
|
|
|
#[macro_use]
|
|
extern crate bitflags;
|
|
#[macro_use] extern crate log;
|
|
extern crate either;
|
|
extern crate graphviz as dot;
|
|
extern crate polonius_engine;
|
|
#[macro_use]
|
|
extern crate rustc;
|
|
#[macro_use] extern crate rustc_data_structures;
|
|
extern crate serialize as rustc_serialize;
|
|
extern crate rustc_errors;
|
|
#[macro_use]
|
|
extern crate syntax;
|
|
extern crate syntax_pos;
|
|
extern crate rustc_target;
|
|
extern crate log_settings;
|
|
extern crate rustc_apfloat;
|
|
extern crate byteorder;
|
|
extern crate core;
|
|
|
|
mod diagnostics;
|
|
|
|
mod borrow_check;
|
|
mod build;
|
|
mod dataflow;
|
|
mod hair;
|
|
mod shim;
|
|
pub mod transform;
|
|
pub mod util;
|
|
pub mod interpret;
|
|
pub mod monomorphize;
|
|
|
|
pub use hair::pattern::check_crate as matchck_crate;
|
|
use rustc::ty::query::Providers;
|
|
|
|
pub fn provide(providers: &mut Providers) {
|
|
borrow_check::provide(providers);
|
|
shim::provide(providers);
|
|
transform::provide(providers);
|
|
providers.const_eval = interpret::const_eval_provider;
|
|
providers.const_value_to_allocation = interpret::const_value_to_allocation_provider;
|
|
providers.check_match = hair::pattern::check_match;
|
|
}
|
|
|
|
__build_diagnostic_array! { librustc_mir, DIAGNOSTICS }
|