Skip to main content

rustc_builtin_macros/deriving/generic/
mod.rs

1//! Some code that abstracts away much of the boilerplate of writing
2//! `derive` instances for traits. Among other things it manages getting
3//! access to the fields of the 4 different sorts of structs and enum
4//! variants, as well as creating the method and impl ast instances.
5//!
6//! Supported features (fairly exhaustive):
7//!
8//! - Methods taking any number of parameters of any type, and returning
9//!   any type, other than vectors, bottom and closures.
10//! - Generating `impl`s for types with type parameters and lifetimes
11//!   (e.g., `Option<T>`), the parameters are automatically given the
12//!   current trait as a bound. (This includes separate type parameters
13//!   and lifetimes for methods.)
14//! - Additional bounds on the type parameters (`TraitDef.additional_bounds`)
15//!
16//! The most important thing for implementors is the `Substructure` and
17//! `SubstructureFields` objects. The latter groups 5 possibilities of the
18//! arguments:
19//!
20//! - `Struct`, when `Self` is a struct (including tuple structs, e.g
21//!   `struct T(i32, char)`).
22//! - `EnumMatching`, when `Self` is an enum and all the arguments are the
23//!   same variant of the enum (e.g., `Some(1)`, `Some(3)` and `Some(4)`)
24//! - `EnumDiscr` when `Self` is an enum, for comparing the enum discriminants.
25//! - `StaticEnum` and `StaticStruct` for static methods, where the type
26//!   being derived upon is either an enum or struct respectively. (Any
27//!   argument with type Self is just grouped among the non-self
28//!   arguments.)
29//!
30//! In the first two cases, the values from the corresponding fields in
31//! all the arguments are grouped together.
32//!
33//! The non-static cases have `Option<ident>` in several places associated
34//! with field `expr`s. This represents the name of the field it is
35//! associated with. It is only not `None` when the associated field has
36//! an identifier in the source code. For example, the `x`s in the
37//! following snippet
38//!
39//! ```rust
40//! struct A {
41//!     x: i32,
42//! }
43//!
44//! struct B(i32);
45//!
46//! enum C {
47//!     C0(i32),
48//!     C1 { x: i32 }
49//! }
50//! ```
51//!
52//! The `i32`s in `B` and `C0` don't have an identifier, so the
53//! `Option<ident>`s would be `None` for them.
54//!
55//! In the static cases, the structure is summarized, either into the just
56//! spans of the fields or a list of spans and the field idents (for tuple
57//! structs and record structs, respectively), or a list of these, for
58//! enums (one for each variant). For empty struct and empty enum
59//! variants, it is represented as a count of 0.
60//!
61//! # "`cs`" functions
62//!
63//! The `cs_...` functions ("combine substructure") are designed to
64//! make life easier by providing some pre-made recipes for common
65//! threads; mostly calling the function being derived on all the
66//! arguments and then combining them back together in some way (or
67//! letting the user chose that). They are not meant to be the only
68//! way to handle the structures that this code creates.
69//!
70//! # Examples
71//!
72//! The following simplified `PartialEq` is used for in-code examples:
73//!
74//! ```rust
75//! trait PartialEq {
76//!     fn eq(&self, other: &Self) -> bool;
77//! }
78//!
79//! impl PartialEq for i32 {
80//!     fn eq(&self, other: &i32) -> bool {
81//!         *self == *other
82//!     }
83//! }
84//! ```
85//!
86//! Some examples of the values of `SubstructureFields` follow, using the
87//! above `PartialEq`, `A`, `B` and `C`.
88//!
89//! ## Structs
90//!
91//! When generating the `expr` for the `A` impl, the `SubstructureFields` is
92//!
93//! ```text
94//! Struct(vec![FieldInfo {
95//!     span: <span of x>,
96//!     name: Some(<ident of x>),
97//!     self_: <expr for &self.x>,
98//!     other: vec![<expr for &other.x>],
99//! }])
100//! ```
101//!
102//! For the `B` impl, called with `B(a)` and `B(b)`,
103//!
104//! ```text
105//! Struct(vec![FieldInfo {
106//!     span: <span of i32>,
107//!     name: None,
108//!     self_: <expr for &a>,
109//!     other: vec![<expr for &b>],
110//! }])
111//! ```
112//!
113//! ## Enums
114//!
115//! When generating the `expr` for a call with `self == C0(a)` and `other
116//! == C0(b)`, the SubstructureFields is
117//!
118//! ```text
119//! EnumMatching(
120//!     0,
121//!     <ast::Variant for C0>,
122//!     vec![FieldInfo {
123//!         span: <span of i32>,
124//!         name: None,
125//!         self_: <expr for &a>,
126//!         other: vec![<expr for &b>],
127//!     }],
128//! )
129//! ```
130//!
131//! For `C1 {x}` and `C1 {x}`,
132//!
133//! ```text
134//! EnumMatching(
135//!     1,
136//!     <ast::Variant for C1>,
137//!     vec![FieldInfo {
138//!         span: <span of x>,
139//!         name: Some(<ident of x>),
140//!         self_: <expr for &self.x>,
141//!         other: vec![<expr for &other.x>],
142//!     }],
143//! )
144//! ```
145//!
146//! For the discriminants,
147//!
148//! ```text
149//! EnumDiscr(
150//!     &[<ident of self discriminant>, <ident of other discriminant>],
151//!     <expr to combine with>,
152//! )
153//! ```
154//!
155//! Note that this setup doesn't allow for the brute-force "match every variant
156//! against every other variant" approach, which is bad because it produces a
157//! quadratic amount of code (see #15375).
158//!
159//! ## Static
160//!
161//! A static method on the types above would result in,
162//!
163//! ```text
164//! StaticStruct(<ast::VariantData of A>, Named(vec![(<ident of x>, <span of x>)]))
165//!
166//! StaticStruct(<ast::VariantData of B>, Unnamed(vec![<span of x>]))
167//!
168//! StaticEnum(
169//!     <ast::EnumDef of C>,
170//!     vec![
171//!         (<ident of C0>, <span of C0>, Unnamed(vec![<span of i32>])),
172//!         (<ident of C1>, <span of C1>, Named(vec![(<ident of x>, <span of x>)])),
173//!     ],
174//! )
175//! ```
176
177use std::cell::RefCell;
178use std::ops::Not;
179use std::{iter, vec};
180
181pub(crate) use StaticFields::*;
182pub(crate) use SubstructureFields::*;
183use rustc_ast::token::{IdentIsRaw, LitKind, Token, TokenKind};
184use rustc_ast::tokenstream::{DelimSpan, Spacing, TokenTree};
185use rustc_ast::{
186    self as ast, AnonConst, AttrArgs, BindingMode, ByRef, DelimArgs, EnumDef, Expr, GenericArg,
187    GenericParamKind, Generics, Mutability, PatKind, Safety, VariantData,
188};
189use rustc_attr_parsing::AttributeParser;
190use rustc_expand::base::{Annotatable, ExtCtxt};
191use rustc_hir::Attribute;
192use rustc_hir::attrs::{AttributeKind, ReprPacked};
193use rustc_span::{DUMMY_SP, Ident, Span, Symbol, kw, sym};
194use thin_vec::{ThinVec, thin_vec};
195use ty::{Bounds, Path, Ref, Self_, Ty};
196
197use crate::{deriving, diagnostics};
198
199pub(crate) mod ty;
200
201pub(crate) struct TraitDef<'a> {
202    /// The span for the current #[derive(Foo)] header.
203    pub span: Span,
204
205    /// Path of the trait, including any type parameters
206    pub path: Path,
207
208    /// Whether to skip adding the current trait as a bound to the type parameters of the type.
209    pub skip_path_as_bound: bool,
210
211    /// Whether `Copy` is needed as an additional bound on type parameters in a packed struct.
212    pub needs_copy_as_bound_if_packed: bool,
213
214    /// Additional bounds required of any type parameters of the type,
215    /// other than the current trait
216    pub additional_bounds: Vec<Ty>,
217
218    /// Can this trait be derived for unions?
219    pub supports_unions: bool,
220
221    pub methods: Vec<MethodDef<'a>>,
222
223    pub associated_types: Vec<(Ident, Ty)>,
224
225    pub is_const: bool,
226
227    pub is_staged_api_crate: bool,
228
229    /// The safety of the `impl`.
230    pub safety: Safety,
231
232    /// Whether the added `impl` should appear in rustdoc output.
233    pub document: bool,
234}
235
236pub(crate) struct MethodDef<'a> {
237    /// name of the method
238    pub name: Symbol,
239    /// List of generics, e.g., `R: rand::Rng`
240    pub generics: Bounds,
241
242    /// Is there is a `&self` argument? If not, it is a static function.
243    pub explicit_self: bool,
244
245    /// Arguments other than the self argument.
246    pub nonself_args: Vec<(Ty, Symbol)>,
247
248    /// Returns type
249    pub ret_ty: Ty,
250
251    pub attributes: ast::AttrVec,
252
253    pub fieldless_variants_strategy: FieldlessVariantsStrategy,
254
255    pub combine_substructure: RefCell<CombineSubstructureFunc<'a>>,
256}
257
258/// How to handle fieldless enum variants.
259#[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for FieldlessVariantsStrategy {
    #[inline]
    fn eq(&self, other: &FieldlessVariantsStrategy) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq)]
