rustc_abi/layout/
coroutine.rs

1//! Coroutine layout logic.
2//!
3//! When laying out coroutines, we divide our saved local fields into two
4//! categories: overlap-eligible and overlap-ineligible.
5//!
6//! Those fields which are ineligible for overlap go in a "prefix" at the
7//! beginning of the layout, and always have space reserved for them.
8//!
9//! Overlap-eligible fields are only assigned to one variant, so we lay
10//! those fields out for each variant and put them right after the
11//! prefix.
12//!
13//! Finally, in the layout details, we point to the fields from the
14//! variants they are assigned to. It is possible for some fields to be
15//! included in multiple variants. No field ever "moves around" in the
16//! layout; its offset is always the same.
17//!
18//! Also included in the layout are the upvars and the discriminant.
19//! These are included as fields on the "outer" layout; they are not part
20//! of any variant.
21
22use std::iter;
23
24use rustc_index::bit_set::{BitMatrix, DenseBitSet};
25use rustc_index::{Idx, IndexSlice, IndexVec};
26use tracing::{debug, trace};
27
28use crate::{
29    BackendRepr, FieldsShape, HasDataLayout, Integer, LayoutData, Primitive, ReprOptions, Scalar,
30    StructKind, TagEncoding, Variants, WrappingRange,
31};
32
33/// Overlap eligibility and variant assignment for each CoroutineSavedLocal.
34#[derive(Clone, Debug, PartialEq)]
35enum SavedLocalEligibility<VariantIdx, FieldIdx> {
36    Unassigned,
37    Assigned(VariantIdx),
38    Ineligible(Option<FieldIdx>),
39}
40
41/// Compute the eligibility and assignment of each local.
42fn coroutine_saved_local_eligibility<VariantIdx: Idx, FieldIdx: Idx, LocalIdx: Idx>(
43    nb_locals: usize,
44    variant_fields: &IndexSlice<VariantIdx, IndexVec<FieldIdx, LocalIdx>>,
45    storage_conflicts: &BitMatrix<LocalIdx, LocalIdx>,
46) -> (DenseBitSet<LocalIdx>, IndexVec<LocalIdx, SavedLocalEligibility<VariantIdx, FieldIdx>>) {
47    use SavedLocalEligibility::*;
48
49    let mut assignments: IndexVec<LocalIdx, _> = IndexVec::from_elem_n(Unassigned, nb_locals);
50
51    // The saved locals not eligible for overlap. These will get
52    // "promoted" to the prefix of our coroutine.
53    let mut ineligible_locals = DenseBitSet::new_empty(nb_locals);
54
55    // Figure out which of our saved locals are fields in only
56    // one variant. The rest are deemed ineligible for overlap.
57    for (variant_index, fields) in variant_fields.iter_enumerated() {
58        for local in fields {
59            match assignments[*local] {
60                Unassigned => {
61                    assignments[*local] = Assigned(variant_index);
62                }
63                Assigned(idx) => {
64                    // We've already seen this local at another suspension
65                    // point, so it is no longer a candidate.
66                    trace!(
67                        "removing local {:?} in >1 variant ({:?}, {:?})",
68                        local, variant_index, idx
69                    );
70                    ineligible_locals.insert(*local);
71                    assignments[*local] = Ineligible(None);
72                }
73                Ineligible(_) => {}
74            }
75        }
76    }
77
78    // Next, check every pair of eligible locals to see if they
79    // conflict.
80    for local_a in storage_conflicts.rows() {
81        let conflicts_a = storage_conflicts.count(local_a);
82        if ineligible_locals.contains(local_a) {
83            continue;
84        }
85
86        for local_b in storage_conflicts.iter(local_a) {
87            // local_a and local_b are storage live at the same time, therefore they
88            // cannot overlap in the coroutine layout. The only way to guarantee
89            // this is if they are in the same variant, or one is ineligible
90            // (which means it is stored in every variant).
91            if ineligible_locals.contains(local_b) || assignments[local_a] == assignments[local_b] {
92                continue;
93            }
94
95            // If they conflict, we will choose one to make ineligible.
96            // This is not always optimal; it's just a greedy heuristic that
97            // seems to produce good results most of the time.
98            let conflicts_b = storage_conflicts.count(local_b);
99            let (remove, other) =
100                if conflicts_a > conflicts_b { (local_a, local_b) } else { (local_b, local_a) };
101            ineligible_locals.insert(remove);
102            assignments[remove] = Ineligible(None);
103            trace!("removing local {:?} due to conflict with {:?}", remove, other);
104        }
105    }
106
107    // Count the number of variants in use. If only one of them, then it is
108    // impossible to overlap any locals in our layout. In this case it's
109    // always better to make the remaining locals ineligible, so we can
110    // lay them out with the other locals in the prefix and eliminate
111    // unnecessary padding bytes.
112    {
113        let mut used_variants = DenseBitSet::new_empty(variant_fields.len());
114        for assignment in &assignments {
115            if let Assigned(idx) = assignment {
116                used_variants.insert(*idx);
117            }
118        }
119        if used_variants.count() < 2 {
120            for assignment in assignments.iter_mut() {
121                *assignment = Ineligible(None);
122            }
123            ineligible_locals.insert_all();
124        }
125    }
126
127    // Write down the order of our locals that will be promoted to the prefix.
128    {
129        for (idx, local) in ineligible_locals.iter().enumerate() {
130            assignments[local] = Ineligible(Some(FieldIdx::new(idx)));
131        }
132    }
133    debug!("coroutine saved local assignments: {:?}", assignments);
134
135    (ineligible_locals, assignments)
136}
137
138/// Compute the full coroutine layout.
139pub(super) fn layout<
140    'a,
141    F: core::ops::Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + core::fmt::Debug + Copy,
142    VariantIdx: Idx,
143    FieldIdx: Idx,
144    LocalIdx: Idx,
145>(
146    calc: &super::LayoutCalculator<impl HasDataLayout>,
147    local_layouts: &IndexSlice<LocalIdx, F>,
148    mut prefix_layouts: IndexVec<FieldIdx, F>,
149    variant_fields: &IndexSlice<VariantIdx, IndexVec<FieldIdx, LocalIdx>>,
150    storage_conflicts: &BitMatrix<LocalIdx, LocalIdx>,
151    tag_to_layout: impl Fn(Scalar) -> F,
152) -> super::LayoutCalculatorResult<FieldIdx, VariantIdx, F> {
153    use SavedLocalEligibility::*;
154
155    let (ineligible_locals, assignments) =
156        coroutine_saved_local_eligibility(local_layouts.len(), variant_fields, storage_conflicts);
157
158    // Build a prefix layout, including "promoting" all ineligible
159    // locals as part of the prefix. We compute the layout of all of
160    // these fields at once to get optimal packing.
161    let tag_index = prefix_layouts.next_index();
162
163    // `variant_fields` already accounts for the reserved variants, so no need to add them.
164    let max_discr = (variant_fields.len() - 1) as u128;
165    let discr_int = Integer::fit_unsigned(max_discr);
166    let tag = Scalar::Initialized {
167        value: Primitive::Int(discr_int, /* signed = */ false),
168        valid_range: WrappingRange { start: 0, end: max_discr },
169    };
170
171    let promoted_layouts = ineligible_locals.iter().map(|local| local_layouts[local]);
172    prefix_layouts.push(tag_to_layout(tag));
173    prefix_layouts.extend(promoted_layouts);
174    let prefix =
175        calc.univariant(&prefix_layouts, &ReprOptions::default(), StructKind::AlwaysSized)?;
176
177    let (prefix_size, prefix_align) = (prefix.size, prefix.align);
178
179    // Split the prefix layout into the "outer" fields (upvars and
180    // discriminant) and the "promoted" fields. Promoted fields will
181    // get included in each variant that requested them in
182    // CoroutineLayout.
183    debug!("prefix = {:#?}", prefix);
184    let (outer_fields, promoted_offsets, promoted_memory_index) = match prefix.fields {
185        FieldsShape::Arbitrary { mut offsets, in_memory_order } => {
186            // "a" (`0..b_start`) and "b" (`b_start..`) correspond to
187            // "outer" and "promoted" fields respectively.
188            let b_start = tag_index.plus(1);
189            let offsets_b = IndexVec::from_raw(offsets.raw.split_off(b_start.index()));
190            let offsets_a = offsets;
191
192            // Disentangle the "a" and "b" components of `in_memory_order`
193            // by preserving the order but keeping only one disjoint "half" each.
194            // FIXME(eddyb) build a better abstraction for permutations, if possible.
195            let mut in_memory_order_a = IndexVec::<u32, FieldIdx>::new();
196            let mut in_memory_order_b = IndexVec::<u32, FieldIdx>::new();
197            for i in in_memory_order {
198                if let Some(j) = i.index().checked_sub(b_start.index()) {
199                    in_memory_order_b.push(FieldIdx::new(j));
200                } else {
201                    in_memory_order_a.push(i);
202                }
203            }
204
205            let outer_fields =
206                FieldsShape::Arbitrary { offsets: offsets_a, in_memory_order: in_memory_order_a };
207            (outer_fields, offsets_b, in_memory_order_b.invert_bijective_mapping())
208        }
209        _ => unreachable!(),
210    };
211
212    let mut size = prefix.size;
213    let mut align = prefix.align;
214    let variants = variant_fields
215        .iter_enumerated()
216        .map(|(index, variant_fields)| {
217            // Only include overlap-eligible fields when we compute our variant layout.
218            let variant_only_tys = variant_fields
219                .iter()
220                .filter(|local| match assignments[**local] {
221                    Unassigned => unreachable!(),
222                    Assigned(v) if v == index => true,
223                    Assigned(_) => unreachable!("assignment does not match variant"),
224                    Ineligible(_) => false,
225                })
226                .map(|local| local_layouts[*local]);
227
228            let mut variant = calc.univariant(
229                &variant_only_tys.collect::<IndexVec<_, _>>(),
230                &ReprOptions::default(),
231                StructKind::Prefixed(prefix_size, prefix_align.abi),
232            )?;
233            variant.variants = Variants::Single { index };
234
235            let FieldsShape::Arbitrary { offsets, in_memory_order } = variant.fields else {
236                unreachable!();
237            };
238
239            // Now, stitch the promoted and variant-only fields back together in
240            // the order they are mentioned by our CoroutineLayout.
241            // Because we only use some subset (that can differ between variants)
242            // of the promoted fields, we can't just pick those elements of the
243            // `promoted_memory_index` (as we'd end up with gaps).
244            // So instead, we build an "inverse memory_index", as if all of the
245            // promoted fields were being used, but leave the elements not in the
246            // subset as `invalid_field_idx`, which we can filter out later to
247            // obtain a valid (bijective) mapping.
248            let memory_index = in_memory_order.invert_bijective_mapping();
249            let invalid_field_idx = promoted_memory_index.len() + memory_index.len();
250            let mut combined_in_memory_order =
251                IndexVec::from_elem_n(FieldIdx::new(invalid_field_idx), invalid_field_idx);
252
253            let mut offsets_and_memory_index = iter::zip(offsets, memory_index);
254            let combined_offsets = variant_fields
255                .iter_enumerated()
256                .map(|(i, local)| {
257                    let (offset, memory_index) = match assignments[*local] {
258                        Unassigned => unreachable!(),
259                        Assigned(_) => {
260                            let (offset, memory_index) = offsets_and_memory_index.next().unwrap();
261                            (offset, promoted_memory_index.len() as u32 + memory_index)
262                        }
263                        Ineligible(field_idx) => {
264                            let field_idx = field_idx.unwrap();
265                            (promoted_offsets[field_idx], promoted_memory_index[field_idx])
266                        }
267                    };
268                    combined_in_memory_order[memory_index] = i;
269                    offset
270                })
271                .collect();
272
273            // Remove the unused slots to obtain the combined `in_memory_order`
274            // (also see previous comment).
275            combined_in_memory_order.raw.retain(|&i| i.index() != invalid_field_idx);
276
277            variant.fields = FieldsShape::Arbitrary {
278                offsets: combined_offsets,
279                in_memory_order: combined_in_memory_order,
280            };
281
282            size = size.max(variant.size);
283            align = align.max(variant.align);
284            Ok(variant)
285        })
286        .collect::<Result<IndexVec<VariantIdx, _>, _>>()?;
287
288    size = size.align_to(align.abi);
289
290    let uninhabited = prefix.uninhabited || variants.iter().all(|v| v.is_uninhabited());
291    let abi = BackendRepr::Memory { sized: true };
292
293    Ok(LayoutData {
294        variants: Variants::Multiple {
295            tag,
296            tag_encoding: TagEncoding::Direct,
297            tag_field: tag_index,
298            variants,
299        },
300        fields: outer_fields,
301        backend_repr: abi,
302        // Suppress niches inside coroutines. If the niche is inside a field that is aliased (due to
303        // self-referentiality), getting the discriminant can cause aliasing violations.
304        // `UnsafeCell` blocks niches for the same reason, but we don't yet have `UnsafePinned` that
305        // would do the same for us here.
306        // See <https://github.com/rust-lang/rust/issues/63818>, <https://github.com/rust-lang/miri/issues/3780>.
307        // FIXME: Remove when <https://github.com/rust-lang/rust/issues/125735> is implemented and aliased coroutine fields are wrapped in `UnsafePinned`.
308        largest_niche: None,
309        uninhabited,
310        size,
311        align,
312        max_repr_align: None,
313        unadjusted_abi_align: align.abi,
314        randomization_seed: Default::default(),
315    })
316}