Skip to main content

rustc_codegen_llvm/
base.rs

1//! Codegen the MIR to the LLVM IR.
2//!
3//! Hopefully useful general knowledge about codegen:
4//!
5//! * There's no way to find out the [`Ty`] type of a [`Value`]. Doing so
6//!   would be "trying to get the eggs out of an omelette" (credit:
7//!   pcwalton). You can, instead, find out its [`llvm::Type`] by calling [`val_ty`],
8//!   but one [`llvm::Type`] corresponds to many [`Ty`]s; for instance, `tup(int, int,
9//!   int)` and `rec(x=int, y=int, z=int)` will have the same [`llvm::Type`].
10//!
11//! [`Ty`]: rustc_middle::ty::Ty
12//! [`val_ty`]: crate::common::val_ty
13
14use std::time::Instant;
15
16use rustc_codegen_ssa::ModuleCodegen;
17use rustc_codegen_ssa::base::maybe_create_entry_wrapper;
18use rustc_codegen_ssa::mono_item::MonoItemExt;
19use rustc_codegen_ssa::traits::*;
20use rustc_data_structures::small_c_str::SmallCStr;
21use rustc_hir::attrs::Linkage;
22use rustc_middle::dep_graph;
23use rustc_middle::middle::codegen_fn_attrs::{CodegenFnAttrs, SanitizerFnAttrs};
24use rustc_middle::mono::Visibility;
25use rustc_middle::ty::TyCtxt;
26use rustc_session::config::{DebugInfo, Offload};
27use rustc_span::Symbol;
28use rustc_target::spec::SanitizerSet;
29
30use super::ModuleLlvm;
31use crate::attributes;
32use crate::builder::Builder;
33use crate::builder::gpu_offload::OffloadGlobals;
34use crate::context::CodegenCx;
35use crate::llvm::{self, Value};
36
37pub(crate) struct ValueIter<'ll> {
38    cur: Option<&'ll Value>,
39    step: unsafe extern "C" fn(&'ll Value) -> Option<&'ll Value>,
40}
41
42impl<'ll> Iterator for ValueIter<'ll> {
43    type Item = &'ll Value;
44
45    fn next(&mut self) -> Option<&'ll Value> {
46        let old = self.cur;
47        if let Some(old) = old {
48            self.cur = unsafe { (self.step)(old) };
49        }
50        old
51    }
52}
53
54pub(crate) fn iter_globals(llmod: &llvm::Module) -> ValueIter<'_> {
55    unsafe { ValueIter { cur: llvm::LLVMGetFirstGlobal(llmod), step: llvm::LLVMGetNextGlobal } }
56}
57
58pub(crate) fn iter_global_aliases(llmod: &llvm::Module) -> ValueIter<'_> {
59    unsafe {
60        ValueIter { cur: llvm::LLVMGetFirstGlobalAlias(llmod), step: llvm::LLVMGetNextGlobalAlias }
61    }
62}
63
64pub(crate) fn compile_codegen_unit(
65    tcx: TyCtxt<'_>,
66    cgu_name: Symbol,
67    bitcode_needed: bool,
68) -> (ModuleCodegen<ModuleLlvm>, u64) {
69    let start_time = Instant::now();
70
71    let dep_node = tcx.codegen_unit(cgu_name).codegen_dep_node(tcx);
72    let (module, _) = tcx.dep_graph.with_task(
73        dep_node,
74        tcx,
75        || module_codegen(tcx, cgu_name, bitcode_needed),
76        Some(dep_graph::hash_result),
77    );
78    let time_to_codegen = start_time.elapsed();
79
80    // We assume that the cost to run LLVM on a CGU is proportional to
81    // the time we needed for codegenning it.
82    let cost = time_to_codegen.as_nanos() as u64;
83
84    fn module_codegen(
85        tcx: TyCtxt<'_>,
86        cgu_name: Symbol,
87        needs_bitcode: bool,
88    ) -> ModuleCodegen<ModuleLlvm> {
89        let cgu = tcx.codegen_unit(cgu_name);
90        let _prof_timer =
91            tcx.prof.generic_activity_with_arg_recorder("codegen_module", |recorder| {
92                recorder.record_arg(cgu_name.to_string());
93                recorder.record_arg(cgu.size_estimate().to_string());
94            });
95        // Instantiate monomorphizations without filling out definitions yet...
96        let llvm_module = ModuleLlvm::new(tcx, cgu_name.as_str());
97        {
98            let mut cx = CodegenCx::new(tcx, cgu, &llvm_module, needs_bitcode);
99
100            // Declare and store globals shared by all offload kernels
101            //
102            // These globals are left in the LLVM-IR host module so all kernels can access them.
103            // They are necessary for correct offload execution. We do this here to simplify the
104            // `offload` intrinsic, avoiding the need for tracking whether it's the first
105            // intrinsic call or not.
106            let has_host_offload = cx
107                .sess()
108                .opts
109                .unstable_opts
110                .offload
111                .iter()
112                .any(|o| #[allow(non_exhaustive_omitted_patterns)] match o {
    Offload::Host(_) | Offload::Test => true,
    _ => false,
}matches!(o, Offload::Host(_) | Offload::Test));
113            if has_host_offload && !cx.sess().target.is_like_gpu {
114                cx.offload_globals.replace(Some(OffloadGlobals::declare(&cx)));
115            }
116
117            let mono_items = cx.codegen_unit.items_in_deterministic_order(cx.tcx);
118            for &(mono_item, data) in &mono_items {
119                mono_item.predefine::<Builder<'_, '_, '_>>(
120                    &mut cx,
121                    cgu_name.as_str(),
122                    data.linkage,
123                    data.visibility,
124                );
125            }
126
127            // ... and now that we have everything pre-defined, fill out those definitions.
128            for &(mono_item, item_data) in &mono_items {
129                mono_item.define::<Builder<'_, '_, '_>>(&mut cx, cgu_name.as_str(), item_data);
130            }
131
132            // If this codegen unit contains the main function, also create the
133            // wrapper here
134            if let Some(entry) =
135                maybe_create_entry_wrapper::<Builder<'_, '_, '_>>(&cx, cx.codegen_unit)
136            {
137                let mut attrs =
138                    attributes::sanitize_attrs(&cx, tcx, SanitizerFnAttrs::default(), None, None);
139                // When pointer authentication is enabled, ensure that the ptrauth-* attributes are
140                // also attached to the entry wrapper.
141                //
142                // FIXME(jchlanda) If it ever becomes necessary to ensure that all compiler
143                // generated functions receive the ptrauth-* attributes, `declare_fn` or
144                // `declare_raw_fn` could be used to provide those.
145                if cx.sess().pointer_authentication() {
146                    let cfg = cx.sess().pointer_auth_config.as_ref().unwrap();
147                    for ptrauth_attr in cfg.fn_attrs() {
148                        attrs.push(llvm::CreateAttrString(cx.llcx, ptrauth_attr));
149                    }
150                }
151                attributes::apply_to_llfn(entry, llvm::AttributePlace::Function, &attrs);
152            }
153
154            // Define Objective-C module info and module flags. Note, the module info will
155            // also be added to the `llvm.compiler.used` variable, created later.
156            //
157            // These are only necessary when we need the linker to do its Objective-C-specific
158            // magic. We could theoretically do it unconditionally, but at a slight cost to linker
159            // performance in the common case where it's unnecessary.
160            if !cx.objc_classrefs.borrow().is_empty() || !cx.objc_selrefs.borrow().is_empty() {
161                if cx.objc_abi_version() == 1 {
162                    cx.define_objc_module_info();
163                }
164                cx.add_objc_module_flags();
165            }
166
167            if cx.sess().pointer_authentication() {
168                let cfg = cx.sess().pointer_auth_config.as_ref().unwrap();
169
170                let aarch64_elf_pauthabi_version =
171                    cfg.calculate_pauth_abi_version(&cx.sess().target);
172                if aarch64_elf_pauthabi_version != 0 {
173                    cx.add_ptrauth_pauthabi_version_and_platform_flags(
174                        aarch64_elf_pauthabi_version,
175                    );
176                }
177                if cfg.elf_got {
178                    cx.add_ptrauth_elf_got_flag();
179                }
180                if cx.sess().pointer_authentication_functions().is_some() {
181                    cx.add_ptrauth_sign_personality_flag();
182                }
183            }
184
185            // Finalize code coverage by injecting the coverage map. Note, the coverage map will
186            // also be added to the `llvm.compiler.used` variable, created next.
187            if cx.sess().instrument_coverage() {
188                cx.coverageinfo_finalize();
189            }
190
191            // Create the llvm.used variable.
192            if !cx.used_statics.is_empty() {
193                cx.create_used_variable_impl(c"llvm.used", &cx.used_statics);
194            }
195
196            // Create the llvm.compiler.used variable.
197            {
198                let compiler_used_statics = cx.compiler_used_statics.borrow();
199                if !compiler_used_statics.is_empty() {
200                    cx.create_used_variable_impl(c"llvm.compiler.used", &compiler_used_statics);
201                }
202            }
203
204            // Run replace-all-uses-with for statics that need it. This must
205            // happen after the llvm.used variables are created.
206            for &(old_g, new_g) in cx.statics_to_rauw().borrow().iter() {
207                unsafe {
208                    llvm::LLVMReplaceAllUsesWith(old_g, new_g);
209                    llvm::LLVMDeleteGlobal(old_g);
210                }
211            }
212
213            // Finalize debuginfo
214            if cx.sess().opts.debuginfo != DebugInfo::None {
215                cx.debuginfo_finalize();
216            }
217        }
218
219        ModuleCodegen::new_regular(cgu_name.to_string(), llvm_module)
220    }
221
222    (module, cost)
223}
224
225pub(crate) fn set_link_section(llval: &Value, attrs: &CodegenFnAttrs) {
226    let Some(sect) = attrs.link_section else { return };
227    let buf = SmallCStr::new(sect.as_str());
228    llvm::set_section(llval, &buf);
229}
230
231pub(crate) fn linkage_to_llvm(linkage: Linkage) -> llvm::Linkage {
232    match linkage {
233        Linkage::External => llvm::Linkage::ExternalLinkage,
234        Linkage::AvailableExternally => llvm::Linkage::AvailableExternallyLinkage,
235        Linkage::LinkOnceAny => llvm::Linkage::LinkOnceAnyLinkage,
236        Linkage::LinkOnceODR => llvm::Linkage::LinkOnceODRLinkage,
237        Linkage::WeakAny => llvm::Linkage::WeakAnyLinkage,
238        Linkage::WeakODR => llvm::Linkage::WeakODRLinkage,
239        Linkage::Internal => llvm::Linkage::InternalLinkage,
240        Linkage::ExternalWeak => llvm::Linkage::ExternalWeakLinkage,
241        Linkage::Common => llvm::Linkage::CommonLinkage,
242    }
243}
244
245pub(crate) fn visibility_to_llvm(linkage: Visibility) -> llvm::Visibility {
246    match linkage {
247        Visibility::Default => llvm::Visibility::Default,
248        Visibility::Hidden => llvm::Visibility::Hidden,
249        Visibility::Protected => llvm::Visibility::Protected,
250    }
251}
252
253pub(crate) fn set_variable_sanitizer_attrs(llval: &Value, attrs: &CodegenFnAttrs) {
254    if attrs.sanitizers.disabled.contains(SanitizerSet::ADDRESS)
255        || attrs.sanitizers.disabled.contains(SanitizerSet::KERNELADDRESS)
256    {
257        unsafe { llvm::LLVMRustSetNoSanitizeAddress(llval) };
258    }
259    if attrs.sanitizers.disabled.contains(SanitizerSet::HWADDRESS)
260        || attrs.sanitizers.disabled.contains(SanitizerSet::KERNELHWADDRESS)
261    {
262        unsafe { llvm::LLVMRustSetNoSanitizeHWAddress(llval) };
263    }
264}