260pub(crate) enum FieldlessVariantsStrategy {
261    /// Combine fieldless variants into a single match arm.
262    /// This assumes that relevant information has been handled
263    /// by looking at the enum's discriminant.
264    Unify,
265    /// Don't do anything special about fieldless variants. They are
266    /// handled like any other variant.
267    Default,
268    /// If all variants of the enum are fieldless, expand the special
269    /// `AllFieldLessEnum` substructure, so that the entire enum can be handled
270    /// at once.
271    SpecializeIfAllVariantsFieldless,
272}
273
274/// All the data about the data structure/method being derived upon.
275pub(crate) struct Substructure<'a> {
276    /// ident of self
277    pub type_ident: Ident,
278    /// Verbatim access to any non-selflike arguments, i.e. arguments that
279    /// don't have type `&Self`.
280    pub nonselflike_args: &'a [Box<Expr>],
281    pub fields: &'a SubstructureFields<'a>,
282}
283
284/// Summary of the relevant parts of a struct/enum field.
285pub(crate) struct FieldInfo {
286    pub span: Span,
287    /// None for tuple structs/normal enum variants, Some for normal
288    /// structs/struct enum variants.
289    pub name: Option<Ident>,
290    /// The expression corresponding to this field of `self`
291    /// (specifically, a reference to it).
292    pub self_expr: Box<Expr>,
293    /// The expressions corresponding to references to this field in
294    /// the other selflike arguments.
295    pub other_selflike_exprs: Vec<Box<Expr>>,
296    pub maybe_scalar: bool,
297}
298
299#[derive(#[automatically_derived]
impl ::core::marker::Copy for IsTuple { }Copy, #[automatically_derived]
impl ::core::clone::Clone for IsTuple {
    #[inline]
    fn clone(&self) -> IsTuple { *self }
}Clone)]
300pub(crate) enum IsTuple {
301    No,
302    Yes,
303}
304
305/// Fields for a static method
306pub(crate) enum StaticFields<'a> {
307    /// Tuple and unit structs/enum variants like this.
308    Unnamed(Vec<Span>, IsTuple),
309    /// Normal structs/struct variants.
310    Named(Vec<(Ident, Span, Option<&'a AnonConst>)>),
311}
312
313/// A summary of the possible sets of fields.
314pub(crate) enum SubstructureFields<'a> {
315    /// A non-static method where `Self` is a struct.
316    Struct(&'a ast::VariantData, Vec<FieldInfo>),
317
318    /// A non-static method handling the entire enum at once
319    /// (after it has been determined that none of the enum
320    /// variants has any fields).
321    AllFieldlessEnum(&'a ast::EnumDef),
322
323    /// Matching variants of the enum: variant index, ast::Variant,
324    /// fields: the field name is only non-`None` in the case of a struct
325    /// variant.
326    EnumMatching(&'a ast::Variant, Vec<FieldInfo>),
327
328    /// The discriminant of an enum. The first field is a `FieldInfo` for the discriminants, as
329    /// if they were fields. The second field is the expression to combine the
330    /// discriminant expression with; it will be `None` if no match is necessary.
331    EnumDiscr(FieldInfo, Option<Box<Expr>>),
332
333    /// A static method where `Self` is a struct.
334    StaticStruct(&'a ast::VariantData, StaticFields<'a>),
335
336    /// A static method where `Self` is an enum.
337    StaticEnum(&'a ast::EnumDef),
338}
339
340/// Combine the values of all the fields together. The last argument is
341/// all the fields of all the structures.
342pub(crate) type CombineSubstructureFunc<'a> =
343    Box<dyn FnMut(&ExtCtxt<'_>, Span, &Substructure<'_>) -> BlockOrExpr + 'a>;
344
345pub(crate) fn combine_substructure(
346    f: CombineSubstructureFunc<'_>,
347) -> RefCell<CombineSubstructureFunc<'_>> {
348    RefCell::new(f)
349}
350
351struct TypeParameter {
352    bound_generic_params: ThinVec<ast::GenericParam>,
353    ty: Box<ast::Ty>,
354}
355
356/// The code snippets built up for derived code are sometimes used as blocks
357/// (e.g. in a function body) and sometimes used as expressions (e.g. in a match
358/// arm). This structure avoids committing to either form until necessary,
359/// avoiding the insertion of any unnecessary blocks.
360///
361/// The statements come before the expression.
362pub(crate) struct BlockOrExpr(ThinVec<ast::Stmt>, Option<Box<Expr>>);
363
364impl BlockOrExpr {
365    pub(crate) fn new_stmts(stmts: ThinVec<ast::Stmt>) -> BlockOrExpr {
366        BlockOrExpr(stmts, None)
367    }
368
369    pub(crate) fn new_expr(expr: Box<Expr>) -> BlockOrExpr {
370        BlockOrExpr(ThinVec::new(), Some(expr))
371    }
372
373    pub(crate) fn new_mixed(stmts: ThinVec<ast::Stmt>, expr: Option<Box<Expr>>) -> BlockOrExpr {
374        BlockOrExpr(stmts, expr)
375    }
376
377    // Converts it into a block.
378    fn into_block(mut self, cx: &ExtCtxt<'_>, span: Span) -> Box<ast::Block> {
379        if let Some(expr) = self.1 {
380            self.0.push(cx.stmt_expr(expr));
381        }
382        cx.block(span, self.0)
383    }
384
385    // Converts it into an expression.
386    fn into_expr(self, cx: &ExtCtxt<'_>, span: Span) -> Box<Expr> {
387        if self.0.is_empty() {
388            match self.1 {
389                None => cx.expr_block(cx.block(span, ThinVec::new())),
390                Some(expr) => expr,
391            }
392        } else if let [stmt] = self.0.as_slice()
393            && let ast::StmtKind::Expr(expr) = &stmt.kind
394            && self.1.is_none()
395        {
396            // There's only a single statement expression. Pull it out.
397            expr.clone()
398        } else {
399            // Multiple statements and/or expressions.
400            cx.expr_block(self.into_block(cx, span))
401        }
402    }
403}
404
405/// This method helps to extract all the type parameters referenced from a
406/// type. For a type parameter `<T>`, it looks for either a `TyPath` that
407/// is not global and starts with `T`, or a `TyQPath`.
408/// Also include bound generic params from the input type.
409fn find_type_parameters(
410    ty: &ast::Ty,
411    ty_param_names: &[Symbol],
412    cx: &ExtCtxt<'_>,
413) -> Vec<TypeParameter> {
414    use rustc_ast::visit;
415
416    struct Visitor<'a, 'b> {
417        cx: &'a ExtCtxt<'b>,
418        ty_param_names: &'a [Symbol],
419        bound_generic_params_stack: ThinVec<ast::GenericParam>,
420        type_params: Vec<TypeParameter>,
421    }
422
423    impl<'a, 'b> visit::Visitor<'a> for Visitor<'a, 'b> {
424        fn visit_ty(&mut self, ty: &'a ast::Ty) {
425            let stack_len = self.bound_generic_params_stack.len();
426            if let ast::TyKind::FnPtr(fn_ptr) = &ty.kind
427                && !fn_ptr.generic_params.is_empty()
428            {
429                // Given a field `x: for<'a> fn(T::SomeType<'a>)`, we wan't to account for `'a` so
430                // that we generate `where for<'a> T::SomeType<'a>: ::core::clone::Clone`. #122622
431                self.bound_generic_params_stack.extend(fn_ptr.generic_params.iter().cloned());
432            }
433
434            if let ast::TyKind::Path(_, path) = &ty.kind
435                && let Some(segment) = path.segments.first()
436                && self.ty_param_names.contains(&segment.ident.name)
437            {
438                self.type_params.push(TypeParameter {
439                    bound_generic_params: self.bound_generic_params_stack.clone(),
440                    ty: Box::new(ty.clone()),
441                });
442            }
443
444            visit::walk_ty(self, ty);
445            self.bound_generic_params_stack.truncate(stack_len);
446        }
447
448        // Place bound generic params on a stack, to extract them when a type is encountered.
449        fn visit_poly_trait_ref(&mut self, trait_ref: &'a ast::PolyTraitRef) {
450            let stack_len = self.bound_generic_params_stack.len();
451            self.bound_generic_params_stack.extend(trait_ref.bound_generic_params.iter().cloned());
452
453            visit::walk_poly_trait_ref(self, trait_ref);
454
455            self.bound_generic_params_stack.truncate(stack_len);
456        }
457
458        fn visit_mac_call(&mut self, mac: &ast::MacCall) {
459            self.cx.dcx().emit_err(diagnostics::DeriveMacroCall { span: mac.span() });
460        }
461    }
462
463    let mut visitor = Visitor {
464        cx,
465        ty_param_names,
466        bound_generic_params_stack: ThinVec::new(),
467        type_params: Vec::new(),
468    };
469    visit::Visitor::visit_ty(&mut visitor, ty);
470
471    visitor.type_params
472}
473
474impl<'a> TraitDef<'a> {
475    pub(crate) fn expand(
476        self,
477        cx: &ExtCtxt<'_>,
478        mitem: &ast::MetaItem,
479        item: &'a Annotatable,
480        push: &mut dyn FnMut(Annotatable),
481    ) {
482        self.expand_ext(cx, mitem, item, push, false);
483    }
484
485    pub(crate) fn expand_ext(
486        self,
487        cx: &ExtCtxt<'_>,
488        mitem: &ast::MetaItem,
489        item: &'a Annotatable,
490        push: &mut dyn FnMut(Annotatable),
491        from_scratch: bool,
492    ) {
493        match item {
494            Annotatable::Item(item) => {
495                let is_packed = #[allow(non_exhaustive_omitted_patterns)] match AttributeParser::parse_limited(cx.sess,
        &item.attrs, &[sym::repr]) {
    Some(Attribute::Parsed(AttributeKind::Repr { reprs, .. })) if
        reprs.iter().any(|(x, _)|
                #[allow(non_exhaustive_omitted_patterns)] match x {
                    ReprPacked(..) => true,
                    _ => false,
                }) => true,
    _ => false,
}matches!(
496                    AttributeParser::parse_limited(cx.sess, &item.attrs, &[sym::repr]),
497                    Some(Attribute::Parsed(AttributeKind::Repr { reprs, .. })) if reprs.iter().any(|(x, _)| matches!(x, ReprPacked(..)))
498                );
499
500                let newitem = match &item.kind {
501                    ast::ItemKind::Struct(ident, generics, struct_def) => self.expand_struct_def(
502                        cx,
503                        struct_def,
504                        *ident,
505                        generics,
506                        from_scratch,
507                        is_packed,
508                    ),
509                    ast::ItemKind::Enum(ident, generics, enum_def) => {
510                        // We ignore `is_packed` here, because `repr(packed)`
511                        // enums cause an error later on.
512                        //
513                        // This can only cause further compilation errors
514                        // downstream in blatantly illegal code, so it is fine.
515                        self.expand_enum_def(cx, enum_def, *ident, generics, from_scratch)
516                    }
517                    ast::ItemKind::Union(ident, generics, struct_def) => {
518                        if self.supports_unions {
519                            self.expand_struct_def(
520                                cx,
521                                struct_def,
522                                *ident,
523                                generics,
524                                from_scratch,
525                                is_packed,
526                            )
527                        } else {
528                            cx.dcx().emit_err(diagnostics::DeriveUnion { span: mitem.span });
529                            return;
530                        }
531                    }
532                    _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
533                };
534                // Keep the lint attributes of the previous item to control how the
535                // generated implementations are linted
536                let mut attrs = newitem.attrs.clone();
537                attrs.extend(
538                    item.attrs
539                        .iter()
540                        .filter(|a| {
541                            a.has_any_name(&[
542                                sym::allow,
543                                sym::warn,
544                                sym::deny,
545                                sym::forbid,
546                                sym::stable,
547                                sym::unstable,
548                            ])
549                        })
550                        .cloned(),
551                );
552                push(Annotatable::Item(Box::new(ast::Item { attrs, ..(*newitem).clone() })))
553            }
554            _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
555        }
556    }
557
558    /// Given that we are deriving a trait `DerivedTrait` for a type like:
559    ///
560    /// ```ignore (only-for-syntax-highlight)
561    /// struct Struct<'a, ..., 'z, A, B: DeclaredTrait, C, ..., Z>
562    /// where
563    ///     C: WhereTrait,
564    /// {
565    ///     a: A,
566    ///     b: B::Item,
567    ///     b1: <B as DeclaredTrait>::Item,
568    ///     c1: <C as WhereTrait>::Item,
569    ///     c2: Option<<C as WhereTrait>::Item>,
570    ///     ...
571    /// }
572    /// ```
573    ///
574    /// create an impl like:
575    ///
576    /// ```ignore (only-for-syntax-highlight)
577    /// impl<'a, ..., 'z, A, B: DeclaredTrait, C, ..., Z>
578    /// where
579    ///     C: WhereTrait,
580    ///     A: DerivedTrait + B1 + ... + BN,
581    ///     B: DerivedTrait + B1 + ... + BN,
582    ///     C: DerivedTrait + B1 + ... + BN,
583    ///     B::Item: DerivedTrait + B1 + ... + BN,
584    ///     <C as WhereTrait>::Item: DerivedTrait + B1 + ... + BN,
585    ///     ...
586    /// {
587    ///     ...
588    /// }
589    /// ```
590    ///
591    /// where B1, ..., BN are the bounds given by `bounds_paths`.'. Z is a phantom type, and
592    /// therefore does not get bound by the derived trait.
593    fn create_derived_impl(
594        &self,
595        cx: &ExtCtxt<'_>,
596        type_ident: Ident,
597        generics: &Generics,
598        field_tys: Vec<&ast::Ty>,
599        methods: Vec<Box<ast::AssocItem>>,
600        is_packed: bool,
601    ) -> Box<ast::Item> {
602        let trait_path = self.path.to_path(cx, self.span, type_ident, generics);
603
604        // Transform associated types from `deriving::ty::Ty` into `ast::AssocItem`
605        let associated_types = self.associated_types.iter().map(|&(ident, ref type_def)| {
606            Box::new(ast::AssocItem {
607                id: ast::DUMMY_NODE_ID,
608                span: self.span,
609                vis: ast::Visibility {
610                    span: self.span.shrink_to_lo(),
611                    kind: ast::VisibilityKind::Inherited,
612                },
613                attrs: ast::AttrVec::new(),
614                kind: ast::AssocItemKind::Type(Box::new(ast::TyAlias {
615                    defaultness: ast::Defaultness::Implicit,
616                    ident,
617                    generics: Generics::default(),
618                    after_where_clause: ast::WhereClause::default(),
619                    bounds: ThinVec::new(),
620                    ty: Some(type_def.to_ty(cx, self.span, type_ident, generics)),
621                })),
622                tokens: None,
623            })
624        });
625
626        let mut where_clause = ast::WhereClause::default();
627        where_clause.span = generics.where_clause.span;
628        let ctxt = self.span.ctxt();
629        let span = generics.span.with_ctxt(ctxt);
630
631        // Create the generic parameters
632        let params: ThinVec<_> = generics
633            .params
634            .iter()
635            .map(|param| match &param.kind {
636                GenericParamKind::Lifetime { .. } => param.clone(),
637                GenericParamKind::Type { .. } => {
638                    // Extra restrictions on the generics parameters to the
639                    // type being derived upon.
640                    let span = param.ident.span.with_ctxt(ctxt);
641                    let bounds: ThinVec<_> = self
642                        .additional_bounds
643                        .iter()
644                        .map(|p| {
645                            cx.trait_bound(p.to_path(cx, span, type_ident, generics), self.is_const)
646                        })
647                        .chain(
648                            // Add a bound for the current trait.
649                            self.skip_path_as_bound.not().then(|| {
650                                let mut trait_path = trait_path.clone();
651                                trait_path.span = span;
652                                cx.trait_bound(trait_path, self.is_const)
653                            }),
654                        )
655                        .chain({
656                            // Add a `Copy` bound if required.
657                            if is_packed && self.needs_copy_as_bound_if_packed {
658                                let p = generic::ty::Path::new({
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [sym::marker, sym::Copy]))
    })deriving::path_std!(marker::Copy);
659                                Some(cx.trait_bound(
660                                    p.to_path(cx, span, type_ident, generics),
661                                    self.is_const,
662                                ))
663                            } else {
664                                None
665                            }
666                        })
667                        .chain(
668                            // Also add in any bounds from the declaration.
669                            param.bounds.iter().cloned(),
670                        )
671                        .collect();
672
673                    cx.typaram(span, param.ident, bounds, None)
674                }
675                GenericParamKind::Const { ty, span, .. } => {
676                    let const_nodefault_kind = GenericParamKind::Const {
677                        ty: ty.clone(),
678                        span: span.with_ctxt(ctxt),
679
680                        // We can't have default values inside impl block
681                        default: None,
682                    };
683                    let mut param_clone = param.clone();
684                    param_clone.kind = const_nodefault_kind;
685                    param_clone
686                }
687            })
688            .map(|mut param| {
689                // Remove all attributes, because there might be helper attributes
690                // from other macros that will not be valid in the expanded implementation.
691                param.attrs.clear();
692                param
693            })
694            .collect();
695
696        // and similarly for where clauses
697        where_clause.predicates.extend(generics.where_clause.predicates.iter().map(|clause| {
698            ast::WherePredicate {
699                attrs: clause.attrs.clone(),
700                kind: clause.kind.clone(),
701                id: ast::DUMMY_NODE_ID,
702                span: clause.span.with_ctxt(ctxt),
703                is_placeholder: false,
704            }
705        }));
706
707        let ty_param_names: Vec<Symbol> = params
708            .iter()
709            .filter(|param| #[allow(non_exhaustive_omitted_patterns)] match param.kind {
    ast::GenericParamKind::Type { .. } => true,
    _ => false,
}matches!(param.kind, ast::GenericParamKind::Type { .. }))
710            .map(|ty_param| ty_param.ident.name)
711            .collect();
712
713        if !ty_param_names.is_empty() {
714            for field_ty in field_tys {
715                let field_ty_params = find_type_parameters(&field_ty, &ty_param_names, cx);
716
717                for field_ty_param in field_ty_params {
718                    // if we have already handled this type, skip it
719                    if let ast::TyKind::Path(_, p) = &field_ty_param.ty.kind
720                        && let [sole_segment] = &*p.segments
721                        && ty_param_names.contains(&sole_segment.ident.name)
722                    {
723                        continue;
724                    }
725                    let mut bounds: ThinVec<_> = self
726                        .additional_bounds
727                        .iter()
728                        .map(|p| {
729                            cx.trait_bound(
730                                p.to_path(cx, self.span, type_ident, generics),
731                                self.is_const,
732                            )
733                        })
734                        .collect();
735
736                    // Require the current trait.
737                    if !self.skip_path_as_bound {
738                        bounds.push(cx.trait_bound(trait_path.clone(), self.is_const));
739                    }
740
741                    // Add a `Copy` bound if required.
742                    if is_packed && self.needs_copy_as_bound_if_packed {
743                        let p = generic::ty::Path::new({
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [sym::marker, sym::Copy]))
    })deriving::path_std!(marker::Copy);
744                        bounds.push(cx.trait_bound(
745                            p.to_path(cx, self.span, type_ident, generics),
746                            self.is_const,
747                        ));
748                    }
749
750                    if !bounds.is_empty() {
751                        let predicate = ast::WhereBoundPredicate {
752                            bound_generic_params: field_ty_param.bound_generic_params,
753                            bounded_ty: field_ty_param.ty,
754                            bounds,
755                        };
756
757                        let kind = ast::WherePredicateKind::BoundPredicate(predicate);
758                        let predicate = ast::WherePredicate {
759                            attrs: ThinVec::new(),
760                            kind,
761                            id: ast::DUMMY_NODE_ID,
762                            span: self.span,
763                            is_placeholder: false,
764                        };
765                        where_clause.predicates.push(predicate);
766                    }
767                }
768            }
769        }
770
771        let trait_generics = Generics { params, where_clause, span };
772
773        // Create the reference to the trait.
774        let trait_ref = cx.trait_ref(trait_path);
775
776        let self_params: Vec<_> = generics
777            .params
778            .iter()
779            .map(|param| match param.kind {
780                GenericParamKind::Lifetime { .. } => {
781                    GenericArg::Lifetime(cx.lifetime(param.ident.span.with_ctxt(ctxt), param.ident))
782                }
783                GenericParamKind::Type { .. } => {
784                    GenericArg::Type(cx.ty_ident(param.ident.span.with_ctxt(ctxt), param.ident))
785                }
786                GenericParamKind::Const { .. } => {
787                    GenericArg::Const(cx.const_ident(param.ident.span.with_ctxt(ctxt), param.ident))
788                }
789            })
790            .collect();
791
792        // Create the type of `self`.
793        let path =
794            cx.path_all(type_ident.span.with_ctxt(ctxt), false, ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [type_ident]))vec![type_ident], self_params);
795        let self_type = cx.ty_path(path);
796        let rustc_const_unstable =
797            cx.path_ident(self.span, Ident::new(sym::rustc_const_unstable, self.span));
798
799        let mut attrs = {
    let len = [()].len();
    let mut vec = ::thin_vec::ThinVec::with_capacity(len);
    vec.push(cx.attr_word(sym::automatically_derived, self.span));
    vec
}thin_vec![cx.attr_word(sym::automatically_derived, self.span),];
800
801        // Only add `rustc_const_unstable` attributes if `derive_const` is used within libcore/libstd,
802        // Other crates don't need stability attributes, so adding them is not useful, but libcore needs them
803        // on all const trait impls.
804        if self.is_const && self.is_staged_api_crate {
805            attrs.push(
806                cx.attr_nested(
807                    rustc_ast::AttrItem {
808                        unsafety: Safety::Default,
809                        path: rustc_const_unstable,
810                        args: rustc_ast::ast::AttrItemKind::Unparsed(AttrArgs::Delimited(
811                            DelimArgs {
812                                dspan: DelimSpan::from_single(self.span),
813                                delim: rustc_ast::token::Delimiter::Parenthesis,
814                                tokens: [
815                                    TokenKind::Ident(sym::feature, IdentIsRaw::No),
816                                    TokenKind::Eq,
817                                    TokenKind::lit(LitKind::Str, sym::derive_const, None),
818                                    TokenKind::Comma,
819                                    TokenKind::Ident(sym::issue, IdentIsRaw::No),
820                                    TokenKind::Eq,
821                                    TokenKind::lit(LitKind::Str, sym::derive_const_issue, None),
822                                ]
823                                .into_iter()
824                                .map(|kind| {
825                                    TokenTree::Token(
826                                        Token { kind, span: self.span },
827                                        Spacing::Alone,
828                                    )
829                                })
830                                .collect(),
831                            },
832                        )),
833                    },
834                    self.span,
835                ),
836            )
837        }
838
839        if !self.document {
840            attrs.push(cx.attr_nested_word(sym::doc, sym::hidden, self.span));
841        }
842
843        cx.item(
844            self.span,
845            attrs,
846            ast::ItemKind::Impl(ast::Impl {
847                generics: trait_generics,
848                of_trait: Some(Box::new(ast::TraitImplHeader {
849                    safety: self.safety,
850                    polarity: ast::ImplPolarity::Positive,
851                    defaultness: ast::Defaultness::Implicit,
852                    trait_ref,
853                })),
854                constness: if self.is_const { ast::Const::Yes(DUMMY_SP) } else { ast::Const::No },
855                self_ty: self_type,
856                items: methods.into_iter().chain(associated_types).collect(),
857            }),
858        )
859    }
860
861    fn expand_struct_def(
862        &self,
863        cx: &ExtCtxt<'_>,
864        struct_def: &'a VariantData,
865        type_ident: Ident,
866        generics: &Generics,
867        from_scratch: bool,
868        is_packed: bool,
869    ) -> Box<ast::Item> {
870        let field_tys = Vec::from_iter(struct_def.fields().iter().map(|field| &*field.ty));
871
872        let methods = self
873            .methods
874            .iter()
875            .map(|method_def| {
876                let (explicit_self, selflike_args, nonselflike_args, nonself_arg_tys) =
877                    method_def.extract_arg_details(cx, self, type_ident, generics);
878
879                let body = if from_scratch || method_def.is_static() {
880                    method_def.expand_static_struct_method_body(
881                        cx,
882                        self,
883                        struct_def,
884                        type_ident,
885                        &nonselflike_args,
886                    )
887                } else {
888                    method_def.expand_struct_method_body(
889                        cx,
890                        self,
891                        struct_def,
892                        type_ident,
893                        &selflike_args,
894                        &nonselflike_args,
895                        is_packed,
896                    )
897                };
898
899                method_def.create_method(
900                    cx,
901                    self,
902                    type_ident,
903                    generics,
904                    explicit_self,
905                    nonself_arg_tys,
906                    body,
907                )
908            })
909            .collect();
910
911        self.create_derived_impl(cx, type_ident, generics, field_tys, methods, is_packed)
912    }
913
914    fn expand_enum_def(
915        &self,
916        cx: &ExtCtxt<'_>,
917        enum_def: &'a EnumDef,
918        type_ident: Ident,
919        generics: &Generics,
920        from_scratch: bool,
921    ) -> Box<ast::Item> {
922        let field_tys = Vec::from_iter(
923            enum_def
924                .variants
925                .iter()
926                .flat_map(|variant| variant.data.fields())
927                .map(|field| &*field.ty),
928        );
929
930        let methods = self
931            .methods
932            .iter()
933            .map(|method_def| {
934                let (explicit_self, selflike_args, nonselflike_args, nonself_arg_tys) =
935                    method_def.extract_arg_details(cx, self, type_ident, generics);
936
937                let body = if from_scratch || method_def.is_static() {
938                    method_def.expand_static_enum_method_body(
939                        cx,
940                        self,
941                        enum_def,
942                        type_ident,
943                        &nonselflike_args,
944                    )
945                } else {
946                    method_def.expand_enum_method_body(
947                        cx,
948                        self,
949                        enum_def,
950                        type_ident,
951                        selflike_args,
952                        &nonselflike_args,
953                    )
954                };
955
956                method_def.create_method(
957                    cx,
958                    self,
959                    type_ident,
960                    generics,
961                    explicit_self,
962                    nonself_arg_tys,
963                    body,
964                )
965            })
966            .collect();
967
968        let is_packed = false; // enums are never packed
969        self.create_derived_impl(cx, type_ident, generics, field_tys, methods, is_packed)
970    }
971}
972
973impl<'a> MethodDef<'a> {
974    fn call_substructure_method(
975        &self,
976        cx: &ExtCtxt<'_>,
977        trait_: &TraitDef<'_>,
978        type_ident: Ident,
979        nonselflike_args: &[Box<Expr>],
980        fields: &SubstructureFields<'_>,
981    ) -> BlockOrExpr {
982        let span = trait_.span;
983        let substructure = Substructure { type_ident, nonselflike_args, fields };
984        let mut f = self.combine_substructure.borrow_mut();
985        let f: &mut CombineSubstructureFunc<'_> = &mut *f;
986        f(cx, span, &substructure)
987    }
988
989    fn is_static(&self) -> bool {
990        !self.explicit_self
991    }
992
993    // The return value includes:
994    // - explicit_self: The `&self` arg, if present.
995    // - selflike_args: Expressions for `&self` (if present) and also any other
996    //   args with the same type (e.g. the `other` arg in `PartialEq::eq`).
997    // - nonselflike_args: Expressions for all the remaining args.
998    // - nonself_arg_tys: Additional information about all the args other than
999    //   `&self`.
1000    fn extract_arg_details(
1001        &self,
1002        cx: &ExtCtxt<'_>,
1003        trait_: &TraitDef<'_>,
1004        type_ident: Ident,
1005        generics: &Generics,
1006    ) -> (Option<ast::ExplicitSelf>, ThinVec<Box<Expr>>, Vec<Box<Expr>>, Vec<(Ident, Box<ast::Ty>)>)
1007    {
1008        let mut selflike_args = ThinVec::new();
1009        let mut nonselflike_args = Vec::new();
1010        let mut nonself_arg_tys = Vec::new();
1011        let span = trait_.span;
1012
1013        let explicit_self = self.explicit_self.then(|| {
1014            let (self_expr, explicit_self) = ty::get_explicit_self(cx, span);
1015            selflike_args.push(self_expr);
1016            explicit_self
1017        });
1018
1019        for (ty, name) in self.nonself_args.iter() {
1020            let ast_ty = ty.to_ty(cx, span, type_ident, generics);
1021            let ident = Ident::new(*name, span);
1022            nonself_arg_tys.push((ident, ast_ty));
1023
1024            let arg_expr = cx.expr_ident(span, ident);
1025
1026            match ty {
1027                // Selflike (`&Self`) arguments only occur in non-static methods.
1028                Ref(Self_, _) if !self.is_static() => selflike_args.push(arg_expr),
1029                Self_ => cx.dcx().span_bug(span, "`Self` in non-return position"),
1030                _ => nonselflike_args.push(arg_expr),
1031            }
1032        }
1033
1034        (explicit_self, selflike_args, nonselflike_args, nonself_arg_tys)
1035    }
1036
1037    fn create_method(
1038        &self,
1039        cx: &ExtCtxt<'_>,
1040        trait_: &TraitDef<'_>,
1041        type_ident: Ident,
1042        generics: &Generics,
1043        explicit_self: Option<ast::ExplicitSelf>,
1044        nonself_arg_tys: Vec<(Ident, Box<ast::Ty>)>,
1045        body: BlockOrExpr,
1046    ) -> Box<ast::AssocItem> {
1047        let span = trait_.span;
1048        // Create the generics that aren't for `Self`.
1049        let fn_generics = self.generics.to_generics(cx, span, type_ident, generics);
1050
1051        let args = {
1052            let self_arg = explicit_self.map(|explicit_self| {
1053                let ident = Ident::new(kw::SelfLower, span);
1054                ast::Param::from_self(ast::AttrVec::default(), explicit_self, ident)
1055            });
1056            let nonself_args =
1057                nonself_arg_tys.into_iter().map(|(name, ty)| cx.param(span, name, ty));
1058            self_arg.into_iter().chain(nonself_args).collect()
1059        };
1060
1061        let ret_type = if let Ty::Unit = &self.ret_ty {
1062            ast::FnRetTy::Default(span)
1063        } else {
1064            ast::FnRetTy::Ty(self.ret_ty.to_ty(cx, span, type_ident, generics))
1065        };
1066
1067        let method_ident = Ident::new(self.name, span);
1068        let fn_decl = cx.fn_decl(args, ret_type);
1069        let body_block = body.into_block(cx, span);
1070
1071        let trait_lo_sp = span.shrink_to_lo();
1072
1073        let sig = ast::FnSig { header: ast::FnHeader::default(), decl: fn_decl, span };
1074        let defaultness = ast::Defaultness::Implicit;
1075
1076        // Create the method.
1077        Box::new(ast::AssocItem {
1078            id: ast::DUMMY_NODE_ID,
1079            attrs: self.attributes.clone(),
1080            span,
1081            vis: ast::Visibility { span: trait_lo_sp, kind: ast::VisibilityKind::Inherited },
1082            kind: ast::AssocItemKind::Fn(Box::new(ast::Fn {
1083                defaultness,
1084                sig,
1085                ident: method_ident,
1086                generics: fn_generics,
1087                contract: None,
1088                body: Some(body_block),
1089                define_opaque: None,
1090                eii_impls: ThinVec::new(),
1091            })),
1092            tokens: None,
1093        })
1094    }
1095
1096    /// The normal case uses field access.
1097    ///
1098    /// ```
1099    /// #[derive(PartialEq)]
1100    /// # struct Dummy;
1101    /// struct A { x: u8, y: u8 }
1102    ///
1103    /// // equivalent to:
1104    /// impl PartialEq for A {
1105    ///     fn eq(&self, other: &A) -> bool {
1106    ///         self.x == other.x && self.y == other.y
1107    ///     }
1108    /// }
1109    /// ```
1110    ///
1111    /// But if the struct is `repr(packed)`, we can't use something like
1112    /// `&self.x` because that might cause an unaligned ref. So for any trait
1113    /// method that takes a reference, we use a local block to force a copy.
1114    /// This requires that the field impl `Copy`.
1115    ///
1116    /// ```rust,ignore (example)
1117    /// # struct A { x: u8, y: u8 }
1118    /// impl PartialEq for A {
1119    ///     fn eq(&self, other: &A) -> bool {
1120    ///         // Desugars to `{ self.x }.eq(&{ other.y }) && ...`
1121    ///         { self.x } == { other.y } && { self.y } == { other.y }
1122    ///     }
1123    /// }
1124    /// impl Hash for A {
1125    ///     fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
1126    ///         ::core::hash::Hash::hash(&{ self.x }, state);
1127    ///         ::core::hash::Hash::hash(&{ self.y }, state);
1128    ///     }
1129    /// }
1130    /// ```
1131    fn expand_struct_method_body<'b>(
1132        &self,
1133        cx: &ExtCtxt<'_>,
1134        trait_: &TraitDef<'b>,
1135        struct_def: &'b VariantData,
1136        type_ident: Ident,
1137        selflike_args: &[Box<Expr>],
1138        nonselflike_args: &[Box<Expr>],
1139        is_packed: bool,
1140    ) -> BlockOrExpr {
1141        if !(selflike_args.len() == 1 || selflike_args.len() == 2) {
    ::core::panicking::panic("assertion failed: selflike_args.len() == 1 || selflike_args.len() == 2")
};assert!(selflike_args.len() == 1 || selflike_args.len() == 2);
1142
1143        let selflike_fields =
1144            trait_.create_struct_field_access_fields(cx, selflike_args, struct_def, is_packed);
1145        self.call_substructure_method(
1146            cx,
1147            trait_,
1148            type_ident,
1149            nonselflike_args,
1150            &Struct(struct_def, selflike_fields),
1151        )
1152    }
1153
1154    fn expand_static_struct_method_body(
1155        &self,
1156        cx: &ExtCtxt<'_>,
1157        trait_: &TraitDef<'a>,
1158        struct_def: &'a VariantData,
1159        type_ident: Ident,
1160        nonselflike_args: &[Box<Expr>],
1161    ) -> BlockOrExpr {
1162        let summary = trait_.summarise_struct(cx, struct_def);
1163
1164        self.call_substructure_method(
1165            cx,
1166            trait_,
1167            type_ident,
1168            nonselflike_args,
1169            &StaticStruct(struct_def, summary),
1170        )
1171    }
1172
1173    /// ```
1174    /// #[derive(PartialEq)]
1175    /// # struct Dummy;
1176    /// enum A {
1177    ///     A1,
1178    ///     A2(i32)
1179    /// }
1180    /// ```
1181    ///
1182    /// is equivalent to:
1183    ///
1184    /// ```
1185    /// #![feature(core_intrinsics)]
1186    /// enum A {
1187    ///     A1,
1188    ///     A2(i32)
1189    /// }
1190    /// impl ::core::cmp::PartialEq for A {
1191    ///     #[inline]
1192    ///     fn eq(&self, other: &A) -> bool {
1193    ///         let __self_discr = ::core::intrinsics::discriminant_value(self);
1194    ///         let __arg1_discr = ::core::intrinsics::discriminant_value(other);
1195    ///         __self_discr == __arg1_discr
1196    ///             && match (self, other) {
1197    ///                 (A::A2(__self_0), A::A2(__arg1_0)) => *__self_0 == *__arg1_0,
1198    ///                 _ => true,
1199    ///             }
1200    ///     }
1201    /// }
1202    /// ```
1203    ///
1204    /// Creates a discriminant check combined with a match for a tuple of all
1205    /// `selflike_args`, with an arm for each variant with fields, possibly an
1206    /// arm for each fieldless variant (if `unify_fieldless_variants` is not
1207    /// `Unify`), and possibly a default arm.
1208    fn expand_enum_method_body<'b>(
1209        &self,
1210        cx: &ExtCtxt<'_>,
1211        trait_: &TraitDef<'b>,
1212        enum_def: &'b EnumDef,
1213        type_ident: Ident,
1214        mut selflike_args: ThinVec<Box<Expr>>,
1215        nonselflike_args: &[Box<Expr>],
1216    ) -> BlockOrExpr {
1217        if !!selflike_args.is_empty() {
    {
        ::core::panicking::panic_fmt(format_args!("static methods must use `expand_static_enum_method_body`"));
    }
};assert!(
1218            !selflike_args.is_empty(),
1219            "static methods must use `expand_static_enum_method_body`",
1220        );
1221
1222        let span = trait_.span;
1223        let variants = &enum_def.variants;
1224
1225        // Traits that unify fieldless variants always use the discriminant(s).
1226        let unify_fieldless_variants =
1227            self.fieldless_variants_strategy == FieldlessVariantsStrategy::Unify;
1228
1229        // For zero-variant enum, this function body is unreachable. Generate
1230        // `match *self {}`. This produces machine code identical to `unsafe {
1231        // core::intrinsics::unreachable() }` while being safe and stable.
1232        if variants.is_empty() {
1233            selflike_args.truncate(1);
1234            let match_arg = cx.expr_deref(span, selflike_args.pop().unwrap());
1235            let match_arms = ThinVec::new();
1236            let expr = cx.expr_match(span, match_arg, match_arms);
1237            return BlockOrExpr(ThinVec::new(), Some(expr));
1238        }
1239
1240        let prefixes = iter::once("__self".to_string())
1241            .chain(
1242                selflike_args
1243                    .iter()
1244                    .enumerate()
1245                    .skip(1)
1246                    .map(|(arg_count, _selflike_arg)| ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("__arg{0}", arg_count))
    })format!("__arg{arg_count}")),
