]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_llvm/lib.rs
Unify API of `Scalar` and `ScalarMaybeUndef`
[rust.git] / src / librustc_codegen_llvm / 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
21 #![feature(box_patterns)]
22 #![feature(box_syntax)]
23 #![feature(crate_visibility_modifier)]
24 #![feature(custom_attribute)]
25 #![feature(extern_types)]
26 #![feature(fs_read_write)]
27 #![feature(in_band_lifetimes)]
28 #![allow(unused_attributes)]
29 #![feature(libc)]
30 #![feature(quote)]
31 #![feature(range_contains)]
32 #![feature(rustc_diagnostic_macros)]
33 #![feature(slice_sort_by_cached_key)]
34 #![feature(optin_builtin_traits)]
35 #![feature(concat_idents)]
36 #![feature(link_args)]
37 #![feature(static_nobundle)]
38
39 use back::write::create_target_machine;
40 use rustc::dep_graph::WorkProduct;
41 use syntax_pos::symbol::Symbol;
42
43 #[macro_use] extern crate bitflags;
44 extern crate flate2;
45 extern crate libc;
46 #[macro_use] extern crate rustc;
47 extern crate jobserver;
48 extern crate num_cpus;
49 extern crate rustc_mir;
50 extern crate rustc_allocator;
51 extern crate rustc_apfloat;
52 extern crate rustc_target;
53 #[macro_use] extern crate rustc_data_structures;
54 extern crate rustc_demangle;
55 extern crate rustc_incremental;
56 extern crate rustc_llvm;
57 extern crate rustc_platform_intrinsics as intrinsics;
58 extern crate rustc_codegen_utils;
59
60 #[macro_use] extern crate log;
61 #[macro_use] extern crate syntax;
62 extern crate syntax_pos;
63 extern crate rustc_errors as errors;
64 extern crate serialize;
65 extern crate cc; // Used to locate MSVC
66 extern crate tempfile;
67
68 use back::bytecode::RLIB_BYTECODE_EXTENSION;
69
70 pub use llvm_util::target_features;
71
72 use std::any::Any;
73 use std::path::PathBuf;
74 use std::sync::mpsc;
75 use rustc_data_structures::sync::Lrc;
76
77 use rustc::dep_graph::DepGraph;
78 use rustc::hir::def_id::CrateNum;
79 use rustc::middle::cstore::MetadataLoader;
80 use rustc::middle::cstore::{NativeLibrary, CrateSource, LibSource};
81 use rustc::middle::lang_items::LangItem;
82 use rustc::session::{Session, CompileIncomplete};
83 use rustc::session::config::{OutputFilenames, OutputType, PrintRequest};
84 use rustc::ty::{self, TyCtxt};
85 use rustc::util::time_graph;
86 use rustc::util::nodemap::{FxHashSet, FxHashMap};
87 use rustc_mir::monomorphize;
88 use rustc_codegen_utils::codegen_backend::CodegenBackend;
89
90 mod diagnostics;
91
92 mod back {
93     pub use rustc_codegen_utils::symbol_names;
94     mod archive;
95     pub mod bytecode;
96     mod command;
97     pub mod linker;
98     pub mod link;
99     mod lto;
100     pub mod symbol_export;
101     pub mod write;
102     mod rpath;
103     pub mod wasm;
104 }
105
106 mod abi;
107 mod allocator;
108 mod asm;
109 mod attributes;
110 mod base;
111 mod builder;
112 mod callee;
113 mod common;
114 mod consts;
115 mod context;
116 mod debuginfo;
117 mod declare;
118 mod glue;
119 mod intrinsic;
120 pub mod llvm;
121 mod llvm_util;
122 mod metadata;
123 mod meth;
124 mod mir;
125 mod mono_item;
126 mod type_;
127 mod type_of;
128 mod value;
129
130 pub struct LlvmCodegenBackend(());
131
132 impl !Send for LlvmCodegenBackend {} // Llvm is on a per-thread basis
133 impl !Sync for LlvmCodegenBackend {}
134
135 impl LlvmCodegenBackend {
136     pub fn new() -> Box<dyn CodegenBackend> {
137         box LlvmCodegenBackend(())
138     }
139 }
140
141 impl CodegenBackend for LlvmCodegenBackend {
142     fn init(&self, sess: &Session) {
143         llvm_util::init(sess); // Make sure llvm is inited
144     }
145
146     fn print(&self, req: PrintRequest, sess: &Session) {
147         match req {
148             PrintRequest::RelocationModels => {
149                 println!("Available relocation models:");
150                 for &(name, _) in back::write::RELOC_MODEL_ARGS.iter() {
151                     println!("    {}", name);
152                 }
153                 println!("");
154             }
155             PrintRequest::CodeModels => {
156                 println!("Available code models:");
157                 for &(name, _) in back::write::CODE_GEN_MODEL_ARGS.iter(){
158                     println!("    {}", name);
159                 }
160                 println!("");
161             }
162             PrintRequest::TlsModels => {
163                 println!("Available TLS models:");
164                 for &(name, _) in back::write::TLS_MODEL_ARGS.iter(){
165                     println!("    {}", name);
166                 }
167                 println!("");
168             }
169             req => llvm_util::print(req, sess),
170         }
171     }
172
173     fn print_passes(&self) {
174         llvm_util::print_passes();
175     }
176
177     fn print_version(&self) {
178         llvm_util::print_version();
179     }
180
181     fn diagnostics(&self) -> &[(&'static str, &'static str)] {
182         &DIAGNOSTICS
183     }
184
185     fn target_features(&self, sess: &Session) -> Vec<Symbol> {
186         target_features(sess)
187     }
188
189     fn metadata_loader(&self) -> Box<dyn MetadataLoader + Sync> {
190         box metadata::LlvmMetadataLoader
191     }
192
193     fn provide(&self, providers: &mut ty::query::Providers) {
194         back::symbol_names::provide(providers);
195         back::symbol_export::provide(providers);
196         base::provide(providers);
197         attributes::provide(providers);
198     }
199
200     fn provide_extern(&self, providers: &mut ty::query::Providers) {
201         back::symbol_export::provide_extern(providers);
202         base::provide_extern(providers);
203         attributes::provide_extern(providers);
204     }
205
206     fn codegen_crate<'a, 'tcx>(
207         &self,
208         tcx: TyCtxt<'a, 'tcx, 'tcx>,
209         rx: mpsc::Receiver<Box<dyn Any + Send>>
210     ) -> Box<dyn Any> {
211         box base::codegen_crate(tcx, rx)
212     }
213
214     fn join_codegen_and_link(
215         &self,
216         ongoing_codegen: Box<dyn Any>,
217         sess: &Session,
218         dep_graph: &DepGraph,
219         outputs: &OutputFilenames,
220     ) -> Result<(), CompileIncomplete>{
221         use rustc::util::common::time;
222         let (ongoing_codegen, work_products) =
223             ongoing_codegen.downcast::<::back::write::OngoingCodegen>()
224                 .expect("Expected LlvmCodegenBackend's OngoingCodegen, found Box<Any>")
225                 .join(sess);
226         if sess.opts.debugging_opts.incremental_info {
227             back::write::dump_incremental_data(&ongoing_codegen);
228         }
229
230         time(sess,
231              "serialize work products",
232              move || rustc_incremental::save_work_product_index(sess, &dep_graph, work_products));
233
234         sess.compile_status()?;
235
236         if !sess.opts.output_types.keys().any(|&i| i == OutputType::Exe ||
237                                                    i == OutputType::Metadata) {
238             return Ok(());
239         }
240
241         // Run the linker on any artifacts that resulted from the LLVM run.
242         // This should produce either a finished executable or library.
243         time(sess, "linking", || {
244             back::link::link_binary(sess, &ongoing_codegen,
245                                     outputs, &ongoing_codegen.crate_name.as_str());
246         });
247
248         // Now that we won't touch anything in the incremental compilation directory
249         // any more, we can finalize it (which involves renaming it)
250         rustc_incremental::finalize_session_directory(sess, ongoing_codegen.link.crate_hash);
251
252         Ok(())
253     }
254 }
255
256 /// This is the entrypoint for a hot plugged rustc_codegen_llvm
257 #[no_mangle]
258 pub fn __rustc_codegen_backend() -> Box<dyn CodegenBackend> {
259     LlvmCodegenBackend::new()
260 }
261
262 struct ModuleCodegen {
263     /// The name of the module. When the crate may be saved between
264     /// compilations, incremental compilation requires that name be
265     /// unique amongst **all** crates.  Therefore, it should contain
266     /// something unique to this crate (e.g., a module path) as well
267     /// as the crate name and disambiguator.
268     name: String,
269     llmod_id: String,
270     source: ModuleSource,
271     kind: ModuleKind,
272 }
273
274 #[derive(Copy, Clone, Debug, PartialEq)]
275 enum ModuleKind {
276     Regular,
277     Metadata,
278     Allocator,
279 }
280
281 impl ModuleCodegen {
282     fn llvm(&self) -> Option<&ModuleLlvm> {
283         match self.source {
284             ModuleSource::Codegened(ref llvm) => Some(llvm),
285             ModuleSource::Preexisting(_) => None,
286         }
287     }
288
289     fn into_compiled_module(self,
290                                 emit_obj: bool,
291                                 emit_bc: bool,
292                                 emit_bc_compressed: bool,
293                                 outputs: &OutputFilenames) -> CompiledModule {
294         let pre_existing = match self.source {
295             ModuleSource::Preexisting(_) => true,
296             ModuleSource::Codegened(_) => false,
297         };
298         let object = if emit_obj {
299             Some(outputs.temp_path(OutputType::Object, Some(&self.name)))
300         } else {
301             None
302         };
303         let bytecode = if emit_bc {
304             Some(outputs.temp_path(OutputType::Bitcode, Some(&self.name)))
305         } else {
306             None
307         };
308         let bytecode_compressed = if emit_bc_compressed {
309             Some(outputs.temp_path(OutputType::Bitcode, Some(&self.name))
310                     .with_extension(RLIB_BYTECODE_EXTENSION))
311         } else {
312             None
313         };
314
315         CompiledModule {
316             llmod_id: self.llmod_id,
317             name: self.name.clone(),
318             kind: self.kind,
319             pre_existing,
320             object,
321             bytecode,
322             bytecode_compressed,
323         }
324     }
325 }
326
327 #[derive(Debug)]
328 struct CompiledModule {
329     name: String,
330     llmod_id: String,
331     kind: ModuleKind,
332     pre_existing: bool,
333     object: Option<PathBuf>,
334     bytecode: Option<PathBuf>,
335     bytecode_compressed: Option<PathBuf>,
336 }
337
338 enum ModuleSource {
339     /// Copy the `.o` files or whatever from the incr. comp. directory.
340     Preexisting(WorkProduct),
341
342     /// Rebuild from this LLVM module.
343     Codegened(ModuleLlvm),
344 }
345
346 struct ModuleLlvm {
347     llcx: &'static mut llvm::Context,
348     llmod_raw: *const llvm::Module,
349     tm: &'static mut llvm::TargetMachine,
350 }
351
352 unsafe impl Send for ModuleLlvm { }
353 unsafe impl Sync for ModuleLlvm { }
354
355 impl ModuleLlvm {
356     fn new(sess: &Session, mod_name: &str) -> Self {
357         unsafe {
358             let llcx = llvm::LLVMRustContextCreate(sess.fewer_names());
359             let llmod_raw = context::create_module(sess, llcx, mod_name) as *const _;
360
361             ModuleLlvm {
362                 llmod_raw,
363                 llcx,
364                 tm: create_target_machine(sess, false),
365             }
366         }
367     }
368
369     fn llmod(&self) -> &llvm::Module {
370         unsafe {
371             &*self.llmod_raw
372         }
373     }
374 }
375
376 impl Drop for ModuleLlvm {
377     fn drop(&mut self) {
378         unsafe {
379             llvm::LLVMContextDispose(&mut *(self.llcx as *mut _));
380             llvm::LLVMRustDisposeTargetMachine(&mut *(self.tm as *mut _));
381         }
382     }
383 }
384
385 struct CodegenResults {
386     crate_name: Symbol,
387     modules: Vec<CompiledModule>,
388     allocator_module: Option<CompiledModule>,
389     metadata_module: CompiledModule,
390     link: rustc::middle::cstore::LinkMeta,
391     metadata: rustc::middle::cstore::EncodedMetadata,
392     windows_subsystem: Option<String>,
393     linker_info: back::linker::LinkerInfo,
394     crate_info: CrateInfo,
395 }
396
397 /// Misc info we load from metadata to persist beyond the tcx
398 struct CrateInfo {
399     panic_runtime: Option<CrateNum>,
400     compiler_builtins: Option<CrateNum>,
401     profiler_runtime: Option<CrateNum>,
402     sanitizer_runtime: Option<CrateNum>,
403     is_no_builtins: FxHashSet<CrateNum>,
404     native_libraries: FxHashMap<CrateNum, Lrc<Vec<NativeLibrary>>>,
405     crate_name: FxHashMap<CrateNum, String>,
406     used_libraries: Lrc<Vec<NativeLibrary>>,
407     link_args: Lrc<Vec<String>>,
408     used_crate_source: FxHashMap<CrateNum, Lrc<CrateSource>>,
409     used_crates_static: Vec<(CrateNum, LibSource)>,
410     used_crates_dynamic: Vec<(CrateNum, LibSource)>,
411     wasm_imports: FxHashMap<String, String>,
412     lang_item_to_crate: FxHashMap<LangItem, CrateNum>,
413     missing_lang_items: FxHashMap<CrateNum, Vec<LangItem>>,
414 }
415
416 __build_diagnostic_array! { librustc_codegen_llvm, DIAGNOSTICS }