rustc_codegen_ssa/traits/
backend.rs1use std::any::Any;
2use std::hash::Hash;
3
4use rustc_ast::expand::allocator::AllocatorMethod;
5use rustc_data_structures::fx::FxIndexMap;
6use rustc_data_structures::sync::{DynSend, DynSync};
7use rustc_metadata::EncodedMetadata;
8use rustc_metadata::creader::MetadataLoaderDyn;
9use rustc_middle::dep_graph::{WorkProduct, WorkProductId};
10use rustc_middle::ty::TyCtxt;
11use rustc_middle::util::Providers;
12use rustc_session::Session;
13use rustc_session::config::{self, CrateType, OutputFilenames, PrintRequest};
14use rustc_span::Symbol;
15
16use super::CodegenObject;
17use super::write::WriteBackendMethods;
18use crate::back::archive::ArArchiveBuilderBuilder;
19use crate::back::link::link_binary;
20use crate::back::write::TargetMachineFactoryFn;
21use crate::{CodegenResults, ModuleCodegen, TargetConfig};
22
23pub trait BackendTypes {
24 type Value: CodegenObject + PartialEq;
25 type Metadata: CodegenObject;
26 type Function: CodegenObject;
27
28 type BasicBlock: Copy;
29 type Type: CodegenObject + PartialEq;
30 type Funclet;
31
32 type DIScope: Copy + Hash + PartialEq + Eq;
35 type DILocation: Copy;
36 type DIVariable: Copy;
37}
38
39pub trait CodegenBackend {
40 fn name(&self) -> &'static str;
41
42 fn init(&self, _sess: &Session) {}
43
44 fn print(&self, _req: &PrintRequest, _out: &mut String, _sess: &Session) {}
45
46 fn target_config(&self, _sess: &Session) -> TargetConfig {
49 TargetConfig {
50 target_features: ::alloc::vec::Vec::new()vec![],
51 unstable_target_features: ::alloc::vec::Vec::new()vec![],
52 has_reliable_f16: true,
55 has_reliable_f16_math: true,
56 has_reliable_f128: true,
57 has_reliable_f128_math: true,
58 }
59 }
60
61 fn supported_crate_types(&self, _sess: &Session) -> Vec<CrateType> {
62 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[CrateType::Executable, CrateType::Dylib, CrateType::Rlib,
CrateType::StaticLib, CrateType::Cdylib, CrateType::ProcMacro,
CrateType::Sdylib]))vec![
63 CrateType::Executable,
64 CrateType::Dylib,
65 CrateType::Rlib,
66 CrateType::StaticLib,
67 CrateType::Cdylib,
68 CrateType::ProcMacro,
69 CrateType::Sdylib,
70 ]
71 }
72
73 fn print_passes(&self) {}
74
75 fn print_version(&self) {}
76
77 fn replaced_intrinsics(&self) -> Vec<Symbol> {
80 ::alloc::vec::Vec::new()vec![]
81 }
82
83 fn thin_lto_supported(&self) -> bool {
85 true
86 }
87
88 fn has_zstd(&self) -> bool {
93 false
94 }
95
96 fn metadata_loader(&self) -> Box<MetadataLoaderDyn> {
101 Box::new(crate::back::metadata::DefaultMetadataLoader)
102 }
103
104 fn provide(&self, _providers: &mut Providers) {}
105
106 fn codegen_crate<'tcx>(&self, tcx: TyCtxt<'tcx>) -> Box<dyn Any>;
107
108 fn join_codegen(
114 &self,
115 ongoing_codegen: Box<dyn Any>,
116 sess: &Session,
117 outputs: &OutputFilenames,
118 ) -> (CodegenResults, FxIndexMap<WorkProductId, WorkProduct>);
119
120 fn link(
122 &self,
123 sess: &Session,
124 codegen_results: CodegenResults,
125 metadata: EncodedMetadata,
126 outputs: &OutputFilenames,
127 ) {
128 link_binary(
129 sess,
130 &ArArchiveBuilderBuilder,
131 codegen_results,
132 metadata,
133 outputs,
134 self.name(),
135 );
136 }
137}
138
139pub trait ExtraBackendMethods:
140 CodegenBackend + WriteBackendMethods + Sized + Send + Sync + DynSend + DynSync
141{
142 fn codegen_allocator<'tcx>(
143 &self,
144 tcx: TyCtxt<'tcx>,
145 module_name: &str,
146 methods: &[AllocatorMethod],
147 ) -> Self::Module;
148
149 fn compile_codegen_unit(
152 &self,
153 tcx: TyCtxt<'_>,
154 cgu_name: Symbol,
155 ) -> (ModuleCodegen<Self::Module>, u64);
156
157 fn target_machine_factory(
158 &self,
159 sess: &Session,
160 opt_level: config::OptLevel,
161 target_features: &[String],
162 ) -> TargetMachineFactoryFn<Self>;
163
164 fn spawn_named_thread<F, T>(
165 _time_trace: bool,
166 name: String,
167 f: F,
168 ) -> std::io::Result<std::thread::JoinHandle<T>>
169 where
170 F: FnOnce() -> T,
171 F: Send + 'static,
172 T: Send + 'static,
173 {
174 std::thread::Builder::new().name(name).spawn(f)
175 }
176
177 fn supports_parallel(&self) -> bool {
181 true
182 }
183}