]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_ssa/lib.rs
e2917578c0ece4c3c098113fd1601ffa5d1f418c
[rust.git] / src / librustc_codegen_ssa / lib.rs
1 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
2
3 #![feature(box_patterns)]
4 #![feature(box_syntax)]
5 #![feature(core_intrinsics)]
6 #![feature(custom_attribute)]
7 #![feature(libc)]
8 #![feature(rustc_diagnostic_macros)]
9 #![feature(stmt_expr_attributes)]
10 #![feature(try_blocks)]
11 #![feature(in_band_lifetimes)]
12 #![feature(nll)]
13 #![feature(trusted_len)]
14 #![allow(unused_attributes)]
15 #![allow(dead_code)]
16 #![deny(rust_2018_idioms)]
17 #![cfg_attr(not(stage0), deny(internal))]
18 #![allow(explicit_outlives_requirements)]
19
20 #![recursion_limit="256"]
21
22 //! This crate contains codegen code that is used by all codegen backends (LLVM and others).
23 //! The backend-agnostic functions of this crate use functions defined in various traits that
24 //! have to be implemented by each backends.
25
26 #[macro_use] extern crate log;
27 #[macro_use] extern crate rustc;
28 #[macro_use] extern crate rustc_data_structures;
29 #[macro_use] extern crate syntax;
30
31 use std::path::PathBuf;
32 use rustc::dep_graph::WorkProduct;
33 use rustc::session::config::{OutputFilenames, OutputType};
34 use rustc::middle::lang_items::LangItem;
35 use rustc::hir::def_id::CrateNum;
36 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
37 use rustc_data_structures::sync::Lrc;
38 use rustc_data_structures::svh::Svh;
39 use rustc::middle::cstore::{LibSource, CrateSource, NativeLibrary};
40 use syntax_pos::symbol::Symbol;
41
42 // N.B., this module needs to be declared first so diagnostics are
43 // registered before they are used.
44 mod diagnostics;
45
46 pub mod common;
47 pub mod traits;
48 pub mod mir;
49 pub mod debuginfo;
50 pub mod base;
51 pub mod callee;
52 pub mod glue;
53 pub mod meth;
54 pub mod mono_item;
55 pub mod back;
56
57 pub struct ModuleCodegen<M> {
58     /// The name of the module. When the crate may be saved between
59     /// compilations, incremental compilation requires that name be
60     /// unique amongst **all** crates. Therefore, it should contain
61     /// something unique to this crate (e.g., a module path) as well
62     /// as the crate name and disambiguator.
63     /// We currently generate these names via CodegenUnit::build_cgu_name().
64     pub name: String,
65     pub module_llvm: M,
66     pub kind: ModuleKind,
67 }
68
69 pub const RLIB_BYTECODE_EXTENSION: &str = "bc.z";
70
71 impl<M> ModuleCodegen<M> {
72     pub fn into_compiled_module(self,
73                             emit_obj: bool,
74                             emit_bc: bool,
75                             emit_bc_compressed: bool,
76                             outputs: &OutputFilenames) -> CompiledModule {
77         let object = if emit_obj {
78             Some(outputs.temp_path(OutputType::Object, Some(&self.name)))
79         } else {
80             None
81         };
82         let bytecode = if emit_bc {
83             Some(outputs.temp_path(OutputType::Bitcode, Some(&self.name)))
84         } else {
85             None
86         };
87         let bytecode_compressed = if emit_bc_compressed {
88             Some(outputs.temp_path(OutputType::Bitcode, Some(&self.name))
89                     .with_extension(RLIB_BYTECODE_EXTENSION))
90         } else {
91             None
92         };
93
94         CompiledModule {
95             name: self.name.clone(),
96             kind: self.kind,
97             object,
98             bytecode,
99             bytecode_compressed,
100         }
101     }
102 }
103
104 #[derive(Debug)]
105 pub struct CompiledModule {
106     pub name: String,
107     pub kind: ModuleKind,
108     pub object: Option<PathBuf>,
109     pub bytecode: Option<PathBuf>,
110     pub bytecode_compressed: Option<PathBuf>,
111 }
112
113 pub struct CachedModuleCodegen {
114     pub name: String,
115     pub source: WorkProduct,
116 }
117
118 #[derive(Copy, Clone, Debug, PartialEq)]
119 pub enum ModuleKind {
120     Regular,
121     Metadata,
122     Allocator,
123 }
124
125 bitflags::bitflags! {
126     pub struct MemFlags: u8 {
127         const VOLATILE = 1 << 0;
128         const NONTEMPORAL = 1 << 1;
129         const UNALIGNED = 1 << 2;
130     }
131 }
132
133 /// Misc info we load from metadata to persist beyond the tcx.
134 pub struct CrateInfo {
135     pub panic_runtime: Option<CrateNum>,
136     pub compiler_builtins: Option<CrateNum>,
137     pub profiler_runtime: Option<CrateNum>,
138     pub sanitizer_runtime: Option<CrateNum>,
139     pub is_no_builtins: FxHashSet<CrateNum>,
140     pub native_libraries: FxHashMap<CrateNum, Lrc<Vec<NativeLibrary>>>,
141     pub crate_name: FxHashMap<CrateNum, String>,
142     pub used_libraries: Lrc<Vec<NativeLibrary>>,
143     pub link_args: Lrc<Vec<String>>,
144     pub used_crate_source: FxHashMap<CrateNum, Lrc<CrateSource>>,
145     pub used_crates_static: Vec<(CrateNum, LibSource)>,
146     pub used_crates_dynamic: Vec<(CrateNum, LibSource)>,
147     pub lang_item_to_crate: FxHashMap<LangItem, CrateNum>,
148     pub missing_lang_items: FxHashMap<CrateNum, Vec<LangItem>>,
149 }
150
151
152 pub struct CodegenResults {
153     pub crate_name: Symbol,
154     pub modules: Vec<CompiledModule>,
155     pub allocator_module: Option<CompiledModule>,
156     pub metadata_module: CompiledModule,
157     pub crate_hash: Svh,
158     pub metadata: rustc::middle::cstore::EncodedMetadata,
159     pub windows_subsystem: Option<String>,
160     pub linker_info: back::linker::LinkerInfo,
161     pub crate_info: CrateInfo,
162 }
163
164 __build_diagnostic_array! { librustc_codegen_ssa, DIAGNOSTICS }