1247            )
1248            .collect::<Vec<String>>();
1249
1250        // Build a series of let statements mapping each selflike_arg
1251        // to its discriminant value.
1252        //
1253        // e.g. for `PartialEq::eq` builds two statements:
1254        // ```
1255        // let __self_discr = ::core::intrinsics::discriminant_value(self);
1256        // let __arg1_discr = ::core::intrinsics::discriminant_value(other);
1257        // ```
1258        let get_discr_pieces = |cx: &ExtCtxt<'_>| {
1259            let discr_idents: Vec<_> = prefixes
1260                .iter()
1261                .map(|name| Ident::from_str_and_span(&::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}_discr", name))
    })format!("{name}_discr"), span))
1262                .collect();
1263
1264            let mut discr_exprs: Vec<_> = discr_idents
1265                .iter()
1266                .map(|&ident| cx.expr_addr_of(span, cx.expr_ident(span, ident)))
1267                .collect();
1268
1269            let self_expr = discr_exprs.remove(0);
1270            let other_selflike_exprs = discr_exprs;
1271            let discr_field =
1272                FieldInfo { span, name: None, self_expr, other_selflike_exprs, maybe_scalar: true };
1273
1274            let discr_let_stmts: ThinVec<_> = iter::zip(&discr_idents, &selflike_args)
1275                .map(|(&ident, selflike_arg)| {
1276                    let variant_value = deriving::call_intrinsic(
1277                        cx,
1278                        span,
1279                        sym::discriminant_value,
1280                        {
    let len = [()].len();
    let mut vec = ::thin_vec::ThinVec::with_capacity(len);
    vec.push(selflike_arg.clone());
    vec
}thin_vec![selflike_arg.clone()],
1281                    );
1282                    cx.stmt_let(span, false, ident, variant_value)
1283                })
1284                .collect();
1285
1286            (discr_field, discr_let_stmts)
1287        };
1288
1289        // There are some special cases involving fieldless enums where no
1290        // match is necessary.
1291        let all_fieldless = variants.iter().all(|v| v.data.fields().is_empty());
1292        if all_fieldless {
1293            if variants.len() > 1 {
1294                match self.fieldless_variants_strategy {
1295                    FieldlessVariantsStrategy::Unify => {
1296                        // If the type is fieldless and the trait uses the discriminant and
1297                        // there are multiple variants, we need just an operation on
1298                        // the discriminant(s).
1299                        let (discr_field, mut discr_let_stmts) = get_discr_pieces(cx);
1300                        let mut discr_check = self.call_substructure_method(
1301                            cx,
1302                            trait_,
1303                            type_ident,
1304                            nonselflike_args,
1305                            &EnumDiscr(discr_field, None),
1306                        );
1307                        discr_let_stmts.append(&mut discr_check.0);
1308                        return BlockOrExpr(discr_let_stmts, discr_check.1);
1309                    }
1310                    FieldlessVariantsStrategy::SpecializeIfAllVariantsFieldless => {
1311                        return self.call_substructure_method(
1312                            cx,
1313                            trait_,
1314                            type_ident,
1315                            nonselflike_args,
1316                            &AllFieldlessEnum(enum_def),
1317                        );
1318                    }
1319                    FieldlessVariantsStrategy::Default => (),
1320                }
1321            } else if let [variant] = variants.as_slice() {
1322                // If there is a single variant, we don't need an operation on
1323                // the discriminant(s). Just use the most degenerate result.
1324                return self.call_substructure_method(
1325                    cx,
1326                    trait_,
1327                    type_ident,
1328                    nonselflike_args,
1329                    &EnumMatching(variant, Vec::new()),
1330                );
1331            }
1332        }
1333
1334        // These arms are of the form:
1335        // (Variant1, Variant1, ...) => Body1
1336        // (Variant2, Variant2, ...) => Body2
1337        // ...
1338        // where each tuple has length = selflike_args.len()
1339        let mut match_arms: ThinVec<ast::Arm> = variants
1340            .iter()
1341            .filter(|&v| !(unify_fieldless_variants && v.data.fields().is_empty()))
1342            .map(|variant| {
1343                // A single arm has form (&VariantK, &VariantK, ...) => BodyK
1344                // (see "Final wrinkle" note below for why.)
1345
1346                let fields = trait_.create_struct_pattern_fields(cx, &variant.data, &prefixes);
1347
1348                let sp = variant.span.with_ctxt(trait_.span.ctxt());
1349                let variant_path = cx.path(sp, ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [type_ident, variant.ident]))vec![type_ident, variant.ident]);
1350                let by_ref = ByRef::No; // because enums can't be repr(packed)
1351                let mut subpats = trait_.create_struct_patterns(
1352                    cx,
1353                    variant_path,
1354                    &variant.data,
1355                    &prefixes,
1356                    by_ref,
1357                );
1358
1359                // `(VariantK, VariantK, ...)` or just `VariantK`.
1360                let single_pat = if subpats.len() == 1 {
1361                    subpats.pop().unwrap()
1362                } else {
1363                    cx.pat_tuple(span, subpats)
1364                };
1365
1366                // For the BodyK, we need to delegate to our caller,
1367                // passing it an EnumMatching to indicate which case
1368                // we are in.
1369                //
1370                // Now, for some given VariantK, we have built up
1371                // expressions for referencing every field of every
1372                // Self arg, assuming all are instances of VariantK.
1373                // Build up code associated with such a case.
1374                let substructure = EnumMatching(variant, fields);
1375                let arm_expr = self
1376                    .call_substructure_method(
1377                        cx,
1378                        trait_,
1379                        type_ident,
1380                        nonselflike_args,
1381                        &substructure,
1382                    )
1383                    .into_expr(cx, span);
1384
1385                cx.arm(span, single_pat, arm_expr)
1386            })
1387            .collect();
1388
1389        // Add a default arm to the match, if necessary.
1390        let first_fieldless = variants.iter().find(|v| v.data.fields().is_empty());
1391        let default = match first_fieldless {
1392            Some(v) if unify_fieldless_variants => {
1393                // We need a default case that handles all the fieldless
1394                // variants. The index and actual variant aren't meaningful in
1395                // this case, so just use dummy values.
1396                Some(
1397                    self.call_substructure_method(
1398                        cx,
1399                        trait_,
1400                        type_ident,
1401                        nonselflike_args,
1402                        &EnumMatching(v, Vec::new()),
1403                    )
1404                    .into_expr(cx, span),
1405                )
1406            }
1407            _ if variants.len() > 1 && selflike_args.len() > 1 => {
1408                // Because we know that all the arguments will match if we reach
1409                // the match expression we add the unreachable intrinsics as the
1410                // result of the default which should help llvm in optimizing it.
1411                Some(deriving::call_unreachable(cx, span))
1412            }
1413            _ => None,
1414        };
1415        if let Some(arm) = default {
1416            match_arms.push(cx.arm(span, cx.pat_wild(span), arm));
1417        }
1418
1419        // Create a match expression with one arm per discriminant plus
1420        // possibly a default arm, e.g.:
1421        //      match (self, other) {
1422        //          (Variant1, Variant1, ...) => Body1
1423        //          (Variant2, Variant2, ...) => Body2,
1424        //          ...
1425        //          _ => ::core::intrinsics::unreachable(),
1426        //      }
1427        let get_match_expr = |mut selflike_args: ThinVec<Box<Expr>>| {
1428            let match_arg = if selflike_args.len() == 1 {
1429                selflike_args.pop().unwrap()
1430            } else {
1431                cx.expr(span, ast::ExprKind::Tup(selflike_args))
1432            };
1433            cx.expr_match(span, match_arg, match_arms)
1434        };
1435
1436        // If the trait uses the discriminant and there are multiple variants, we need
1437        // to add a discriminant check operation before the match. Otherwise, the match
1438        // is enough.
1439        if unify_fieldless_variants && variants.len() > 1 {
1440            let (discr_field, mut discr_let_stmts) = get_discr_pieces(cx);
1441
1442            // Combine a discriminant check with the match.
1443            let mut discr_check_plus_match = self.call_substructure_method(
1444                cx,
1445                trait_,
1446                type_ident,
1447                nonselflike_args,
1448                &EnumDiscr(discr_field, Some(get_match_expr(selflike_args))),
1449            );
1450            discr_let_stmts.append(&mut discr_check_plus_match.0);
1451            BlockOrExpr(discr_let_stmts, discr_check_plus_match.1)
1452        } else {
1453            BlockOrExpr(ThinVec::new(), Some(get_match_expr(selflike_args)))
1454        }
1455    }
1456
1457    fn expand_static_enum_method_body(
1458        &self,
1459        cx: &ExtCtxt<'_>,
1460        trait_: &TraitDef<'_>,
1461        enum_def: &EnumDef,
1462        type_ident: Ident,
1463        nonselflike_args: &[Box<Expr>],
1464    ) -> BlockOrExpr {
1465        self.call_substructure_method(
1466            cx,
1467            trait_,
1468            type_ident,
1469            nonselflike_args,
1470            &StaticEnum(enum_def),
1471        )
1472    }
1473}
1474
1475// general helper methods.
1476impl<'a> TraitDef<'a> {
1477    fn summarise_struct(&self, cx: &ExtCtxt<'_>, struct_def: &'a VariantData) -> StaticFields<'a> {
1478        let mut named_idents = Vec::new();
1479        let mut just_spans = Vec::new();
1480        for field in struct_def.fields() {
1481            let sp = field.span.with_ctxt(self.span.ctxt());
1482            match field.ident {
1483                Some(ident) => named_idents.push((ident, sp, field.default.as_ref())),
1484                _ => just_spans.push(sp),
1485            }
1486        }
1487
1488        let is_tuple = match struct_def {
1489            ast::VariantData::Tuple(..) => IsTuple::Yes,
1490            _ => IsTuple::No,
1491        };
1492        match (just_spans.is_empty(), named_idents.is_empty()) {
1493            (false, false) => cx
1494                .dcx()
1495                .span_bug(self.span, "a struct with named and unnamed fields in generic `derive`"),
1496            // named fields
1497            (_, false) => Named(named_idents),
1498            // unnamed fields
1499            (false, _) => Unnamed(just_spans, is_tuple),
1500            // empty
1501            _ => Named(Vec::new()),
1502        }
1503    }
1504
1505    fn create_struct_patterns(
1506        &self,
1507        cx: &ExtCtxt<'_>,
1508        struct_path: ast::Path,
1509        struct_def: &'a VariantData,
1510        prefixes: &[String],
1511        by_ref: ByRef,
1512    ) -> ThinVec<ast::Pat> {
1513        prefixes
1514            .iter()
1515            .map(|prefix| {
1516                let pieces_iter =
1517                    struct_def.fields().iter().enumerate().map(|(i, struct_field)| {
1518                        let sp = struct_field.span.with_ctxt(self.span.ctxt());
1519                        let ident = self.mk_pattern_ident(prefix, i);
1520                        let path = ident.with_span_pos(sp);
1521                        (
1522                            sp,
1523                            struct_field.ident,
1524                            cx.pat(
1525                                path.span,
1526                                PatKind::Ident(BindingMode(by_ref, Mutability::Not), path, None),
1527                            ),
1528                        )
1529                    });
1530
1531                let struct_path = struct_path.clone();
1532                match *struct_def {
1533                    VariantData::Struct { .. } => {
1534                        let field_pats = pieces_iter
1535                            .map(|(sp, ident, pat)| {
1536                                if ident.is_none() {
1537                                    cx.dcx().span_bug(
1538                                        sp,
1539                                        "a braced struct with unnamed fields in `derive`",
1540                                    );
1541                                }
1542                                ast::PatField {
1543                                    ident: ident.unwrap(),
1544                                    is_shorthand: false,
1545                                    attrs: ast::AttrVec::new(),
1546                                    id: ast::DUMMY_NODE_ID,
1547                                    span: pat.span.with_ctxt(self.span.ctxt()),
1548                                    pat: Box::new(pat),
1549                                    is_placeholder: false,
1550                                }
1551                            })
1552                            .collect();
1553                        cx.pat_struct(self.span, struct_path, field_pats)
1554                    }
1555                    VariantData::Tuple(..) => {
1556                        let subpats = pieces_iter.map(|(_, _, subpat)| subpat).collect();
1557                        cx.pat_tuple_struct(self.span, struct_path, subpats)
1558                    }
1559                    VariantData::Unit(..) => cx.pat_path(self.span, struct_path),
1560                }
1561            })
1562            .collect()
1563    }
1564
1565    fn create_fields<F>(&self, struct_def: &'a VariantData, mk_exprs: F) -> Vec<FieldInfo>
1566    where
1567        F: Fn(usize, &ast::FieldDef, Span) -> Vec<Box<ast::Expr>>,
1568    {
1569        struct_def
1570            .fields()
1571            .iter()
1572            .enumerate()
1573            .map(|(i, struct_field)| {
1574                // For this field, get an expr for each selflike_arg. E.g. for
1575                // `PartialEq::eq`, one for each of `&self` and `other`.
1576                let sp = struct_field.span.with_ctxt(self.span.ctxt());
1577                let mut exprs: Vec<_> = mk_exprs(i, struct_field, sp);
1578                let self_expr = exprs.remove(0);
1579                let other_selflike_exprs = exprs;
1580                FieldInfo {
1581                    span: sp.with_ctxt(self.span.ctxt()),
1582                    name: struct_field.ident,
1583                    self_expr,
1584                    other_selflike_exprs,
1585                    maybe_scalar: struct_field.ty.peel_refs().kind.maybe_scalar(),
1586                }
1587            })
1588            .collect()
1589    }
1590
1591    fn mk_pattern_ident(&self, prefix: &str, i: usize) -> Ident {
1592        Ident::from_str_and_span(&::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}_{1}", prefix, i))
    })format!("{prefix}_{i}"), self.span)
