astconv.rs 76.8 KB
Newer Older
V
Virgile Andreani 已提交
1
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 3 4 5 6 7 8 9 10
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

S
Steve Klabnik 已提交
11 12 13 14 15 16 17 18
//! Conversion from AST representation of types to the ty.rs
//! representation.  The main routine here is `ast_ty_to_ty()`: each use
//! is parameterized by an instance of `AstConv` and a `RegionScope`.
//!
//! The parameterization of `ast_ty_to_ty()` is because it behaves
//! somewhat differently during the collect and check phases,
//! particularly with respect to looking up the types of top-level
//! items.  In the collect phase, the crate context is used as the
19 20 21 22 23 24
//! `AstConv` instance; in this phase, the `get_item_type_scheme()`
//! function triggers a recursive call to `type_scheme_of_item()`
//! (note that `ast_ty_to_ty()` will detect recursive types and report
//! an error).  In the check phase, when the FnCtxt is used as the
//! `AstConv`, `get_item_type_scheme()` just looks up the item type in
//! `tcx.tcache` (using `ty::lookup_item_type`).
S
Steve Klabnik 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
//!
//! The `RegionScope` trait controls what happens when the user does
//! not specify a region in some location where a region is required
//! (e.g., if the user writes `&Foo` as a type rather than `&'a Foo`).
//! See the `rscope` module for more details.
//!
//! Unlike the `AstConv` trait, the region scope can change as we descend
//! the type.  This is to accommodate the fact that (a) fn types are binding
//! scopes and (b) the default region may change.  To understand case (a),
//! consider something like:
//!
//!   type foo = { x: &a.int, y: |&a.int| }
//!
//! The type of `x` is an error because there is no region `a` in scope.
//! In the type of `y`, however, region `a` is considered a bound region
//! as it does not already appear in scope.
//!
//! Case (b) says that if you have a type:
//!   type foo<'a> = ...;
//!   type bar = fn(&foo, &a.foo)
//! The fully expanded version of type bar is:
//!   type bar = fn(&'foo &, &a.foo<'a>)
//! Note that the self region for the `foo` defaulted to `&` in the first
//! case but `&a` in the second.  Basically, defaults that appear inside
//! an rptr (`&r.T`) use the region `r` that appears in the rptr.
50 51

use middle::astconv_util::{ast_ty_to_prim_ty, check_path_args, NO_TPS, NO_REGIONS};
52
use middle::const_eval;
53
use middle::def;
54
use middle::resolve_lifetime as rl;
55
use middle::subst::{FnSpace, TypeSpace, SelfSpace, Subst, Substs};
56 57
use middle::traits;
use middle::ty::{self, RegionEscape, ToPolyTraitRef, Ty};
58
use rscope::{self, UnelidableRscope, RegionScope, ElidableRscope,
59
             ObjectLifetimeDefaultRscope, ShiftedRscope, BindingRscope};
N
Niko Matsakis 已提交
60
use TypeAndSubsts;
61
use util::common::{ErrorReported, FN_OUTPUT_NAME};
62
use util::nodemap::DefIdMap;
63
use util::ppaux::{self, Repr, UserString};
64

E
Eduard Burtescu 已提交
65
use std::rc::Rc;
A
Aaron Turon 已提交
66
use std::iter::{repeat, AdditiveIterator};
67
use syntax::{abi, ast, ast_util};
68
use syntax::codemap::Span;
69
use syntax::parse::token;
70
use syntax::print::pprust;
71

72 73
pub trait AstConv<'tcx> {
    fn tcx<'a>(&'a self) -> &'a ty::ctxt<'tcx>;
74

75
    fn get_item_type_scheme(&self, id: ast::DefId) -> ty::TypeScheme<'tcx>;
76

77
    fn get_trait_def(&self, id: ast::DefId) -> Rc<ty::TraitDef<'tcx>>;
N
Nick Cameron 已提交
78 79 80 81 82

    /// Return an (optional) substitution to convert bound type parameters that
    /// are in scope into free ones. This function should only return Some
    /// within a fn body.
    /// See ParameterEnvironment::free_substs for more information.
83 84 85
    fn get_free_substs(&self) -> Option<&Substs<'tcx>> {
        None
    }
86

87
    /// What type should we use when a type is omitted?
88
    fn ty_infer(&self, span: Span) -> Ty<'tcx>;
89

90 91 92 93 94 95 96 97 98 99 100 101 102 103
    /// Projecting an associated type from a (potentially)
    /// higher-ranked trait reference is more complicated, because of
    /// the possibility of late-bound regions appearing in the
    /// associated type binding. This is not legal in function
    /// signatures for that reason. In a function body, we can always
    /// handle it because we can use inference variables to remove the
    /// late-bound regions.
    fn projected_ty_from_poly_trait_ref(&self,
                                        span: Span,
                                        poly_trait_ref: ty::PolyTraitRef<'tcx>,
                                        item_name: ast::Name)
                                        -> Ty<'tcx>
    {
        if ty::binds_late_bound_regions(self.tcx(), &poly_trait_ref) {
B
Brian Anderson 已提交
104
            span_err!(self.tcx().sess, span, E0212,
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
                "cannot extract an associated type from a higher-ranked trait bound \
                 in this context");
            self.tcx().types.err
        } else {
            // no late-bound regions, we can just ignore the binder
            self.projected_ty(span, poly_trait_ref.0.clone(), item_name)
        }
    }

    /// Project an associated type from a non-higher-ranked trait reference.
    /// This is fairly straightforward and can be accommodated in any context.
    fn projected_ty(&self,
                    span: Span,
                    _trait_ref: Rc<ty::TraitRef<'tcx>>,
                    _item_name: ast::Name)
                    -> Ty<'tcx>
    {
B
Brian Anderson 已提交
122
        span_err!(self.tcx().sess, span, E0213,
123 124 125 126
            "associated types are not accepted in this context");

        self.tcx().types.err
    }
127 128
}

E
Eduard Burtescu 已提交
129
pub fn ast_region_to_region(tcx: &ty::ctxt, lifetime: &ast::Lifetime)
130
                            -> ty::Region {
131
    let r = match tcx.named_region_map.get(&lifetime.id) {
132 133 134
        None => {
            // should have been recorded by the `resolve_lifetime` pass
            tcx.sess.span_bug(lifetime.span, "unresolved lifetime");
135
        }
136

137
        Some(&rl::DefStaticRegion) => {
138
            ty::ReStatic
139 140
        }

141 142
        Some(&rl::DefLateBoundRegion(debruijn, id)) => {
            ty::ReLateBound(debruijn, ty::BrNamed(ast_util::local_def(id), lifetime.name))
143 144
        }

145 146
        Some(&rl::DefEarlyBoundRegion(space, index, id)) => {
            ty::ReEarlyBound(id, space, index, lifetime.name)
147 148
        }

149
        Some(&rl::DefFreeRegion(scope, id)) => {
150
            ty::ReFree(ty::FreeRegion {
151
                    scope: scope,
152
                    bound_region: ty::BrNamed(ast_util::local_def(id),
153
                                              lifetime.name)
154 155 156 157 158
                })
        }
    };

    debug!("ast_region_to_region(lifetime={} id={}) yields {}",
159 160 161
           lifetime.repr(tcx),
           lifetime.id,
           r.repr(tcx));
162 163

    r
164 165
}

166 167 168
pub fn opt_ast_region_to_region<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
169
    default_span: Span,
J
James Miller 已提交
170
    opt_lifetime: &Option<ast::Lifetime>) -> ty::Region
171
{
172 173 174
    let r = match *opt_lifetime {
        Some(ref lifetime) => {
            ast_region_to_region(this.tcx(), lifetime)
175
        }
176 177 178

        None => {
            match rscope.anon_regions(default_span, 1) {
179
                Err(v) => {
180
                    debug!("optional region in illegal location");
J
Jakub Wieczorek 已提交
181 182
                    span_err!(this.tcx().sess, default_span, E0106,
                        "missing lifetime specifier");
183 184 185 186
                    match v {
                        Some(v) => {
                            let mut m = String::new();
                            let len = v.len();
187
                            for (i, (name, n)) in v.into_iter().enumerate() {
188 189 190
                                let help_name = if name.is_empty() {
                                    format!("argument {}", i + 1)
                                } else {
191
                                    format!("`{}`", name)
192 193
                                };

J
Jorge Aparicio 已提交
194
                                m.push_str(&(if n == 1 {
195
                                    help_name
196
                                } else {
197
                                    format!("one of {}'s {} elided lifetimes", help_name, n)
198
                                })[..]);
199 200 201 202 203 204 205 206 207 208

                                if len == 2 && i == 0 {
                                    m.push_str(" or ");
                                } else if i == len - 2 {
                                    m.push_str(", or ");
                                } else if i != len - 1 {
                                    m.push_str(", ");
                                }
                            }
                            if len == 1 {
P
P1start 已提交
209
                                span_help!(this.tcx().sess, default_span,
210 211 212 213
                                    "this function's return type contains a borrowed value, but \
                                     the signature does not say which {} it is borrowed from",
                                    m);
                            } else if len == 0 {
P
P1start 已提交
214
                                span_help!(this.tcx().sess, default_span,
215 216
                                    "this function's return type contains a borrowed value, but \
                                     there is no value for it to be borrowed from");
P
P1start 已提交
217
                                span_help!(this.tcx().sess, default_span,
218 219
                                    "consider giving it a 'static lifetime");
                            } else {
P
P1start 已提交
220
                                span_help!(this.tcx().sess, default_span,
221 222 223 224 225 226 227
                                    "this function's return type contains a borrowed value, but \
                                     the signature does not say whether it is borrowed from {}",
                                    m);
                            }
                        }
                        None => {},
                    }
228
                    ty::ReStatic
229 230
                }

231
                Ok(rs) => rs[0],
232
            }
233
        }
234 235
    };

B
Ben Gamari 已提交
236
    debug!("opt_ast_region_to_region(opt_lifetime={}) yields {}",
237
            opt_lifetime.repr(this.tcx()),
238 239 240
            r.repr(this.tcx()));

    r
241 242
}

