]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/traits/mod.rs
errooaaar~
[rust.git] / compiler / rustc_middle / src / traits / mod.rs
1 //! Trait Resolution. See the [rustc dev guide] for more information on how this works.
2 //!
3 //! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html
4
5 mod chalk;
6 pub mod query;
7 pub mod select;
8 pub mod specialization_graph;
9 mod structural_impls;
10
11 use crate::infer::canonical::Canonical;
12 use crate::mir::abstract_const::NotConstEvaluatable;
13 use crate::ty::subst::SubstsRef;
14 use crate::ty::{self, AdtKind, Ty, TyCtxt};
15
16 use rustc_errors::{Applicability, DiagnosticBuilder};
17 use rustc_hir as hir;
18 use rustc_hir::def_id::DefId;
19 use rustc_hir::Constness;
20 use rustc_span::symbol::Symbol;
21 use rustc_span::{Span, DUMMY_SP};
22 use smallvec::SmallVec;
23
24 use std::borrow::Cow;
25 use std::fmt;
26 use std::ops::Deref;
27 use std::rc::Rc;
28
29 pub use self::select::{EvaluationCache, EvaluationResult, OverflowError, SelectionCache};
30
31 pub type CanonicalChalkEnvironmentAndGoal<'tcx> = Canonical<'tcx, ChalkEnvironmentAndGoal<'tcx>>;
32
33 pub use self::ObligationCauseCode::*;
34
35 pub use self::chalk::{ChalkEnvironmentAndGoal, RustInterner as ChalkRustInterner};
36
37 /// Depending on the stage of compilation, we want projection to be
38 /// more or less conservative.
39 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, HashStable)]
40 pub enum Reveal {
41     /// At type-checking time, we refuse to project any associated
42     /// type that is marked `default`. Non-`default` ("final") types
43     /// are always projected. This is necessary in general for
44     /// soundness of specialization. However, we *could* allow
45     /// projections in fully-monomorphic cases. We choose not to,
46     /// because we prefer for `default type` to force the type
47     /// definition to be treated abstractly by any consumers of the
48     /// impl. Concretely, that means that the following example will
49     /// fail to compile:
50     ///
51     /// ```
52     /// trait Assoc {
53     ///     type Output;
54     /// }
55     ///
56     /// impl<T> Assoc for T {
57     ///     default type Output = bool;
58     /// }
59     ///
60     /// fn main() {
61     ///     let <() as Assoc>::Output = true;
62     /// }
63     /// ```
64     UserFacing,
65
66     /// At codegen time, all monomorphic projections will succeed.
67     /// Also, `impl Trait` is normalized to the concrete type,
68     /// which has to be already collected by type-checking.
69     ///
70     /// NOTE: as `impl Trait`'s concrete type should *never*
71     /// be observable directly by the user, `Reveal::All`
72     /// should not be used by checks which may expose
73     /// type equality or type contents to the user.
74     /// There are some exceptions, e.g., around auto traits and
75     /// transmute-checking, which expose some details, but
76     /// not the whole concrete type of the `impl Trait`.
77     All,
78 }
79
80 /// The reason why we incurred this obligation; used for error reporting.
81 ///
82 /// As the happy path does not care about this struct, storing this on the heap
83 /// ends up increasing performance.
84 ///
85 /// We do not want to intern this as there are a lot of obligation causes which
86 /// only live for a short period of time.
87 #[derive(Clone, PartialEq, Eq, Hash, Lift)]
88 pub struct ObligationCause<'tcx> {
89     /// `None` for `ObligationCause::dummy`, `Some` otherwise.
90     data: Option<Rc<ObligationCauseData<'tcx>>>,
91 }
92
93 const DUMMY_OBLIGATION_CAUSE_DATA: ObligationCauseData<'static> =
94     ObligationCauseData { span: DUMMY_SP, body_id: hir::CRATE_HIR_ID, code: MiscObligation };
95
96 // Correctly format `ObligationCause::dummy`.
97 impl<'tcx> fmt::Debug for ObligationCause<'tcx> {
98     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
99         ObligationCauseData::fmt(self, f)
100     }
101 }
102
103 impl Deref for ObligationCause<'tcx> {
104     type Target = ObligationCauseData<'tcx>;
105
106     #[inline(always)]
107     fn deref(&self) -> &Self::Target {
108         self.data.as_deref().unwrap_or(&DUMMY_OBLIGATION_CAUSE_DATA)
109     }
110 }
111
112 #[derive(Clone, Debug, PartialEq, Eq, Hash, Lift)]
113 pub struct ObligationCauseData<'tcx> {
114     pub span: Span,
115
116     /// The ID of the fn body that triggered this obligation. This is
117     /// used for region obligations to determine the precise
118     /// environment in which the region obligation should be evaluated
119     /// (in particular, closures can add new assumptions). See the
120     /// field `region_obligations` of the `FulfillmentContext` for more
121     /// information.
122     pub body_id: hir::HirId,
123
124     pub code: ObligationCauseCode<'tcx>,
125 }
126
127 impl<'tcx> ObligationCause<'tcx> {
128     #[inline]
129     pub fn new(
130         span: Span,
131         body_id: hir::HirId,
132         code: ObligationCauseCode<'tcx>,
133     ) -> ObligationCause<'tcx> {
134         ObligationCause { data: Some(Rc::new(ObligationCauseData { span, body_id, code })) }
135     }
136
137     pub fn misc(span: Span, body_id: hir::HirId) -> ObligationCause<'tcx> {
138         ObligationCause::new(span, body_id, MiscObligation)
139     }
140
141     pub fn dummy_with_span(span: Span) -> ObligationCause<'tcx> {
142         ObligationCause::new(span, hir::CRATE_HIR_ID, MiscObligation)
143     }
144
145     #[inline(always)]
146     pub fn dummy() -> ObligationCause<'tcx> {
147         ObligationCause { data: None }
148     }
149
150     pub fn make_mut(&mut self) -> &mut ObligationCauseData<'tcx> {
151         Rc::make_mut(self.data.get_or_insert_with(|| Rc::new(DUMMY_OBLIGATION_CAUSE_DATA)))
152     }
153
154     pub fn span(&self, tcx: TyCtxt<'tcx>) -> Span {
155         match self.code {
156             ObligationCauseCode::CompareImplMethodObligation { .. }
157             | ObligationCauseCode::MainFunctionType
158             | ObligationCauseCode::StartFunctionType => {
159                 tcx.sess.source_map().guess_head_span(self.span)
160             }
161             ObligationCauseCode::MatchExpressionArm(box MatchExpressionArmCause {
162                 arm_span,
163                 ..
164             }) => arm_span,
165             _ => self.span,
166         }
167     }
168 }
169
170 #[derive(Clone, Debug, PartialEq, Eq, Hash, Lift)]
171 pub struct UnifyReceiverContext<'tcx> {
172     pub assoc_item: ty::AssocItem,
173     pub param_env: ty::ParamEnv<'tcx>,
174     pub substs: SubstsRef<'tcx>,
175 }
176
177 #[derive(Clone, Debug, PartialEq, Eq, Hash, Lift)]
178 pub enum ObligationCauseCode<'tcx> {
179     /// Not well classified or should be obvious from the span.
180     MiscObligation,
181
182     /// A slice or array is WF only if `T: Sized`.
183     SliceOrArrayElem,
184
185     /// A tuple is WF only if its middle elements are `Sized`.
186     TupleElem,
187
188     /// This is the trait reference from the given projection.
189     ProjectionWf(ty::ProjectionTy<'tcx>),
190
191     /// In an impl of trait `X` for type `Y`, type `Y` must
192     /// also implement all supertraits of `X`.
193     ItemObligation(DefId),
194
195     /// Like `ItemObligation`, but with extra detail on the source of the obligation.
196     BindingObligation(DefId, Span),
197
198     /// A type like `&'a T` is WF only if `T: 'a`.
199     ReferenceOutlivesReferent(Ty<'tcx>),
200
201     /// A type like `Box<Foo<'a> + 'b>` is WF only if `'b: 'a`.
202     ObjectTypeBound(Ty<'tcx>, ty::Region<'tcx>),
203
204     /// Obligation incurred due to an object cast.
205     ObjectCastObligation(/* Object type */ Ty<'tcx>),
206
207     /// Obligation incurred due to a coercion.
208     Coercion {
209         source: Ty<'tcx>,
210         target: Ty<'tcx>,
211     },
212
213     /// Various cases where expressions must be `Sized` / `Copy` / etc.
214     /// `L = X` implies that `L` is `Sized`.
215     AssignmentLhsSized,
216     /// `(x1, .., xn)` must be `Sized`.
217     TupleInitializerSized,
218     /// `S { ... }` must be `Sized`.
219     StructInitializerSized,
220     /// Type of each variable must be `Sized`.
221     VariableType(hir::HirId),
222     /// Argument type must be `Sized`.
223     SizedArgumentType(Option<Span>),
224     /// Return type must be `Sized`.
225     SizedReturnType,
226     /// Yield type must be `Sized`.
227     SizedYieldType,
228     /// Inline asm operand type must be `Sized`.
229     InlineAsmSized,
230     /// `[T, ..n]` implies that `T` must be `Copy`.
231     /// If the function in the array repeat expression is a `const fn`,
232     /// display a help message suggesting to move the function call to a
233     /// new `const` item while saying that `T` doesn't implement `Copy`.
234     RepeatVec(bool),
235
236     /// Types of fields (other than the last, except for packed structs) in a struct must be sized.
237     FieldSized {
238         adt_kind: AdtKind,
239         span: Span,
240         last: bool,
241     },
242
243     /// Constant expressions must be sized.
244     ConstSized,
245
246     /// `static` items must have `Sync` type.
247     SharedStatic,
248
249     BuiltinDerivedObligation(DerivedObligationCause<'tcx>),
250
251     ImplDerivedObligation(DerivedObligationCause<'tcx>),
252
253     DerivedObligation(DerivedObligationCause<'tcx>),
254
255     /// Error derived when matching traits/impls; see ObligationCause for more details
256     CompareImplConstObligation,
257
258     /// Error derived when matching traits/impls; see ObligationCause for more details
259     CompareImplMethodObligation {
260         item_name: Symbol,
261         impl_item_def_id: DefId,
262         trait_item_def_id: DefId,
263     },
264
265     /// Error derived when matching traits/impls; see ObligationCause for more details
266     CompareImplTypeObligation {
267         item_name: Symbol,
268         impl_item_def_id: DefId,
269         trait_item_def_id: DefId,
270     },
271
272     /// Checking that this expression can be assigned where it needs to be
273     // FIXME(eddyb) #11161 is the original Expr required?
274     ExprAssignable,
275
276     /// Computing common supertype in the arms of a match expression
277     MatchExpressionArm(Box<MatchExpressionArmCause<'tcx>>),
278
279     /// Type error arising from type checking a pattern against an expected type.
280     Pattern {
281         /// The span of the scrutinee or type expression which caused the `root_ty` type.
282         span: Option<Span>,
283         /// The root expected type induced by a scrutinee or type expression.
284         root_ty: Ty<'tcx>,
285         /// Whether the `Span` came from an expression or a type expression.
286         origin_expr: bool,
287     },
288
289     /// Constants in patterns must have `Structural` type.
290     ConstPatternStructural,
291
292     /// Computing common supertype in an if expression
293     IfExpression(Box<IfExpressionCause>),
294
295     /// Computing common supertype of an if expression with no else counter-part
296     IfExpressionWithNoElse,
297
298     /// `main` has wrong type
299     MainFunctionType,
300
301     /// `start` has wrong type
302     StartFunctionType,
303
304     /// Intrinsic has wrong type
305     IntrinsicType,
306
307     /// Method receiver
308     MethodReceiver,
309
310     UnifyReceiver(Box<UnifyReceiverContext<'tcx>>),
311
312     /// `return` with no expression
313     ReturnNoExpression,
314
315     /// `return` with an expression
316     ReturnValue(hir::HirId),
317
318     /// Return type of this function
319     ReturnType,
320
321     /// Block implicit return
322     BlockTailExpression(hir::HirId),
323
324     /// #[feature(trivial_bounds)] is not enabled
325     TrivialBound,
326 }
327
328 impl ObligationCauseCode<'_> {
329     // Return the base obligation, ignoring derived obligations.
330     pub fn peel_derives(&self) -> &Self {
331         let mut base_cause = self;
332         while let BuiltinDerivedObligation(cause)
333         | ImplDerivedObligation(cause)
334         | DerivedObligation(cause) = base_cause
335         {
336             base_cause = &cause.parent_code;
337         }
338         base_cause
339     }
340 }
341
342 // `ObligationCauseCode` is used a lot. Make sure it doesn't unintentionally get bigger.
343 #[cfg(target_arch = "x86_64")]
344 static_assert_size!(ObligationCauseCode<'_>, 32);
345
346 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
347 pub enum StatementAsExpression {
348     CorrectType,
349     NeedsBoxing,
350 }
351
352 impl<'tcx> ty::Lift<'tcx> for StatementAsExpression {
353     type Lifted = StatementAsExpression;
354     fn lift_to_tcx(self, _tcx: TyCtxt<'tcx>) -> Option<StatementAsExpression> {
355         Some(self)
356     }
357 }
358
359 #[derive(Clone, Debug, PartialEq, Eq, Hash, Lift)]
360 pub struct MatchExpressionArmCause<'tcx> {
361     pub arm_span: Span,
362     pub scrut_span: Span,
363     pub semi_span: Option<(Span, StatementAsExpression)>,
364     pub source: hir::MatchSource,
365     pub prior_arms: Vec<Span>,
366     pub last_ty: Ty<'tcx>,
367     pub scrut_hir_id: hir::HirId,
368     pub opt_suggest_box_span: Option<Span>,
369 }
370
371 #[derive(Clone, Debug, PartialEq, Eq, Hash)]
372 pub struct IfExpressionCause {
373     pub then: Span,
374     pub else_sp: Span,
375     pub outer: Option<Span>,
376     pub semicolon: Option<(Span, StatementAsExpression)>,
377     pub opt_suggest_box_span: Option<Span>,
378 }
379
380 #[derive(Clone, Debug, PartialEq, Eq, Hash, Lift)]
381 pub struct DerivedObligationCause<'tcx> {
382     /// The trait reference of the parent obligation that led to the
383     /// current obligation. Note that only trait obligations lead to
384     /// derived obligations, so we just store the trait reference here
385     /// directly.
386     pub parent_trait_ref: ty::PolyTraitRef<'tcx>,
387
388     /// The parent trait had this cause.
389     pub parent_code: Rc<ObligationCauseCode<'tcx>>,
390 }
391
392 #[derive(Clone, Debug, TypeFoldable, Lift)]
393 pub enum SelectionError<'tcx> {
394     Unimplemented,
395     OutputTypeParameterMismatch(
396         ty::PolyTraitRef<'tcx>,
397         ty::PolyTraitRef<'tcx>,
398         ty::error::TypeError<'tcx>,
399     ),
400     TraitNotObjectSafe(DefId),
401     NotConstEvaluatable(NotConstEvaluatable),
402     Overflow,
403 }
404
405 /// When performing resolution, it is typically the case that there
406 /// can be one of three outcomes:
407 ///
408 /// - `Ok(Some(r))`: success occurred with result `r`
409 /// - `Ok(None)`: could not definitely determine anything, usually due
410 ///   to inconclusive type inference.
411 /// - `Err(e)`: error `e` occurred
412 pub type SelectionResult<'tcx, T> = Result<Option<T>, SelectionError<'tcx>>;
413
414 /// Given the successful resolution of an obligation, the `ImplSource`
415 /// indicates where the impl comes from.
416 ///
417 /// For example, the obligation may be satisfied by a specific impl (case A),
418 /// or it may be relative to some bound that is in scope (case B).
419 ///
420 /// ```
421 /// impl<T:Clone> Clone<T> for Option<T> { ... } // Impl_1
422 /// impl<T:Clone> Clone<T> for Box<T> { ... }    // Impl_2
423 /// impl Clone for i32 { ... }                   // Impl_3
424 ///
425 /// fn foo<T: Clone>(concrete: Option<Box<i32>>, param: T, mixed: Option<T>) {
426 ///     // Case A: Vtable points at a specific impl. Only possible when
427 ///     // type is concretely known. If the impl itself has bounded
428 ///     // type parameters, Vtable will carry resolutions for those as well:
429 ///     concrete.clone(); // Vtable(Impl_1, [Vtable(Impl_2, [Vtable(Impl_3)])])
430 ///
431 ///     // Case A: ImplSource points at a specific impl. Only possible when
432 ///     // type is concretely known. If the impl itself has bounded
433 ///     // type parameters, ImplSource will carry resolutions for those as well:
434 ///     concrete.clone(); // ImplSource(Impl_1, [ImplSource(Impl_2, [ImplSource(Impl_3)])])
435 ///
436 ///     // Case B: ImplSource must be provided by caller. This applies when
437 ///     // type is a type parameter.
438 ///     param.clone();    // ImplSource::Param
439 ///
440 ///     // Case C: A mix of cases A and B.
441 ///     mixed.clone();    // ImplSource(Impl_1, [ImplSource::Param])
442 /// }
443 /// ```
444 ///
445 /// ### The type parameter `N`
446 ///
447 /// See explanation on `ImplSourceUserDefinedData`.
448 #[derive(Clone, PartialEq, Eq, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
449 pub enum ImplSource<'tcx, N> {
450     /// ImplSource identifying a particular impl.
451     UserDefined(ImplSourceUserDefinedData<'tcx, N>),
452
453     /// ImplSource for auto trait implementations.
454     /// This carries the information and nested obligations with regards
455     /// to an auto implementation for a trait `Trait`. The nested obligations
456     /// ensure the trait implementation holds for all the constituent types.
457     AutoImpl(ImplSourceAutoImplData<N>),
458
459     /// Successful resolution to an obligation provided by the caller
460     /// for some type parameter. The `Vec<N>` represents the
461     /// obligations incurred from normalizing the where-clause (if
462     /// any).
463     Param(Vec<N>, Constness),
464
465     /// Virtual calls through an object.
466     Object(ImplSourceObjectData<'tcx, N>),
467
468     /// Successful resolution for a builtin trait.
469     Builtin(ImplSourceBuiltinData<N>),
470
471     /// ImplSource automatically generated for a closure. The `DefId` is the ID
472     /// of the closure expression. This is a `ImplSource::UserDefined` in spirit, but the
473     /// impl is generated by the compiler and does not appear in the source.
474     Closure(ImplSourceClosureData<'tcx, N>),
475
476     /// Same as above, but for a function pointer type with the given signature.
477     FnPointer(ImplSourceFnPointerData<'tcx, N>),
478
479     /// ImplSource for a builtin `DeterminantKind` trait implementation.
480     DiscriminantKind(ImplSourceDiscriminantKindData),
481
482     /// ImplSource for a builtin `Pointee` trait implementation.
483     Pointee(ImplSourcePointeeData),
484
485     /// ImplSource automatically generated for a generator.
486     Generator(ImplSourceGeneratorData<'tcx, N>),
487
488     /// ImplSource for a trait alias.
489     TraitAlias(ImplSourceTraitAliasData<'tcx, N>),
490 }
491
492 impl<'tcx, N> ImplSource<'tcx, N> {
493     pub fn nested_obligations(self) -> Vec<N> {
494         match self {
495             ImplSource::UserDefined(i) => i.nested,
496             ImplSource::Param(n, _) => n,
497             ImplSource::Builtin(i) => i.nested,
498             ImplSource::AutoImpl(d) => d.nested,
499             ImplSource::Closure(c) => c.nested,
500             ImplSource::Generator(c) => c.nested,
501             ImplSource::Object(d) => d.nested,
502             ImplSource::FnPointer(d) => d.nested,
503             ImplSource::DiscriminantKind(ImplSourceDiscriminantKindData)
504             | ImplSource::Pointee(ImplSourcePointeeData) => Vec::new(),
505             ImplSource::TraitAlias(d) => d.nested,
506         }
507     }
508
509     pub fn borrow_nested_obligations(&self) -> &[N] {
510         match &self {
511             ImplSource::UserDefined(i) => &i.nested[..],
512             ImplSource::Param(n, _) => &n[..],
513             ImplSource::Builtin(i) => &i.nested[..],
514             ImplSource::AutoImpl(d) => &d.nested[..],
515             ImplSource::Closure(c) => &c.nested[..],
516             ImplSource::Generator(c) => &c.nested[..],
517             ImplSource::Object(d) => &d.nested[..],
518             ImplSource::FnPointer(d) => &d.nested[..],
519             ImplSource::DiscriminantKind(ImplSourceDiscriminantKindData)
520             | ImplSource::Pointee(ImplSourcePointeeData) => &[],
521             ImplSource::TraitAlias(d) => &d.nested[..],
522         }
523     }
524
525     pub fn map<M, F>(self, f: F) -> ImplSource<'tcx, M>
526     where
527         F: FnMut(N) -> M,
528     {
529         match self {
530             ImplSource::UserDefined(i) => ImplSource::UserDefined(ImplSourceUserDefinedData {
531                 impl_def_id: i.impl_def_id,
532                 substs: i.substs,
533                 nested: i.nested.into_iter().map(f).collect(),
534             }),
535             ImplSource::Param(n, ct) => ImplSource::Param(n.into_iter().map(f).collect(), ct),
536             ImplSource::Builtin(i) => ImplSource::Builtin(ImplSourceBuiltinData {
537                 nested: i.nested.into_iter().map(f).collect(),
538             }),
539             ImplSource::Object(o) => ImplSource::Object(ImplSourceObjectData {
540                 upcast_trait_ref: o.upcast_trait_ref,
541                 vtable_base: o.vtable_base,
542                 nested: o.nested.into_iter().map(f).collect(),
543             }),
544             ImplSource::AutoImpl(d) => ImplSource::AutoImpl(ImplSourceAutoImplData {
545                 trait_def_id: d.trait_def_id,
546                 nested: d.nested.into_iter().map(f).collect(),
547             }),
548             ImplSource::Closure(c) => ImplSource::Closure(ImplSourceClosureData {
549                 closure_def_id: c.closure_def_id,
550                 substs: c.substs,
551                 nested: c.nested.into_iter().map(f).collect(),
552             }),
553             ImplSource::Generator(c) => ImplSource::Generator(ImplSourceGeneratorData {
554                 generator_def_id: c.generator_def_id,
555                 substs: c.substs,
556                 nested: c.nested.into_iter().map(f).collect(),
557             }),
558             ImplSource::FnPointer(p) => ImplSource::FnPointer(ImplSourceFnPointerData {
559                 fn_ty: p.fn_ty,
560                 nested: p.nested.into_iter().map(f).collect(),
561             }),
562             ImplSource::DiscriminantKind(ImplSourceDiscriminantKindData) => {
563                 ImplSource::DiscriminantKind(ImplSourceDiscriminantKindData)
564             }
565             ImplSource::Pointee(ImplSourcePointeeData) => {
566                 ImplSource::Pointee(ImplSourcePointeeData)
567             }
568             ImplSource::TraitAlias(d) => ImplSource::TraitAlias(ImplSourceTraitAliasData {
569                 alias_def_id: d.alias_def_id,
570                 substs: d.substs,
571                 nested: d.nested.into_iter().map(f).collect(),
572             }),
573         }
574     }
575 }
576
577 /// Identifies a particular impl in the source, along with a set of
578 /// substitutions from the impl's type/lifetime parameters. The
579 /// `nested` vector corresponds to the nested obligations attached to
580 /// the impl's type parameters.
581 ///
582 /// The type parameter `N` indicates the type used for "nested
583 /// obligations" that are required by the impl. During type-check, this
584 /// is `Obligation`, as one might expect. During codegen, however, this
585 /// is `()`, because codegen only requires a shallow resolution of an
586 /// impl, and nested obligations are satisfied later.
587 #[derive(Clone, PartialEq, Eq, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
588 pub struct ImplSourceUserDefinedData<'tcx, N> {
589     pub impl_def_id: DefId,
590     pub substs: SubstsRef<'tcx>,
591     pub nested: Vec<N>,
592 }
593
594 #[derive(Clone, PartialEq, Eq, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
595 pub struct ImplSourceGeneratorData<'tcx, N> {
596     pub generator_def_id: DefId,
597     pub substs: SubstsRef<'tcx>,
598     /// Nested obligations. This can be non-empty if the generator
599     /// signature contains associated types.
600     pub nested: Vec<N>,
601 }
602
603 #[derive(Clone, PartialEq, Eq, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
604 pub struct ImplSourceClosureData<'tcx, N> {
605     pub closure_def_id: DefId,
606     pub substs: SubstsRef<'tcx>,
607     /// Nested obligations. This can be non-empty if the closure
608     /// signature contains associated types.
609     pub nested: Vec<N>,
610 }
611
612 #[derive(Clone, PartialEq, Eq, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
613 pub struct ImplSourceAutoImplData<N> {
614     pub trait_def_id: DefId,
615     pub nested: Vec<N>,
616 }
617
618 #[derive(Clone, PartialEq, Eq, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
619 pub struct ImplSourceBuiltinData<N> {
620     pub nested: Vec<N>,
621 }
622
623 #[derive(PartialEq, Eq, Clone, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
624 pub struct ImplSourceObjectData<'tcx, N> {
625     /// `Foo` upcast to the obligation trait. This will be some supertrait of `Foo`.
626     pub upcast_trait_ref: ty::PolyTraitRef<'tcx>,
627
628     /// The vtable is formed by concatenating together the method lists of
629     /// the base object trait and all supertraits; this is the start of
630     /// `upcast_trait_ref`'s methods in that vtable.
631     pub vtable_base: usize,
632
633     pub nested: Vec<N>,
634 }
635
636 #[derive(Clone, PartialEq, Eq, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
637 pub struct ImplSourceFnPointerData<'tcx, N> {
638     pub fn_ty: Ty<'tcx>,
639     pub nested: Vec<N>,
640 }
641
642 // FIXME(@lcnr): This should be  refactored and merged with other builtin vtables.
643 #[derive(Clone, Debug, PartialEq, Eq, TyEncodable, TyDecodable, HashStable)]
644 pub struct ImplSourceDiscriminantKindData;
645
646 #[derive(Clone, Debug, PartialEq, Eq, TyEncodable, TyDecodable, HashStable)]
647 pub struct ImplSourcePointeeData;
648
649 #[derive(Clone, PartialEq, Eq, TyEncodable, TyDecodable, HashStable, TypeFoldable, Lift)]
650 pub struct ImplSourceTraitAliasData<'tcx, N> {
651     pub alias_def_id: DefId,
652     pub substs: SubstsRef<'tcx>,
653     pub nested: Vec<N>,
654 }
655
656 #[derive(Clone, Debug, PartialEq, Eq, Hash, HashStable)]
657 pub enum ObjectSafetyViolation {
658     /// `Self: Sized` declared on the trait.
659     SizedSelf(SmallVec<[Span; 1]>),
660
661     /// Supertrait reference references `Self` an in illegal location
662     /// (e.g., `trait Foo : Bar<Self>`).
663     SupertraitSelf(SmallVec<[Span; 1]>),
664
665     /// Method has something illegal.
666     Method(Symbol, MethodViolationCode, Span),
667
668     /// Associated const.
669     AssocConst(Symbol, Span),
670 }
671
672 impl ObjectSafetyViolation {
673     pub fn error_msg(&self) -> Cow<'static, str> {
674         match *self {
675             ObjectSafetyViolation::SizedSelf(_) => "it requires `Self: Sized`".into(),
676             ObjectSafetyViolation::SupertraitSelf(ref spans) => {
677                 if spans.iter().any(|sp| *sp != DUMMY_SP) {
678                     "it uses `Self` as a type parameter".into()
679                 } else {
680                     "it cannot use `Self` as a type parameter in a supertrait or `where`-clause"
681                         .into()
682                 }
683             }
684             ObjectSafetyViolation::Method(name, MethodViolationCode::StaticMethod(_, _, _), _) => {
685                 format!("associated function `{}` has no `self` parameter", name).into()
686             }
687             ObjectSafetyViolation::Method(
688                 name,
689                 MethodViolationCode::ReferencesSelfInput(_),
690                 DUMMY_SP,
691             ) => format!("method `{}` references the `Self` type in its parameters", name).into(),
692             ObjectSafetyViolation::Method(name, MethodViolationCode::ReferencesSelfInput(_), _) => {
693                 format!("method `{}` references the `Self` type in this parameter", name).into()
694             }
695             ObjectSafetyViolation::Method(name, MethodViolationCode::ReferencesSelfOutput, _) => {
696                 format!("method `{}` references the `Self` type in its return type", name).into()
697             }
698             ObjectSafetyViolation::Method(
699                 name,
700                 MethodViolationCode::WhereClauseReferencesSelf,
701                 _,
702             ) => {
703                 format!("method `{}` references the `Self` type in its `where` clause", name).into()
704             }
705             ObjectSafetyViolation::Method(name, MethodViolationCode::Generic, _) => {
706                 format!("method `{}` has generic type parameters", name).into()
707             }
708             ObjectSafetyViolation::Method(name, MethodViolationCode::UndispatchableReceiver, _) => {
709                 format!("method `{}`'s `self` parameter cannot be dispatched on", name).into()
710             }
711             ObjectSafetyViolation::AssocConst(name, DUMMY_SP) => {
712                 format!("it contains associated `const` `{}`", name).into()
713             }
714             ObjectSafetyViolation::AssocConst(..) => "it contains this associated `const`".into(),
715         }
716     }
717
718     pub fn solution(&self, err: &mut DiagnosticBuilder<'_>) {
719         match *self {
720             ObjectSafetyViolation::SizedSelf(_) | ObjectSafetyViolation::SupertraitSelf(_) => {}
721             ObjectSafetyViolation::Method(
722                 name,
723                 MethodViolationCode::StaticMethod(sugg, self_span, has_args),
724                 _,
725             ) => {
726                 err.span_suggestion(
727                     self_span,
728                     &format!(
729                         "consider turning `{}` into a method by giving it a `&self` argument",
730                         name
731                     ),
732                     format!("&self{}", if has_args { ", " } else { "" }),
733                     Applicability::MaybeIncorrect,
734                 );
735                 match sugg {
736                     Some((sugg, span)) => {
737                         err.span_suggestion(
738                             span,
739                             &format!(
740                                 "alternatively, consider constraining `{}` so it does not apply to \
741                                  trait objects",
742                                 name
743                             ),
744                             sugg.to_string(),
745                             Applicability::MaybeIncorrect,
746                         );
747                     }
748                     None => {
749                         err.help(&format!(
750                             "consider turning `{}` into a method by giving it a `&self` \
751                              argument or constraining it so it does not apply to trait objects",
752                             name
753                         ));
754                     }
755                 }
756             }
757             ObjectSafetyViolation::Method(
758                 name,
759                 MethodViolationCode::UndispatchableReceiver,
760                 span,
761             ) => {
762                 err.span_suggestion(
763                     span,
764                     &format!(
765                         "consider changing method `{}`'s `self` parameter to be `&self`",
766                         name
767                     ),
768                     "&Self".to_string(),
769                     Applicability::MachineApplicable,
770                 );
771             }
772             ObjectSafetyViolation::AssocConst(name, _)
773             | ObjectSafetyViolation::Method(name, ..) => {
774                 err.help(&format!("consider moving `{}` to another trait", name));
775             }
776         }
777     }
778
779     pub fn spans(&self) -> SmallVec<[Span; 1]> {
780         // When `span` comes from a separate crate, it'll be `DUMMY_SP`. Treat it as `None` so
781         // diagnostics use a `note` instead of a `span_label`.
782         match self {
783             ObjectSafetyViolation::SupertraitSelf(spans)
784             | ObjectSafetyViolation::SizedSelf(spans) => spans.clone(),
785             ObjectSafetyViolation::AssocConst(_, span)
786             | ObjectSafetyViolation::Method(_, _, span)
787                 if *span != DUMMY_SP =>
788             {
789                 smallvec![*span]
790             }
791             _ => smallvec![],
792         }
793     }
794 }
795
796 /// Reasons a method might not be object-safe.
797 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, HashStable)]
798 pub enum MethodViolationCode {
799     /// e.g., `fn foo()`
800     StaticMethod(Option<(&'static str, Span)>, Span, bool /* has args */),
801
802     /// e.g., `fn foo(&self, x: Self)`
803     ReferencesSelfInput(usize),
804
805     /// e.g., `fn foo(&self) -> Self`
806     ReferencesSelfOutput,
807
808     /// e.g., `fn foo(&self) where Self: Clone`
809     WhereClauseReferencesSelf,
810
811     /// e.g., `fn foo<A>()`
812     Generic,
813
814     /// the method's receiver (`self` argument) can't be dispatched on
815     UndispatchableReceiver,
816 }