1use std::fmt;
23use itertools::Either;
4use rustc_abias abi;
5use rustc_abi::{
6Align, BackendRepr, FIRST_VARIANT, FieldIdx, Primitive, Size, TagEncoding, VariantIdx, Variants,
7};
8use rustc_hir::LangItem;
9use rustc_middle::mir::interpret::{Pointer, Scalar, alloc_range};
10use rustc_middle::mir::{self, ConstValue};
11use rustc_middle::ty::layout::{LayoutOf, TyAndLayout};
12use rustc_middle::ty::{self, Ty};
13use rustc_middle::{bug, span_bug};
14use rustc_session::config::{AnnotateMoves, DebugInfo, OptLevel};
15use tracing::{debug, instrument};
1617use super::place::{PlaceRef, PlaceValue};
18use super::rvalue::transmute_scalar;
19use super::{FunctionCx, LocalRef};
20use crate::MemFlags;
21use crate::common::IntPredicate;
22use crate::traits::*;
2324/// The representation of a Rust value. The enum variant is in fact
25/// uniquely determined by the value's type, but is kept as a
26/// safety check.
27#[derive(#[automatically_derived]
impl<V: ::core::marker::Copy> ::core::marker::Copy for OperandValue<V> { }Copy, #[automatically_derived]
impl<V: ::core::clone::Clone> ::core::clone::Clone for OperandValue<V> {
#[inline]
fn clone(&self) -> OperandValue<V> {
match self {
OperandValue::Ref(__self_0) =>
OperandValue::Ref(::core::clone::Clone::clone(__self_0)),
OperandValue::Immediate(__self_0) =>
OperandValue::Immediate(::core::clone::Clone::clone(__self_0)),
OperandValue::Pair(__self_0, __self_1) =>
OperandValue::Pair(::core::clone::Clone::clone(__self_0),
::core::clone::Clone::clone(__self_1)),
OperandValue::ZeroSized => OperandValue::ZeroSized,
}
}
}Clone, #[automatically_derived]
impl<V: ::core::fmt::Debug> ::core::fmt::Debug for OperandValue<V> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
OperandValue::Ref(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Ref",
&__self_0),
OperandValue::Immediate(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"Immediate", &__self_0),
OperandValue::Pair(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f, "Pair",
__self_0, &__self_1),
OperandValue::ZeroSized =>
::core::fmt::Formatter::write_str(f, "ZeroSized"),
}
}
}Debug)]
28pub enum OperandValue<V> {
29/// A reference to the actual operand. The data is guaranteed
30 /// to be valid for the operand's lifetime.
31 /// The second value, if any, is the extra data (vtable or length)
32 /// which indicates that it refers to an unsized rvalue.
33 ///
34 /// An `OperandValue` *must* be this variant for any type for which
35 /// [`LayoutTypeCodegenMethods::is_backend_ref`] returns `true`.
36 /// (That basically amounts to "isn't one of the other variants".)
37 ///
38 /// This holds a [`PlaceValue`] (like a [`PlaceRef`] does) with a pointer
39 /// to the location holding the value. The type behind that pointer is the
40 /// one returned by [`LayoutTypeCodegenMethods::backend_type`].
41Ref(PlaceValue<V>),
42/// A single LLVM immediate value.
43 ///
44 /// An `OperandValue` *must* be this variant for any type for which
45 /// [`LayoutTypeCodegenMethods::is_backend_immediate`] returns `true`.
46 /// The backend value in this variant must be the *immediate* backend type,
47 /// as returned by [`LayoutTypeCodegenMethods::immediate_backend_type`].
48Immediate(V),
49/// A pair of immediate LLVM values. Used by wide pointers too.
50 ///
51 /// # Invariants
52 /// - For `Pair(a, b)`, `a` is always at offset 0, but may have `FieldIdx(1..)`
53 /// - `b` is not at offset 0, because `V` is not a 1ZST type.
54 /// - `a` and `b` will have a different FieldIdx, but otherwise `b`'s may be lower
55 /// or they may not be adjacent, due to arbitrary numbers of 1ZST fields that
56 /// will not affect the shape of the data which determines if `Pair` will be used.
57 /// - An `OperandValue` *must* be this variant for any type for which
58 /// [`LayoutTypeCodegenMethods::is_backend_scalar_pair`] returns `true`.
59 /// - The backend values in this variant must be the *immediate* backend types,
60 /// as returned by [`LayoutTypeCodegenMethods::scalar_pair_element_backend_type`]
61 /// with `immediate: true`.
62Pair(V, V),
63/// A value taking no bytes, and which therefore needs no LLVM value at all.
64 ///
65 /// If you ever need a `V` to pass to something, get a fresh poison value
66 /// from [`ConstCodegenMethods::const_poison`].
67 ///
68 /// An `OperandValue` *must* be this variant for any type for which
69 /// `is_zst` on its `Layout` returns `true`. Note however that
70 /// these values can still require alignment.
71ZeroSized,
72}
7374impl<V: CodegenObject> OperandValue<V> {
75/// Return the data pointer and optional metadata as backend values
76 /// if this value can be treat as a pointer.
77pub(crate) fn try_pointer_parts(self) -> Option<(V, Option<V>)> {
78match self {
79 OperandValue::Immediate(llptr) => Some((llptr, None)),
80 OperandValue::Pair(llptr, llextra) => Some((llptr, Some(llextra))),
81 OperandValue::Ref(_) | OperandValue::ZeroSized => None,
82 }
83 }
8485/// Treat this value as a pointer and return the data pointer and
86 /// optional metadata as backend values.
87 ///
88 /// If you're making a place, use [`Self::deref`] instead.
89pub(crate) fn pointer_parts(self) -> (V, Option<V>) {
90self.try_pointer_parts()
91 .unwrap_or_else(|| ::rustc_middle::util::bug::bug_fmt(format_args!("OperandValue cannot be a pointer: {0:?}",
self))bug!("OperandValue cannot be a pointer: {self:?}"))
92 }
9394/// Treat this value as a pointer and return the place to which it points.
95 ///
96 /// The pointer immediate doesn't inherently know its alignment,
97 /// so you need to pass it in. If you want to get it from a type's ABI
98 /// alignment, then maybe you want [`OperandRef::deref`] instead.
99 ///
100 /// This is the inverse of [`PlaceValue::address`].
101pub(crate) fn deref(self, align: Align) -> PlaceValue<V> {
102let (llval, llextra) = self.pointer_parts();
103PlaceValue { llval, llextra, align }
104 }
105106#[must_use]
107pub(crate) fn is_expected_variant_for_type<'tcx, Cx: LayoutTypeCodegenMethods<'tcx>>(
108&self,
109 cx: &Cx,
110 ty: TyAndLayout<'tcx>,
111 ) -> bool {
112match self {
113 OperandValue::ZeroSized => ty.is_zst(),
114 OperandValue::Immediate(_) => cx.is_backend_immediate(ty),
115 OperandValue::Pair(_, _) => cx.is_backend_scalar_pair(ty),
116 OperandValue::Ref(_) => cx.is_backend_ref(ty),
117 }
118 }
119}
120121/// An `OperandRef` is an "SSA" reference to a Rust value, along with
122/// its type.
123///
124/// NOTE: unless you know a value's type exactly, you should not
125/// generate LLVM opcodes acting on it and instead act via methods,
126/// to avoid nasty edge cases. In particular, using `Builder::store`
127/// directly is sure to cause problems -- use `OperandRef::store`
128/// instead.
129#[derive(#[automatically_derived]
impl<'tcx, V: ::core::marker::Copy> ::core::marker::Copy for
OperandRef<'tcx, V> {
}Copy, #[automatically_derived]
impl<'tcx, V: ::core::clone::Clone> ::core::clone::Clone for
OperandRef<'tcx, V> {
#[inline]
fn clone(&self) -> OperandRef<'tcx, V> {
OperandRef {
val: ::core::clone::Clone::clone(&self.val),
layout: ::core::clone::Clone::clone(&self.layout),
move_annotation: ::core::clone::Clone::clone(&self.move_annotation),
}
}
}Clone)]
130pub struct OperandRef<'tcx, V> {
131/// The value.
132pub val: OperandValue<V>,
133134/// The layout of value, based on its Rust type.
135pub layout: TyAndLayout<'tcx>,
136137/// Annotation for profiler visibility of move/copy operations.
138 /// When set, the store operation should appear as an inlined call to this function.
139pub move_annotation: Option<ty::Instance<'tcx>>,
140}
141142impl<V: CodegenObject> fmt::Debugfor OperandRef<'_, V> {
143fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
144f.write_fmt(format_args!("OperandRef({0:?} @ {1:?})", self.val, self.layout))write!(f, "OperandRef({:?} @ {:?})", self.val, self.layout)145 }
146}
147148impl<'a, 'tcx, V: CodegenObject> OperandRef<'tcx, V> {
149pub fn zero_sized(layout: TyAndLayout<'tcx>) -> OperandRef<'tcx, V> {
150if !layout.is_zst() {
::core::panicking::panic("assertion failed: layout.is_zst()")
};assert!(layout.is_zst());
151OperandRef { val: OperandValue::ZeroSized, layout, move_annotation: None }
152 }
153154pub(crate) fn from_const<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
155 bx: &mut Bx,
156 val: mir::ConstValue,
157 ty: Ty<'tcx>,
158 ) -> Self {
159let layout = bx.layout_of(ty);
160161let val = match val {
162 ConstValue::Scalar(x) => {
163let BackendRepr::Scalar(scalar) = layout.backend_repr else {
164::rustc_middle::util::bug::bug_fmt(format_args!("from_const: invalid ByVal layout: {0:#?}",
layout));bug!("from_const: invalid ByVal layout: {:#?}", layout);
165 };
166let llval = bx.scalar_to_backend(x, scalar, bx.immediate_backend_type(layout));
167 OperandValue::Immediate(llval)
168 }
169 ConstValue::ZeroSized => return OperandRef::zero_sized(layout),
170 ConstValue::Slice { alloc_id, meta } => {
171let BackendRepr::ScalarPair(a_scalar, _) = layout.backend_repr else {
172::rustc_middle::util::bug::bug_fmt(format_args!("from_const: invalid ScalarPair layout: {0:#?}",
layout));bug!("from_const: invalid ScalarPair layout: {:#?}", layout);
173 };
174let a = Scalar::from_pointer(Pointer::new(alloc_id.into(), Size::ZERO), &bx.tcx());
175let a_llval = bx.scalar_to_backend(
176a,
177a_scalar,
178bx.scalar_pair_element_backend_type(layout, 0, true),
179 );
180let b_llval = bx.const_usize(meta);
181 OperandValue::Pair(a_llval, b_llval)
182 }
183 ConstValue::Indirect { alloc_id, offset } => {
184let alloc = bx.tcx().global_alloc(alloc_id).unwrap_memory();
185return Self::from_const_alloc(bx, layout, alloc, offset);
186 }
187 };
188189OperandRef { val, layout, move_annotation: None }
190 }
191192fn from_const_alloc<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
193 bx: &mut Bx,
194 layout: TyAndLayout<'tcx>,
195 alloc: rustc_middle::mir::interpret::ConstAllocation<'tcx>,
196 offset: Size,
197 ) -> Self {
198let alloc_align = alloc.inner().align;
199if !(alloc_align >= layout.align.abi) {
{
::core::panicking::panic_fmt(format_args!("{1:?} < {0:?}",
layout.align.abi, alloc_align));
}
};assert!(alloc_align >= layout.align.abi, "{alloc_align:?} < {:?}", layout.align.abi);
200201let read_scalar = |start, size, s: abi::Scalar, ty| {
202match alloc.0.read_scalar(
203bx,
204alloc_range(start, size),
205/*read_provenance*/ #[allow(non_exhaustive_omitted_patterns)] match s.primitive() {
abi::Primitive::Pointer(_) => true,
_ => false,
}matches!(s.primitive(), abi::Primitive::Pointer(_)),
206 ) {
207Ok(val) => bx.scalar_to_backend(val, s, ty),
208Err(_) => bx.const_poison(ty),
209 }
210 };
211212// It may seem like all types with `Scalar` or `ScalarPair` ABI are fair game at this point.
213 // However, `MaybeUninit<u64>` is considered a `Scalar` as far as its layout is concerned --
214 // and yet cannot be represented by an interpreter `Scalar`, since we have to handle the
215 // case where some of the bytes are initialized and others are not. So, we need an extra
216 // check that walks over the type of `mplace` to make sure it is truly correct to treat this
217 // like a `Scalar` (or `ScalarPair`).
218match layout.backend_repr {
219 BackendRepr::Scalar(s @ abi::Scalar::Initialized { .. }) => {
220let size = s.size(bx);
221match (&size, &layout.size) {
(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::Some(format_args!("abi::Scalar size does not match layout size")));
}
}
};assert_eq!(size, layout.size, "abi::Scalar size does not match layout size");
222let val = read_scalar(offset, size, s, bx.immediate_backend_type(layout));
223OperandRef { val: OperandValue::Immediate(val), layout, move_annotation: None }
224 }
225 BackendRepr::ScalarPair(
226 a @ abi::Scalar::Initialized { .. },
227 b @ abi::Scalar::Initialized { .. },
228 ) => {
229let (a_size, b_size) = (a.size(bx), b.size(bx));
230let b_offset = (offset + a_size).align_to(b.align(bx).abi);
231if !(b_offset.bytes() > 0) {
::core::panicking::panic("assertion failed: b_offset.bytes() > 0")
};assert!(b_offset.bytes() > 0);
232let a_val = read_scalar(
233offset,
234a_size,
235a,
236bx.scalar_pair_element_backend_type(layout, 0, true),
237 );
238let b_val = read_scalar(
239b_offset,
240b_size,
241b,
242bx.scalar_pair_element_backend_type(layout, 1, true),
243 );
244OperandRef { val: OperandValue::Pair(a_val, b_val), layout, move_annotation: None }
245 }
246_ if layout.is_zst() => OperandRef::zero_sized(layout),
247_ => {
248// Neither a scalar nor scalar pair. Load from a place
249let base_addr = bx.static_addr_of(alloc, None);
250251let llval = bx.const_ptr_byte_offset(base_addr, offset);
252bx.load_operand(PlaceRef::new_sized(llval, layout))
253 }
254 }
255 }
256257/// Asserts that this operand refers to a scalar and returns
258 /// a reference to its value.
259pub fn immediate(self) -> V {
260match self.val {
261 OperandValue::Immediate(s) => s,
262_ => ::rustc_middle::util::bug::bug_fmt(format_args!("not immediate: {0:?}", self))bug!("not immediate: {:?}", self),
263 }
264 }
265266/// Asserts that this operand is a pointer (or reference) and returns
267 /// the place to which it points. (This requires no code to be emitted
268 /// as we represent places using the pointer to the place.)
269 ///
270 /// This uses [`Ty::builtin_deref`] to include the type of the place and
271 /// assumes the place is aligned to the pointee's usual ABI alignment.
272 ///
273 /// If you don't need the type, see [`OperandValue::pointer_parts`]
274 /// or [`OperandValue::deref`].
275pub fn deref<Cx: CodegenMethods<'tcx>>(self, cx: &Cx) -> PlaceRef<'tcx, V> {
276if self.layout.ty.is_box() {
277// Derefer should have removed all Box derefs
278::rustc_middle::util::bug::bug_fmt(format_args!("dereferencing {0:?} in codegen",
self.layout.ty));bug!("dereferencing {:?} in codegen", self.layout.ty);
279 }
280281let projected_ty = self282 .layout
283 .ty
284 .builtin_deref(true)
285 .unwrap_or_else(|| ::rustc_middle::util::bug::bug_fmt(format_args!("deref of non-pointer {0:?}",
self))bug!("deref of non-pointer {:?}", self));
286287let layout = cx.layout_of(projected_ty);
288self.val.deref(layout.align.abi).with_type(layout)
289 }
290291/// Store this operand into a place, applying move/copy annotation if present.
292 ///
293 /// This is the preferred method for storing operands, as it automatically
294 /// applies profiler annotations for tracked move/copy operations.
295pub fn store_with_annotation<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
296self,
297 bx: &mut Bx,
298 dest: PlaceRef<'tcx, V>,
299 ) {
300if let Some(instance) = self.move_annotation {
301bx.with_move_annotation(instance, |bx| self.val.store(bx, dest))
302 } else {
303self.val.store(bx, dest)
304 }
305 }
306307/// If this operand is a `Pair`, we return an aggregate with the two values.
308 /// For other cases, see `immediate`.
309pub fn immediate_or_packed_pair<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
310self,
311 bx: &mut Bx,
312 ) -> V {
313if let OperandValue::Pair(a, b) = self.val {
314let llty = bx.cx().immediate_backend_type(self.layout);
315{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/operand.rs:315",
"rustc_codegen_ssa::mir::operand", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/operand.rs"),
::tracing_core::__macro_support::Option::Some(315u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir::operand"),
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("Operand::immediate_or_packed_pair: packing {0:?} into {1:?}",
self, llty) as &dyn Value))])
});
} else { ; }
};debug!("Operand::immediate_or_packed_pair: packing {:?} into {:?}", self, llty);
316// Reconstruct the immediate aggregate.
317let mut llpair = bx.cx().const_poison(llty);
318llpair = bx.insert_value(llpair, a, 0);
319llpair = bx.insert_value(llpair, b, 1);
320llpair321 } else {
322self.immediate()
323 }
324 }
325326/// If the type is a pair, we return a `Pair`, otherwise, an `Immediate`.
327pub fn from_immediate_or_packed_pair<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
328 bx: &mut Bx,
329 llval: V,
330 layout: TyAndLayout<'tcx>,
331 ) -> Self {
332let val = if let BackendRepr::ScalarPair(..) = layout.backend_repr {
333{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/operand.rs:333",
"rustc_codegen_ssa::mir::operand", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/operand.rs"),
::tracing_core::__macro_support::Option::Some(333u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir::operand"),
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("Operand::from_immediate_or_packed_pair: unpacking {0:?} @ {1:?}",
llval, layout) as &dyn Value))])
});
} else { ; }
};debug!("Operand::from_immediate_or_packed_pair: unpacking {:?} @ {:?}", llval, layout);
334335// Deconstruct the immediate aggregate.
336let a_llval = bx.extract_value(llval, 0);
337let b_llval = bx.extract_value(llval, 1);
338 OperandValue::Pair(a_llval, b_llval)
339 } else {
340 OperandValue::Immediate(llval)
341 };
342OperandRef { val, layout, move_annotation: None }
343 }
344345pub(crate) fn extract_field<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
346&self,
347 fx: &mut FunctionCx<'a, 'tcx, Bx>,
348 bx: &mut Bx,
349 i: usize,
350 ) -> Self {
351let field = self.layout.field(bx.cx(), i);
352let offset = self.layout.fields.offset(i);
353354if !bx.is_backend_ref(self.layout) && bx.is_backend_ref(field) {
355// Part of https://github.com/rust-lang/compiler-team/issues/838
356::rustc_middle::util::bug::span_bug_fmt(fx.mir.span,
format_args!("Non-ref type {0:?} cannot project to ref field type {1:?}",
self, field));span_bug!(
357 fx.mir.span,
358"Non-ref type {self:?} cannot project to ref field type {field:?}",
359 );
360 }
361362let val = if field.is_zst() {
363 OperandValue::ZeroSized364 } else if field.size == self.layout.size {
365match (&offset.bytes(), &0) {
(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.bytes(), 0);
366fx.codegen_transmute_operand(bx, *self, field)
367 } else {
368let (in_scalar, imm) = match (self.val, self.layout.backend_repr) {
369// Extract a scalar component from a pair.
370(OperandValue::Pair(a_llval, b_llval), BackendRepr::ScalarPair(a, b)) => {
371if offset.bytes() == 0 {
372match (&field.size, &a.size(bx.cx())) {
(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!(field.size, a.size(bx.cx()));
373 (Some(a), a_llval)
374 } else {
375match (&offset, &a.size(bx.cx()).align_to(b.align(bx.cx()).abi)) {
(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, a.size(bx.cx()).align_to(b.align(bx.cx()).abi));
376match (&field.size, &b.size(bx.cx())) {
(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!(field.size, b.size(bx.cx()));
377 (Some(b), b_llval)
378 }
379 }
380381_ => {
382::rustc_middle::util::bug::span_bug_fmt(fx.mir.span,
format_args!("OperandRef::extract_field({0:?}): not applicable", self))span_bug!(fx.mir.span, "OperandRef::extract_field({:?}): not applicable", self)383 }
384 };
385 OperandValue::Immediate(match field.backend_repr {
386 BackendRepr::SimdVector { .. } => imm,
387 BackendRepr::Scalar(out_scalar) => {
388let Some(in_scalar) = in_scalarelse {
389::rustc_middle::util::bug::span_bug_fmt(fx.mir.span,
format_args!("OperandRef::extract_field({0:?}): missing input scalar for output scalar",
self))span_bug!(
390 fx.mir.span,
391"OperandRef::extract_field({:?}): missing input scalar for output scalar",
392self
393)394 };
395if in_scalar != out_scalar {
396// If the backend and backend_immediate types might differ,
397 // flip back to the backend type then to the new immediate.
398 // This avoids nop truncations, but still handles things like
399 // Bools in union fields needs to be truncated.
400let backend = bx.from_immediate(imm);
401bx.to_immediate_scalar(backend, out_scalar)
402 } else {
403imm404 }
405 }
406 BackendRepr::ScalarPair(_, _)
407 | BackendRepr::Memory { .. }
408 | BackendRepr::SimdScalableVector { .. } => ::rustc_middle::util::bug::bug_fmt(format_args!("impossible case reached"))bug!(),
409 })
410 };
411412OperandRef { val, layout: field, move_annotation: None }
413 }
414415/// Obtain the actual discriminant of a value.
416#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::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("codegen_get_discr",
"rustc_codegen_ssa::mir::operand", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/operand.rs"),
::tracing_core::__macro_support::Option::Some(416u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir::operand"),
::tracing_core::field::FieldSet::new(&["self", "cast_to"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::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};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&self)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cast_to)
as &dyn 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: V = loop {};
return __tracing_attr_fake_return;
}
{
let dl = &bx.tcx().data_layout;
let cast_to_layout = bx.cx().layout_of(cast_to);
let cast_to = bx.cx().immediate_backend_type(cast_to_layout);
if self.layout.is_uninhabited() {
return bx.cx().const_poison(cast_to);
}
let (tag_scalar, tag_encoding, tag_field) =
match self.layout.variants {
Variants::Empty => {
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("we already handled uninhabited types")));
}
Variants::Single { index } => {
let discr_val =
if let Some(discr) =
self.layout.ty.discriminant_for_variant(bx.tcx(), index) {
discr.val
} else {
match (&index, &FIRST_VARIANT) {
(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);
}
}
};
0
};
return bx.cx().const_uint_big(cast_to, discr_val);
}
Variants::Multiple { tag, ref tag_encoding, tag_field, .. }
=> {
(tag, tag_encoding, tag_field)
}
};
let tag_op =
match self.val {
OperandValue::ZeroSized =>
::rustc_middle::util::bug::bug_fmt(format_args!("impossible case reached")),
OperandValue::Immediate(_) | OperandValue::Pair(_, _) => {
self.extract_field(fx, bx, tag_field.as_usize())
}
OperandValue::Ref(place) => {
let tag =
place.with_type(self.layout).project_field(bx,
tag_field.as_usize());
bx.load_operand(tag)
}
};
let tag_imm = tag_op.immediate();
match *tag_encoding {
TagEncoding::Direct => {
let signed =
match tag_scalar.primitive() {
Primitive::Int(_, signed) =>
!tag_scalar.is_bool() && signed,
_ => false,
};
bx.intcast(tag_imm, cast_to, signed)
}
TagEncoding::Niche {
untagged_variant, ref niche_variants, niche_start } => {
let (tag, tag_llty) =
match tag_scalar.primitive() {
Primitive::Pointer(_) => {
let t = bx.type_from_integer(dl.ptr_sized_integer());
let tag = bx.ptrtoint(tag_imm, t);
(tag, t)
}
_ =>
(tag_imm, bx.cx().immediate_backend_type(tag_op.layout)),
};
let relative_max =
niche_variants.end().as_u32() -
niche_variants.start().as_u32();
let niche_start_const =
bx.cx().const_uint_big(tag_llty, niche_start);
let (is_niche, tagged_discr, delta) =
if relative_max == 0 {
let is_niche =
bx.icmp(IntPredicate::IntEQ, tag, niche_start_const);
let tagged_discr =
bx.cx().const_uint(cast_to,
niche_variants.start().as_u32() as u64);
(is_niche, tagged_discr, 0)
} else {
if niche_variants.contains(&untagged_variant) &&
bx.cx().sess().opts.optimize != OptLevel::No {
let impossible =
niche_start.wrapping_add(u128::from(untagged_variant.as_u32())).wrapping_sub(u128::from(niche_variants.start().as_u32()));
let impossible =
bx.cx().const_uint_big(tag_llty, impossible);
let ne = bx.icmp(IntPredicate::IntNE, tag, impossible);
bx.assume(ne);
}
let tag_range = tag_scalar.valid_range(&dl);
let tag_size = tag_scalar.size(&dl);
let niche_end =
u128::from(relative_max).wrapping_add(niche_start);
let niche_end = tag_size.truncate(niche_end);
let relative_discr = bx.sub(tag, niche_start_const);
let cast_tag = bx.intcast(relative_discr, cast_to, false);
let is_niche =
if tag_range.no_unsigned_wraparound(tag_size) == Ok(true) {
if niche_start == tag_range.start {
let niche_end_const =
bx.cx().const_uint_big(tag_llty, niche_end);
bx.icmp(IntPredicate::IntULE, tag, niche_end_const)
} else {
match (&niche_end, &tag_range.end) {
(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);
}
}
};
bx.icmp(IntPredicate::IntUGE, tag, niche_start_const)
}
} else if tag_range.no_signed_wraparound(tag_size) ==
Ok(true) {
if niche_start == tag_range.start {
let niche_end_const =
bx.cx().const_uint_big(tag_llty, niche_end);
bx.icmp(IntPredicate::IntSLE, tag, niche_end_const)
} else {
match (&niche_end, &tag_range.end) {
(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);
}
}
};
bx.icmp(IntPredicate::IntSGE, tag, niche_start_const)
}
} else {
bx.icmp(IntPredicate::IntULE, relative_discr,
bx.cx().const_uint(tag_llty, relative_max as u64))
};
(is_niche, cast_tag,
niche_variants.start().as_u32() as u128)
};
let tagged_discr =
if delta == 0 {
tagged_discr
} else {
bx.add(tagged_discr, bx.cx().const_uint_big(cast_to, delta))
};
let untagged_variant_const =
bx.cx().const_uint(cast_to,
u64::from(untagged_variant.as_u32()));
let discr =
bx.select(is_niche, tagged_discr, untagged_variant_const);
discr
}
}
}
}
}#[instrument(level = "trace", skip(fx, bx))]417pub fn codegen_get_discr<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
418self,
419 fx: &mut FunctionCx<'a, 'tcx, Bx>,
420 bx: &mut Bx,
421 cast_to: Ty<'tcx>,
422 ) -> V {
423let dl = &bx.tcx().data_layout;
424let cast_to_layout = bx.cx().layout_of(cast_to);
425let cast_to = bx.cx().immediate_backend_type(cast_to_layout);
426427// We check uninhabitedness separately because a type like
428 // `enum Foo { Bar(i32, !) }` is still reported as `Variants::Single`,
429 // *not* as `Variants::Empty`.
430if self.layout.is_uninhabited() {
431return bx.cx().const_poison(cast_to);
432 }
433434let (tag_scalar, tag_encoding, tag_field) = match self.layout.variants {
435 Variants::Empty => unreachable!("we already handled uninhabited types"),
436 Variants::Single { index } => {
437let discr_val =
438if let Some(discr) = self.layout.ty.discriminant_for_variant(bx.tcx(), index) {
439 discr.val
440 } else {
441// This arm is for types which are neither enums nor coroutines,
442 // and thus for which the only possible "variant" should be the first one.
443assert_eq!(index, FIRST_VARIANT);
444// There's thus no actual discriminant to return, so we return
445 // what it would have been if this was a single-variant enum.
4460
447};
448return bx.cx().const_uint_big(cast_to, discr_val);
449 }
450 Variants::Multiple { tag, ref tag_encoding, tag_field, .. } => {
451 (tag, tag_encoding, tag_field)
452 }
453 };
454455// Read the tag/niche-encoded discriminant from memory.
456let tag_op = match self.val {
457 OperandValue::ZeroSized => bug!(),
458 OperandValue::Immediate(_) | OperandValue::Pair(_, _) => {
459self.extract_field(fx, bx, tag_field.as_usize())
460 }
461 OperandValue::Ref(place) => {
462let tag = place.with_type(self.layout).project_field(bx, tag_field.as_usize());
463 bx.load_operand(tag)
464 }
465 };
466let tag_imm = tag_op.immediate();
467468// Decode the discriminant (specifically if it's niche-encoded).
469match *tag_encoding {
470 TagEncoding::Direct => {
471let signed = match tag_scalar.primitive() {
472// We use `i1` for bytes that are always `0` or `1`,
473 // e.g., `#[repr(i8)] enum E { A, B }`, but we can't
474 // let LLVM interpret the `i1` as signed, because
475 // then `i1 1` (i.e., `E::B`) is effectively `i8 -1`.
476Primitive::Int(_, signed) => !tag_scalar.is_bool() && signed,
477_ => false,
478 };
479 bx.intcast(tag_imm, cast_to, signed)
480 }
481 TagEncoding::Niche { untagged_variant, ref niche_variants, niche_start } => {
482// Cast to an integer so we don't have to treat a pointer as a
483 // special case.
484let (tag, tag_llty) = match tag_scalar.primitive() {
485// FIXME(erikdesjardins): handle non-default addrspace ptr sizes
486Primitive::Pointer(_) => {
487let t = bx.type_from_integer(dl.ptr_sized_integer());
488let tag = bx.ptrtoint(tag_imm, t);
489 (tag, t)
490 }
491_ => (tag_imm, bx.cx().immediate_backend_type(tag_op.layout)),
492 };
493494// `layout_sanity_check` ensures that we only get here for cases where the discriminant
495 // value and the variant index match, since that's all `Niche` can encode.
496497let relative_max = niche_variants.end().as_u32() - niche_variants.start().as_u32();
498let niche_start_const = bx.cx().const_uint_big(tag_llty, niche_start);
499500// We have a subrange `niche_start..=niche_end` inside `range`.
501 // If the value of the tag is inside this subrange, it's a
502 // "niche value", an increment of the discriminant. Otherwise it
503 // indicates the untagged variant.
504 // A general algorithm to extract the discriminant from the tag
505 // is:
506 // relative_tag = tag - niche_start
507 // is_niche = relative_tag <= (ule) relative_max
508 // discr = if is_niche {
509 // cast(relative_tag) + niche_variants.start()
510 // } else {
511 // untagged_variant
512 // }
513 // However, we will likely be able to emit simpler code.
514let (is_niche, tagged_discr, delta) = if relative_max == 0 {
515// Best case scenario: only one tagged variant. This will
516 // likely become just a comparison and a jump.
517 // The algorithm is:
518 // is_niche = tag == niche_start
519 // discr = if is_niche {
520 // niche_start
521 // } else {
522 // untagged_variant
523 // }
524let is_niche = bx.icmp(IntPredicate::IntEQ, tag, niche_start_const);
525let tagged_discr =
526 bx.cx().const_uint(cast_to, niche_variants.start().as_u32() as u64);
527 (is_niche, tagged_discr, 0)
528 } else {
529// Thanks to parameter attributes and load metadata, LLVM already knows
530 // the general valid range of the tag. It's possible, though, for there
531 // to be an impossible value *in the middle*, which those ranges don't
532 // communicate, so it's worth an `assume` to let the optimizer know.
533 // Most importantly, this means when optimizing a variant test like
534 // `SELECT(is_niche, complex, CONST) == CONST` it's ok to simplify that
535 // to `!is_niche` because the `complex` part can't possibly match.
536 //
537 // This was previously asserted on `tagged_discr` below, where the
538 // impossible value is more obvious, but that caused an intermediate
539 // value to become multi-use and thus not optimize, so instead this
540 // assumes on the original input which is always multi-use. See
541 // <https://github.com/llvm/llvm-project/issues/134024#issuecomment-3131782555>
542 //
543 // FIXME: If we ever get range assume operand bundles in LLVM (so we
544 // don't need the `icmp`s in the instruction stream any more), it
545 // might be worth moving this back to being on the switch argument
546 // where it's more obviously applicable.
547if niche_variants.contains(&untagged_variant)
548 && bx.cx().sess().opts.optimize != OptLevel::No
549 {
550let impossible = niche_start
551 .wrapping_add(u128::from(untagged_variant.as_u32()))
552 .wrapping_sub(u128::from(niche_variants.start().as_u32()));
553let impossible = bx.cx().const_uint_big(tag_llty, impossible);
554let ne = bx.icmp(IntPredicate::IntNE, tag, impossible);
555 bx.assume(ne);
556 }
557558// With multiple niched variants we'll have to actually compute
559 // the variant index from the stored tag.
560 //
561 // However, there's still one small optimization we can often do for
562 // determining *whether* a tag value is a natural value or a niched
563 // variant. The general algorithm involves a subtraction that often
564 // wraps in practice, making it tricky to analyse. However, in cases
565 // where there are few enough possible values of the tag that it doesn't
566 // need to wrap around, we can instead just look for the contiguous
567 // tag values on the end of the range with a single comparison.
568 //
569 // For example, take the type `enum Demo { A, B, Untagged(bool) }`.
570 // The `bool` is {0, 1}, and the two other variants are given the
571 // tags {2, 3} respectively. That means the `tag_range` is
572 // `[0, 3]`, which doesn't wrap as unsigned (nor as signed), so
573 // we can test for the niched variants with just `>= 2`.
574 //
575 // That means we're looking either for the niche values *above*
576 // the natural values of the untagged variant:
577 //
578 // niche_start niche_end
579 // | |
580 // v v
581 // MIN -------------+---------------------------+---------- MAX
582 // ^ | is niche |
583 // | +---------------------------+
584 // | |
585 // tag_range.start tag_range.end
586 //
587 // Or *below* the natural values:
588 //
589 // niche_start niche_end
590 // | |
591 // v v
592 // MIN ----+-----------------------+---------------------- MAX
593 // | is niche | ^
594 // +-----------------------+ |
595 // | |
596 // tag_range.start tag_range.end
597 //
598 // With those two options and having the flexibility to choose
599 // between a signed or unsigned comparison on the tag, that
600 // covers most realistic scenarios. The tests have a (contrived)
601 // example of a 1-byte enum with over 128 niched variants which
602 // wraps both as signed as unsigned, though, and for something
603 // like that we're stuck with the general algorithm.
604605let tag_range = tag_scalar.valid_range(&dl);
606let tag_size = tag_scalar.size(&dl);
607let niche_end = u128::from(relative_max).wrapping_add(niche_start);
608let niche_end = tag_size.truncate(niche_end);
609610let relative_discr = bx.sub(tag, niche_start_const);
611let cast_tag = bx.intcast(relative_discr, cast_to, false);
612let is_niche = if tag_range.no_unsigned_wraparound(tag_size) == Ok(true) {
613if niche_start == tag_range.start {
614let niche_end_const = bx.cx().const_uint_big(tag_llty, niche_end);
615 bx.icmp(IntPredicate::IntULE, tag, niche_end_const)
616 } else {
617assert_eq!(niche_end, tag_range.end);
618 bx.icmp(IntPredicate::IntUGE, tag, niche_start_const)
619 }
620 } else if tag_range.no_signed_wraparound(tag_size) == Ok(true) {
621if niche_start == tag_range.start {
622let niche_end_const = bx.cx().const_uint_big(tag_llty, niche_end);
623 bx.icmp(IntPredicate::IntSLE, tag, niche_end_const)
624 } else {
625assert_eq!(niche_end, tag_range.end);
626 bx.icmp(IntPredicate::IntSGE, tag, niche_start_const)
627 }
628 } else {
629 bx.icmp(
630 IntPredicate::IntULE,
631 relative_discr,
632 bx.cx().const_uint(tag_llty, relative_max as u64),
633 )
634 };
635636 (is_niche, cast_tag, niche_variants.start().as_u32() as u128)
637 };
638639let tagged_discr = if delta == 0 {
640 tagged_discr
641 } else {
642 bx.add(tagged_discr, bx.cx().const_uint_big(cast_to, delta))
643 };
644645let untagged_variant_const =
646 bx.cx().const_uint(cast_to, u64::from(untagged_variant.as_u32()));
647648let discr = bx.select(is_niche, tagged_discr, untagged_variant_const);
649650// In principle we could insert assumes on the possible range of `discr`, but
651 // currently in LLVM this isn't worth it because the original `tag` will
652 // have either a `range` parameter attribute or `!range` metadata,
653 // or come from a `transmute` that already `assume`d it.
654655discr
656 }
657 }
658 }
659}
660661/// Each of these variants starts out as `Either::Right` when it's uninitialized,
662/// then setting the field changes that to `Either::Left` with the backend value.
663#[derive(#[automatically_derived]
impl<V: ::core::fmt::Debug> ::core::fmt::Debug for OperandValueBuilder<V> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
OperandValueBuilder::ZeroSized =>
::core::fmt::Formatter::write_str(f, "ZeroSized"),
OperandValueBuilder::Immediate(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"Immediate", &__self_0),
OperandValueBuilder::Pair(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f, "Pair",
__self_0, &__self_1),
OperandValueBuilder::Vector(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Vector",
&__self_0),
}
}
}Debug, #[automatically_derived]
impl<V: ::core::marker::Copy> ::core::marker::Copy for OperandValueBuilder<V>
{
}Copy, #[automatically_derived]
impl<V: ::core::clone::Clone> ::core::clone::Clone for OperandValueBuilder<V>
{
#[inline]
fn clone(&self) -> OperandValueBuilder<V> {
match self {
OperandValueBuilder::ZeroSized => OperandValueBuilder::ZeroSized,
OperandValueBuilder::Immediate(__self_0) =>
OperandValueBuilder::Immediate(::core::clone::Clone::clone(__self_0)),
OperandValueBuilder::Pair(__self_0, __self_1) =>
OperandValueBuilder::Pair(::core::clone::Clone::clone(__self_0),
::core::clone::Clone::clone(__self_1)),
OperandValueBuilder::Vector(__self_0) =>
OperandValueBuilder::Vector(::core::clone::Clone::clone(__self_0)),
}
}
}Clone)]
664enum OperandValueBuilder<V> {
665 ZeroSized,
666 Immediate(Either<V, abi::Scalar>),
667 Pair(Either<V, abi::Scalar>, Either<V, abi::Scalar>),
668/// `repr(simd)` types need special handling because they each have a non-empty
669 /// array field (which uses [`OperandValue::Ref`]) despite the SIMD type itself
670 /// using [`OperandValue::Immediate`] which for any other kind of type would
671 /// mean that its one non-ZST field would also be [`OperandValue::Immediate`].
672Vector(Either<V, ()>),
673}
674675/// Allows building up an `OperandRef` by setting fields one at a time.
676#[derive(#[automatically_derived]
impl<'tcx, V: ::core::fmt::Debug> ::core::fmt::Debug for
OperandRefBuilder<'tcx, V> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f,
"OperandRefBuilder", "val", &self.val, "layout", &&self.layout)
}
}Debug, #[automatically_derived]
impl<'tcx, V: ::core::marker::Copy> ::core::marker::Copy for
OperandRefBuilder<'tcx, V> {
}Copy, #[automatically_derived]
impl<'tcx, V: ::core::clone::Clone> ::core::clone::Clone for
OperandRefBuilder<'tcx, V> {
#[inline]
fn clone(&self) -> OperandRefBuilder<'tcx, V> {
OperandRefBuilder {
val: ::core::clone::Clone::clone(&self.val),
layout: ::core::clone::Clone::clone(&self.layout),
}
}
}Clone)]
677pub(super) struct OperandRefBuilder<'tcx, V> {
678 val: OperandValueBuilder<V>,
679 layout: TyAndLayout<'tcx>,
680}
681682impl<'a, 'tcx, V: CodegenObject> OperandRefBuilder<'tcx, V> {
683/// Creates an uninitialized builder for an instance of the `layout`.
684 ///
685 /// ICEs for [`BackendRepr::Memory`] types (other than ZSTs), which should
686 /// be built up inside a [`PlaceRef`] instead as they need an allocated place
687 /// into which to write the values of the fields.
688pub(super) fn new(layout: TyAndLayout<'tcx>) -> Self {
689let val = match layout.backend_repr {
690 BackendRepr::Memory { .. } if layout.is_zst() => OperandValueBuilder::ZeroSized,
691 BackendRepr::Scalar(s) => OperandValueBuilder::Immediate(Either::Right(s)),
692 BackendRepr::ScalarPair(a, b) => {
693 OperandValueBuilder::Pair(Either::Right(a), Either::Right(b))
694 }
695 BackendRepr::SimdVector { .. } | BackendRepr::SimdScalableVector { .. } => {
696 OperandValueBuilder::Vector(Either::Right(()))
697 }
698 BackendRepr::Memory { .. } => {
699::rustc_middle::util::bug::bug_fmt(format_args!("Cannot use non-ZST Memory-ABI type in operand builder: {0:?}",
layout));bug!("Cannot use non-ZST Memory-ABI type in operand builder: {layout:?}");
700 }
701 };
702OperandRefBuilder { val, layout }
703 }
704705pub(super) fn insert_field<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
706&mut self,
707 bx: &mut Bx,
708 variant: VariantIdx,
709 field: FieldIdx,
710 field_operand: OperandRef<'tcx, V>,
711 ) {
712if let OperandValue::ZeroSized = field_operand.val {
713// A ZST never adds any state, so just ignore it.
714 // This special-casing is worth it because of things like
715 // `Result<!, !>` where `Ok(never)` is legal to write,
716 // but the type shows as FieldShape::Primitive so we can't
717 // actually look at the layout for the field being set.
718return;
719 }
720721let is_zero_offset = if let abi::FieldsShape::Primitive = self.layout.fields {
722// The other branch looking at field layouts ICEs for primitives,
723 // so we need to handle them separately.
724 // Because we handled ZSTs above (like the metadata in a thin pointer),
725 // the only possibility is that we're setting the one-and-only field.
726if !!self.layout.is_zst() {
::core::panicking::panic("assertion failed: !self.layout.is_zst()")
};assert!(!self.layout.is_zst());
727match (&variant, &FIRST_VARIANT) {
(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!(variant, FIRST_VARIANT);
728match (&field, &FieldIdx::ZERO) {
(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!(field, FieldIdx::ZERO);
729true
730} else {
731let variant_layout = self.layout.for_variant(bx.cx(), variant);
732let field_offset = variant_layout.fields.offset(field.as_usize());
733field_offset == Size::ZERO734 };
735736let mut update = |tgt: &mut Either<V, abi::Scalar>, src, from_scalar| {
737let to_scalar = tgt.unwrap_right();
738// We transmute here (rather than just `from_immediate`) because in
739 // `Result<usize, *const ()>` the field of the `Ok` is an integer,
740 // but the corresponding scalar in the enum is a pointer.
741let imm = transmute_scalar(bx, src, from_scalar, to_scalar);
742*tgt = Either::Left(imm);
743 };
744745match (field_operand.val, field_operand.layout.backend_repr) {
746 (OperandValue::ZeroSized, _) => {
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("Handled above")));
}unreachable!("Handled above"),
747 (OperandValue::Immediate(v), BackendRepr::Scalar(from_scalar)) => match &mut self.val {
748 OperandValueBuilder::Immediate(val @ Either::Right(_)) if is_zero_offset => {
749update(val, v, from_scalar);
750 }
751 OperandValueBuilder::Pair(fst @ Either::Right(_), _) if is_zero_offset => {
752update(fst, v, from_scalar);
753 }
754 OperandValueBuilder::Pair(_, snd @ Either::Right(_)) if !is_zero_offset => {
755update(snd, v, from_scalar);
756 }
757_ => {
758::rustc_middle::util::bug::bug_fmt(format_args!("Tried to insert {0:?} into {1:?}.{2:?} of {3:?}",
field_operand, variant, field, self))bug!("Tried to insert {field_operand:?} into {variant:?}.{field:?} of {self:?}")759 }
760 },
761 (OperandValue::Immediate(v), BackendRepr::SimdVector { .. }) => match &mut self.val {
762 OperandValueBuilder::Vector(val @ Either::Right(())) if is_zero_offset => {
763*val = Either::Left(v);
764 }
765_ => {
766::rustc_middle::util::bug::bug_fmt(format_args!("Tried to insert {0:?} into {1:?}.{2:?} of {3:?}",
field_operand, variant, field, self))bug!("Tried to insert {field_operand:?} into {variant:?}.{field:?} of {self:?}")767 }
768 },
769 (OperandValue::Pair(a, b), BackendRepr::ScalarPair(from_sa, from_sb)) => {
770match &mut self.val {
771 OperandValueBuilder::Pair(fst @ Either::Right(_), snd @ Either::Right(_)) => {
772update(fst, a, from_sa);
773update(snd, b, from_sb);
774 }
775_ => ::rustc_middle::util::bug::bug_fmt(format_args!("Tried to insert {0:?} into {1:?}.{2:?} of {3:?}",
field_operand, variant, field, self))bug!(
776"Tried to insert {field_operand:?} into {variant:?}.{field:?} of {self:?}"
777),
778 }
779 }
780 (OperandValue::Ref(place), BackendRepr::Memory { .. }) => match &mut self.val {
781 OperandValueBuilder::Vector(val @ Either::Right(())) => {
782let ibty = bx.cx().immediate_backend_type(self.layout);
783let simd = bx.load_from_place(ibty, place);
784*val = Either::Left(simd);
785 }
786_ => {
787::rustc_middle::util::bug::bug_fmt(format_args!("Tried to insert {0:?} into {1:?}.{2:?} of {3:?}",
field_operand, variant, field, self))bug!("Tried to insert {field_operand:?} into {variant:?}.{field:?} of {self:?}")788 }
789 },
790_ => ::rustc_middle::util::bug::bug_fmt(format_args!("Operand cannot be used with `insert_field`: {0:?}",
field_operand))bug!("Operand cannot be used with `insert_field`: {field_operand:?}"),
791 }
792 }
793794/// Insert the immediate value `imm` for field `f` in the *type itself*,
795 /// rather than into one of the variants.
796 ///
797 /// Most things want [`Self::insert_field`] instead, but this one is
798 /// necessary for writing things like enum tags that aren't in any variant.
799pub(super) fn insert_imm(&mut self, f: FieldIdx, imm: V) {
800let field_offset = self.layout.fields.offset(f.as_usize());
801let is_zero_offset = field_offset == Size::ZERO;
802match &mut self.val {
803 OperandValueBuilder::Immediate(val @ Either::Right(_)) if is_zero_offset => {
804*val = Either::Left(imm);
805 }
806 OperandValueBuilder::Pair(fst @ Either::Right(_), _) if is_zero_offset => {
807*fst = Either::Left(imm);
808 }
809 OperandValueBuilder::Pair(_, snd @ Either::Right(_)) if !is_zero_offset => {
810*snd = Either::Left(imm);
811 }
812_ => ::rustc_middle::util::bug::bug_fmt(format_args!("Tried to insert {0:?} into field {1:?} of {2:?}",
imm, f, self))bug!("Tried to insert {imm:?} into field {f:?} of {self:?}"),
813 }
814 }
815816/// After having set all necessary fields, this converts the builder back
817 /// to the normal `OperandRef`.
818 ///
819 /// ICEs if any required fields were not set.
820pub(super) fn build(&self, cx: &impl CodegenMethods<'tcx, Value = V>) -> OperandRef<'tcx, V> {
821let OperandRefBuilder { val, layout } = *self;
822823// For something like `Option::<u32>::None`, it's expected that the
824 // payload scalar will not actually have been set, so this converts
825 // unset scalars to corresponding `undef` values so long as the scalar
826 // from the layout allows uninit.
827let unwrap = |r: Either<V, abi::Scalar>| match r {
828 Either::Left(v) => v,
829 Either::Right(s) if s.is_uninit_valid() => {
830let bty = cx.type_from_scalar(s);
831cx.const_undef(bty)
832 }
833 Either::Right(_) => ::rustc_middle::util::bug::bug_fmt(format_args!("OperandRef::build called while fields are missing {0:?}",
self))bug!("OperandRef::build called while fields are missing {self:?}"),
834 };
835836let val = match val {
837 OperandValueBuilder::ZeroSized => OperandValue::ZeroSized,
838 OperandValueBuilder::Immediate(v) => OperandValue::Immediate(unwrap(v)),
839 OperandValueBuilder::Pair(a, b) => OperandValue::Pair(unwrap(a), unwrap(b)),
840 OperandValueBuilder::Vector(v) => match v {
841 Either::Left(v) => OperandValue::Immediate(v),
842 Either::Right(())
843if let BackendRepr::SimdVector { element, .. } = layout.backend_repr
844 && element.is_uninit_valid() =>
845 {
846let bty = cx.immediate_backend_type(layout);
847 OperandValue::Immediate(cx.const_undef(bty))
848 }
849 Either::Right(()) => {
850::rustc_middle::util::bug::bug_fmt(format_args!("OperandRef::build called while fields are missing {0:?}",
self))bug!("OperandRef::build called while fields are missing {self:?}")851 }
852 },
853 };
854OperandRef { val, layout, move_annotation: None }
855 }
856}
857858/// Default size limit for move/copy annotations (in bytes). 64 bytes is a common size of a cache
859/// line, and the assumption is that anything this size or below is very cheap to move/copy, so only
860/// annotate copies larger than this.
861const MOVE_ANNOTATION_DEFAULT_LIMIT: u64 = 65;
862863impl<'a, 'tcx, V: CodegenObject> OperandValue<V> {
864/// Returns an `OperandValue` that's generally UB to use in any way.
865 ///
866 /// Depending on the `layout`, returns `ZeroSized` for ZSTs, an `Immediate` or
867 /// `Pair` containing poison value(s), or a `Ref` containing a poison pointer.
868 ///
869 /// Supports sized types only.
870pub fn poison<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
871 bx: &mut Bx,
872 layout: TyAndLayout<'tcx>,
873 ) -> OperandValue<V> {
874if !layout.is_sized() {
::core::panicking::panic("assertion failed: layout.is_sized()")
};assert!(layout.is_sized());
875if layout.is_zst() {
876 OperandValue::ZeroSized877 } else if bx.cx().is_backend_immediate(layout) {
878let ibty = bx.cx().immediate_backend_type(layout);
879 OperandValue::Immediate(bx.const_poison(ibty))
880 } else if bx.cx().is_backend_scalar_pair(layout) {
881let ibty0 = bx.cx().scalar_pair_element_backend_type(layout, 0, true);
882let ibty1 = bx.cx().scalar_pair_element_backend_type(layout, 1, true);
883 OperandValue::Pair(bx.const_poison(ibty0), bx.const_poison(ibty1))
884 } else {
885let ptr = bx.cx().type_ptr();
886 OperandValue::Ref(PlaceValue::new_sized(bx.const_poison(ptr), layout.align.abi))
887 }
888 }
889890pub fn store<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
891self,
892 bx: &mut Bx,
893 dest: PlaceRef<'tcx, V>,
894 ) {
895self.store_with_flags(bx, dest, MemFlags::empty());
896 }
897898pub fn volatile_store<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
899self,
900 bx: &mut Bx,
901 dest: PlaceRef<'tcx, V>,
902 ) {
903self.store_with_flags(bx, dest, MemFlags::VOLATILE);
904 }
905906pub fn unaligned_volatile_store<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
907self,
908 bx: &mut Bx,
909 dest: PlaceRef<'tcx, V>,
910 ) {
911self.store_with_flags(bx, dest, MemFlags::VOLATILE | MemFlags::UNALIGNED);
912 }
913914pub fn nontemporal_store<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
915self,
916 bx: &mut Bx,
917 dest: PlaceRef<'tcx, V>,
918 ) {
919self.store_with_flags(bx, dest, MemFlags::NONTEMPORAL);
920 }
921922pub(crate) fn store_with_flags<Bx: BuilderMethods<'a, 'tcx, Value = V>>(
923self,
924 bx: &mut Bx,
925 dest: PlaceRef<'tcx, V>,
926 flags: MemFlags,
927 ) {
928{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/operand.rs:928",
"rustc_codegen_ssa::mir::operand", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/operand.rs"),
::tracing_core::__macro_support::Option::Some(928u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir::operand"),
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("OperandRef::store: operand={0:?}, dest={1:?}",
self, dest) as &dyn Value))])
});
} else { ; }
};debug!("OperandRef::store: operand={:?}, dest={:?}", self, dest);
929match self {
930 OperandValue::ZeroSized => {
931// Avoid generating stores of zero-sized values, because the only way to have a
932 // zero-sized value is through `undef`/`poison`, and the store itself is useless.
933}
934 OperandValue::Ref(val) => {
935if !dest.layout.is_sized() {
{
::core::panicking::panic_fmt(format_args!("cannot directly store unsized values"));
}
};assert!(dest.layout.is_sized(), "cannot directly store unsized values");
936if val.llextra.is_some() {
937::rustc_middle::util::bug::bug_fmt(format_args!("cannot directly store unsized values"));bug!("cannot directly store unsized values");
938 }
939bx.typed_place_copy_with_flags(dest.val, val, dest.layout, flags);
940 }
941 OperandValue::Immediate(s) => {
942let val = bx.from_immediate(s);
943bx.store_with_flags(val, dest.val.llval, dest.val.align, flags);
944 }
945 OperandValue::Pair(a, b) => {
946let BackendRepr::ScalarPair(a_scalar, b_scalar) = dest.layout.backend_repr else {
947::rustc_middle::util::bug::bug_fmt(format_args!("store_with_flags: invalid ScalarPair layout: {0:#?}",
dest.layout));bug!("store_with_flags: invalid ScalarPair layout: {:#?}", dest.layout);
948 };
949let b_offset = a_scalar.size(bx).align_to(b_scalar.align(bx).abi);
950951let val = bx.from_immediate(a);
952let align = dest.val.align;
953bx.store_with_flags(val, dest.val.llval, align, flags);
954955let llptr = bx.inbounds_ptradd(dest.val.llval, bx.const_usize(b_offset.bytes()));
956let val = bx.from_immediate(b);
957let align = dest.val.align.restrict_for_offset(b_offset);
958bx.store_with_flags(val, llptr, align, flags);
959 }
960 }
961 }
962}
963964impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
965fn maybe_codegen_consume_direct(
966&mut self,
967 bx: &mut Bx,
968 place_ref: mir::PlaceRef<'tcx>,
969 ) -> Option<OperandRef<'tcx, Bx::Value>> {
970{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/operand.rs:970",
"rustc_codegen_ssa::mir::operand", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/operand.rs"),
::tracing_core::__macro_support::Option::Some(970u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir::operand"),
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("maybe_codegen_consume_direct(place_ref={0:?})",
place_ref) as &dyn Value))])
});
} else { ; }
};debug!("maybe_codegen_consume_direct(place_ref={:?})", place_ref);
971972match self.locals[place_ref.local] {
973 LocalRef::Operand(mut o) => {
974// We only need to handle the projections that
975 // `LocalAnalyzer::process_place` let make it here.
976for elem in place_ref.projection {
977match *elem {
978 mir::ProjectionElem::Field(f, _) => {
979if !!o.layout.ty.is_any_ptr() {
{
::core::panicking::panic_fmt(format_args!("Bad PlaceRef: destructing pointers should use cast/PtrMetadata, but tried to access field {0:?} of pointer {1:?}",
f, o));
}
};assert!(
980 !o.layout.ty.is_any_ptr(),
981"Bad PlaceRef: destructing pointers should use cast/PtrMetadata, \
982 but tried to access field {f:?} of pointer {o:?}",
983 );
984 o = o.extract_field(self, bx, f.index());
985 }
986 mir::PlaceElem::Downcast(_, vidx) => {
987if true {
match (&o.layout.variants, &abi::Variants::Single { index: vidx }) {
(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);
}
}
};
};debug_assert_eq!(
988 o.layout.variants,
989 abi::Variants::Single { index: vidx },
990 );
991let layout = o.layout.for_variant(bx.cx(), vidx);
992 o = OperandRef { layout, ..o }
993 }
994_ => return None,
995 }
996 }
997998Some(o)
999 }
1000 LocalRef::PendingOperand => {
1001::rustc_middle::util::bug::bug_fmt(format_args!("use of {0:?} before def",
place_ref));bug!("use of {:?} before def", place_ref);
1002 }
1003 LocalRef::Place(..) | LocalRef::UnsizedPlace(..) => {
1004// watch out for locals that do not have an
1005 // alloca; they are handled somewhat differently
1006None1007 }
1008 }
1009 }
10101011pub fn codegen_consume(
1012&mut self,
1013 bx: &mut Bx,
1014 place_ref: mir::PlaceRef<'tcx>,
1015 ) -> OperandRef<'tcx, Bx::Value> {
1016{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/operand.rs:1016",
"rustc_codegen_ssa::mir::operand", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/operand.rs"),
::tracing_core::__macro_support::Option::Some(1016u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir::operand"),
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("codegen_consume(place_ref={0:?})",
place_ref) as &dyn Value))])
});
} else { ; }
};debug!("codegen_consume(place_ref={:?})", place_ref);
10171018let ty = self.monomorphized_place_ty(place_ref);
1019let layout = bx.cx().layout_of(ty);
10201021// ZSTs don't require any actual memory access.
1022if layout.is_zst() {
1023return OperandRef::zero_sized(layout);
1024 }
10251026if let Some(o) = self.maybe_codegen_consume_direct(bx, place_ref) {
1027return o;
1028 }
10291030// for most places, to consume them we just load them
1031 // out from their home
1032let place = self.codegen_place(bx, place_ref);
1033bx.load_operand(place)
1034 }
10351036pub fn codegen_operand(
1037&mut self,
1038 bx: &mut Bx,
1039 operand: &mir::Operand<'tcx>,
1040 ) -> OperandRef<'tcx, Bx::Value> {
1041{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/mir/operand.rs:1041",
"rustc_codegen_ssa::mir::operand", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/mir/operand.rs"),
::tracing_core::__macro_support::Option::Some(1041u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::mir::operand"),
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("codegen_operand(operand={0:?})",
operand) as &dyn Value))])
});
} else { ; }
};debug!("codegen_operand(operand={:?})", operand);
10421043match *operand {
1044 mir::Operand::Copy(ref place) | mir::Operand::Move(ref place) => {
1045let kind = match operand {
1046 mir::Operand::Move(_) => LangItem::CompilerMove,
1047 mir::Operand::Copy(_) => LangItem::CompilerCopy,
1048_ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1049 };
10501051// Check if we should annotate this move/copy for profiling
1052let move_annotation = self.move_copy_annotation_instance(bx, place.as_ref(), kind);
10531054OperandRef { move_annotation, ..self.codegen_consume(bx, place.as_ref()) }
1055 }
10561057 mir::Operand::RuntimeChecks(checks) => {
1058let layout = bx.layout_of(bx.tcx().types.bool);
1059let BackendRepr::Scalar(scalar) = layout.backend_repr else {
1060::rustc_middle::util::bug::bug_fmt(format_args!("from_const: invalid ByVal layout: {0:#?}",
layout));bug!("from_const: invalid ByVal layout: {:#?}", layout);
1061 };
1062let x = Scalar::from_bool(checks.value(bx.tcx().sess));
1063let llval = bx.scalar_to_backend(x, scalar, bx.immediate_backend_type(layout));
1064let val = OperandValue::Immediate(llval);
1065OperandRef { val, layout, move_annotation: None }
1066 }
10671068 mir::Operand::Constant(ref constant) => {
1069let constant_ty = self.monomorphize(constant.ty());
1070// Most SIMD vector constants should be passed as immediates.
1071 // (In particular, some intrinsics really rely on this.)
1072if constant_ty.is_simd() {
1073// However, some SIMD types do not actually use the vector ABI
1074 // (in particular, packed SIMD types do not). Ensure we exclude those.
1075 //
1076 // We also have to exclude vectors of pointers because `immediate_const_vector`
1077 // does not work for those.
1078let layout = bx.layout_of(constant_ty);
1079let (_, element_ty) = constant_ty.simd_size_and_type(bx.tcx());
1080if let BackendRepr::SimdVector { .. } = layout.backend_repr
1081 && element_ty.is_numeric()
1082 {
1083let (llval, ty) = self.immediate_const_vector(bx, constant);
1084return OperandRef {
1085 val: OperandValue::Immediate(llval),
1086 layout: bx.layout_of(ty),
1087 move_annotation: None,
1088 };
1089 }
1090 }
1091self.eval_mir_constant_to_operand(bx, constant)
1092 }
1093 }
1094 }
10951096/// Creates an `Instance` for annotating a move/copy operation at codegen time.
1097 ///
1098 /// Returns `Some(instance)` if the operation should be annotated with debug info, `None`
1099 /// otherwise. The instance represents a monomorphized `compiler_move<T, SIZE>` or
1100 /// `compiler_copy<T, SIZE>` function that can be used to create debug scopes.
1101 ///
1102 /// There are a number of conditions that must be met for an annotation to be created, but aside
1103 /// from the basics (annotation is enabled, we're generating debuginfo), the primary concern is
1104 /// moves/copies which could result in a real `memcpy`. So we check for the size limit, but also
1105 /// that the underlying representation of the type is in memory.
1106fn move_copy_annotation_instance(
1107&self,
1108 bx: &Bx,
1109 place: mir::PlaceRef<'tcx>,
1110 kind: LangItem,
1111 ) -> Option<ty::Instance<'tcx>> {
1112let tcx = bx.tcx();
1113let sess = tcx.sess;
11141115// Skip if we're not generating debuginfo
1116if sess.opts.debuginfo == DebugInfo::None {
1117return None;
1118 }
11191120// Check if annotation is enabled and get size limit (otherwise skip)
1121let size_limit = match sess.opts.unstable_opts.annotate_moves {
1122 AnnotateMoves::Disabled => return None,
1123 AnnotateMoves::Enabled(None) => MOVE_ANNOTATION_DEFAULT_LIMIT,
1124 AnnotateMoves::Enabled(Some(limit)) => limit,
1125 };
11261127let ty = self.monomorphized_place_ty(place);
1128let layout = bx.cx().layout_of(ty);
1129let ty_size = layout.size.bytes();
11301131// Only annotate if type has a memory representation and exceeds size limit (and has a
1132 // non-zero size)
1133if layout.is_zst()
1134 || ty_size < size_limit1135 || !#[allow(non_exhaustive_omitted_patterns)] match layout.backend_repr {
BackendRepr::Memory { .. } => true,
_ => false,
}matches!(layout.backend_repr, BackendRepr::Memory { .. })1136 {
1137return None;
1138 }
11391140// Look up the DefId for compiler_move or compiler_copy lang item
1141let def_id = tcx.lang_items().get(kind)?;
11421143// Create generic args: compiler_move<T, SIZE> or compiler_copy<T, SIZE>
1144let size_const = ty::Const::from_target_usize(tcx, ty_size);
1145let generic_args = tcx.mk_args(&[ty.into(), size_const.into()]);
11461147// Create the Instance
1148let typing_env = self.mir.typing_env(tcx);
1149let instance = ty::Instance::expect_resolve(
1150tcx,
1151typing_env,
1152def_id,
1153generic_args,
1154 rustc_span::DUMMY_SP, // span only used for error messages
1155);
11561157Some(instance)
1158 }
1159}