S
Steve Klabnik 已提交
243 244
/// Given a path `path` that refers to an item `I` with the declared generics `decl_generics`,
/// returns an appropriate set of substitutions for this particular reference to `I`.
245
pub fn ast_path_substs_for_ty<'tcx>(
246 247
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
248
    decl_generics: &ty::Generics<'tcx>,
249
    path: &ast::Path)
250
    -> Substs<'tcx>
251
{
252
    let tcx = this.tcx();
253

254 255 256 257 258 259 260 261
    // ast_path_substs() is only called to convert paths that are
    // known to refer to traits, types, or structs. In these cases,
    // all type parameters defined for the item being referenced will
    // be in the TypeSpace or SelfSpace.
    //
    // Note: in the case of traits, the self parameter is also
    // defined, but we don't currently create a `type_param_def` for
    // `Self` because it is implicit.
262 263
    assert!(decl_generics.regions.all(|d| d.space == TypeSpace));
    assert!(decl_generics.types.all(|d| d.space != FnSpace));
264

265
    let (regions, types, assoc_bindings) = match path.segments.last().unwrap().parameters {
266
        ast::AngleBracketedParameters(ref data) => {
267
            convert_angle_bracketed_parameters(this, rscope, path.span, decl_generics, data)
268 269
        }
        ast::ParenthesizedParameters(ref data) => {
B
Brian Anderson 已提交
270
            span_err!(tcx.sess, path.span, E0214,
271
                "parenthesized parameters may only be used with a trait");
272
            convert_parenthesized_parameters(this, rscope, path.span, decl_generics, data)
273
        }
274 275
    };

276
    prohibit_projections(this.tcx(), &assoc_bindings);
277

278 279 280 281 282
    create_substs_for_ast_path(this,
                               path.span,
                               decl_generics,
                               None,
                               types,
283
                               regions)
284 285
}

286
fn create_region_substs<'tcx>(
287 288
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
289
    span: Span,
290
    decl_generics: &ty::Generics<'tcx>,
291
    regions_provided: Vec<ty::Region>)
292
    -> Substs<'tcx>
293 294 295
{
    let tcx = this.tcx();

296
    // If the type is parameterized by the this region, then replace this
297 298
    // region with the current anon region binding (in other words,
    // whatever & would get replaced with).
299
    let expected_num_region_params = decl_generics.regions.len(TypeSpace);
300
    let supplied_num_region_params = regions_provided.len();
301
    let regions = if expected_num_region_params == supplied_num_region_params {
302
        regions_provided
303 304
    } else {
        let anon_regions =
305
            rscope.anon_regions(span, expected_num_region_params);
306

307
        if supplied_num_region_params != 0 || anon_regions.is_err() {
308 309 310
            report_lifetime_number_error(tcx, span,
                                         supplied_num_region_params,
                                         expected_num_region_params);
311
        }
312 313

        match anon_regions {
314 315
            Ok(anon_regions) => anon_regions,
            Err(_) => (0..expected_num_region_params).map(|_| ty::ReStatic).collect()
316
        }
317
    };
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
    Substs::new_type(vec![], regions)
}

/// Given the type/region arguments provided to some path (along with
/// an implicit Self, if this is a trait reference) returns the complete
/// set of substitutions. This may involve applying defaulted type parameters.
///
/// Note that the type listing given here is *exactly* what the user provided.
///
/// The `region_substs` should be the result of `create_region_substs`
/// -- that is, a substitution with no types but the correct number of
/// regions.
fn create_substs_for_ast_path<'tcx>(
    this: &AstConv<'tcx>,
    span: Span,
    decl_generics: &ty::Generics<'tcx>,
    self_ty: Option<Ty<'tcx>>,
    types_provided: Vec<Ty<'tcx>>,
    region_substs: Substs<'tcx>)
    -> Substs<'tcx>
{
    let tcx = this.tcx();

    debug!("create_substs_for_ast_path(decl_generics={}, self_ty={}, \
           types_provided={}, region_substs={}",
           decl_generics.repr(tcx), self_ty.repr(tcx), types_provided.repr(tcx),
           region_substs.repr(tcx));

    assert_eq!(region_substs.regions().len(TypeSpace), decl_generics.regions.len(TypeSpace));
    assert!(region_substs.types.is_empty());
348 349

    // Convert the type parameters supplied by the user.
350
    let ty_param_defs = decl_generics.types.get_slice(TypeSpace);
351 352 353 354 355 356 357
    let supplied_ty_param_count = types_provided.len();
    let formal_ty_param_count = ty_param_defs.len();
    let required_ty_param_count = ty_param_defs.iter()
                                               .take_while(|x| x.default.is_none())
                                               .count();

    let mut type_substs = types_provided;
358 359 360
    check_type_argument_count(this.tcx(), span, supplied_ty_param_count,
                              required_ty_param_count, formal_ty_param_count);

361
    if supplied_ty_param_count < required_ty_param_count {
362 363 364
        while type_substs.len() < required_ty_param_count {
            type_substs.push(tcx.types.err);
        }
365
    } else if supplied_ty_param_count > formal_ty_param_count {
366
        type_substs.truncate(formal_ty_param_count);
367
    }
368 369
    assert!(type_substs.len() >= required_ty_param_count &&
            type_substs.len() <= formal_ty_param_count);
370

371 372
    let mut substs = region_substs;
    substs.types.extend(TypeSpace, type_substs.into_iter());
373

374 375 376 377 378 379 380 381 382 383
    match self_ty {
        None => {
            // If no self-type is provided, it's still possible that
            // one was declared, because this could be an object type.
        }
        Some(ty) => {
            // If a self-type is provided, one should have been
            // "declared" (in other words, this should be a
            // trait-ref).
            assert!(decl_generics.types.get_self().is_some());
384
            substs.types.push(SelfSpace, ty);
385
        }
386
    }
387

388 389
    let actual_supplied_ty_param_count = substs.types.len(TypeSpace);
    for param in &ty_param_defs[actual_supplied_ty_param_count..] {
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
        if let Some(default) = param.default {
            // If we are converting an object type, then the
            // `Self` parameter is unknown. However, some of the
            // other type parameters may reference `Self` in their
            // defaults. This will lead to an ICE if we are not
            // careful!
            if self_ty.is_none() && ty::type_has_self(default) {
                tcx.sess.span_err(
                    span,
                    &format!("the type parameter `{}` must be explicitly specified \
                              in an object type because its default value `{}` references \
                              the type `Self`",
                             param.name.user_string(tcx),
                             default.user_string(tcx)));
                substs.types.push(TypeSpace, tcx.types.err);
            } else {
406 407 408
                // This is a default type parameter.
                let default = default.subst_spanned(tcx,
                                                    &substs,
409
                                                    Some(span));
410 411
                substs.types.push(TypeSpace, default);
            }
412 413
        } else {
            tcx.sess.span_bug(span, "extra parameter without default");
414
        }
415
    }
416

417
    return substs;
418
}
419

420 421 422 423 424 425
struct ConvertedBinding<'tcx> {
    item_name: ast::Name,
    ty: Ty<'tcx>,
    span: Span,
}

426 427
fn convert_angle_bracketed_parameters<'tcx>(this: &AstConv<'tcx>,
                                            rscope: &RegionScope,
428 429
                                            span: Span,
                                            decl_generics: &ty::Generics<'tcx>,
430
                                            data: &ast::AngleBracketedParameterData)
431
                                            -> (Substs<'tcx>,
432 433
                                                Vec<Ty<'tcx>>,
                                                Vec<ConvertedBinding<'tcx>>)
434 435 436
{
    let regions: Vec<_> =
        data.lifetimes.iter()
437 438
                      .map(|l| ast_region_to_region(this.tcx(), l))
                      .collect();
439

440 441
    let region_substs =
        create_region_substs(this, rscope, span, decl_generics, regions);
442

443 444
    let types: Vec<_> =
        data.types.iter()
445 446 447 448
                  .enumerate()
                  .map(|(i,t)| ast_ty_arg_to_ty(this, rscope, decl_generics,
                                                i, &region_substs, t))
                  .collect();
449

450 451
    let assoc_bindings: Vec<_> =
        data.bindings.iter()
452 453 454 455
                     .map(|b| ConvertedBinding { item_name: b.ident.name,
                                                 ty: ast_ty_to_ty(this, rscope, &*b.ty),
                                                 span: b.span })
                     .collect();
456

457
    (region_substs, types, assoc_bindings)
458 459
}

460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
/// Returns the appropriate lifetime to use for any output lifetimes
/// (if one exists) and a vector of the (pattern, number of lifetimes)
/// corresponding to each input type/pattern.
fn find_implied_output_region(input_tys: &[Ty], input_pats: Vec<String>)
                              -> (Option<ty::Region>, Vec<(String, uint)>)
{
    let mut lifetimes_for_params: Vec<(String, uint)> = Vec::new();
    let mut possible_implied_output_region = None;

    for (input_type, input_pat) in input_tys.iter().zip(input_pats.into_iter()) {
        let mut accumulator = Vec::new();
        ty::accumulate_lifetimes_in_type(&mut accumulator, *input_type);

        if accumulator.len() == 1 {
            // there's a chance that the unique lifetime of this
            // iteration will be the appropriate lifetime for output
            // parameters, so lets store it.
            possible_implied_output_region = Some(accumulator[0])
        }

        lifetimes_for_params.push((input_pat, accumulator.len()));
    }

    let implied_output_region = if lifetimes_for_params.iter().map(|&(_, n)| n).sum() == 1 {
        assert!(possible_implied_output_region.is_some());
        possible_implied_output_region
    } else {
        None
    };
    (implied_output_region, lifetimes_for_params)
}

492 493 494 495 496
fn convert_ty_with_lifetime_elision<'tcx>(this: &AstConv<'tcx>,
                                          implied_output_region: Option<ty::Region>,
                                          param_lifetimes: Vec<(String, uint)>,
                                          ty: &ast::Ty)
                                          -> Ty<'tcx>
497 498 499
{
    match implied_output_region {
        Some(implied_output_region) => {
500
            let rb = ElidableRscope::new(implied_output_region);
501 502 503 504 505 506 507 508 509 510 511 512
            ast_ty_to_ty(this, &rb, ty)
        }
        None => {
            // All regions must be explicitly specified in the output
            // if the lifetime elision rules do not apply. This saves
            // the user from potentially-confusing errors.
            let rb = UnelidableRscope::new(param_lifetimes);
            ast_ty_to_ty(this, &rb, ty)
        }
    }
}

