]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
rustc: Remove a number of mutable fields in cstore
[rust.git] / src / librustc_trans / lib.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! The Rust compiler.
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19       html_root_url = "https://doc.rust-lang.org/nightly/")]
20 #![deny(warnings)]
21
22 #![feature(box_patterns)]
23 #![feature(box_syntax)]
24 #![feature(const_fn)]
25 #![feature(custom_attribute)]
26 #![allow(unused_attributes)]
27 #![feature(i128_type)]
28 #![feature(libc)]
29 #![feature(quote)]
30 #![feature(rustc_diagnostic_macros)]
31 #![feature(slice_patterns)]
32 #![feature(conservative_impl_trait)]
33
34 use rustc::dep_graph::WorkProduct;
35 use syntax_pos::symbol::Symbol;
36
37 extern crate flate2;
38 extern crate libc;
39 extern crate owning_ref;
40 #[macro_use] extern crate rustc;
41 extern crate rustc_allocator;
42 extern crate rustc_back;
43 extern crate rustc_data_structures;
44 extern crate rustc_incremental;
45 extern crate rustc_llvm as llvm;
46 extern crate rustc_platform_intrinsics as intrinsics;
47 extern crate rustc_const_math;
48 #[macro_use]
49 #[no_link]
50 extern crate rustc_bitflags;
51 extern crate rustc_demangle;
52 extern crate jobserver;
53 extern crate num_cpus;
54
55 #[macro_use] extern crate log;
56 #[macro_use] extern crate syntax;
57 extern crate syntax_pos;
58 extern crate rustc_errors as errors;
59 extern crate serialize;
60 #[cfg(windows)]
61 extern crate gcc; // Used to locate MSVC, not gcc :)
62
63 pub use base::trans_crate;
64 pub use back::symbol_names::provide;
65
66 pub use metadata::LlvmMetadataLoader;
67 pub use llvm_util::{init, target_features, print_version, print_passes, print, enable_llvm_debug};
68
69 use std::rc::Rc;
70
71 use rustc::hir::def_id::CrateNum;
72 use rustc::util::nodemap::{FxHashSet, FxHashMap};
73 use rustc::middle::cstore::NativeLibrary;
74
75 pub mod back {
76     mod archive;
77     pub(crate) mod linker;
78     pub mod link;
79     mod lto;
80     pub(crate) mod symbol_export;
81     pub(crate) mod symbol_names;
82     pub mod write;
83     mod rpath;
84 }
85
86 mod diagnostics;
87
88 mod abi;
89 mod adt;
90 mod allocator;
91 mod asm;
92 mod assert_module_sources;
93 mod attributes;
94 mod base;
95 mod builder;
96 mod cabi_aarch64;
97 mod cabi_arm;
98 mod cabi_asmjs;
99 mod cabi_hexagon;
100 mod cabi_mips;
101 mod cabi_mips64;
102 mod cabi_msp430;
103 mod cabi_nvptx;
104 mod cabi_nvptx64;
105 mod cabi_powerpc;
106 mod cabi_powerpc64;
107 mod cabi_s390x;
108 mod cabi_sparc;
109 mod cabi_sparc64;
110 mod cabi_x86;
111 mod cabi_x86_64;
112 mod cabi_x86_win64;
113 mod callee;
114 mod collector;
115 mod common;
116 mod consts;
117 mod context;
118 mod debuginfo;
119 mod declare;
120 mod glue;
121 mod intrinsic;
122 mod llvm_util;
123 mod machine;
124 mod metadata;
125 mod meth;
126 mod mir;
127 mod monomorphize;
128 mod partitioning;
129 mod symbol_names_test;
130 mod time_graph;
131 mod trans_item;
132 mod tvec;
133 mod type_;
134 mod type_of;
135 mod value;
136
137 pub struct ModuleTranslation {
138     /// The name of the module. When the crate may be saved between
139     /// compilations, incremental compilation requires that name be
140     /// unique amongst **all** crates.  Therefore, it should contain
141     /// something unique to this crate (e.g., a module path) as well
142     /// as the crate name and disambiguator.
143     name: String,
144     symbol_name_hash: u64,
145     pub source: ModuleSource,
146     pub kind: ModuleKind,
147 }
148
149 #[derive(Copy, Clone, Debug)]
150 pub enum ModuleKind {
151     Regular,
152     Metadata,
153     Allocator,
154 }
155
156 impl ModuleTranslation {
157     pub fn into_compiled_module(self, emit_obj: bool, emit_bc: bool) -> CompiledModule {
158         let pre_existing = match self.source {
159             ModuleSource::Preexisting(_) => true,
160             ModuleSource::Translated(_) => false,
161         };
162
163         CompiledModule {
164             name: self.name.clone(),
165             kind: self.kind,
166             symbol_name_hash: self.symbol_name_hash,
167             pre_existing,
168             emit_obj,
169             emit_bc,
170         }
171     }
172 }
173
174 impl Drop for ModuleTranslation {
175     fn drop(&mut self) {
176         match self.source {
177             ModuleSource::Preexisting(_) => {
178                 // Nothing to dispose.
179             },
180             ModuleSource::Translated(llvm) => {
181                 unsafe {
182                     llvm::LLVMDisposeModule(llvm.llmod);
183                     llvm::LLVMContextDispose(llvm.llcx);
184                 }
185             },
186         }
187     }
188 }
189
190 #[derive(Debug)]
191 pub struct CompiledModule {
192     pub name: String,
193     pub kind: ModuleKind,
194     pub symbol_name_hash: u64,
195     pub pre_existing: bool,
196     pub emit_obj: bool,
197     pub emit_bc: bool,
198 }
199
200 #[derive(Clone)]
201 pub enum ModuleSource {
202     /// Copy the `.o` files or whatever from the incr. comp. directory.
203     Preexisting(WorkProduct),
204
205     /// Rebuild from this LLVM module.
206     Translated(ModuleLlvm),
207 }
208
209 #[derive(Copy, Clone, Debug)]
210 pub struct ModuleLlvm {
211     llcx: llvm::ContextRef,
212     pub llmod: llvm::ModuleRef,
213 }
214
215 unsafe impl Send for ModuleTranslation { }
216 unsafe impl Sync for ModuleTranslation { }
217
218 pub struct CrateTranslation {
219     pub crate_name: Symbol,
220     pub modules: Vec<CompiledModule>,
221     allocator_module: Option<CompiledModule>,
222     pub link: rustc::middle::cstore::LinkMeta,
223     pub metadata: rustc::middle::cstore::EncodedMetadata,
224     windows_subsystem: Option<String>,
225     linker_info: back::linker::LinkerInfo,
226     crate_info: CrateInfo,
227 }
228
229 // Misc info we load from metadata to persist beyond the tcx
230 pub struct CrateInfo {
231     panic_runtime: Option<CrateNum>,
232     compiler_builtins: Option<CrateNum>,
233     profiler_runtime: Option<CrateNum>,
234     sanitizer_runtime: Option<CrateNum>,
235     is_no_builtins: FxHashSet<CrateNum>,
236     native_libraries: FxHashMap<CrateNum, Rc<Vec<NativeLibrary>>>,
237     used_libraries: Rc<Vec<NativeLibrary>>,
238     link_args: Rc<Vec<String>>,
239 }
240
241 __build_diagnostic_array! { librustc_trans, DIAGNOSTICS }