63fcbcf3ce
Conflicts: mk/tests.mk src/liballoc/arc.rs src/liballoc/boxed.rs src/liballoc/rc.rs src/libcollections/bit.rs src/libcollections/btree/map.rs src/libcollections/btree/set.rs src/libcollections/dlist.rs src/libcollections/ring_buf.rs src/libcollections/slice.rs src/libcollections/str.rs src/libcollections/string.rs src/libcollections/vec.rs src/libcollections/vec_map.rs src/libcore/any.rs src/libcore/array.rs src/libcore/borrow.rs src/libcore/error.rs src/libcore/fmt/mod.rs src/libcore/iter.rs src/libcore/marker.rs src/libcore/ops.rs src/libcore/result.rs src/libcore/slice.rs src/libcore/str/mod.rs src/libregex/lib.rs src/libregex/re.rs src/librustc/lint/builtin.rs src/libstd/collections/hash/map.rs src/libstd/collections/hash/set.rs src/libstd/sync/mpsc/mod.rs src/libstd/sync/mutex.rs src/libstd/sync/poison.rs src/libstd/sync/rwlock.rs src/libsyntax/feature_gate.rs src/libsyntax/test.rs
155 lines
3.6 KiB
Rust
155 lines
3.6 KiB
Rust
// Copyright 2012-2013 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.
|
|
|
|
//! The Rust compiler.
|
|
//!
|
|
//! # Note
|
|
//!
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
#![crate_name = "rustc"]
|
|
#![unstable(feature = "rustc_private")]
|
|
#![feature(staged_api)]
|
|
#![staged_api]
|
|
#![crate_type = "dylib"]
|
|
#![crate_type = "rlib"]
|
|
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
|
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
|
html_root_url = "http://doc.rust-lang.org/nightly/")]
|
|
|
|
#![allow(unknown_features)]
|
|
#![feature(quote)]
|
|
#![feature(slicing_syntax, unsafe_destructor)]
|
|
#![feature(box_syntax)]
|
|
#![allow(unknown_features)] #![feature(int_uint)]
|
|
#![feature(rustc_diagnostic_macros)]
|
|
#![feature(collections)]
|
|
#![feature(core)]
|
|
#![feature(io)]
|
|
#![feature(libc)]
|
|
#![feature(os)]
|
|
#![feature(path)]
|
|
#![feature(rustc_private)]
|
|
#![feature(std_misc)]
|
|
#![feature(unicode)]
|
|
#![feature(hash)]
|
|
#![cfg_attr(test, feature(test))]
|
|
|
|
extern crate arena;
|
|
extern crate flate;
|
|
extern crate fmt_macros;
|
|
extern crate getopts;
|
|
extern crate graphviz;
|
|
extern crate libc;
|
|
extern crate rustc_llvm;
|
|
extern crate rustc_back;
|
|
extern crate serialize;
|
|
extern crate rbml;
|
|
extern crate collections;
|
|
#[macro_use] extern crate log;
|
|
#[macro_use] extern crate syntax;
|
|
#[macro_use] #[no_link] extern crate rustc_bitflags;
|
|
|
|
extern crate "serialize" as rustc_serialize; // used by deriving
|
|
|
|
#[cfg(test)]
|
|
extern crate test;
|
|
|
|
pub use rustc_llvm as llvm;
|
|
|
|
// NB: This module needs to be declared first so diagnostics are
|
|
// registered before they are used.
|
|
pub mod diagnostics;
|
|
|
|
pub mod back {
|
|
pub use rustc_back::abi;
|
|
pub use rustc_back::archive;
|
|
pub use rustc_back::arm;
|
|
pub use rustc_back::mips;
|
|
pub use rustc_back::mipsel;
|
|
pub use rustc_back::rpath;
|
|
pub use rustc_back::svh;
|
|
pub use rustc_back::target_strs;
|
|
pub use rustc_back::x86;
|
|
pub use rustc_back::x86_64;
|
|
}
|
|
|
|
pub mod middle {
|
|
pub mod astconv_util;
|
|
pub mod astencode;
|
|
pub mod cfg;
|
|
pub mod check_const;
|
|
pub mod check_static_recursion;
|
|
pub mod check_loop;
|
|
pub mod check_match;
|
|
pub mod check_rvalues;
|
|
pub mod check_static;
|
|
pub mod const_eval;
|
|
pub mod dataflow;
|
|
pub mod dead;
|
|
pub mod def;
|
|
pub mod dependency_format;
|
|
pub mod effect;
|
|
pub mod entry;
|
|
pub mod expr_use_visitor;
|
|
pub mod fast_reject;
|
|
pub mod graph;
|
|
pub mod intrinsicck;
|
|
pub mod infer;
|
|
pub mod lang_items;
|
|
pub mod liveness;
|
|
pub mod mem_categorization;
|
|
pub mod pat_util;
|
|
pub mod privacy;
|
|
pub mod reachable;
|
|
pub mod region;
|
|
pub mod recursion_limit;
|
|
pub mod resolve_lifetime;
|
|
pub mod stability;
|
|
pub mod subst;
|
|
pub mod traits;
|
|
pub mod ty;
|
|
pub mod ty_fold;
|
|
pub mod ty_walk;
|
|
pub mod weak_lang_items;
|
|
}
|
|
|
|
pub mod metadata;
|
|
|
|
pub mod session;
|
|
|
|
pub mod plugin;
|
|
|
|
pub mod lint;
|
|
|
|
pub mod util {
|
|
pub use rustc_back::fs;
|
|
pub use rustc_back::sha2;
|
|
|
|
pub mod common;
|
|
pub mod ppaux;
|
|
pub mod nodemap;
|
|
pub mod snapshot_vec;
|
|
pub mod lev_distance;
|
|
}
|
|
|
|
pub mod lib {
|
|
pub use llvm;
|
|
}
|
|
|
|
// 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;
|
|
}
|