513
fn convert_parenthesized_parameters<'tcx>(this: &AstConv<'tcx>,
514 515 516
                                          rscope: &RegionScope,
                                          span: Span,
                                          decl_generics: &ty::Generics<'tcx>,
517
                                          data: &ast::ParenthesizedParameterData)
518
                                          -> (Substs<'tcx>,
519 520
                                              Vec<Ty<'tcx>>,
                                              Vec<ConvertedBinding<'tcx>>)
521
{
522 523 524
    let region_substs =
        create_region_substs(this, rscope, span, decl_generics, Vec::new());

525
    let binding_rscope = BindingRscope::new();
526 527 528 529 530
    let inputs =
        data.inputs.iter()
                   .map(|a_t| ast_ty_arg_to_ty(this, &binding_rscope, decl_generics,
                                               0, &region_substs, a_t))
                   .collect::<Vec<Ty<'tcx>>>();
531

A
Aaron Turon 已提交
532
    let input_params: Vec<_> = repeat(String::new()).take(inputs.len()).collect();
533 534 535
    let (implied_output_region,
         params_lifetimes) = find_implied_output_region(&*inputs, input_params);

536 537
    let input_ty = ty::mk_tup(this.tcx(), inputs);

538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
    let (output, output_span) = match data.output {
        Some(ref output_ty) => {
            (convert_ty_with_lifetime_elision(this,
                                              implied_output_region,
                                              params_lifetimes,
                                              &**output_ty),
             output_ty.span)
        }
        None => {
            (ty::mk_nil(this.tcx()), data.span)
        }
    };

    let output_binding = ConvertedBinding {
        item_name: token::intern(FN_OUTPUT_NAME),
        ty: output,
        span: output_span
555 556
    };

557
    (region_substs, vec![input_ty], vec![output_binding])
558
}
559

560 561 562
pub fn instantiate_poly_trait_ref<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
563 564
    ast_trait_ref: &ast::PolyTraitRef,
    self_ty: Option<Ty<'tcx>>,
565 566
    poly_projections: &mut Vec<ty::PolyProjectionPredicate<'tcx>>)
    -> ty::PolyTraitRef<'tcx>
567
{
568 569
    let mut projections = Vec::new();

570
    // The trait reference introduces a binding level here, so
571 572 573 574 575 576
    // we need to shift the `rscope`. It'd be nice if we could
    // do away with this rscope stuff and work this knowledge
    // into resolve_lifetimes, as we do with non-omitted
    // lifetimes. Oh well, not there yet.
    let shifted_rscope = ShiftedRscope::new(rscope);

577
    let trait_ref =
578
        instantiate_trait_ref(this, &shifted_rscope, &ast_trait_ref.trait_ref,
579 580
                              self_ty, Some(&mut projections));

581
    for projection in projections {
582 583 584 585
        poly_projections.push(ty::Binder(projection));
    }

    ty::Binder(trait_ref)
586
}
587

588 589 590
/// Instantiates the path for the given trait reference, assuming that it's
/// bound to a valid trait type. Returns the def_id for the defining trait.
/// Fails if the type is a type other than a trait type.
591 592 593
///
/// If the `projections` argument is `None`, then assoc type bindings like `Foo<T=X>`
/// are disallowed. Otherwise, they are pushed onto the vector given.
594 595 596
pub fn instantiate_trait_ref<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
597 598 599 600
    ast_trait_ref: &ast::TraitRef,
    self_ty: Option<Ty<'tcx>>,
    projections: Option<&mut Vec<ty::ProjectionPredicate<'tcx>>>)
    -> Rc<ty::TraitRef<'tcx>>
N
Niko Matsakis 已提交
601
{
602
    match ::lookup_def_tcx(this.tcx(), ast_trait_ref.path.span, ast_trait_ref.ref_id) {
603
        def::DefTrait(trait_def_id) => {
604 605 606 607 608 609 610
            let trait_ref = ast_path_to_trait_ref(this,
                                                  rscope,
                                                  trait_def_id,
                                                  self_ty,
                                                  &ast_trait_ref.path,
                                                  projections);
            this.tcx().trait_refs.borrow_mut().insert(ast_trait_ref.ref_id, trait_ref.clone());
N
Niko Matsakis 已提交
611 612 613
            trait_ref
        }
        _ => {
614 615 616
            span_fatal!(this.tcx().sess, ast_trait_ref.path.span, E0245,
                "`{}` is not a trait",
                        ast_trait_ref.path.user_string(this.tcx()));
N
Niko Matsakis 已提交
617 618 619 620
        }
    }
}

621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
fn object_path_to_poly_trait_ref<'a,'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
    trait_def_id: ast::DefId,
    path: &ast::Path,
    mut projections: &mut Vec<ty::PolyProjectionPredicate<'tcx>>)
    -> ty::PolyTraitRef<'tcx>
{
    // we are introducing a binder here, so shift the
    // anonymous regions depth to account for that
    let shifted_rscope = ShiftedRscope::new(rscope);

    let mut tmp = Vec::new();
    let trait_ref = ty::Binder(ast_path_to_trait_ref(this,
                                                     &shifted_rscope,
                                                     trait_def_id,
                                                     None,
                                                     path,
                                                     Some(&mut tmp)));
    projections.extend(tmp.into_iter().map(ty::Binder));
    trait_ref
}

644 645 646
fn ast_path_to_trait_ref<'a,'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
647
    trait_def_id: ast::DefId,
648
    self_ty: Option<Ty<'tcx>>,
649
    path: &ast::Path,
650 651
    mut projections: Option<&mut Vec<ty::ProjectionPredicate<'tcx>>>)
    -> Rc<ty::TraitRef<'tcx>>
652
{
653
    debug!("ast_path_to_trait_ref {:?}", path);
E
Eduard Burtescu 已提交
654
    let trait_def = this.get_trait_def(trait_def_id);
655

656
    let (regions, types, assoc_bindings) = match path.segments.last().unwrap().parameters {
657
        ast::AngleBracketedParameters(ref data) => {
658
            // For now, require that parenthetical notation be used
659
            // only with `Fn()` etc.
660
            if !this.tcx().sess.features.borrow().unboxed_closures && trait_def.paren_sugar {
B
Brian Anderson 已提交
661
                span_err!(this.tcx().sess, path.span, E0215,
662 663 664 665 666 667 668
                                         "angle-bracket notation is not stable when \
                                         used with the `Fn` family of traits, use parentheses");
                span_help!(this.tcx().sess, path.span,
                           "add `#![feature(unboxed_closures)]` to \
                            the crate attributes to enable");
            }

669
            convert_angle_bracketed_parameters(this, rscope, path.span, &trait_def.generics, data)
670 671
        }
        ast::ParenthesizedParameters(ref data) => {
672 673
            // For now, require that parenthetical notation be used
            // only with `Fn()` etc.
674
            if !this.tcx().sess.features.borrow().unboxed_closures && !trait_def.paren_sugar {
B
Brian Anderson 已提交
675
                span_err!(this.tcx().sess, path.span, E0216,
676 677 678 679 680 681 682
                                         "parenthetical notation is only stable when \
                                         used with the `Fn` family of traits");
                span_help!(this.tcx().sess, path.span,
                           "add `#![feature(unboxed_closures)]` to \
                            the crate attributes to enable");
            }

683
            convert_parenthesized_parameters(this, rscope, path.span, &trait_def.generics, data)
684 685 686 687 688 689 690 691
        }
    };

    let substs = create_substs_for_ast_path(this,
                                            path.span,
                                            &trait_def.generics,
                                            self_ty,
                                            types,
692 693 694 695 696 697 698
                                            regions);
    let substs = this.tcx().mk_substs(substs);

    let trait_ref = Rc::new(ty::TraitRef::new(trait_def_id, substs));

    match projections {
        None => {
699
            prohibit_projections(this.tcx(), &assoc_bindings);
700 701
        }
        Some(ref mut v) => {
702
            for binding in &assoc_bindings {
703 704
                match ast_type_binding_to_projection_predicate(this, trait_ref.clone(),
                                                               self_ty, binding) {
705 706 707 708 709 710 711 712 713
                    Ok(pp) => { v.push(pp); }
                    Err(ErrorReported) => { }
                }
            }
        }
    }

    trait_ref
}
714

715
fn ast_type_binding_to_projection_predicate<'tcx>(
716
    this: &AstConv<'tcx>,
717 718
    mut trait_ref: Rc<ty::TraitRef<'tcx>>,
    self_ty: Option<Ty<'tcx>>,
719 720 721
    binding: &ConvertedBinding<'tcx>)
    -> Result<ty::ProjectionPredicate<'tcx>, ErrorReported>
{
722 723
    let tcx = this.tcx();

724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
    // Given something like `U : SomeTrait<T=X>`, we want to produce a
    // predicate like `<U as SomeTrait>::T = X`. This is somewhat
    // subtle in the event that `T` is defined in a supertrait of
    // `SomeTrait`, because in that case we need to upcast.
    //
    // That is, consider this case:
    //
    // ```
    // trait SubTrait : SuperTrait<int> { }
    // trait SuperTrait<A> { type T; }
    //
    // ... B : SubTrait<T=foo> ...
    // ```
    //
    // We want to produce `<B as SuperTrait<int>>::T == foo`.

740 741 742 743 744 745 746 747 748 749 750
    // Simple case: X is defined in the current trait.
    if trait_defines_associated_type_named(this, trait_ref.def_id, binding.item_name) {
        return Ok(ty::ProjectionPredicate {
            projection_ty: ty::ProjectionTy {
                trait_ref: trait_ref,
                item_name: binding.item_name,
            },
            ty: binding.ty,
        });
    }

751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
    // Otherwise, we have to walk through the supertraits to find
    // those that do.  This is complicated by the fact that, for an
    // object type, the `Self` type is not present in the
    // substitutions (after all, it's being constructed right now),
    // but the `supertraits` iterator really wants one. To handle
    // this, we currently insert a dummy type and then remove it
    // later. Yuck.

    let dummy_self_ty = ty::mk_infer(tcx, ty::FreshTy(0));
    if self_ty.is_none() { // if converting for an object type
        let mut dummy_substs = trait_ref.substs.clone();
        assert!(dummy_substs.self_ty().is_none());
        dummy_substs.types.push(SelfSpace, dummy_self_ty);
        trait_ref = Rc::new(ty::TraitRef::new(trait_ref.def_id,
                                              tcx.mk_substs(dummy_substs)));
    }

    let mut candidates: Vec<ty::PolyTraitRef> =
        traits::supertraits(tcx, trait_ref.to_poly_trait_ref())
770 771
        .filter(|r| trait_defines_associated_type_named(this, r.def_id(), binding.item_name))
        .collect();
772

773 774 775
    // If converting for an object type, then remove the dummy-ty from `Self` now.
    // Yuckety yuck.
    if self_ty.is_none() {
776
        for candidate in &mut candidates {
777 778 779 780 781 782 783 784
            let mut dummy_substs = candidate.0.substs.clone();
            assert!(dummy_substs.self_ty() == Some(dummy_self_ty));
            dummy_substs.types.pop(SelfSpace);
            *candidate = ty::Binder(Rc::new(ty::TraitRef::new(candidate.def_id(),
                                                              tcx.mk_substs(dummy_substs))));
        }
    }

785
    if candidates.len() > 1 {
B
Brian Anderson 已提交
786 787
        span_err!(tcx.sess, binding.span, E0217,
            "ambiguous associated type: `{}` defined in multiple supertraits `{}`",
788
                    token::get_name(binding.item_name),
B
Brian Anderson 已提交
789
                    candidates.user_string(tcx));
790 791 792 793 794 795
        return Err(ErrorReported);
    }

    let candidate = match candidates.pop() {
        Some(c) => c,
        None => {
B
Brian Anderson 已提交
796 797
            span_err!(tcx.sess, binding.span, E0218,
                "no associated type `{}` defined in `{}`",
798
                        token::get_name(binding.item_name),
B
Brian Anderson 已提交
799
                        trait_ref.user_string(tcx));
800 801 802 803
            return Err(ErrorReported);
        }
    };

804
    if ty::binds_late_bound_regions(tcx, &candidate) {
B
Brian Anderson 已提交
805 806
        span_err!(tcx.sess, binding.span, E0219,
            "associated type `{}` defined in higher-ranked supertrait `{}`",
807
                    token::get_name(binding.item_name),
B
Brian Anderson 已提交
808
                    candidate.user_string(tcx));
809 810 811 812 813
        return Err(ErrorReported);
    }

    Ok(ty::ProjectionPredicate {
        projection_ty: ty::ProjectionTy {
814
            trait_ref: candidate.0,
815 816 817 818
            item_name: binding.item_name,
        },
        ty: binding.ty,
    })
819 820
}

821 822 823
pub fn ast_path_to_ty<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
824
    did: ast::DefId,
825
    path: &ast::Path)