1593    }
1594
1595    fn create_struct_pattern_fields(
1596        &self,
1597        cx: &ExtCtxt<'_>,
1598        struct_def: &'a VariantData,
1599        prefixes: &[String],
1600    ) -> Vec<FieldInfo> {
1601        self.create_fields(struct_def, |i, _struct_field, sp| {
1602            prefixes
1603                .iter()
1604                .map(|prefix| {
1605                    let ident = self.mk_pattern_ident(prefix, i);
1606                    cx.expr_path(cx.path_ident(sp, ident))
1607                })
1608                .collect()
1609        })
1610    }
1611
1612    fn create_struct_field_access_fields(
1613        &self,
1614        cx: &ExtCtxt<'_>,
1615        selflike_args: &[Box<Expr>],
1616        struct_def: &'a VariantData,
1617        is_packed: bool,
1618    ) -> Vec<FieldInfo> {
1619        self.create_fields(struct_def, |i, struct_field, sp| {
1620            selflike_args
1621                .iter()
1622                .map(|selflike_arg| {
1623                    // Note: we must use `struct_field.span` rather than `sp` in the
1624                    // `unwrap_or_else` case otherwise the hygiene is wrong and we get
1625                    // "field `0` of struct `Point` is private" errors on tuple
1626                    // structs.
1627                    let mut field_expr = cx.expr(
1628                        sp,
1629                        ast::ExprKind::Field(
1630                            selflike_arg.clone(),
1631                            struct_field.ident.unwrap_or_else(|| {
1632                                Ident::from_str_and_span(&i.to_string(), struct_field.span)
1633                            }),
1634                        ),
1635                    );
1636                    if is_packed {
1637                        // Fields in packed structs are wrapped in a block, e.g. `&{self.0}`,
1638                        // causing a copy instead of a (potentially misaligned) reference.
1639                        field_expr = cx.expr_block(
1640                            cx.block(struct_field.span, {
    let len = [()].len();
    let mut vec = ::thin_vec::ThinVec::with_capacity(len);
    vec.push(cx.stmt_expr(field_expr));
    vec
}thin_vec![cx.stmt_expr(field_expr)]),
1641                        );
1642                    }
1643                    cx.expr_addr_of(sp, field_expr)
1644                })
1645                .collect()
1646        })
1647    }
1648}
1649
1650/// The function passed to `cs_fold` is called repeatedly with a value of this
1651/// type. It describes one part of the code generation. The result is always an
1652/// expression.
1653pub(crate) enum CsFold<'a> {
1654    /// The basic case: a field expression for one or more selflike args. E.g.
1655    /// for `PartialEq::eq` this is something like `self.x == other.x`.
1656    Single(&'a FieldInfo),
1657
1658    /// The combination of two field expressions. E.g. for `PartialEq::eq` this
1659    /// is something like `<field1 equality> && <field2 equality>`.
1660    Combine(Span, Box<Expr>, Box<Expr>),
1661
1662    // The fallback case for a struct or enum variant with no fields.
1663    Fieldless,
1664}
1665
1666/// Folds over fields, combining the expressions for each field in a sequence.
1667/// Statics may not be folded over.
1668pub(crate) fn cs_fold<F>(
1669    use_foldl: bool,
1670    cx: &ExtCtxt<'_>,
1671    trait_span: Span,
1672    substructure: &Substructure<'_>,
1673    mut f: F,
1674) -> Box<Expr>
1675where
1676    F: FnMut(&ExtCtxt<'_>, CsFold<'_>) -> Box<Expr>,
1677{
1678    match substructure.fields {
1679        EnumMatching(.., all_fields) | Struct(_, all_fields) => {
1680            if all_fields.is_empty() {
1681                return f(cx, CsFold::Fieldless);
1682            }
1683
1684            let (base_field, rest) = if use_foldl {
1685                all_fields.split_first().unwrap()
1686            } else {
1687                all_fields.split_last().unwrap()
1688            };
1689
1690            let base_expr = f(cx, CsFold::Single(base_field));
1691
1692            let op = |old, field: &FieldInfo| {
1693                let new = f(cx, CsFold::Single(field));
1694                f(cx, CsFold::Combine(field.span, old, new))
1695            };
1696
1697            if use_foldl {
1698                rest.iter().fold(base_expr, op)
1699            } else {
1700                rest.iter().rfold(base_expr, op)
1701            }
1702        }
1703        EnumDiscr(discr_field, match_expr) => {
1704            let discr_check_expr = f(cx, CsFold::Single(discr_field));
1705            if let Some(match_expr) = match_expr {
1706                if use_foldl {
1707                    f(cx, CsFold::Combine(trait_span, discr_check_expr, match_expr.clone()))
1708                } else {
1709                    f(cx, CsFold::Combine(trait_span, match_expr.clone(), discr_check_expr))
1710                }
1711            } else {
1712                discr_check_expr
1713            }
1714        }
1715        StaticEnum(..) | StaticStruct(..) => {
1716            cx.dcx().span_bug(trait_span, "static function in `derive`")
1717        }
1718        AllFieldlessEnum(..) => cx.dcx().span_bug(trait_span, "fieldless enum in `derive`"),
1719    }
1720}