Remove not(stage0) from deny(warnings) Historically this was done to accommodate bugs in lints, but there hasn't been a bug in a lint since this feature was added which the warnings affected. Let's completely purge warnings from all our stages by denying warnings in all stages. This will also assist in tracking down `stage0` code to be removed whenever we're updating the bootstrap compiler.
183 lines
4.2 KiB
Rust
183 lines
4.2 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_trans"]
|
|
#![unstable(feature = "rustc_private", issue = "27812")]
|
|
#![crate_type = "dylib"]
|
|
#![crate_type = "rlib"]
|
|
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
|
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
|
|
html_root_url = "https://doc.rust-lang.org/nightly/")]
|
|
#![deny(warnings)]
|
|
|
|
#![feature(associated_consts)]
|
|
#![feature(box_patterns)]
|
|
#![feature(box_syntax)]
|
|
#![feature(const_fn)]
|
|
#![feature(custom_attribute)]
|
|
#![allow(unused_attributes)]
|
|
#![feature(libc)]
|
|
#![feature(quote)]
|
|
#![feature(rustc_diagnostic_macros)]
|
|
#![feature(rustc_private)]
|
|
#![feature(slice_patterns)]
|
|
#![feature(staged_api)]
|
|
#![feature(unicode)]
|
|
#![feature(conservative_impl_trait)]
|
|
|
|
use rustc::dep_graph::WorkProduct;
|
|
|
|
extern crate arena;
|
|
extern crate flate;
|
|
extern crate getopts;
|
|
extern crate graphviz;
|
|
extern crate libc;
|
|
#[macro_use] extern crate rustc;
|
|
extern crate rustc_back;
|
|
extern crate rustc_data_structures;
|
|
extern crate rustc_incremental;
|
|
pub extern crate rustc_llvm as llvm;
|
|
extern crate rustc_platform_intrinsics as intrinsics;
|
|
extern crate serialize;
|
|
extern crate rustc_const_math;
|
|
extern crate rustc_const_eval;
|
|
#[macro_use]
|
|
#[no_link]
|
|
extern crate rustc_bitflags;
|
|
extern crate rustc_i128;
|
|
|
|
#[macro_use] extern crate log;
|
|
#[macro_use] extern crate syntax;
|
|
extern crate syntax_pos;
|
|
extern crate rustc_errors as errors;
|
|
|
|
pub use rustc::session;
|
|
pub use rustc::middle;
|
|
pub use rustc::lint;
|
|
pub use rustc::util;
|
|
|
|
pub use base::trans_crate;
|
|
pub use disr::Disr;
|
|
|
|
pub mod back {
|
|
pub use rustc::hir::svh;
|
|
|
|
pub mod archive;
|
|
pub mod linker;
|
|
pub mod link;
|
|
pub mod lto;
|
|
pub mod symbol_export;
|
|
pub mod symbol_names;
|
|
pub mod write;
|
|
pub mod msvc;
|
|
pub mod rpath;
|
|
}
|
|
|
|
pub mod diagnostics;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
mod abi;
|
|
mod adt;
|
|
mod asm;
|
|
mod assert_module_sources;
|
|
mod attributes;
|
|
mod base;
|
|
mod builder;
|
|
mod cabi_aarch64;
|
|
mod cabi_arm;
|
|
mod cabi_asmjs;
|
|
mod cabi_mips;
|
|
mod cabi_mips64;
|
|
mod cabi_msp430;
|
|
mod cabi_nvptx;
|
|
mod cabi_nvptx64;
|
|
mod cabi_powerpc;
|
|
mod cabi_powerpc64;
|
|
mod cabi_s390x;
|
|
mod cabi_sparc;
|
|
mod cabi_sparc64;
|
|
mod cabi_x86;
|
|
mod cabi_x86_64;
|
|
mod cabi_x86_win64;
|
|
mod callee;
|
|
mod cleanup;
|
|
mod collector;
|
|
mod common;
|
|
mod consts;
|
|
mod context;
|
|
mod debuginfo;
|
|
mod declare;
|
|
mod disr;
|
|
mod glue;
|
|
mod intrinsic;
|
|
mod machine;
|
|
mod meth;
|
|
mod mir;
|
|
mod monomorphize;
|
|
mod partitioning;
|
|
mod symbol_map;
|
|
mod symbol_names_test;
|
|
mod trans_item;
|
|
mod tvec;
|
|
mod type_;
|
|
mod type_of;
|
|
mod value;
|
|
|
|
#[derive(Clone)]
|
|
pub struct ModuleTranslation {
|
|
/// The name of the module. When the crate may be saved between
|
|
/// compilations, incremental compilation requires that name be
|
|
/// unique amongst **all** crates. Therefore, it should contain
|
|
/// something unique to this crate (e.g., a module path) as well
|
|
/// as the crate name and disambiguator.
|
|
pub name: String,
|
|
pub symbol_name_hash: u64,
|
|
pub source: ModuleSource,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
pub enum ModuleSource {
|
|
/// Copy the `.o` files or whatever from the incr. comp. directory.
|
|
Preexisting(WorkProduct),
|
|
|
|
/// Rebuild from this LLVM module.
|
|
Translated(ModuleLlvm),
|
|
}
|
|
|
|
#[derive(Copy, Clone)]
|
|
pub struct ModuleLlvm {
|
|
pub llcx: llvm::ContextRef,
|
|
pub llmod: llvm::ModuleRef,
|
|
}
|
|
|
|
unsafe impl Send for ModuleTranslation { }
|
|
unsafe impl Sync for ModuleTranslation { }
|
|
|
|
pub struct CrateTranslation {
|
|
pub modules: Vec<ModuleTranslation>,
|
|
pub metadata_module: ModuleTranslation,
|
|
pub link: middle::cstore::LinkMeta,
|
|
pub metadata: Vec<u8>,
|
|
pub exported_symbols: back::symbol_export::ExportedSymbols,
|
|
pub no_builtins: bool,
|
|
pub windows_subsystem: Option<String>,
|
|
pub linker_info: back::linker::LinkerInfo
|
|
}
|
|
|
|
__build_diagnostic_array! { librustc_trans, DIAGNOSTICS }
|