826
    -> TypeAndSubsts<'tcx>
827
{
828
    let tcx = this.tcx();
829
    let ty::TypeScheme {
830
        generics,
831
        ty: decl_ty
832
    } = this.get_item_type_scheme(did);
833

834 835 836 837
    let substs = ast_path_substs_for_ty(this,
                                        rscope,
                                        &generics,
                                        path);
838
    let ty = decl_ty.subst(tcx, &substs);
839
    TypeAndSubsts { substs: substs, ty: ty }
840 841
}

842 843
/// Converts the given AST type to a built-in type. A "built-in type" is, at
/// present, either a core numeric type, a string, or `Box`.
844 845 846
pub fn ast_ty_to_builtin_ty<'tcx>(
        this: &AstConv<'tcx>,
        rscope: &RegionScope,
847
        ast_ty: &ast::Ty)
848
        -> Option<Ty<'tcx>> {
849 850 851
    match ast_ty_to_prim_ty(this.tcx(), ast_ty) {
        Some(typ) => return Some(typ),
        None => {}
852 853
    }

854
    match ast_ty.node {
855 856
        ast::TyPath(ref path) => {
            let a_def = match this.tcx().def_map.borrow().get(&ast_ty.id) {
857 858 859 860
                None => {
                    this.tcx()
                        .sess
                        .span_bug(ast_ty.span,
J
Jorge Aparicio 已提交
861
                                  &format!("unbound path {}",
862
                                          path.repr(this.tcx())))
863
                }
864 865
                Some(&d) => d
            };
866

867 868 869
            // FIXME(#12938): This is a hack until we have full support for
            // DST.
            match a_def {
870 871
                def::DefTy(did, _) |
                def::DefStruct(did) if Some(did) == this.tcx().lang_items.owned_box() => {
872
                    let ty = ast_path_to_ty(this, rscope, did, path).ty;
873
                    match ty.sty {
874 875 876 877 878 879 880 881 882
                        ty::ty_struct(struct_def_id, ref substs) => {
                            assert_eq!(struct_def_id, did);
                            assert_eq!(substs.types.len(TypeSpace), 1);
                            let referent_ty = *substs.types.get(TypeSpace, 0);
                            Some(ty::mk_uniq(this.tcx(), referent_ty))
                        }
                        _ => {
                            this.tcx().sess.span_bug(
                                path.span,
J
Jorge Aparicio 已提交
883
                                &format!("converting `Box` to `{}`",
884
                                        ty.repr(this.tcx())));
885
                        }
886 887
                    }
                }
888
                _ => None
889
            }
890
        }
891 892 893 894
        _ => None
    }
}

895 896
type TraitAndProjections<'tcx> = (ty::PolyTraitRef<'tcx>, Vec<ty::PolyProjectionPredicate<'tcx>>);

897 898 899 900 901
fn ast_ty_to_trait_ref<'tcx>(this: &AstConv<'tcx>,
                             rscope: &RegionScope,
                             ty: &ast::Ty,
                             bounds: &[ast::TyParamBound])
                             -> Result<TraitAndProjections<'tcx>, ErrorReported>
902
{
903 904 905 906 907 908 909 910 911 912
    /*!
     * In a type like `Foo + Send`, we want to wait to collect the
     * full set of bounds before we make the object type, because we
     * need them to infer a region bound.  (For example, if we tried
     * made a type from just `Foo`, then it wouldn't be enough to
     * infer a 'static bound, and hence the user would get an error.)
     * So this function is used when we're dealing with a sum type to
     * convert the LHS. It only accepts a type that refers to a trait
     * name, and reports an error otherwise.
     */
913

914
    match ty.node {
915 916
        ast::TyPath(ref path) => {
            match this.tcx().def_map.borrow().get(&ty.id) {
917
                Some(&def::DefTrait(trait_def_id)) => {
918
                    let mut projection_bounds = Vec::new();
919 920 921 922 923
                    let trait_ref = object_path_to_poly_trait_ref(this,
                                                                  rscope,
                                                                  trait_def_id,
                                                                  path,
                                                                  &mut projection_bounds);
924
                    Ok((trait_ref, projection_bounds))
925 926
                }
                _ => {
927
                    span_err!(this.tcx().sess, ty.span, E0172, "expected a reference to a trait");
928 929 930
                    Err(ErrorReported)
                }
            }
931
        }
932
        _ => {
933
            span_err!(this.tcx().sess, ty.span, E0178,
934 935 936 937
                      "expected a path on the left-hand side of `+`, not `{}`",
                      pprust::ty_to_string(ty));
            match ty.node {
                ast::TyRptr(None, ref mut_ty) => {
P
P1start 已提交
938
                    span_help!(this.tcx().sess, ty.span,
C
Chris Morgan 已提交
939
                               "perhaps you meant `&{}({} +{})`? (per RFC 438)",
940 941 942
                               ppaux::mutability_to_string(mut_ty.mutbl),
                               pprust::ty_to_string(&*mut_ty.ty),
                               pprust::bounds_to_string(bounds));
943
                }
944
               ast::TyRptr(Some(ref lt), ref mut_ty) => {
P
P1start 已提交
945
                    span_help!(this.tcx().sess, ty.span,
C
Chris Morgan 已提交
946
                               "perhaps you meant `&{} {}({} +{})`? (per RFC 438)",
947 948 949 950 951 952 953
                               pprust::lifetime_to_string(lt),
                               ppaux::mutability_to_string(mut_ty.mutbl),
                               pprust::ty_to_string(&*mut_ty.ty),
                               pprust::bounds_to_string(bounds));
                }

                _ => {
P
P1start 已提交
954
                    span_help!(this.tcx().sess, ty.span,
C
Chris Morgan 已提交
955
                               "perhaps you forgot parentheses? (per RFC 438)");
956 957
                }
            }
958
            Err(ErrorReported)
959
        }
960
    }
961 962
}

963 964 965 966 967 968 969
fn trait_ref_to_object_type<'tcx>(this: &AstConv<'tcx>,
                                  rscope: &RegionScope,
                                  span: Span,
                                  trait_ref: ty::PolyTraitRef<'tcx>,
                                  projection_bounds: Vec<ty::PolyProjectionPredicate<'tcx>>,
                                  bounds: &[ast::TyParamBound])
                                  -> Ty<'tcx>
970 971 972 973
{
    let existential_bounds = conv_existential_bounds(this,
                                                     rscope,
                                                     span,
974
                                                     trait_ref.clone(),
975
                                                     projection_bounds,
976 977 978 979 980 981 982
                                                     bounds);

    let result = ty::mk_trait(this.tcx(), trait_ref, existential_bounds);
    debug!("trait_ref_to_object_type: result={}",
           result.repr(this.tcx()));

    result
983 984
}

