]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/check/regionck.rs
Do not show `::constructor` on tuple struct diagnostics
[rust.git] / src / librustc_typeck / check / regionck.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! The region check is a final pass that runs over the AST after we have
12 //! inferred the type constraints but before we have actually finalized
13 //! the types.  Its purpose is to embed a variety of region constraints.
14 //! Inserting these constraints as a separate pass is good because (1) it
15 //! localizes the code that has to do with region inference and (2) often
16 //! we cannot know what constraints are needed until the basic types have
17 //! been inferred.
18 //!
19 //! ### Interaction with the borrow checker
20 //!
21 //! In general, the job of the borrowck module (which runs later) is to
22 //! check that all soundness criteria are met, given a particular set of
23 //! regions. The job of *this* module is to anticipate the needs of the
24 //! borrow checker and infer regions that will satisfy its requirements.
25 //! It is generally true that the inference doesn't need to be sound,
26 //! meaning that if there is a bug and we inferred bad regions, the borrow
27 //! checker should catch it. This is not entirely true though; for
28 //! example, the borrow checker doesn't check subtyping, and it doesn't
29 //! check that region pointers are always live when they are used. It
30 //! might be worthwhile to fix this so that borrowck serves as a kind of
31 //! verification step -- that would add confidence in the overall
32 //! correctness of the compiler, at the cost of duplicating some type
33 //! checks and effort.
34 //!
35 //! ### Inferring the duration of borrows, automatic and otherwise
36 //!
37 //! Whenever we introduce a borrowed pointer, for example as the result of
38 //! a borrow expression `let x = &data`, the lifetime of the pointer `x`
39 //! is always specified as a region inference variable. `regionck` has the
40 //! job of adding constraints such that this inference variable is as
41 //! narrow as possible while still accommodating all uses (that is, every
42 //! dereference of the resulting pointer must be within the lifetime).
43 //!
44 //! #### Reborrows
45 //!
46 //! Generally speaking, `regionck` does NOT try to ensure that the data
47 //! `data` will outlive the pointer `x`. That is the job of borrowck.  The
48 //! one exception is when "re-borrowing" the contents of another borrowed
49 //! pointer. For example, imagine you have a borrowed pointer `b` with
50 //! lifetime L1 and you have an expression `&*b`. The result of this
51 //! expression will be another borrowed pointer with lifetime L2 (which is
52 //! an inference variable). The borrow checker is going to enforce the
53 //! constraint that L2 < L1, because otherwise you are re-borrowing data
54 //! for a lifetime larger than the original loan.  However, without the
55 //! routines in this module, the region inferencer would not know of this
56 //! dependency and thus it might infer the lifetime of L2 to be greater
57 //! than L1 (issue #3148).
58 //!
59 //! There are a number of troublesome scenarios in the tests
60 //! `region-dependent-*.rs`, but here is one example:
61 //!
62 //!     struct Foo { i: i32 }
63 //!     struct Bar { foo: Foo  }
64 //!     fn get_i<'a>(x: &'a Bar) -> &'a i32 {
65 //!        let foo = &x.foo; // Lifetime L1
66 //!        &foo.i            // Lifetime L2
67 //!     }
68 //!
69 //! Note that this comes up either with `&` expressions, `ref`
70 //! bindings, and `autorefs`, which are the three ways to introduce
71 //! a borrow.
72 //!
73 //! The key point here is that when you are borrowing a value that
74 //! is "guaranteed" by a borrowed pointer, you must link the
75 //! lifetime of that borrowed pointer (L1, here) to the lifetime of
76 //! the borrow itself (L2).  What do I mean by "guaranteed" by a
77 //! borrowed pointer? I mean any data that is reached by first
78 //! dereferencing a borrowed pointer and then either traversing
79 //! interior offsets or boxes.  We say that the guarantor
80 //! of such data is the region of the borrowed pointer that was
81 //! traversed.  This is essentially the same as the ownership
82 //! relation, except that a borrowed pointer never owns its
83 //! contents.
84
85 use check::dropck;
86 use check::FnCtxt;
87 use middle::free_region::FreeRegionMap;
88 use middle::mem_categorization as mc;
89 use middle::mem_categorization::Categorization;
90 use middle::region::{self, CodeExtent};
91 use rustc::ty::subst::Substs;
92 use rustc::traits;
93 use rustc::ty::{self, Ty, MethodCall, TypeFoldable};
94 use rustc::infer::{self, GenericKind, SubregionOrigin, VerifyBound};
95 use rustc::ty::adjustment;
96 use rustc::ty::wf::ImpliedBound;
97
98 use std::mem;
99 use std::ops::Deref;
100 use syntax::ast;
101 use syntax_pos::Span;
102 use rustc::hir::intravisit::{self, Visitor, NestedVisitorMap};
103 use rustc::hir::{self, PatKind};
104
105 // a variation on try that just returns unit
106 macro_rules! ignore_err {
107     ($e:expr) => (match $e { Ok(e) => e, Err(_) => return () })
108 }
109
110 ///////////////////////////////////////////////////////////////////////////
111 // PUBLIC ENTRY POINTS
112
113 impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
114     pub fn regionck_expr(&self, body: &'gcx hir::Body) {
115         let id = body.value.id;
116         let mut rcx = RegionCtxt::new(self, RepeatingScope(id), id, Subject(id));
117         if self.err_count_since_creation() == 0 {
118             // regionck assumes typeck succeeded
119             rcx.visit_body(body);
120             rcx.visit_region_obligations(id);
121         }
122         rcx.resolve_regions_and_report_errors();
123
124         assert!(self.tables.borrow().free_region_map.is_empty());
125         self.tables.borrow_mut().free_region_map = rcx.free_region_map;
126     }
127
128     /// Region checking during the WF phase for items. `wf_tys` are the
129     /// types from which we should derive implied bounds, if any.
130     pub fn regionck_item(&self,
131                          item_id: ast::NodeId,
132                          span: Span,
133                          wf_tys: &[Ty<'tcx>]) {
134         debug!("regionck_item(item.id={:?}, wf_tys={:?}", item_id, wf_tys);
135         let mut rcx = RegionCtxt::new(self, RepeatingScope(item_id), item_id, Subject(item_id));
136         rcx.free_region_map.relate_free_regions_from_predicates(
137             &self.parameter_environment.caller_bounds);
138         rcx.relate_free_regions(wf_tys, item_id, span);
139         rcx.visit_region_obligations(item_id);
140         rcx.resolve_regions_and_report_errors();
141     }
142
143     pub fn regionck_fn(&self,
144                        fn_id: ast::NodeId,
145                        body: &'gcx hir::Body) {
146         debug!("regionck_fn(id={})", fn_id);
147         let node_id = body.value.id;
148         let mut rcx = RegionCtxt::new(self, RepeatingScope(node_id), node_id, Subject(fn_id));
149
150         if self.err_count_since_creation() == 0 {
151             // regionck assumes typeck succeeded
152             rcx.visit_fn_body(fn_id, body, self.tcx.hir.span(fn_id));
153         }
154
155         rcx.free_region_map.relate_free_regions_from_predicates(
156             &self.parameter_environment.caller_bounds);
157
158         rcx.resolve_regions_and_report_errors();
159
160         // In this mode, we also copy the free-region-map into the
161         // tables of the enclosing fcx. In the other regionck modes
162         // (e.g., `regionck_item`), we don't have an enclosing tables.
163         assert!(self.tables.borrow().free_region_map.is_empty());
164         self.tables.borrow_mut().free_region_map = rcx.free_region_map;
165     }
166 }
167
168 ///////////////////////////////////////////////////////////////////////////
169 // INTERNALS
170
171 pub struct RegionCtxt<'a, 'gcx: 'a+'tcx, 'tcx: 'a> {
172     pub fcx: &'a FnCtxt<'a, 'gcx, 'tcx>,
173
174     region_bound_pairs: Vec<(&'tcx ty::Region, GenericKind<'tcx>)>,
175
176     free_region_map: FreeRegionMap,
177
178     // id of innermost fn body id
179     body_id: ast::NodeId,
180
181     // call_site scope of innermost fn
182     call_site_scope: Option<CodeExtent>,
183
184     // id of innermost fn or loop
185     repeating_scope: ast::NodeId,
186
187     // id of AST node being analyzed (the subject of the analysis).
188     subject: ast::NodeId,
189
190 }
191
192 impl<'a, 'gcx, 'tcx> Deref for RegionCtxt<'a, 'gcx, 'tcx> {
193     type Target = FnCtxt<'a, 'gcx, 'tcx>;
194     fn deref(&self) -> &Self::Target {
195         &self.fcx
196     }
197 }
198
199 pub struct RepeatingScope(ast::NodeId);
200 pub struct Subject(ast::NodeId);
201
202 impl<'a, 'gcx, 'tcx> RegionCtxt<'a, 'gcx, 'tcx> {
203     pub fn new(fcx: &'a FnCtxt<'a, 'gcx, 'tcx>,
204                RepeatingScope(initial_repeating_scope): RepeatingScope,
205                initial_body_id: ast::NodeId,
206                Subject(subject): Subject) -> RegionCtxt<'a, 'gcx, 'tcx> {
207         RegionCtxt {
208             fcx: fcx,
209             repeating_scope: initial_repeating_scope,
210             body_id: initial_body_id,
211             call_site_scope: None,
212             subject: subject,
213             region_bound_pairs: Vec::new(),
214             free_region_map: FreeRegionMap::new(),
215         }
216     }
217
218     fn set_call_site_scope(&mut self, call_site_scope: Option<CodeExtent>) -> Option<CodeExtent> {
219         mem::replace(&mut self.call_site_scope, call_site_scope)
220     }
221
222     fn set_body_id(&mut self, body_id: ast::NodeId) -> ast::NodeId {
223         mem::replace(&mut self.body_id, body_id)
224     }
225
226     fn set_repeating_scope(&mut self, scope: ast::NodeId) -> ast::NodeId {
227         mem::replace(&mut self.repeating_scope, scope)
228     }
229
230     /// Try to resolve the type for the given node, returning t_err if an error results.  Note that
231     /// we never care about the details of the error, the same error will be detected and reported
232     /// in the writeback phase.
233     ///
234     /// Note one important point: we do not attempt to resolve *region variables* here.  This is
235     /// because regionck is essentially adding constraints to those region variables and so may yet
236     /// influence how they are resolved.
237     ///
238     /// Consider this silly example:
239     ///
240     /// ```
241     /// fn borrow(x: &i32) -> &i32 {x}
242     /// fn foo(x: @i32) -> i32 {  // block: B
243     ///     let b = borrow(x);    // region: <R0>
244     ///     *b
245     /// }
246     /// ```
247     ///
248     /// Here, the region of `b` will be `<R0>`.  `<R0>` is constrained to be some subregion of the
249     /// block B and some superregion of the call.  If we forced it now, we'd choose the smaller
250     /// region (the call).  But that would make the *b illegal.  Since we don't resolve, the type
251     /// of b will be `&<R0>.i32` and then `*b` will require that `<R0>` be bigger than the let and
252     /// the `*b` expression, so we will effectively resolve `<R0>` to be the block B.
253     pub fn resolve_type(&self, unresolved_ty: Ty<'tcx>) -> Ty<'tcx> {
254         self.resolve_type_vars_if_possible(&unresolved_ty)
255     }
256
257     /// Try to resolve the type for the given node.
258     fn resolve_node_type(&self, id: ast::NodeId) -> Ty<'tcx> {
259         let t = self.node_ty(id);
260         self.resolve_type(t)
261     }
262
263     /// Try to resolve the type for the given node.
264     pub fn resolve_expr_type_adjusted(&mut self, expr: &hir::Expr) -> Ty<'tcx> {
265         let ty = self.tables.borrow().expr_ty_adjusted(expr);
266         self.resolve_type(ty)
267     }
268
269     fn visit_fn_body(&mut self,
270                      id: ast::NodeId, // the id of the fn itself
271                      body: &'gcx hir::Body,
272                      span: Span)
273     {
274         // When we enter a function, we can derive
275         debug!("visit_fn_body(id={})", id);
276
277         let body_id = body.id();
278
279         let call_site = self.tcx.region_maps.lookup_code_extent(
280             region::CodeExtentData::CallSiteScope { fn_id: id, body_id: body_id.node_id });
281         let old_call_site_scope = self.set_call_site_scope(Some(call_site));
282
283         let fn_sig = {
284             let fn_sig_map = &self.tables.borrow().liberated_fn_sigs;
285             match fn_sig_map.get(&id) {
286                 Some(f) => f.clone(),
287                 None => {
288                     bug!("No fn-sig entry for id={}", id);
289                 }
290             }
291         };
292
293         let old_region_bounds_pairs_len = self.region_bound_pairs.len();
294
295         // Collect the types from which we create inferred bounds.
296         // For the return type, if diverging, substitute `bool` just
297         // because it will have no effect.
298         //
299         // FIXME(#27579) return types should not be implied bounds
300         let fn_sig_tys: Vec<_> =
301             fn_sig.inputs().iter().cloned().chain(Some(fn_sig.output())).collect();
302
303         let old_body_id = self.set_body_id(body_id.node_id);
304         self.relate_free_regions(&fn_sig_tys[..], body_id.node_id, span);
305         self.link_fn_args(self.tcx.region_maps.node_extent(body_id.node_id), &body.arguments);
306         self.visit_body(body);
307         self.visit_region_obligations(body_id.node_id);
308
309         let call_site_scope = self.call_site_scope.unwrap();
310         debug!("visit_fn_body body.id {:?} call_site_scope: {:?}",
311                body.id(), call_site_scope);
312         let call_site_region = self.tcx.mk_region(ty::ReScope(call_site_scope));
313         self.type_of_node_must_outlive(infer::CallReturn(span),
314                                        body_id.node_id,
315                                        call_site_region);
316
317         self.region_bound_pairs.truncate(old_region_bounds_pairs_len);
318
319         self.set_body_id(old_body_id);
320         self.set_call_site_scope(old_call_site_scope);
321     }
322
323     fn visit_region_obligations(&mut self, node_id: ast::NodeId)
324     {
325         debug!("visit_region_obligations: node_id={}", node_id);
326
327         // region checking can introduce new pending obligations
328         // which, when processed, might generate new region
329         // obligations. So make sure we process those.
330         self.select_all_obligations_or_error();
331
332         // Make a copy of the region obligations vec because we'll need
333         // to be able to borrow the fulfillment-cx below when projecting.
334         let region_obligations =
335             self.fulfillment_cx
336                 .borrow()
337                 .region_obligations(node_id)
338                 .to_vec();
339
340         for r_o in &region_obligations {
341             debug!("visit_region_obligations: r_o={:?} cause={:?}",
342                    r_o, r_o.cause);
343             let sup_type = self.resolve_type(r_o.sup_type);
344             let origin = self.code_to_origin(&r_o.cause, sup_type);
345             self.type_must_outlive(origin, sup_type, r_o.sub_region);
346         }
347
348         // Processing the region obligations should not cause the list to grow further:
349         assert_eq!(region_obligations.len(),
350                    self.fulfillment_cx.borrow().region_obligations(node_id).len());
351     }
352
353     fn code_to_origin(&self,
354                       cause: &traits::ObligationCause<'tcx>,
355                       sup_type: Ty<'tcx>)
356                       -> SubregionOrigin<'tcx> {
357         SubregionOrigin::from_obligation_cause(cause,
358                                                || infer::RelateParamBound(cause.span, sup_type))
359     }
360
361     /// This method populates the region map's `free_region_map`. It walks over the transformed
362     /// argument and return types for each function just before we check the body of that function,
363     /// looking for types where you have a borrowed pointer to other borrowed data (e.g., `&'a &'b
364     /// [usize]`.  We do not allow references to outlive the things they point at, so we can assume
365     /// that `'a <= 'b`. This holds for both the argument and return types, basically because, on
366     /// the caller side, the caller is responsible for checking that the type of every expression
367     /// (including the actual values for the arguments, as well as the return type of the fn call)
368     /// is well-formed.
369     ///
370     /// Tests: `src/test/compile-fail/regions-free-region-ordering-*.rs`
371     fn relate_free_regions(&mut self,
372                            fn_sig_tys: &[Ty<'tcx>],
373                            body_id: ast::NodeId,
374                            span: Span) {
375         debug!("relate_free_regions >>");
376
377         for &ty in fn_sig_tys {
378             let ty = self.resolve_type(ty);
379             debug!("relate_free_regions(t={:?})", ty);
380             let implied_bounds = ty::wf::implied_bounds(self, body_id, ty, span);
381
382             // Record any relations between free regions that we observe into the free-region-map.
383             self.free_region_map.relate_free_regions_from_implied_bounds(&implied_bounds);
384
385             // But also record other relationships, such as `T:'x`,
386             // that don't go into the free-region-map but which we use
387             // here.
388             for implication in implied_bounds {
389                 debug!("implication: {:?}", implication);
390                 match implication {
391                     ImpliedBound::RegionSubRegion(&ty::ReFree(free_a),
392                                                   &ty::ReVar(vid_b)) => {
393                         self.add_given(free_a, vid_b);
394                     }
395                     ImpliedBound::RegionSubParam(r_a, param_b) => {
396                         self.region_bound_pairs.push((r_a, GenericKind::Param(param_b)));
397                     }
398                     ImpliedBound::RegionSubProjection(r_a, projection_b) => {
399                         self.region_bound_pairs.push((r_a, GenericKind::Projection(projection_b)));
400                     }
401                     ImpliedBound::RegionSubRegion(..) => {
402                         // In principle, we could record (and take
403                         // advantage of) every relationship here, but
404                         // we are also free not to -- it simply means
405                         // strictly less that we can successfully type
406                         // check. (It may also be that we should
407                         // revise our inference system to be more
408                         // general and to make use of *every*
409                         // relationship that arises here, but
410                         // presently we do not.)
411                     }
412                 }
413             }
414         }
415
416         debug!("<< relate_free_regions");
417     }
418
419     fn resolve_regions_and_report_errors(&self) {
420         let subject_node_id = self.subject;
421
422         self.fcx.resolve_regions_and_report_errors(&self.free_region_map,
423                                                    subject_node_id);
424     }
425
426     fn constrain_bindings_in_pat(&mut self, pat: &hir::Pat) {
427         let tcx = self.tcx;
428         debug!("regionck::visit_pat(pat={:?})", pat);
429         pat.each_binding(|_, id, span, _| {
430             // If we have a variable that contains region'd data, that
431             // data will be accessible from anywhere that the variable is
432             // accessed. We must be wary of loops like this:
433             //
434             //     // from src/test/compile-fail/borrowck-lend-flow.rs
435             //     let mut v = box 3, w = box 4;
436             //     let mut x = &mut w;
437             //     loop {
438             //         **x += 1;   // (2)
439             //         borrow(v);  //~ ERROR cannot borrow
440             //         x = &mut v; // (1)
441             //     }
442             //
443             // Typically, we try to determine the region of a borrow from
444             // those points where it is dereferenced. In this case, one
445             // might imagine that the lifetime of `x` need only be the
446             // body of the loop. But of course this is incorrect because
447             // the pointer that is created at point (1) is consumed at
448             // point (2), meaning that it must be live across the loop
449             // iteration. The easiest way to guarantee this is to require
450             // that the lifetime of any regions that appear in a
451             // variable's type enclose at least the variable's scope.
452
453             let var_scope = tcx.region_maps.var_scope(id);
454             let var_region = self.tcx.mk_region(ty::ReScope(var_scope));
455
456             let origin = infer::BindingTypeIsNotValidAtDecl(span);
457             self.type_of_node_must_outlive(origin, id, var_region);
458
459             let typ = self.resolve_node_type(id);
460             dropck::check_safety_of_destructor_if_necessary(self, typ, span, var_scope);
461         })
462     }
463 }
464
465 impl<'a, 'gcx, 'tcx> Visitor<'gcx> for RegionCtxt<'a, 'gcx, 'tcx> {
466     // (..) FIXME(#3238) should use visit_pat, not visit_arm/visit_local,
467     // However, right now we run into an issue whereby some free
468     // regions are not properly related if they appear within the
469     // types of arguments that must be inferred. This could be
470     // addressed by deferring the construction of the region
471     // hierarchy, and in particular the relationships between free
472     // regions, until regionck, as described in #3238.
473
474     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'gcx> {
475         NestedVisitorMap::None
476     }
477
478     fn visit_fn(&mut self, _fk: intravisit::FnKind<'gcx>, _: &'gcx hir::FnDecl,
479                 b: hir::BodyId, span: Span, id: ast::NodeId) {
480         let body = self.tcx.hir.body(b);
481         self.visit_fn_body(id, body, span)
482     }
483
484     //visit_pat: visit_pat, // (..) see above
485
486     fn visit_arm(&mut self, arm: &'gcx hir::Arm) {
487         // see above
488         for p in &arm.pats {
489             self.constrain_bindings_in_pat(p);
490         }
491         intravisit::walk_arm(self, arm);
492     }
493
494     fn visit_local(&mut self, l: &'gcx hir::Local) {
495         // see above
496         self.constrain_bindings_in_pat(&l.pat);
497         self.link_local(l);
498         intravisit::walk_local(self, l);
499     }
500
501     fn visit_expr(&mut self, expr: &'gcx hir::Expr) {
502         debug!("regionck::visit_expr(e={:?}, repeating_scope={})",
503                expr, self.repeating_scope);
504
505         // No matter what, the type of each expression must outlive the
506         // scope of that expression. This also guarantees basic WF.
507         let expr_ty = self.resolve_node_type(expr.id);
508         // the region corresponding to this expression
509         let expr_region = self.tcx.node_scope_region(expr.id);
510         self.type_must_outlive(infer::ExprTypeIsNotInScope(expr_ty, expr.span),
511                                expr_ty, expr_region);
512
513         let method_call = MethodCall::expr(expr.id);
514         let opt_method_callee = self.tables.borrow().method_map.get(&method_call).cloned();
515         let has_method_map = opt_method_callee.is_some();
516
517         // If we are calling a method (either explicitly or via an
518         // overloaded operator), check that all of the types provided as
519         // arguments for its type parameters are well-formed, and all the regions
520         // provided as arguments outlive the call.
521         if let Some(callee) = opt_method_callee {
522             let origin = match expr.node {
523                 hir::ExprMethodCall(..) =>
524                     infer::ParameterOrigin::MethodCall,
525                 hir::ExprUnary(op, _) if op == hir::UnDeref =>
526                     infer::ParameterOrigin::OverloadedDeref,
527                 _ =>
528                     infer::ParameterOrigin::OverloadedOperator
529             };
530
531             self.substs_wf_in_scope(origin, &callee.substs, expr.span, expr_region);
532             self.type_must_outlive(infer::ExprTypeIsNotInScope(callee.ty, expr.span),
533                                    callee.ty, expr_region);
534         }
535
536         // Check any autoderefs or autorefs that appear.
537         let adjustment = self.tables.borrow().adjustments.get(&expr.id).map(|a| a.clone());
538         if let Some(adjustment) = adjustment {
539             debug!("adjustment={:?}", adjustment);
540             match adjustment.kind {
541                 adjustment::Adjust::DerefRef { autoderefs, ref autoref, .. } => {
542                     let expr_ty = self.resolve_node_type(expr.id);
543                     self.constrain_autoderefs(expr, autoderefs, expr_ty);
544                     if let Some(ref autoref) = *autoref {
545                         self.link_autoref(expr, autoderefs, autoref);
546
547                         // Require that the resulting region encompasses
548                         // the current node.
549                         //
550                         // FIXME(#6268) remove to support nested method calls
551                         self.type_of_node_must_outlive(infer::AutoBorrow(expr.span),
552                                                        expr.id, expr_region);
553                     }
554                 }
555                 /*
556                 adjustment::AutoObject(_, ref bounds, ..) => {
557                     // Determine if we are casting `expr` to a trait
558                     // instance. If so, we have to be sure that the type
559                     // of the source obeys the new region bound.
560                     let source_ty = self.resolve_node_type(expr.id);
561                     self.type_must_outlive(infer::RelateObjectBound(expr.span),
562                                            source_ty, bounds.region_bound);
563                 }
564                 */
565                 _ => {}
566             }
567
568             // If necessary, constrain destructors in the unadjusted form of this
569             // expression.
570             let cmt_result = {
571                 let mc = mc::MemCategorizationContext::new(self);
572                 mc.cat_expr_unadjusted(expr)
573             };
574             match cmt_result {
575                 Ok(head_cmt) => {
576                     self.check_safety_of_rvalue_destructor_if_necessary(head_cmt,
577                                                                         expr.span);
578                 }
579                 Err(..) => {
580                     self.tcx.sess.delay_span_bug(expr.span, "cat_expr_unadjusted Errd");
581                 }
582             }
583         }
584
585         // If necessary, constrain destructors in this expression. This will be
586         // the adjusted form if there is an adjustment.
587         let cmt_result = {
588             let mc = mc::MemCategorizationContext::new(self);
589             mc.cat_expr(expr)
590         };
591         match cmt_result {
592             Ok(head_cmt) => {
593                 self.check_safety_of_rvalue_destructor_if_necessary(head_cmt, expr.span);
594             }
595             Err(..) => {
596                 self.tcx.sess.delay_span_bug(expr.span, "cat_expr Errd");
597             }
598         }
599
600         debug!("regionck::visit_expr(e={:?}, repeating_scope={}) - visiting subexprs",
601                expr, self.repeating_scope);
602         match expr.node {
603             hir::ExprPath(_) => {
604                 self.fcx.opt_node_ty_substs(expr.id, |item_substs| {
605                     let origin = infer::ParameterOrigin::Path;
606                     self.substs_wf_in_scope(origin, &item_substs.substs, expr.span, expr_region);
607                 });
608             }
609
610             hir::ExprCall(ref callee, ref args) => {
611                 if has_method_map {
612                     self.constrain_call(expr, Some(&callee),
613                                         args.iter().map(|e| &*e), false);
614                 } else {
615                     self.constrain_callee(callee.id, expr, &callee);
616                     self.constrain_call(expr, None,
617                                         args.iter().map(|e| &*e), false);
618                 }
619
620                 intravisit::walk_expr(self, expr);
621             }
622
623             hir::ExprMethodCall(.., ref args) => {
624                 self.constrain_call(expr, Some(&args[0]),
625                                     args[1..].iter().map(|e| &*e), false);
626
627                 intravisit::walk_expr(self, expr);
628             }
629
630             hir::ExprAssignOp(_, ref lhs, ref rhs) => {
631                 if has_method_map {
632                     self.constrain_call(expr, Some(&lhs),
633                                         Some(&**rhs).into_iter(), false);
634                 }
635
636                 intravisit::walk_expr(self, expr);
637             }
638
639             hir::ExprIndex(ref lhs, ref rhs) if has_method_map => {
640                 self.constrain_call(expr, Some(&lhs),
641                                     Some(&**rhs).into_iter(), true);
642
643                 intravisit::walk_expr(self, expr);
644             },
645
646             hir::ExprBinary(op, ref lhs, ref rhs) if has_method_map => {
647                 let implicitly_ref_args = !op.node.is_by_value();
648
649                 // As `expr_method_call`, but the call is via an
650                 // overloaded op.  Note that we (sadly) currently use an
651                 // implicit "by ref" sort of passing style here.  This
652                 // should be converted to an adjustment!
653                 self.constrain_call(expr, Some(&lhs),
654                                     Some(&**rhs).into_iter(), implicitly_ref_args);
655
656                 intravisit::walk_expr(self, expr);
657             }
658
659             hir::ExprBinary(_, ref lhs, ref rhs) => {
660                 // If you do `x OP y`, then the types of `x` and `y` must
661                 // outlive the operation you are performing.
662                 let lhs_ty = self.resolve_expr_type_adjusted(&lhs);
663                 let rhs_ty = self.resolve_expr_type_adjusted(&rhs);
664                 for &ty in &[lhs_ty, rhs_ty] {
665                     self.type_must_outlive(infer::Operand(expr.span),
666                                            ty, expr_region);
667                 }
668                 intravisit::walk_expr(self, expr);
669             }
670
671             hir::ExprUnary(op, ref lhs) if has_method_map => {
672                 let implicitly_ref_args = !op.is_by_value();
673
674                 // As above.
675                 self.constrain_call(expr, Some(&lhs),
676                                     None::<hir::Expr>.iter(), implicitly_ref_args);
677
678                 intravisit::walk_expr(self, expr);
679             }
680
681             hir::ExprUnary(hir::UnDeref, ref base) => {
682                 // For *a, the lifetime of a must enclose the deref
683                 let method_call = MethodCall::expr(expr.id);
684                 let base_ty = match self.tables.borrow().method_map.get(&method_call) {
685                     Some(method) => {
686                         self.constrain_call(expr, Some(&base),
687                                             None::<hir::Expr>.iter(), true);
688                         // late-bound regions in overloaded method calls are instantiated
689                         let fn_ret = self.tcx.no_late_bound_regions(&method.ty.fn_ret());
690                         fn_ret.unwrap()
691                     }
692                     None => self.resolve_node_type(base.id)
693                 };
694                 if let ty::TyRef(r_ptr, _) = base_ty.sty {
695                     self.mk_subregion_due_to_dereference(expr.span, expr_region, r_ptr);
696                 }
697
698                 intravisit::walk_expr(self, expr);
699             }
700
701             hir::ExprIndex(ref vec_expr, _) => {
702                 // For a[b], the lifetime of a must enclose the deref
703                 let vec_type = self.resolve_expr_type_adjusted(&vec_expr);
704                 self.constrain_index(expr, vec_type);
705
706                 intravisit::walk_expr(self, expr);
707             }
708
709             hir::ExprCast(ref source, _) => {
710                 // Determine if we are casting `source` to a trait
711                 // instance.  If so, we have to be sure that the type of
712                 // the source obeys the trait's region bound.
713                 self.constrain_cast(expr, &source);
714                 intravisit::walk_expr(self, expr);
715             }
716
717             hir::ExprAddrOf(m, ref base) => {
718                 self.link_addr_of(expr, m, &base);
719
720                 // Require that when you write a `&expr` expression, the
721                 // resulting pointer has a lifetime that encompasses the
722                 // `&expr` expression itself. Note that we constraining
723                 // the type of the node expr.id here *before applying
724                 // adjustments*.
725                 //
726                 // FIXME(#6268) nested method calls requires that this rule change
727                 let ty0 = self.resolve_node_type(expr.id);
728                 self.type_must_outlive(infer::AddrOf(expr.span), ty0, expr_region);
729                 intravisit::walk_expr(self, expr);
730             }
731
732             hir::ExprMatch(ref discr, ref arms, _) => {
733                 self.link_match(&discr, &arms[..]);
734
735                 intravisit::walk_expr(self, expr);
736             }
737
738             hir::ExprClosure(.., body_id, _) => {
739                 self.check_expr_fn_block(expr, body_id);
740             }
741
742             hir::ExprLoop(ref body, _, _) => {
743                 let repeating_scope = self.set_repeating_scope(body.id);
744                 intravisit::walk_expr(self, expr);
745                 self.set_repeating_scope(repeating_scope);
746             }
747
748             hir::ExprWhile(ref cond, ref body, _) => {
749                 let repeating_scope = self.set_repeating_scope(cond.id);
750                 self.visit_expr(&cond);
751
752                 self.set_repeating_scope(body.id);
753                 self.visit_block(&body);
754
755                 self.set_repeating_scope(repeating_scope);
756             }
757
758             hir::ExprRet(Some(ref ret_expr)) => {
759                 let call_site_scope = self.call_site_scope;
760                 debug!("visit_expr ExprRet ret_expr.id {} call_site_scope: {:?}",
761                        ret_expr.id, call_site_scope);
762                 let call_site_region = self.tcx.mk_region(ty::ReScope(call_site_scope.unwrap()));
763                 self.type_of_node_must_outlive(infer::CallReturn(ret_expr.span),
764                                                ret_expr.id,
765                                                call_site_region);
766                 intravisit::walk_expr(self, expr);
767             }
768
769             _ => {
770                 intravisit::walk_expr(self, expr);
771             }
772         }
773     }
774 }
775
776 impl<'a, 'gcx, 'tcx> RegionCtxt<'a, 'gcx, 'tcx> {
777     fn constrain_cast(&mut self,
778                       cast_expr: &hir::Expr,
779                       source_expr: &hir::Expr)
780     {
781         debug!("constrain_cast(cast_expr={:?}, source_expr={:?})",
782                cast_expr,
783                source_expr);
784
785         let source_ty = self.resolve_node_type(source_expr.id);
786         let target_ty = self.resolve_node_type(cast_expr.id);
787
788         self.walk_cast(cast_expr, source_ty, target_ty);
789     }
790
791     fn walk_cast(&mut self,
792                  cast_expr: &hir::Expr,
793                  from_ty: Ty<'tcx>,
794                  to_ty: Ty<'tcx>) {
795         debug!("walk_cast(from_ty={:?}, to_ty={:?})",
796                from_ty,
797                to_ty);
798         match (&from_ty.sty, &to_ty.sty) {
799             /*From:*/ (&ty::TyRef(from_r, ref from_mt),
800             /*To:  */  &ty::TyRef(to_r, ref to_mt)) => {
801                 // Target cannot outlive source, naturally.
802                 self.sub_regions(infer::Reborrow(cast_expr.span), to_r, from_r);
803                 self.walk_cast(cast_expr, from_mt.ty, to_mt.ty);
804             }
805
806             /*From:*/ (_,
807             /*To:  */  &ty::TyDynamic(.., r)) => {
808                 // When T is existentially quantified as a trait
809                 // `Foo+'to`, it must outlive the region bound `'to`.
810                 self.type_must_outlive(infer::RelateObjectBound(cast_expr.span), from_ty, r);
811             }
812
813             /*From:*/ (&ty::TyAdt(from_def, _),
814             /*To:  */  &ty::TyAdt(to_def, _)) if from_def.is_box() && to_def.is_box() => {
815                 self.walk_cast(cast_expr, from_ty.boxed_ty(), to_ty.boxed_ty());
816             }
817
818             _ => { }
819         }
820     }
821
822     fn check_expr_fn_block(&mut self,
823                            expr: &'gcx hir::Expr,
824                            body_id: hir::BodyId) {
825         let repeating_scope = self.set_repeating_scope(body_id.node_id);
826         intravisit::walk_expr(self, expr);
827         self.set_repeating_scope(repeating_scope);
828     }
829
830     fn constrain_callee(&mut self,
831                         callee_id: ast::NodeId,
832                         _call_expr: &hir::Expr,
833                         _callee_expr: &hir::Expr) {
834         let callee_ty = self.resolve_node_type(callee_id);
835         match callee_ty.sty {
836             ty::TyFnDef(..) | ty::TyFnPtr(_) => { }
837             _ => {
838                 // this should not happen, but it does if the program is
839                 // erroneous
840                 //
841                 // bug!(
842                 //     callee_expr.span,
843                 //     "Calling non-function: {}",
844                 //     callee_ty);
845             }
846         }
847     }
848
849     fn constrain_call<'b, I: Iterator<Item=&'b hir::Expr>>(&mut self,
850                                                            call_expr: &hir::Expr,
851                                                            receiver: Option<&hir::Expr>,
852                                                            arg_exprs: I,
853                                                            implicitly_ref_args: bool) {
854         //! Invoked on every call site (i.e., normal calls, method calls,
855         //! and overloaded operators). Constrains the regions which appear
856         //! in the type of the function. Also constrains the regions that
857         //! appear in the arguments appropriately.
858
859         debug!("constrain_call(call_expr={:?}, \
860                 receiver={:?}, \
861                 implicitly_ref_args={})",
862                 call_expr,
863                 receiver,
864                 implicitly_ref_args);
865
866         // `callee_region` is the scope representing the time in which the
867         // call occurs.
868         //
869         // FIXME(#6268) to support nested method calls, should be callee_id
870         let callee_scope = self.tcx.region_maps.node_extent(call_expr.id);
871         let callee_region = self.tcx.mk_region(ty::ReScope(callee_scope));
872
873         debug!("callee_region={:?}", callee_region);
874
875         for arg_expr in arg_exprs {
876             debug!("Argument: {:?}", arg_expr);
877
878             // ensure that any regions appearing in the argument type are
879             // valid for at least the lifetime of the function:
880             self.type_of_node_must_outlive(infer::CallArg(arg_expr.span),
881                                            arg_expr.id, callee_region);
882
883             // unfortunately, there are two means of taking implicit
884             // references, and we need to propagate constraints as a
885             // result. modes are going away and the "DerefArgs" code
886             // should be ported to use adjustments
887             if implicitly_ref_args {
888                 self.link_by_ref(arg_expr, callee_scope);
889             }
890         }
891
892         // as loop above, but for receiver
893         if let Some(r) = receiver {
894             debug!("receiver: {:?}", r);
895             self.type_of_node_must_outlive(infer::CallRcvr(r.span),
896                                            r.id, callee_region);
897             if implicitly_ref_args {
898                 self.link_by_ref(&r, callee_scope);
899             }
900         }
901     }
902
903     /// Invoked on any auto-dereference that occurs. Checks that if this is a region pointer being
904     /// dereferenced, the lifetime of the pointer includes the deref expr.
905     fn constrain_autoderefs(&mut self,
906                             deref_expr: &hir::Expr,
907                             derefs: usize,
908                             mut derefd_ty: Ty<'tcx>)
909     {
910         debug!("constrain_autoderefs(deref_expr={:?}, derefs={}, derefd_ty={:?})",
911                deref_expr,
912                derefs,
913                derefd_ty);
914
915         let r_deref_expr = self.tcx.node_scope_region(deref_expr.id);
916         for i in 0..derefs {
917             let method_call = MethodCall::autoderef(deref_expr.id, i as u32);
918             debug!("constrain_autoderefs: method_call={:?} (of {:?} total)", method_call, derefs);
919
920             let method = self.tables.borrow().method_map.get(&method_call).map(|m| m.clone());
921
922             derefd_ty = match method {
923                 Some(method) => {
924                     debug!("constrain_autoderefs: #{} is overloaded, method={:?}",
925                            i, method);
926
927                     let origin = infer::ParameterOrigin::OverloadedDeref;
928                     self.substs_wf_in_scope(origin, method.substs, deref_expr.span, r_deref_expr);
929
930                     // Treat overloaded autoderefs as if an AutoBorrow adjustment
931                     // was applied on the base type, as that is always the case.
932                     let fn_sig = method.ty.fn_sig();
933                     let fn_sig = // late-bound regions should have been instantiated
934                         self.tcx.no_late_bound_regions(&fn_sig).unwrap();
935                     let self_ty = fn_sig.inputs()[0];
936                     let (m, r) = match self_ty.sty {
937                         ty::TyRef(r, ref m) => (m.mutbl, r),
938                         _ => {
939                             span_bug!(
940                                 deref_expr.span,
941                                 "bad overloaded deref type {:?}",
942                                 method.ty)
943                         }
944                     };
945
946                     debug!("constrain_autoderefs: receiver r={:?} m={:?}",
947                            r, m);
948
949                     {
950                         let mc = mc::MemCategorizationContext::new(self);
951                         let self_cmt = ignore_err!(mc.cat_expr_autoderefd(deref_expr, i));
952                         debug!("constrain_autoderefs: self_cmt={:?}",
953                                self_cmt);
954                         self.link_region(deref_expr.span, r,
955                                          ty::BorrowKind::from_mutbl(m), self_cmt);
956                     }
957
958                     // Specialized version of constrain_call.
959                     self.type_must_outlive(infer::CallRcvr(deref_expr.span),
960                                            self_ty, r_deref_expr);
961                     self.type_must_outlive(infer::CallReturn(deref_expr.span),
962                                            fn_sig.output(), r_deref_expr);
963                     fn_sig.output()
964                 }
965                 None => derefd_ty
966             };
967
968             if let ty::TyRef(r_ptr, _) =  derefd_ty.sty {
969                 self.mk_subregion_due_to_dereference(deref_expr.span,
970                                                      r_deref_expr, r_ptr);
971             }
972
973             match derefd_ty.builtin_deref(true, ty::NoPreference) {
974                 Some(mt) => derefd_ty = mt.ty,
975                 /* if this type can't be dereferenced, then there's already an error
976                    in the session saying so. Just bail out for now */
977                 None => break
978             }
979         }
980     }
981
982     pub fn mk_subregion_due_to_dereference(&mut self,
983                                            deref_span: Span,
984                                            minimum_lifetime: &'tcx ty::Region,
985                                            maximum_lifetime: &'tcx ty::Region) {
986         self.sub_regions(infer::DerefPointer(deref_span),
987                          minimum_lifetime, maximum_lifetime)
988     }
989
990     fn check_safety_of_rvalue_destructor_if_necessary(&mut self,
991                                                      cmt: mc::cmt<'tcx>,
992                                                      span: Span) {
993         match cmt.cat {
994             Categorization::Rvalue(region, _) => {
995                 match *region {
996                     ty::ReScope(rvalue_scope) => {
997                         let typ = self.resolve_type(cmt.ty);
998                         dropck::check_safety_of_destructor_if_necessary(self,
999                                                                         typ,
1000                                                                         span,
1001                                                                         rvalue_scope);
1002                     }
1003                     ty::ReStatic => {}
1004                     _ => {
1005                         span_bug!(span,
1006                                   "unexpected rvalue region in rvalue \
1007                                    destructor safety checking: `{:?}`",
1008                                   region);
1009                     }
1010                 }
1011             }
1012             _ => {}
1013         }
1014     }
1015
1016     /// Invoked on any index expression that occurs. Checks that if this is a slice
1017     /// being indexed, the lifetime of the pointer includes the deref expr.
1018     fn constrain_index(&mut self,
1019                        index_expr: &hir::Expr,
1020                        indexed_ty: Ty<'tcx>)
1021     {
1022         debug!("constrain_index(index_expr=?, indexed_ty={}",
1023                self.ty_to_string(indexed_ty));
1024
1025         let r_index_expr = ty::ReScope(self.tcx.region_maps.node_extent(index_expr.id));
1026         if let ty::TyRef(r_ptr, mt) = indexed_ty.sty {
1027             match mt.ty.sty {
1028                 ty::TySlice(_) | ty::TyStr => {
1029                     self.sub_regions(infer::IndexSlice(index_expr.span),
1030                                      self.tcx.mk_region(r_index_expr), r_ptr);
1031                 }
1032                 _ => {}
1033             }
1034         }
1035     }
1036
1037     /// Guarantees that any lifetimes which appear in the type of the node `id` (after applying
1038     /// adjustments) are valid for at least `minimum_lifetime`
1039     fn type_of_node_must_outlive(&mut self,
1040         origin: infer::SubregionOrigin<'tcx>,
1041         id: ast::NodeId,
1042         minimum_lifetime: &'tcx ty::Region)
1043     {
1044         // Try to resolve the type.  If we encounter an error, then typeck
1045         // is going to fail anyway, so just stop here and let typeck
1046         // report errors later on in the writeback phase.
1047         let ty0 = self.resolve_node_type(id);
1048         let ty = self.tables.borrow().adjustments.get(&id).map_or(ty0, |adj| adj.target);
1049         let ty = self.resolve_type(ty);
1050         debug!("constrain_regions_in_type_of_node(\
1051                 ty={}, ty0={}, id={}, minimum_lifetime={:?})",
1052                 ty,  ty0,
1053                id, minimum_lifetime);
1054         self.type_must_outlive(origin, ty, minimum_lifetime);
1055     }
1056
1057     /// Computes the guarantor for an expression `&base` and then ensures that the lifetime of the
1058     /// resulting pointer is linked to the lifetime of its guarantor (if any).
1059     fn link_addr_of(&mut self, expr: &hir::Expr,
1060                     mutability: hir::Mutability, base: &hir::Expr) {
1061         debug!("link_addr_of(expr={:?}, base={:?})", expr, base);
1062
1063         let cmt = {
1064             let mc = mc::MemCategorizationContext::new(self);
1065             ignore_err!(mc.cat_expr(base))
1066         };
1067
1068         debug!("link_addr_of: cmt={:?}", cmt);
1069
1070         self.link_region_from_node_type(expr.span, expr.id, mutability, cmt);
1071     }
1072
1073     /// Computes the guarantors for any ref bindings in a `let` and
1074     /// then ensures that the lifetime of the resulting pointer is
1075     /// linked to the lifetime of the initialization expression.
1076     fn link_local(&self, local: &hir::Local) {
1077         debug!("regionck::for_local()");
1078         let init_expr = match local.init {
1079             None => { return; }
1080             Some(ref expr) => &**expr,
1081         };
1082         let mc = mc::MemCategorizationContext::new(self);
1083         let discr_cmt = ignore_err!(mc.cat_expr(init_expr));
1084         self.link_pattern(mc, discr_cmt, &local.pat);
1085     }
1086
1087     /// Computes the guarantors for any ref bindings in a match and
1088     /// then ensures that the lifetime of the resulting pointer is
1089     /// linked to the lifetime of its guarantor (if any).
1090     fn link_match(&self, discr: &hir::Expr, arms: &[hir::Arm]) {
1091         debug!("regionck::for_match()");
1092         let mc = mc::MemCategorizationContext::new(self);
1093         let discr_cmt = ignore_err!(mc.cat_expr(discr));
1094         debug!("discr_cmt={:?}", discr_cmt);
1095         for arm in arms {
1096             for root_pat in &arm.pats {
1097                 self.link_pattern(mc, discr_cmt.clone(), &root_pat);
1098             }
1099         }
1100     }
1101
1102     /// Computes the guarantors for any ref bindings in a match and
1103     /// then ensures that the lifetime of the resulting pointer is
1104     /// linked to the lifetime of its guarantor (if any).
1105     fn link_fn_args(&self, body_scope: CodeExtent, args: &[hir::Arg]) {
1106         debug!("regionck::link_fn_args(body_scope={:?})", body_scope);
1107         let mc = mc::MemCategorizationContext::new(self);
1108         for arg in args {
1109             let arg_ty = self.node_ty(arg.id);
1110             let re_scope = self.tcx.mk_region(ty::ReScope(body_scope));
1111             let arg_cmt = mc.cat_rvalue(
1112                 arg.id, arg.pat.span, re_scope, re_scope, arg_ty);
1113             debug!("arg_ty={:?} arg_cmt={:?} arg={:?}",
1114                    arg_ty,
1115                    arg_cmt,
1116                    arg);
1117             self.link_pattern(mc, arg_cmt, &arg.pat);
1118         }
1119     }
1120
1121     /// Link lifetimes of any ref bindings in `root_pat` to the pointers found
1122     /// in the discriminant, if needed.
1123     fn link_pattern<'t>(&self,
1124                         mc: mc::MemCategorizationContext<'a, 'gcx, 'tcx>,
1125                         discr_cmt: mc::cmt<'tcx>,
1126                         root_pat: &hir::Pat) {
1127         debug!("link_pattern(discr_cmt={:?}, root_pat={:?})",
1128                discr_cmt,
1129                root_pat);
1130     let _ = mc.cat_pattern(discr_cmt, root_pat, |_, sub_cmt, sub_pat| {
1131                 match sub_pat.node {
1132                     // `ref x` pattern
1133                     PatKind::Binding(hir::BindByRef(mutbl), ..) => {
1134                         self.link_region_from_node_type(sub_pat.span, sub_pat.id,
1135                                                         mutbl, sub_cmt);
1136                     }
1137                     _ => {}
1138                 }
1139             });
1140     }
1141
1142     /// Link lifetime of borrowed pointer resulting from autoref to lifetimes in the value being
1143     /// autoref'd.
1144     fn link_autoref(&self,
1145                     expr: &hir::Expr,
1146                     autoderefs: usize,
1147                     autoref: &adjustment::AutoBorrow<'tcx>)
1148     {
1149         debug!("link_autoref(autoderefs={}, autoref={:?})", autoderefs, autoref);
1150         let mc = mc::MemCategorizationContext::new(self);
1151         let expr_cmt = ignore_err!(mc.cat_expr_autoderefd(expr, autoderefs));
1152         debug!("expr_cmt={:?}", expr_cmt);
1153
1154         match *autoref {
1155             adjustment::AutoBorrow::Ref(r, m) => {
1156                 self.link_region(expr.span, r,
1157                                  ty::BorrowKind::from_mutbl(m), expr_cmt);
1158             }
1159
1160             adjustment::AutoBorrow::RawPtr(m) => {
1161                 let r = self.tcx.node_scope_region(expr.id);
1162                 self.link_region(expr.span, r, ty::BorrowKind::from_mutbl(m), expr_cmt);
1163             }
1164         }
1165     }
1166
1167     /// Computes the guarantor for cases where the `expr` is being passed by implicit reference and
1168     /// must outlive `callee_scope`.
1169     fn link_by_ref(&self,
1170                    expr: &hir::Expr,
1171                    callee_scope: CodeExtent) {
1172         debug!("link_by_ref(expr={:?}, callee_scope={:?})",
1173                expr, callee_scope);
1174         let mc = mc::MemCategorizationContext::new(self);
1175         let expr_cmt = ignore_err!(mc.cat_expr(expr));
1176         let borrow_region = self.tcx.mk_region(ty::ReScope(callee_scope));
1177         self.link_region(expr.span, borrow_region, ty::ImmBorrow, expr_cmt);
1178     }
1179
1180     /// Like `link_region()`, except that the region is extracted from the type of `id`,
1181     /// which must be some reference (`&T`, `&str`, etc).
1182     fn link_region_from_node_type(&self,
1183                                   span: Span,
1184                                   id: ast::NodeId,
1185                                   mutbl: hir::Mutability,
1186                                   cmt_borrowed: mc::cmt<'tcx>) {
1187         debug!("link_region_from_node_type(id={:?}, mutbl={:?}, cmt_borrowed={:?})",
1188                id, mutbl, cmt_borrowed);
1189
1190         let rptr_ty = self.resolve_node_type(id);
1191         if let ty::TyRef(r, _) = rptr_ty.sty {
1192             debug!("rptr_ty={}",  rptr_ty);
1193             self.link_region(span, r, ty::BorrowKind::from_mutbl(mutbl),
1194                              cmt_borrowed);
1195         }
1196     }
1197
1198     /// Informs the inference engine that `borrow_cmt` is being borrowed with
1199     /// kind `borrow_kind` and lifetime `borrow_region`.
1200     /// In order to ensure borrowck is satisfied, this may create constraints
1201     /// between regions, as explained in `link_reborrowed_region()`.
1202     fn link_region(&self,
1203                    span: Span,
1204                    borrow_region: &'tcx ty::Region,
1205                    borrow_kind: ty::BorrowKind,
1206                    borrow_cmt: mc::cmt<'tcx>) {
1207         let mut borrow_cmt = borrow_cmt;
1208         let mut borrow_kind = borrow_kind;
1209
1210         let origin = infer::DataBorrowed(borrow_cmt.ty, span);
1211         self.type_must_outlive(origin, borrow_cmt.ty, borrow_region);
1212
1213         loop {
1214             debug!("link_region(borrow_region={:?}, borrow_kind={:?}, borrow_cmt={:?})",
1215                    borrow_region,
1216                    borrow_kind,
1217                    borrow_cmt);
1218             match borrow_cmt.cat.clone() {
1219                 Categorization::Deref(ref_cmt, _,
1220                                       mc::Implicit(ref_kind, ref_region)) |
1221                 Categorization::Deref(ref_cmt, _,
1222                                       mc::BorrowedPtr(ref_kind, ref_region)) => {
1223                     match self.link_reborrowed_region(span,
1224                                                       borrow_region, borrow_kind,
1225                                                       ref_cmt, ref_region, ref_kind,
1226                                                       borrow_cmt.note) {
1227                         Some((c, k)) => {
1228                             borrow_cmt = c;
1229                             borrow_kind = k;
1230                         }
1231                         None => {
1232                             return;
1233                         }
1234                     }
1235                 }
1236
1237                 Categorization::Downcast(cmt_base, _) |
1238                 Categorization::Deref(cmt_base, _, mc::Unique) |
1239                 Categorization::Interior(cmt_base, _) => {
1240                     // Borrowing interior or owned data requires the base
1241                     // to be valid and borrowable in the same fashion.
1242                     borrow_cmt = cmt_base;
1243                     borrow_kind = borrow_kind;
1244                 }
1245
1246                 Categorization::Deref(.., mc::UnsafePtr(..)) |
1247                 Categorization::StaticItem |
1248                 Categorization::Upvar(..) |
1249                 Categorization::Local(..) |
1250                 Categorization::Rvalue(..) => {
1251                     // These are all "base cases" with independent lifetimes
1252                     // that are not subject to inference
1253                     return;
1254                 }
1255             }
1256         }
1257     }
1258
1259     /// This is the most complicated case: the path being borrowed is
1260     /// itself the referent of a borrowed pointer. Let me give an
1261     /// example fragment of code to make clear(er) the situation:
1262     ///
1263     ///    let r: &'a mut T = ...;  // the original reference "r" has lifetime 'a
1264     ///    ...
1265     ///    &'z *r                   // the reborrow has lifetime 'z
1266     ///
1267     /// Now, in this case, our primary job is to add the inference
1268     /// constraint that `'z <= 'a`. Given this setup, let's clarify the
1269     /// parameters in (roughly) terms of the example:
1270     ///
1271     ///     A borrow of: `& 'z bk * r` where `r` has type `& 'a bk T`
1272     ///     borrow_region   ^~                 ref_region    ^~
1273     ///     borrow_kind        ^~               ref_kind        ^~
1274     ///     ref_cmt                 ^
1275     ///
1276     /// Here `bk` stands for some borrow-kind (e.g., `mut`, `uniq`, etc).
1277     ///
1278     /// Unfortunately, there are some complications beyond the simple
1279     /// scenario I just painted:
1280     ///
1281     /// 1. The reference `r` might in fact be a "by-ref" upvar. In that
1282     ///    case, we have two jobs. First, we are inferring whether this reference
1283     ///    should be an `&T`, `&mut T`, or `&uniq T` reference, and we must
1284     ///    adjust that based on this borrow (e.g., if this is an `&mut` borrow,
1285     ///    then `r` must be an `&mut` reference). Second, whenever we link
1286     ///    two regions (here, `'z <= 'a`), we supply a *cause*, and in this
1287     ///    case we adjust the cause to indicate that the reference being
1288     ///    "reborrowed" is itself an upvar. This provides a nicer error message
1289     ///    should something go wrong.
1290     ///
1291     /// 2. There may in fact be more levels of reborrowing. In the
1292     ///    example, I said the borrow was like `&'z *r`, but it might
1293     ///    in fact be a borrow like `&'z **q` where `q` has type `&'a
1294     ///    &'b mut T`. In that case, we want to ensure that `'z <= 'a`
1295     ///    and `'z <= 'b`. This is explained more below.
1296     ///
1297     /// The return value of this function indicates whether we need to
1298     /// recurse and process `ref_cmt` (see case 2 above).
1299     fn link_reborrowed_region(&self,
1300                               span: Span,
1301                               borrow_region: &'tcx ty::Region,
1302                               borrow_kind: ty::BorrowKind,
1303                               ref_cmt: mc::cmt<'tcx>,
1304                               ref_region: &'tcx ty::Region,
1305                               mut ref_kind: ty::BorrowKind,
1306                               note: mc::Note)
1307                               -> Option<(mc::cmt<'tcx>, ty::BorrowKind)>
1308     {
1309         // Possible upvar ID we may need later to create an entry in the
1310         // maybe link map.
1311
1312         // Detect by-ref upvar `x`:
1313         let cause = match note {
1314             mc::NoteUpvarRef(ref upvar_id) => {
1315                 let upvar_capture_map = &self.tables.borrow_mut().upvar_capture_map;
1316                 match upvar_capture_map.get(upvar_id) {
1317                     Some(&ty::UpvarCapture::ByRef(ref upvar_borrow)) => {
1318                         // The mutability of the upvar may have been modified
1319                         // by the above adjustment, so update our local variable.
1320                         ref_kind = upvar_borrow.kind;
1321
1322                         infer::ReborrowUpvar(span, *upvar_id)
1323                     }
1324                     _ => {
1325                         span_bug!( span, "Illegal upvar id: {:?}", upvar_id);
1326                     }
1327                 }
1328             }
1329             mc::NoteClosureEnv(ref upvar_id) => {
1330                 // We don't have any mutability changes to propagate, but
1331                 // we do want to note that an upvar reborrow caused this
1332                 // link
1333                 infer::ReborrowUpvar(span, *upvar_id)
1334             }
1335             _ => {
1336                 infer::Reborrow(span)
1337             }
1338         };
1339
1340         debug!("link_reborrowed_region: {:?} <= {:?}",
1341                borrow_region,
1342                ref_region);
1343         self.sub_regions(cause, borrow_region, ref_region);
1344
1345         // If we end up needing to recurse and establish a region link
1346         // with `ref_cmt`, calculate what borrow kind we will end up
1347         // needing. This will be used below.
1348         //
1349         // One interesting twist is that we can weaken the borrow kind
1350         // when we recurse: to reborrow an `&mut` referent as mutable,
1351         // borrowck requires a unique path to the `&mut` reference but not
1352         // necessarily a *mutable* path.
1353         let new_borrow_kind = match borrow_kind {
1354             ty::ImmBorrow =>
1355                 ty::ImmBorrow,
1356             ty::MutBorrow | ty::UniqueImmBorrow =>
1357                 ty::UniqueImmBorrow
1358         };
1359
1360         // Decide whether we need to recurse and link any regions within
1361         // the `ref_cmt`. This is concerned for the case where the value
1362         // being reborrowed is in fact a borrowed pointer found within
1363         // another borrowed pointer. For example:
1364         //
1365         //    let p: &'b &'a mut T = ...;
1366         //    ...
1367         //    &'z **p
1368         //
1369         // What makes this case particularly tricky is that, if the data
1370         // being borrowed is a `&mut` or `&uniq` borrow, borrowck requires
1371         // not only that `'z <= 'a`, (as before) but also `'z <= 'b`
1372         // (otherwise the user might mutate through the `&mut T` reference
1373         // after `'b` expires and invalidate the borrow we are looking at
1374         // now).
1375         //
1376         // So let's re-examine our parameters in light of this more
1377         // complicated (possible) scenario:
1378         //
1379         //     A borrow of: `& 'z bk * * p` where `p` has type `&'b bk & 'a bk T`
1380         //     borrow_region   ^~                 ref_region             ^~
1381         //     borrow_kind        ^~               ref_kind                 ^~
1382         //     ref_cmt                 ^~~
1383         //
1384         // (Note that since we have not examined `ref_cmt.cat`, we don't
1385         // know whether this scenario has occurred; but I wanted to show
1386         // how all the types get adjusted.)
1387         match ref_kind {
1388             ty::ImmBorrow => {
1389                 // The reference being reborrowed is a sharable ref of
1390                 // type `&'a T`. In this case, it doesn't matter where we
1391                 // *found* the `&T` pointer, the memory it references will
1392                 // be valid and immutable for `'a`. So we can stop here.
1393                 //
1394                 // (Note that the `borrow_kind` must also be ImmBorrow or
1395                 // else the user is borrowed imm memory as mut memory,
1396                 // which means they'll get an error downstream in borrowck
1397                 // anyhow.)
1398                 return None;
1399             }
1400
1401             ty::MutBorrow | ty::UniqueImmBorrow => {
1402                 // The reference being reborrowed is either an `&mut T` or
1403                 // `&uniq T`. This is the case where recursion is needed.
1404                 return Some((ref_cmt, new_borrow_kind));
1405             }
1406         }
1407     }
1408
1409     /// Checks that the values provided for type/region arguments in a given
1410     /// expression are well-formed and in-scope.
1411     fn substs_wf_in_scope(&mut self,
1412                           origin: infer::ParameterOrigin,
1413                           substs: &Substs<'tcx>,
1414                           expr_span: Span,
1415                           expr_region: &'tcx ty::Region) {
1416         debug!("substs_wf_in_scope(substs={:?}, \
1417                 expr_region={:?}, \
1418                 origin={:?}, \
1419                 expr_span={:?})",
1420                substs, expr_region, origin, expr_span);
1421
1422         let origin = infer::ParameterInScope(origin, expr_span);
1423
1424         for region in substs.regions() {
1425             self.sub_regions(origin.clone(), expr_region, region);
1426         }
1427
1428         for ty in substs.types() {
1429             let ty = self.resolve_type(ty);
1430             self.type_must_outlive(origin.clone(), ty, expr_region);
1431         }
1432     }
1433
1434     /// Ensures that type is well-formed in `region`, which implies (among
1435     /// other things) that all borrowed data reachable via `ty` outlives
1436     /// `region`.
1437     pub fn type_must_outlive(&self,
1438                              origin: infer::SubregionOrigin<'tcx>,
1439                              ty: Ty<'tcx>,
1440                              region: &'tcx ty::Region)
1441     {
1442         let ty = self.resolve_type(ty);
1443
1444         debug!("type_must_outlive(ty={:?}, region={:?}, origin={:?})",
1445                ty,
1446                region,
1447                origin);
1448
1449         assert!(!ty.has_escaping_regions());
1450
1451         let components = self.tcx.outlives_components(ty);
1452         self.components_must_outlive(origin, components, region);
1453     }
1454
1455     fn components_must_outlive(&self,
1456                                origin: infer::SubregionOrigin<'tcx>,
1457                                components: Vec<ty::outlives::Component<'tcx>>,
1458                                region: &'tcx ty::Region)
1459     {
1460         for component in components {
1461             let origin = origin.clone();
1462             match component {
1463                 ty::outlives::Component::Region(region1) => {
1464                     self.sub_regions(origin, region, region1);
1465                 }
1466                 ty::outlives::Component::Param(param_ty) => {
1467                     self.param_ty_must_outlive(origin, region, param_ty);
1468                 }
1469                 ty::outlives::Component::Projection(projection_ty) => {
1470                     self.projection_must_outlive(origin, region, projection_ty);
1471                 }
1472                 ty::outlives::Component::EscapingProjection(subcomponents) => {
1473                     self.components_must_outlive(origin, subcomponents, region);
1474                 }
1475                 ty::outlives::Component::UnresolvedInferenceVariable(v) => {
1476                     // ignore this, we presume it will yield an error
1477                     // later, since if a type variable is not resolved by
1478                     // this point it never will be
1479                     self.tcx.sess.delay_span_bug(
1480                         origin.span(),
1481                         &format!("unresolved inference variable in outlives: {:?}", v));
1482                 }
1483             }
1484         }
1485     }
1486
1487     fn param_ty_must_outlive(&self,
1488                              origin: infer::SubregionOrigin<'tcx>,
1489                              region: &'tcx ty::Region,
1490                              param_ty: ty::ParamTy) {
1491         debug!("param_ty_must_outlive(region={:?}, param_ty={:?}, origin={:?})",
1492                region, param_ty, origin);
1493
1494         let verify_bound = self.param_bound(param_ty);
1495         let generic = GenericKind::Param(param_ty);
1496         self.verify_generic_bound(origin, generic, region, verify_bound);
1497     }
1498
1499     fn projection_must_outlive(&self,
1500                                origin: infer::SubregionOrigin<'tcx>,
1501                                region: &'tcx ty::Region,
1502                                projection_ty: ty::ProjectionTy<'tcx>)
1503     {
1504         debug!("projection_must_outlive(region={:?}, projection_ty={:?}, origin={:?})",
1505                region, projection_ty, origin);
1506
1507         // This case is thorny for inference. The fundamental problem is
1508         // that there are many cases where we have choice, and inference
1509         // doesn't like choice (the current region inference in
1510         // particular). :) First off, we have to choose between using the
1511         // OutlivesProjectionEnv, OutlivesProjectionTraitDef, and
1512         // OutlivesProjectionComponent rules, any one of which is
1513         // sufficient.  If there are no inference variables involved, it's
1514         // not hard to pick the right rule, but if there are, we're in a
1515         // bit of a catch 22: if we picked which rule we were going to
1516         // use, we could add constraints to the region inference graph
1517         // that make it apply, but if we don't add those constraints, the
1518         // rule might not apply (but another rule might). For now, we err
1519         // on the side of adding too few edges into the graph.
1520
1521         // Compute the bounds we can derive from the environment or trait
1522         // definition.  We know that the projection outlives all the
1523         // regions in this list.
1524         let env_bounds = self.projection_declared_bounds(origin.span(), projection_ty);
1525
1526         debug!("projection_must_outlive: env_bounds={:?}",
1527                env_bounds);
1528
1529         // If we know that the projection outlives 'static, then we're
1530         // done here.
1531         if env_bounds.contains(&&ty::ReStatic) {
1532             debug!("projection_must_outlive: 'static as declared bound");
1533             return;
1534         }
1535
1536         // If declared bounds list is empty, the only applicable rule is
1537         // OutlivesProjectionComponent. If there are inference variables,
1538         // then, we can break down the outlives into more primitive
1539         // components without adding unnecessary edges.
1540         //
1541         // If there are *no* inference variables, however, we COULD do
1542         // this, but we choose not to, because the error messages are less
1543         // good. For example, a requirement like `T::Item: 'r` would be
1544         // translated to a requirement that `T: 'r`; when this is reported
1545         // to the user, it will thus say "T: 'r must hold so that T::Item:
1546         // 'r holds". But that makes it sound like the only way to fix
1547         // the problem is to add `T: 'r`, which isn't true. So, if there are no
1548         // inference variables, we use a verify constraint instead of adding
1549         // edges, which winds up enforcing the same condition.
1550         let needs_infer = projection_ty.trait_ref.needs_infer();
1551         if env_bounds.is_empty() && needs_infer {
1552             debug!("projection_must_outlive: no declared bounds");
1553
1554             for component_ty in projection_ty.trait_ref.substs.types() {
1555                 self.type_must_outlive(origin.clone(), component_ty, region);
1556             }
1557
1558             for r in projection_ty.trait_ref.substs.regions() {
1559                 self.sub_regions(origin.clone(), region, r);
1560             }
1561
1562             return;
1563         }
1564
1565         // If we find that there is a unique declared bound `'b`, and this bound
1566         // appears in the trait reference, then the best action is to require that `'b:'r`,
1567         // so do that. This is best no matter what rule we use:
1568         //
1569         // - OutlivesProjectionEnv or OutlivesProjectionTraitDef: these would translate to
1570         // the requirement that `'b:'r`
1571         // - OutlivesProjectionComponent: this would require `'b:'r` in addition to
1572         // other conditions
1573         if !env_bounds.is_empty() && env_bounds[1..].iter().all(|b| *b == env_bounds[0]) {
1574             let unique_bound = env_bounds[0];
1575             debug!("projection_must_outlive: unique declared bound = {:?}", unique_bound);
1576             if projection_ty.trait_ref.substs.regions().any(|r| env_bounds.contains(&r)) {
1577                 debug!("projection_must_outlive: unique declared bound appears in trait ref");
1578                 self.sub_regions(origin.clone(), region, unique_bound);
1579                 return;
1580             }
1581         }
1582
1583         // Fallback to verifying after the fact that there exists a
1584         // declared bound, or that all the components appearing in the
1585         // projection outlive; in some cases, this may add insufficient
1586         // edges into the inference graph, leading to inference failures
1587         // even though a satisfactory solution exists.
1588         let verify_bound = self.projection_bound(origin.span(), env_bounds, projection_ty);
1589         let generic = GenericKind::Projection(projection_ty);
1590         self.verify_generic_bound(origin, generic.clone(), region, verify_bound);
1591     }
1592
1593     fn type_bound(&self, span: Span, ty: Ty<'tcx>) -> VerifyBound<'tcx> {
1594         match ty.sty {
1595             ty::TyParam(p) => {
1596                 self.param_bound(p)
1597             }
1598             ty::TyProjection(data) => {
1599                 let declared_bounds = self.projection_declared_bounds(span, data);
1600                 self.projection_bound(span, declared_bounds, data)
1601             }
1602             _ => {
1603                 self.recursive_type_bound(span, ty)
1604             }
1605         }
1606     }
1607
1608     fn param_bound(&self, param_ty: ty::ParamTy) -> VerifyBound<'tcx> {
1609         let param_env = &self.parameter_environment;
1610
1611         debug!("param_bound(param_ty={:?})",
1612                param_ty);
1613
1614         let mut param_bounds = self.declared_generic_bounds_from_env(GenericKind::Param(param_ty));
1615
1616         // Add in the default bound of fn body that applies to all in
1617         // scope type parameters:
1618         param_bounds.push(param_env.implicit_region_bound);
1619
1620         VerifyBound::AnyRegion(param_bounds)
1621     }
1622
1623     fn projection_declared_bounds(&self,
1624                                   span: Span,
1625                                   projection_ty: ty::ProjectionTy<'tcx>)
1626                                   -> Vec<&'tcx ty::Region>
1627     {
1628         // First assemble bounds from where clauses and traits.
1629
1630         let mut declared_bounds =
1631             self.declared_generic_bounds_from_env(GenericKind::Projection(projection_ty));
1632
1633         declared_bounds.extend_from_slice(
1634             &self.declared_projection_bounds_from_trait(span, projection_ty));
1635
1636         declared_bounds
1637     }
1638
1639     fn projection_bound(&self,
1640                         span: Span,
1641                         declared_bounds: Vec<&'tcx ty::Region>,
1642                         projection_ty: ty::ProjectionTy<'tcx>)
1643                         -> VerifyBound<'tcx> {
1644         debug!("projection_bound(declared_bounds={:?}, projection_ty={:?})",
1645                declared_bounds, projection_ty);
1646
1647         // see the extensive comment in projection_must_outlive
1648
1649         let ty = self.tcx.mk_projection(projection_ty.trait_ref, projection_ty.item_name);
1650         let recursive_bound = self.recursive_type_bound(span, ty);
1651
1652         VerifyBound::AnyRegion(declared_bounds).or(recursive_bound)
1653     }
1654
1655     fn recursive_type_bound(&self, span: Span, ty: Ty<'tcx>) -> VerifyBound<'tcx> {
1656         let mut bounds = vec![];
1657
1658         for subty in ty.walk_shallow() {
1659             bounds.push(self.type_bound(span, subty));
1660         }
1661
1662         let mut regions = ty.regions();
1663         regions.retain(|r| !r.is_bound()); // ignore late-bound regions
1664         bounds.push(VerifyBound::AllRegions(regions));
1665
1666         // remove bounds that must hold, since they are not interesting
1667         bounds.retain(|b| !b.must_hold());
1668
1669         if bounds.len() == 1 {
1670             bounds.pop().unwrap()
1671         } else {
1672             VerifyBound::AllBounds(bounds)
1673         }
1674     }
1675
1676     fn declared_generic_bounds_from_env(&self, generic: GenericKind<'tcx>)
1677                                         -> Vec<&'tcx ty::Region>
1678     {
1679         let param_env = &self.parameter_environment;
1680
1681         // To start, collect bounds from user:
1682         let mut param_bounds = self.tcx.required_region_bounds(generic.to_ty(self.tcx),
1683                                                                param_env.caller_bounds.clone());
1684
1685         // Next, collect regions we scraped from the well-formedness
1686         // constraints in the fn signature. To do that, we walk the list
1687         // of known relations from the fn ctxt.
1688         //
1689         // This is crucial because otherwise code like this fails:
1690         //
1691         //     fn foo<'a, A>(x: &'a A) { x.bar() }
1692         //
1693         // The problem is that the type of `x` is `&'a A`. To be
1694         // well-formed, then, A must be lower-generic by `'a`, but we
1695         // don't know that this holds from first principles.
1696         for &(r, p) in &self.region_bound_pairs {
1697             debug!("generic={:?} p={:?}",
1698                    generic,
1699                    p);
1700             if generic == p {
1701                 param_bounds.push(r);
1702             }
1703         }
1704
1705         param_bounds
1706     }
1707
1708     fn declared_projection_bounds_from_trait(&self,
1709                                              span: Span,
1710                                              projection_ty: ty::ProjectionTy<'tcx>)
1711                                              -> Vec<&'tcx ty::Region>
1712     {
1713         debug!("projection_bounds(projection_ty={:?})",
1714                projection_ty);
1715
1716         let ty = self.tcx.mk_projection(projection_ty.trait_ref.clone(),
1717                                         projection_ty.item_name);
1718
1719         // Say we have a projection `<T as SomeTrait<'a>>::SomeType`. We are interested
1720         // in looking for a trait definition like:
1721         //
1722         // ```
1723         // trait SomeTrait<'a> {
1724         //     type SomeType : 'a;
1725         // }
1726         // ```
1727         //
1728         // we can thus deduce that `<T as SomeTrait<'a>>::SomeType : 'a`.
1729         let trait_predicates = self.tcx.item_predicates(projection_ty.trait_ref.def_id);
1730         assert_eq!(trait_predicates.parent, None);
1731         let predicates = trait_predicates.predicates.as_slice().to_vec();
1732         traits::elaborate_predicates(self.tcx, predicates)
1733             .filter_map(|predicate| {
1734                 // we're only interesting in `T : 'a` style predicates:
1735                 let outlives = match predicate {
1736                     ty::Predicate::TypeOutlives(data) => data,
1737                     _ => { return None; }
1738                 };
1739
1740                 debug!("projection_bounds: outlives={:?} (1)",
1741                        outlives);
1742
1743                 // apply the substitutions (and normalize any projected types)
1744                 let outlives = self.instantiate_type_scheme(span,
1745                                                             projection_ty.trait_ref.substs,
1746                                                             &outlives);
1747
1748                 debug!("projection_bounds: outlives={:?} (2)",
1749                        outlives);
1750
1751                 let region_result = self.commit_if_ok(|_| {
1752                     let (outlives, _) =
1753                         self.replace_late_bound_regions_with_fresh_var(
1754                             span,
1755                             infer::AssocTypeProjection(projection_ty.item_name),
1756                             &outlives);
1757
1758                     debug!("projection_bounds: outlives={:?} (3)",
1759                            outlives);
1760
1761                     // check whether this predicate applies to our current projection
1762                     let cause = self.fcx.misc(span);
1763                     match self.eq_types(false, &cause, ty, outlives.0) {
1764                         Ok(ok) => {
1765                             self.register_infer_ok_obligations(ok);
1766                             Ok(outlives.1)
1767                         }
1768                         Err(_) => { Err(()) }
1769                     }
1770                 });
1771
1772                 debug!("projection_bounds: region_result={:?}",
1773                        region_result);
1774
1775                 region_result.ok()
1776             })
1777             .collect()
1778     }
1779 }