2018-10-01 16:07:04 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
|
|
|
|
#![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/")]
|
|
|
|
|
|
|
|
#![feature(box_patterns)]
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
#![feature(custom_attribute)]
|
2018-10-02 08:49:54 +00:00
|
|
|
#![feature(libc)]
|
2018-10-01 16:07:04 +00:00
|
|
|
#![feature(nll)]
|
|
|
|
#![allow(unused_attributes)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![feature(quote)]
|
|
|
|
#![feature(rustc_diagnostic_macros)]
|
|
|
|
|
|
|
|
#![recursion_limit="256"]
|
|
|
|
|
|
|
|
extern crate rustc;
|
|
|
|
extern crate rustc_target;
|
|
|
|
extern crate rustc_mir;
|
|
|
|
extern crate syntax;
|
|
|
|
extern crate syntax_pos;
|
|
|
|
extern crate rustc_data_structures;
|
2018-10-02 08:49:54 +00:00
|
|
|
extern crate libc;
|
2018-10-01 16:07:04 +00:00
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use rustc::dep_graph::WorkProduct;
|
|
|
|
use rustc::session::config::{OutputFilenames, OutputType};
|
|
|
|
|
|
|
|
pub mod common;
|
|
|
|
pub mod interfaces;
|
|
|
|
|
|
|
|
pub struct ModuleCodegen<M> {
|
|
|
|
/// 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.
|
|
|
|
/// We currently generate these names via CodegenUnit::build_cgu_name().
|
|
|
|
pub name: String,
|
|
|
|
pub module_llvm: M,
|
|
|
|
pub kind: ModuleKind,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const RLIB_BYTECODE_EXTENSION: &str = "bc.z";
|
|
|
|
|
|
|
|
impl<M> ModuleCodegen<M> {
|
|
|
|
pub fn into_compiled_module(self,
|
|
|
|
emit_obj: bool,
|
|
|
|
emit_bc: bool,
|
|
|
|
emit_bc_compressed: bool,
|
|
|
|
outputs: &OutputFilenames) -> CompiledModule {
|
|
|
|
let object = if emit_obj {
|
|
|
|
Some(outputs.temp_path(OutputType::Object, Some(&self.name)))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let bytecode = if emit_bc {
|
|
|
|
Some(outputs.temp_path(OutputType::Bitcode, Some(&self.name)))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let bytecode_compressed = if emit_bc_compressed {
|
|
|
|
Some(outputs.temp_path(OutputType::Bitcode, Some(&self.name))
|
|
|
|
.with_extension(RLIB_BYTECODE_EXTENSION))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
CompiledModule {
|
|
|
|
name: self.name.clone(),
|
|
|
|
kind: self.kind,
|
|
|
|
object,
|
|
|
|
bytecode,
|
|
|
|
bytecode_compressed,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct CompiledModule {
|
|
|
|
pub name: String,
|
|
|
|
pub kind: ModuleKind,
|
|
|
|
pub object: Option<PathBuf>,
|
|
|
|
pub bytecode: Option<PathBuf>,
|
|
|
|
pub bytecode_compressed: Option<PathBuf>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CachedModuleCodegen {
|
|
|
|
pub name: String,
|
|
|
|
pub source: WorkProduct,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
pub enum ModuleKind {
|
|
|
|
Regular,
|
|
|
|
Metadata,
|
|
|
|
Allocator,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
__build_diagnostic_array! { librustc_codegen_ssa, DIAGNOSTICS }
|