985 986 987 988 989 990 991 992
fn associated_path_def_to_ty<'tcx>(this: &AstConv<'tcx>,
                                   ast_ty: &ast::Ty,
                                   provenance: def::TyParamProvenance,
                                   assoc_name: ast::Name)
                                   -> Ty<'tcx>
{
    let tcx = this.tcx();
    let ty_param_def_id = provenance.def_id();
993

994 995 996 997 998 999 1000
    let mut suitable_bounds: Vec<_>;
    let ty_param_name: ast::Name;
    { // contain scope of refcell:
        let ty_param_defs = tcx.ty_param_defs.borrow();
        let ty_param_def = &ty_param_defs[ty_param_def_id.node];
        ty_param_name = ty_param_def.name;

1001
        // FIXME(#20300) -- search where clauses, not bounds
1002
        suitable_bounds =
1003
            traits::transitive_bounds(tcx, &ty_param_def.bounds.trait_bounds)
1004 1005 1006 1007 1008
            .filter(|b| trait_defines_associated_type_named(this, b.def_id(), assoc_name))
            .collect();
    }

    if suitable_bounds.len() == 0 {
B
Brian Anderson 已提交
1009 1010
        span_err!(tcx.sess, ast_ty.span, E0220,
                          "associated type `{}` not found for type parameter `{}`",
1011
                                  token::get_name(assoc_name),
B
Brian Anderson 已提交
1012
                                  token::get_name(ty_param_name));
1013 1014 1015 1016
        return this.tcx().types.err;
    }

    if suitable_bounds.len() > 1 {
B
Brian Anderson 已提交
1017 1018
        span_err!(tcx.sess, ast_ty.span, E0221,
                          "ambiguous associated type `{}` in bounds of `{}`",
1019
                                  token::get_name(assoc_name),
B
Brian Anderson 已提交
1020
                                  token::get_name(ty_param_name));
1021

1022
        for suitable_bound in &suitable_bounds {
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
            span_note!(this.tcx().sess, ast_ty.span,
                       "associated type `{}` could derive from `{}`",
                       token::get_name(ty_param_name),
                       suitable_bound.user_string(this.tcx()));
        }
    }

    let suitable_bound = suitable_bounds.pop().unwrap().clone();
    return this.projected_ty_from_poly_trait_ref(ast_ty.span, suitable_bound, assoc_name);
}

fn trait_defines_associated_type_named(this: &AstConv,
                                       trait_def_id: ast::DefId,
                                       assoc_name: ast::Name)
                                       -> bool
{
    let tcx = this.tcx();
    let trait_def = ty::lookup_trait_def(tcx, trait_def_id);
    trait_def.associated_type_names.contains(&assoc_name)
}

1044 1045 1046 1047 1048
fn qpath_to_ty<'tcx>(this: &AstConv<'tcx>,
                     rscope: &RegionScope,
                     ast_ty: &ast::Ty, // the TyQPath
                     qpath: &ast::QPath)
                     -> Ty<'tcx>
1049
{
1050 1051
    debug!("qpath_to_ty(ast_ty={})",
           ast_ty.repr(this.tcx()));
1052

1053 1054 1055
    let self_type = ast_ty_to_ty(this, rscope, &*qpath.self_type);

    debug!("qpath_to_ty: self_type={}", self_type.repr(this.tcx()));
1056

1057
    let trait_ref = instantiate_trait_ref(this,
1058
                                          rscope,
1059
                                          &*qpath.trait_ref,
1060
                                          Some(self_type),
1061
                                          None);
1062 1063 1064

    debug!("qpath_to_ty: trait_ref={}", trait_ref.repr(this.tcx()));

1065 1066 1067
    // `<T as Trait>::U<V>` shouldn't parse right now.
    assert!(qpath.item_path.parameters.is_empty());

1068 1069
    return this.projected_ty(ast_ty.span,
                             trait_ref,
1070
                             qpath.item_path.identifier.name);
1071 1072
}

1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
/// Convert a type supplied as value for a type argument from AST into our
/// our internal representation. This is the same as `ast_ty_to_ty` but that
/// it applies the object lifetime default.
///
/// # Parameters
///
/// * `this`, `rscope`: the surrounding context
/// * `decl_generics`: the generics of the struct/enum/trait declaration being
///   referenced
/// * `index`: the index of the type parameter being instantiated from the list
///   (we assume it is in the `TypeSpace`)
/// * `region_substs`: a partial substitution consisting of
///   only the region type parameters being supplied to this type.
/// * `ast_ty`: the ast representation of the type being supplied
pub fn ast_ty_arg_to_ty<'tcx>(this: &AstConv<'tcx>,
                              rscope: &RegionScope,
                              decl_generics: &ty::Generics<'tcx>,
                              index: usize,
                              region_substs: &Substs<'tcx>,
                              ast_ty: &ast::Ty)
                              -> Ty<'tcx>
{
    let tcx = this.tcx();

    if let Some(def) = decl_generics.types.opt_get(TypeSpace, index) {
        let object_lifetime_default = def.object_lifetime_default.subst(tcx, region_substs);
        let rscope1 = &ObjectLifetimeDefaultRscope::new(rscope, object_lifetime_default);
        ast_ty_to_ty(this, rscope1, ast_ty)
    } else {
        ast_ty_to_ty(this, rscope, ast_ty)
    }
}

/// Parses the programmer's textual representation of a type into our
/// internal notion of a type.
pub fn ast_ty_to_ty<'tcx>(this: &AstConv<'tcx>,
                          rscope: &RegionScope,
                          ast_ty: &ast::Ty)
                          -> Ty<'tcx>
1112 1113 1114
{
    debug!("ast_ty_to_ty(ast_ty={})",
           ast_ty.repr(this.tcx()));
1115

1116
    let tcx = this.tcx();
1117

1118
    let mut ast_ty_to_ty_cache = tcx.ast_ty_to_ty_cache.borrow_mut();
1119
    match ast_ty_to_ty_cache.get(&ast_ty.id) {
1120 1121
        Some(&ty::atttce_resolved(ty)) => return ty,
        Some(&ty::atttce_unresolved) => {
1122
            span_fatal!(tcx.sess, ast_ty.span, E0246,
1123 1124 1125
                                "illegal recursive type; insert an enum \
                                 or struct in the cycle, if this is \
                                 desired");
1126
        }
1127
        None => { /* go on */ }
1128
    }
1129 1130
    ast_ty_to_ty_cache.insert(ast_ty.id, ty::atttce_unresolved);
    drop(ast_ty_to_ty_cache);
1131

1132 1133
    let typ = ast_ty_to_builtin_ty(this, rscope, ast_ty).unwrap_or_else(|| {
        match ast_ty.node {
1134 1135
            ast::TyVec(ref ty) => {
                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty), None)
1136
            }
1137
            ast::TyObjectSum(ref ty, ref bounds) => {
1138
                match ast_ty_to_trait_ref(this, rscope, &**ty, &bounds[..]) {
1139
                    Ok((trait_ref, projection_bounds)) => {
N
fallout  
Nick Cameron 已提交
1140 1141 1142 1143 1144
                        trait_ref_to_object_type(this,
                                                 rscope,
                                                 ast_ty.span,
                                                 trait_ref,
                                                 projection_bounds,
1145
                                                 &bounds[..])
1146 1147
                    }
                    Err(ErrorReported) => {
1148
                        this.tcx().types.err
1149 1150 1151
                    }
                }
            }
1152
            ast::TyPtr(ref mt) => {
1153
                ty::mk_ptr(tcx, ty::mt {
1154
                    ty: ast_ty_to_ty(this, rscope, &*mt.ty),
1155 1156
                    mutbl: mt.mutbl
                })
1157
            }
1158 1159 1160
            ast::TyRptr(ref region, ref mt) => {
                let r = opt_ast_region_to_region(this, rscope, ast_ty.span, region);
                debug!("ty_rptr r={}", r.repr(this.tcx()));
1161 1162 1163 1164 1165
                let rscope1 =
                    &ObjectLifetimeDefaultRscope::new(
                        rscope,
                        Some(ty::ObjectLifetimeDefault::Specific(r)));
                let t = ast_ty_to_ty(this, rscope1, &*mt.ty);
H
Huon Wilson 已提交
1166
                ty::mk_rptr(tcx, tcx.mk_region(r), ty::mt {ty: t, mutbl: mt.mutbl})
1167 1168
            }
            ast::TyTup(ref fields) => {
1169
                let flds = fields.iter()
1170
                                 .map(|t| ast_ty_to_ty(this, rscope, &**t))
1171
                                 .collect();
1172 1173
                ty::mk_tup(tcx, flds)
            }
1174
            ast::TyParen(ref typ) => ast_ty_to_ty(this, rscope, &**typ),
1175
            ast::TyBareFn(ref bf) => {
1176
                if bf.decl.variadic && bf.abi != abi::C {
B
Brian Anderson 已提交
1177
                    span_err!(tcx.sess, ast_ty.span, E0222,
1178 1179
                                      "variadic function must have C calling convention");
                }
1180 1181
                let bare_fn = ty_of_bare_fn(this, bf.unsafety, bf.abi, &*bf.decl);
                ty::mk_bare_fn(tcx, None, tcx.mk_bare_fn(bare_fn))
1182
            }
1183
            ast::TyPolyTraitRef(ref bounds) => {
1184
                conv_ty_poly_trait_ref(this, rscope, ast_ty.span, &bounds[..])
N
Niko Matsakis 已提交
1185
            }
1186 1187
            ast::TyPath(ref path) => {
                let a_def = match tcx.def_map.borrow().get(&ast_ty.id) {
1188 1189 1190
                    None => {
                        tcx.sess
                           .span_bug(ast_ty.span,
J
Jorge Aparicio 已提交
1191
                                     &format!("unbound path {}",
1192
                                             path.repr(tcx)))
1193
                    }
1194 1195 1196
                    Some(&d) => d
                };
                match a_def {
1197
                    def::DefTrait(trait_def_id) => {
1198 1199
                        // N.B. this case overlaps somewhat with
                        // TyObjectSum, see that fn for details
1200
                        let mut projection_bounds = Vec::new();
1201 1202 1203 1204 1205 1206 1207

                        let trait_ref = object_path_to_poly_trait_ref(this,
                                                                      rscope,
                                                                      trait_def_id,
                                                                      path,
                                                                      &mut projection_bounds);

1208 1209
                        trait_ref_to_object_type(this, rscope, path.span,
                                                 trait_ref, projection_bounds, &[])
1210
                    }
1211
                    def::DefTy(did, _) | def::DefStruct(did) => {
1212
                        ast_path_to_ty(this, rscope, did, path).ty
1213
                    }
1214
                    def::DefTyParam(space, index, _, name) => {
1215
                        check_path_args(tcx, path, NO_TPS | NO_REGIONS);
1216
                        ty::mk_param(tcx, space, index, name)
1217
                    }
1218
                    def::DefSelfTy(_) => {
1219 1220 1221 1222
                        // n.b.: resolve guarantees that the this type only appears in a
                        // trait, which we rely upon in various places when creating
                        // substs
                        check_path_args(tcx, path, NO_TPS | NO_REGIONS);
1223
                        ty::mk_self_type(tcx)
1224
                    }
1225
                    def::DefMod(id) => {
1226 1227 1228
                        span_fatal!(tcx.sess, ast_ty.span, E0247,
                            "found module name used as a type: {}",
                                    tcx.map.node_to_string(id.node));
1229
                    }
1230
                    def::DefPrimTy(_) => {
S
Steve Klabnik 已提交
1231
                        panic!("DefPrimTy arm missed in previous ast_ty_to_prim_ty call");
1232
                    }
1233 1234 1235
                    def::DefAssociatedTy(trait_type_id) => {
                        let path_str = tcx.map.path_to_string(
                            tcx.map.get_parent(trait_type_id.node));
B
Brian Anderson 已提交
1236 1237
                        span_err!(tcx.sess, ast_ty.span, E0223,
                                          "ambiguous associated \
1238 1239 1240 1241
                                                   type; specify the type \
                                                   using the syntax `<Type \
                                                   as {}>::{}`",
                                                  path_str,
1242
                                                  &token::get_ident(
1243 1244 1245
                                                      path.segments
                                                          .last()
                                                          .unwrap()
1246
                                                          .identifier));
1247
                        this.tcx().types.err
1248
                    }
1249 1250
                    def::DefAssociatedPath(provenance, assoc_ident) => {
                        associated_path_def_to_ty(this, ast_ty, provenance, assoc_ident.name)
1251
                    }
1252
                    _ => {
1253 1254
                        span_fatal!(tcx.sess, ast_ty.span, E0248,
                                            "found value name used \
1255
                                                     as a type: {:?}",
1256
                                                    a_def);
1257 1258 1259
                    }
                }
            }
1260
            ast::TyQPath(ref qpath) => {
1261
                qpath_to_ty(this, rscope, ast_ty, &**qpath)
1262
            }
1263
            ast::TyFixedLengthVec(ref ty, ref e) => {
1264
                match const_eval::eval_const_expr_partial(tcx, &**e, Some(tcx.types.uint)) {
1265 1266 1267
                    Ok(ref r) => {
                        match *r {
                            const_eval::const_int(i) =>
1268
                                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty),
1269
                                           Some(i as uint)),
1270
                            const_eval::const_uint(i) =>
1271
                                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty),
1272
                                           Some(i as uint)),
1273
                            _ => {
1274 1275
                                span_fatal!(tcx.sess, ast_ty.span, E0249,
                                            "expected constant expr for array length");
1276 1277 1278 1279
                            }
                        }
                    }
                    Err(ref r) => {
1280 1281
                        span_fatal!(tcx.sess, ast_ty.span, E0250,
                            "expected constant expr for array \
1282
                                     length: {}",
1283
                                    *r);
1284 1285 1286
                    }
                }
            }
