]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/check/mod.rs
When possible, suggest fn call
[rust.git] / src / librustc_typeck / check / mod.rs
1 // ignore-tidy-filelength
2
3 /*!
4
5 # typeck: check phase
6
7 Within the check phase of type check, we check each item one at a time
8 (bodies of function expressions are checked as part of the containing
9 function). Inference is used to supply types wherever they are unknown.
10
11 By far the most complex case is checking the body of a function. This
12 can be broken down into several distinct phases:
13
14 - gather: creates type variables to represent the type of each local
15   variable and pattern binding.
16
17 - main: the main pass does the lion's share of the work: it
18   determines the types of all expressions, resolves
19   methods, checks for most invalid conditions, and so forth.  In
20   some cases, where a type is unknown, it may create a type or region
21   variable and use that as the type of an expression.
22
23   In the process of checking, various constraints will be placed on
24   these type variables through the subtyping relationships requested
25   through the `demand` module.  The `infer` module is in charge
26   of resolving those constraints.
27
28 - regionck: after main is complete, the regionck pass goes over all
29   types looking for regions and making sure that they did not escape
30   into places they are not in scope.  This may also influence the
31   final assignments of the various region variables if there is some
32   flexibility.
33
34 - vtable: find and records the impls to use for each trait bound that
35   appears on a type parameter.
36
37 - writeback: writes the final types within a function body, replacing
38   type variables with their final inferred types.  These final types
39   are written into the `tcx.node_types` table, which should *never* contain
40   any reference to a type variable.
41
42 ## Intermediate types
43
44 While type checking a function, the intermediate types for the
45 expressions, blocks, and so forth contained within the function are
46 stored in `fcx.node_types` and `fcx.node_substs`.  These types
47 may contain unresolved type variables.  After type checking is
48 complete, the functions in the writeback module are used to take the
49 types from this table, resolve them, and then write them into their
50 permanent home in the type context `tcx`.
51
52 This means that during inferencing you should use `fcx.write_ty()`
53 and `fcx.expr_ty()` / `fcx.node_ty()` to write/obtain the types of
54 nodes within the function.
55
56 The types of top-level items, which never contain unbound type
57 variables, are stored directly into the `tcx` tables.
58
59 N.B., a type variable is not the same thing as a type parameter.  A
60 type variable is rather an "instance" of a type parameter: that is,
61 given a generic function `fn foo<T>(t: T)`: while checking the
62 function `foo`, the type `ty_param(0)` refers to the type `T`, which
63 is treated in abstract.  When `foo()` is called, however, `T` will be
64 substituted for a fresh type variable `N`.  This variable will
65 eventually be resolved to some concrete type (which might itself be
66 type parameter).
67
68 */
69
70 mod autoderef;
71 pub mod dropck;
72 pub mod _match;
73 mod pat;
74 pub mod writeback;
75 mod regionck;
76 pub mod coercion;
77 pub mod demand;
78 mod expr;
79 pub mod method;
80 mod upvar;
81 mod wfcheck;
82 mod cast;
83 mod closure;
84 mod callee;
85 mod compare_method;
86 mod generator_interior;
87 pub mod intrinsic;
88 mod op;
89
90 use crate::astconv::{AstConv, PathSeg};
91 use errors::{Applicability, DiagnosticBuilder, DiagnosticId};
92 use rustc::hir::{self, ExprKind, GenericArg, ItemKind, Node, PatKind, QPath};
93 use rustc::hir::def::{CtorOf, Res, DefKind};
94 use rustc::hir::def_id::{CrateNum, DefId, LOCAL_CRATE};
95 use rustc::hir::intravisit::{self, Visitor, NestedVisitorMap};
96 use rustc::hir::itemlikevisit::ItemLikeVisitor;
97 use rustc::hir::ptr::P;
98 use crate::middle::lang_items;
99 use crate::namespace::Namespace;
100 use rustc::infer::{self, InferCtxt, InferOk, InferResult};
101 use rustc::infer::canonical::{Canonical, OriginalQueryValues, QueryResponse};
102 use rustc_data_structures::indexed_vec::Idx;
103 use rustc_target::spec::abi::Abi;
104 use rustc::infer::opaque_types::OpaqueTypeDecl;
105 use rustc::infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
106 use rustc::infer::unify_key::{ConstVariableOrigin, ConstVariableOriginKind};
107 use rustc::middle::region;
108 use rustc::mir::interpret::{ConstValue, GlobalId};
109 use rustc::traits::{self, ObligationCause, ObligationCauseCode, TraitEngine};
110 use rustc::ty::{
111     self, AdtKind, CanonicalUserType, Ty, TyCtxt, Const, GenericParamDefKind,
112     ToPolyTraitRef, ToPredicate, RegionKind, UserType
113 };
114 use rustc::ty::adjustment::{
115     Adjust, Adjustment, AllowTwoPhase, AutoBorrow, AutoBorrowMutability, PointerCast
116 };
117 use rustc::ty::fold::TypeFoldable;
118 use rustc::ty::query::Providers;
119 use rustc::ty::subst::{UnpackedKind, Subst, InternalSubsts, SubstsRef, UserSelfTy, UserSubsts};
120 use rustc::ty::util::{Representability, IntTypeExt, Discr};
121 use rustc::ty::layout::VariantIdx;
122 use syntax_pos::{self, BytePos, Span, MultiSpan};
123 use syntax_pos::hygiene::DesugaringKind;
124 use syntax::ast;
125 use syntax::attr;
126 use syntax::feature_gate::{GateIssue, emit_feature_err};
127 use syntax::source_map::{DUMMY_SP, original_sp};
128 use syntax::symbol::{kw, sym};
129
130 use std::cell::{Cell, RefCell, Ref, RefMut};
131 use std::collections::hash_map::Entry;
132 use std::cmp;
133 use std::iter;
134 use std::mem::replace;
135 use std::ops::{self, Deref};
136 use std::slice;
137
138 use crate::require_c_abi_if_c_variadic;
139 use crate::session::Session;
140 use crate::session::config::EntryFnType;
141 use crate::TypeAndSubsts;
142 use crate::lint;
143 use crate::util::captures::Captures;
144 use crate::util::common::{ErrorReported, indenter};
145 use crate::util::nodemap::{DefIdMap, DefIdSet, FxHashSet, HirIdMap};
146
147 pub use self::Expectation::*;
148 use self::autoderef::Autoderef;
149 use self::callee::DeferredCallResolution;
150 use self::coercion::{CoerceMany, DynamicCoerceMany};
151 pub use self::compare_method::{compare_impl_method, compare_const_impl};
152 use self::method::{MethodCallee, SelfSource};
153 use self::TupleArgumentsFlag::*;
154
155 /// The type of a local binding, including the revealed type for anon types.
156 #[derive(Copy, Clone)]
157 pub struct LocalTy<'tcx> {
158     decl_ty: Ty<'tcx>,
159     revealed_ty: Ty<'tcx>
160 }
161
162 /// A wrapper for `InferCtxt`'s `in_progress_tables` field.
163 #[derive(Copy, Clone)]
164 struct MaybeInProgressTables<'a, 'tcx> {
165     maybe_tables: Option<&'a RefCell<ty::TypeckTables<'tcx>>>,
166 }
167
168 impl<'a, 'tcx> MaybeInProgressTables<'a, 'tcx> {
169     fn borrow(self) -> Ref<'a, ty::TypeckTables<'tcx>> {
170         match self.maybe_tables {
171             Some(tables) => tables.borrow(),
172             None => {
173                 bug!("MaybeInProgressTables: inh/fcx.tables.borrow() with no tables")
174             }
175         }
176     }
177
178     fn borrow_mut(self) -> RefMut<'a, ty::TypeckTables<'tcx>> {
179         match self.maybe_tables {
180             Some(tables) => tables.borrow_mut(),
181             None => {
182                 bug!("MaybeInProgressTables: inh/fcx.tables.borrow_mut() with no tables")
183             }
184         }
185     }
186 }
187
188 /// Closures defined within the function. For example:
189 ///
190 ///     fn foo() {
191 ///         bar(move|| { ... })
192 ///     }
193 ///
194 /// Here, the function `foo()` and the closure passed to
195 /// `bar()` will each have their own `FnCtxt`, but they will
196 /// share the inherited fields.
197 pub struct Inherited<'a, 'tcx> {
198     infcx: InferCtxt<'a, 'tcx>,
199
200     tables: MaybeInProgressTables<'a, 'tcx>,
201
202     locals: RefCell<HirIdMap<LocalTy<'tcx>>>,
203
204     fulfillment_cx: RefCell<Box<dyn TraitEngine<'tcx>>>,
205
206     // Some additional `Sized` obligations badly affect type inference.
207     // These obligations are added in a later stage of typeck.
208     deferred_sized_obligations: RefCell<Vec<(Ty<'tcx>, Span, traits::ObligationCauseCode<'tcx>)>>,
209
210     // When we process a call like `c()` where `c` is a closure type,
211     // we may not have decided yet whether `c` is a `Fn`, `FnMut`, or
212     // `FnOnce` closure. In that case, we defer full resolution of the
213     // call until upvar inference can kick in and make the
214     // decision. We keep these deferred resolutions grouped by the
215     // def-id of the closure, so that once we decide, we can easily go
216     // back and process them.
217     deferred_call_resolutions: RefCell<DefIdMap<Vec<DeferredCallResolution<'tcx>>>>,
218
219     deferred_cast_checks: RefCell<Vec<cast::CastCheck<'tcx>>>,
220
221     deferred_generator_interiors: RefCell<Vec<(hir::BodyId, Ty<'tcx>, hir::GeneratorKind)>>,
222
223     // Opaque types found in explicit return types and their
224     // associated fresh inference variable. Writeback resolves these
225     // variables to get the concrete type, which can be used to
226     // 'de-opaque' OpaqueTypeDecl, after typeck is done with all functions.
227     opaque_types: RefCell<DefIdMap<OpaqueTypeDecl<'tcx>>>,
228
229     /// Each type parameter has an implicit region bound that
230     /// indicates it must outlive at least the function body (the user
231     /// may specify stronger requirements). This field indicates the
232     /// region of the callee. If it is `None`, then the parameter
233     /// environment is for an item or something where the "callee" is
234     /// not clear.
235     implicit_region_bound: Option<ty::Region<'tcx>>,
236
237     body_id: Option<hir::BodyId>,
238 }
239
240 impl<'a, 'tcx> Deref for Inherited<'a, 'tcx> {
241     type Target = InferCtxt<'a, 'tcx>;
242     fn deref(&self) -> &Self::Target {
243         &self.infcx
244     }
245 }
246
247 /// When type-checking an expression, we propagate downward
248 /// whatever type hint we are able in the form of an `Expectation`.
249 #[derive(Copy, Clone, Debug)]
250 pub enum Expectation<'tcx> {
251     /// We know nothing about what type this expression should have.
252     NoExpectation,
253
254     /// This expression should have the type given (or some subtype).
255     ExpectHasType(Ty<'tcx>),
256
257     /// This expression will be cast to the `Ty`.
258     ExpectCastableToType(Ty<'tcx>),
259
260     /// This rvalue expression will be wrapped in `&` or `Box` and coerced
261     /// to `&Ty` or `Box<Ty>`, respectively. `Ty` is `[A]` or `Trait`.
262     ExpectRvalueLikeUnsized(Ty<'tcx>),
263 }
264
265 impl<'a, 'tcx> Expectation<'tcx> {
266     // Disregard "castable to" expectations because they
267     // can lead us astray. Consider for example `if cond
268     // {22} else {c} as u8` -- if we propagate the
269     // "castable to u8" constraint to 22, it will pick the
270     // type 22u8, which is overly constrained (c might not
271     // be a u8). In effect, the problem is that the
272     // "castable to" expectation is not the tightest thing
273     // we can say, so we want to drop it in this case.
274     // The tightest thing we can say is "must unify with
275     // else branch". Note that in the case of a "has type"
276     // constraint, this limitation does not hold.
277
278     // If the expected type is just a type variable, then don't use
279     // an expected type. Otherwise, we might write parts of the type
280     // when checking the 'then' block which are incompatible with the
281     // 'else' branch.
282     fn adjust_for_branches(&self, fcx: &FnCtxt<'a, 'tcx>) -> Expectation<'tcx> {
283         match *self {
284             ExpectHasType(ety) => {
285                 let ety = fcx.shallow_resolve(ety);
286                 if !ety.is_ty_var() {
287                     ExpectHasType(ety)
288                 } else {
289                     NoExpectation
290                 }
291             }
292             ExpectRvalueLikeUnsized(ety) => {
293                 ExpectRvalueLikeUnsized(ety)
294             }
295             _ => NoExpectation
296         }
297     }
298
299     /// Provides an expectation for an rvalue expression given an *optional*
300     /// hint, which is not required for type safety (the resulting type might
301     /// be checked higher up, as is the case with `&expr` and `box expr`), but
302     /// is useful in determining the concrete type.
303     ///
304     /// The primary use case is where the expected type is a fat pointer,
305     /// like `&[isize]`. For example, consider the following statement:
306     ///
307     ///    let x: &[isize] = &[1, 2, 3];
308     ///
309     /// In this case, the expected type for the `&[1, 2, 3]` expression is
310     /// `&[isize]`. If however we were to say that `[1, 2, 3]` has the
311     /// expectation `ExpectHasType([isize])`, that would be too strong --
312     /// `[1, 2, 3]` does not have the type `[isize]` but rather `[isize; 3]`.
313     /// It is only the `&[1, 2, 3]` expression as a whole that can be coerced
314     /// to the type `&[isize]`. Therefore, we propagate this more limited hint,
315     /// which still is useful, because it informs integer literals and the like.
316     /// See the test case `test/ui/coerce-expect-unsized.rs` and #20169
317     /// for examples of where this comes up,.
318     fn rvalue_hint(fcx: &FnCtxt<'a, 'tcx>, ty: Ty<'tcx>) -> Expectation<'tcx> {
319         match fcx.tcx.struct_tail_without_normalization(ty).sty {
320             ty::Slice(_) | ty::Str | ty::Dynamic(..) => {
321                 ExpectRvalueLikeUnsized(ty)
322             }
323             _ => ExpectHasType(ty)
324         }
325     }
326
327     // Resolves `expected` by a single level if it is a variable. If
328     // there is no expected type or resolution is not possible (e.g.,
329     // no constraints yet present), just returns `None`.
330     fn resolve(self, fcx: &FnCtxt<'a, 'tcx>) -> Expectation<'tcx> {
331         match self {
332             NoExpectation => NoExpectation,
333             ExpectCastableToType(t) => {
334                 ExpectCastableToType(fcx.resolve_vars_if_possible(&t))
335             }
336             ExpectHasType(t) => {
337                 ExpectHasType(fcx.resolve_vars_if_possible(&t))
338             }
339             ExpectRvalueLikeUnsized(t) => {
340                 ExpectRvalueLikeUnsized(fcx.resolve_vars_if_possible(&t))
341             }
342         }
343     }
344
345     fn to_option(self, fcx: &FnCtxt<'a, 'tcx>) -> Option<Ty<'tcx>> {
346         match self.resolve(fcx) {
347             NoExpectation => None,
348             ExpectCastableToType(ty) |
349             ExpectHasType(ty) |
350             ExpectRvalueLikeUnsized(ty) => Some(ty),
351         }
352     }
353
354     /// It sometimes happens that we want to turn an expectation into
355     /// a **hard constraint** (i.e., something that must be satisfied
356     /// for the program to type-check). `only_has_type` will return
357     /// such a constraint, if it exists.
358     fn only_has_type(self, fcx: &FnCtxt<'a, 'tcx>) -> Option<Ty<'tcx>> {
359         match self.resolve(fcx) {
360             ExpectHasType(ty) => Some(ty),
361             NoExpectation | ExpectCastableToType(_) | ExpectRvalueLikeUnsized(_) => None,
362         }
363     }
364
365     /// Like `only_has_type`, but instead of returning `None` if no
366     /// hard constraint exists, creates a fresh type variable.
367     fn coercion_target_type(self, fcx: &FnCtxt<'a, 'tcx>, span: Span) -> Ty<'tcx> {
368         self.only_has_type(fcx)
369             .unwrap_or_else(|| {
370                 fcx.next_ty_var(TypeVariableOrigin {
371                     kind: TypeVariableOriginKind::MiscVariable,
372                     span,
373                 })
374             })
375     }
376 }
377
378 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
379 pub enum Needs {
380     MutPlace,
381     None
382 }
383
384 impl Needs {
385     fn maybe_mut_place(m: hir::Mutability) -> Self {
386         match m {
387             hir::MutMutable => Needs::MutPlace,
388             hir::MutImmutable => Needs::None,
389         }
390     }
391 }
392
393 #[derive(Copy, Clone)]
394 pub struct UnsafetyState {
395     pub def: hir::HirId,
396     pub unsafety: hir::Unsafety,
397     pub unsafe_push_count: u32,
398     from_fn: bool
399 }
400
401 impl UnsafetyState {
402     pub fn function(unsafety: hir::Unsafety, def: hir::HirId) -> UnsafetyState {
403         UnsafetyState { def, unsafety, unsafe_push_count: 0, from_fn: true }
404     }
405
406     pub fn recurse(&mut self, blk: &hir::Block) -> UnsafetyState {
407         match self.unsafety {
408             // If this unsafe, then if the outer function was already marked as
409             // unsafe we shouldn't attribute the unsafe'ness to the block. This
410             // way the block can be warned about instead of ignoring this
411             // extraneous block (functions are never warned about).
412             hir::Unsafety::Unsafe if self.from_fn => *self,
413
414             unsafety => {
415                 let (unsafety, def, count) = match blk.rules {
416                     hir::PushUnsafeBlock(..) =>
417                         (unsafety, blk.hir_id, self.unsafe_push_count.checked_add(1).unwrap()),
418                     hir::PopUnsafeBlock(..) =>
419                         (unsafety, blk.hir_id, self.unsafe_push_count.checked_sub(1).unwrap()),
420                     hir::UnsafeBlock(..) =>
421                         (hir::Unsafety::Unsafe, blk.hir_id, self.unsafe_push_count),
422                     hir::DefaultBlock =>
423                         (unsafety, self.def, self.unsafe_push_count),
424                 };
425                 UnsafetyState{ def,
426                                unsafety,
427                                unsafe_push_count: count,
428                                from_fn: false }
429             }
430         }
431     }
432 }
433
434 #[derive(Debug, Copy, Clone)]
435 pub enum PlaceOp {
436     Deref,
437     Index
438 }
439
440 /// Tracks whether executing a node may exit normally (versus
441 /// return/break/panic, which "diverge", leaving dead code in their
442 /// wake). Tracked semi-automatically (through type variables marked
443 /// as diverging), with some manual adjustments for control-flow
444 /// primitives (approximating a CFG).
445 #[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
446 pub enum Diverges {
447     /// Potentially unknown, some cases converge,
448     /// others require a CFG to determine them.
449     Maybe,
450
451     /// Definitely known to diverge and therefore
452     /// not reach the next sibling or its parent.
453     Always,
454
455     /// Same as `Always` but with a reachability
456     /// warning already emitted.
457     WarnedAlways
458 }
459
460 // Convenience impls for combinig `Diverges`.
461
462 impl ops::BitAnd for Diverges {
463     type Output = Self;
464     fn bitand(self, other: Self) -> Self {
465         cmp::min(self, other)
466     }
467 }
468
469 impl ops::BitOr for Diverges {
470     type Output = Self;
471     fn bitor(self, other: Self) -> Self {
472         cmp::max(self, other)
473     }
474 }
475
476 impl ops::BitAndAssign for Diverges {
477     fn bitand_assign(&mut self, other: Self) {
478         *self = *self & other;
479     }
480 }
481
482 impl ops::BitOrAssign for Diverges {
483     fn bitor_assign(&mut self, other: Self) {
484         *self = *self | other;
485     }
486 }
487
488 impl Diverges {
489     fn always(self) -> bool {
490         self >= Diverges::Always
491     }
492 }
493
494 pub struct BreakableCtxt<'tcx> {
495     may_break: bool,
496
497     // this is `null` for loops where break with a value is illegal,
498     // such as `while`, `for`, and `while let`
499     coerce: Option<DynamicCoerceMany<'tcx>>,
500 }
501
502 pub struct EnclosingBreakables<'tcx> {
503     stack: Vec<BreakableCtxt<'tcx>>,
504     by_id: HirIdMap<usize>,
505 }
506
507 impl<'tcx> EnclosingBreakables<'tcx> {
508     fn find_breakable(&mut self, target_id: hir::HirId) -> &mut BreakableCtxt<'tcx> {
509         let ix = *self.by_id.get(&target_id).unwrap_or_else(|| {
510             bug!("could not find enclosing breakable with id {}", target_id);
511         });
512         &mut self.stack[ix]
513     }
514 }
515
516 pub struct FnCtxt<'a, 'tcx> {
517     body_id: hir::HirId,
518
519     /// The parameter environment used for proving trait obligations
520     /// in this function. This can change when we descend into
521     /// closures (as they bring new things into scope), hence it is
522     /// not part of `Inherited` (as of the time of this writing,
523     /// closures do not yet change the environment, but they will
524     /// eventually).
525     param_env: ty::ParamEnv<'tcx>,
526
527     /// Number of errors that had been reported when we started
528     /// checking this function. On exit, if we find that *more* errors
529     /// have been reported, we will skip regionck and other work that
530     /// expects the types within the function to be consistent.
531     // FIXME(matthewjasper) This should not exist, and it's not correct
532     // if type checking is run in parallel.
533     err_count_on_creation: usize,
534
535     ret_coercion: Option<RefCell<DynamicCoerceMany<'tcx>>>,
536     ret_coercion_span: RefCell<Option<Span>>,
537
538     yield_ty: Option<Ty<'tcx>>,
539
540     ps: RefCell<UnsafetyState>,
541
542     /// Whether the last checked node generates a divergence (e.g.,
543     /// `return` will set this to `Always`). In general, when entering
544     /// an expression or other node in the tree, the initial value
545     /// indicates whether prior parts of the containing expression may
546     /// have diverged. It is then typically set to `Maybe` (and the
547     /// old value remembered) for processing the subparts of the
548     /// current expression. As each subpart is processed, they may set
549     /// the flag to `Always`, etc. Finally, at the end, we take the
550     /// result and "union" it with the original value, so that when we
551     /// return the flag indicates if any subpart of the parent
552     /// expression (up to and including this part) has diverged. So,
553     /// if you read it after evaluating a subexpression `X`, the value
554     /// you get indicates whether any subexpression that was
555     /// evaluating up to and including `X` diverged.
556     ///
557     /// We currently use this flag only for diagnostic purposes:
558     ///
559     /// - To warn about unreachable code: if, after processing a
560     ///   sub-expression but before we have applied the effects of the
561     ///   current node, we see that the flag is set to `Always`, we
562     ///   can issue a warning. This corresponds to something like
563     ///   `foo(return)`; we warn on the `foo()` expression. (We then
564     ///   update the flag to `WarnedAlways` to suppress duplicate
565     ///   reports.) Similarly, if we traverse to a fresh statement (or
566     ///   tail expression) from a `Always` setting, we will issue a
567     ///   warning. This corresponds to something like `{return;
568     ///   foo();}` or `{return; 22}`, where we would warn on the
569     ///   `foo()` or `22`.
570     ///
571     /// An expression represents dead code if, after checking it,
572     /// the diverges flag is set to something other than `Maybe`.
573     diverges: Cell<Diverges>,
574
575     /// Whether any child nodes have any type errors.
576     has_errors: Cell<bool>,
577
578     enclosing_breakables: RefCell<EnclosingBreakables<'tcx>>,
579
580     inh: &'a Inherited<'a, 'tcx>,
581 }
582
583 impl<'a, 'tcx> Deref for FnCtxt<'a, 'tcx> {
584     type Target = Inherited<'a, 'tcx>;
585     fn deref(&self) -> &Self::Target {
586         &self.inh
587     }
588 }
589
590 /// Helper type of a temporary returned by `Inherited::build(...)`.
591 /// Necessary because we can't write the following bound:
592 /// `F: for<'b, 'tcx> where 'tcx FnOnce(Inherited<'b, 'tcx>)`.
593 pub struct InheritedBuilder<'tcx> {
594     infcx: infer::InferCtxtBuilder<'tcx>,
595     def_id: DefId,
596 }
597
598 impl Inherited<'_, 'tcx> {
599     pub fn build(tcx: TyCtxt<'tcx>, def_id: DefId) -> InheritedBuilder<'tcx> {
600         let hir_id_root = if def_id.is_local() {
601             let hir_id = tcx.hir().as_local_hir_id(def_id).unwrap();
602             DefId::local(hir_id.owner)
603         } else {
604             def_id
605         };
606
607         InheritedBuilder {
608             infcx: tcx.infer_ctxt().with_fresh_in_progress_tables(hir_id_root),
609             def_id,
610         }
611     }
612 }
613
614 impl<'tcx> InheritedBuilder<'tcx> {
615     fn enter<F, R>(&mut self, f: F) -> R
616     where
617         F: for<'a> FnOnce(Inherited<'a, 'tcx>) -> R,
618     {
619         let def_id = self.def_id;
620         self.infcx.enter(|infcx| f(Inherited::new(infcx, def_id)))
621     }
622 }
623
624 impl Inherited<'a, 'tcx> {
625     fn new(infcx: InferCtxt<'a, 'tcx>, def_id: DefId) -> Self {
626         let tcx = infcx.tcx;
627         let item_id = tcx.hir().as_local_hir_id(def_id);
628         let body_id = item_id.and_then(|id| tcx.hir().maybe_body_owned_by(id));
629         let implicit_region_bound = body_id.map(|body_id| {
630             let body = tcx.hir().body(body_id);
631             tcx.mk_region(ty::ReScope(region::Scope {
632                 id: body.value.hir_id.local_id,
633                 data: region::ScopeData::CallSite
634             }))
635         });
636
637         Inherited {
638             tables: MaybeInProgressTables {
639                 maybe_tables: infcx.in_progress_tables,
640             },
641             infcx,
642             fulfillment_cx: RefCell::new(TraitEngine::new(tcx)),
643             locals: RefCell::new(Default::default()),
644             deferred_sized_obligations: RefCell::new(Vec::new()),
645             deferred_call_resolutions: RefCell::new(Default::default()),
646             deferred_cast_checks: RefCell::new(Vec::new()),
647             deferred_generator_interiors: RefCell::new(Vec::new()),
648             opaque_types: RefCell::new(Default::default()),
649             implicit_region_bound,
650             body_id,
651         }
652     }
653
654     fn register_predicate(&self, obligation: traits::PredicateObligation<'tcx>) {
655         debug!("register_predicate({:?})", obligation);
656         if obligation.has_escaping_bound_vars() {
657             span_bug!(obligation.cause.span, "escaping bound vars in predicate {:?}",
658                       obligation);
659         }
660         self.fulfillment_cx
661             .borrow_mut()
662             .register_predicate_obligation(self, obligation);
663     }
664
665     fn register_predicates<I>(&self, obligations: I)
666         where I: IntoIterator<Item = traits::PredicateObligation<'tcx>>
667     {
668         for obligation in obligations {
669             self.register_predicate(obligation);
670         }
671     }
672
673     fn register_infer_ok_obligations<T>(&self, infer_ok: InferOk<'tcx, T>) -> T {
674         self.register_predicates(infer_ok.obligations);
675         infer_ok.value
676     }
677
678     fn normalize_associated_types_in<T>(&self,
679                                         span: Span,
680                                         body_id: hir::HirId,
681                                         param_env: ty::ParamEnv<'tcx>,
682                                         value: &T) -> T
683         where T : TypeFoldable<'tcx>
684     {
685         let ok = self.partially_normalize_associated_types_in(span, body_id, param_env, value);
686         self.register_infer_ok_obligations(ok)
687     }
688 }
689
690 struct CheckItemTypesVisitor<'tcx> {
691     tcx: TyCtxt<'tcx>,
692 }
693
694 impl ItemLikeVisitor<'tcx> for CheckItemTypesVisitor<'tcx> {
695     fn visit_item(&mut self, i: &'tcx hir::Item) {
696         check_item_type(self.tcx, i);
697     }
698     fn visit_trait_item(&mut self, _: &'tcx hir::TraitItem) { }
699     fn visit_impl_item(&mut self, _: &'tcx hir::ImplItem) { }
700 }
701
702 pub fn check_wf_new(tcx: TyCtxt<'_>) {
703     let mut visit = wfcheck::CheckTypeWellFormedVisitor::new(tcx);
704     tcx.hir().krate().par_visit_all_item_likes(&mut visit);
705 }
706
707 fn check_mod_item_types(tcx: TyCtxt<'_>, module_def_id: DefId) {
708     tcx.hir().visit_item_likes_in_module(module_def_id, &mut CheckItemTypesVisitor { tcx });
709 }
710
711 fn typeck_item_bodies(tcx: TyCtxt<'_>, crate_num: CrateNum) {
712     debug_assert!(crate_num == LOCAL_CRATE);
713     tcx.par_body_owners(|body_owner_def_id| {
714         tcx.ensure().typeck_tables_of(body_owner_def_id);
715     });
716 }
717
718 fn check_item_well_formed(tcx: TyCtxt<'_>, def_id: DefId) {
719     wfcheck::check_item_well_formed(tcx, def_id);
720 }
721
722 fn check_trait_item_well_formed(tcx: TyCtxt<'_>, def_id: DefId) {
723     wfcheck::check_trait_item(tcx, def_id);
724 }
725
726 fn check_impl_item_well_formed(tcx: TyCtxt<'_>, def_id: DefId) {
727     wfcheck::check_impl_item(tcx, def_id);
728 }
729
730 pub fn provide(providers: &mut Providers<'_>) {
731     method::provide(providers);
732     *providers = Providers {
733         typeck_item_bodies,
734         typeck_tables_of,
735         has_typeck_tables,
736         adt_destructor,
737         used_trait_imports,
738         check_item_well_formed,
739         check_trait_item_well_formed,
740         check_impl_item_well_formed,
741         check_mod_item_types,
742         ..*providers
743     };
744 }
745
746 fn adt_destructor(tcx: TyCtxt<'_>, def_id: DefId) -> Option<ty::Destructor> {
747     tcx.calculate_dtor(def_id, &mut dropck::check_drop_impl)
748 }
749
750 /// If this `DefId` is a "primary tables entry", returns
751 /// `Some((body_id, header, decl))` with information about
752 /// it's body-id, fn-header and fn-decl (if any). Otherwise,
753 /// returns `None`.
754 ///
755 /// If this function returns `Some`, then `typeck_tables(def_id)` will
756 /// succeed; if it returns `None`, then `typeck_tables(def_id)` may or
757 /// may not succeed. In some cases where this function returns `None`
758 /// (notably closures), `typeck_tables(def_id)` would wind up
759 /// redirecting to the owning function.
760 fn primary_body_of(
761     tcx: TyCtxt<'_>,
762     id: hir::HirId,
763 ) -> Option<(hir::BodyId, Option<&hir::Ty>, Option<&hir::FnHeader>, Option<&hir::FnDecl>)> {
764     match tcx.hir().get(id) {
765         Node::Item(item) => {
766             match item.node {
767                 hir::ItemKind::Const(ref ty, body) |
768                 hir::ItemKind::Static(ref ty, _, body) =>
769                     Some((body, Some(ty), None, None)),
770                 hir::ItemKind::Fn(ref decl, ref header, .., body) =>
771                     Some((body, None, Some(header), Some(decl))),
772                 _ =>
773                     None,
774             }
775         }
776         Node::TraitItem(item) => {
777             match item.node {
778                 hir::TraitItemKind::Const(ref ty, Some(body)) =>
779                     Some((body, Some(ty), None, None)),
780                 hir::TraitItemKind::Method(ref sig, hir::TraitMethod::Provided(body)) =>
781                     Some((body, None, Some(&sig.header), Some(&sig.decl))),
782                 _ =>
783                     None,
784             }
785         }
786         Node::ImplItem(item) => {
787             match item.node {
788                 hir::ImplItemKind::Const(ref ty, body) =>
789                     Some((body, Some(ty), None, None)),
790                 hir::ImplItemKind::Method(ref sig, body) =>
791                     Some((body, None, Some(&sig.header), Some(&sig.decl))),
792                 _ =>
793                     None,
794             }
795         }
796         Node::AnonConst(constant) => Some((constant.body, None, None, None)),
797         _ => None,
798     }
799 }
800
801 fn has_typeck_tables(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
802     // Closures' tables come from their outermost function,
803     // as they are part of the same "inference environment".
804     let outer_def_id = tcx.closure_base_def_id(def_id);
805     if outer_def_id != def_id {
806         return tcx.has_typeck_tables(outer_def_id);
807     }
808
809     let id = tcx.hir().as_local_hir_id(def_id).unwrap();
810     primary_body_of(tcx, id).is_some()
811 }
812
813 fn used_trait_imports(tcx: TyCtxt<'_>, def_id: DefId) -> &DefIdSet {
814     &*tcx.typeck_tables_of(def_id).used_trait_imports
815 }
816
817 fn typeck_tables_of(tcx: TyCtxt<'_>, def_id: DefId) -> &ty::TypeckTables<'_> {
818     // Closures' tables come from their outermost function,
819     // as they are part of the same "inference environment".
820     let outer_def_id = tcx.closure_base_def_id(def_id);
821     if outer_def_id != def_id {
822         return tcx.typeck_tables_of(outer_def_id);
823     }
824
825     let id = tcx.hir().as_local_hir_id(def_id).unwrap();
826     let span = tcx.hir().span(id);
827
828     // Figure out what primary body this item has.
829     let (body_id, body_ty, fn_header, fn_decl) = primary_body_of(tcx, id)
830         .unwrap_or_else(|| {
831             span_bug!(span, "can't type-check body of {:?}", def_id);
832         });
833     let body = tcx.hir().body(body_id);
834
835     let tables = Inherited::build(tcx, def_id).enter(|inh| {
836         let param_env = tcx.param_env(def_id);
837         let fcx = if let (Some(header), Some(decl)) = (fn_header, fn_decl) {
838             let fn_sig = if crate::collect::get_infer_ret_ty(&decl.output).is_some() {
839                 let fcx = FnCtxt::new(&inh, param_env, body.value.hir_id);
840                 AstConv::ty_of_fn(&fcx, header.unsafety, header.abi, decl)
841             } else {
842                 tcx.fn_sig(def_id)
843             };
844
845             check_abi(tcx, span, fn_sig.abi());
846
847             // Compute the fty from point of view of inside the fn.
848             let fn_sig =
849                 tcx.liberate_late_bound_regions(def_id, &fn_sig);
850             let fn_sig =
851                 inh.normalize_associated_types_in(body.value.span,
852                                                   body_id.hir_id,
853                                                   param_env,
854                                                   &fn_sig);
855
856             let fcx = check_fn(&inh, param_env, fn_sig, decl, id, body, None).0;
857             fcx
858         } else {
859             let fcx = FnCtxt::new(&inh, param_env, body.value.hir_id);
860             let expected_type = body_ty.and_then(|ty| match ty.node {
861                 hir::TyKind::Infer => Some(AstConv::ast_ty_to_ty(&fcx, ty)),
862                 _ => None
863             }).unwrap_or_else(|| tcx.type_of(def_id));
864             let expected_type = fcx.normalize_associated_types_in(body.value.span, &expected_type);
865             fcx.require_type_is_sized(expected_type, body.value.span, traits::ConstSized);
866
867             let revealed_ty = if tcx.features().impl_trait_in_bindings {
868                 fcx.instantiate_opaque_types_from_value(
869                     id,
870                     &expected_type,
871                     body.value.span,
872                 )
873             } else {
874                 expected_type
875             };
876
877             // Gather locals in statics (because of block expressions).
878             GatherLocalsVisitor { fcx: &fcx, parent_id: id, }.visit_body(body);
879
880             fcx.check_expr_coercable_to_type(&body.value, revealed_ty);
881
882             fcx.write_ty(id, revealed_ty);
883
884             fcx
885         };
886
887         // All type checking constraints were added, try to fallback unsolved variables.
888         fcx.select_obligations_where_possible(false);
889         let mut fallback_has_occurred = false;
890         for ty in &fcx.unsolved_variables() {
891             fallback_has_occurred |= fcx.fallback_if_possible(ty);
892         }
893         fcx.select_obligations_where_possible(fallback_has_occurred);
894
895         // Even though coercion casts provide type hints, we check casts after fallback for
896         // backwards compatibility. This makes fallback a stronger type hint than a cast coercion.
897         fcx.check_casts();
898
899         // Closure and generator analysis may run after fallback
900         // because they don't constrain other type variables.
901         fcx.closure_analyze(body);
902         assert!(fcx.deferred_call_resolutions.borrow().is_empty());
903         fcx.resolve_generator_interiors(def_id);
904
905         for (ty, span, code) in fcx.deferred_sized_obligations.borrow_mut().drain(..) {
906             let ty = fcx.normalize_ty(span, ty);
907             fcx.require_type_is_sized(ty, span, code);
908         }
909         fcx.select_all_obligations_or_error();
910
911         if fn_decl.is_some() {
912             fcx.regionck_fn(id, body);
913         } else {
914             fcx.regionck_expr(body);
915         }
916
917         fcx.resolve_type_vars_in_body(body)
918     });
919
920     // Consistency check our TypeckTables instance can hold all ItemLocalIds
921     // it will need to hold.
922     assert_eq!(tables.local_id_root, Some(DefId::local(id.owner)));
923
924     tables
925 }
926
927 fn check_abi(tcx: TyCtxt<'_>, span: Span, abi: Abi) {
928     if !tcx.sess.target.target.is_abi_supported(abi) {
929         struct_span_err!(tcx.sess, span, E0570,
930             "The ABI `{}` is not supported for the current target", abi).emit()
931     }
932 }
933
934 struct GatherLocalsVisitor<'a, 'tcx> {
935     fcx: &'a FnCtxt<'a, 'tcx>,
936     parent_id: hir::HirId,
937 }
938
939 impl<'a, 'tcx> GatherLocalsVisitor<'a, 'tcx> {
940     fn assign(&mut self, span: Span, nid: hir::HirId, ty_opt: Option<LocalTy<'tcx>>) -> Ty<'tcx> {
941         match ty_opt {
942             None => {
943                 // infer the variable's type
944                 let var_ty = self.fcx.next_ty_var(TypeVariableOrigin {
945                     kind: TypeVariableOriginKind::TypeInference,
946                     span,
947                 });
948                 self.fcx.locals.borrow_mut().insert(nid, LocalTy {
949                     decl_ty: var_ty,
950                     revealed_ty: var_ty
951                 });
952                 var_ty
953             }
954             Some(typ) => {
955                 // take type that the user specified
956                 self.fcx.locals.borrow_mut().insert(nid, typ);
957                 typ.revealed_ty
958             }
959         }
960     }
961 }
962
963 impl<'a, 'tcx> Visitor<'tcx> for GatherLocalsVisitor<'a, 'tcx> {
964     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
965         NestedVisitorMap::None
966     }
967
968     // Add explicitly-declared locals.
969     fn visit_local(&mut self, local: &'tcx hir::Local) {
970         let local_ty = match local.ty {
971             Some(ref ty) => {
972                 let o_ty = self.fcx.to_ty(&ty);
973
974                 let revealed_ty = if self.fcx.tcx.features().impl_trait_in_bindings {
975                     self.fcx.instantiate_opaque_types_from_value(
976                         self.parent_id,
977                         &o_ty,
978                         ty.span,
979                     )
980                 } else {
981                     o_ty
982                 };
983
984                 let c_ty = self.fcx.inh.infcx.canonicalize_user_type_annotation(
985                     &UserType::Ty(revealed_ty)
986                 );
987                 debug!("visit_local: ty.hir_id={:?} o_ty={:?} revealed_ty={:?} c_ty={:?}",
988                        ty.hir_id, o_ty, revealed_ty, c_ty);
989                 self.fcx.tables.borrow_mut().user_provided_types_mut().insert(ty.hir_id, c_ty);
990
991                 Some(LocalTy { decl_ty: o_ty, revealed_ty })
992             },
993             None => None,
994         };
995         self.assign(local.span, local.hir_id, local_ty);
996
997         debug!("local variable {:?} is assigned type {}",
998                local.pat,
999                self.fcx.ty_to_string(
1000                    self.fcx.locals.borrow().get(&local.hir_id).unwrap().clone().decl_ty));
1001         intravisit::walk_local(self, local);
1002     }
1003
1004     // Add pattern bindings.
1005     fn visit_pat(&mut self, p: &'tcx hir::Pat) {
1006         if let PatKind::Binding(_, _, ident, _) = p.node {
1007             let var_ty = self.assign(p.span, p.hir_id, None);
1008
1009             if !self.fcx.tcx.features().unsized_locals {
1010                 self.fcx.require_type_is_sized(var_ty, p.span,
1011                                                traits::VariableType(p.hir_id));
1012             }
1013
1014             debug!("pattern binding {} is assigned to {} with type {:?}",
1015                    ident,
1016                    self.fcx.ty_to_string(
1017                        self.fcx.locals.borrow().get(&p.hir_id).unwrap().clone().decl_ty),
1018                    var_ty);
1019         }
1020         intravisit::walk_pat(self, p);
1021     }
1022
1023     // Don't descend into the bodies of nested closures
1024     fn visit_fn(
1025         &mut self,
1026         _: intravisit::FnKind<'tcx>,
1027         _: &'tcx hir::FnDecl,
1028         _: hir::BodyId,
1029         _: Span,
1030         _: hir::HirId,
1031     ) { }
1032 }
1033
1034 /// When `check_fn` is invoked on a generator (i.e., a body that
1035 /// includes yield), it returns back some information about the yield
1036 /// points.
1037 struct GeneratorTypes<'tcx> {
1038     /// Type of value that is yielded.
1039     yield_ty: Ty<'tcx>,
1040
1041     /// Types that are captured (see `GeneratorInterior` for more).
1042     interior: Ty<'tcx>,
1043
1044     /// Indicates if the generator is movable or static (immovable).
1045     movability: hir::GeneratorMovability,
1046 }
1047
1048 /// Helper used for fns and closures. Does the grungy work of checking a function
1049 /// body and returns the function context used for that purpose, since in the case of a fn item
1050 /// there is still a bit more to do.
1051 ///
1052 /// * ...
1053 /// * inherited: other fields inherited from the enclosing fn (if any)
1054 fn check_fn<'a, 'tcx>(
1055     inherited: &'a Inherited<'a, 'tcx>,
1056     param_env: ty::ParamEnv<'tcx>,
1057     fn_sig: ty::FnSig<'tcx>,
1058     decl: &'tcx hir::FnDecl,
1059     fn_id: hir::HirId,
1060     body: &'tcx hir::Body,
1061     can_be_generator: Option<hir::GeneratorMovability>,
1062 ) -> (FnCtxt<'a, 'tcx>, Option<GeneratorTypes<'tcx>>) {
1063     let mut fn_sig = fn_sig.clone();
1064
1065     debug!("check_fn(sig={:?}, fn_id={}, param_env={:?})", fn_sig, fn_id, param_env);
1066
1067     // Create the function context.  This is either derived from scratch or,
1068     // in the case of closures, based on the outer context.
1069     let mut fcx = FnCtxt::new(inherited, param_env, body.value.hir_id);
1070     *fcx.ps.borrow_mut() = UnsafetyState::function(fn_sig.unsafety, fn_id);
1071
1072     let declared_ret_ty = fn_sig.output();
1073     fcx.require_type_is_sized(declared_ret_ty, decl.output.span(), traits::SizedReturnType);
1074     let revealed_ret_ty = fcx.instantiate_opaque_types_from_value(
1075         fn_id,
1076         &declared_ret_ty,
1077         decl.output.span(),
1078     );
1079     debug!("check_fn: declared_ret_ty: {}, revealed_ret_ty: {}", declared_ret_ty, revealed_ret_ty);
1080     fcx.ret_coercion = Some(RefCell::new(CoerceMany::new(revealed_ret_ty)));
1081     fn_sig = fcx.tcx.mk_fn_sig(
1082         fn_sig.inputs().iter().cloned(),
1083         revealed_ret_ty,
1084         fn_sig.c_variadic,
1085         fn_sig.unsafety,
1086         fn_sig.abi
1087     );
1088
1089     let span = body.value.span;
1090
1091     fn_maybe_err(fcx.tcx, span, fn_sig.abi);
1092
1093     if body.generator_kind.is_some() && can_be_generator.is_some() {
1094         let yield_ty = fcx.next_ty_var(TypeVariableOrigin {
1095             kind: TypeVariableOriginKind::TypeInference,
1096             span,
1097         });
1098         fcx.require_type_is_sized(yield_ty, span, traits::SizedYieldType);
1099         fcx.yield_ty = Some(yield_ty);
1100     }
1101
1102     let outer_def_id = fcx.tcx.closure_base_def_id(fcx.tcx.hir().local_def_id(fn_id));
1103     let outer_hir_id = fcx.tcx.hir().as_local_hir_id(outer_def_id).unwrap();
1104     GatherLocalsVisitor { fcx: &fcx, parent_id: outer_hir_id, }.visit_body(body);
1105
1106     // Add formal parameters.
1107     for (param_ty, param) in fn_sig.inputs().iter().zip(&body.params) {
1108         // Check the pattern.
1109         fcx.check_pat_top(&param.pat, param_ty, None);
1110
1111         // Check that argument is Sized.
1112         // The check for a non-trivial pattern is a hack to avoid duplicate warnings
1113         // for simple cases like `fn foo(x: Trait)`,
1114         // where we would error once on the parameter as a whole, and once on the binding `x`.
1115         if param.pat.simple_ident().is_none() && !fcx.tcx.features().unsized_locals {
1116             fcx.require_type_is_sized(param_ty, decl.output.span(), traits::SizedArgumentType);
1117         }
1118
1119         fcx.write_ty(param.hir_id, param_ty);
1120     }
1121
1122     inherited.tables.borrow_mut().liberated_fn_sigs_mut().insert(fn_id, fn_sig);
1123
1124     fcx.check_return_expr(&body.value);
1125
1126     // We insert the deferred_generator_interiors entry after visiting the body.
1127     // This ensures that all nested generators appear before the entry of this generator.
1128     // resolve_generator_interiors relies on this property.
1129     let gen_ty = if let (Some(_), Some(gen_kind)) = (can_be_generator, body.generator_kind) {
1130         let interior = fcx.next_ty_var(TypeVariableOrigin {
1131             kind: TypeVariableOriginKind::MiscVariable,
1132             span,
1133         });
1134         fcx.deferred_generator_interiors.borrow_mut().push((body.id(), interior, gen_kind));
1135         Some(GeneratorTypes {
1136             yield_ty: fcx.yield_ty.unwrap(),
1137             interior,
1138             movability: can_be_generator.unwrap(),
1139         })
1140     } else {
1141         None
1142     };
1143
1144     // Finalize the return check by taking the LUB of the return types
1145     // we saw and assigning it to the expected return type. This isn't
1146     // really expected to fail, since the coercions would have failed
1147     // earlier when trying to find a LUB.
1148     //
1149     // However, the behavior around `!` is sort of complex. In the
1150     // event that the `actual_return_ty` comes back as `!`, that
1151     // indicates that the fn either does not return or "returns" only
1152     // values of type `!`. In this case, if there is an expected
1153     // return type that is *not* `!`, that should be ok. But if the
1154     // return type is being inferred, we want to "fallback" to `!`:
1155     //
1156     //     let x = move || panic!();
1157     //
1158     // To allow for that, I am creating a type variable with diverging
1159     // fallback. This was deemed ever so slightly better than unifying
1160     // the return value with `!` because it allows for the caller to
1161     // make more assumptions about the return type (e.g., they could do
1162     //
1163     //     let y: Option<u32> = Some(x());
1164     //
1165     // which would then cause this return type to become `u32`, not
1166     // `!`).
1167     let coercion = fcx.ret_coercion.take().unwrap().into_inner();
1168     let mut actual_return_ty = coercion.complete(&fcx);
1169     if actual_return_ty.is_never() {
1170         actual_return_ty = fcx.next_diverging_ty_var(
1171             TypeVariableOrigin {
1172                 kind: TypeVariableOriginKind::DivergingFn,
1173                 span,
1174             },
1175         );
1176     }
1177     fcx.demand_suptype(span, revealed_ret_ty, actual_return_ty);
1178
1179     // Check that the main return type implements the termination trait.
1180     if let Some(term_id) = fcx.tcx.lang_items().termination() {
1181         if let Some((def_id, EntryFnType::Main)) = fcx.tcx.entry_fn(LOCAL_CRATE) {
1182             let main_id = fcx.tcx.hir().as_local_hir_id(def_id).unwrap();
1183             if main_id == fn_id {
1184                 let substs = fcx.tcx.mk_substs_trait(declared_ret_ty, &[]);
1185                 let trait_ref = ty::TraitRef::new(term_id, substs);
1186                 let return_ty_span = decl.output.span();
1187                 let cause = traits::ObligationCause::new(
1188                     return_ty_span, fn_id, ObligationCauseCode::MainFunctionType);
1189
1190                 inherited.register_predicate(
1191                     traits::Obligation::new(
1192                         cause, param_env, trait_ref.to_predicate()));
1193             }
1194         }
1195     }
1196
1197     // Check that a function marked as `#[panic_handler]` has signature `fn(&PanicInfo) -> !`
1198     if let Some(panic_impl_did) = fcx.tcx.lang_items().panic_impl() {
1199         if panic_impl_did == fcx.tcx.hir().local_def_id(fn_id) {
1200             if let Some(panic_info_did) = fcx.tcx.lang_items().panic_info() {
1201                 // at this point we don't care if there are duplicate handlers or if the handler has
1202                 // the wrong signature as this value we'll be used when writing metadata and that
1203                 // only happens if compilation succeeded
1204                 fcx.tcx.sess.has_panic_handler.try_set_same(true);
1205
1206                 if declared_ret_ty.sty != ty::Never {
1207                     fcx.tcx.sess.span_err(
1208                         decl.output.span(),
1209                         "return type should be `!`",
1210                     );
1211                 }
1212
1213                 let inputs = fn_sig.inputs();
1214                 let span = fcx.tcx.hir().span(fn_id);
1215                 if inputs.len() == 1 {
1216                     let arg_is_panic_info = match inputs[0].sty {
1217                         ty::Ref(region, ty, mutbl) => match ty.sty {
1218                             ty::Adt(ref adt, _) => {
1219                                 adt.did == panic_info_did &&
1220                                     mutbl == hir::Mutability::MutImmutable &&
1221                                     *region != RegionKind::ReStatic
1222                             },
1223                             _ => false,
1224                         },
1225                         _ => false,
1226                     };
1227
1228                     if !arg_is_panic_info {
1229                         fcx.tcx.sess.span_err(
1230                             decl.inputs[0].span,
1231                             "argument should be `&PanicInfo`",
1232                         );
1233                     }
1234
1235                     if let Node::Item(item) = fcx.tcx.hir().get(fn_id) {
1236                         if let ItemKind::Fn(_, _, ref generics, _) = item.node {
1237                             if !generics.params.is_empty() {
1238                                 fcx.tcx.sess.span_err(
1239                                     span,
1240                                     "should have no type parameters",
1241                                 );
1242                             }
1243                         }
1244                     }
1245                 } else {
1246                     let span = fcx.tcx.sess.source_map().def_span(span);
1247                     fcx.tcx.sess.span_err(span, "function should have one argument");
1248                 }
1249             } else {
1250                 fcx.tcx.sess.err("language item required, but not found: `panic_info`");
1251             }
1252         }
1253     }
1254
1255     // Check that a function marked as `#[alloc_error_handler]` has signature `fn(Layout) -> !`
1256     if let Some(alloc_error_handler_did) = fcx.tcx.lang_items().oom() {
1257         if alloc_error_handler_did == fcx.tcx.hir().local_def_id(fn_id) {
1258             if let Some(alloc_layout_did) = fcx.tcx.lang_items().alloc_layout() {
1259                 if declared_ret_ty.sty != ty::Never {
1260                     fcx.tcx.sess.span_err(
1261                         decl.output.span(),
1262                         "return type should be `!`",
1263                     );
1264                 }
1265
1266                 let inputs = fn_sig.inputs();
1267                 let span = fcx.tcx.hir().span(fn_id);
1268                 if inputs.len() == 1 {
1269                     let arg_is_alloc_layout = match inputs[0].sty {
1270                         ty::Adt(ref adt, _) => {
1271                             adt.did == alloc_layout_did
1272                         },
1273                         _ => false,
1274                     };
1275
1276                     if !arg_is_alloc_layout {
1277                         fcx.tcx.sess.span_err(
1278                             decl.inputs[0].span,
1279                             "argument should be `Layout`",
1280                         );
1281                     }
1282
1283                     if let Node::Item(item) = fcx.tcx.hir().get(fn_id) {
1284                         if let ItemKind::Fn(_, _, ref generics, _) = item.node {
1285                             if !generics.params.is_empty() {
1286                                 fcx.tcx.sess.span_err(
1287                                     span,
1288                                     "`#[alloc_error_handler]` function should have no type \
1289                                      parameters",
1290                                 );
1291                             }
1292                         }
1293                     }
1294                 } else {
1295                     let span = fcx.tcx.sess.source_map().def_span(span);
1296                     fcx.tcx.sess.span_err(span, "function should have one argument");
1297                 }
1298             } else {
1299                 fcx.tcx.sess.err("language item required, but not found: `alloc_layout`");
1300             }
1301         }
1302     }
1303
1304     (fcx, gen_ty)
1305 }
1306
1307 fn check_struct(tcx: TyCtxt<'_>, id: hir::HirId, span: Span) {
1308     let def_id = tcx.hir().local_def_id(id);
1309     let def = tcx.adt_def(def_id);
1310     def.destructor(tcx); // force the destructor to be evaluated
1311     check_representable(tcx, span, def_id);
1312
1313     if def.repr.simd() {
1314         check_simd(tcx, span, def_id);
1315     }
1316
1317     check_transparent(tcx, span, def_id);
1318     check_packed(tcx, span, def_id);
1319 }
1320
1321 fn check_union(tcx: TyCtxt<'_>, id: hir::HirId, span: Span) {
1322     let def_id = tcx.hir().local_def_id(id);
1323     let def = tcx.adt_def(def_id);
1324     def.destructor(tcx); // force the destructor to be evaluated
1325     check_representable(tcx, span, def_id);
1326     check_transparent(tcx, span, def_id);
1327     check_packed(tcx, span, def_id);
1328 }
1329
1330 /// Checks that an opaque type does not contain cycles and does not use `Self` or `T::Foo`
1331 /// projections that would result in "inheriting lifetimes".
1332 fn check_opaque<'tcx>(
1333     tcx: TyCtxt<'tcx>,
1334     def_id: DefId,
1335     substs: SubstsRef<'tcx>,
1336     span: Span,
1337     origin: &hir::OpaqueTyOrigin,
1338 ) {
1339     check_opaque_for_inheriting_lifetimes(tcx, def_id, span);
1340     check_opaque_for_cycles(tcx, def_id, substs, span, origin);
1341 }
1342
1343 /// Checks that an opaque type does not use `Self` or `T::Foo` projections that would result
1344 /// in "inheriting lifetimes".
1345 fn check_opaque_for_inheriting_lifetimes(
1346     tcx: TyCtxt<'tcx>,
1347     def_id: DefId,
1348     span: Span,
1349 ) {
1350     let item = tcx.hir().expect_item(
1351         tcx.hir().as_local_hir_id(def_id).expect("opaque type is not local"));
1352     debug!("check_opaque_for_inheriting_lifetimes: def_id={:?} span={:?} item={:?}",
1353            def_id, span, item);
1354
1355     #[derive(Debug)]
1356     struct ProhibitOpaqueVisitor<'tcx> {
1357         opaque_identity_ty: Ty<'tcx>,
1358         generics: &'tcx ty::Generics,
1359     };
1360
1361     impl<'tcx> ty::fold::TypeVisitor<'tcx> for ProhibitOpaqueVisitor<'tcx> {
1362         fn visit_ty(&mut self, t: Ty<'tcx>) -> bool {
1363             debug!("check_opaque_for_inheriting_lifetimes: (visit_ty) t={:?}", t);
1364             if t == self.opaque_identity_ty { false } else { t.super_visit_with(self) }
1365         }
1366
1367         fn visit_region(&mut self, r: ty::Region<'tcx>) -> bool {
1368             debug!("check_opaque_for_inheriting_lifetimes: (visit_region) r={:?}", r);
1369             if let RegionKind::ReEarlyBound(ty::EarlyBoundRegion { index, .. }) = r {
1370                 return *index < self.generics.parent_count as u32;
1371             }
1372
1373             r.super_visit_with(self)
1374         }
1375     }
1376
1377     let prohibit_opaque = match item.node {
1378         ItemKind::OpaqueTy(hir::OpaqueTy { origin: hir::OpaqueTyOrigin::AsyncFn, .. }) |
1379         ItemKind::OpaqueTy(hir::OpaqueTy { origin: hir::OpaqueTyOrigin::FnReturn, .. }) => {
1380             let mut visitor = ProhibitOpaqueVisitor {
1381                 opaque_identity_ty: tcx.mk_opaque(
1382                     def_id, InternalSubsts::identity_for_item(tcx, def_id)),
1383                 generics: tcx.generics_of(def_id),
1384             };
1385             debug!("check_opaque_for_inheriting_lifetimes: visitor={:?}", visitor);
1386
1387             tcx.predicates_of(def_id).predicates.iter().any(
1388                 |(predicate, _)| predicate.visit_with(&mut visitor))
1389         },
1390         _ => false,
1391     };
1392
1393     debug!("check_opaque_for_inheriting_lifetimes: prohibit_opaque={:?}", prohibit_opaque);
1394     if prohibit_opaque {
1395         let is_async = match item.node {
1396             ItemKind::OpaqueTy(hir::OpaqueTy { origin, .. }) => match origin {
1397                 hir::OpaqueTyOrigin::AsyncFn => true,
1398                 _ => false,
1399             },
1400             _ => unreachable!(),
1401         };
1402
1403         tcx.sess.span_err(span, &format!(
1404             "`{}` return type cannot contain a projection or `Self` that references lifetimes from \
1405              a parent scope",
1406             if is_async { "async fn" } else { "impl Trait" },
1407         ));
1408     }
1409 }
1410
1411 /// Checks that an opaque type does not contain cycles.
1412 fn check_opaque_for_cycles<'tcx>(
1413     tcx: TyCtxt<'tcx>,
1414     def_id: DefId,
1415     substs: SubstsRef<'tcx>,
1416     span: Span,
1417     origin: &hir::OpaqueTyOrigin,
1418 ) {
1419     if let Err(partially_expanded_type) = tcx.try_expand_impl_trait_type(def_id, substs) {
1420         if let hir::OpaqueTyOrigin::AsyncFn = origin {
1421             struct_span_err!(
1422                 tcx.sess, span, E0733,
1423                 "recursion in an `async fn` requires boxing",
1424             )
1425             .span_label(span, "recursive `async fn`")
1426             .note("a recursive `async fn` must be rewritten to return a boxed `dyn Future`.")
1427             .emit();
1428         } else {
1429             let mut err = struct_span_err!(
1430                 tcx.sess, span, E0720,
1431                 "opaque type expands to a recursive type",
1432             );
1433             err.span_label(span, "expands to a recursive type");
1434             if let ty::Opaque(..) = partially_expanded_type.sty {
1435                 err.note("type resolves to itself");
1436             } else {
1437                 err.note(&format!("expanded type is `{}`", partially_expanded_type));
1438             }
1439             err.emit();
1440         }
1441     }
1442 }
1443
1444 // Forbid defining intrinsics in Rust code,
1445 // as they must always be defined by the compiler.
1446 fn fn_maybe_err(tcx: TyCtxt<'_>, sp: Span, abi: Abi) {
1447     if let Abi::RustIntrinsic | Abi::PlatformIntrinsic = abi {
1448         tcx.sess.span_err(sp, "intrinsic must be in `extern \"rust-intrinsic\" { ... }` block");
1449     }
1450 }
1451
1452 pub fn check_item_type<'tcx>(tcx: TyCtxt<'tcx>, it: &'tcx hir::Item) {
1453     debug!(
1454         "check_item_type(it.hir_id={}, it.name={})",
1455         it.hir_id,
1456         tcx.def_path_str(tcx.hir().local_def_id(it.hir_id))
1457     );
1458     let _indenter = indenter();
1459     match it.node {
1460         // Consts can play a role in type-checking, so they are included here.
1461         hir::ItemKind::Static(..) => {
1462             let def_id = tcx.hir().local_def_id(it.hir_id);
1463             tcx.typeck_tables_of(def_id);
1464             maybe_check_static_with_link_section(tcx, def_id, it.span);
1465         }
1466         hir::ItemKind::Const(..) => {
1467             tcx.typeck_tables_of(tcx.hir().local_def_id(it.hir_id));
1468         }
1469         hir::ItemKind::Enum(ref enum_definition, _) => {
1470             check_enum(tcx, it.span, &enum_definition.variants, it.hir_id);
1471         }
1472         hir::ItemKind::Fn(..) => {} // entirely within check_item_body
1473         hir::ItemKind::Impl(.., ref impl_item_refs) => {
1474             debug!("ItemKind::Impl {} with id {}", it.ident, it.hir_id);
1475             let impl_def_id = tcx.hir().local_def_id(it.hir_id);
1476             if let Some(impl_trait_ref) = tcx.impl_trait_ref(impl_def_id) {
1477                 check_impl_items_against_trait(
1478                     tcx,
1479                     it.span,
1480                     impl_def_id,
1481                     impl_trait_ref,
1482                     impl_item_refs,
1483                 );
1484                 let trait_def_id = impl_trait_ref.def_id;
1485                 check_on_unimplemented(tcx, trait_def_id, it);
1486             }
1487         }
1488         hir::ItemKind::Trait(_, _, _, _, ref items) => {
1489             let def_id = tcx.hir().local_def_id(it.hir_id);
1490             check_on_unimplemented(tcx, def_id, it);
1491
1492             for item in items.iter() {
1493                 let item = tcx.hir().trait_item(item.id);
1494                 if let hir::TraitItemKind::Method(sig, _) = &item.node {
1495                     let abi = sig.header.abi;
1496                     fn_maybe_err(tcx, item.ident.span, abi);
1497                 }
1498             }
1499         }
1500         hir::ItemKind::Struct(..) => {
1501             check_struct(tcx, it.hir_id, it.span);
1502         }
1503         hir::ItemKind::Union(..) => {
1504             check_union(tcx, it.hir_id, it.span);
1505         }
1506         hir::ItemKind::OpaqueTy(hir::OpaqueTy{origin, ..}) => {
1507             let def_id = tcx.hir().local_def_id(it.hir_id);
1508
1509             let substs = InternalSubsts::identity_for_item(tcx, def_id);
1510             check_opaque(tcx, def_id, substs, it.span, &origin);
1511         }
1512         hir::ItemKind::TyAlias(..) => {
1513             let def_id = tcx.hir().local_def_id(it.hir_id);
1514             let pty_ty = tcx.type_of(def_id);
1515             let generics = tcx.generics_of(def_id);
1516             check_bounds_are_used(tcx, &generics, pty_ty);
1517         }
1518         hir::ItemKind::ForeignMod(ref m) => {
1519             check_abi(tcx, it.span, m.abi);
1520
1521             if m.abi == Abi::RustIntrinsic {
1522                 for item in &m.items {
1523                     intrinsic::check_intrinsic_type(tcx, item);
1524                 }
1525             } else if m.abi == Abi::PlatformIntrinsic {
1526                 for item in &m.items {
1527                     intrinsic::check_platform_intrinsic_type(tcx, item);
1528                 }
1529             } else {
1530                 for item in &m.items {
1531                     let generics = tcx.generics_of(tcx.hir().local_def_id(item.hir_id));
1532                     let own_counts = generics.own_counts();
1533                     if generics.params.len() - own_counts.lifetimes != 0 {
1534                         let (kinds, kinds_pl, egs) = match (own_counts.types, own_counts.consts) {
1535                             (_, 0) => ("type", "types", Some("u32")),
1536                             // We don't specify an example value, because we can't generate
1537                             // a valid value for any type.
1538                             (0, _) => ("const", "consts", None),
1539                             _ => ("type or const", "types or consts", None),
1540                         };
1541                         struct_span_err!(
1542                             tcx.sess,
1543                             item.span,
1544                             E0044,
1545                             "foreign items may not have {} parameters",
1546                             kinds,
1547                         ).span_label(
1548                             item.span,
1549                             &format!("can't have {} parameters", kinds),
1550                         ).help(
1551                             // FIXME: once we start storing spans for type arguments, turn this
1552                             // into a suggestion.
1553                             &format!(
1554                                 "replace the {} parameters with concrete {}{}",
1555                                 kinds,
1556                                 kinds_pl,
1557                                 egs.map(|egs| format!(" like `{}`", egs)).unwrap_or_default(),
1558                             ),
1559                         ).emit();
1560                     }
1561
1562                     if let hir::ForeignItemKind::Fn(ref fn_decl, _, _) = item.node {
1563                         require_c_abi_if_c_variadic(tcx, fn_decl, m.abi, item.span);
1564                     }
1565                 }
1566             }
1567         }
1568         _ => { /* nothing to do */ }
1569     }
1570 }
1571
1572 fn maybe_check_static_with_link_section(tcx: TyCtxt<'_>, id: DefId, span: Span) {
1573     // Only restricted on wasm32 target for now
1574     if !tcx.sess.opts.target_triple.triple().starts_with("wasm32") {
1575         return
1576     }
1577
1578     // If `#[link_section]` is missing, then nothing to verify
1579     let attrs = tcx.codegen_fn_attrs(id);
1580     if attrs.link_section.is_none() {
1581         return
1582     }
1583
1584     // For the wasm32 target statics with `#[link_section]` are placed into custom
1585     // sections of the final output file, but this isn't link custom sections of
1586     // other executable formats. Namely we can only embed a list of bytes,
1587     // nothing with pointers to anything else or relocations. If any relocation
1588     // show up, reject them here.
1589     // `#[link_section]` may contain arbitrary, or even undefined bytes, but it is
1590     // the consumer's responsibility to ensure all bytes that have been read
1591     // have defined values.
1592     let instance = ty::Instance::mono(tcx, id);
1593     let cid = GlobalId {
1594         instance,
1595         promoted: None
1596     };
1597     let param_env = ty::ParamEnv::reveal_all();
1598     if let Ok(static_) = tcx.const_eval(param_env.and(cid)) {
1599         let alloc = if let ConstValue::ByRef { alloc, .. } = static_.val {
1600             alloc
1601         } else {
1602             bug!("Matching on non-ByRef static")
1603         };
1604         if alloc.relocations().len() != 0 {
1605             let msg = "statics with a custom `#[link_section]` must be a \
1606                        simple list of bytes on the wasm target with no \
1607                        extra levels of indirection such as references";
1608             tcx.sess.span_err(span, msg);
1609         }
1610     }
1611 }
1612
1613 fn check_on_unimplemented(tcx: TyCtxt<'_>, trait_def_id: DefId, item: &hir::Item) {
1614     let item_def_id = tcx.hir().local_def_id(item.hir_id);
1615     // an error would be reported if this fails.
1616     let _ = traits::OnUnimplementedDirective::of_item(tcx, trait_def_id, item_def_id);
1617 }
1618
1619 fn report_forbidden_specialization(
1620     tcx: TyCtxt<'_>,
1621     impl_item: &hir::ImplItem,
1622     parent_impl: DefId,
1623 ) {
1624     let mut err = struct_span_err!(
1625         tcx.sess, impl_item.span, E0520,
1626         "`{}` specializes an item from a parent `impl`, but \
1627          that item is not marked `default`",
1628         impl_item.ident);
1629     err.span_label(impl_item.span, format!("cannot specialize default item `{}`",
1630                                             impl_item.ident));
1631
1632     match tcx.span_of_impl(parent_impl) {
1633         Ok(span) => {
1634             err.span_label(span, "parent `impl` is here");
1635             err.note(&format!("to specialize, `{}` in the parent `impl` must be marked `default`",
1636                               impl_item.ident));
1637         }
1638         Err(cname) => {
1639             err.note(&format!("parent implementation is in crate `{}`", cname));
1640         }
1641     }
1642
1643     err.emit();
1644 }
1645
1646 fn check_specialization_validity<'tcx>(
1647     tcx: TyCtxt<'tcx>,
1648     trait_def: &ty::TraitDef,
1649     trait_item: &ty::AssocItem,
1650     impl_id: DefId,
1651     impl_item: &hir::ImplItem,
1652 ) {
1653     let ancestors = trait_def.ancestors(tcx, impl_id);
1654
1655     let kind = match impl_item.node {
1656         hir::ImplItemKind::Const(..) => ty::AssocKind::Const,
1657         hir::ImplItemKind::Method(..) => ty::AssocKind::Method,
1658         hir::ImplItemKind::OpaqueTy(..) => ty::AssocKind::OpaqueTy,
1659         hir::ImplItemKind::TyAlias(_) => ty::AssocKind::Type,
1660     };
1661
1662     let parent = ancestors.defs(tcx, trait_item.ident, kind, trait_def.def_id).nth(1)
1663         .map(|node_item| node_item.map(|parent| parent.defaultness));
1664
1665     if let Some(parent) = parent {
1666         if tcx.impl_item_is_final(&parent) {
1667             report_forbidden_specialization(tcx, impl_item, parent.node.def_id());
1668         }
1669     }
1670
1671 }
1672
1673 fn check_impl_items_against_trait<'tcx>(
1674     tcx: TyCtxt<'tcx>,
1675     impl_span: Span,
1676     impl_id: DefId,
1677     impl_trait_ref: ty::TraitRef<'tcx>,
1678     impl_item_refs: &[hir::ImplItemRef],
1679 ) {
1680     let impl_span = tcx.sess.source_map().def_span(impl_span);
1681
1682     // If the trait reference itself is erroneous (so the compilation is going
1683     // to fail), skip checking the items here -- the `impl_item` table in `tcx`
1684     // isn't populated for such impls.
1685     if impl_trait_ref.references_error() { return; }
1686
1687     // Locate trait definition and items
1688     let trait_def = tcx.trait_def(impl_trait_ref.def_id);
1689     let mut overridden_associated_type = None;
1690
1691     let impl_items = || impl_item_refs.iter().map(|iiref| tcx.hir().impl_item(iiref.id));
1692
1693     // Check existing impl methods to see if they are both present in trait
1694     // and compatible with trait signature
1695     for impl_item in impl_items() {
1696         let ty_impl_item = tcx.associated_item(
1697             tcx.hir().local_def_id(impl_item.hir_id));
1698         let ty_trait_item = tcx.associated_items(impl_trait_ref.def_id)
1699             .find(|ac| Namespace::from(&impl_item.node) == Namespace::from(ac.kind) &&
1700                        tcx.hygienic_eq(ty_impl_item.ident, ac.ident, impl_trait_ref.def_id))
1701             .or_else(|| {
1702                 // Not compatible, but needed for the error message
1703                 tcx.associated_items(impl_trait_ref.def_id)
1704                    .find(|ac| tcx.hygienic_eq(ty_impl_item.ident, ac.ident, impl_trait_ref.def_id))
1705             });
1706
1707         // Check that impl definition matches trait definition
1708         if let Some(ty_trait_item) = ty_trait_item {
1709             match impl_item.node {
1710                 hir::ImplItemKind::Const(..) => {
1711                     // Find associated const definition.
1712                     if ty_trait_item.kind == ty::AssocKind::Const {
1713                         compare_const_impl(tcx,
1714                                            &ty_impl_item,
1715                                            impl_item.span,
1716                                            &ty_trait_item,
1717                                            impl_trait_ref);
1718                     } else {
1719                          let mut err = struct_span_err!(tcx.sess, impl_item.span, E0323,
1720                              "item `{}` is an associated const, \
1721                               which doesn't match its trait `{}`",
1722                              ty_impl_item.ident,
1723                              impl_trait_ref);
1724                          err.span_label(impl_item.span, "does not match trait");
1725                          // We can only get the spans from local trait definition
1726                          // Same for E0324 and E0325
1727                          if let Some(trait_span) = tcx.hir().span_if_local(ty_trait_item.def_id) {
1728                             err.span_label(trait_span, "item in trait");
1729                          }
1730                          err.emit()
1731                     }
1732                 }
1733                 hir::ImplItemKind::Method(..) => {
1734                     let trait_span = tcx.hir().span_if_local(ty_trait_item.def_id);
1735                     if ty_trait_item.kind == ty::AssocKind::Method {
1736                         compare_impl_method(tcx,
1737                                             &ty_impl_item,
1738                                             impl_item.span,
1739                                             &ty_trait_item,
1740                                             impl_trait_ref,
1741                                             trait_span);
1742                     } else {
1743                         let mut err = struct_span_err!(tcx.sess, impl_item.span, E0324,
1744                             "item `{}` is an associated method, \
1745                              which doesn't match its trait `{}`",
1746                             ty_impl_item.ident,
1747                             impl_trait_ref);
1748                          err.span_label(impl_item.span, "does not match trait");
1749                          if let Some(trait_span) = tcx.hir().span_if_local(ty_trait_item.def_id) {
1750                             err.span_label(trait_span, "item in trait");
1751                          }
1752                          err.emit()
1753                     }
1754                 }
1755                 hir::ImplItemKind::OpaqueTy(..) |
1756                 hir::ImplItemKind::TyAlias(_) => {
1757                     if ty_trait_item.kind == ty::AssocKind::Type {
1758                         if ty_trait_item.defaultness.has_value() {
1759                             overridden_associated_type = Some(impl_item);
1760                         }
1761                     } else {
1762                         let mut err = struct_span_err!(tcx.sess, impl_item.span, E0325,
1763                             "item `{}` is an associated type, \
1764                              which doesn't match its trait `{}`",
1765                             ty_impl_item.ident,
1766                             impl_trait_ref);
1767                          err.span_label(impl_item.span, "does not match trait");
1768                          if let Some(trait_span) = tcx.hir().span_if_local(ty_trait_item.def_id) {
1769                             err.span_label(trait_span, "item in trait");
1770                          }
1771                          err.emit()
1772                     }
1773                 }
1774             }
1775
1776             check_specialization_validity(tcx, trait_def, &ty_trait_item, impl_id, impl_item);
1777         }
1778     }
1779
1780     // Check for missing items from trait
1781     let mut missing_items = Vec::new();
1782     let mut invalidated_items = Vec::new();
1783     let associated_type_overridden = overridden_associated_type.is_some();
1784     for trait_item in tcx.associated_items(impl_trait_ref.def_id) {
1785         let is_implemented = trait_def.ancestors(tcx, impl_id)
1786             .defs(tcx, trait_item.ident, trait_item.kind, impl_trait_ref.def_id)
1787             .next()
1788             .map(|node_item| !node_item.node.is_from_trait())
1789             .unwrap_or(false);
1790
1791         if !is_implemented && !tcx.impl_is_default(impl_id) {
1792             if !trait_item.defaultness.has_value() {
1793                 missing_items.push(trait_item);
1794             } else if associated_type_overridden {
1795                 invalidated_items.push(trait_item.ident);
1796             }
1797         }
1798     }
1799
1800     if !missing_items.is_empty() {
1801         let mut err = struct_span_err!(tcx.sess, impl_span, E0046,
1802             "not all trait items implemented, missing: `{}`",
1803             missing_items.iter()
1804                 .map(|trait_item| trait_item.ident.to_string())
1805                 .collect::<Vec<_>>().join("`, `"));
1806         err.span_label(impl_span, format!("missing `{}` in implementation",
1807                 missing_items.iter()
1808                     .map(|trait_item| trait_item.ident.to_string())
1809                     .collect::<Vec<_>>().join("`, `")));
1810         for trait_item in missing_items {
1811             if let Some(span) = tcx.hir().span_if_local(trait_item.def_id) {
1812                 err.span_label(span, format!("`{}` from trait", trait_item.ident));
1813             } else {
1814                 err.note_trait_signature(trait_item.ident.to_string(),
1815                                          trait_item.signature(tcx));
1816             }
1817         }
1818         err.emit();
1819     }
1820
1821     if !invalidated_items.is_empty() {
1822         let invalidator = overridden_associated_type.unwrap();
1823         span_err!(tcx.sess, invalidator.span, E0399,
1824                   "the following trait items need to be reimplemented \
1825                    as `{}` was overridden: `{}`",
1826                   invalidator.ident,
1827                   invalidated_items.iter()
1828                                    .map(|name| name.to_string())
1829                                    .collect::<Vec<_>>().join("`, `"))
1830     }
1831 }
1832
1833 /// Checks whether a type can be represented in memory. In particular, it
1834 /// identifies types that contain themselves without indirection through a
1835 /// pointer, which would mean their size is unbounded.
1836 fn check_representable(tcx: TyCtxt<'_>, sp: Span, item_def_id: DefId) -> bool {
1837     let rty = tcx.type_of(item_def_id);
1838
1839     // Check that it is possible to represent this type. This call identifies
1840     // (1) types that contain themselves and (2) types that contain a different
1841     // recursive type. It is only necessary to throw an error on those that
1842     // contain themselves. For case 2, there must be an inner type that will be
1843     // caught by case 1.
1844     match rty.is_representable(tcx, sp) {
1845         Representability::SelfRecursive(spans) => {
1846             let mut err = tcx.recursive_type_with_infinite_size_error(item_def_id);
1847             for span in spans {
1848                 err.span_label(span, "recursive without indirection");
1849             }
1850             err.emit();
1851             return false
1852         }
1853         Representability::Representable | Representability::ContainsRecursive => (),
1854     }
1855     return true;
1856 }
1857
1858 pub fn check_simd(tcx: TyCtxt<'_>, sp: Span, def_id: DefId) {
1859     let t = tcx.type_of(def_id);
1860     if let ty::Adt(def, substs) = t.sty {
1861         if def.is_struct() {
1862             let fields = &def.non_enum_variant().fields;
1863             if fields.is_empty() {
1864                 span_err!(tcx.sess, sp, E0075, "SIMD vector cannot be empty");
1865                 return;
1866             }
1867             let e = fields[0].ty(tcx, substs);
1868             if !fields.iter().all(|f| f.ty(tcx, substs) == e) {
1869                 struct_span_err!(tcx.sess, sp, E0076, "SIMD vector should be homogeneous")
1870                                 .span_label(sp, "SIMD elements must have the same type")
1871                                 .emit();
1872                 return;
1873             }
1874             match e.sty {
1875                 ty::Param(_) => { /* struct<T>(T, T, T, T) is ok */ }
1876                 _ if e.is_machine() => { /* struct(u8, u8, u8, u8) is ok */ }
1877                 _ => {
1878                     span_err!(tcx.sess, sp, E0077,
1879                               "SIMD vector element type should be machine type");
1880                     return;
1881                 }
1882             }
1883         }
1884     }
1885 }
1886
1887 fn check_packed(tcx: TyCtxt<'_>, sp: Span, def_id: DefId) {
1888     let repr = tcx.adt_def(def_id).repr;
1889     if repr.packed() {
1890         for attr in tcx.get_attrs(def_id).iter() {
1891             for r in attr::find_repr_attrs(&tcx.sess.parse_sess, attr) {
1892                 if let attr::ReprPacked(pack) = r {
1893                     if let Some(repr_pack) = repr.pack {
1894                         if pack as u64 != repr_pack.bytes() {
1895                             struct_span_err!(
1896                                 tcx.sess, sp, E0634,
1897                                 "type has conflicting packed representation hints"
1898                             ).emit();
1899                         }
1900                     }
1901                 }
1902             }
1903         }
1904         if repr.align.is_some() {
1905             struct_span_err!(tcx.sess, sp, E0587,
1906                              "type has conflicting packed and align representation hints").emit();
1907         }
1908         else if check_packed_inner(tcx, def_id, &mut Vec::new()) {
1909             struct_span_err!(tcx.sess, sp, E0588,
1910                 "packed type cannot transitively contain a `[repr(align)]` type").emit();
1911         }
1912     }
1913 }
1914
1915 fn check_packed_inner(tcx: TyCtxt<'_>, def_id: DefId, stack: &mut Vec<DefId>) -> bool {
1916     let t = tcx.type_of(def_id);
1917     if stack.contains(&def_id) {
1918         debug!("check_packed_inner: {:?} is recursive", t);
1919         return false;
1920     }
1921     if let ty::Adt(def, substs) = t.sty {
1922         if def.is_struct() || def.is_union() {
1923             if tcx.adt_def(def.did).repr.align.is_some() {
1924                 return true;
1925             }
1926             // push struct def_id before checking fields
1927             stack.push(def_id);
1928             for field in &def.non_enum_variant().fields {
1929                 let f = field.ty(tcx, substs);
1930                 if let ty::Adt(def, _) = f.sty {
1931                     if check_packed_inner(tcx, def.did, stack) {
1932                         return true;
1933                     }
1934                 }
1935             }
1936             // only need to pop if not early out
1937             stack.pop();
1938         }
1939     }
1940     false
1941 }
1942
1943 /// Emit an error when encountering more or less than one variant in a transparent enum.
1944 fn bad_variant_count<'tcx>(tcx: TyCtxt<'tcx>, adt: &'tcx ty::AdtDef, sp: Span, did: DefId) {
1945     let variant_spans: Vec<_> = adt.variants.iter().map(|variant| {
1946         tcx.hir().span_if_local(variant.def_id).unwrap()
1947     }).collect();
1948     let msg = format!(
1949         "needs exactly one variant, but has {}",
1950         adt.variants.len(),
1951     );
1952     let mut err = struct_span_err!(tcx.sess, sp, E0731, "transparent enum {}", msg);
1953     err.span_label(sp, &msg);
1954     if let &[ref start @ .., ref end] = &variant_spans[..] {
1955         for variant_span in start {
1956             err.span_label(*variant_span, "");
1957         }
1958         err.span_label(*end, &format!("too many variants in `{}`", tcx.def_path_str(did)));
1959     }
1960     err.emit();
1961 }
1962
1963 /// Emit an error when encountering more or less than one non-zero-sized field in a transparent
1964 /// enum.
1965 fn bad_non_zero_sized_fields<'tcx>(
1966     tcx: TyCtxt<'tcx>,
1967     adt: &'tcx ty::AdtDef,
1968     field_count: usize,
1969     field_spans: impl Iterator<Item = Span>,
1970     sp: Span,
1971 ) {
1972     let msg = format!("needs exactly one non-zero-sized field, but has {}", field_count);
1973     let mut err = struct_span_err!(
1974         tcx.sess,
1975         sp,
1976         E0690,
1977         "{}transparent {} {}",
1978         if adt.is_enum() { "the variant of a " } else { "" },
1979         adt.descr(),
1980         msg,
1981     );
1982     err.span_label(sp, &msg);
1983     for sp in field_spans {
1984         err.span_label(sp, "this field is non-zero-sized");
1985     }
1986     err.emit();
1987 }
1988
1989 fn check_transparent(tcx: TyCtxt<'_>, sp: Span, def_id: DefId) {
1990     let adt = tcx.adt_def(def_id);
1991     if !adt.repr.transparent() {
1992         return;
1993     }
1994     let sp = tcx.sess.source_map().def_span(sp);
1995
1996     if adt.is_enum() {
1997         if !tcx.features().transparent_enums {
1998             emit_feature_err(
1999                 &tcx.sess.parse_sess,
2000                 sym::transparent_enums,
2001                 sp,
2002                 GateIssue::Language,
2003                 "transparent enums are unstable",
2004             );
2005         }
2006         if adt.variants.len() != 1 {
2007             bad_variant_count(tcx, adt, sp, def_id);
2008             if adt.variants.is_empty() {
2009                 // Don't bother checking the fields. No variants (and thus no fields) exist.
2010                 return;
2011             }
2012         }
2013     }
2014
2015     if adt.is_union() && !tcx.features().transparent_unions {
2016         emit_feature_err(&tcx.sess.parse_sess,
2017                          sym::transparent_unions,
2018                          sp,
2019                          GateIssue::Language,
2020                          "transparent unions are unstable");
2021     }
2022
2023     // For each field, figure out if it's known to be a ZST and align(1)
2024     let field_infos = adt.all_fields().map(|field| {
2025         let ty = field.ty(tcx, InternalSubsts::identity_for_item(tcx, field.did));
2026         let param_env = tcx.param_env(field.did);
2027         let layout = tcx.layout_of(param_env.and(ty));
2028         // We are currently checking the type this field came from, so it must be local
2029         let span = tcx.hir().span_if_local(field.did).unwrap();
2030         let zst = layout.map(|layout| layout.is_zst()).unwrap_or(false);
2031         let align1 = layout.map(|layout| layout.align.abi.bytes() == 1).unwrap_or(false);
2032         (span, zst, align1)
2033     });
2034
2035     let non_zst_fields = field_infos.clone().filter_map(|(span, zst, _align1)| if !zst {
2036         Some(span)
2037     } else {
2038         None
2039     });
2040     let non_zst_count = non_zst_fields.clone().count();
2041     if non_zst_count != 1 {
2042         bad_non_zero_sized_fields(tcx, adt, non_zst_count, non_zst_fields, sp);
2043     }
2044     for (span, zst, align1) in field_infos {
2045         if zst && !align1 {
2046             struct_span_err!(
2047                 tcx.sess,
2048                 span,
2049                 E0691,
2050                 "zero-sized field in transparent {} has alignment larger than 1",
2051                 adt.descr(),
2052             ).span_label(span, "has alignment larger than 1").emit();
2053         }
2054     }
2055 }
2056
2057 #[allow(trivial_numeric_casts)]
2058 pub fn check_enum<'tcx>(tcx: TyCtxt<'tcx>, sp: Span, vs: &'tcx [hir::Variant], id: hir::HirId) {
2059     let def_id = tcx.hir().local_def_id(id);
2060     let def = tcx.adt_def(def_id);
2061     def.destructor(tcx); // force the destructor to be evaluated
2062
2063     if vs.is_empty() {
2064         let attributes = tcx.get_attrs(def_id);
2065         if let Some(attr) = attr::find_by_name(&attributes, sym::repr) {
2066             struct_span_err!(
2067                 tcx.sess, attr.span, E0084,
2068                 "unsupported representation for zero-variant enum")
2069                 .span_label(sp, "zero-variant enum")
2070                 .emit();
2071         }
2072     }
2073
2074     let repr_type_ty = def.repr.discr_type().to_ty(tcx);
2075     if repr_type_ty == tcx.types.i128 || repr_type_ty == tcx.types.u128 {
2076         if !tcx.features().repr128 {
2077             emit_feature_err(&tcx.sess.parse_sess,
2078                              sym::repr128,
2079                              sp,
2080                              GateIssue::Language,
2081                              "repr with 128-bit type is unstable");
2082         }
2083     }
2084
2085     for v in vs {
2086         if let Some(ref e) = v.disr_expr {
2087             tcx.typeck_tables_of(tcx.hir().local_def_id(e.hir_id));
2088         }
2089     }
2090
2091     if tcx.adt_def(def_id).repr.int.is_none() && tcx.features().arbitrary_enum_discriminant {
2092         let is_unit =
2093             |var: &hir::Variant| match var.data {
2094                 hir::VariantData::Unit(..) => true,
2095                 _ => false
2096             };
2097
2098         let has_disr = |var: &hir::Variant| var.disr_expr.is_some();
2099         let has_non_units = vs.iter().any(|var| !is_unit(var));
2100         let disr_units = vs.iter().any(|var| is_unit(&var) && has_disr(&var));
2101         let disr_non_unit = vs.iter().any(|var| !is_unit(&var) && has_disr(&var));
2102
2103         if disr_non_unit || (disr_units && has_non_units) {
2104             let mut err = struct_span_err!(tcx.sess, sp, E0732,
2105                                            "`#[repr(inttype)]` must be specified");
2106             err.emit();
2107         }
2108     }
2109
2110     let mut disr_vals: Vec<Discr<'tcx>> = Vec::with_capacity(vs.len());
2111     for ((_, discr), v) in def.discriminants(tcx).zip(vs) {
2112         // Check for duplicate discriminant values
2113         if let Some(i) = disr_vals.iter().position(|&x| x.val == discr.val) {
2114             let variant_did = def.variants[VariantIdx::new(i)].def_id;
2115             let variant_i_hir_id = tcx.hir().as_local_hir_id(variant_did).unwrap();
2116             let variant_i = tcx.hir().expect_variant(variant_i_hir_id);
2117             let i_span = match variant_i.disr_expr {
2118                 Some(ref expr) => tcx.hir().span(expr.hir_id),
2119                 None => tcx.hir().span(variant_i_hir_id)
2120             };
2121             let span = match v.disr_expr {
2122                 Some(ref expr) => tcx.hir().span(expr.hir_id),
2123                 None => v.span
2124             };
2125             struct_span_err!(tcx.sess, span, E0081,
2126                              "discriminant value `{}` already exists", disr_vals[i])
2127                 .span_label(i_span, format!("first use of `{}`", disr_vals[i]))
2128                 .span_label(span , format!("enum already has `{}`", disr_vals[i]))
2129                 .emit();
2130         }
2131         disr_vals.push(discr);
2132     }
2133
2134     check_representable(tcx, sp, def_id);
2135     check_transparent(tcx, sp, def_id);
2136 }
2137
2138 fn report_unexpected_variant_res(tcx: TyCtxt<'_>, res: Res, span: Span, qpath: &QPath) {
2139     span_err!(tcx.sess, span, E0533,
2140               "expected unit struct/variant or constant, found {} `{}`",
2141               res.descr(),
2142               hir::print::to_string(tcx.hir(), |s| s.print_qpath(qpath, false)));
2143 }
2144
2145 impl<'a, 'tcx> AstConv<'tcx> for FnCtxt<'a, 'tcx> {
2146     fn tcx<'b>(&'b self) -> TyCtxt<'tcx> {
2147         self.tcx
2148     }
2149
2150     fn get_type_parameter_bounds(&self, _: Span, def_id: DefId)
2151                                  -> &'tcx ty::GenericPredicates<'tcx>
2152     {
2153         let tcx = self.tcx;
2154         let hir_id = tcx.hir().as_local_hir_id(def_id).unwrap();
2155         let item_id = tcx.hir().ty_param_owner(hir_id);
2156         let item_def_id = tcx.hir().local_def_id(item_id);
2157         let generics = tcx.generics_of(item_def_id);
2158         let index = generics.param_def_id_to_index[&def_id];
2159         tcx.arena.alloc(ty::GenericPredicates {
2160             parent: None,
2161             predicates: self.param_env.caller_bounds.iter().filter_map(|&predicate| {
2162                 match predicate {
2163                     ty::Predicate::Trait(ref data)
2164                     if data.skip_binder().self_ty().is_param(index) => {
2165                         // HACK(eddyb) should get the original `Span`.
2166                         let span = tcx.def_span(def_id);
2167                         Some((predicate, span))
2168                     }
2169                     _ => None
2170                 }
2171             }).collect()
2172         })
2173     }
2174
2175     fn re_infer(
2176         &self,
2177         def: Option<&ty::GenericParamDef>,
2178         span: Span,
2179     ) -> Option<ty::Region<'tcx>> {
2180         let v = match def {
2181             Some(def) => infer::EarlyBoundRegion(span, def.name),
2182             None => infer::MiscVariable(span)
2183         };
2184         Some(self.next_region_var(v))
2185     }
2186
2187     fn ty_infer(&self, param: Option<&ty::GenericParamDef>, span: Span) -> Ty<'tcx> {
2188         if let Some(param) = param {
2189             if let UnpackedKind::Type(ty) = self.var_for_def(span, param).unpack() {
2190                 return ty;
2191             }
2192             unreachable!()
2193         } else {
2194             self.next_ty_var(TypeVariableOrigin {
2195                 kind: TypeVariableOriginKind::TypeInference,
2196                 span,
2197             })
2198         }
2199     }
2200
2201     fn ct_infer(
2202         &self,
2203         ty: Ty<'tcx>,
2204         param: Option<&ty::GenericParamDef>,
2205         span: Span,
2206     ) -> &'tcx Const<'tcx> {
2207         if let Some(param) = param {
2208             if let UnpackedKind::Const(ct) = self.var_for_def(span, param).unpack() {
2209                 return ct;
2210             }
2211             unreachable!()
2212         } else {
2213             self.next_const_var(ty, ConstVariableOrigin {
2214                 kind: ConstVariableOriginKind::ConstInference,
2215                 span,
2216             })
2217         }
2218     }
2219
2220     fn projected_ty_from_poly_trait_ref(&self,
2221                                         span: Span,
2222                                         item_def_id: DefId,
2223                                         poly_trait_ref: ty::PolyTraitRef<'tcx>)
2224                                         -> Ty<'tcx>
2225     {
2226         let (trait_ref, _) = self.replace_bound_vars_with_fresh_vars(
2227             span,
2228             infer::LateBoundRegionConversionTime::AssocTypeProjection(item_def_id),
2229             &poly_trait_ref
2230         );
2231
2232         self.tcx().mk_projection(item_def_id, trait_ref.substs)
2233     }
2234
2235     fn normalize_ty(&self, span: Span, ty: Ty<'tcx>) -> Ty<'tcx> {
2236         if ty.has_escaping_bound_vars() {
2237             ty // FIXME: normalization and escaping regions
2238         } else {
2239             self.normalize_associated_types_in(span, &ty)
2240         }
2241     }
2242
2243     fn set_tainted_by_errors(&self) {
2244         self.infcx.set_tainted_by_errors()
2245     }
2246
2247     fn record_ty(&self, hir_id: hir::HirId, ty: Ty<'tcx>, _span: Span) {
2248         self.write_ty(hir_id, ty)
2249     }
2250 }
2251
2252 /// Controls whether the arguments are tupled. This is used for the call
2253 /// operator.
2254 ///
2255 /// Tupling means that all call-side arguments are packed into a tuple and
2256 /// passed as a single parameter. For example, if tupling is enabled, this
2257 /// function:
2258 ///
2259 ///     fn f(x: (isize, isize))
2260 ///
2261 /// Can be called as:
2262 ///
2263 ///     f(1, 2);
2264 ///
2265 /// Instead of:
2266 ///
2267 ///     f((1, 2));
2268 #[derive(Clone, Eq, PartialEq)]
2269 enum TupleArgumentsFlag {
2270     DontTupleArguments,
2271     TupleArguments,
2272 }
2273
2274 impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
2275     pub fn new(
2276         inh: &'a Inherited<'a, 'tcx>,
2277         param_env: ty::ParamEnv<'tcx>,
2278         body_id: hir::HirId,
2279     ) -> FnCtxt<'a, 'tcx> {
2280         FnCtxt {
2281             body_id,
2282             param_env,
2283             err_count_on_creation: inh.tcx.sess.err_count(),
2284             ret_coercion: None,
2285             ret_coercion_span: RefCell::new(None),
2286             yield_ty: None,
2287             ps: RefCell::new(UnsafetyState::function(hir::Unsafety::Normal,
2288                                                      hir::CRATE_HIR_ID)),
2289             diverges: Cell::new(Diverges::Maybe),
2290             has_errors: Cell::new(false),
2291             enclosing_breakables: RefCell::new(EnclosingBreakables {
2292                 stack: Vec::new(),
2293                 by_id: Default::default(),
2294             }),
2295             inh,
2296         }
2297     }
2298
2299     pub fn sess(&self) -> &Session {
2300         &self.tcx.sess
2301     }
2302
2303     pub fn errors_reported_since_creation(&self) -> bool {
2304         self.tcx.sess.err_count() > self.err_count_on_creation
2305     }
2306
2307     /// Produces warning on the given node, if the current point in the
2308     /// function is unreachable, and there hasn't been another warning.
2309     fn warn_if_unreachable(&self, id: hir::HirId, span: Span, kind: &str) {
2310         if self.diverges.get() == Diverges::Always &&
2311             // If span arose from a desugaring of `if` or `while`, then it is the condition itself,
2312             // which diverges, that we are about to lint on. This gives suboptimal diagnostics.
2313             // Instead, stop here so that the `if`- or `while`-expression's block is linted instead.
2314             !span.is_desugaring(DesugaringKind::CondTemporary) {
2315             self.diverges.set(Diverges::WarnedAlways);
2316
2317             debug!("warn_if_unreachable: id={:?} span={:?} kind={}", id, span, kind);
2318
2319             let msg = format!("unreachable {}", kind);
2320             self.tcx().lint_hir(lint::builtin::UNREACHABLE_CODE, id, span, &msg);
2321         }
2322     }
2323
2324     pub fn cause(&self,
2325                  span: Span,
2326                  code: ObligationCauseCode<'tcx>)
2327                  -> ObligationCause<'tcx> {
2328         ObligationCause::new(span, self.body_id, code)
2329     }
2330
2331     pub fn misc(&self, span: Span) -> ObligationCause<'tcx> {
2332         self.cause(span, ObligationCauseCode::MiscObligation)
2333     }
2334
2335     /// Resolves type variables in `ty` if possible. Unlike the infcx
2336     /// version (resolve_vars_if_possible), this version will
2337     /// also select obligations if it seems useful, in an effort
2338     /// to get more type information.
2339     fn resolve_type_vars_with_obligations(&self, mut ty: Ty<'tcx>) -> Ty<'tcx> {
2340         debug!("resolve_type_vars_with_obligations(ty={:?})", ty);
2341
2342         // No Infer()? Nothing needs doing.
2343         if !ty.has_infer_types() {
2344             debug!("resolve_type_vars_with_obligations: ty={:?}", ty);
2345             return ty;
2346         }
2347
2348         // If `ty` is a type variable, see whether we already know what it is.
2349         ty = self.resolve_vars_if_possible(&ty);
2350         if !ty.has_infer_types() {
2351             debug!("resolve_type_vars_with_obligations: ty={:?}", ty);
2352             return ty;
2353         }
2354
2355         // If not, try resolving pending obligations as much as
2356         // possible. This can help substantially when there are
2357         // indirect dependencies that don't seem worth tracking
2358         // precisely.
2359         self.select_obligations_where_possible(false);
2360         ty = self.resolve_vars_if_possible(&ty);
2361
2362         debug!("resolve_type_vars_with_obligations: ty={:?}", ty);
2363         ty
2364     }
2365
2366     fn record_deferred_call_resolution(
2367         &self,
2368         closure_def_id: DefId,
2369         r: DeferredCallResolution<'tcx>,
2370     ) {
2371         let mut deferred_call_resolutions = self.deferred_call_resolutions.borrow_mut();
2372         deferred_call_resolutions.entry(closure_def_id).or_default().push(r);
2373     }
2374
2375     fn remove_deferred_call_resolutions(
2376         &self,
2377         closure_def_id: DefId,
2378     ) -> Vec<DeferredCallResolution<'tcx>> {
2379         let mut deferred_call_resolutions = self.deferred_call_resolutions.borrow_mut();
2380         deferred_call_resolutions.remove(&closure_def_id).unwrap_or(vec![])
2381     }
2382
2383     pub fn tag(&self) -> String {
2384         format!("{:p}", self)
2385     }
2386
2387     pub fn local_ty(&self, span: Span, nid: hir::HirId) -> LocalTy<'tcx> {
2388         self.locals.borrow().get(&nid).cloned().unwrap_or_else(||
2389             span_bug!(span, "no type for local variable {}",
2390                       self.tcx.hir().node_to_string(nid))
2391         )
2392     }
2393
2394     #[inline]
2395     pub fn write_ty(&self, id: hir::HirId, ty: Ty<'tcx>) {
2396         debug!("write_ty({:?}, {:?}) in fcx {}",
2397                id, self.resolve_vars_if_possible(&ty), self.tag());
2398         self.tables.borrow_mut().node_types_mut().insert(id, ty);
2399
2400         if ty.references_error() {
2401             self.has_errors.set(true);
2402             self.set_tainted_by_errors();
2403         }
2404     }
2405
2406     pub fn write_field_index(&self, hir_id: hir::HirId, index: usize) {
2407         self.tables.borrow_mut().field_indices_mut().insert(hir_id, index);
2408     }
2409
2410     fn write_resolution(&self, hir_id: hir::HirId, r: Result<(DefKind, DefId), ErrorReported>) {
2411         self.tables.borrow_mut().type_dependent_defs_mut().insert(hir_id, r);
2412     }
2413
2414     pub fn write_method_call(&self,
2415                              hir_id: hir::HirId,
2416                              method: MethodCallee<'tcx>) {
2417         debug!("write_method_call(hir_id={:?}, method={:?})", hir_id, method);
2418         self.write_resolution(hir_id, Ok((DefKind::Method, method.def_id)));
2419         self.write_substs(hir_id, method.substs);
2420
2421         // When the method is confirmed, the `method.substs` includes
2422         // parameters from not just the method, but also the impl of
2423         // the method -- in particular, the `Self` type will be fully
2424         // resolved. However, those are not something that the "user
2425         // specified" -- i.e., those types come from the inferred type
2426         // of the receiver, not something the user wrote. So when we
2427         // create the user-substs, we want to replace those earlier
2428         // types with just the types that the user actually wrote --
2429         // that is, those that appear on the *method itself*.
2430         //
2431         // As an example, if the user wrote something like
2432         // `foo.bar::<u32>(...)` -- the `Self` type here will be the
2433         // type of `foo` (possibly adjusted), but we don't want to
2434         // include that. We want just the `[_, u32]` part.
2435         if !method.substs.is_noop() {
2436             let method_generics = self.tcx.generics_of(method.def_id);
2437             if !method_generics.params.is_empty() {
2438                 let user_type_annotation = self.infcx.probe(|_| {
2439                     let user_substs = UserSubsts {
2440                         substs: InternalSubsts::for_item(self.tcx, method.def_id, |param, _| {
2441                             let i = param.index as usize;
2442                             if i < method_generics.parent_count {
2443                                 self.infcx.var_for_def(DUMMY_SP, param)
2444                             } else {
2445                                 method.substs[i]
2446                             }
2447                         }),
2448                         user_self_ty: None, // not relevant here
2449                     };
2450
2451                     self.infcx.canonicalize_user_type_annotation(&UserType::TypeOf(
2452                         method.def_id,
2453                         user_substs,
2454                     ))
2455                 });
2456
2457                 debug!("write_method_call: user_type_annotation={:?}", user_type_annotation);
2458                 self.write_user_type_annotation(hir_id, user_type_annotation);
2459             }
2460         }
2461     }
2462
2463     pub fn write_substs(&self, node_id: hir::HirId, substs: SubstsRef<'tcx>) {
2464         if !substs.is_noop() {
2465             debug!("write_substs({:?}, {:?}) in fcx {}",
2466                    node_id,
2467                    substs,
2468                    self.tag());
2469
2470             self.tables.borrow_mut().node_substs_mut().insert(node_id, substs);
2471         }
2472     }
2473
2474     /// Given the substs that we just converted from the HIR, try to
2475     /// canonicalize them and store them as user-given substitutions
2476     /// (i.e., substitutions that must be respected by the NLL check).
2477     ///
2478     /// This should be invoked **before any unifications have
2479     /// occurred**, so that annotations like `Vec<_>` are preserved
2480     /// properly.
2481     pub fn write_user_type_annotation_from_substs(
2482         &self,
2483         hir_id: hir::HirId,
2484         def_id: DefId,
2485         substs: SubstsRef<'tcx>,
2486         user_self_ty: Option<UserSelfTy<'tcx>>,
2487     ) {
2488         debug!(
2489             "write_user_type_annotation_from_substs: hir_id={:?} def_id={:?} substs={:?} \
2490              user_self_ty={:?} in fcx {}",
2491             hir_id, def_id, substs, user_self_ty, self.tag(),
2492         );
2493
2494         if Self::can_contain_user_lifetime_bounds((substs, user_self_ty)) {
2495             let canonicalized = self.infcx.canonicalize_user_type_annotation(
2496                 &UserType::TypeOf(def_id, UserSubsts {
2497                     substs,
2498                     user_self_ty,
2499                 })
2500             );
2501             debug!("write_user_type_annotation_from_substs: canonicalized={:?}", canonicalized);
2502             self.write_user_type_annotation(hir_id, canonicalized);
2503         }
2504     }
2505
2506     pub fn write_user_type_annotation(
2507         &self,
2508         hir_id: hir::HirId,
2509         canonical_user_type_annotation: CanonicalUserType<'tcx>,
2510     ) {
2511         debug!(
2512             "write_user_type_annotation: hir_id={:?} canonical_user_type_annotation={:?} tag={}",
2513             hir_id, canonical_user_type_annotation, self.tag(),
2514         );
2515
2516         if !canonical_user_type_annotation.is_identity() {
2517             self.tables.borrow_mut().user_provided_types_mut().insert(
2518                 hir_id, canonical_user_type_annotation
2519             );
2520         } else {
2521             debug!("write_user_type_annotation: skipping identity substs");
2522         }
2523     }
2524
2525     pub fn apply_adjustments(&self, expr: &hir::Expr, adj: Vec<Adjustment<'tcx>>) {
2526         debug!("apply_adjustments(expr={:?}, adj={:?})", expr, adj);
2527
2528         if adj.is_empty() {
2529             return;
2530         }
2531
2532         match self.tables.borrow_mut().adjustments_mut().entry(expr.hir_id) {
2533             Entry::Vacant(entry) => { entry.insert(adj); },
2534             Entry::Occupied(mut entry) => {
2535                 debug!(" - composing on top of {:?}", entry.get());
2536                 match (&entry.get()[..], &adj[..]) {
2537                     // Applying any adjustment on top of a NeverToAny
2538                     // is a valid NeverToAny adjustment, because it can't
2539                     // be reached.
2540                     (&[Adjustment { kind: Adjust::NeverToAny, .. }], _) => return,
2541                     (&[
2542                         Adjustment { kind: Adjust::Deref(_), .. },
2543                         Adjustment { kind: Adjust::Borrow(AutoBorrow::Ref(..)), .. },
2544                     ], &[
2545                         Adjustment { kind: Adjust::Deref(_), .. },
2546                         .. // Any following adjustments are allowed.
2547                     ]) => {
2548                         // A reborrow has no effect before a dereference.
2549                     }
2550                     // FIXME: currently we never try to compose autoderefs
2551                     // and ReifyFnPointer/UnsafeFnPointer, but we could.
2552                     _ =>
2553                         bug!("while adjusting {:?}, can't compose {:?} and {:?}",
2554                              expr, entry.get(), adj)
2555                 };
2556                 *entry.get_mut() = adj;
2557             }
2558         }
2559     }
2560
2561     /// Basically whenever we are converting from a type scheme into
2562     /// the fn body space, we always want to normalize associated
2563     /// types as well. This function combines the two.
2564     fn instantiate_type_scheme<T>(&self,
2565                                   span: Span,
2566                                   substs: SubstsRef<'tcx>,
2567                                   value: &T)
2568                                   -> T
2569         where T : TypeFoldable<'tcx>
2570     {
2571         let value = value.subst(self.tcx, substs);
2572         let result = self.normalize_associated_types_in(span, &value);
2573         debug!("instantiate_type_scheme(value={:?}, substs={:?}) = {:?}",
2574                value,
2575                substs,
2576                result);
2577         result
2578     }
2579
2580     /// As `instantiate_type_scheme`, but for the bounds found in a
2581     /// generic type scheme.
2582     fn instantiate_bounds(&self, span: Span, def_id: DefId, substs: SubstsRef<'tcx>)
2583                           -> ty::InstantiatedPredicates<'tcx> {
2584         let bounds = self.tcx.predicates_of(def_id);
2585         let result = bounds.instantiate(self.tcx, substs);
2586         let result = self.normalize_associated_types_in(span, &result);
2587         debug!("instantiate_bounds(bounds={:?}, substs={:?}) = {:?}",
2588                bounds,
2589                substs,
2590                result);
2591         result
2592     }
2593
2594     /// Replaces the opaque types from the given value with type variables,
2595     /// and records the `OpaqueTypeMap` for later use during writeback. See
2596     /// `InferCtxt::instantiate_opaque_types` for more details.
2597     fn instantiate_opaque_types_from_value<T: TypeFoldable<'tcx>>(
2598         &self,
2599         parent_id: hir::HirId,
2600         value: &T,
2601         value_span: Span,
2602     ) -> T {
2603         let parent_def_id = self.tcx.hir().local_def_id(parent_id);
2604         debug!("instantiate_opaque_types_from_value(parent_def_id={:?}, value={:?})",
2605                parent_def_id,
2606                value);
2607
2608         let (value, opaque_type_map) = self.register_infer_ok_obligations(
2609             self.instantiate_opaque_types(
2610                 parent_def_id,
2611                 self.body_id,
2612                 self.param_env,
2613                 value,
2614                 value_span,
2615             )
2616         );
2617
2618         let mut opaque_types = self.opaque_types.borrow_mut();
2619         for (ty, decl) in opaque_type_map {
2620             let old_value = opaque_types.insert(ty, decl);
2621             assert!(old_value.is_none(), "instantiated twice: {:?}/{:?}", ty, decl);
2622         }
2623
2624         value
2625     }
2626
2627     fn normalize_associated_types_in<T>(&self, span: Span, value: &T) -> T
2628         where T : TypeFoldable<'tcx>
2629     {
2630         self.inh.normalize_associated_types_in(span, self.body_id, self.param_env, value)
2631     }
2632
2633     fn normalize_associated_types_in_as_infer_ok<T>(&self, span: Span, value: &T)
2634                                                     -> InferOk<'tcx, T>
2635         where T : TypeFoldable<'tcx>
2636     {
2637         self.inh.partially_normalize_associated_types_in(span,
2638                                                          self.body_id,
2639                                                          self.param_env,
2640                                                          value)
2641     }
2642
2643     pub fn require_type_meets(&self,
2644                               ty: Ty<'tcx>,
2645                               span: Span,
2646                               code: traits::ObligationCauseCode<'tcx>,
2647                               def_id: DefId)
2648     {
2649         self.register_bound(
2650             ty,
2651             def_id,
2652             traits::ObligationCause::new(span, self.body_id, code));
2653     }
2654
2655     pub fn require_type_is_sized(&self,
2656                                  ty: Ty<'tcx>,
2657                                  span: Span,
2658                                  code: traits::ObligationCauseCode<'tcx>)
2659     {
2660         let lang_item = self.tcx.require_lang_item(lang_items::SizedTraitLangItem, None);
2661         self.require_type_meets(ty, span, code, lang_item);
2662     }
2663
2664     pub fn require_type_is_sized_deferred(&self,
2665                                           ty: Ty<'tcx>,
2666                                           span: Span,
2667                                           code: traits::ObligationCauseCode<'tcx>)
2668     {
2669         self.deferred_sized_obligations.borrow_mut().push((ty, span, code));
2670     }
2671
2672     pub fn register_bound(&self,
2673                           ty: Ty<'tcx>,
2674                           def_id: DefId,
2675                           cause: traits::ObligationCause<'tcx>)
2676     {
2677         self.fulfillment_cx.borrow_mut()
2678                            .register_bound(self, self.param_env, ty, def_id, cause);
2679     }
2680
2681     pub fn to_ty(&self, ast_t: &hir::Ty) -> Ty<'tcx> {
2682         let t = AstConv::ast_ty_to_ty(self, ast_t);
2683         self.register_wf_obligation(t, ast_t.span, traits::MiscObligation);
2684         t
2685     }
2686
2687     pub fn to_ty_saving_user_provided_ty(&self, ast_ty: &hir::Ty) -> Ty<'tcx> {
2688         let ty = self.to_ty(ast_ty);
2689         debug!("to_ty_saving_user_provided_ty: ty={:?}", ty);
2690
2691         if Self::can_contain_user_lifetime_bounds(ty) {
2692             let c_ty = self.infcx.canonicalize_response(&UserType::Ty(ty));
2693             debug!("to_ty_saving_user_provided_ty: c_ty={:?}", c_ty);
2694             self.tables.borrow_mut().user_provided_types_mut().insert(ast_ty.hir_id, c_ty);
2695         }
2696
2697         ty
2698     }
2699
2700     /// Returns the `DefId` of the constant parameter that the provided expression is a path to.
2701     pub fn const_param_def_id(&self, hir_c: &hir::AnonConst) -> Option<DefId> {
2702         AstConv::const_param_def_id(self, &self.tcx.hir().body(hir_c.body).value)
2703     }
2704
2705     pub fn to_const(&self, ast_c: &hir::AnonConst, ty: Ty<'tcx>) -> &'tcx ty::Const<'tcx> {
2706         AstConv::ast_const_to_const(self, ast_c, ty)
2707     }
2708
2709     // If the type given by the user has free regions, save it for later, since
2710     // NLL would like to enforce those. Also pass in types that involve
2711     // projections, since those can resolve to `'static` bounds (modulo #54940,
2712     // which hopefully will be fixed by the time you see this comment, dear
2713     // reader, although I have my doubts). Also pass in types with inference
2714     // types, because they may be repeated. Other sorts of things are already
2715     // sufficiently enforced with erased regions. =)
2716     fn can_contain_user_lifetime_bounds<T>(t: T) -> bool
2717     where
2718         T: TypeFoldable<'tcx>
2719     {
2720         t.has_free_regions() || t.has_projections() || t.has_infer_types()
2721     }
2722
2723     pub fn node_ty(&self, id: hir::HirId) -> Ty<'tcx> {
2724         match self.tables.borrow().node_types().get(id) {
2725             Some(&t) => t,
2726             None if self.is_tainted_by_errors() => self.tcx.types.err,
2727             None => {
2728                 bug!("no type for node {}: {} in fcx {}",
2729                      id, self.tcx.hir().node_to_string(id),
2730                      self.tag());
2731             }
2732         }
2733     }
2734
2735     /// Registers an obligation for checking later, during regionck, that the type `ty` must
2736     /// outlive the region `r`.
2737     pub fn register_wf_obligation(&self,
2738                                   ty: Ty<'tcx>,
2739                                   span: Span,
2740                                   code: traits::ObligationCauseCode<'tcx>)
2741     {
2742         // WF obligations never themselves fail, so no real need to give a detailed cause:
2743         let cause = traits::ObligationCause::new(span, self.body_id, code);
2744         self.register_predicate(traits::Obligation::new(cause,
2745                                                         self.param_env,
2746                                                         ty::Predicate::WellFormed(ty)));
2747     }
2748
2749     /// Registers obligations that all types appearing in `substs` are well-formed.
2750     pub fn add_wf_bounds(&self, substs: SubstsRef<'tcx>, expr: &hir::Expr) {
2751         for ty in substs.types() {
2752             self.register_wf_obligation(ty, expr.span, traits::MiscObligation);
2753         }
2754     }
2755
2756     /// Given a fully substituted set of bounds (`generic_bounds`), and the values with which each
2757     /// type/region parameter was instantiated (`substs`), creates and registers suitable
2758     /// trait/region obligations.
2759     ///
2760     /// For example, if there is a function:
2761     ///
2762     /// ```
2763     /// fn foo<'a,T:'a>(...)
2764     /// ```
2765     ///
2766     /// and a reference:
2767     ///
2768     /// ```
2769     /// let f = foo;
2770     /// ```
2771     ///
2772     /// Then we will create a fresh region variable `'$0` and a fresh type variable `$1` for `'a`
2773     /// and `T`. This routine will add a region obligation `$1:'$0` and register it locally.
2774     pub fn add_obligations_for_parameters(&self,
2775                                           cause: traits::ObligationCause<'tcx>,
2776                                           predicates: &ty::InstantiatedPredicates<'tcx>)
2777     {
2778         assert!(!predicates.has_escaping_bound_vars());
2779
2780         debug!("add_obligations_for_parameters(predicates={:?})",
2781                predicates);
2782
2783         for obligation in traits::predicates_for_generics(cause, self.param_env, predicates) {
2784             self.register_predicate(obligation);
2785         }
2786     }
2787
2788     // FIXME(arielb1): use this instead of field.ty everywhere
2789     // Only for fields! Returns <none> for methods>
2790     // Indifferent to privacy flags
2791     pub fn field_ty(&self,
2792                     span: Span,
2793                     field: &'tcx ty::FieldDef,
2794                     substs: SubstsRef<'tcx>)
2795                     -> Ty<'tcx>
2796     {
2797         self.normalize_associated_types_in(span, &field.ty(self.tcx, substs))
2798     }
2799
2800     fn check_casts(&self) {
2801         let mut deferred_cast_checks = self.deferred_cast_checks.borrow_mut();
2802         for cast in deferred_cast_checks.drain(..) {
2803             cast.check(self);
2804         }
2805     }
2806
2807     fn resolve_generator_interiors(&self, def_id: DefId) {
2808         let mut generators = self.deferred_generator_interiors.borrow_mut();
2809         for (body_id, interior, kind) in generators.drain(..) {
2810             self.select_obligations_where_possible(false);
2811             generator_interior::resolve_interior(self, def_id, body_id, interior, kind);
2812         }
2813     }
2814
2815     // Tries to apply a fallback to `ty` if it is an unsolved variable.
2816     // Non-numerics get replaced with ! or () (depending on whether
2817     // feature(never_type) is enabled, unconstrained ints with i32,
2818     // unconstrained floats with f64.
2819     // Fallback becomes very dubious if we have encountered type-checking errors.
2820     // In that case, fallback to Error.
2821     // The return value indicates whether fallback has occurred.
2822     fn fallback_if_possible(&self, ty: Ty<'tcx>) -> bool {
2823         use rustc::ty::error::UnconstrainedNumeric::Neither;
2824         use rustc::ty::error::UnconstrainedNumeric::{UnconstrainedInt, UnconstrainedFloat};
2825
2826         assert!(ty.is_ty_infer());
2827         let fallback = match self.type_is_unconstrained_numeric(ty) {
2828             _ if self.is_tainted_by_errors() => self.tcx().types.err,
2829             UnconstrainedInt => self.tcx.types.i32,
2830             UnconstrainedFloat => self.tcx.types.f64,
2831             Neither if self.type_var_diverges(ty) => self.tcx.mk_diverging_default(),
2832             Neither => return false,
2833         };
2834         debug!("fallback_if_possible: defaulting `{:?}` to `{:?}`", ty, fallback);
2835         self.demand_eqtype(syntax_pos::DUMMY_SP, ty, fallback);
2836         true
2837     }
2838
2839     fn select_all_obligations_or_error(&self) {
2840         debug!("select_all_obligations_or_error");
2841         if let Err(errors) = self.fulfillment_cx.borrow_mut().select_all_or_error(&self) {
2842             self.report_fulfillment_errors(&errors, self.inh.body_id, false);
2843         }
2844     }
2845
2846     /// Select as many obligations as we can at present.
2847     fn select_obligations_where_possible(&self, fallback_has_occurred: bool) {
2848         if let Err(errors) = self.fulfillment_cx.borrow_mut().select_where_possible(self) {
2849             self.report_fulfillment_errors(&errors, self.inh.body_id, fallback_has_occurred);
2850         }
2851     }
2852
2853     /// For the overloaded place expressions (`*x`, `x[3]`), the trait
2854     /// returns a type of `&T`, but the actual type we assign to the
2855     /// *expression* is `T`. So this function just peels off the return
2856     /// type by one layer to yield `T`.
2857     fn make_overloaded_place_return_type(&self,
2858                                           method: MethodCallee<'tcx>)
2859                                           -> ty::TypeAndMut<'tcx>
2860     {
2861         // extract method return type, which will be &T;
2862         let ret_ty = method.sig.output();
2863
2864         // method returns &T, but the type as visible to user is T, so deref
2865         ret_ty.builtin_deref(true).unwrap()
2866     }
2867
2868     fn lookup_indexing(
2869         &self,
2870         expr: &hir::Expr,
2871         base_expr: &'tcx hir::Expr,
2872         base_ty: Ty<'tcx>,
2873         idx_ty: Ty<'tcx>,
2874         needs: Needs,
2875     ) -> Option<(/*index type*/ Ty<'tcx>, /*element type*/ Ty<'tcx>)> {
2876         // FIXME(#18741) -- this is almost but not quite the same as the
2877         // autoderef that normal method probing does. They could likely be
2878         // consolidated.
2879
2880         let mut autoderef = self.autoderef(base_expr.span, base_ty);
2881         let mut result = None;
2882         while result.is_none() && autoderef.next().is_some() {
2883             result = self.try_index_step(expr, base_expr, &autoderef, needs, idx_ty);
2884         }
2885         autoderef.finalize(self);
2886         result
2887     }
2888
2889     /// To type-check `base_expr[index_expr]`, we progressively autoderef
2890     /// (and otherwise adjust) `base_expr`, looking for a type which either
2891     /// supports builtin indexing or overloaded indexing.
2892     /// This loop implements one step in that search; the autoderef loop
2893     /// is implemented by `lookup_indexing`.
2894     fn try_index_step(
2895         &self,
2896         expr: &hir::Expr,
2897         base_expr: &hir::Expr,
2898         autoderef: &Autoderef<'a, 'tcx>,
2899         needs: Needs,
2900         index_ty: Ty<'tcx>,
2901     ) -> Option<(/*index type*/ Ty<'tcx>, /*element type*/ Ty<'tcx>)> {
2902         let adjusted_ty = autoderef.unambiguous_final_ty(self);
2903         debug!("try_index_step(expr={:?}, base_expr={:?}, adjusted_ty={:?}, \
2904                                index_ty={:?})",
2905                expr,
2906                base_expr,
2907                adjusted_ty,
2908                index_ty);
2909
2910         for &unsize in &[false, true] {
2911             let mut self_ty = adjusted_ty;
2912             if unsize {
2913                 // We only unsize arrays here.
2914                 if let ty::Array(element_ty, _) = adjusted_ty.sty {
2915                     self_ty = self.tcx.mk_slice(element_ty);
2916                 } else {
2917                     continue;
2918                 }
2919             }
2920
2921             // If some lookup succeeds, write callee into table and extract index/element
2922             // type from the method signature.
2923             // If some lookup succeeded, install method in table
2924             let input_ty = self.next_ty_var(TypeVariableOrigin {
2925                 kind: TypeVariableOriginKind::AutoDeref,
2926                 span: base_expr.span,
2927             });
2928             let method = self.try_overloaded_place_op(
2929                 expr.span, self_ty, &[input_ty], needs, PlaceOp::Index);
2930
2931             let result = method.map(|ok| {
2932                 debug!("try_index_step: success, using overloaded indexing");
2933                 let method = self.register_infer_ok_obligations(ok);
2934
2935                 let mut adjustments = autoderef.adjust_steps(self, needs);
2936                 if let ty::Ref(region, _, r_mutbl) = method.sig.inputs()[0].sty {
2937                     let mutbl = match r_mutbl {
2938                         hir::MutImmutable => AutoBorrowMutability::Immutable,
2939                         hir::MutMutable => AutoBorrowMutability::Mutable {
2940                             // Indexing can be desugared to a method call,
2941                             // so maybe we could use two-phase here.
2942                             // See the documentation of AllowTwoPhase for why that's
2943                             // not the case today.
2944                             allow_two_phase_borrow: AllowTwoPhase::No,
2945                         }
2946                     };
2947                     adjustments.push(Adjustment {
2948                         kind: Adjust::Borrow(AutoBorrow::Ref(region, mutbl)),
2949                         target: self.tcx.mk_ref(region, ty::TypeAndMut {
2950                             mutbl: r_mutbl,
2951                             ty: adjusted_ty
2952                         })
2953                     });
2954                 }
2955                 if unsize {
2956                     adjustments.push(Adjustment {
2957                         kind: Adjust::Pointer(PointerCast::Unsize),
2958                         target: method.sig.inputs()[0]
2959                     });
2960                 }
2961                 self.apply_adjustments(base_expr, adjustments);
2962
2963                 self.write_method_call(expr.hir_id, method);
2964                 (input_ty, self.make_overloaded_place_return_type(method).ty)
2965             });
2966             if result.is_some() {
2967                 return result;
2968             }
2969         }
2970
2971         None
2972     }
2973
2974     fn resolve_place_op(&self, op: PlaceOp, is_mut: bool) -> (Option<DefId>, ast::Ident) {
2975         let (tr, name) = match (op, is_mut) {
2976             (PlaceOp::Deref, false) => (self.tcx.lang_items().deref_trait(), sym::deref),
2977             (PlaceOp::Deref, true) => (self.tcx.lang_items().deref_mut_trait(), sym::deref_mut),
2978             (PlaceOp::Index, false) => (self.tcx.lang_items().index_trait(), sym::index),
2979             (PlaceOp::Index, true) => (self.tcx.lang_items().index_mut_trait(), sym::index_mut),
2980         };
2981         (tr, ast::Ident::with_dummy_span(name))
2982     }
2983
2984     fn try_overloaded_place_op(&self,
2985                                 span: Span,
2986                                 base_ty: Ty<'tcx>,
2987                                 arg_tys: &[Ty<'tcx>],
2988                                 needs: Needs,
2989                                 op: PlaceOp)
2990                                 -> Option<InferOk<'tcx, MethodCallee<'tcx>>>
2991     {
2992         debug!("try_overloaded_place_op({:?},{:?},{:?},{:?})",
2993                span,
2994                base_ty,
2995                needs,
2996                op);
2997
2998         // Try Mut first, if needed.
2999         let (mut_tr, mut_op) = self.resolve_place_op(op, true);
3000         let method = match (needs, mut_tr) {
3001             (Needs::MutPlace, Some(trait_did)) => {
3002                 self.lookup_method_in_trait(span, mut_op, trait_did, base_ty, Some(arg_tys))
3003             }
3004             _ => None,
3005         };
3006
3007         // Otherwise, fall back to the immutable version.
3008         let (imm_tr, imm_op) = self.resolve_place_op(op, false);
3009         let method = match (method, imm_tr) {
3010             (None, Some(trait_did)) => {
3011                 self.lookup_method_in_trait(span, imm_op, trait_did, base_ty, Some(arg_tys))
3012             }
3013             (method, _) => method,
3014         };
3015
3016         method
3017     }
3018
3019     fn check_method_argument_types(
3020         &self,
3021         sp: Span,
3022         expr_sp: Span,
3023         method: Result<MethodCallee<'tcx>, ()>,
3024         args_no_rcvr: &'tcx [hir::Expr],
3025         tuple_arguments: TupleArgumentsFlag,
3026         expected: Expectation<'tcx>,
3027     ) -> Ty<'tcx> {
3028         let has_error = match method {
3029             Ok(method) => {
3030                 method.substs.references_error() || method.sig.references_error()
3031             }
3032             Err(_) => true
3033         };
3034         if has_error {
3035             let err_inputs = self.err_args(args_no_rcvr.len());
3036
3037             let err_inputs = match tuple_arguments {
3038                 DontTupleArguments => err_inputs,
3039                 TupleArguments => vec![self.tcx.intern_tup(&err_inputs[..])],
3040             };
3041
3042             self.check_argument_types(sp, expr_sp, &err_inputs[..], &[], args_no_rcvr,
3043                                       false, tuple_arguments, None);
3044             return self.tcx.types.err;
3045         }
3046
3047         let method = method.unwrap();
3048         // HACK(eddyb) ignore self in the definition (see above).
3049         let expected_arg_tys = self.expected_inputs_for_expected_output(
3050             sp,
3051             expected,
3052             method.sig.output(),
3053             &method.sig.inputs()[1..]
3054         );
3055         self.check_argument_types(sp, expr_sp, &method.sig.inputs()[1..], &expected_arg_tys[..],
3056                                   args_no_rcvr, method.sig.c_variadic, tuple_arguments,
3057                                   self.tcx.hir().span_if_local(method.def_id));
3058         method.sig.output()
3059     }
3060
3061     fn self_type_matches_expected_vid(
3062         &self,
3063         trait_ref: ty::PolyTraitRef<'tcx>,
3064         expected_vid: ty::TyVid,
3065     ) -> bool {
3066         let self_ty = self.shallow_resolve(trait_ref.self_ty());
3067         debug!(
3068             "self_type_matches_expected_vid(trait_ref={:?}, self_ty={:?}, expected_vid={:?})",
3069             trait_ref, self_ty, expected_vid
3070         );
3071         match self_ty.sty {
3072             ty::Infer(ty::TyVar(found_vid)) => {
3073                 // FIXME: consider using `sub_root_var` here so we
3074                 // can see through subtyping.
3075                 let found_vid = self.root_var(found_vid);
3076                 debug!("self_type_matches_expected_vid - found_vid={:?}", found_vid);
3077                 expected_vid == found_vid
3078             }
3079             _ => false
3080         }
3081     }
3082
3083     fn obligations_for_self_ty<'b>(
3084         &'b self,
3085         self_ty: ty::TyVid,
3086     ) -> impl Iterator<Item = (ty::PolyTraitRef<'tcx>, traits::PredicateObligation<'tcx>)>
3087                  + Captures<'tcx>
3088                  + 'b {
3089         // FIXME: consider using `sub_root_var` here so we
3090         // can see through subtyping.
3091         let ty_var_root = self.root_var(self_ty);
3092         debug!("obligations_for_self_ty: self_ty={:?} ty_var_root={:?} pending_obligations={:?}",
3093                self_ty, ty_var_root,
3094                self.fulfillment_cx.borrow().pending_obligations());
3095
3096         self.fulfillment_cx
3097             .borrow()
3098             .pending_obligations()
3099             .into_iter()
3100             .filter_map(move |obligation| match obligation.predicate {
3101                 ty::Predicate::Projection(ref data) =>
3102                     Some((data.to_poly_trait_ref(self.tcx), obligation)),
3103                 ty::Predicate::Trait(ref data) =>
3104                     Some((data.to_poly_trait_ref(), obligation)),
3105                 ty::Predicate::Subtype(..) => None,
3106                 ty::Predicate::RegionOutlives(..) => None,
3107                 ty::Predicate::TypeOutlives(..) => None,
3108                 ty::Predicate::WellFormed(..) => None,
3109                 ty::Predicate::ObjectSafe(..) => None,
3110                 ty::Predicate::ConstEvaluatable(..) => None,
3111                 // N.B., this predicate is created by breaking down a
3112                 // `ClosureType: FnFoo()` predicate, where
3113                 // `ClosureType` represents some `Closure`. It can't
3114                 // possibly be referring to the current closure,
3115                 // because we haven't produced the `Closure` for
3116                 // this closure yet; this is exactly why the other
3117                 // code is looking for a self type of a unresolved
3118                 // inference variable.
3119                 ty::Predicate::ClosureKind(..) => None,
3120             }).filter(move |(tr, _)| self.self_type_matches_expected_vid(*tr, ty_var_root))
3121     }
3122
3123     fn type_var_is_sized(&self, self_ty: ty::TyVid) -> bool {
3124         self.obligations_for_self_ty(self_ty).any(|(tr, _)| {
3125             Some(tr.def_id()) == self.tcx.lang_items().sized_trait()
3126         })
3127     }
3128
3129     /// Generic function that factors out common logic from function calls,
3130     /// method calls and overloaded operators.
3131     fn check_argument_types(
3132         &self,
3133         sp: Span,
3134         expr_sp: Span,
3135         fn_inputs: &[Ty<'tcx>],
3136         expected_arg_tys: &[Ty<'tcx>],
3137         args: &'tcx [hir::Expr],
3138         c_variadic: bool,
3139         tuple_arguments: TupleArgumentsFlag,
3140         def_span: Option<Span>,
3141     ) {
3142         let tcx = self.tcx;
3143
3144         // Grab the argument types, supplying fresh type variables
3145         // if the wrong number of arguments were supplied
3146         let supplied_arg_count = if tuple_arguments == DontTupleArguments {
3147             args.len()
3148         } else {
3149             1
3150         };
3151
3152         // All the input types from the fn signature must outlive the call
3153         // so as to validate implied bounds.
3154         for &fn_input_ty in fn_inputs {
3155             self.register_wf_obligation(fn_input_ty, sp, traits::MiscObligation);
3156         }
3157
3158         let expected_arg_count = fn_inputs.len();
3159
3160         let param_count_error = |expected_count: usize,
3161                                  arg_count: usize,
3162                                  error_code: &str,
3163                                  c_variadic: bool,
3164                                  sugg_unit: bool| {
3165             let mut err = tcx.sess.struct_span_err_with_code(sp,
3166                 &format!("this function takes {}{} but {} {} supplied",
3167                     if c_variadic { "at least " } else { "" },
3168                     potentially_plural_count(expected_count, "parameter"),
3169                     potentially_plural_count(arg_count, "parameter"),
3170                     if arg_count == 1 {"was"} else {"were"}),
3171                 DiagnosticId::Error(error_code.to_owned()));
3172
3173             if let Some(def_s) = def_span.map(|sp| tcx.sess.source_map().def_span(sp)) {
3174                 err.span_label(def_s, "defined here");
3175             }
3176             if sugg_unit {
3177                 let sugg_span = tcx.sess.source_map().end_point(expr_sp);
3178                 // remove closing `)` from the span
3179                 let sugg_span = sugg_span.shrink_to_lo();
3180                 err.span_suggestion(
3181                     sugg_span,
3182                     "expected the unit value `()`; create it with empty parentheses",
3183                     String::from("()"),
3184                     Applicability::MachineApplicable);
3185             } else {
3186                 err.span_label(sp, format!("expected {}{}",
3187                                            if c_variadic { "at least " } else { "" },
3188                                            potentially_plural_count(expected_count, "parameter")));
3189             }
3190             err.emit();
3191         };
3192
3193         let mut expected_arg_tys = expected_arg_tys.to_vec();
3194
3195         let formal_tys = if tuple_arguments == TupleArguments {
3196             let tuple_type = self.structurally_resolved_type(sp, fn_inputs[0]);
3197             match tuple_type.sty {
3198                 ty::Tuple(arg_types) if arg_types.len() != args.len() => {
3199                     param_count_error(arg_types.len(), args.len(), "E0057", false, false);
3200                     expected_arg_tys = vec![];
3201                     self.err_args(args.len())
3202                 }
3203                 ty::Tuple(arg_types) => {
3204                     expected_arg_tys = match expected_arg_tys.get(0) {
3205                         Some(&ty) => match ty.sty {
3206                             ty::Tuple(ref tys) => tys.iter().map(|k| k.expect_ty()).collect(),
3207                             _ => vec![],
3208                         },
3209                         None => vec![],
3210                     };
3211                     arg_types.iter().map(|k| k.expect_ty()).collect()
3212                 }
3213                 _ => {
3214                     span_err!(tcx.sess, sp, E0059,
3215                         "cannot use call notation; the first type parameter \
3216                          for the function trait is neither a tuple nor unit");
3217                     expected_arg_tys = vec![];
3218                     self.err_args(args.len())
3219                 }
3220             }
3221         } else if expected_arg_count == supplied_arg_count {
3222             fn_inputs.to_vec()
3223         } else if c_variadic {
3224             if supplied_arg_count >= expected_arg_count {
3225                 fn_inputs.to_vec()
3226             } else {
3227                 param_count_error(expected_arg_count, supplied_arg_count, "E0060", true, false);
3228                 expected_arg_tys = vec![];
3229                 self.err_args(supplied_arg_count)
3230             }
3231         } else {
3232             // is the missing argument of type `()`?
3233             let sugg_unit = if expected_arg_tys.len() == 1 && supplied_arg_count == 0 {
3234                 self.resolve_vars_if_possible(&expected_arg_tys[0]).is_unit()
3235             } else if fn_inputs.len() == 1 && supplied_arg_count == 0 {
3236                 self.resolve_vars_if_possible(&fn_inputs[0]).is_unit()
3237             } else {
3238                 false
3239             };
3240             param_count_error(expected_arg_count, supplied_arg_count, "E0061", false, sugg_unit);
3241
3242             expected_arg_tys = vec![];
3243             self.err_args(supplied_arg_count)
3244         };
3245
3246         debug!("check_argument_types: formal_tys={:?}",
3247                formal_tys.iter().map(|t| self.ty_to_string(*t)).collect::<Vec<String>>());
3248
3249         // If there is no expectation, expect formal_tys.
3250         let expected_arg_tys = if !expected_arg_tys.is_empty() {
3251             expected_arg_tys
3252         } else {
3253             formal_tys.clone()
3254         };
3255
3256         let mut final_arg_types: Vec<(usize, Ty<'_>)> = vec![];
3257
3258         // Check the arguments.
3259         // We do this in a pretty awful way: first we type-check any arguments
3260         // that are not closures, then we type-check the closures. This is so
3261         // that we have more information about the types of arguments when we
3262         // type-check the functions. This isn't really the right way to do this.
3263         for &check_closures in &[false, true] {
3264             debug!("check_closures={}", check_closures);
3265
3266             // More awful hacks: before we check argument types, try to do
3267             // an "opportunistic" vtable resolution of any trait bounds on
3268             // the call. This helps coercions.
3269             if check_closures {
3270                 // We don't use `select_obligations_where_possible` to try to figure out if the
3271                 // obligation is comming from a single fn call argument, and if it is, we point
3272                 // at the expression corresponding to that argument, instead of the call.
3273                 if let Err(
3274                     mut errors,
3275                 ) = self.fulfillment_cx.borrow_mut().select_where_possible(self) {
3276                     self.point_at_arg_instead_of_call_if_possible(
3277                         &mut errors,
3278                         &final_arg_types[..],
3279                         sp,
3280                         &args,
3281                     );
3282                     self.report_fulfillment_errors(&errors, self.inh.body_id, false);
3283                 }
3284             }
3285
3286             // For C-variadic functions, we don't have a declared type for all of
3287             // the arguments hence we only do our usual type checking with
3288             // the arguments who's types we do know.
3289             let t = if c_variadic {
3290                 expected_arg_count
3291             } else if tuple_arguments == TupleArguments {
3292                 args.len()
3293             } else {
3294                 supplied_arg_count
3295             };
3296             for (i, arg) in args.iter().take(t).enumerate() {
3297                 // Warn only for the first loop (the "no closures" one).
3298                 // Closure arguments themselves can't be diverging, but
3299                 // a previous argument can, e.g., `foo(panic!(), || {})`.
3300                 if !check_closures {
3301                     self.warn_if_unreachable(arg.hir_id, arg.span, "expression");
3302                 }
3303
3304                 let is_closure = match arg.node {
3305                     ExprKind::Closure(..) => true,
3306                     _ => false
3307                 };
3308
3309                 if is_closure != check_closures {
3310                     continue;
3311                 }
3312
3313                 debug!("checking the argument");
3314                 let formal_ty = formal_tys[i];
3315
3316                 // The special-cased logic below has three functions:
3317                 // 1. Provide as good of an expected type as possible.
3318                 let expected = Expectation::rvalue_hint(self, expected_arg_tys[i]);
3319
3320                 let checked_ty = self.check_expr_with_expectation(&arg, expected);
3321
3322                 // 2. Coerce to the most detailed type that could be coerced
3323                 //    to, which is `expected_ty` if `rvalue_hint` returns an
3324                 //    `ExpectHasType(expected_ty)`, or the `formal_ty` otherwise.
3325                 let coerce_ty = expected.only_has_type(self).unwrap_or(formal_ty);
3326                 // We're processing function arguments so we definitely want to use
3327                 // two-phase borrows.
3328                 self.demand_coerce(&arg, checked_ty, coerce_ty, AllowTwoPhase::Yes);
3329                 final_arg_types.push((i, coerce_ty));
3330
3331                 // 3. Relate the expected type and the formal one,
3332                 //    if the expected type was used for the coercion.
3333                 self.demand_suptype(arg.span, formal_ty, coerce_ty);
3334             }
3335         }
3336
3337         // We also need to make sure we at least write the ty of the other
3338         // arguments which we skipped above.
3339         if c_variadic {
3340             fn variadic_error<'tcx>(s: &Session, span: Span, t: Ty<'tcx>, cast_ty: &str) {
3341                 use crate::structured_errors::{VariadicError, StructuredDiagnostic};
3342                 VariadicError::new(s, span, t, cast_ty).diagnostic().emit();
3343             }
3344
3345             for arg in args.iter().skip(expected_arg_count) {
3346                 let arg_ty = self.check_expr(&arg);
3347
3348                 // There are a few types which get autopromoted when passed via varargs
3349                 // in C but we just error out instead and require explicit casts.
3350                 let arg_ty = self.structurally_resolved_type(arg.span, arg_ty);
3351                 match arg_ty.sty {
3352                     ty::Float(ast::FloatTy::F32) => {
3353                         variadic_error(tcx.sess, arg.span, arg_ty, "c_double");
3354                     }
3355                     ty::Int(ast::IntTy::I8) | ty::Int(ast::IntTy::I16) | ty::Bool => {
3356                         variadic_error(tcx.sess, arg.span, arg_ty, "c_int");
3357                     }
3358                     ty::Uint(ast::UintTy::U8) | ty::Uint(ast::UintTy::U16) => {
3359                         variadic_error(tcx.sess, arg.span, arg_ty, "c_uint");
3360                     }
3361                     ty::FnDef(..) => {
3362                         let ptr_ty = self.tcx.mk_fn_ptr(arg_ty.fn_sig(self.tcx));
3363                         let ptr_ty = self.resolve_vars_if_possible(&ptr_ty);
3364                         variadic_error(tcx.sess, arg.span, arg_ty, &ptr_ty.to_string());
3365                     }
3366                     _ => {}
3367                 }
3368             }
3369         }
3370     }
3371
3372     fn err_args(&self, len: usize) -> Vec<Ty<'tcx>> {
3373         vec![self.tcx.types.err; len]
3374     }
3375
3376     fn point_at_arg_instead_of_call_if_possible(
3377         &self,
3378         errors: &mut Vec<traits::FulfillmentError<'_>>,
3379         final_arg_types: &[(usize, Ty<'tcx>)],
3380         call_sp: Span,
3381         args: &'tcx [hir::Expr],
3382     ) {
3383         if !call_sp.desugaring_kind().is_some() {
3384             // We *do not* do this for desugared call spans to keep good diagnostics when involving
3385             // the `?` operator.
3386             for error in errors {
3387                 if let ty::Predicate::Trait(predicate) = error.obligation.predicate {
3388                     let mut referenced_in = vec![];
3389                     for (i, ty) in final_arg_types {
3390                         let ty = self.resolve_vars_if_possible(ty);
3391                         for ty in ty.walk() {
3392                             if ty == predicate.skip_binder().self_ty() {
3393                                 referenced_in.push(*i);
3394                             }
3395                         }
3396                     }
3397                     if referenced_in.len() == 1 {
3398                         error.obligation.cause.span = args[referenced_in[0]].span;
3399                         error.points_at_arg_span = true;
3400                     }
3401                 }
3402             }
3403         }
3404     }
3405
3406     // AST fragment checking
3407     fn check_lit(&self,
3408                  lit: &hir::Lit,
3409                  expected: Expectation<'tcx>)
3410                  -> Ty<'tcx>
3411     {
3412         let tcx = self.tcx;
3413
3414         match lit.node {
3415             ast::LitKind::Str(..) => tcx.mk_static_str(),
3416             ast::LitKind::ByteStr(ref v) => {
3417                 tcx.mk_imm_ref(tcx.lifetimes.re_static,
3418                                tcx.mk_array(tcx.types.u8, v.len() as u64))
3419             }
3420             ast::LitKind::Byte(_) => tcx.types.u8,
3421             ast::LitKind::Char(_) => tcx.types.char,
3422             ast::LitKind::Int(_, ast::LitIntType::Signed(t)) => tcx.mk_mach_int(t),
3423             ast::LitKind::Int(_, ast::LitIntType::Unsigned(t)) => tcx.mk_mach_uint(t),
3424             ast::LitKind::Int(_, ast::LitIntType::Unsuffixed) => {
3425                 let opt_ty = expected.to_option(self).and_then(|ty| {
3426                     match ty.sty {
3427                         ty::Int(_) | ty::Uint(_) => Some(ty),
3428                         ty::Char => Some(tcx.types.u8),
3429                         ty::RawPtr(..) => Some(tcx.types.usize),
3430                         ty::FnDef(..) | ty::FnPtr(_) => Some(tcx.types.usize),
3431                         _ => None
3432                     }
3433                 });
3434                 opt_ty.unwrap_or_else(|| self.next_int_var())
3435             }
3436             ast::LitKind::Float(_, t) => tcx.mk_mach_float(t),
3437             ast::LitKind::FloatUnsuffixed(_) => {
3438                 let opt_ty = expected.to_option(self).and_then(|ty| {
3439                     match ty.sty {
3440                         ty::Float(_) => Some(ty),
3441                         _ => None
3442                     }
3443                 });
3444                 opt_ty.unwrap_or_else(|| self.next_float_var())
3445             }
3446             ast::LitKind::Bool(_) => tcx.types.bool,
3447             ast::LitKind::Err(_) => tcx.types.err,
3448         }
3449     }
3450
3451     // Determine the `Self` type, using fresh variables for all variables
3452     // declared on the impl declaration e.g., `impl<A,B> for Vec<(A,B)>`
3453     // would return `($0, $1)` where `$0` and `$1` are freshly instantiated type
3454     // variables.
3455     pub fn impl_self_ty(&self,
3456                         span: Span, // (potential) receiver for this impl
3457                         did: DefId)
3458                         -> TypeAndSubsts<'tcx> {
3459         let ity = self.tcx.type_of(did);
3460         debug!("impl_self_ty: ity={:?}", ity);
3461
3462         let substs = self.fresh_substs_for_item(span, did);
3463         let substd_ty = self.instantiate_type_scheme(span, &substs, &ity);
3464
3465         TypeAndSubsts { substs: substs, ty: substd_ty }
3466     }
3467
3468     /// Unifies the output type with the expected type early, for more coercions
3469     /// and forward type information on the input expressions.
3470     fn expected_inputs_for_expected_output(&self,
3471                                            call_span: Span,
3472                                            expected_ret: Expectation<'tcx>,
3473                                            formal_ret: Ty<'tcx>,
3474                                            formal_args: &[Ty<'tcx>])
3475                                            -> Vec<Ty<'tcx>> {
3476         let formal_ret = self.resolve_type_vars_with_obligations(formal_ret);
3477         let ret_ty = match expected_ret.only_has_type(self) {
3478             Some(ret) => ret,
3479             None => return Vec::new()
3480         };
3481         let expect_args = self.fudge_inference_if_ok(|| {
3482             // Attempt to apply a subtyping relationship between the formal
3483             // return type (likely containing type variables if the function
3484             // is polymorphic) and the expected return type.
3485             // No argument expectations are produced if unification fails.
3486             let origin = self.misc(call_span);
3487             let ures = self.at(&origin, self.param_env).sup(ret_ty, &formal_ret);
3488
3489             // FIXME(#27336) can't use ? here, Try::from_error doesn't default
3490             // to identity so the resulting type is not constrained.
3491             match ures {
3492                 Ok(ok) => {
3493                     // Process any obligations locally as much as
3494                     // we can.  We don't care if some things turn
3495                     // out unconstrained or ambiguous, as we're
3496                     // just trying to get hints here.
3497                     self.save_and_restore_in_snapshot_flag(|_| {
3498                         let mut fulfill = TraitEngine::new(self.tcx);
3499                         for obligation in ok.obligations {
3500                             fulfill.register_predicate_obligation(self, obligation);
3501                         }
3502                         fulfill.select_where_possible(self)
3503                     }).map_err(|_| ())?;
3504                 }
3505                 Err(_) => return Err(()),
3506             }
3507
3508             // Record all the argument types, with the substitutions
3509             // produced from the above subtyping unification.
3510             Ok(formal_args.iter().map(|ty| {
3511                 self.resolve_vars_if_possible(ty)
3512             }).collect())
3513         }).unwrap_or_default();
3514         debug!("expected_inputs_for_expected_output(formal={:?} -> {:?}, expected={:?} -> {:?})",
3515                formal_args, formal_ret,
3516                expect_args, expected_ret);
3517         expect_args
3518     }
3519
3520     pub fn check_struct_path(&self,
3521                              qpath: &QPath,
3522                              hir_id: hir::HirId)
3523                              -> Option<(&'tcx ty::VariantDef,  Ty<'tcx>)> {
3524         let path_span = match *qpath {
3525             QPath::Resolved(_, ref path) => path.span,
3526             QPath::TypeRelative(ref qself, _) => qself.span
3527         };
3528         let (def, ty) = self.finish_resolving_struct_path(qpath, path_span, hir_id);
3529         let variant = match def {
3530             Res::Err => {
3531                 self.set_tainted_by_errors();
3532                 return None;
3533             }
3534             Res::Def(DefKind::Variant, _) => {
3535                 match ty.sty {
3536                     ty::Adt(adt, substs) => {
3537                         Some((adt.variant_of_res(def), adt.did, substs))
3538                     }
3539                     _ => bug!("unexpected type: {:?}", ty)
3540                 }
3541             }
3542             Res::Def(DefKind::Struct, _)
3543             | Res::Def(DefKind::Union, _)
3544             | Res::Def(DefKind::TyAlias, _)
3545             | Res::Def(DefKind::AssocTy, _)
3546             | Res::SelfTy(..) => {
3547                 match ty.sty {
3548                     ty::Adt(adt, substs) if !adt.is_enum() => {
3549                         Some((adt.non_enum_variant(), adt.did, substs))
3550                     }
3551                     _ => None,
3552                 }
3553             }
3554             _ => bug!("unexpected definition: {:?}", def)
3555         };
3556
3557         if let Some((variant, did, substs)) = variant {
3558             debug!("check_struct_path: did={:?} substs={:?}", did, substs);
3559             self.write_user_type_annotation_from_substs(hir_id, did, substs, None);
3560
3561             // Check bounds on type arguments used in the path.
3562             let bounds = self.instantiate_bounds(path_span, did, substs);
3563             let cause = traits::ObligationCause::new(
3564                 path_span,
3565                 self.body_id,
3566                 traits::ItemObligation(did),
3567             );
3568             self.add_obligations_for_parameters(cause, &bounds);
3569
3570             Some((variant, ty))
3571         } else {
3572             struct_span_err!(self.tcx.sess, path_span, E0071,
3573                              "expected struct, variant or union type, found {}",
3574                              ty.sort_string(self.tcx))
3575                 .span_label(path_span, "not a struct")
3576                 .emit();
3577             None
3578         }
3579     }
3580
3581     // Finish resolving a path in a struct expression or pattern `S::A { .. }` if necessary.
3582     // The newly resolved definition is written into `type_dependent_defs`.
3583     fn finish_resolving_struct_path(&self,
3584                                     qpath: &QPath,
3585                                     path_span: Span,
3586                                     hir_id: hir::HirId)
3587                                     -> (Res, Ty<'tcx>)
3588     {
3589         match *qpath {
3590             QPath::Resolved(ref maybe_qself, ref path) => {
3591                 let self_ty = maybe_qself.as_ref().map(|qself| self.to_ty(qself));
3592                 let ty = AstConv::res_to_ty(self, self_ty, path, true);
3593                 (path.res, ty)
3594             }
3595             QPath::TypeRelative(ref qself, ref segment) => {
3596                 let ty = self.to_ty(qself);
3597
3598                 let res = if let hir::TyKind::Path(QPath::Resolved(_, ref path)) = qself.node {
3599                     path.res
3600                 } else {
3601                     Res::Err
3602                 };
3603                 let result = AstConv::associated_path_to_ty(
3604                     self,
3605                     hir_id,
3606                     path_span,
3607                     ty,
3608                     res,
3609                     segment,
3610                     true,
3611                 );
3612                 let ty = result.map(|(ty, _, _)| ty).unwrap_or(self.tcx().types.err);
3613                 let result = result.map(|(_, kind, def_id)| (kind, def_id));
3614
3615                 // Write back the new resolution.
3616                 self.write_resolution(hir_id, result);
3617
3618                 (result.map(|(kind, def_id)| Res::Def(kind, def_id)).unwrap_or(Res::Err), ty)
3619             }
3620         }
3621     }
3622
3623     /// Resolves an associated value path into a base type and associated constant, or method
3624     /// resolution. The newly resolved definition is written into `type_dependent_defs`.
3625     pub fn resolve_ty_and_res_ufcs<'b>(&self,
3626                                        qpath: &'b QPath,
3627                                        hir_id: hir::HirId,
3628                                        span: Span)
3629                                        -> (Res, Option<Ty<'tcx>>, &'b [hir::PathSegment])
3630     {
3631         debug!("resolve_ty_and_res_ufcs: qpath={:?} hir_id={:?} span={:?}", qpath, hir_id, span);
3632         let (ty, qself, item_segment) = match *qpath {
3633             QPath::Resolved(ref opt_qself, ref path) => {
3634                 return (path.res,
3635                         opt_qself.as_ref().map(|qself| self.to_ty(qself)),
3636                         &path.segments[..]);
3637             }
3638             QPath::TypeRelative(ref qself, ref segment) => {
3639                 (self.to_ty(qself), qself, segment)
3640             }
3641         };
3642         if let Some(&cached_result) = self.tables.borrow().type_dependent_defs().get(hir_id) {
3643             // Return directly on cache hit. This is useful to avoid doubly reporting
3644             // errors with default match binding modes. See #44614.
3645             let def = cached_result.map(|(kind, def_id)| Res::Def(kind, def_id))
3646                 .unwrap_or(Res::Err);
3647             return (def, Some(ty), slice::from_ref(&**item_segment));
3648         }
3649         let item_name = item_segment.ident;
3650         let result = self.resolve_ufcs(span, item_name, ty, hir_id).or_else(|error| {
3651             let result = match error {
3652                 method::MethodError::PrivateMatch(kind, def_id, _) => Ok((kind, def_id)),
3653                 _ => Err(ErrorReported),
3654             };
3655             if item_name.name != kw::Invalid {
3656                 self.report_method_error(
3657                     span,
3658                     ty,
3659                     item_name,
3660                     SelfSource::QPath(qself),
3661                     error,
3662                     None,
3663                 ).map(|mut e| e.emit());
3664             }
3665             result
3666         });
3667
3668         // Write back the new resolution.
3669         self.write_resolution(hir_id, result);
3670         (
3671             result.map(|(kind, def_id)| Res::Def(kind, def_id)).unwrap_or(Res::Err),
3672             Some(ty),
3673             slice::from_ref(&**item_segment),
3674         )
3675     }
3676
3677     pub fn check_decl_initializer(
3678         &self,
3679         local: &'tcx hir::Local,
3680         init: &'tcx hir::Expr,
3681     ) -> Ty<'tcx> {
3682         // FIXME(tschottdorf): `contains_explicit_ref_binding()` must be removed
3683         // for #42640 (default match binding modes).
3684         //
3685         // See #44848.
3686         let ref_bindings = local.pat.contains_explicit_ref_binding();
3687
3688         let local_ty = self.local_ty(init.span, local.hir_id).revealed_ty;
3689         if let Some(m) = ref_bindings {
3690             // Somewhat subtle: if we have a `ref` binding in the pattern,
3691             // we want to avoid introducing coercions for the RHS. This is
3692             // both because it helps preserve sanity and, in the case of
3693             // ref mut, for soundness (issue #23116). In particular, in
3694             // the latter case, we need to be clear that the type of the
3695             // referent for the reference that results is *equal to* the
3696             // type of the place it is referencing, and not some
3697             // supertype thereof.
3698             let init_ty = self.check_expr_with_needs(init, Needs::maybe_mut_place(m));
3699             self.demand_eqtype(init.span, local_ty, init_ty);
3700             init_ty
3701         } else {
3702             self.check_expr_coercable_to_type(init, local_ty)
3703         }
3704     }
3705
3706     pub fn check_decl_local(&self, local: &'tcx hir::Local) {
3707         let t = self.local_ty(local.span, local.hir_id).decl_ty;
3708         self.write_ty(local.hir_id, t);
3709
3710         if let Some(ref init) = local.init {
3711             let init_ty = self.check_decl_initializer(local, &init);
3712             if init_ty.references_error() {
3713                 self.write_ty(local.hir_id, init_ty);
3714             }
3715         }
3716
3717         self.check_pat_top(&local.pat, t, None);
3718         let pat_ty = self.node_ty(local.pat.hir_id);
3719         if pat_ty.references_error() {
3720             self.write_ty(local.hir_id, pat_ty);
3721         }
3722     }
3723
3724     pub fn check_stmt(&self, stmt: &'tcx hir::Stmt) {
3725         // Don't do all the complex logic below for `DeclItem`.
3726         match stmt.node {
3727             hir::StmtKind::Item(..) => return,
3728             hir::StmtKind::Local(..) | hir::StmtKind::Expr(..) | hir::StmtKind::Semi(..) => {}
3729         }
3730
3731         self.warn_if_unreachable(stmt.hir_id, stmt.span, "statement");
3732
3733         // Hide the outer diverging and `has_errors` flags.
3734         let old_diverges = self.diverges.get();
3735         let old_has_errors = self.has_errors.get();
3736         self.diverges.set(Diverges::Maybe);
3737         self.has_errors.set(false);
3738
3739         match stmt.node {
3740             hir::StmtKind::Local(ref l) => {
3741                 self.check_decl_local(&l);
3742             }
3743             // Ignore for now.
3744             hir::StmtKind::Item(_) => {}
3745             hir::StmtKind::Expr(ref expr) => {
3746                 // Check with expected type of `()`.
3747                 self.check_expr_has_type_or_error(&expr, self.tcx.mk_unit());
3748             }
3749             hir::StmtKind::Semi(ref expr) => {
3750                 self.check_expr(&expr);
3751             }
3752         }
3753
3754         // Combine the diverging and `has_error` flags.
3755         self.diverges.set(self.diverges.get() | old_diverges);
3756         self.has_errors.set(self.has_errors.get() | old_has_errors);
3757     }
3758
3759     pub fn check_block_no_value(&self, blk: &'tcx hir::Block) {
3760         let unit = self.tcx.mk_unit();
3761         let ty = self.check_block_with_expected(blk, ExpectHasType(unit));
3762
3763         // if the block produces a `!` value, that can always be
3764         // (effectively) coerced to unit.
3765         if !ty.is_never() {
3766             self.demand_suptype(blk.span, unit, ty);
3767         }
3768     }
3769
3770     /// If `expr` is a `match` expression that has only one non-`!` arm, use that arm's tail
3771     /// expression's `Span`, otherwise return `expr.span`. This is done to give better errors
3772     /// when given code like the following:
3773     /// ```text
3774     /// if false { return 0i32; } else { 1u32 }
3775     /// //                               ^^^^ point at this instead of the whole `if` expression
3776     /// ```
3777     fn get_expr_coercion_span(&self, expr: &hir::Expr) -> syntax_pos::Span {
3778         if let hir::ExprKind::Match(_, arms, _) = &expr.node {
3779             let arm_spans: Vec<Span> = arms.iter().filter_map(|arm| {
3780                 self.in_progress_tables
3781                     .and_then(|tables| tables.borrow().node_type_opt(arm.body.hir_id))
3782                     .and_then(|arm_ty| {
3783                         if arm_ty.is_never() {
3784                             None
3785                         } else {
3786                             Some(match &arm.body.node {
3787                                 // Point at the tail expression when possible.
3788                                 hir::ExprKind::Block(block, _) => block.expr
3789                                     .as_ref()
3790                                     .map(|e| e.span)
3791                                     .unwrap_or(block.span),
3792                                 _ => arm.body.span,
3793                             })
3794                         }
3795                     })
3796             }).collect();
3797             if arm_spans.len() == 1 {
3798                 return arm_spans[0];
3799             }
3800         }
3801         expr.span
3802     }
3803
3804     fn check_block_with_expected(
3805         &self,
3806         blk: &'tcx hir::Block,
3807         expected: Expectation<'tcx>,
3808     ) -> Ty<'tcx> {
3809         let prev = {
3810             let mut fcx_ps = self.ps.borrow_mut();
3811             let unsafety_state = fcx_ps.recurse(blk);
3812             replace(&mut *fcx_ps, unsafety_state)
3813         };
3814
3815         // In some cases, blocks have just one exit, but other blocks
3816         // can be targeted by multiple breaks. This can happen both
3817         // with labeled blocks as well as when we desugar
3818         // a `try { ... }` expression.
3819         //
3820         // Example 1:
3821         //
3822         //    'a: { if true { break 'a Err(()); } Ok(()) }
3823         //
3824         // Here we would wind up with two coercions, one from
3825         // `Err(())` and the other from the tail expression
3826         // `Ok(())`. If the tail expression is omitted, that's a
3827         // "forced unit" -- unless the block diverges, in which
3828         // case we can ignore the tail expression (e.g., `'a: {
3829         // break 'a 22; }` would not force the type of the block
3830         // to be `()`).
3831         let tail_expr = blk.expr.as_ref();
3832         let coerce_to_ty = expected.coercion_target_type(self, blk.span);
3833         let coerce = if blk.targeted_by_break {
3834             CoerceMany::new(coerce_to_ty)
3835         } else {
3836             let tail_expr: &[P<hir::Expr>] = match tail_expr {
3837                 Some(e) => slice::from_ref(e),
3838                 None => &[],
3839             };
3840             CoerceMany::with_coercion_sites(coerce_to_ty, tail_expr)
3841         };
3842
3843         let prev_diverges = self.diverges.get();
3844         let ctxt = BreakableCtxt {
3845             coerce: Some(coerce),
3846             may_break: false,
3847         };
3848
3849         let (ctxt, ()) = self.with_breakable_ctxt(blk.hir_id, ctxt, || {
3850             for s in &blk.stmts {
3851                 self.check_stmt(s);
3852             }
3853
3854             // check the tail expression **without** holding the
3855             // `enclosing_breakables` lock below.
3856             let tail_expr_ty = tail_expr.map(|t| self.check_expr_with_expectation(t, expected));
3857
3858             let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
3859             let ctxt = enclosing_breakables.find_breakable(blk.hir_id);
3860             let coerce = ctxt.coerce.as_mut().unwrap();
3861             if let Some(tail_expr_ty) = tail_expr_ty {
3862                 let tail_expr = tail_expr.unwrap();
3863                 let span = self.get_expr_coercion_span(tail_expr);
3864                 let cause = self.cause(span, ObligationCauseCode::BlockTailExpression(blk.hir_id));
3865                 coerce.coerce(self, &cause, tail_expr, tail_expr_ty);
3866             } else {
3867                 // Subtle: if there is no explicit tail expression,
3868                 // that is typically equivalent to a tail expression
3869                 // of `()` -- except if the block diverges. In that
3870                 // case, there is no value supplied from the tail
3871                 // expression (assuming there are no other breaks,
3872                 // this implies that the type of the block will be
3873                 // `!`).
3874                 //
3875                 // #41425 -- label the implicit `()` as being the
3876                 // "found type" here, rather than the "expected type".
3877                 if !self.diverges.get().always() {
3878                     // #50009 -- Do not point at the entire fn block span, point at the return type
3879                     // span, as it is the cause of the requirement, and
3880                     // `consider_hint_about_removing_semicolon` will point at the last expression
3881                     // if it were a relevant part of the error. This improves usability in editors
3882                     // that highlight errors inline.
3883                     let mut sp = blk.span;
3884                     let mut fn_span = None;
3885                     if let Some((decl, ident)) = self.get_parent_fn_decl(blk.hir_id) {
3886                         let ret_sp = decl.output.span();
3887                         if let Some(block_sp) = self.parent_item_span(blk.hir_id) {
3888                             // HACK: on some cases (`ui/liveness/liveness-issue-2163.rs`) the
3889                             // output would otherwise be incorrect and even misleading. Make sure
3890                             // the span we're aiming at correspond to a `fn` body.
3891                             if block_sp == blk.span {
3892                                 sp = ret_sp;
3893                                 fn_span = Some(ident.span);
3894                             }
3895                         }
3896                     }
3897                     coerce.coerce_forced_unit(self, &self.misc(sp), &mut |err| {
3898                         if let Some(expected_ty) = expected.only_has_type(self) {
3899                             self.consider_hint_about_removing_semicolon(blk, expected_ty, err);
3900                         }
3901                         if let Some(fn_span) = fn_span {
3902                             err.span_label(
3903                                 fn_span,
3904                                 "implicitly returns `()` as its body has no tail or `return` \
3905                                  expression",
3906                             );
3907                         }
3908                     }, false);
3909                 }
3910             }
3911         });
3912
3913         if ctxt.may_break {
3914             // If we can break from the block, then the block's exit is always reachable
3915             // (... as long as the entry is reachable) - regardless of the tail of the block.
3916             self.diverges.set(prev_diverges);
3917         }
3918
3919         let mut ty = ctxt.coerce.unwrap().complete(self);
3920
3921         if self.has_errors.get() || ty.references_error() {
3922             ty = self.tcx.types.err
3923         }
3924
3925         self.write_ty(blk.hir_id, ty);
3926
3927         *self.ps.borrow_mut() = prev;
3928         ty
3929     }
3930
3931     fn parent_item_span(&self, id: hir::HirId) -> Option<Span> {
3932         let node = self.tcx.hir().get(self.tcx.hir().get_parent_item(id));
3933         match node {
3934             Node::Item(&hir::Item {
3935                 node: hir::ItemKind::Fn(_, _, _, body_id), ..
3936             }) |
3937             Node::ImplItem(&hir::ImplItem {
3938                 node: hir::ImplItemKind::Method(_, body_id), ..
3939             }) => {
3940                 let body = self.tcx.hir().body(body_id);
3941                 if let ExprKind::Block(block, _) = &body.value.node {
3942                     return Some(block.span);
3943                 }
3944             }
3945             _ => {}
3946         }
3947         None
3948     }
3949
3950     /// Given a function block's `HirId`, returns its `FnDecl` if it exists, or `None` otherwise.
3951     fn get_parent_fn_decl(&self, blk_id: hir::HirId) -> Option<(&'tcx hir::FnDecl, ast::Ident)> {
3952         let parent = self.tcx.hir().get(self.tcx.hir().get_parent_item(blk_id));
3953         self.get_node_fn_decl(parent).map(|(fn_decl, ident, _)| (fn_decl, ident))
3954     }
3955
3956     /// Given a function `Node`, return its `FnDecl` if it exists, or `None` otherwise.
3957     fn get_node_fn_decl(&self, node: Node<'tcx>) -> Option<(&'tcx hir::FnDecl, ast::Ident, bool)> {
3958         match node {
3959             Node::Item(&hir::Item {
3960                 ident, node: hir::ItemKind::Fn(ref decl, ..), ..
3961             }) => {
3962                 // This is less than ideal, it will not suggest a return type span on any
3963                 // method called `main`, regardless of whether it is actually the entry point,
3964                 // but it will still present it as the reason for the expected type.
3965                 Some((decl, ident, ident.name != sym::main))
3966             }
3967             Node::TraitItem(&hir::TraitItem {
3968                 ident, node: hir::TraitItemKind::Method(hir::MethodSig {
3969                     ref decl, ..
3970                 }, ..), ..
3971             }) => Some((decl, ident, true)),
3972             Node::ImplItem(&hir::ImplItem {
3973                 ident, node: hir::ImplItemKind::Method(hir::MethodSig {
3974                     ref decl, ..
3975                 }, ..), ..
3976             }) => Some((decl, ident, false)),
3977             _ => None,
3978         }
3979     }
3980
3981     /// Given a `HirId`, return the `FnDecl` of the method it is enclosed by and whether a
3982     /// suggestion can be made, `None` otherwise.
3983     pub fn get_fn_decl(&self, blk_id: hir::HirId) -> Option<(&'tcx hir::FnDecl, bool)> {
3984         // Get enclosing Fn, if it is a function or a trait method, unless there's a `loop` or
3985         // `while` before reaching it, as block tail returns are not available in them.
3986         self.tcx.hir().get_return_block(blk_id).and_then(|blk_id| {
3987             let parent = self.tcx.hir().get(blk_id);
3988             self.get_node_fn_decl(parent).map(|(fn_decl, _, is_main)| (fn_decl, is_main))
3989         })
3990     }
3991
3992     /// On implicit return expressions with mismatched types, provides the following suggestions:
3993     ///
3994     /// - Points out the method's return type as the reason for the expected type.
3995     /// - Possible missing semicolon.
3996     /// - Possible missing return type if the return type is the default, and not `fn main()`.
3997     pub fn suggest_mismatched_types_on_tail(
3998         &self,
3999         err: &mut DiagnosticBuilder<'tcx>,
4000         expression: &'tcx hir::Expr,
4001         expected: Ty<'tcx>,
4002         found: Ty<'tcx>,
4003         cause_span: Span,
4004         blk_id: hir::HirId,
4005     ) -> bool {
4006         self.suggest_missing_semicolon(err, expression, expected, cause_span);
4007         let mut pointing_at_return_type = false;
4008         if let Some((fn_decl, can_suggest)) = self.get_fn_decl(blk_id) {
4009             pointing_at_return_type = self.suggest_missing_return_type(
4010                 err, &fn_decl, expected, found, can_suggest);
4011         }
4012         self.suggest_ref_or_into(err, expression, expected, found);
4013         self.suggest_boxing_when_appropriate(err, expression, expected, found);
4014         pointing_at_return_type
4015     }
4016
4017     /// When encountering an fn-like ctor that needs to unify with a value, check whether calling
4018     /// the ctor would successfully solve the type mismatch and if so, suggest it:
4019     /// ```
4020     /// fn foo(x: usize) -> usize { x }
4021     /// let x: usize = foo;  // suggest calling the `foo` function: `foo(42)`
4022     /// ```
4023     fn suggest_fn_call(
4024         &self,
4025         err: &mut DiagnosticBuilder<'tcx>,
4026         expr: &hir::Expr,
4027         expected: Ty<'tcx>,
4028         found: Ty<'tcx>,
4029     ) -> bool {
4030         let hir = self.tcx.hir();
4031         let (def_id, sig) = match found.sty {
4032             ty::FnDef(def_id, _) => (def_id, found.fn_sig(self.tcx)),
4033             ty::Closure(def_id, substs) => {
4034                 // We don't use `closure_sig` to account for malformed closures like
4035                 // `|_: [_; continue]| {}` and instead we don't suggest anything.
4036                 let closure_sig_ty = substs.closure_sig_ty(def_id, self.tcx);
4037                 (def_id, match closure_sig_ty.sty {
4038                     ty::FnPtr(sig) => sig,
4039                     _ => return false,
4040                 })
4041             }
4042             _ => return false,
4043         };
4044
4045         let sig = self
4046             .replace_bound_vars_with_fresh_vars(expr.span, infer::FnCall, &sig)
4047             .0;
4048         let sig = self.normalize_associated_types_in(expr.span, &sig);
4049         if self.can_coerce(sig.output(), expected) {
4050             let (mut sugg_call, applicability) = if sig.inputs().is_empty() {
4051                 (String::new(), Applicability::MachineApplicable)
4052             } else {
4053                 ("...".to_string(), Applicability::HasPlaceholders)
4054             };
4055             let mut msg = "call this function";
4056             match hir.get_if_local(def_id) {
4057                 Some(Node::Item(hir::Item {
4058                     node: ItemKind::Fn(.., body_id),
4059                     ..
4060                 })) |
4061                 Some(Node::ImplItem(hir::ImplItem {
4062                     node: hir::ImplItemKind::Method(_, body_id),
4063                     ..
4064                 })) |
4065                 Some(Node::TraitItem(hir::TraitItem {
4066                     node: hir::TraitItemKind::Method(.., hir::TraitMethod::Provided(body_id)),
4067                     ..
4068                 })) => {
4069                     let body = hir.body(*body_id);
4070                     sugg_call = body.params.iter()
4071                         .map(|param| match &param.pat.node {
4072                             hir::PatKind::Binding(_, _, ident, None)
4073                             if ident.name != kw::SelfLower => ident.to_string(),
4074                             _ => "_".to_string(),
4075                         }).collect::<Vec<_>>().join(", ");
4076                 }
4077                 Some(Node::Expr(hir::Expr {
4078                     node: ExprKind::Closure(_, _, body_id, closure_span, _),
4079                     span: full_closure_span,
4080                     ..
4081                 })) => {
4082                     if *full_closure_span == expr.span {
4083                         return false;
4084                     }
4085                     err.span_label(*closure_span, "closure defined here");
4086                     msg = "call this closure";
4087                     let body = hir.body(*body_id);
4088                     sugg_call = body.params.iter()
4089                         .map(|param| match &param.pat.node {
4090                             hir::PatKind::Binding(_, _, ident, None)
4091                             if ident.name != kw::SelfLower => ident.to_string(),
4092                             _ => "_".to_string(),
4093                         }).collect::<Vec<_>>().join(", ");
4094                 }
4095                 Some(Node::Ctor(hir::VariantData::Tuple(fields, _))) => {
4096                     sugg_call = fields.iter().map(|_| "_").collect::<Vec<_>>().join(", ");
4097                     match hir.as_local_hir_id(def_id).and_then(|hir_id| hir.def_kind(hir_id)) {
4098                         Some(hir::def::DefKind::Ctor(hir::def::CtorOf::Variant, _)) => {
4099                             msg = "instantiate this tuple variant";
4100                         }
4101                         Some(hir::def::DefKind::Ctor(hir::def::CtorOf::Struct, _)) => {
4102                             msg = "instantiate this tuple struct";
4103                         }
4104                         _ => {}
4105                     }
4106                 }
4107                 Some(Node::ForeignItem(hir::ForeignItem {
4108                     node: hir::ForeignItemKind::Fn(_, idents, _),
4109                     ..
4110                 })) |
4111                 Some(Node::TraitItem(hir::TraitItem {
4112                     node: hir::TraitItemKind::Method(.., hir::TraitMethod::Required(idents)),
4113                     ..
4114                 })) => sugg_call = idents.iter()
4115                         .map(|ident| if ident.name != kw::SelfLower {
4116                             ident.to_string()
4117                         } else {
4118                             "_".to_string()
4119                         }).collect::<Vec<_>>()
4120                         .join(", "),
4121                 _ => {}
4122             }
4123             if let Ok(code) = self.sess().source_map().span_to_snippet(expr.span) {
4124                 err.span_suggestion(
4125                     expr.span,
4126                     &format!("use parentheses to {}", msg),
4127                     format!("{}({})", code, sugg_call),
4128                     applicability,
4129                 );
4130                 return true;
4131             }
4132         }
4133         false
4134     }
4135
4136     pub fn suggest_ref_or_into(
4137         &self,
4138         err: &mut DiagnosticBuilder<'tcx>,
4139         expr: &hir::Expr,
4140         expected: Ty<'tcx>,
4141         found: Ty<'tcx>,
4142     ) {
4143         if let Some((sp, msg, suggestion)) = self.check_ref(expr, found, expected) {
4144             err.span_suggestion(
4145                 sp,
4146                 msg,
4147                 suggestion,
4148                 Applicability::MachineApplicable,
4149             );
4150         } else if let (ty::FnDef(def_id, ..), true) = (
4151             &found.sty,
4152             self.suggest_fn_call(err, expr, expected, found),
4153         ) {
4154             if let Some(sp) = self.tcx.hir().span_if_local(*def_id) {
4155                 let sp = self.sess().source_map().def_span(sp);
4156                 err.span_label(sp, &format!("{} defined here", found));
4157             }
4158         } else if !self.check_for_cast(err, expr, found, expected) {
4159             let is_struct_pat_shorthand_field = self.is_hir_id_from_struct_pattern_shorthand_field(
4160                 expr.hir_id,
4161                 expr.span,
4162             );
4163             let methods = self.get_conversion_methods(expr.span, expected, found);
4164             if let Ok(expr_text) = self.sess().source_map().span_to_snippet(expr.span) {
4165                 let mut suggestions = iter::repeat(&expr_text).zip(methods.iter())
4166                     .filter_map(|(receiver, method)| {
4167                         let method_call = format!(".{}()", method.ident);
4168                         if receiver.ends_with(&method_call) {
4169                             None  // do not suggest code that is already there (#53348)
4170                         } else {
4171                             let method_call_list = [".to_vec()", ".to_string()"];
4172                             let sugg = if receiver.ends_with(".clone()")
4173                                     && method_call_list.contains(&method_call.as_str()) {
4174                                 let max_len = receiver.rfind(".").unwrap();
4175                                 format!("{}{}", &receiver[..max_len], method_call)
4176                             } else {
4177                                 format!("{}{}", receiver, method_call)
4178                             };
4179                             Some(if is_struct_pat_shorthand_field {
4180                                 format!("{}: {}", receiver, sugg)
4181                             } else {
4182                                 sugg
4183                             })
4184                         }
4185                     }).peekable();
4186                 if suggestions.peek().is_some() {
4187                     err.span_suggestions(
4188                         expr.span,
4189                         "try using a conversion method",
4190                         suggestions,
4191                         Applicability::MaybeIncorrect,
4192                     );
4193                 }
4194             }
4195         }
4196     }
4197
4198     /// When encountering the expected boxed value allocated in the stack, suggest allocating it
4199     /// in the heap by calling `Box::new()`.
4200     fn suggest_boxing_when_appropriate(
4201         &self,
4202         err: &mut DiagnosticBuilder<'tcx>,
4203         expr: &hir::Expr,
4204         expected: Ty<'tcx>,
4205         found: Ty<'tcx>,
4206     ) {
4207         if self.tcx.hir().is_const_context(expr.hir_id) {
4208             // Do not suggest `Box::new` in const context.
4209             return;
4210         }
4211         if !expected.is_box() || found.is_box() {
4212             return;
4213         }
4214         let boxed_found = self.tcx.mk_box(found);
4215         if let (true, Ok(snippet)) = (
4216             self.can_coerce(boxed_found, expected),
4217             self.sess().source_map().span_to_snippet(expr.span),
4218         ) {
4219             err.span_suggestion(
4220                 expr.span,
4221                 "store this in the heap by calling `Box::new`",
4222                 format!("Box::new({})", snippet),
4223                 Applicability::MachineApplicable,
4224             );
4225             err.note("for more on the distinction between the stack and the \
4226                         heap, read https://doc.rust-lang.org/book/ch15-01-box.html, \
4227                         https://doc.rust-lang.org/rust-by-example/std/box.html, and \
4228                         https://doc.rust-lang.org/std/boxed/index.html");
4229         }
4230     }
4231
4232
4233     /// A common error is to forget to add a semicolon at the end of a block, e.g.,
4234     ///
4235     /// ```
4236     /// fn foo() {
4237     ///     bar_that_returns_u32()
4238     /// }
4239     /// ```
4240     ///
4241     /// This routine checks if the return expression in a block would make sense on its own as a
4242     /// statement and the return type has been left as default or has been specified as `()`. If so,
4243     /// it suggests adding a semicolon.
4244     fn suggest_missing_semicolon(
4245         &self,
4246         err: &mut DiagnosticBuilder<'tcx>,
4247         expression: &'tcx hir::Expr,
4248         expected: Ty<'tcx>,
4249         cause_span: Span,
4250     ) {
4251         if expected.is_unit() {
4252             // `BlockTailExpression` only relevant if the tail expr would be
4253             // useful on its own.
4254             match expression.node {
4255                 ExprKind::Call(..) |
4256                 ExprKind::MethodCall(..) |
4257                 ExprKind::Loop(..) |
4258                 ExprKind::Match(..) |
4259                 ExprKind::Block(..) => {
4260                     let sp = self.tcx.sess.source_map().next_point(cause_span);
4261                     err.span_suggestion(
4262                         sp,
4263                         "try adding a semicolon",
4264                         ";".to_string(),
4265                         Applicability::MachineApplicable);
4266                 }
4267                 _ => (),
4268             }
4269         }
4270     }
4271
4272     /// A possible error is to forget to add a return type that is needed:
4273     ///
4274     /// ```
4275     /// fn foo() {
4276     ///     bar_that_returns_u32()
4277     /// }
4278     /// ```
4279     ///
4280     /// This routine checks if the return type is left as default, the method is not part of an
4281     /// `impl` block and that it isn't the `main` method. If so, it suggests setting the return
4282     /// type.
4283     fn suggest_missing_return_type(
4284         &self,
4285         err: &mut DiagnosticBuilder<'tcx>,
4286         fn_decl: &hir::FnDecl,
4287         expected: Ty<'tcx>,
4288         found: Ty<'tcx>,
4289         can_suggest: bool,
4290     ) -> bool {
4291         // Only suggest changing the return type for methods that
4292         // haven't set a return type at all (and aren't `fn main()` or an impl).
4293         match (&fn_decl.output, found.is_suggestable(), can_suggest, expected.is_unit()) {
4294             (&hir::FunctionRetTy::DefaultReturn(span), true, true, true) => {
4295                 err.span_suggestion(
4296                     span,
4297                     "try adding a return type",
4298                     format!("-> {} ", self.resolve_type_vars_with_obligations(found)),
4299                     Applicability::MachineApplicable);
4300                 true
4301             }
4302             (&hir::FunctionRetTy::DefaultReturn(span), false, true, true) => {
4303                 err.span_label(span, "possibly return type missing here?");
4304                 true
4305             }
4306             (&hir::FunctionRetTy::DefaultReturn(span), _, false, true) => {
4307                 // `fn main()` must return `()`, do not suggest changing return type
4308                 err.span_label(span, "expected `()` because of default return type");
4309                 true
4310             }
4311             // expectation was caused by something else, not the default return
4312             (&hir::FunctionRetTy::DefaultReturn(_), _, _, false) => false,
4313             (&hir::FunctionRetTy::Return(ref ty), _, _, _) => {
4314                 // Only point to return type if the expected type is the return type, as if they
4315                 // are not, the expectation must have been caused by something else.
4316                 debug!("suggest_missing_return_type: return type {:?} node {:?}", ty, ty.node);
4317                 let sp = ty.span;
4318                 let ty = AstConv::ast_ty_to_ty(self, ty);
4319                 debug!("suggest_missing_return_type: return type {:?}", ty);
4320                 debug!("suggest_missing_return_type: expected type {:?}", ty);
4321                 if ty.sty == expected.sty {
4322                     err.span_label(sp, format!("expected `{}` because of return type",
4323                                                expected));
4324                     return true;
4325                 }
4326                 false
4327             }
4328         }
4329     }
4330
4331     /// A possible error is to forget to add `.await` when using futures:
4332     ///
4333     /// ```
4334     /// async fn make_u32() -> u32 {
4335     ///     22
4336     /// }
4337     ///
4338     /// fn take_u32(x: u32) {}
4339     ///
4340     /// async fn foo() {
4341     ///     let x = make_u32();
4342     ///     take_u32(x);
4343     /// }
4344     /// ```
4345     ///
4346     /// This routine checks if the found type `T` implements `Future<Output=U>` where `U` is the
4347     /// expected type. If this is the case, and we are inside of an async body, it suggests adding
4348     /// `.await` to the tail of the expression.
4349     fn suggest_missing_await(
4350         &self,
4351         err: &mut DiagnosticBuilder<'tcx>,
4352         expr: &hir::Expr,
4353         expected: Ty<'tcx>,
4354         found: Ty<'tcx>,
4355     ) {
4356         // `.await` is not permitted outside of `async` bodies, so don't bother to suggest if the
4357         // body isn't `async`.
4358         let item_id = self.tcx().hir().get_parent_node(self.body_id);
4359         if let Some(body_id) = self.tcx().hir().maybe_body_owned_by(item_id) {
4360             let body = self.tcx().hir().body(body_id);
4361             if let Some(hir::GeneratorKind::Async) = body.generator_kind {
4362                 let sp = expr.span;
4363                 // Check for `Future` implementations by constructing a predicate to
4364                 // prove: `<T as Future>::Output == U`
4365                 let future_trait = self.tcx.lang_items().future_trait().unwrap();
4366                 let item_def_id = self.tcx.associated_items(future_trait).next().unwrap().def_id;
4367                 let predicate = ty::Predicate::Projection(ty::Binder::bind(ty::ProjectionPredicate {
4368                     // `<T as Future>::Output`
4369                     projection_ty: ty::ProjectionTy {
4370                         // `T`
4371                         substs: self.tcx.mk_substs_trait(
4372                             found,
4373                             self.fresh_substs_for_item(sp, item_def_id)
4374                         ),
4375                         // `Future::Output`
4376                         item_def_id,
4377                     },
4378                     ty: expected,
4379                 }));
4380                 let obligation = traits::Obligation::new(self.misc(sp), self.param_env, predicate);
4381                 if self.infcx.predicate_may_hold(&obligation) {
4382                     if let Ok(code) = self.sess().source_map().span_to_snippet(sp) {
4383                         err.span_suggestion(
4384                             sp,
4385                             "consider using `.await` here",
4386                             format!("{}.await", code),
4387                             Applicability::MaybeIncorrect,
4388                         );
4389                     }
4390                 }
4391             }
4392         }
4393     }
4394
4395     /// A common error is to add an extra semicolon:
4396     ///
4397     /// ```
4398     /// fn foo() -> usize {
4399     ///     22;
4400     /// }
4401     /// ```
4402     ///
4403     /// This routine checks if the final statement in a block is an
4404     /// expression with an explicit semicolon whose type is compatible
4405     /// with `expected_ty`. If so, it suggests removing the semicolon.
4406     fn consider_hint_about_removing_semicolon(
4407         &self,
4408         blk: &'tcx hir::Block,
4409         expected_ty: Ty<'tcx>,
4410         err: &mut DiagnosticBuilder<'_>,
4411     ) {
4412         if let Some(span_semi) = self.could_remove_semicolon(blk, expected_ty) {
4413             err.span_suggestion(
4414                 span_semi,
4415                 "consider removing this semicolon",
4416                 String::new(),
4417                 Applicability::MachineApplicable,
4418             );
4419         }
4420     }
4421
4422     fn could_remove_semicolon(&self, blk: &'tcx hir::Block, expected_ty: Ty<'tcx>) -> Option<Span> {
4423         // Be helpful when the user wrote `{... expr;}` and
4424         // taking the `;` off is enough to fix the error.
4425         let last_stmt = blk.stmts.last()?;
4426         let last_expr = match last_stmt.node {
4427             hir::StmtKind::Semi(ref e) => e,
4428             _ => return None,
4429         };
4430         let last_expr_ty = self.node_ty(last_expr.hir_id);
4431         if self.can_sub(self.param_env, last_expr_ty, expected_ty).is_err() {
4432             return None;
4433         }
4434         let original_span = original_sp(last_stmt.span, blk.span);
4435         Some(original_span.with_lo(original_span.hi() - BytePos(1)))
4436     }
4437
4438     // Instantiates the given path, which must refer to an item with the given
4439     // number of type parameters and type.
4440     pub fn instantiate_value_path(&self,
4441                                   segments: &[hir::PathSegment],
4442                                   self_ty: Option<Ty<'tcx>>,
4443                                   res: Res,
4444                                   span: Span,
4445                                   hir_id: hir::HirId)
4446                                   -> (Ty<'tcx>, Res) {
4447         debug!(
4448             "instantiate_value_path(segments={:?}, self_ty={:?}, res={:?}, hir_id={})",
4449             segments,
4450             self_ty,
4451             res,
4452             hir_id,
4453         );
4454
4455         let tcx = self.tcx;
4456
4457         let path_segs = match res {
4458             Res::Local(_) | Res::SelfCtor(_) => vec![],
4459             Res::Def(kind, def_id) =>
4460                 AstConv::def_ids_for_value_path_segments(self, segments, self_ty, kind, def_id),
4461             _ => bug!("instantiate_value_path on {:?}", res),
4462         };
4463
4464         let mut user_self_ty = None;
4465         let mut is_alias_variant_ctor = false;
4466         match res {
4467             Res::Def(DefKind::Ctor(CtorOf::Variant, _), _) => {
4468                 if let Some(self_ty) = self_ty {
4469                     let adt_def = self_ty.ty_adt_def().unwrap();
4470                     user_self_ty = Some(UserSelfTy {
4471                         impl_def_id: adt_def.did,
4472                         self_ty,
4473                     });
4474                     is_alias_variant_ctor = true;
4475                 }
4476             }
4477             Res::Def(DefKind::Method, def_id)
4478             | Res::Def(DefKind::AssocConst, def_id) => {
4479                 let container = tcx.associated_item(def_id).container;
4480                 debug!("instantiate_value_path: def_id={:?} container={:?}", def_id, container);
4481                 match container {
4482                     ty::TraitContainer(trait_did) => {
4483                         callee::check_legal_trait_for_method_call(tcx, span, trait_did)
4484                     }
4485                     ty::ImplContainer(impl_def_id) => {
4486                         if segments.len() == 1 {
4487                             // `<T>::assoc` will end up here, and so
4488                             // can `T::assoc`. It this came from an
4489                             // inherent impl, we need to record the
4490                             // `T` for posterity (see `UserSelfTy` for
4491                             // details).
4492                             let self_ty = self_ty.expect("UFCS sugared assoc missing Self");
4493                             user_self_ty = Some(UserSelfTy {
4494                                 impl_def_id,
4495                                 self_ty,
4496                             });
4497                         }
4498                     }
4499                 }
4500             }
4501             _ => {}
4502         }
4503
4504         // Now that we have categorized what space the parameters for each
4505         // segment belong to, let's sort out the parameters that the user
4506         // provided (if any) into their appropriate spaces. We'll also report
4507         // errors if type parameters are provided in an inappropriate place.
4508
4509         let generic_segs: FxHashSet<_> = path_segs.iter().map(|PathSeg(_, index)| index).collect();
4510         let generics_has_err = AstConv::prohibit_generics(
4511                 self, segments.iter().enumerate().filter_map(|(index, seg)| {
4512             if !generic_segs.contains(&index) || is_alias_variant_ctor {
4513                 Some(seg)
4514             } else {
4515                 None
4516             }
4517         }));
4518
4519         if let Res::Local(hid) = res {
4520             let ty = self.local_ty(span, hid).decl_ty;
4521             let ty = self.normalize_associated_types_in(span, &ty);
4522             self.write_ty(hir_id, ty);
4523             return (ty, res);
4524         }
4525
4526         if generics_has_err {
4527             // Don't try to infer type parameters when prohibited generic arguments were given.
4528             user_self_ty = None;
4529         }
4530
4531         // Now we have to compare the types that the user *actually*
4532         // provided against the types that were *expected*. If the user
4533         // did not provide any types, then we want to substitute inference
4534         // variables. If the user provided some types, we may still need
4535         // to add defaults. If the user provided *too many* types, that's
4536         // a problem.
4537
4538         let mut infer_args_for_err = FxHashSet::default();
4539         for &PathSeg(def_id, index) in &path_segs {
4540             let seg = &segments[index];
4541             let generics = tcx.generics_of(def_id);
4542             // Argument-position `impl Trait` is treated as a normal generic
4543             // parameter internally, but we don't allow users to specify the
4544             // parameter's value explicitly, so we have to do some error-
4545             // checking here.
4546             let suppress_errors = AstConv::check_generic_arg_count_for_call(
4547                 tcx,
4548                 span,
4549                 &generics,
4550                 &seg,
4551                 false, // `is_method_call`
4552             );
4553             if suppress_errors {
4554                 infer_args_for_err.insert(index);
4555                 self.set_tainted_by_errors(); // See issue #53251.
4556             }
4557         }
4558
4559         let has_self = path_segs.last().map(|PathSeg(def_id, _)| {
4560             tcx.generics_of(*def_id).has_self
4561         }).unwrap_or(false);
4562
4563         let (res, self_ctor_substs) = if let Res::SelfCtor(impl_def_id) = res {
4564             let ty = self.impl_self_ty(span, impl_def_id).ty;
4565             let adt_def = ty.ty_adt_def();
4566
4567             match ty.sty {
4568                 ty::Adt(adt_def, substs) if adt_def.has_ctor() => {
4569                     let variant = adt_def.non_enum_variant();
4570                     let ctor_def_id = variant.ctor_def_id.unwrap();
4571                     (
4572                         Res::Def(DefKind::Ctor(CtorOf::Struct, variant.ctor_kind), ctor_def_id),
4573                         Some(substs),
4574                     )
4575                 }
4576                 _ => {
4577                     let mut err = tcx.sess.struct_span_err(span,
4578                         "the `Self` constructor can only be used with tuple or unit structs");
4579                     if let Some(adt_def) = adt_def {
4580                         match adt_def.adt_kind() {
4581                             AdtKind::Enum => {
4582                                 err.help("did you mean to use one of the enum's variants?");
4583                             },
4584                             AdtKind::Struct |
4585                             AdtKind::Union => {
4586                                 err.span_suggestion(
4587                                     span,
4588                                     "use curly brackets",
4589                                     String::from("Self { /* fields */ }"),
4590                                     Applicability::HasPlaceholders,
4591                                 );
4592                             }
4593                         }
4594                     }
4595                     err.emit();
4596
4597                     return (tcx.types.err, res)
4598                 }
4599             }
4600         } else {
4601             (res, None)
4602         };
4603         let def_id = res.def_id();
4604
4605         // The things we are substituting into the type should not contain
4606         // escaping late-bound regions, and nor should the base type scheme.
4607         let ty = tcx.type_of(def_id);
4608
4609         let substs = self_ctor_substs.unwrap_or_else(|| AstConv::create_substs_for_generic_args(
4610             tcx,
4611             def_id,
4612             &[][..],
4613             has_self,
4614             self_ty,
4615             // Provide the generic args, and whether types should be inferred.
4616             |def_id| {
4617                 if let Some(&PathSeg(_, index)) = path_segs.iter().find(|&PathSeg(did, _)| {
4618                     *did == def_id
4619                 }) {
4620                     // If we've encountered an `impl Trait`-related error, we're just
4621                     // going to infer the arguments for better error messages.
4622                     if !infer_args_for_err.contains(&index) {
4623                         // Check whether the user has provided generic arguments.
4624                         if let Some(ref data) = segments[index].args {
4625                             return (Some(data), segments[index].infer_args);
4626                         }
4627                     }
4628                     return (None, segments[index].infer_args);
4629                 }
4630
4631                 (None, true)
4632             },
4633             // Provide substitutions for parameters for which (valid) arguments have been provided.
4634             |param, arg| {
4635                 match (&param.kind, arg) {
4636                     (GenericParamDefKind::Lifetime, GenericArg::Lifetime(lt)) => {
4637                         AstConv::ast_region_to_region(self, lt, Some(param)).into()
4638                     }
4639                     (GenericParamDefKind::Type { .. }, GenericArg::Type(ty)) => {
4640                         self.to_ty(ty).into()
4641                     }
4642                     (GenericParamDefKind::Const, GenericArg::Const(ct)) => {
4643                         self.to_const(&ct.value, self.tcx.type_of(param.def_id)).into()
4644                     }
4645                     _ => unreachable!(),
4646                 }
4647             },
4648             // Provide substitutions for parameters for which arguments are inferred.
4649             |substs, param, infer_args| {
4650                 match param.kind {
4651                     GenericParamDefKind::Lifetime => {
4652                         self.re_infer(Some(param), span).unwrap().into()
4653                     }
4654                     GenericParamDefKind::Type { has_default, .. } => {
4655                         if !infer_args && has_default {
4656                             // If we have a default, then we it doesn't matter that we're not
4657                             // inferring the type arguments: we provide the default where any
4658                             // is missing.
4659                             let default = tcx.type_of(param.def_id);
4660                             self.normalize_ty(
4661                                 span,
4662                                 default.subst_spanned(tcx, substs.unwrap(), Some(span))
4663                             ).into()
4664                         } else {
4665                             // If no type arguments were provided, we have to infer them.
4666                             // This case also occurs as a result of some malformed input, e.g.
4667                             // a lifetime argument being given instead of a type parameter.
4668                             // Using inference instead of `Error` gives better error messages.
4669                             self.var_for_def(span, param)
4670                         }
4671                     }
4672                     GenericParamDefKind::Const => {
4673                         // FIXME(const_generics:defaults)
4674                         // No const parameters were provided, we have to infer them.
4675                         self.var_for_def(span, param)
4676                     }
4677                 }
4678             },
4679         ));
4680         assert!(!substs.has_escaping_bound_vars());
4681         assert!(!ty.has_escaping_bound_vars());
4682
4683         // First, store the "user substs" for later.
4684         self.write_user_type_annotation_from_substs(hir_id, def_id, substs, user_self_ty);
4685
4686         // Add all the obligations that are required, substituting and
4687         // normalized appropriately.
4688         let bounds = self.instantiate_bounds(span, def_id, &substs);
4689         self.add_obligations_for_parameters(
4690             traits::ObligationCause::new(span, self.body_id, traits::ItemObligation(def_id)),
4691             &bounds,
4692         );
4693
4694         // Substitute the values for the type parameters into the type of
4695         // the referenced item.
4696         let ty_substituted = self.instantiate_type_scheme(span, &substs, &ty);
4697
4698         if let Some(UserSelfTy { impl_def_id, self_ty }) = user_self_ty {
4699             // In the case of `Foo<T>::method` and `<Foo<T>>::method`, if `method`
4700             // is inherent, there is no `Self` parameter; instead, the impl needs
4701             // type parameters, which we can infer by unifying the provided `Self`
4702             // with the substituted impl type.
4703             // This also occurs for an enum variant on a type alias.
4704             let ty = tcx.type_of(impl_def_id);
4705
4706             let impl_ty = self.instantiate_type_scheme(span, &substs, &ty);
4707             match self.at(&self.misc(span), self.param_env).sup(impl_ty, self_ty) {
4708                 Ok(ok) => self.register_infer_ok_obligations(ok),
4709                 Err(_) => {
4710                     self.tcx.sess.delay_span_bug(span, &format!(
4711                         "instantiate_value_path: (UFCS) {:?} was a subtype of {:?} but now is not?",
4712                         self_ty,
4713                         impl_ty,
4714                     ));
4715                 }
4716             }
4717         }
4718
4719         self.check_rustc_args_require_const(def_id, hir_id, span);
4720
4721         debug!("instantiate_value_path: type of {:?} is {:?}",
4722                hir_id,
4723                ty_substituted);
4724         self.write_substs(hir_id, substs);
4725
4726         (ty_substituted, res)
4727     }
4728
4729     fn check_rustc_args_require_const(&self,
4730                                       def_id: DefId,
4731                                       hir_id: hir::HirId,
4732                                       span: Span) {
4733         // We're only interested in functions tagged with
4734         // #[rustc_args_required_const], so ignore anything that's not.
4735         if !self.tcx.has_attr(def_id, sym::rustc_args_required_const) {
4736             return
4737         }
4738
4739         // If our calling expression is indeed the function itself, we're good!
4740         // If not, generate an error that this can only be called directly.
4741         if let Node::Expr(expr) = self.tcx.hir().get(
4742             self.tcx.hir().get_parent_node(hir_id))
4743         {
4744             if let ExprKind::Call(ref callee, ..) = expr.node {
4745                 if callee.hir_id == hir_id {
4746                     return
4747                 }
4748             }
4749         }
4750
4751         self.tcx.sess.span_err(span, "this function can only be invoked \
4752                                       directly, not through a function pointer");
4753     }
4754
4755     // Resolves `typ` by a single level if `typ` is a type variable.
4756     // If no resolution is possible, then an error is reported.
4757     // Numeric inference variables may be left unresolved.
4758     pub fn structurally_resolved_type(&self, sp: Span, ty: Ty<'tcx>) -> Ty<'tcx> {
4759         let ty = self.resolve_type_vars_with_obligations(ty);
4760         if !ty.is_ty_var() {
4761             ty
4762         } else {
4763             if !self.is_tainted_by_errors() {
4764                 self.need_type_info_err((**self).body_id, sp, ty)
4765                     .note("type must be known at this point")
4766                     .emit();
4767             }
4768             self.demand_suptype(sp, self.tcx.types.err, ty);
4769             self.tcx.types.err
4770         }
4771     }
4772
4773     fn with_breakable_ctxt<F: FnOnce() -> R, R>(
4774         &self,
4775         id: hir::HirId,
4776         ctxt: BreakableCtxt<'tcx>,
4777         f: F,
4778     ) -> (BreakableCtxt<'tcx>, R) {
4779         let index;
4780         {
4781             let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
4782             index = enclosing_breakables.stack.len();
4783             enclosing_breakables.by_id.insert(id, index);
4784             enclosing_breakables.stack.push(ctxt);
4785         }
4786         let result = f();
4787         let ctxt = {
4788             let mut enclosing_breakables = self.enclosing_breakables.borrow_mut();
4789             debug_assert!(enclosing_breakables.stack.len() == index + 1);
4790             enclosing_breakables.by_id.remove(&id).expect("missing breakable context");
4791             enclosing_breakables.stack.pop().expect("missing breakable context")
4792         };
4793         (ctxt, result)
4794     }
4795
4796     /// Instantiate a QueryResponse in a probe context, without a
4797     /// good ObligationCause.
4798     fn probe_instantiate_query_response(
4799         &self,
4800         span: Span,
4801         original_values: &OriginalQueryValues<'tcx>,
4802         query_result: &Canonical<'tcx, QueryResponse<'tcx, Ty<'tcx>>>,
4803     ) -> InferResult<'tcx, Ty<'tcx>>
4804     {
4805         self.instantiate_query_response_and_region_obligations(
4806             &traits::ObligationCause::misc(span, self.body_id),
4807             self.param_env,
4808             original_values,
4809             query_result)
4810     }
4811
4812     /// Returns `true` if an expression is contained inside the LHS of an assignment expression.
4813     fn expr_in_place(&self, mut expr_id: hir::HirId) -> bool {
4814         let mut contained_in_place = false;
4815
4816         while let hir::Node::Expr(parent_expr) =
4817             self.tcx.hir().get(self.tcx.hir().get_parent_node(expr_id))
4818         {
4819             match &parent_expr.node {
4820                 hir::ExprKind::Assign(lhs, ..) | hir::ExprKind::AssignOp(_, lhs, ..) => {
4821                     if lhs.hir_id == expr_id {
4822                         contained_in_place = true;
4823                         break;
4824                     }
4825                 }
4826                 _ => (),
4827             }
4828             expr_id = parent_expr.hir_id;
4829         }
4830
4831         contained_in_place
4832     }
4833 }
4834
4835 pub fn check_bounds_are_used<'tcx>(tcx: TyCtxt<'tcx>, generics: &ty::Generics, ty: Ty<'tcx>) {
4836     let own_counts = generics.own_counts();
4837     debug!(
4838         "check_bounds_are_used(n_tys={}, n_cts={}, ty={:?})",
4839         own_counts.types,
4840         own_counts.consts,
4841         ty
4842     );
4843
4844     if own_counts.types == 0 {
4845         return;
4846     }
4847
4848     // Make a vector of booleans initially `false`; set to `true` when used.
4849     let mut types_used = vec![false; own_counts.types];
4850
4851     for leaf_ty in ty.walk() {
4852         if let ty::Param(ty::ParamTy { index, .. }) = leaf_ty.sty {
4853             debug!("found use of ty param num {}", index);
4854             types_used[index as usize - own_counts.lifetimes] = true;
4855         } else if let ty::Error = leaf_ty.sty {
4856             // If there is already another error, do not emit
4857             // an error for not using a type parameter.
4858             assert!(tcx.sess.has_errors());
4859             return;
4860         }
4861     }
4862
4863     let types = generics.params.iter().filter(|param| match param.kind {
4864         ty::GenericParamDefKind::Type { .. } => true,
4865         _ => false,
4866     });
4867     for (&used, param) in types_used.iter().zip(types) {
4868         if !used {
4869             let id = tcx.hir().as_local_hir_id(param.def_id).unwrap();
4870             let span = tcx.hir().span(id);
4871             struct_span_err!(tcx.sess, span, E0091, "type parameter `{}` is unused", param.name)
4872                 .span_label(span, "unused type parameter")
4873                 .emit();
4874         }
4875     }
4876 }
4877
4878 fn fatally_break_rust(sess: &Session) {
4879     let handler = sess.diagnostic();
4880     handler.span_bug_no_panic(
4881         MultiSpan::new(),
4882         "It looks like you're trying to break rust; would you like some ICE?",
4883     );
4884     handler.note_without_error("the compiler expectedly panicked. this is a feature.");
4885     handler.note_without_error(
4886         "we would appreciate a joke overview: \
4887         https://github.com/rust-lang/rust/issues/43162#issuecomment-320764675"
4888     );
4889     handler.note_without_error(&format!("rustc {} running on {}",
4890         option_env!("CFG_VERSION").unwrap_or("unknown_version"),
4891         crate::session::config::host_triple(),
4892     ));
4893 }
4894
4895 fn potentially_plural_count(count: usize, word: &str) -> String {
4896     format!("{} {}{}", count, word, if count == 1 { "" } else { "s" })
4897 }