]> git.proxmox.com Git - rustc.git/blame_incremental - compiler/rustc_codegen_ssa/src/traits/backend.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / compiler / rustc_codegen_ssa / src / traits / backend.rs
... / ...
CommitLineData
1use super::write::WriteBackendMethods;
2use super::CodegenObject;
3use crate::back::write::TargetMachineFactoryFn;
4use crate::{CodegenResults, ModuleCodegen};
5
6use rustc_ast::expand::allocator::AllocatorKind;
7use rustc_data_structures::fx::FxHashMap;
8use rustc_errors::ErrorGuaranteed;
9use rustc_metadata::EncodedMetadata;
10use rustc_middle::dep_graph::{WorkProduct, WorkProductId};
11use rustc_middle::ty::layout::{FnAbiOf, HasTyCtxt, LayoutOf, TyAndLayout};
12use rustc_middle::ty::query::{ExternProviders, Providers};
13use rustc_middle::ty::{Ty, TyCtxt};
14use rustc_session::{
15 config::{self, OutputFilenames, PrintRequest},
16 cstore::MetadataLoaderDyn,
17 Session,
18};
19use rustc_span::symbol::Symbol;
20use rustc_target::abi::call::FnAbi;
21use rustc_target::spec::Target;
22
23pub use rustc_data_structures::sync::MetadataRef;
24
25use std::any::Any;
26
27pub trait BackendTypes {
28 type Value: CodegenObject;
29 type Function: CodegenObject;
30
31 type BasicBlock: Copy;
32 type Type: CodegenObject;
33 type Funclet;
34
35 // FIXME(eddyb) find a common convention for all of the debuginfo-related
36 // names (choose between `Dbg`, `Debug`, `DebugInfo`, `DI` etc.).
37 type DIScope: Copy;
38 type DILocation: Copy;
39 type DIVariable: Copy;
40}
41
42pub trait Backend<'tcx>:
43 Sized
44 + BackendTypes
45 + HasTyCtxt<'tcx>
46 + LayoutOf<'tcx, LayoutOfResult = TyAndLayout<'tcx>>
47 + FnAbiOf<'tcx, FnAbiOfResult = &'tcx FnAbi<'tcx, Ty<'tcx>>>
48{
49}
50
51impl<'tcx, T> Backend<'tcx> for T where
52 Self: BackendTypes
53 + HasTyCtxt<'tcx>
54 + LayoutOf<'tcx, LayoutOfResult = TyAndLayout<'tcx>>
55 + FnAbiOf<'tcx, FnAbiOfResult = &'tcx FnAbi<'tcx, Ty<'tcx>>>
56{
57}
58
59pub trait CodegenBackend {
60 fn init(&self, _sess: &Session) {}
61 fn print(&self, _req: PrintRequest, _sess: &Session) {}
62 fn target_features(&self, _sess: &Session) -> Vec<Symbol> {
63 vec![]
64 }
65 fn print_passes(&self) {}
66 fn print_version(&self) {}
67
68 /// If this plugin provides additional builtin targets, provide the one enabled by the options here.
69 /// Be careful: this is called *before* init() is called.
70 fn target_override(&self, _opts: &config::Options) -> Option<Target> {
71 None
72 }
73
74 /// The metadata loader used to load rlib and dylib metadata.
75 ///
76 /// Alternative codegen backends may want to use different rlib or dylib formats than the
77 /// default native static archives and dynamic libraries.
78 fn metadata_loader(&self) -> Box<MetadataLoaderDyn> {
79 Box::new(crate::back::metadata::DefaultMetadataLoader)
80 }
81
82 fn provide(&self, _providers: &mut Providers) {}
83 fn provide_extern(&self, _providers: &mut ExternProviders) {}
84 fn codegen_crate<'tcx>(
85 &self,
86 tcx: TyCtxt<'tcx>,
87 metadata: EncodedMetadata,
88 need_metadata_module: bool,
89 ) -> Box<dyn Any>;
90
91 /// This is called on the returned `Box<dyn Any>` from `codegen_backend`
92 ///
93 /// # Panics
94 ///
95 /// Panics when the passed `Box<dyn Any>` was not returned by `codegen_backend`.
96 fn join_codegen(
97 &self,
98 ongoing_codegen: Box<dyn Any>,
99 sess: &Session,
100 outputs: &OutputFilenames,
101 ) -> Result<(CodegenResults, FxHashMap<WorkProductId, WorkProduct>), ErrorGuaranteed>;
102
103 /// This is called on the returned `Box<dyn Any>` from `join_codegen`
104 ///
105 /// # Panics
106 ///
107 /// Panics when the passed `Box<dyn Any>` was not returned by `join_codegen`.
108 fn link(
109 &self,
110 sess: &Session,
111 codegen_results: CodegenResults,
112 outputs: &OutputFilenames,
113 ) -> Result<(), ErrorGuaranteed>;
114}
115
116pub trait ExtraBackendMethods: CodegenBackend + WriteBackendMethods + Sized + Send + Sync {
117 fn new_metadata(&self, sess: TyCtxt<'_>, mod_name: &str) -> Self::Module;
118 fn codegen_allocator<'tcx>(
119 &self,
120 tcx: TyCtxt<'tcx>,
121 module_llvm: &mut Self::Module,
122 module_name: &str,
123 kind: AllocatorKind,
124 has_alloc_error_handler: bool,
125 );
126 /// This generates the codegen unit and returns it along with
127 /// a `u64` giving an estimate of the unit's processing cost.
128 fn compile_codegen_unit(
129 &self,
130 tcx: TyCtxt<'_>,
131 cgu_name: Symbol,
132 ) -> (ModuleCodegen<Self::Module>, u64);
133 fn target_machine_factory(
134 &self,
135 sess: &Session,
136 opt_level: config::OptLevel,
137 target_features: &[String],
138 ) -> TargetMachineFactoryFn<Self>;
139 fn target_cpu<'b>(&self, sess: &'b Session) -> &'b str;
140 fn tune_cpu<'b>(&self, sess: &'b Session) -> Option<&'b str>;
141
142 fn spawn_thread<F, T>(_time_trace: bool, f: F) -> std::thread::JoinHandle<T>
143 where
144 F: FnOnce() -> T,
145 F: Send + 'static,
146 T: Send + 'static,
147 {
148 std::thread::spawn(f)
149 }
150
151 fn spawn_named_thread<F, T>(
152 _time_trace: bool,
153 name: String,
154 f: F,
155 ) -> std::io::Result<std::thread::JoinHandle<T>>
156 where
157 F: FnOnce() -> T,
158 F: Send + 'static,
159 T: Send + 'static,
160 {
161 std::thread::Builder::new().name(name).spawn(f)
162 }
163}