1287
            ast::TyTypeof(ref _e) => {
1288 1289 1290
                tcx.sess.span_bug(ast_ty.span, "typeof is reserved but unimplemented");
            }
            ast::TyInfer => {
1291
                // TyInfer also appears as the type of arguments or return
1292
                // values in a ExprClosure, or as
1293 1294
                // the type of local variables. Both of these cases are
                // handled specially and will not descend into this routine.
1295
                this.ty_infer(ast_ty.span)
1296
            }
1297 1298
        }
    });
1299

1300
    tcx.ast_ty_to_ty_cache.borrow_mut().insert(ast_ty.id, ty::atttce_resolved(typ));
B
Brian Anderson 已提交
1301
    return typ;
1302 1303
}

1304 1305 1306 1307 1308 1309
pub fn ty_of_arg<'tcx>(this: &AstConv<'tcx>,
                       rscope: &RegionScope,
                       a: &ast::Arg,
                       expected_ty: Option<Ty<'tcx>>)
                       -> Ty<'tcx>
{
E
Erick Tryzelaar 已提交
1310
    match a.ty.node {
1311 1312
        ast::TyInfer if expected_ty.is_some() => expected_ty.unwrap(),
        ast::TyInfer => this.ty_infer(a.ty.span),
1313
        _ => ast_ty_to_ty(this, rscope, &*a.ty),
1314
    }
1315 1316
}

1317 1318
struct SelfInfo<'a, 'tcx> {
    untransformed_self_ty: Ty<'tcx>,
1319
    explicit_self: &'a ast::ExplicitSelf,
1320 1321
}

1322 1323 1324 1325 1326 1327 1328
pub fn ty_of_method<'tcx>(this: &AstConv<'tcx>,
                          unsafety: ast::Unsafety,
                          untransformed_self_ty: Ty<'tcx>,
                          explicit_self: &ast::ExplicitSelf,
                          decl: &ast::FnDecl,
                          abi: abi::Abi)
                          -> (ty::BareFnTy<'tcx>, ty::ExplicitSelfCategory) {
1329
    let self_info = Some(SelfInfo {
1330
        untransformed_self_ty: untransformed_self_ty,
1331 1332 1333 1334
        explicit_self: explicit_self,
    });
    let (bare_fn_ty, optional_explicit_self_category) =
        ty_of_method_or_bare_fn(this,
N
Niko Matsakis 已提交
1335
                                unsafety,
1336
                                abi,
1337 1338 1339
                                self_info,
                                decl);
    (bare_fn_ty, optional_explicit_self_category.unwrap())
1340 1341
}

1342
pub fn ty_of_bare_fn<'tcx>(this: &AstConv<'tcx>, unsafety: ast::Unsafety, abi: abi::Abi,
1343
                                              decl: &ast::FnDecl) -> ty::BareFnTy<'tcx> {
N
Niko Matsakis 已提交
1344
    let (bare_fn_ty, _) = ty_of_method_or_bare_fn(this, unsafety, abi, None, decl);
1345
    bare_fn_ty
1346 1347
}

