1use std::ops::Range;
23use rustc_abi::{Align, ExternAbi, HasDataLayout, Primitive, Scalar, Size, WrappingRange};
4use rustc_codegen_ssa::common;
5use rustc_codegen_ssa::traits::*;
6use rustc_hir::attrs::Linkage;
7use rustc_hir::attrs::lang_items::LangItem;
8use rustc_hir::def::DefKind;
9use rustc_hir::def_id::{DefId, LOCAL_CRATE};
10use rustc_middle::middle::codegen_fn_attrs::{CodegenFnAttrFlags, CodegenFnAttrs};
11use rustc_middle::mir::interpret::{
12Allocation, ConstAllocation, ErrorHandled, InitChunk, Pointer, Scalaras InterpScalar,
13read_target_uint,
14};
15use rustc_middle::mono::MonoItem;
16use rustc_middle::ty::layout::{HasTypingEnv, LayoutOf};
17use rustc_middle::ty::{self, Instance};
18use rustc_span::{Symbol, bug, span_bug};
19use rustc_target::spec::Arch;
20use tracing::{debug, instrument, trace};
2122use crate::common::CodegenCx;
23use crate::diagnostics::SymbolAlreadyDefined;
24use crate::llvm::{self, Type, Value, const_ptr_auth};
25use crate::type_of::LayoutLlvmExt;
26use crate::{base, debuginfo};
2728/// Indicates whether a value originates from a `static`.
29pub(crate) enum IsStatic {
30 Yes,
31 No,
32}
33/// Indicates whether a symbol is part of `.init_array` or `.fini_array`.
34#[derive(#[automatically_derived]
impl ::core::marker::StructuralPartialEq for IsInitOrFini { }
#[automatically_derived]
impl ::core::cmp::PartialEq for IsInitOrFini {
#[inline]
fn eq(&self, other: &IsInitOrFini) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq)]
35pub(crate) enum IsInitOrFini {
36 Yes,
37 No,
38}
39pub(crate) fn const_alloc_to_llvm<'ll>(
40 cx: &CodegenCx<'ll, '_>,
41 alloc: &Allocation,
42 is_static: IsStatic,
43 is_init_fini: IsInitOrFini,
44) -> &'ll Value {
45// We expect that callers of const_alloc_to_llvm will instead directly codegen a pointer or
46 // integer for any &ZST where the ZST is a constant (i.e. not a static). We should never be
47 // producing empty LLVM allocations as they're just adding noise to binaries and forcing less
48 // optimal codegen.
49 //
50 // Statics have a guaranteed meaningful address so it's less clear that we want to do
51 // something like this; it's also harder.
52if #[allow(non_exhaustive_omitted_patterns)] match is_static {
IsStatic::No => true,
_ => false,
}matches!(is_static, IsStatic::No) {
53if !(alloc.len() != 0) {
::core::panicking::panic("assertion failed: alloc.len() != 0")
};assert!(alloc.len() != 0);
54 }
55let mut llvals = Vec::with_capacity(alloc.provenance().ptrs().len() + 1);
56let dl = cx.data_layout();
57let pointer_size = dl.pointer_size();
58let pointer_size_bytes = pointer_size.bytes() as usize;
5960// Note: this function may call `inspect_with_uninit_and_ptr_outside_interpreter`, so `range`
61 // must be within the bounds of `alloc` and not contain or overlap a pointer provenance.
62fn append_chunks_of_init_and_uninit_bytes<'ll, 'a, 'b>(
63 llvals: &mut Vec<&'ll Value>,
64 cx: &'a CodegenCx<'ll, 'b>,
65 alloc: &'a Allocation,
66 range: Range<usize>,
67 ) {
68let chunks = alloc.init_mask().range_as_init_chunks(range.clone().into());
6970let chunk_to_llval = move |chunk| match chunk {
71 InitChunk::Init(range) => {
72let range = (range.start.bytes() as usize)..(range.end.bytes() as usize);
73let bytes = alloc.inspect_with_uninit_and_ptr_outside_interpreter(range);
74cx.const_bytes(bytes)
75 }
76 InitChunk::Uninit(range) => {
77let len = range.end.bytes() - range.start.bytes();
78cx.const_undef(cx.type_array(cx.type_i8(), len))
79 }
80 };
8182// Generating partially-uninit consts is limited to small numbers of chunks,
83 // to avoid the cost of generating large complex const expressions.
84 // For example, `[(u32, u8); 1024 * 1024]` contains uninit padding in each element, and
85 // would result in `{ [5 x i8] zeroinitializer, [3 x i8] undef, ...repeat 1M times... }`.
86let max = cx.sess().opts.unstable_opts.uninit_const_chunk_threshold;
87let allow_uninit_chunks = chunks.clone().take(max.saturating_add(1)).count() <= max;
8889if allow_uninit_chunks {
90llvals.extend(chunks.map(chunk_to_llval));
91 } else {
92// If this allocation contains any uninit bytes, codegen as if it was initialized
93 // (using some arbitrary value for uninit bytes).
94let bytes = alloc.inspect_with_uninit_and_ptr_outside_interpreter(range);
95llvals.push(cx.const_bytes(bytes));
96 }
97 }
9899let mut next_offset = 0;
100for &(offset, prov) in alloc.provenance().ptrs().iter() {
101let offset = offset.bytes();
102{
match (&(offset as usize as u64), &offset) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(offset as usize as u64, offset);
103let offset = offset as usize;
104if offset > next_offset {
105// This `inspect` is okay since we have checked that there is no provenance, it
106 // is within the bounds of the allocation, and it doesn't affect interpreter execution
107 // (we inspect the result after interpreter execution).
108append_chunks_of_init_and_uninit_bytes(&mut llvals, cx, alloc, next_offset..offset);
109 }
110let ptr_offset = read_target_uint(
111 dl.endian,
112// This `inspect` is okay since it is within the bounds of the allocation, it doesn't
113 // affect interpreter execution (we inspect the result after interpreter execution),
114 // and we properly interpret the provenance as a relocation pointer offset.
115alloc.inspect_with_uninit_and_ptr_outside_interpreter(
116 offset..(offset + pointer_size_bytes),
117 ),
118 )
119 .expect("const_alloc_to_llvm: could not read relocation pointer")
120as u64;
121122let address_space = cx.tcx.global_alloc(prov.alloc_id()).address_space(cx);
123let schema = if cx.sess().pointer_authentication() {
124match is_init_fini {
125 IsInitOrFini::Yes => cx.sess().pointer_authentication_init_fini(),
126 IsInitOrFini::No => cx.sess().pointer_authentication_functions(),
127 }
128 } else {
129None
130};
131 llvals.push(cx.scalar_to_backend_with_pac(
132 InterpScalar::from_pointer(Pointer::new(prov, Size::from_bytes(ptr_offset)), &cx.tcx),
133 Scalar::Initialized {
134 value: Primitive::Pointer(address_space),
135 valid_range: WrappingRange::full(pointer_size),
136 },
137 cx.type_ptr_ext(address_space),
138 schema,
139 ));
140 next_offset = offset + pointer_size_bytes;
141 }
142if alloc.len() >= next_offset {
143let range = next_offset..alloc.len();
144// This `inspect` is okay since we have check that it is after all provenance, it is
145 // within the bounds of the allocation, and it doesn't affect interpreter execution (we
146 // inspect the result after interpreter execution).
147append_chunks_of_init_and_uninit_bytes(&mut llvals, cx, alloc, range);
148 }
149150// Avoid wrapping in a struct if there is only a single value. This ensures
151 // that LLVM is able to perform the string merging optimization if the constant
152 // is a valid C string. LLVM only considers bare arrays for this optimization,
153 // not arrays wrapped in a struct. LLVM handles this at:
154 // https://github.com/rust-lang/llvm-project/blob/acaea3d2bb8f351b740db7ebce7d7a40b9e21488/llvm/lib/Target/TargetLoweringObjectFile.cpp#L249-L280
155if let &[data] = &*llvals { data } else { cx.const_struct(&llvals, true) }
156}
157158fn codegen_static_initializer<'ll, 'tcx>(
159 cx: &CodegenCx<'ll, 'tcx>,
160 def_id: DefId,
161) -> Result<(&'ll Value, ConstAllocation<'tcx>), ErrorHandled> {
162let alloc = cx.tcx.eval_static_initializer(def_id)?;
163let attrs = cx.tcx.codegen_fn_attrs(def_id);
164// FIXME(jchlanda) Decide if this could be better served by `ctor` crate. See the discussion
165 // here: <https://github.com/rust-lang/rust/pull/155722#discussion_r3320477047>
166let is_in_init_fini: IsInitOrFini = attrs167 .link_section
168 .map(|link_section| {
169let s = link_section.as_str();
170if s.starts_with(".init_array") || s.starts_with(".fini_array") {
171 IsInitOrFini::Yes172 } else {
173 IsInitOrFini::No174 }
175 })
176 .unwrap_or(IsInitOrFini::No);
177Ok((const_alloc_to_llvm(cx, alloc.inner(), IsStatic::Yes, is_in_init_fini), alloc))
178}
179180fn set_global_alignment<'ll>(cx: &CodegenCx<'ll, '_>, gv: &'ll Value, mut align: Align) {
181// The target may require greater alignment for globals than the type does.
182 // Note: GCC and Clang also allow `__attribute__((aligned))` on variables,
183 // which can force it to be smaller. Rust doesn't support this yet.
184if let Some(min_global) = cx.sess().target.min_global_align {
185align = Ord::max(align, min_global);
186 }
187 llvm::set_alignment(gv, align);
188}
189190fn check_and_apply_linkage<'ll, 'tcx>(
191 cx: &CodegenCx<'ll, 'tcx>,
192 attrs: &CodegenFnAttrs,
193 llty: &'ll Type,
194 sym: &str,
195 def_id: DefId,
196) -> &'ll Value {
197if let Some(linkage) = attrs.import_linkage {
198{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs:198",
"rustc_codegen_llvm::consts", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs"),
::tracing_core::__macro_support::Option::Some(198u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_llvm::consts"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("get_static: sym={0} linkage={1:?}",
sym, linkage) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("get_static: sym={} linkage={:?}", sym, linkage);
199200let mut should_sign = false;
201// Declare a symbol `foo`. If `foo` is an extern_weak symbol, we declare
202 // an extern_weak function, otherwise a global with the desired linkage.
203let g1 = if #[allow(non_exhaustive_omitted_patterns)] match attrs.import_linkage {
Some(Linkage::ExternalWeak) => true,
_ => false,
}matches!(attrs.import_linkage, Some(Linkage::ExternalWeak)) {
204// An `extern_weak` function is represented as an `Option<unsafe extern ...>`,
205 // we extract the function signature and declare it as an extern_weak function
206 // instead of an extern_weak i8.
207let instance = Instance::mono(cx.tcx, def_id);
208if let ty::Adt(struct_def, args) = instance.ty(cx.tcx, cx.typing_env()).kind()
209 && cx.tcx.is_lang_item(struct_def.did(), LangItem::Option)
210 && let ty::FnPtr(sig, header) = args.type_at(0).kind()
211 {
212let fn_sig = sig.with(*header);
213let fn_abi = cx.fn_abi_of_fn_ptr(fn_sig, ty::List::empty());
214// Decide if the initializer needs to be signed
215if cx.sess().pointer_authentication()
216 && #[allow(non_exhaustive_omitted_patterns)] match fn_sig.abi() {
ExternAbi::C { .. } | ExternAbi::System { .. } => true,
_ => false,
}matches!(fn_sig.abi(), ExternAbi::C { .. } | ExternAbi::System { .. })217 {
218should_sign = true;
219 }
220cx.declare_fn(sym, &fn_abi, None)
221 } else {
222cx.declare_global(sym, cx.type_i8())
223 }
224 } else {
225cx.declare_global(sym, cx.type_i8())
226 };
227 llvm::set_linkage(g1, base::linkage_to_llvm(linkage));
228229// Normally this is done in `get_static_inner`, but when as we generate an internal global,
230 // it will apply the dso_local to the internal global instead, so do it here, too.
231cx.assume_dso_local(g1, true);
232233// Declare an internal global `extern_with_linkage_foo` which
234 // is initialized with the address of `foo`. If `foo` is
235 // discarded during linking (for example, if `foo` has weak
236 // linkage and there are no definitions), then
237 // `extern_with_linkage_foo` will instead be initialized to
238 // zero.
239let real_name =
240::alloc::__export::must_use({
::alloc::fmt::format(format_args!("_rust_extern_with_linkage_{0:016x}_{1}",
cx.tcx.stable_crate_id(LOCAL_CRATE), sym))
})format!("_rust_extern_with_linkage_{:016x}_{sym}", cx.tcx.stable_crate_id(LOCAL_CRATE));
241let g2 = cx.define_global(&real_name, llty).unwrap_or_else(|| {
242cx.sess().dcx().emit_fatal(SymbolAlreadyDefined {
243 span: cx.tcx.def_span(def_id),
244 symbol_name: sym,
245 })
246 });
247 llvm::set_linkage(g2, llvm::Linkage::InternalLinkage);
248 llvm::set_unnamed_address(g2, llvm::UnnamedAddr::Global);
249250// Sign the function pointer that is used to initialize the global
251let initializer = if should_sign {
252let key: u32 = 0;
253let discriminator: u64 = 0;
254255const_ptr_auth(
256cx.const_bitcast(g1, llty),
257key,
258discriminator,
259None, /* address_diversity */
260)
261 } else {
262g1263 };
264265 llvm::set_initializer(g2, initializer);
266267g2268 } else if cx.tcx.sess.target.arch == Arch::X86269 && common::is_using_dlltool(&cx.tcx.sess.target)
270 && let Some(dllimport) = crate::common::get_dllimport(cx.tcx, def_id, sym)
271 {
272cx.declare_global(&common::i686_decorated_name(dllimport, true, true, false), llty)
273 } else {
274// Generate an external declaration.
275 // FIXME(nagisa): investigate whether it can be changed into define_global
276cx.declare_global(sym, llty)
277 }
278}
279280impl<'ll> CodegenCx<'ll, '_> {
281pub(crate) fn const_bitcast(&self, val: &'ll Value, ty: &'ll Type) -> &'ll Value {
282unsafe { llvm::LLVMConstBitCast(val, ty) }
283 }
284285pub(crate) fn const_pointercast(&self, val: &'ll Value, ty: &'ll Type) -> &'ll Value {
286unsafe { llvm::LLVMConstPointerCast(val, ty) }
287 }
288289/// Create a global variable.
290 ///
291 /// The returned global variable is a pointer in the default address space for globals.
292 /// Fails if a symbol with the given name already exists.
293pub(crate) fn static_addr_of_mut(
294&self,
295 cv: &'ll Value,
296 align: Align,
297 kind: Option<&str>,
298 ) -> &'ll Value {
299let gv = match kind {
300Some(kind) if !self.tcx.sess.fewer_names() => {
301let name = self.generate_local_symbol_name(kind);
302let gv = self.define_global(&name, self.val_ty(cv)).unwrap_or_else(|| {
303bug_impl(None, format_args!("symbol `{0}` is already defined", name),
Location::caller());bug!("symbol `{}` is already defined", name);
304 });
305gv306 }
307_ => self.define_global("", self.val_ty(cv)).unwrap_or_else(|| {
308bug_impl(None, format_args!("anonymous global symbol is already defined"),
Location::caller());bug!("anonymous global symbol is already defined");
309 }),
310 };
311 llvm::set_linkage(gv, llvm::Linkage::PrivateLinkage);
312 llvm::set_initializer(gv, cv);
313set_global_alignment(self, gv, align);
314 llvm::set_unnamed_address(gv, llvm::UnnamedAddr::Global);
315gv316 }
317318/// Create a global constant.
319 ///
320 /// The returned global variable is a pointer in the default address space for globals.
321pub(crate) fn static_addr_of_impl(
322&self,
323 cv: &'ll Value,
324 align: Align,
325 kind: Option<&str>,
326 ) -> &'ll Value {
327if let Some(&gv) = self.const_globals.borrow().get(&cv) {
328unsafe {
329// Upgrade the alignment in cases where the same constant is used with different
330 // alignment requirements
331let llalign = align.bytes() as u32;
332if llalign > llvm::LLVMGetAlignment(gv) {
333 llvm::LLVMSetAlignment(gv, llalign);
334 }
335 }
336return gv;
337 }
338let gv = self.static_addr_of_mut(cv, align, kind);
339 llvm::set_global_constant(gv, true);
340341self.const_globals.borrow_mut().insert(cv, gv);
342gv343 }
344345{}
#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("get_static",
"rustc_codegen_llvm::consts", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs"),
::tracing_core::__macro_support::Option::Some(345u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_llvm::consts"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("def_id")
}> =
::tracing::__macro_support::FieldName::new("def_id");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: &'ll Value = loop {};
return __tracing_attr_fake_return;
}
{
let instance = Instance::mono(self.tcx, def_id);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs:348",
"rustc_codegen_llvm::consts", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs"),
::tracing_core::__macro_support::Option::Some(348u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_llvm::consts"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("instance")
}> =
::tracing::__macro_support::FieldName::new("instance");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&instance)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let DefKind::Static { nested, .. } =
self.tcx.def_kind(def_id) else {
bug_impl(None, format_args!("impossible case reached"),
Location::caller())
};
let llty =
if nested {
self.type_i8()
} else {
let ty = instance.ty(self.tcx, self.typing_env());
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs:357",
"rustc_codegen_llvm::consts", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs"),
::tracing_core::__macro_support::Option::Some(357u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_llvm::consts"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("ty")
}> =
::tracing::__macro_support::FieldName::new("ty");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&ty)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
self.layout_of(ty).llvm_type(self)
};
self.get_static_inner(def_id, llty)
}
}
}#[instrument(level = "debug", skip(self))]346pub(crate) fn get_static(&self, def_id: DefId) -> &'ll Value {
347let instance = Instance::mono(self.tcx, def_id);
348trace!(?instance);
349350let DefKind::Static { nested, .. } = self.tcx.def_kind(def_id) else { bug!() };
351// Nested statics do not have a type, so pick a dummy type and let `codegen_static` figure
352 // out the llvm type from the actual evaluated initializer.
353let llty = if nested {
354self.type_i8()
355 } else {
356let ty = instance.ty(self.tcx, self.typing_env());
357trace!(?ty);
358self.layout_of(ty).llvm_type(self)
359 };
360self.get_static_inner(def_id, llty)
361 }
362363{}
#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("get_static_inner",
"rustc_codegen_llvm::consts", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs"),
::tracing_core::__macro_support::Option::Some(363u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_llvm::consts"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("def_id")
}> =
::tracing::__macro_support::FieldName::new("def_id");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: &'ll Value = loop {};
return __tracing_attr_fake_return;
}
{
let instance = Instance::mono(self.tcx, def_id);
if let Some(&g) = self.instances.borrow().get(&instance) {
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs:367",
"rustc_codegen_llvm::consts", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs"),
::tracing_core::__macro_support::Option::Some(367u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_llvm::consts"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("used cached value")
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
return g;
}
let defined_in_current_codegen_unit =
self.codegen_unit.items().contains_key(&MonoItem::Static(def_id));
if !!defined_in_current_codegen_unit {
{
::core::panicking::panic_fmt(format_args!("consts::get_static() should always hit the cache for statics defined in the same CGU, but did not for `{0:?}`",
def_id));
}
};
let sym = self.tcx.symbol_name(instance).name;
let fn_attrs = self.tcx.codegen_fn_attrs(def_id);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs:382",
"rustc_codegen_llvm::consts", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_codegen_llvm/src/consts.rs"),
::tracing_core::__macro_support::Option::Some(382u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_llvm::consts"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("sym")
}> =
::tracing::__macro_support::FieldName::new("sym");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("fn_attrs")
}> =
::tracing::__macro_support::FieldName::new("fn_attrs");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&sym)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&fn_attrs)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};
let g =
if def_id.is_local() && !self.tcx.is_foreign_item(def_id) {
if let Some(g) = self.get_declared_value(sym) {
if self.val_ty(g) != self.type_ptr() {
bug_impl(Some(self.tcx.def_span(def_id)),
format_args!("Conflicting types for static"),
Location::caller());
}
}
let g = self.declare_global(sym, llty);
if !self.tcx.is_reachable_non_generic(def_id) {
llvm::set_visibility(g, llvm::Visibility::Hidden);
}
g
} else if let Some(classname) = fn_attrs.objc_class {
self.get_objc_classref(classname)
} else if let Some(methname) = fn_attrs.objc_selector {
self.get_objc_selref(methname)
} else {
check_and_apply_linkage(self, fn_attrs, llty, sym, def_id)
};
if fn_attrs.flags.contains(CodegenFnAttrFlags::THREAD_LOCAL) {
llvm::set_thread_local_mode(g, self.tls_model);
}
let dso_local = self.assume_dso_local(g, true);
if !def_id.is_local() {
let is_eii =
fn_attrs.flags.contains(CodegenFnAttrFlags::EXTERNALLY_IMPLEMENTABLE_ITEM);
let needs_dll_storage_attr =
self.use_dll_storage_attrs &&
(!self.tcx.is_foreign_item(def_id) || is_eii) && !dso_local
&& !self.tcx.sess.opts.cg.linker_plugin_lto.enabled();
if !!(self.tcx.sess.opts.cg.linker_plugin_lto.enabled() &&
self.tcx.sess.target.is_like_windows &&
self.tcx.sess.opts.cg.prefer_dynamic) {
::core::panicking::panic("assertion failed: !(self.tcx.sess.opts.cg.linker_plugin_lto.enabled() &&\n self.tcx.sess.target.is_like_windows &&\n self.tcx.sess.opts.cg.prefer_dynamic)")
};
if needs_dll_storage_attr {
if !self.tcx.is_codegened_item(def_id) {
llvm::set_dllimport_storage_class(g);
}
}
}
if self.use_dll_storage_attrs &&
let Some(library) = self.tcx.native_library(def_id) &&
library.kind.is_dllimport() {
llvm::set_dllimport_storage_class(g);
}
self.instances.borrow_mut().insert(instance, g);
g
}
}
}#[instrument(level = "debug", skip(self, llty))]364fn get_static_inner(&self, def_id: DefId, llty: &'ll Type) -> &'ll Value {
365let instance = Instance::mono(self.tcx, def_id);
366if let Some(&g) = self.instances.borrow().get(&instance) {
367trace!("used cached value");
368return g;
369 }
370371let defined_in_current_codegen_unit =
372self.codegen_unit.items().contains_key(&MonoItem::Static(def_id));
373assert!(
374 !defined_in_current_codegen_unit,
375"consts::get_static() should always hit the cache for \
376 statics defined in the same CGU, but did not for `{def_id:?}`"
377);
378379let sym = self.tcx.symbol_name(instance).name;
380let fn_attrs = self.tcx.codegen_fn_attrs(def_id);
381382debug!(?sym, ?fn_attrs);
383384let g = if def_id.is_local() && !self.tcx.is_foreign_item(def_id) {
385if let Some(g) = self.get_declared_value(sym) {
386if self.val_ty(g) != self.type_ptr() {
387span_bug!(self.tcx.def_span(def_id), "Conflicting types for static");
388 }
389 }
390391let g = self.declare_global(sym, llty);
392393if !self.tcx.is_reachable_non_generic(def_id) {
394 llvm::set_visibility(g, llvm::Visibility::Hidden);
395 }
396397 g
398 } else if let Some(classname) = fn_attrs.objc_class {
399self.get_objc_classref(classname)
400 } else if let Some(methname) = fn_attrs.objc_selector {
401self.get_objc_selref(methname)
402 } else {
403 check_and_apply_linkage(self, fn_attrs, llty, sym, def_id)
404 };
405406// Thread-local statics in some other crate need to *always* be linked
407 // against in a thread-local fashion, so we need to be sure to apply the
408 // thread-local attribute locally if it was present remotely. If we
409 // don't do this then linker errors can be generated where the linker
410 // complains that one object files has a thread local version of the
411 // symbol and another one doesn't.
412if fn_attrs.flags.contains(CodegenFnAttrFlags::THREAD_LOCAL) {
413 llvm::set_thread_local_mode(g, self.tls_model);
414 }
415416let dso_local = self.assume_dso_local(g, true);
417418if !def_id.is_local() {
419let is_eii = fn_attrs.flags.contains(CodegenFnAttrFlags::EXTERNALLY_IMPLEMENTABLE_ITEM);
420let needs_dll_storage_attr = self.use_dll_storage_attrs
421// EII static declarations are encoded as foreign items, but their symbols are
422 // resolved by Rust crates, not native libraries.
423&& (!self.tcx.is_foreign_item(def_id) || is_eii)
424// Local definitions can never be imported, so we must not apply
425 // the DLLImport annotation.
426&& !dso_local
427// Linker plugin ThinLTO doesn't create the self-dllimport Rust uses for rlibs
428 // as the code generation happens out of process. Instead we assume static linkage
429 // and disallow dynamic linking when linker plugin based LTO is enabled.
430 // Regular in-process ThinLTO doesn't need this workaround.
431&& !self.tcx.sess.opts.cg.linker_plugin_lto.enabled();
432433// If this assertion triggers, there's something wrong with commandline
434 // argument validation.
435assert!(
436 !(self.tcx.sess.opts.cg.linker_plugin_lto.enabled()
437 && self.tcx.sess.target.is_like_windows
438 && self.tcx.sess.opts.cg.prefer_dynamic)
439 );
440441if needs_dll_storage_attr {
442// This item is external but not foreign, i.e., it originates from an external Rust
443 // crate. EII static declarations are handled the same way, even though they are
444 // represented as foreign items. Since we don't know whether this crate will be
445 // linked dynamically or statically in the final application, we always mark such
446 // symbols as 'dllimport'. If final linkage happens to be static, we rely on
447 // compiler-emitted __imp_ stubs to make things work.
448 //
449 // However, in some scenarios we defer emission of statics to downstream
450 // crates, so there are cases where a static with an upstream DefId
451 // is actually present in the current crate. We can find out via the
452 // is_codegened_item query.
453if !self.tcx.is_codegened_item(def_id) {
454 llvm::set_dllimport_storage_class(g);
455 }
456 }
457 }
458459if self.use_dll_storage_attrs
460 && let Some(library) = self.tcx.native_library(def_id)
461 && library.kind.is_dllimport()
462 {
463// For foreign (native) libs we know the exact storage type to use.
464llvm::set_dllimport_storage_class(g);
465 }
466467self.instances.borrow_mut().insert(instance, g);
468 g
469 }
470471fn codegen_static_item(&mut self, def_id: DefId) {
472if !llvm::LLVMGetInitializer(self.instances.borrow().get(&Instance::mono(self.tcx,
def_id)).unwrap()).is_none() {
::core::panicking::panic("assertion failed: llvm::LLVMGetInitializer(self.instances.borrow().get(&Instance::mono(self.tcx,\n def_id)).unwrap()).is_none()")
};assert!(
473 llvm::LLVMGetInitializer(
474self.instances.borrow().get(&Instance::mono(self.tcx, def_id)).unwrap()
475 )
476 .is_none()
477 );
478let attrs = self.tcx.codegen_fn_attrs(def_id);
479480let Ok((v, alloc)) = codegen_static_initializer(self, def_id) else {
481// Error has already been reported
482return;
483 };
484let alloc = alloc.inner();
485486let val_llty = self.val_ty(v);
487488let g = self.get_static_inner(def_id, val_llty);
489let llty = self.get_type_of_global(g);
490491let g = if val_llty == llty {
492g493 } else {
494// codegen_static_initializer creates the global value just from the
495 // `Allocation` data by generating one big struct value that is just
496 // all the bytes and pointers after each other. This will almost never
497 // match the type that the static was declared with. Unfortunately
498 // we can't just LLVMConstBitCast our way out of it because that has very
499 // specific rules on what can be cast. So instead of adding a new way to
500 // generate static initializers that match the static's type, we picked
501 // the easier option and retroactively change the type of the static item itself.
502let name = String::from_utf8(llvm::get_value_name(g))
503 .expect("we declare our statics with a utf8-valid name");
504 llvm::set_value_name(g, b"");
505506let linkage = llvm::get_linkage(g);
507let visibility = llvm::get_visibility(g);
508509let new_g = self.declare_global(&name, val_llty);
510511 llvm::set_linkage(new_g, linkage);
512 llvm::set_visibility(new_g, visibility);
513514// The old global has had its name removed but is returned by
515 // get_static since it is in the instance cache. Provide an
516 // alternative lookup that points to the new global so that
517 // global_asm! can compute the correct mangled symbol name
518 // for the global.
519self.renamed_statics.borrow_mut().insert(def_id, new_g);
520521// To avoid breaking any invariants, we leave around the old
522 // global for the moment; we'll replace all references to it
523 // with the new global later. (See base::codegen_backend.)
524self.statics_to_rauw.borrow_mut().push((g, new_g));
525new_g526 };
527528// NOTE: Alignment from attributes has already been applied to the allocation.
529set_global_alignment(self, g, alloc.align);
530 llvm::set_initializer(g, v);
531532self.assume_dso_local(g, true);
533534// Forward the allocation's mutability (picked by the const interner) to LLVM.
535if alloc.mutability.is_not() {
536 llvm::set_global_constant(g, true);
537 }
538539 debuginfo::build_global_var_di_node(self, def_id, g);
540541if attrs.flags.contains(CodegenFnAttrFlags::THREAD_LOCAL) {
542 llvm::set_thread_local_mode(g, self.tls_model);
543 }
544545// Wasm statics with custom link sections get special treatment as they
546 // also go into custom sections of the wasm executable. The exception to
547 // this is the `.init_array` section for which we can't emit a custom
548 // section as it contains relocations.
549if self.tcx.sess.target.is_like_wasm
550 && attrs551 .link_section
552 .map(|link_section| !link_section.as_str().starts_with(".init_array"))
553 .unwrap_or(true)
554 {
555if let Some(section) = attrs.link_section {
556let section = self.create_metadata(section.as_str().as_bytes());
557if !alloc.provenance().ptrs().is_empty() {
::core::panicking::panic("assertion failed: alloc.provenance().ptrs().is_empty()")
};assert!(alloc.provenance().ptrs().is_empty());
558559// The `inspect` method is okay here because we checked for provenance, and
560 // because we are doing this access to inspect the final interpreter state (not
561 // as part of the interpreter execution).
562let bytes = alloc.inspect_with_uninit_and_ptr_outside_interpreter(0..alloc.len());
563let alloc = self.create_metadata(bytes);
564let data = [section, alloc];
565self.module_add_named_metadata_node(self.llmod(), c"wasm.custom_sections", &data);
566 }
567 }
568569 base::set_link_section(g, attrs);
570 base::set_variable_sanitizer_attrs(g, attrs);
571572if let Some(ignorelist) = &self.sanitizer_ignorelist {
573let instance = ty::Instance::mono(self.tcx, def_id);
574let sym_name = self.tcx.symbol_name(instance).name;
575let span = self.tcx.def_span(def_id);
576let source_map = self.tcx.sess.source_map();
577let filename =
578source_map.span_to_filename(span).prefer_local_unconditionally().to_string();
579let ty_name = {
let _guard = NoTrimmedGuard::new();
self.tcx.type_of(def_id).skip_binder().to_string()
}rustc_middle::ty::print::with_no_trimmed_paths!(
580self.tcx.type_of(def_id).skip_binder().to_string()
581 );
582let mainfile = self583 .tcx
584 .sess
585 .local_crate_source_file()
586 .and_then(|path| path.local_path().map(|p| p.display().to_string()))
587 .unwrap_or_default();
588589let demangled =
590{ let _guard = NoTrimmedGuard::new(); self.tcx.def_path_str(def_id) }rustc_middle::ty::print::with_no_trimmed_paths!(self.tcx.def_path_str(def_id));
591592let global_blame = |section| -> (
593 rustc_sanitizers::ignorelist::Blame,
594 rustc_sanitizers::ignorelist::Blame,
595 ) {
596let mut no_san = rustc_sanitizers::ignorelist::Blame::NONE;
597let mut san = rustc_sanitizers::ignorelist::Blame::NONE;
598let mut update = |prefix, query| {
599let (ns, s) = ignorelist.in_section_blame(section, prefix, query);
600no_san = no_san.max(ns);
601san = san.max(s);
602 };
603update(c"global", sym_name);
604update(c"global", &demangled);
605update(c"src", &filename);
606if !mainfile.is_empty() {
607update(c"mainfile", &mainfile);
608 }
609update(c"type", &ty_name);
610 (no_san, san)
611 };
612613let sanitizers = self.tcx.sess.sanitizers();
614let (address_nosan, address_san) = global_blame(c"address");
615let (kaddress_nosan, kaddress_san) = global_blame(c"kernel-address");
616let (hwaddress_nosan, hwaddress_san) = global_blame(c"hwaddress");
617let (khwaddress_nosan, khwaddress_san) = global_blame(c"kernel-hwaddress");
618619let ignore_address =
620 rustc_sanitizers::ignorelist::is_blame_ignored(address_nosan, address_san);
621let ignore_kernel_address = rustc_sanitizers::ignorelist::is_blame_ignored(
622address_nosan.max(kaddress_nosan),
623address_san.max(kaddress_san),
624 );
625let ignore_hwaddress =
626 rustc_sanitizers::ignorelist::is_blame_ignored(hwaddress_nosan, hwaddress_san);
627let ignore_kernel_hwaddress = rustc_sanitizers::ignorelist::is_blame_ignored(
628hwaddress_nosan.max(khwaddress_nosan),
629hwaddress_san.max(khwaddress_san),
630 );
631632if (sanitizers.contains(rustc_target::spec::SanitizerSet::ADDRESS) && ignore_address)
633 || (sanitizers.contains(rustc_target::spec::SanitizerSet::KERNELADDRESS)
634 && ignore_kernel_address)
635 {
636unsafe { llvm::LLVMRustSetNoSanitizeAddress(g) };
637 }
638if (sanitizers.contains(rustc_target::spec::SanitizerSet::HWADDRESS)
639 && ignore_hwaddress)
640 || (sanitizers.contains(rustc_target::spec::SanitizerSet::KERNELHWADDRESS)
641 && ignore_kernel_hwaddress)
642 {
643unsafe { llvm::LLVMRustSetNoSanitizeHWAddress(g) };
644 }
645 }
646647if attrs.flags.contains(CodegenFnAttrFlags::USED_COMPILER) {
648// `USED` and `USED_LINKER` can't be used together.
649if !!attrs.flags.contains(CodegenFnAttrFlags::USED_LINKER) {
::core::panicking::panic("assertion failed: !attrs.flags.contains(CodegenFnAttrFlags::USED_LINKER)")
};assert!(!attrs.flags.contains(CodegenFnAttrFlags::USED_LINKER));
650651// The semantics of #[used] in Rust only require the symbol to make it into the
652 // object file. It is explicitly allowed for the linker to strip the symbol if it
653 // is dead, which means we are allowed to use `llvm.compiler.used` instead of
654 // `llvm.used` here.
655 //
656 // Additionally, https://reviews.llvm.org/D97448 in LLVM 13 started emitting unique
657 // sections with SHF_GNU_RETAIN flag for llvm.used symbols, which may trigger bugs
658 // in the handling of `.init_array` (the static constructor list) in versions of
659 // the gold linker (prior to the one released with binutils 2.36).
660 //
661 // That said, we only ever emit these when `#[used(compiler)]` is explicitly
662 // requested. This is to avoid similar breakage on other targets, in particular
663 // MachO targets have *their* static constructor lists broken if `llvm.compiler.used`
664 // is emitted rather than `llvm.used`. However, that check happens when assigning
665 // the `CodegenFnAttrFlags` in the `codegen_fn_attrs` query, so we don't need to
666 // take care of it here.
667self.add_compiler_used_global(g);
668 }
669if attrs.flags.contains(CodegenFnAttrFlags::USED_LINKER) {
670// `USED` and `USED_LINKER` can't be used together.
671if !!attrs.flags.contains(CodegenFnAttrFlags::USED_COMPILER) {
::core::panicking::panic("assertion failed: !attrs.flags.contains(CodegenFnAttrFlags::USED_COMPILER)")
};assert!(!attrs.flags.contains(CodegenFnAttrFlags::USED_COMPILER));
672673self.add_used_global(g);
674 }
675 }
676677/// Add a global value to a list to be stored in the `llvm.used` variable, an array of ptr.
678pub(crate) fn add_used_global(&mut self, global: &'ll Value) {
679self.used_statics.push(global);
680 }
681682/// Add a global value to a list to be stored in the `llvm.compiler.used` variable,
683 /// an array of ptr.
684pub(crate) fn add_compiler_used_global(&self, global: &'ll Value) {
685self.compiler_used_statics.borrow_mut().push(global);
686 }
687688// We do our best here to match what Clang does when compiling Objective-C natively.
689 // See Clang's `CGObjCCommonMac::CreateCStringLiteral`:
690 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L4134
691fn define_objc_classname(&self, classname: &str) -> &'ll Value {
692{
match (&self.objc_abi_version(), &1) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(self.objc_abi_version(), 1);
693694let llval = self.null_terminate_const_bytes(classname.as_bytes());
695let llty = self.val_ty(llval);
696let sym = self.generate_local_symbol_name("OBJC_CLASS_NAME_");
697let g = self.define_global(&sym, llty).unwrap_or_else(|| {
698bug_impl(None, format_args!("symbol `{0}` is already defined", sym),
Location::caller());bug!("symbol `{}` is already defined", sym);
699 });
700set_global_alignment(self, g, self.tcx.data_layout.i8_align);
701 llvm::set_initializer(g, llval);
702 llvm::set_linkage(g, llvm::Linkage::PrivateLinkage);
703 llvm::set_section(g, c"__TEXT,__cstring,cstring_literals");
704 llvm::LLVMSetGlobalConstant(g, llvm::TRUE);
705 llvm::LLVMSetUnnamedAddress(g, llvm::UnnamedAddr::Global);
706self.add_compiler_used_global(g);
707708g709 }
710711// We do our best here to match what Clang does when compiling Objective-C natively.
712 // See Clang's `ObjCNonFragileABITypesHelper`:
713 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L6052
714fn get_objc_class_t(&self) -> &'ll Type {
715if let Some(class_t) = self.objc_class_t.get() {
716return class_t;
717 }
718719{
match (&self.objc_abi_version(), &2) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(self.objc_abi_version(), 2);
720721// struct _class_t {
722 // struct _class_t* isa;
723 // struct _class_t* const superclass;
724 // void* cache;
725 // IMP* vtable;
726 // struct class_ro_t* ro;
727 // }
728729let class_t = self.type_named_struct("struct._class_t");
730let els = [self.type_ptr(); 5];
731let packed = false;
732self.set_struct_body(class_t, &els, packed);
733734self.objc_class_t.set(Some(class_t));
735class_t736 }
737738// We do our best here to match what Clang does when compiling Objective-C natively. We
739 // deduplicate references within a CGU, but we need a reference definition in each referencing
740 // CGU. All attempts at using external references to a single reference definition result in
741 // linker errors.
742fn get_objc_classref(&self, classname: Symbol) -> &'ll Value {
743let mut classrefs = self.objc_classrefs.borrow_mut();
744if let Some(classref) = classrefs.get(&classname).copied() {
745return classref;
746 }
747748let g = match self.objc_abi_version() {
7491 => {
750// See Clang's `CGObjCMac::EmitClassRefFromId`:
751 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L5205
752let llval = self.define_objc_classname(classname.as_str());
753let llty = self.type_ptr();
754let sym = self.generate_local_symbol_name("OBJC_CLASS_REFERENCES_");
755let g = self.define_global(&sym, llty).unwrap_or_else(|| {
756bug_impl(None, format_args!("symbol `{0}` is already defined", sym),
Location::caller());bug!("symbol `{}` is already defined", sym);
757 });
758set_global_alignment(self, g, self.tcx.data_layout.pointer_align().abi);
759 llvm::set_initializer(g, llval);
760 llvm::set_linkage(g, llvm::Linkage::PrivateLinkage);
761 llvm::set_section(g, c"__OBJC,__cls_refs,literal_pointers,no_dead_strip");
762self.add_compiler_used_global(g);
763g764 }
7652 => {
766// See Clang's `CGObjCNonFragileABIMac::EmitClassRefFromId`:
767 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L7423
768let llval = {
769let extern_sym = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("OBJC_CLASS_$_{0}",
classname.as_str()))
})format!("OBJC_CLASS_$_{}", classname.as_str());
770let extern_llty = self.get_objc_class_t();
771self.declare_global(&extern_sym, extern_llty)
772 };
773let llty = self.type_ptr();
774let sym = self.generate_local_symbol_name("OBJC_CLASSLIST_REFERENCES_$_");
775let g = self.define_global(&sym, llty).unwrap_or_else(|| {
776bug_impl(None, format_args!("symbol `{0}` is already defined", sym),
Location::caller());bug!("symbol `{}` is already defined", sym);
777 });
778set_global_alignment(self, g, self.tcx.data_layout.pointer_align().abi);
779 llvm::set_initializer(g, llval);
780 llvm::set_linkage(g, llvm::Linkage::InternalLinkage);
781 llvm::set_section(g, c"__DATA,__objc_classrefs,regular,no_dead_strip");
782self.add_compiler_used_global(g);
783g784 }
785_ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
786 };
787788classrefs.insert(classname, g);
789g790 }
791792// We do our best here to match what Clang does when compiling Objective-C natively. We
793 // deduplicate references within a CGU, but we need a reference definition in each referencing
794 // CGU. All attempts at using external references to a single reference definition result in
795 // linker errors.
796 //
797 // Newer versions of Apple Clang generate calls to `@"objc_msgSend$methname"` selector stub
798 // functions. We don't currently do that. The code we generate is closer to what Apple Clang
799 // generates with the `-fno-objc-msgsend-selector-stubs` option.
800fn get_objc_selref(&self, methname: Symbol) -> &'ll Value {
801let mut selrefs = self.objc_selrefs.borrow_mut();
802if let Some(selref) = selrefs.get(&methname).copied() {
803return selref;
804 }
805806let abi_version = self.objc_abi_version();
807808// See Clang's `CGObjCCommonMac::CreateCStringLiteral`:
809 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L4134
810let methname_llval = self.null_terminate_const_bytes(methname.as_str().as_bytes());
811let methname_llty = self.val_ty(methname_llval);
812let methname_sym = self.generate_local_symbol_name("OBJC_METH_VAR_NAME_");
813let methname_g = self.define_global(&methname_sym, methname_llty).unwrap_or_else(|| {
814bug_impl(None, format_args!("symbol `{0}` is already defined", methname_sym),
Location::caller());bug!("symbol `{}` is already defined", methname_sym);
815 });
816set_global_alignment(self, methname_g, self.tcx.data_layout.i8_align);
817 llvm::set_initializer(methname_g, methname_llval);
818 llvm::set_linkage(methname_g, llvm::Linkage::PrivateLinkage);
819 llvm::set_section(
820methname_g,
821match abi_version {
8221 => c"__TEXT,__cstring,cstring_literals",
8232 => c"__TEXT,__objc_methname,cstring_literals",
824_ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
825 },
826 );
827 llvm::LLVMSetGlobalConstant(methname_g, llvm::TRUE);
828 llvm::LLVMSetUnnamedAddress(methname_g, llvm::UnnamedAddr::Global);
829self.add_compiler_used_global(methname_g);
830831// See Clang's `CGObjCMac::EmitSelectorAddr`:
832 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L5243
833 // And Clang's `CGObjCNonFragileABIMac::EmitSelectorAddr`:
834 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L7586
835let selref_llval = methname_g;
836let selref_llty = self.type_ptr();
837let selref_sym = self.generate_local_symbol_name("OBJC_SELECTOR_REFERENCES_");
838let selref_g = self.define_global(&selref_sym, selref_llty).unwrap_or_else(|| {
839bug_impl(None, format_args!("symbol `{0}` is already defined", selref_sym),
Location::caller());bug!("symbol `{}` is already defined", selref_sym);
840 });
841set_global_alignment(self, selref_g, self.tcx.data_layout.pointer_align().abi);
842 llvm::set_initializer(selref_g, selref_llval);
843 llvm::set_externally_initialized(selref_g, true);
844 llvm::set_linkage(
845selref_g,
846match abi_version {
8471 => llvm::Linkage::PrivateLinkage,
8482 => llvm::Linkage::InternalLinkage,
849_ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
850 },
851 );
852 llvm::set_section(
853selref_g,
854match abi_version {
8551 => c"__OBJC,__message_refs,literal_pointers,no_dead_strip",
8562 => c"__DATA,__objc_selrefs,literal_pointers,no_dead_strip",
857_ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
858 },
859 );
860self.add_compiler_used_global(selref_g);
861862selrefs.insert(methname, selref_g);
863selref_g864 }
865866// We do our best here to match what Clang does when compiling Objective-C natively.
867 // See Clang's `ObjCTypesHelper`:
868 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L5936
869 // And Clang's `CGObjCMac::EmitModuleInfo`:
870 // https://github.com/llvm/llvm-project/blob/llvmorg-20.1.8/clang/lib/CodeGen/CGObjCMac.cpp#L5151
871pub(crate) fn define_objc_module_info(&mut self) {
872{
match (&self.objc_abi_version(), &1) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(self.objc_abi_version(), 1);
873874// struct _objc_module {
875 // long version; // Hardcoded to 7 in Clang.
876 // long size; // sizeof(struct _objc_module)
877 // char* name; // Hardcoded to classname "" in Clang.
878 // struct _objc_symtab* symtab; // Null without class or category definitions.
879 // }
880881let llty = self.type_named_struct("struct._objc_module");
882let i32_llty = self.type_i32();
883let ptr_llty = self.type_ptr();
884let packed = false;
885self.set_struct_body(llty, &[i32_llty, i32_llty, ptr_llty, ptr_llty], packed);
886887let version = self.const_uint(i32_llty, 7);
888let size = self.const_uint(i32_llty, 16);
889let name = self.define_objc_classname("");
890let symtab = self.const_null(ptr_llty);
891let llval = crate::common::named_struct(llty, &[version, size, name, symtab]);
892893let sym = "OBJC_MODULES";
894let g = self.define_global(&sym, llty).unwrap_or_else(|| {
895bug_impl(None, format_args!("symbol `{0}` is already defined", sym),
Location::caller());bug!("symbol `{}` is already defined", sym);
896 });
897set_global_alignment(self, g, self.tcx.data_layout.pointer_align().abi);
898 llvm::set_initializer(g, llval);
899 llvm::set_linkage(g, llvm::Linkage::PrivateLinkage);
900 llvm::set_section(g, c"__OBJC,__module_info,regular,no_dead_strip");
901902self.add_compiler_used_global(g);
903 }
904}
905906impl<'ll> StaticCodegenMethods for CodegenCx<'ll, '_> {
907/// Get a pointer to a global variable.
908 ///
909 /// The pointer will always be in the default address space. If global variables default to a
910 /// different address space, an addrspacecast is inserted.
911fn static_addr_of(&self, alloc: ConstAllocation<'_>, kind: Option<&str>) -> &'ll Value {
912// FIXME: should we cache `const_alloc_to_llvm` to avoid repeating this for the
913 // same `ConstAllocation`?
914let cv = const_alloc_to_llvm(self, alloc.inner(), IsStatic::No, IsInitOrFini::No);
915916let gv = self.static_addr_of_impl(cv, alloc.inner().align, kind);
917// static_addr_of_impl returns the bare global variable, which might not be in the default
918 // address space. Cast to the default address space if necessary.
919self.const_pointercast(gv, self.type_ptr())
920 }
921922fn codegen_static(&mut self, def_id: DefId) {
923self.codegen_static_item(def_id)
924 }
925}