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