1348 1349 1350 1351 1352 1353
fn ty_of_method_or_bare_fn<'a, 'tcx>(this: &AstConv<'tcx>,
                                     unsafety: ast::Unsafety,
                                     abi: abi::Abi,
                                     opt_self_info: Option<SelfInfo<'a, 'tcx>>,
                                     decl: &ast::FnDecl)
                                     -> (ty::BareFnTy<'tcx>, Option<ty::ExplicitSelfCategory>)
1354
{
1355
    debug!("ty_of_method_or_bare_fn");
1356

1357 1358
    // New region names that appear inside of the arguments of the function
    // declaration are bound to that function type.
1359
    let rb = rscope::BindingRscope::new();
1360

1361 1362 1363 1364 1365
    // `implied_output_region` is the region that will be assumed for any
    // region parameters in the return type. In accordance with the rules for
    // lifetime elision, we can determine it in two ways. First (determined
    // here), if self is by-reference, then the implied output region is the
    // region of the self parameter.
1366
    let mut explicit_self_category_result = None;
1367 1368 1369
    let (self_ty, mut implied_output_region) = match opt_self_info {
        None => (None, None),
        Some(self_info) => {
1370 1371 1372
            // This type comes from an impl or trait; no late-bound
            // regions should be present.
            assert!(!self_info.untransformed_self_ty.has_escaping_regions());
1373

1374 1375 1376 1377 1378
            // Figure out and record the explicit self category.
            let explicit_self_category =
                determine_explicit_self_category(this, &rb, &self_info);
            explicit_self_category_result = Some(explicit_self_category);
            match explicit_self_category {
1379 1380 1381
                ty::StaticExplicitSelfCategory => {
                    (None, None)
                }
1382
                ty::ByValueExplicitSelfCategory => {
1383
                    (Some(self_info.untransformed_self_ty), None)
1384 1385 1386
                }
                ty::ByReferenceExplicitSelfCategory(region, mutability) => {
                    (Some(ty::mk_rptr(this.tcx(),
H
Huon Wilson 已提交
1387
                                      this.tcx().mk_region(region),
1388
                                      ty::mt {
1389
                                        ty: self_info.untransformed_self_ty,
1390 1391 1392 1393 1394
                                        mutbl: mutability
                                      })),
                     Some(region))
                }
                ty::ByBoxExplicitSelfCategory => {
1395
                    (Some(ty::mk_uniq(this.tcx(), self_info.untransformed_self_ty)), None)
1396
                }
1397 1398
            }
        }
1399
    };
1400 1401

    // HACK(eddyb) replace the fake self type in the AST with the actual type.
1402
    let input_params = if self_ty.is_some() {
A
Aaron Turon 已提交
1403
        &decl.inputs[1..]
1404
    } else {
1405
        &decl.inputs[..]
1406
    };
1407 1408 1409 1410
    let input_tys = input_params.iter().map(|a| ty_of_arg(this, &rb, a, None));
    let input_pats: Vec<String> = input_params.iter()
                                              .map(|a| pprust::pat_to_string(&*a.pat))
                                              .collect();
1411
    let self_and_input_tys: Vec<Ty> =
A
Aaron Turon 已提交
1412
        self_ty.into_iter().chain(input_tys).collect();
1413

1414

1415 1416 1417
    // Second, if there was exactly one lifetime (either a substitution or a
    // reference) in the arguments, then any anonymous regions in the output
    // have that lifetime.
1418 1419
    let lifetimes_for_params = if implied_output_region.is_none() {
        let input_tys = if self_ty.is_some() {
1420
            // Skip the first argument if `self` is present.
A
Aaron Turon 已提交
1421
            &self_and_input_tys[1..]
1422
        } else {
1423
            &self_and_input_tys[..]
1424
        };
1425

1426 1427 1428 1429 1430 1431
        let (ior, lfp) = find_implied_output_region(input_tys, input_pats);
        implied_output_region = ior;
        lfp
    } else {
        vec![]
    };
1432

1433 1434 1435 1436
    let output_ty = match decl.output {
        ast::Return(ref output) if output.node == ast::TyInfer =>
            ty::FnConverging(this.ty_infer(output.span)),
        ast::Return(ref output) =>
1437 1438 1439 1440
            ty::FnConverging(convert_ty_with_lifetime_elision(this,
                                                              implied_output_region,
                                                              lifetimes_for_params,
                                                              &**output)),
1441 1442
        ast::DefaultReturn(..) => ty::FnConverging(ty::mk_nil(this.tcx())),
        ast::NoReturn(..) => ty::FnDiverging
1443 1444
    };

1445
    (ty::BareFnTy {
N
Niko Matsakis 已提交
1446
        unsafety: unsafety,
1447
        abi: abi,
1448
        sig: ty::Binder(ty::FnSig {
1449 1450 1451
            inputs: self_and_input_tys,
            output: output_ty,
            variadic: decl.variadic
1452
        }),
1453 1454 1455
    }, explicit_self_category_result)
}

1456 1457 1458 1459
fn determine_explicit_self_category<'a, 'tcx>(this: &AstConv<'tcx>,
                                              rscope: &RegionScope,
                                              self_info: &SelfInfo<'a, 'tcx>)
                                              -> ty::ExplicitSelfCategory
1460 1461
{
    return match self_info.explicit_self.node {
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
        ast::SelfStatic => ty::StaticExplicitSelfCategory,
        ast::SelfValue(_) => ty::ByValueExplicitSelfCategory,
        ast::SelfRegion(ref lifetime, mutability, _) => {
            let region =
                opt_ast_region_to_region(this,
                                         rscope,
                                         self_info.explicit_self.span,
                                         lifetime);
            ty::ByReferenceExplicitSelfCategory(region, mutability)
        }
1472 1473
        ast::SelfExplicit(ref ast_type, _) => {
            let explicit_type = ast_ty_to_ty(this, rscope, &**ast_type);
1474

1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
            // We wish to (for now) categorize an explicit self
            // declaration like `self: SomeType` into either `self`,
            // `&self`, `&mut self`, or `Box<self>`. We do this here
            // by some simple pattern matching. A more precise check
            // is done later in `check_method_self_type()`.
            //
            // Examples:
            //
            // ```
            // impl Foo for &T {
            //     // Legal declarations:
            //     fn method1(self: &&T); // ByReferenceExplicitSelfCategory
            //     fn method2(self: &T); // ByValueExplicitSelfCategory
            //     fn method3(self: Box<&T>); // ByBoxExplicitSelfCategory
            //
            //     // Invalid cases will be caught later by `check_method_self_type`:
            //     fn method_err1(self: &mut T); // ByReferenceExplicitSelfCategory
            // }
            // ```
            //
            // To do the check we just count the number of "modifiers"
            // on each type and compare them. If they are the same or
            // the impl has more, we call it "by value". Otherwise, we
            // look at the outermost modifier on the method decl and
            // call it by-ref, by-box as appropriate. For method1, for
            // example, the impl type has one modifier, but the method
            // type has two, so we end up with
            // ByReferenceExplicitSelfCategory.

            let impl_modifiers = count_modifiers(self_info.untransformed_self_ty);
            let method_modifiers = count_modifiers(explicit_type);

            debug!("determine_explicit_self_category(self_info.untransformed_self_ty={} \
                   explicit_type={} \
                   modifiers=({},{})",
                   self_info.untransformed_self_ty.repr(this.tcx()),
                   explicit_type.repr(this.tcx()),
                   impl_modifiers,
                   method_modifiers);

            if impl_modifiers >= method_modifiers {
                ty::ByValueExplicitSelfCategory
            } else {
1518
                match explicit_type.sty {
H
Huon Wilson 已提交
1519
                    ty::ty_rptr(r, mt) => ty::ByReferenceExplicitSelfCategory(*r, mt.mutbl),
1520 1521
                    ty::ty_uniq(_) => ty::ByBoxExplicitSelfCategory,
                    _ => ty::ByValueExplicitSelfCategory,
1522 1523
                }
            }
1524 1525
        }
    };
1526

1527
    fn count_modifiers(ty: Ty) -> uint {
1528
        match ty.sty {
1529 1530 1531
            ty::ty_rptr(_, mt) => count_modifiers(mt.ty) + 1,
            ty::ty_uniq(t) => count_modifiers(t) + 1,
            _ => 0,
1532 1533
        }
    }
1534 1535
}

1536 1537
pub fn ty_of_closure<'tcx>(
    this: &AstConv<'tcx>,
N
Niko Matsakis 已提交
1538
    unsafety: ast::Unsafety,
1539
    decl: &ast::FnDecl,
1540
    abi: abi::Abi,
1541 1542
    expected_sig: Option<ty::FnSig<'tcx>>)
    -> ty::ClosureTy<'tcx>
1543
{
1544 1545
    debug!("ty_of_closure(expected_sig={})",
           expected_sig.repr(this.tcx()));
1546 1547 1548

    // new region names that appear inside of the fn decl are bound to
    // that function type
1549
    let rb = rscope::BindingRscope::new();
1550

1551
    let input_tys: Vec<_> = decl.inputs.iter().enumerate().map(|(i, a)| {
1552
        let expected_arg_ty = expected_sig.as_ref().and_then(|e| {
1553 1554
            // no guarantee that the correct number of expected args
            // were supplied
1555
            if i < e.inputs.len() {
1556
                Some(e.inputs[i])
1557 1558 1559
            } else {
                None
            }
1560
        });
J
James Miller 已提交
1561
        ty_of_arg(this, &rb, a, expected_arg_ty)
1562
    }).collect();
1563

1564
    let expected_ret_ty = expected_sig.map(|e| e.output);
J
Jakub Bukaj 已提交
1565

1566 1567 1568 1569 1570 1571
    let is_infer = match decl.output {
        ast::Return(ref output) if output.node == ast::TyInfer => true,
        ast::DefaultReturn(..) => true,
        _ => false
    };

1572
    let output_ty = match decl.output {
1573
        _ if is_infer && expected_ret_ty.is_some() =>
1574
            expected_ret_ty.unwrap(),
1575 1576
        _ if is_infer =>
            ty::FnConverging(this.ty_infer(decl.output.span())),
1577 1578
        ast::Return(ref output) =>
            ty::FnConverging(ast_ty_to_ty(this, &rb, &**output)),
1579 1580
        ast::DefaultReturn(..) => unreachable!(),
        ast::NoReturn(..) => ty::FnDiverging
1581 1582
    };

1583 1584 1585
    debug!("ty_of_closure: input_tys={}", input_tys.repr(this.tcx()));
    debug!("ty_of_closure: output_ty={}", output_ty.repr(this.tcx()));

1586
    ty::ClosureTy {
N
Niko Matsakis 已提交
1587
        unsafety: unsafety,
1588
        abi: abi,
1589 1590 1591
        sig: ty::Binder(ty::FnSig {inputs: input_tys,
                                   output: output_ty,
                                   variadic: decl.variadic}),
1592 1593
    }
}
1594

S
Steve Klabnik 已提交
1595 1596 1597 1598
/// Given an existential type like `Foo+'a+Bar`, this routine converts the `'a` and `Bar` intos an
/// `ExistentialBounds` struct. The `main_trait_refs` argument specifies the `Foo` -- it is absent
/// for closures. Eventually this should all be normalized, I think, so that there is no "main
/// trait ref" and instead we just have a flat list of bounds as the existential type.
1599
fn conv_existential_bounds<'tcx>(
1600 1601
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
1602
    span: Span,
1603
    principal_trait_ref: ty::PolyTraitRef<'tcx>,
1604
    projection_bounds: Vec<ty::PolyProjectionPredicate<'tcx>>,
1605
    ast_bounds: &[ast::TyParamBound])
1606
    -> ty::ExistentialBounds<'tcx>
1607
{
1608
    let partitioned_bounds =
1609
        partition_bounds(this.tcx(), span, ast_bounds);
1610 1611

    conv_existential_bounds_from_partitioned_bounds(
1612
        this, rscope, span, principal_trait_ref, projection_bounds, partitioned_bounds)
1613 1614
}

1615 1616 1617
fn conv_ty_poly_trait_ref<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
1618 1619
    span: Span,
    ast_bounds: &[ast::TyParamBound])
1620
    -> Ty<'tcx>
1621
{
1622
    let mut partitioned_bounds = partition_bounds(this.tcx(), span, &ast_bounds[..]);
1623

1624
    let mut projection_bounds = Vec::new();
A
Aaron Turon 已提交
1625 1626
    let main_trait_bound = if !partitioned_bounds.trait_bounds.is_empty() {
        let trait_bound = partitioned_bounds.trait_bounds.remove(0);
1627 1628 1629 1630 1631
        instantiate_poly_trait_ref(this,
                                   rscope,
                                   trait_bound,
                                   None,
                                   &mut projection_bounds)
A
Aaron Turon 已提交
1632
    } else {
B
Brian Anderson 已提交
1633
        span_err!(this.tcx().sess, span, E0224,
1634 1635
                  "at least one non-builtin trait is required for an object type");
        return this.tcx().types.err;
1636 1637
    };

1638 1639 1640 1641
    let bounds =
        conv_existential_bounds_from_partitioned_bounds(this,
                                                        rscope,
                                                        span,
1642
                                                        main_trait_bound.clone(),
1643
                                                        projection_bounds,
1644
                                                        partitioned_bounds);
1645

1646
    ty::mk_trait(this.tcx(), main_trait_bound, bounds)
1647 1648
}

1649 1650 1651
pub fn conv_existential_bounds_from_partitioned_bounds<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
1652
    span: Span,
1653
    principal_trait_ref: ty::PolyTraitRef<'tcx>,
1654
    mut projection_bounds: Vec<ty::PolyProjectionPredicate<'tcx>>, // Empty for boxed closures
1655
    partitioned_bounds: PartitionedBounds)
1656
    -> ty::ExistentialBounds<'tcx>
