]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_codegen_llvm/src/callee.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / compiler / rustc_codegen_llvm / src / callee.rs
CommitLineData
94b46f34 1//! Handles codegen of callees as well as other call-related
9fa01778
XL
2//! things. Callees are a superset of normal rust values and sometimes
3//! have different representations. In particular, top-level fn items
54a0048b
SL
4//! and methods are represented as just a fn ptr and not a full
5//! closure.
6
c295e0f8 7use crate::abi::FnAbiLlvmExt;
9fa01778 8use crate::attributes;
f2b60f7d 9use crate::common;
9fa01778 10use crate::context::CodegenCx;
dfeec247 11use crate::llvm;
9fa01778 12use crate::value::Value;
dfeec247 13use rustc_codegen_ssa::traits::*;
ff7c6d11 14
c295e0f8 15use rustc_middle::ty::layout::{FnAbiOf, HasTyCtxt};
064997fb 16use rustc_middle::ty::{self, Instance, TypeVisitable};
54a0048b 17
94b46f34 18/// Codegens a reference to a fn/method item, monomorphizing and
54a0048b
SL
19/// inlining as it goes.
20///
21/// # Parameters
22///
2c00a5a8 23/// - `cx`: the crate context
cc61c64b 24/// - `instance`: the instance to be instantiated
a2a8927a 25pub fn get_fn<'ll, 'tcx>(cx: &CodegenCx<'ll, 'tcx>, instance: Instance<'tcx>) -> &'ll Value {
a1dfa0c6 26 let tcx = cx.tcx();
54a0048b 27
cc61c64b 28 debug!("get_fn(instance={:?})", instance);
54a0048b 29
cc61c64b 30 assert!(!instance.substs.needs_infer());
a1dfa0c6 31 assert!(!instance.substs.has_escaping_bound_vars());
54a0048b 32
e74abb32 33 if let Some(&llfn) = cx.instances.borrow().get(&instance) {
cc61c64b 34 return llfn;
54a0048b
SL
35 }
36
3dfed10e
XL
37 let sym = tcx.symbol_name(instance).name;
38 debug!(
39 "get_fn({:?}: {:?}) => {}",
40 instance,
41 instance.ty(cx.tcx(), ty::ParamEnv::reveal_all()),
42 sym
43 );
54a0048b 44
c295e0f8 45 let fn_abi = cx.fn_abi_of_instance(instance, ty::List::empty());
3157f602 46
c295e0f8 47 let llfn = if let Some(llfn) = cx.get_declared_value(sym) {
60c5eb7d
XL
48 // Create a fn pointer with the new signature.
49 let llptrty = fn_abi.ptr_to_llvm_type(cx);
50
ea8adc8c
XL
51 // This is subtle and surprising, but sometimes we have to bitcast
52 // the resulting fn pointer. The reason has to do with external
53 // functions. If you have two crates that both bind the same C
54 // library, they may not use precisely the same types: for
55 // example, they will probably each declare their own structs,
56 // which are distinct types from LLVM's point of view (nominal
57 // types).
58 //
59 // Now, if those two crates are linked into an application, and
60 // they contain inlined code, you can wind up with a situation
61 // where both of those functions wind up being loaded into this
62 // application simultaneously. In that case, the same function
63 // (from LLVM's point of view) requires two types. But of course
64 // LLVM won't allow one function to have two types.
65 //
66 // What we currently do, therefore, is declare the function with
67 // one of the two types (whichever happens to come first) and then
68 // bitcast as needed when the function is referenced to make sure
69 // it has the type we expect.
70 //
71 // This can occur on either a crate-local or crate-external
72 // reference. It also occurs when testing libcore and in some
73 // other weird situations. Annoying.
a1dfa0c6 74 if cx.val_ty(llfn) != llptrty {
54a0048b 75 debug!("get_fn: casting {:?} to {:?}", llfn, llptrty);
a1dfa0c6 76 cx.const_ptrcast(llfn, llptrty)
54a0048b
SL
77 } else {
78 debug!("get_fn: not casting pointer!");
79 llfn
80 }
81 } else {
f2b60f7d
FG
82 let instance_def_id = instance.def_id();
83 let llfn = if tcx.sess.target.arch == "x86" &&
84 let Some(dllimport) = common::get_dllimport(tcx, instance_def_id, sym)
85 {
487cf647
FG
86 // Fix for https://github.com/rust-lang/rust/issues/104453
87 // On x86 Windows, LLVM uses 'L' as the prefix for any private
88 // global symbols, so when we create an undecorated function symbol
89 // that begins with an 'L' LLVM misinterprets that as a private
90 // global symbol that it created and so fails the compilation at a
91 // later stage since such a symbol must have a definition.
92 //
93 // To avoid this, we set the Storage Class to "DllImport" so that
94 // LLVM will prefix the name with `__imp_`. Ideally, we'd like the
95 // existing logic below to set the Storage Class, but it has an
96 // exemption for MinGW for backwards compatability.
97 let llfn = cx.declare_fn(&common::i686_decorated_name(&dllimport, common::is_mingw_gnu_toolchain(&tcx.sess.target), true), fn_abi);
98 unsafe { llvm::LLVMSetDLLStorageClass(llfn, llvm::DLLStorageClass::DllImport); }
99 llfn
f2b60f7d
FG
100 } else {
101 cx.declare_fn(sym, fn_abi)
102 };
54a0048b
SL
103 debug!("get_fn: not casting pointer!");
104
ba9703b0 105 attributes::from_fn_attrs(cx, llfn, instance);
9e0c209e 106
ea8adc8c
XL
107 // Apply an appropriate linkage/visibility value to our item that we
108 // just declared.
109 //
110 // This is sort of subtle. Inside our codegen unit we started off
94b46f34
XL
111 // compilation by predefining all our own `MonoItem` instances. That
112 // is, everything we're codegenning ourselves is already defined. That
113 // means that anything we're actually codegenning in this codegen unit
83c7162d
XL
114 // will have hit the above branch in `get_declared_value`. As a result,
115 // we're guaranteed here that we're declaring a symbol that won't get
116 // defined, or in other words we're referencing a value from another
117 // codegen unit or even another crate.
ea8adc8c
XL
118 //
119 // So because this is a foreign value we blanket apply an external
120 // linkage directive because it's coming from a different object file.
121 // The visibility here is where it gets tricky. This symbol could be
122 // referencing some foreign crate or foreign library (an `extern`
123 // block) in which case we want to leave the default visibility. We may
83c7162d
XL
124 // also, though, have multiple codegen units. It could be a
125 // monomorphization, in which case its expected visibility depends on
126 // whether we are sharing generics or not. The important thing here is
127 // that the visibility we apply to the declaration is the same one that
128 // has been applied to the definition (wherever that definition may be).
3b2f2976
XL
129 unsafe {
130 llvm::LLVMRustSetLinkage(llfn, llvm::Linkage::ExternalLinkage);
131
532ac7d7 132 let is_generic = instance.substs.non_erasable_generics().next().is_some();
83c7162d
XL
133
134 if is_generic {
135 // This is a monomorphization. Its expected visibility depends
136 // on whether we are in share-generics mode.
137
b7449926 138 if cx.tcx.sess.opts.share_generics() {
83c7162d
XL
139 // We are in share_generics mode.
140
f9f354fc 141 if let Some(instance_def_id) = instance_def_id.as_local() {
83c7162d
XL
142 // This is a definition from the current crate. If the
143 // definition is unreachable for downstream crates or
144 // the current crate does not re-export generics, the
145 // definition of the instance will have been declared
146 // as `hidden`.
dfeec247
XL
147 if cx.tcx.is_unreachable_local_definition(instance_def_id)
148 || !cx.tcx.local_crate_exports_generics()
149 {
83c7162d
XL
150 llvm::LLVMRustSetVisibility(llfn, llvm::Visibility::Hidden);
151 }
152 } else {
153 // This is a monomorphization of a generic function
154 // defined in an upstream crate.
dfeec247 155 if instance.upstream_monomorphization(tcx).is_some() {
83c7162d
XL
156 // This is instantiated in another crate. It cannot
157 // be `hidden`.
158 } else {
159 // This is a local instantiation of an upstream definition.
160 // If the current crate does not re-export it
161 // (because it is a C library or an executable), it
162 // will have been declared `hidden`.
163 if !cx.tcx.local_crate_exports_generics() {
164 llvm::LLVMRustSetVisibility(llfn, llvm::Visibility::Hidden);
165 }
166 }
3b2f2976
XL
167 }
168 } else {
83c7162d
XL
169 // When not sharing generics, all instances are in the same
170 // crate and have hidden visibility
3b2f2976
XL
171 llvm::LLVMRustSetVisibility(llfn, llvm::Visibility::Hidden);
172 }
83c7162d
XL
173 } else {
174 // This is a non-generic function
94b46f34 175 if cx.tcx.is_codegened_item(instance_def_id) {
83c7162d
XL
176 // This is a function that is instantiated in the local crate
177
178 if instance_def_id.is_local() {
179 // This is function that is defined in the local crate.
180 // If it is not reachable, it is hidden.
181 if !cx.tcx.is_reachable_non_generic(instance_def_id) {
182 llvm::LLVMRustSetVisibility(llfn, llvm::Visibility::Hidden);
183 }
184 } else {
185 // This is a function from an upstream crate that has
186 // been instantiated here. These are always hidden.
187 llvm::LLVMRustSetVisibility(llfn, llvm::Visibility::Hidden);
188 }
189 }
9e0c209e 190 }
cc61c64b 191
cdc7bbd5
XL
192 // MinGW: For backward compatibility we rely on the linker to decide whether it
193 // should use dllimport for functions.
194 if cx.use_dll_storage_attrs
2b03887a
FG
195 && let Some(library) = tcx.native_library(instance_def_id)
196 && library.kind.is_dllimport()
c295e0f8 197 && !matches!(tcx.sess.target.env.as_ref(), "gnu" | "uclibc")
cdc7bbd5 198 {
476ff2be
SL
199 llvm::LLVMSetDLLStorageClass(llfn, llvm::DLLStorageClass::DllImport);
200 }
cdc7bbd5 201
17df50a5 202 if cx.should_assume_dso_local(llfn, true) {
cdc7bbd5
XL
203 llvm::LLVMRustSetDSOLocal(llfn, true);
204 }
476ff2be 205 }
ea8adc8c 206
54a0048b
SL
207 llfn
208 };
209
2c00a5a8 210 cx.instances.borrow_mut().insert(instance, llfn);
54a0048b 211
cc61c64b
XL
212 llfn
213}