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