1657
{
1658 1659
    let PartitionedBounds { builtin_bounds,
                            trait_bounds,
1660
                            region_bounds } =
1661
        partitioned_bounds;
1662 1663

    if !trait_bounds.is_empty() {
1664
        let b = &trait_bounds[0];
B
Brian Anderson 已提交
1665
        span_err!(this.tcx().sess, b.trait_ref.path.span, E0225,
1666
                  "only the builtin traits can be used as closure or object bounds");
1667 1668
    }

1669 1670 1671 1672 1673 1674
    let region_bound = compute_object_lifetime_bound(this,
                                                     rscope,
                                                     span,
                                                     &region_bounds,
                                                     principal_trait_ref,
                                                     builtin_bounds);
1675

1676
    ty::sort_bounds_list(&mut projection_bounds);
1677

1678 1679 1680
    ty::ExistentialBounds {
        region_bound: region_bound,
        builtin_bounds: builtin_bounds,
1681
        projection_bounds: projection_bounds,
1682 1683 1684
    }
}

1685
/// Given the bounds on an object, determines what single region bound
S
Steve Klabnik 已提交
1686 1687 1688
/// (if any) we can use to summarize this type. The basic idea is that we will use the bound the
/// user provided, if they provided one, and otherwise search the supertypes of trait bounds for
/// region bounds. It may be that we can derive no bound at all, in which case we return `None`.
1689 1690 1691 1692 1693 1694 1695 1696
fn compute_object_lifetime_bound<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
    span: Span,
    explicit_region_bounds: &[&ast::Lifetime],
    principal_trait_ref: ty::PolyTraitRef<'tcx>,
    builtin_bounds: ty::BuiltinBounds)
    -> ty::Region
1697
{
1698 1699
    let tcx = this.tcx();

1700
    debug!("compute_opt_region_bound(explicit_region_bounds={:?}, \
1701 1702 1703 1704 1705 1706
           principal_trait_ref={}, builtin_bounds={})",
           explicit_region_bounds,
           principal_trait_ref.repr(tcx),
           builtin_bounds.repr(tcx));

    if explicit_region_bounds.len() > 1 {
B
Brian Anderson 已提交
1707 1708
        span_err!(tcx.sess, explicit_region_bounds[1].span, E0226,
            "only a single explicit lifetime bound is permitted");
1709 1710
    }

1711
    if explicit_region_bounds.len() != 0 {
1712
        // Explicitly specified region bound. Use that.
1713
        let r = explicit_region_bounds[0];
1714
        return ast_region_to_region(tcx, r);
1715 1716 1717 1718 1719
    }

    // No explicit region bound specified. Therefore, examine trait
    // bounds and see if we can derive region bounds from those.
    let derived_region_bounds =
1720
        object_region_bounds(tcx, &principal_trait_ref, builtin_bounds);
1721 1722 1723 1724

    // If there are no derived region bounds, then report back that we
    // can find no region bound.
    if derived_region_bounds.len() == 0 {
1725 1726 1727 1728 1729 1730 1731 1732 1733
        match rscope.object_lifetime_default(span) {
            Some(r) => { return r; }
            None => {
                span_err!(this.tcx().sess, span, E0228,
                          "the lifetime bound for this object type cannot be deduced \
                           from context; please supply an explicit bound");
                return ty::ReStatic;
            }
        }
1734 1735 1736 1737 1738
    }

    // If any of the derived region bounds are 'static, that is always
    // the best choice.
    if derived_region_bounds.iter().any(|r| ty::ReStatic == *r) {
1739
        return ty::ReStatic;
1740 1741 1742 1743 1744
    }

    // Determine whether there is exactly one unique region in the set
    // of derived region bounds. If so, use that. Otherwise, report an
    // error.
1745
    let r = derived_region_bounds[0];
A
Aaron Turon 已提交
1746
    if derived_region_bounds[1..].iter().any(|r1| r != *r1) {
B
Brian Anderson 已提交
1747
        span_err!(tcx.sess, span, E0227,
1748
                  "ambiguous lifetime bound, explicit lifetime bound required");
1749
    }
1750
    return r;
1751 1752
}

N
Niko Matsakis 已提交
1753 1754 1755 1756 1757 1758
/// Given an object type like `SomeTrait+Send`, computes the lifetime
/// bounds that must hold on the elided self type. These are derived
/// from the declarations of `SomeTrait`, `Send`, and friends -- if
/// they declare `trait SomeTrait : 'static`, for example, then
/// `'static` would appear in the list. The hard work is done by
/// `ty::required_region_bounds`, see that for more information.
1759 1760 1761 1762 1763
pub fn object_region_bounds<'tcx>(
    tcx: &ty::ctxt<'tcx>,
    principal: &ty::PolyTraitRef<'tcx>,
    others: ty::BuiltinBounds)
    -> Vec<ty::Region>
1764
{
1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783
    // Since we don't actually *know* the self type for an object,
    // this "open(err)" serves as a kind of dummy standin -- basically
    // a skolemized type.
    let open_ty = ty::mk_infer(tcx, ty::FreshTy(0));

    // Note that we preserve the overall binding levels here.
    assert!(!open_ty.has_escaping_regions());
    let substs = tcx.mk_substs(principal.0.substs.with_self_ty(open_ty));
    let trait_refs = vec!(ty::Binder(Rc::new(ty::TraitRef::new(principal.0.def_id, substs))));

    let param_bounds = ty::ParamBounds {
        region_bounds: Vec::new(),
        builtin_bounds: others,
        trait_bounds: trait_refs,
        projection_bounds: Vec::new(), // not relevant to computing region bounds
    };

    let predicates = ty::predicates(tcx, open_ty, &param_bounds);
    ty::required_region_bounds(tcx, open_ty, predicates)
1784 1785 1786 1787
}

pub struct PartitionedBounds<'a> {
    pub builtin_bounds: ty::BuiltinBounds,
1788
    pub trait_bounds: Vec<&'a ast::PolyTraitRef>,
1789 1790 1791
    pub region_bounds: Vec<&'a ast::Lifetime>,
}

S
Steve Klabnik 已提交
1792 1793
/// Divides a list of bounds from the AST into three groups: builtin bounds (Copy, Sized etc),
/// general trait bounds, and region bounds.
1794 1795
pub fn partition_bounds<'a>(tcx: &ty::ctxt,
                            _span: Span,
1796
                            ast_bounds: &'a [ast::TyParamBound])
1797 1798 1799 1800 1801
                            -> PartitionedBounds<'a>
{
    let mut builtin_bounds = ty::empty_builtin_bounds();
    let mut region_bounds = Vec::new();
    let mut trait_bounds = Vec::new();
1802
    let mut trait_def_ids = DefIdMap();
1803
    for ast_bound in ast_bounds {
1804
        match *ast_bound {
N
Nick Cameron 已提交
1805
            ast::TraitTyParamBound(ref b, ast::TraitBoundModifier::None) => {
N
Niko Matsakis 已提交
1806
                match ::lookup_def_tcx(tcx, b.trait_ref.path.span, b.trait_ref.ref_id) {
1807
                    def::DefTrait(trait_did) => {
1808
                        match trait_def_ids.get(&trait_did) {
1809 1810 1811 1812 1813
                            // Already seen this trait. We forbid
                            // duplicates in the list (for some
                            // reason).
                            Some(span) => {
                                span_err!(
1814
                                    tcx.sess, b.trait_ref.path.span, E0127,
1815 1816
                                    "trait `{}` already appears in the \
                                     list of bounds",
1817
                                    b.trait_ref.path.user_string(tcx));
1818 1819 1820 1821 1822
                                tcx.sess.span_note(
                                    *span,
                                    "previous appearance is here");

                                continue;
1823
                            }
1824 1825

                            None => { }
1826
                        }
1827

1828
                        trait_def_ids.insert(trait_did, b.trait_ref.path.span);
1829 1830 1831 1832

                        if ty::try_add_builtin_trait(tcx,
                                                     trait_did,
                                                     &mut builtin_bounds) {
1833 1834
                            let segments = &b.trait_ref.path.segments;
                            let parameters = &segments[segments.len() - 1].parameters;
1835 1836 1837 1838 1839 1840 1841
                            if parameters.types().len() > 0 {
                                check_type_argument_count(tcx, b.trait_ref.path.span,
                                                          parameters.types().len(), 0, 0);
                            }
                            if parameters.lifetimes().len() > 0{
                                report_lifetime_number_error(tcx, b.trait_ref.path.span,
                                                             parameters.lifetimes().len(), 0);
1842
                            }
1843
                            continue; // success
1844 1845
                        }
                    }
1846 1847 1848 1849
                    _ => {
                        // Not a trait? that's an error, but it'll get
                        // reported later.
                    }
1850
                }
1851 1852
                trait_bounds.push(b);
            }
N
Nick Cameron 已提交
1853
            ast::TraitTyParamBound(_, ast::TraitBoundModifier::Maybe) => {}
1854 1855 1856
            ast::RegionTyParamBound(ref l) => {
                region_bounds.push(l);
            }
1857
        }
1858 1859 1860 1861 1862 1863
    }

    PartitionedBounds {
        builtin_bounds: builtin_bounds,
        trait_bounds: trait_bounds,
        region_bounds: region_bounds,
1864 1865
    }
}
1866 1867 1868 1869 1870

fn prohibit_projections<'tcx>(tcx: &ty::ctxt<'tcx>,
                              bindings: &[ConvertedBinding<'tcx>])
{
    for binding in bindings.iter().take(1) {
B
Brian Anderson 已提交
1871
        span_err!(tcx.sess, binding.span, E0229,
1872 1873 1874
            "associated type bindings are not allowed here");
    }
}
1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905

fn check_type_argument_count(tcx: &ty::ctxt, span: Span, supplied: usize,
                             required: usize, accepted: usize) {
    if supplied < required {
        let expected = if required < accepted {
            "expected at least"
        } else {
            "expected"
        };
        span_err!(tcx.sess, span, E0243,
                  "wrong number of type arguments: {} {}, found {}",
                  expected, required, supplied);
    } else if supplied > accepted {
        let expected = if required < accepted {
            "expected at most"
        } else {
            "expected"
        };
        span_err!(tcx.sess, span, E0244,
                  "wrong number of type arguments: {} {}, found {}",
                  expected,
                  accepted,
                  supplied);
    }
}

fn report_lifetime_number_error(tcx: &ty::ctxt, span: Span, number: usize, expected: usize) {
    span_err!(tcx.sess, span, E0107,
              "wrong number of lifetime parameters: expected {}, found {}",
              expected, number);
}