1use 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, errors};
198
199pub(crate) mod ty;
200
201pub(crate) struct TraitDef<'a> {
202 pub span: Span,
204
205 pub path: Path,
207
208 pub skip_path_as_bound: bool,
210
211 pub needs_copy_as_bound_if_packed: bool,
213
214 pub additional_bounds: Vec<Ty>,
217
218 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 pub safety: Safety,
231
232 pub document: bool,
234}
235
236pub(crate) struct MethodDef<'a> {
237 pub name: Symbol,
239 pub generics: Bounds,
241
242 pub explicit_self: bool,
244
245 pub nonself_args: Vec<(Ty, Symbol)>,
247
248 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#[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 Unify,
265 Default,
268 SpecializeIfAllVariantsFieldless,
272}
273
274pub(crate) struct Substructure<'a> {
276 pub type_ident: Ident,
278 pub nonselflike_args: &'a [Box<Expr>],
281 pub fields: &'a SubstructureFields<'a>,
282}
283
284pub(crate) struct FieldInfo {
286 pub span: Span,
287 pub name: Option<Ident>,
290 pub self_expr: Box<Expr>,
293 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
305pub(crate) enum StaticFields {
307 Unnamed(Vec<Span>, IsTuple),
309 Named(Vec<(Ident, Span, Option<AnonConst>)>),
311}
312
313pub(crate) enum SubstructureFields<'a> {
315 Struct(&'a ast::VariantData, Vec<FieldInfo>),
317
318 AllFieldlessEnum(&'a ast::EnumDef),
322
323 EnumMatching(&'a ast::Variant, Vec<FieldInfo>),
327
328 EnumDiscr(FieldInfo, Option<Box<Expr>>),
332
333 StaticStruct(&'a ast::VariantData, StaticFields),
335
336 StaticEnum(&'a ast::EnumDef),
338}
339
340pub(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
356pub(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 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 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 expr.clone()
398 } else {
399 cx.expr_block(self.into_block(cx, span))
401 }
402 }
403}
404
405fn 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 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 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(errors::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, item.span, item.id, None) {
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, item.span, item.id, None),
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 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(errors::DeriveUnion { span: mitem.span });
529 return;
530 }
531 }
532 _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
533 };
534 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 fn create_derived_impl(
594 &self,
595 cx: &ExtCtxt<'_>,
596 type_ident: Ident,
597 generics: &Generics,
598 field_tys: Vec<Box<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 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 tokens: None,
613 },
614 attrs: ast::AttrVec::new(),
615 kind: ast::AssocItemKind::Type(Box::new(ast::TyAlias {
616 defaultness: ast::Defaultness::Final,
617 ident,
618 generics: Generics::default(),
619 after_where_clause: ast::WhereClause::default(),
620 bounds: Vec::new(),
621 ty: Some(type_def.to_ty(cx, self.span, type_ident, generics)),
622 })),
623 tokens: None,
624 })
625 });
626
627 let mut where_clause = ast::WhereClause::default();
628 where_clause.span = generics.where_clause.span;
629 let ctxt = self.span.ctxt();
630 let span = generics.span.with_ctxt(ctxt);
631
632 let params: ThinVec<_> = generics
634 .params
635 .iter()
636 .map(|param| match ¶m.kind {
637 GenericParamKind::Lifetime { .. } => param.clone(),
638 GenericParamKind::Type { .. } => {
639 let bounds: Vec<_> = self
642 .additional_bounds
643 .iter()
644 .map(|p| {
645 cx.trait_bound(
646 p.to_path(cx, self.span, type_ident, generics),
647 self.is_const,
648 )
649 })
650 .chain(
651 self.skip_path_as_bound
653 .not()
654 .then(|| cx.trait_bound(trait_path.clone(), self.is_const)),
655 )
656 .chain({
657 if is_packed && self.needs_copy_as_bound_if_packed {
659 let p = generic::ty::Path::new({
<[_]>::into_vec(::alloc::boxed::box_new([sym::marker, sym::Copy]))
})deriving::path_std!(marker::Copy);
660 Some(cx.trait_bound(
661 p.to_path(cx, self.span, type_ident, generics),
662 self.is_const,
663 ))
664 } else {
665 None
666 }
667 })
668 .chain(
669 param.bounds.iter().cloned(),
671 )
672 .collect();
673
674 cx.typaram(param.ident.span.with_ctxt(ctxt), param.ident, bounds, None)
675 }
676 GenericParamKind::Const { ty, span, .. } => {
677 let const_nodefault_kind = GenericParamKind::Const {
678 ty: ty.clone(),
679 span: span.with_ctxt(ctxt),
680
681 default: None,
683 };
684 let mut param_clone = param.clone();
685 param_clone.kind = const_nodefault_kind;
686 param_clone
687 }
688 })
689 .map(|mut param| {
690 param.attrs.clear();
693 param
694 })
695 .collect();
696
697 where_clause.predicates.extend(generics.where_clause.predicates.iter().map(|clause| {
699 ast::WherePredicate {
700 attrs: clause.attrs.clone(),
701 kind: clause.kind.clone(),
702 id: ast::DUMMY_NODE_ID,
703 span: clause.span.with_ctxt(ctxt),
704 is_placeholder: false,
705 }
706 }));
707
708 let ty_param_names: Vec<Symbol> = params
709 .iter()
710 .filter(|param| #[allow(non_exhaustive_omitted_patterns)] match param.kind {
ast::GenericParamKind::Type { .. } => true,
_ => false,
}matches!(param.kind, ast::GenericParamKind::Type { .. }))
711 .map(|ty_param| ty_param.ident.name)
712 .collect();
713
714 if !ty_param_names.is_empty() {
715 for field_ty in field_tys {
716 let field_ty_params = find_type_parameters(&field_ty, &ty_param_names, cx);
717
718 for field_ty_param in field_ty_params {
719 if let ast::TyKind::Path(_, p) = &field_ty_param.ty.kind
721 && let [sole_segment] = &*p.segments
722 && ty_param_names.contains(&sole_segment.ident.name)
723 {
724 continue;
725 }
726 let mut bounds: Vec<_> = self
727 .additional_bounds
728 .iter()
729 .map(|p| {
730 cx.trait_bound(
731 p.to_path(cx, self.span, type_ident, generics),
732 self.is_const,
733 )
734 })
735 .collect();
736
737 if !self.skip_path_as_bound {
739 bounds.push(cx.trait_bound(trait_path.clone(), self.is_const));
740 }
741
742 if is_packed && self.needs_copy_as_bound_if_packed {
744 let p = generic::ty::Path::new({
<[_]>::into_vec(::alloc::boxed::box_new([sym::marker, sym::Copy]))
})deriving::path_std!(marker::Copy);
745 bounds.push(cx.trait_bound(
746 p.to_path(cx, self.span, type_ident, generics),
747 self.is_const,
748 ));
749 }
750
751 if !bounds.is_empty() {
752 let predicate = ast::WhereBoundPredicate {
753 bound_generic_params: field_ty_param.bound_generic_params,
754 bounded_ty: field_ty_param.ty,
755 bounds,
756 };
757
758 let kind = ast::WherePredicateKind::BoundPredicate(predicate);
759 let predicate = ast::WherePredicate {
760 attrs: ThinVec::new(),
761 kind,
762 id: ast::DUMMY_NODE_ID,
763 span: self.span,
764 is_placeholder: false,
765 };
766 where_clause.predicates.push(predicate);
767 }
768 }
769 }
770 }
771
772 let trait_generics = Generics { params, where_clause, span };
773
774 let trait_ref = cx.trait_ref(trait_path);
776
777 let self_params: Vec<_> = generics
778 .params
779 .iter()
780 .map(|param| match param.kind {
781 GenericParamKind::Lifetime { .. } => {
782 GenericArg::Lifetime(cx.lifetime(param.ident.span.with_ctxt(ctxt), param.ident))
783 }
784 GenericParamKind::Type { .. } => {
785 GenericArg::Type(cx.ty_ident(param.ident.span.with_ctxt(ctxt), param.ident))
786 }
787 GenericParamKind::Const { .. } => {
788 GenericArg::Const(cx.const_ident(param.ident.span.with_ctxt(ctxt), param.ident))
789 }
790 })
791 .collect();
792
793 let path = cx.path_all(self.span, false, <[_]>::into_vec(::alloc::boxed::box_new([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 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 tokens: None,
834 },
835 self.span,
836 ),
837 )
838 }
839
840 if !self.document {
841 attrs.push(cx.attr_nested_word(sym::doc, sym::hidden, self.span));
842 }
843
844 cx.item(
845 self.span,
846 attrs,
847 ast::ItemKind::Impl(ast::Impl {
848 generics: trait_generics,
849 of_trait: Some(Box::new(ast::TraitImplHeader {
850 safety: self.safety,
851 polarity: ast::ImplPolarity::Positive,
852 defaultness: ast::Defaultness::Final,
853 trait_ref,
854 })),
855 constness: if self.is_const { ast::Const::Yes(DUMMY_SP) } else { ast::Const::No },
856 self_ty: self_type,
857 items: methods.into_iter().chain(associated_types).collect(),
858 }),
859 )
860 }
861
862 fn expand_struct_def(
863 &self,
864 cx: &ExtCtxt<'_>,
865 struct_def: &'a VariantData,
866 type_ident: Ident,
867 generics: &Generics,
868 from_scratch: bool,
869 is_packed: bool,
870 ) -> Box<ast::Item> {
871 let field_tys: Vec<Box<ast::Ty>> =
872 struct_def.fields().iter().map(|field| field.ty.clone()).collect();
873
874 let methods = self
875 .methods
876 .iter()
877 .map(|method_def| {
878 let (explicit_self, selflike_args, nonselflike_args, nonself_arg_tys) =
879 method_def.extract_arg_details(cx, self, type_ident, generics);
880
881 let body = if from_scratch || method_def.is_static() {
882 method_def.expand_static_struct_method_body(
883 cx,
884 self,
885 struct_def,
886 type_ident,
887 &nonselflike_args,
888 )
889 } else {
890 method_def.expand_struct_method_body(
891 cx,
892 self,
893 struct_def,
894 type_ident,
895 &selflike_args,
896 &nonselflike_args,
897 is_packed,
898 )
899 };
900
901 method_def.create_method(
902 cx,
903 self,
904 type_ident,
905 generics,
906 explicit_self,
907 nonself_arg_tys,
908 body,
909 )
910 })
911 .collect();
912
913 self.create_derived_impl(cx, type_ident, generics, field_tys, methods, is_packed)
914 }
915
916 fn expand_enum_def(
917 &self,
918 cx: &ExtCtxt<'_>,
919 enum_def: &'a EnumDef,
920 type_ident: Ident,
921 generics: &Generics,
922 from_scratch: bool,
923 ) -> Box<ast::Item> {
924 let mut field_tys = Vec::new();
925
926 for variant in &enum_def.variants {
927 field_tys.extend(variant.data.fields().iter().map(|field| field.ty.clone()));
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; 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 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 Ref(box 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 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::with_dummy_span(kw::SelfLower).with_span_pos(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::Final;
1075
1076 Box::new(ast::AssocItem {
1078 id: ast::DUMMY_NODE_ID,
1079 attrs: self.attributes.clone(),
1080 span,
1081 vis: ast::Visibility {
1082 span: trait_lo_sp,
1083 kind: ast::VisibilityKind::Inherited,
1084 tokens: None,
1085 },
1086 kind: ast::AssocItemKind::Fn(Box::new(ast::Fn {
1087 defaultness,
1088 sig,
1089 ident: method_ident,
1090 generics: fn_generics,
1091 contract: None,
1092 body: Some(body_block),
1093 define_opaque: None,
1094 eii_impls: ThinVec::new(),
1095 })),
1096 tokens: None,
1097 })
1098 }
1099
1100 fn expand_struct_method_body<'b>(
1136 &self,
1137 cx: &ExtCtxt<'_>,
1138 trait_: &TraitDef<'b>,
1139 struct_def: &'b VariantData,
1140 type_ident: Ident,
1141 selflike_args: &[Box<Expr>],
1142 nonselflike_args: &[Box<Expr>],
1143 is_packed: bool,
1144 ) -> BlockOrExpr {
1145 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);
1146
1147 let selflike_fields =
1148 trait_.create_struct_field_access_fields(cx, selflike_args, struct_def, is_packed);
1149 self.call_substructure_method(
1150 cx,
1151 trait_,
1152 type_ident,
1153 nonselflike_args,
1154 &Struct(struct_def, selflike_fields),
1155 )
1156 }
1157
1158 fn expand_static_struct_method_body(
1159 &self,
1160 cx: &ExtCtxt<'_>,
1161 trait_: &TraitDef<'_>,
1162 struct_def: &VariantData,
1163 type_ident: Ident,
1164 nonselflike_args: &[Box<Expr>],
1165 ) -> BlockOrExpr {
1166 let summary = trait_.summarise_struct(cx, struct_def);
1167
1168 self.call_substructure_method(
1169 cx,
1170 trait_,
1171 type_ident,
1172 nonselflike_args,
1173 &StaticStruct(struct_def, summary),
1174 )
1175 }
1176
1177 fn expand_enum_method_body<'b>(
1213 &self,
1214 cx: &ExtCtxt<'_>,
1215 trait_: &TraitDef<'b>,
1216 enum_def: &'b EnumDef,
1217 type_ident: Ident,
1218 mut selflike_args: ThinVec<Box<Expr>>,
1219 nonselflike_args: &[Box<Expr>],
1220 ) -> BlockOrExpr {
1221 if !!selflike_args.is_empty() {
{
::core::panicking::panic_fmt(format_args!("static methods must use `expand_static_enum_method_body`"));
}
};assert!(
1222 !selflike_args.is_empty(),
1223 "static methods must use `expand_static_enum_method_body`",
1224 );
1225
1226 let span = trait_.span;
1227 let variants = &enum_def.variants;
1228
1229 let unify_fieldless_variants =
1231 self.fieldless_variants_strategy == FieldlessVariantsStrategy::Unify;
1232
1233 if variants.is_empty() {
1237 selflike_args.truncate(1);
1238 let match_arg = cx.expr_deref(span, selflike_args.pop().unwrap());
1239 let match_arms = ThinVec::new();
1240 let expr = cx.expr_match(span, match_arg, match_arms);
1241 return BlockOrExpr(ThinVec::new(), Some(expr));
1242 }
1243
1244 let prefixes = iter::once("__self".to_string())
1245 .chain(
1246 selflike_args
1247 .iter()
1248 .enumerate()
1249 .skip(1)
1250 .map(|(arg_count, _selflike_arg)| ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("__arg{0}", arg_count))
})format!("__arg{arg_count}")),
1251 )
1252 .collect::<Vec<String>>();
1253
1254 let get_discr_pieces = |cx: &ExtCtxt<'_>| {
1263 let discr_idents: Vec<_> = prefixes
1264 .iter()
1265 .map(|name| Ident::from_str_and_span(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}_discr", name))
})format!("{name}_discr"), span))
1266 .collect();
1267
1268 let mut discr_exprs: Vec<_> = discr_idents
1269 .iter()
1270 .map(|&ident| cx.expr_addr_of(span, cx.expr_ident(span, ident)))
1271 .collect();
1272
1273 let self_expr = discr_exprs.remove(0);
1274 let other_selflike_exprs = discr_exprs;
1275 let discr_field =
1276 FieldInfo { span, name: None, self_expr, other_selflike_exprs, maybe_scalar: true };
1277
1278 let discr_let_stmts: ThinVec<_> = iter::zip(&discr_idents, &selflike_args)
1279 .map(|(&ident, selflike_arg)| {
1280 let variant_value = deriving::call_intrinsic(
1281 cx,
1282 span,
1283 sym::discriminant_value,
1284 {
let len = [()].len();
let mut vec = ::thin_vec::ThinVec::with_capacity(len);
vec.push(selflike_arg.clone());
vec
}thin_vec![selflike_arg.clone()],
1285 );
1286 cx.stmt_let(span, false, ident, variant_value)
1287 })
1288 .collect();
1289
1290 (discr_field, discr_let_stmts)
1291 };
1292
1293 let all_fieldless = variants.iter().all(|v| v.data.fields().is_empty());
1296 if all_fieldless {
1297 if variants.len() > 1 {
1298 match self.fieldless_variants_strategy {
1299 FieldlessVariantsStrategy::Unify => {
1300 let (discr_field, mut discr_let_stmts) = get_discr_pieces(cx);
1304 let mut discr_check = self.call_substructure_method(
1305 cx,
1306 trait_,
1307 type_ident,
1308 nonselflike_args,
1309 &EnumDiscr(discr_field, None),
1310 );
1311 discr_let_stmts.append(&mut discr_check.0);
1312 return BlockOrExpr(discr_let_stmts, discr_check.1);
1313 }
1314 FieldlessVariantsStrategy::SpecializeIfAllVariantsFieldless => {
1315 return self.call_substructure_method(
1316 cx,
1317 trait_,
1318 type_ident,
1319 nonselflike_args,
1320 &AllFieldlessEnum(enum_def),
1321 );
1322 }
1323 FieldlessVariantsStrategy::Default => (),
1324 }
1325 } else if let [variant] = variants.as_slice() {
1326 return self.call_substructure_method(
1329 cx,
1330 trait_,
1331 type_ident,
1332 nonselflike_args,
1333 &EnumMatching(variant, Vec::new()),
1334 );
1335 }
1336 }
1337
1338 let mut match_arms: ThinVec<ast::Arm> = variants
1344 .iter()
1345 .filter(|&v| !(unify_fieldless_variants && v.data.fields().is_empty()))
1346 .map(|variant| {
1347 let fields = trait_.create_struct_pattern_fields(cx, &variant.data, &prefixes);
1351
1352 let sp = variant.span.with_ctxt(trait_.span.ctxt());
1353 let variant_path = cx.path(sp, <[_]>::into_vec(::alloc::boxed::box_new([type_ident, variant.ident]))vec![type_ident, variant.ident]);
1354 let by_ref = ByRef::No; let mut subpats = trait_.create_struct_patterns(
1356 cx,
1357 variant_path,
1358 &variant.data,
1359 &prefixes,
1360 by_ref,
1361 );
1362
1363 let single_pat = if subpats.len() == 1 {
1365 subpats.pop().unwrap()
1366 } else {
1367 cx.pat_tuple(span, subpats)
1368 };
1369
1370 let substructure = EnumMatching(variant, fields);
1379 let arm_expr = self
1380 .call_substructure_method(
1381 cx,
1382 trait_,
1383 type_ident,
1384 nonselflike_args,
1385 &substructure,
1386 )
1387 .into_expr(cx, span);
1388
1389 cx.arm(span, single_pat, arm_expr)
1390 })
1391 .collect();
1392
1393 let first_fieldless = variants.iter().find(|v| v.data.fields().is_empty());
1395 let default = match first_fieldless {
1396 Some(v) if unify_fieldless_variants => {
1397 Some(
1401 self.call_substructure_method(
1402 cx,
1403 trait_,
1404 type_ident,
1405 nonselflike_args,
1406 &EnumMatching(v, Vec::new()),
1407 )
1408 .into_expr(cx, span),
1409 )
1410 }
1411 _ if variants.len() > 1 && selflike_args.len() > 1 => {
1412 Some(deriving::call_unreachable(cx, span))
1416 }
1417 _ => None,
1418 };
1419 if let Some(arm) = default {
1420 match_arms.push(cx.arm(span, cx.pat_wild(span), arm));
1421 }
1422
1423 let get_match_expr = |mut selflike_args: ThinVec<Box<Expr>>| {
1432 let match_arg = if selflike_args.len() == 1 {
1433 selflike_args.pop().unwrap()
1434 } else {
1435 cx.expr(span, ast::ExprKind::Tup(selflike_args))
1436 };
1437 cx.expr_match(span, match_arg, match_arms)
1438 };
1439
1440 if unify_fieldless_variants && variants.len() > 1 {
1444 let (discr_field, mut discr_let_stmts) = get_discr_pieces(cx);
1445
1446 let mut discr_check_plus_match = self.call_substructure_method(
1448 cx,
1449 trait_,
1450 type_ident,
1451 nonselflike_args,
1452 &EnumDiscr(discr_field, Some(get_match_expr(selflike_args))),
1453 );
1454 discr_let_stmts.append(&mut discr_check_plus_match.0);
1455 BlockOrExpr(discr_let_stmts, discr_check_plus_match.1)
1456 } else {
1457 BlockOrExpr(ThinVec::new(), Some(get_match_expr(selflike_args)))
1458 }
1459 }
1460
1461 fn expand_static_enum_method_body(
1462 &self,
1463 cx: &ExtCtxt<'_>,
1464 trait_: &TraitDef<'_>,
1465 enum_def: &EnumDef,
1466 type_ident: Ident,
1467 nonselflike_args: &[Box<Expr>],
1468 ) -> BlockOrExpr {
1469 self.call_substructure_method(
1470 cx,
1471 trait_,
1472 type_ident,
1473 nonselflike_args,
1474 &StaticEnum(enum_def),
1475 )
1476 }
1477}
1478
1479impl<'a> TraitDef<'a> {
1481 fn summarise_struct(&self, cx: &ExtCtxt<'_>, struct_def: &VariantData) -> StaticFields {
1482 let mut named_idents = Vec::new();
1483 let mut just_spans = Vec::new();
1484 for field in struct_def.fields() {
1485 let sp = field.span.with_ctxt(self.span.ctxt());
1486 match field.ident {
1487 Some(ident) => named_idents.push((ident, sp, field.default.clone())),
1488 _ => just_spans.push(sp),
1489 }
1490 }
1491
1492 let is_tuple = match struct_def {
1493 ast::VariantData::Tuple(..) => IsTuple::Yes,
1494 _ => IsTuple::No,
1495 };
1496 match (just_spans.is_empty(), named_idents.is_empty()) {
1497 (false, false) => cx
1498 .dcx()
1499 .span_bug(self.span, "a struct with named and unnamed fields in generic `derive`"),
1500 (_, false) => Named(named_idents),
1502 (false, _) => Unnamed(just_spans, is_tuple),
1504 _ => Named(Vec::new()),
1506 }
1507 }
1508
1509 fn create_struct_patterns(
1510 &self,
1511 cx: &ExtCtxt<'_>,
1512 struct_path: ast::Path,
1513 struct_def: &'a VariantData,
1514 prefixes: &[String],
1515 by_ref: ByRef,
1516 ) -> ThinVec<ast::Pat> {
1517 prefixes
1518 .iter()
1519 .map(|prefix| {
1520 let pieces_iter =
1521 struct_def.fields().iter().enumerate().map(|(i, struct_field)| {
1522 let sp = struct_field.span.with_ctxt(self.span.ctxt());
1523 let ident = self.mk_pattern_ident(prefix, i);
1524 let path = ident.with_span_pos(sp);
1525 (
1526 sp,
1527 struct_field.ident,
1528 cx.pat(
1529 path.span,
1530 PatKind::Ident(BindingMode(by_ref, Mutability::Not), path, None),
1531 ),
1532 )
1533 });
1534
1535 let struct_path = struct_path.clone();
1536 match *struct_def {
1537 VariantData::Struct { .. } => {
1538 let field_pats = pieces_iter
1539 .map(|(sp, ident, pat)| {
1540 if ident.is_none() {
1541 cx.dcx().span_bug(
1542 sp,
1543 "a braced struct with unnamed fields in `derive`",
1544 );
1545 }
1546 ast::PatField {
1547 ident: ident.unwrap(),
1548 is_shorthand: false,
1549 attrs: ast::AttrVec::new(),
1550 id: ast::DUMMY_NODE_ID,
1551 span: pat.span.with_ctxt(self.span.ctxt()),
1552 pat: Box::new(pat),
1553 is_placeholder: false,
1554 }
1555 })
1556 .collect();
1557 cx.pat_struct(self.span, struct_path, field_pats)
1558 }
1559 VariantData::Tuple(..) => {
1560 let subpats = pieces_iter.map(|(_, _, subpat)| subpat).collect();
1561 cx.pat_tuple_struct(self.span, struct_path, subpats)
1562 }
1563 VariantData::Unit(..) => cx.pat_path(self.span, struct_path),
1564 }
1565 })
1566 .collect()
1567 }
1568
1569 fn create_fields<F>(&self, struct_def: &'a VariantData, mk_exprs: F) -> Vec<FieldInfo>
1570 where
1571 F: Fn(usize, &ast::FieldDef, Span) -> Vec<Box<ast::Expr>>,
1572 {
1573 struct_def
1574 .fields()
1575 .iter()
1576 .enumerate()
1577 .map(|(i, struct_field)| {
1578 let sp = struct_field.span.with_ctxt(self.span.ctxt());
1581 let mut exprs: Vec<_> = mk_exprs(i, struct_field, sp);
1582 let self_expr = exprs.remove(0);
1583 let other_selflike_exprs = exprs;
1584 FieldInfo {
1585 span: sp.with_ctxt(self.span.ctxt()),
1586 name: struct_field.ident,
1587 self_expr,
1588 other_selflike_exprs,
1589 maybe_scalar: struct_field.ty.peel_refs().kind.maybe_scalar(),
1590 }
1591 })
1592 .collect()
1593 }
1594
1595 fn mk_pattern_ident(&self, prefix: &str, i: usize) -> Ident {
1596 Ident::from_str_and_span(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}_{1}", prefix, i))
})format!("{prefix}_{i}"), self.span)
1597 }
1598
1599 fn create_struct_pattern_fields(
1600 &self,
1601 cx: &ExtCtxt<'_>,
1602 struct_def: &'a VariantData,
1603 prefixes: &[String],
1604 ) -> Vec<FieldInfo> {
1605 self.create_fields(struct_def, |i, _struct_field, sp| {
1606 prefixes
1607 .iter()
1608 .map(|prefix| {
1609 let ident = self.mk_pattern_ident(prefix, i);
1610 cx.expr_path(cx.path_ident(sp, ident))
1611 })
1612 .collect()
1613 })
1614 }
1615
1616 fn create_struct_field_access_fields(
1617 &self,
1618 cx: &ExtCtxt<'_>,
1619 selflike_args: &[Box<Expr>],
1620 struct_def: &'a VariantData,
1621 is_packed: bool,
1622 ) -> Vec<FieldInfo> {
1623 self.create_fields(struct_def, |i, struct_field, sp| {
1624 selflike_args
1625 .iter()
1626 .map(|selflike_arg| {
1627 let mut field_expr = cx.expr(
1632 sp,
1633 ast::ExprKind::Field(
1634 selflike_arg.clone(),
1635 struct_field.ident.unwrap_or_else(|| {
1636 Ident::from_str_and_span(&i.to_string(), struct_field.span)
1637 }),
1638 ),
1639 );
1640 if is_packed {
1641 field_expr = cx.expr_block(
1644 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)]),
1645 );
1646 }
1647 cx.expr_addr_of(sp, field_expr)
1648 })
1649 .collect()
1650 })
1651 }
1652}
1653
1654pub(crate) enum CsFold<'a> {
1658 Single(&'a FieldInfo),
1661
1662 Combine(Span, Box<Expr>, Box<Expr>),
1665
1666 Fieldless,
1668}
1669
1670pub(crate) fn cs_fold<F>(
1673 use_foldl: bool,
1674 cx: &ExtCtxt<'_>,
1675 trait_span: Span,
1676 substructure: &Substructure<'_>,
1677 mut f: F,
1678) -> Box<Expr>
1679where
1680 F: FnMut(&ExtCtxt<'_>, CsFold<'_>) -> Box<Expr>,
1681{
1682 match substructure.fields {
1683 EnumMatching(.., all_fields) | Struct(_, all_fields) => {
1684 if all_fields.is_empty() {
1685 return f(cx, CsFold::Fieldless);
1686 }
1687
1688 let (base_field, rest) = if use_foldl {
1689 all_fields.split_first().unwrap()
1690 } else {
1691 all_fields.split_last().unwrap()
1692 };
1693
1694 let base_expr = f(cx, CsFold::Single(base_field));
1695
1696 let op = |old, field: &FieldInfo| {
1697 let new = f(cx, CsFold::Single(field));
1698 f(cx, CsFold::Combine(field.span, old, new))
1699 };
1700
1701 if use_foldl {
1702 rest.iter().fold(base_expr, op)
1703 } else {
1704 rest.iter().rfold(base_expr, op)
1705 }
1706 }
1707 EnumDiscr(discr_field, match_expr) => {
1708 let discr_check_expr = f(cx, CsFold::Single(discr_field));
1709 if let Some(match_expr) = match_expr {
1710 if use_foldl {
1711 f(cx, CsFold::Combine(trait_span, discr_check_expr, match_expr.clone()))
1712 } else {
1713 f(cx, CsFold::Combine(trait_span, match_expr.clone(), discr_check_expr))
1714 }
1715 } else {
1716 discr_check_expr
1717 }
1718 }
1719 StaticEnum(..) | StaticStruct(..) => {
1720 cx.dcx().span_bug(trait_span, "static function in `derive`")
1721 }
1722 AllFieldlessEnum(..) => cx.dcx().span_bug(trait_span, "fieldless enum in `derive`"),
1723 }
1724}