]> git.lizzy.rs Git - rust.git/blob - src/lib.rs
Remove hashbrown usage
[rust.git] / src / lib.rs
1 #![feature(
2     rustc_private,
3     decl_macro,
4     type_alias_impl_trait,
5     associated_type_bounds,
6     never_type,
7     try_blocks,
8     hash_drain_filter,
9 )]
10 #![warn(rust_2018_idioms)]
11 #![warn(unused_lifetimes)]
12
13 #[cfg(feature = "jit")]
14 extern crate libc;
15 extern crate snap;
16 #[macro_use]
17 extern crate rustc_middle;
18 extern crate rustc_ast;
19 extern crate rustc_codegen_ssa;
20 extern crate rustc_data_structures;
21 extern crate rustc_errors;
22 extern crate rustc_fs_util;
23 extern crate rustc_hir;
24 extern crate rustc_incremental;
25 extern crate rustc_index;
26 extern crate rustc_mir;
27 extern crate rustc_session;
28 extern crate rustc_span;
29 extern crate rustc_symbol_mangling;
30 extern crate rustc_target;
31
32 // This prevents duplicating functions and statics that are already part of the host rustc process.
33 #[allow(unused_extern_crates)]
34 extern crate rustc_driver;
35
36 use std::any::Any;
37
38 use rustc_codegen_ssa::traits::CodegenBackend;
39 use rustc_codegen_ssa::CodegenResults;
40 use rustc_errors::ErrorReported;
41 use rustc_middle::dep_graph::{DepGraph, WorkProduct, WorkProductId};
42 use rustc_middle::middle::cstore::{EncodedMetadata, MetadataLoader};
43 use rustc_middle::ty::query::Providers;
44 use rustc_session::config::OutputFilenames;
45 use rustc_session::Session;
46
47 use cranelift_codegen::settings::{self, Configurable};
48
49 use crate::constant::ConstantCx;
50 use crate::prelude::*;
51
52 mod abi;
53 mod allocator;
54 mod analyze;
55 mod archive;
56 mod atomic_shim;
57 mod backend;
58 mod base;
59 mod cast;
60 mod codegen_i128;
61 mod common;
62 mod constant;
63 mod debuginfo;
64 mod discriminant;
65 mod driver;
66 mod inline_asm;
67 mod intrinsics;
68 mod linkage;
69 mod main_shim;
70 mod metadata;
71 mod num;
72 mod optimize;
73 mod pointer;
74 mod pretty_clif;
75 mod target_features_whitelist;
76 mod toolchain;
77 mod trap;
78 mod unsize;
79 mod value_and_place;
80 mod vtable;
81
82 mod prelude {
83     pub(crate) use std::convert::{TryFrom, TryInto};
84
85     pub(crate) use rustc_ast::ast::{FloatTy, IntTy, UintTy};
86     pub(crate) use rustc_span::Span;
87
88     pub(crate) use rustc_hir::def_id::{DefId, LOCAL_CRATE};
89     pub(crate) use rustc_middle::bug;
90     pub(crate) use rustc_middle::mir::{self, *};
91     pub(crate) use rustc_middle::ty::layout::{self, TyAndLayout};
92     pub(crate) use rustc_middle::ty::{
93         self, FnSig, Instance, InstanceDef, ParamEnv, Ty, TyCtxt, TypeAndMut, TypeFoldable,
94     };
95     pub(crate) use rustc_target::abi::{Abi, LayoutOf, Scalar, Size, VariantIdx};
96
97     pub(crate) use rustc_data_structures::fx::FxHashMap;
98
99     pub(crate) use rustc_index::vec::Idx;
100
101     pub(crate) use cranelift_codegen::entity::EntitySet;
102     pub(crate) use cranelift_codegen::ir::condcodes::{FloatCC, IntCC};
103     pub(crate) use cranelift_codegen::ir::function::Function;
104     pub(crate) use cranelift_codegen::ir::types;
105     pub(crate) use cranelift_codegen::ir::{
106         AbiParam, Block, ExternalName, FuncRef, Inst, InstBuilder, MemFlags, Signature, SourceLoc,
107         StackSlot, StackSlotData, StackSlotKind, TrapCode, Type, Value,
108     };
109     pub(crate) use cranelift_codegen::isa::{self, CallConv};
110     pub(crate) use cranelift_codegen::Context;
111     pub(crate) use cranelift_frontend::{FunctionBuilder, FunctionBuilderContext, Variable};
112     pub(crate) use cranelift_module::{
113         self, Backend, DataContext, DataId, FuncId, Linkage, Module,
114     };
115
116     pub(crate) use crate::abi::*;
117     pub(crate) use crate::base::{trans_operand, trans_place};
118     pub(crate) use crate::cast::*;
119     pub(crate) use crate::common::*;
120     pub(crate) use crate::debuginfo::{DebugContext, UnwindContext};
121     pub(crate) use crate::pointer::Pointer;
122     pub(crate) use crate::trap::*;
123     pub(crate) use crate::value_and_place::{CPlace, CPlaceInner, CValue};
124 }
125
126 struct PrintOnPanic<F: Fn() -> String>(F);
127 impl<F: Fn() -> String> Drop for PrintOnPanic<F> {
128     fn drop(&mut self) {
129         if ::std::thread::panicking() {
130             println!("{}", (self.0)());
131         }
132     }
133 }
134
135 struct CodegenCx<'tcx, B: Backend + 'static> {
136     tcx: TyCtxt<'tcx>,
137     module: Module<B>,
138     global_asm: String,
139     constants_cx: ConstantCx,
140     cached_context: Context,
141     vtables: FxHashMap<(Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>), DataId>,
142     debug_context: Option<DebugContext<'tcx>>,
143     unwind_context: UnwindContext<'tcx>,
144 }
145
146 impl<'tcx, B: Backend + 'static> CodegenCx<'tcx, B> {
147     fn new(tcx: TyCtxt<'tcx>, module: Module<B>, debug_info: bool) -> Self {
148         let unwind_context = UnwindContext::new(tcx, module.isa());
149         let debug_context = if debug_info {
150             Some(DebugContext::new(tcx, module.isa()))
151         } else {
152             None
153         };
154         CodegenCx {
155             tcx,
156             module,
157             global_asm: String::new(),
158             constants_cx: ConstantCx::default(),
159             cached_context: Context::new(),
160             vtables: FxHashMap::default(),
161             debug_context,
162             unwind_context,
163         }
164     }
165
166     fn finalize(
167         mut self,
168     ) -> (
169         Module<B>,
170         String,
171         Option<DebugContext<'tcx>>,
172         UnwindContext<'tcx>,
173     ) {
174         self.constants_cx.finalize(self.tcx, &mut self.module);
175         (
176             self.module,
177             self.global_asm,
178             self.debug_context,
179             self.unwind_context,
180         )
181     }
182 }
183
184 struct CraneliftCodegenBackend;
185
186 impl CodegenBackend for CraneliftCodegenBackend {
187     fn init(&self, sess: &Session) {
188         if sess.lto() != rustc_session::config::Lto::No && sess.opts.cg.embed_bitcode {
189             sess.warn("LTO is not supported. You may get a linker error.");
190         }
191     }
192
193     fn metadata_loader(&self) -> Box<dyn MetadataLoader + Sync> {
194         Box::new(crate::metadata::CraneliftMetadataLoader)
195     }
196
197     fn provide(&self, providers: &mut Providers) {
198         providers.supported_target_features = |tcx, cnum| {
199             assert_eq!(cnum, LOCAL_CRATE);
200             if tcx.sess.opts.actually_rustdoc {
201                 // rustdoc needs to be able to document functions that use all the features, so
202                 // whitelist them all
203                 target_features_whitelist::all_known_features()
204                     .map(|(a, b)| (a.to_string(), b))
205                     .collect()
206             } else {
207                 target_features_whitelist::supported_target_features(tcx.sess)
208                     .iter()
209                     .map(|&(a, b)| (a.to_string(), b))
210                     .collect()
211             }
212         };
213     }
214     fn provide_extern(&self, _providers: &mut Providers) {}
215
216     fn target_features(&self, _sess: &Session) -> Vec<rustc_span::Symbol> {
217         vec![]
218     }
219
220     fn codegen_crate<'tcx>(
221         &self,
222         tcx: TyCtxt<'tcx>,
223         metadata: EncodedMetadata,
224         need_metadata_module: bool,
225     ) -> Box<dyn Any> {
226         let res = driver::codegen_crate(tcx, metadata, need_metadata_module);
227
228         rustc_symbol_mangling::test::report_symbol_names(tcx);
229
230         res
231     }
232
233     fn join_codegen(
234         &self,
235         ongoing_codegen: Box<dyn Any>,
236         sess: &Session,
237         dep_graph: &DepGraph,
238     ) -> Result<Box<dyn Any>, ErrorReported> {
239         let (codegen_results, work_products) = *ongoing_codegen
240             .downcast::<(CodegenResults, FxHashMap<WorkProductId, WorkProduct>)>()
241             .unwrap();
242
243         sess.time("serialize_work_products", move || {
244             rustc_incremental::save_work_product_index(sess, &dep_graph, work_products)
245         });
246
247         Ok(Box::new(codegen_results))
248     }
249
250     fn link(
251         &self,
252         sess: &Session,
253         res: Box<dyn Any>,
254         outputs: &OutputFilenames,
255     ) -> Result<(), ErrorReported> {
256         use rustc_codegen_ssa::back::link::link_binary;
257
258         sess.abort_if_errors();
259
260         let codegen_results = *res
261             .downcast::<CodegenResults>()
262             .expect("Expected CraneliftCodegenBackend's CodegenResult, found Box<Any>");
263
264         let _timer = sess.prof.generic_activity("link_crate");
265
266         sess.time("linking", || {
267             let target_cpu = crate::target_triple(sess).to_string();
268             link_binary::<crate::archive::ArArchiveBuilder<'_>>(
269                 sess,
270                 &codegen_results,
271                 outputs,
272                 &codegen_results.crate_name.as_str(),
273                 &target_cpu,
274             );
275         });
276
277         rustc_incremental::finalize_session_directory(sess, codegen_results.crate_hash);
278
279         Ok(())
280     }
281 }
282
283 fn target_triple(sess: &Session) -> target_lexicon::Triple {
284     sess.target.target.llvm_target.parse().unwrap()
285 }
286
287 fn build_isa(sess: &Session, enable_pic: bool) -> Box<dyn isa::TargetIsa + 'static> {
288     use target_lexicon::BinaryFormat;
289
290     let target_triple = crate::target_triple(sess);
291
292     let mut flags_builder = settings::builder();
293     if enable_pic {
294         flags_builder.enable("is_pic").unwrap();
295     } else {
296         flags_builder.set("is_pic", "false").unwrap();
297     }
298     flags_builder.set("enable_probestack", "false").unwrap(); // __cranelift_probestack is not provided
299     flags_builder
300         .set(
301             "enable_verifier",
302             if cfg!(debug_assertions) {
303                 "true"
304             } else {
305                 "false"
306             },
307         )
308         .unwrap();
309
310     let tls_model = match target_triple.binary_format {
311         BinaryFormat::Elf => "elf_gd",
312         BinaryFormat::Macho => "macho",
313         BinaryFormat::Coff => "coff",
314         _ => "none",
315     };
316     flags_builder.set("tls_model", tls_model).unwrap();
317
318     flags_builder.set("enable_simd", "true").unwrap();
319
320     // FIXME(CraneStation/cranelift#732) fix LICM in presence of jump tables
321     /*
322     use rustc_session::config::OptLevel;
323     match sess.opts.optimize {
324         OptLevel::No => {
325             flags_builder.set("opt_level", "none").unwrap();
326         }
327         OptLevel::Less | OptLevel::Default => {}
328         OptLevel::Aggressive => {
329             flags_builder.set("opt_level", "speed_and_size").unwrap();
330         }
331         OptLevel::Size | OptLevel::SizeMin => {
332             sess.warn("Optimizing for size is not supported. Just ignoring the request");
333         }
334     }*/
335
336     let flags = settings::Flags::new(flags_builder);
337
338     let mut isa_builder = cranelift_codegen::isa::lookup(target_triple).unwrap();
339     // Don't use "haswell", as it implies `has_lzcnt`.macOS CI is still at Ivy Bridge EP, so `lzcnt`
340     // is interpreted as `bsr`.
341     isa_builder.enable("nehalem").unwrap();
342     isa_builder.finish(flags)
343 }
344
345 /// This is the entrypoint for a hot plugged rustc_codegen_cranelift
346 #[no_mangle]
347 pub fn __rustc_codegen_backend() -> Box<dyn CodegenBackend> {
348     Box::new(CraneliftCodegenBackend)
349 }