astconv.rs 71.6 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
//! `AstConv` instance; in this phase, the `get_item_type_scheme()` function
S
Steve Klabnik 已提交
20 21 22
//! triggers a recursive call to `ty_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`,
23
//! `get_item_type_scheme()` just looks up the item type in `tcx.tcache`.
S
Steve Klabnik 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
//!
//! 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.
49 50

use middle::astconv_util::{ast_ty_to_prim_ty, check_path_args, NO_TPS, NO_REGIONS};
51
use middle::const_eval;
52
use middle::def;
53
use middle::resolve_lifetime as rl;
54
use middle::subst::{FnSpace, TypeSpace, SelfSpace, Subst, Substs};
55
use middle::subst::{VecPerParamSpace};
56 57
use middle::traits;
use middle::ty::{self, RegionEscape, ToPolyTraitRef, Ty};
58
use rscope::{self, UnelidableRscope, RegionScope, SpecificRscope,
N
Niko Matsakis 已提交
59 60
             ShiftedRscope, BindingRscope};
use TypeAndSubsts;
61
use util::common::ErrorReported;
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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
    /// 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) {
            self.tcx().sess.span_err(
                span,
                "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>
    {
        self.tcx().sess.span_err(
            span,
            "associated types are not accepted in this context");

        self.tcx().types.err
    }
129 130
}

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

139
        Some(&rl::DefStaticRegion) => {
140
            ty::ReStatic
141 142
        }

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

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

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

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

    r
166 167
}

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

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

                                m.push_str(if n == 1 {
                                    help_name
198
                                } else {
199
                                    format!("one of {}'s {} elided lifetimes", help_name, n)
200
                                }.index(&FullRange));
201 202 203 204 205 206 207 208 209 210

                                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 已提交
211
                                span_help!(this.tcx().sess, default_span,
212 213 214 215
                                    "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 已提交
216
                                span_help!(this.tcx().sess, default_span,
217 218
                                    "this function's return type contains a borrowed value, but \
                                     there is no value for it to be borrowed from");
P
P1start 已提交
219
                                span_help!(this.tcx().sess, default_span,
220 221
                                    "consider giving it a 'static lifetime");
                            } else {
P
P1start 已提交
222
                                span_help!(this.tcx().sess, default_span,
223 224 225 226 227 228 229
                                    "this function's return type contains a borrowed value, but \
                                     the signature does not say whether it is borrowed from {}",
                                    m);
                            }
                        }
                        None => {},
                    }
230
                    ty::ReStatic
231 232
                }

233
                Ok(rs) => rs[0],
234
            }
235
        }
236 237
    };

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

    r
243 244
}

S
Steve Klabnik 已提交
245 246
/// 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`.
247 248 249
fn ast_path_substs_for_ty<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
250
    decl_generics: &ty::Generics<'tcx>,
251
    path: &ast::Path)
252
    -> Substs<'tcx>
253
{
254
    let tcx = this.tcx();
255

256 257 258 259 260 261 262 263
    // 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.
264 265
    assert!(decl_generics.regions.all(|d| d.space == TypeSpace));
    assert!(decl_generics.types.all(|d| d.space != FnSpace));
266

267
    let (regions, types, assoc_bindings) = match path.segments.last().unwrap().parameters {
268 269 270 271
        ast::AngleBracketedParameters(ref data) => {
            convert_angle_bracketed_parameters(this, rscope, data)
        }
        ast::ParenthesizedParameters(ref data) => {
272 273 274
            tcx.sess.span_err(
                path.span,
                "parenthesized parameters may only be used with a trait");
275
            (Vec::new(), convert_parenthesized_parameters(this, data), Vec::new())
276
        }
277 278
    };

279 280
    prohibit_projections(this.tcx(), assoc_bindings.as_slice());

281 282 283 284 285 286
    create_substs_for_ast_path(this,
                               rscope,
                               path.span,
                               decl_generics,
                               None,
                               types,
287
                               regions)
288 289
}

290 291 292
fn create_substs_for_ast_path<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
293
    span: Span,
294 295 296
    decl_generics: &ty::Generics<'tcx>,
    self_ty: Option<Ty<'tcx>>,
    types: Vec<Ty<'tcx>>,
297
    regions: Vec<ty::Region>)
298
    -> Substs<'tcx>
299 300 301
{
    let tcx = this.tcx();

302
    // If the type is parameterized by the this region, then replace this
303 304
    // region with the current anon region binding (in other words,
    // whatever & would get replaced with).
305
    let expected_num_region_params = decl_generics.regions.len(TypeSpace);
306
    let supplied_num_region_params = regions.len();
307
    let regions = if expected_num_region_params == supplied_num_region_params {
308
        regions
309 310
    } else {
        let anon_regions =
311
            rscope.anon_regions(span, expected_num_region_params);
312

313
        if supplied_num_region_params != 0 || anon_regions.is_err() {
314
            span_err!(tcx.sess, span, E0107,
315 316
                      "wrong number of lifetime parameters: expected {}, found {}",
                      expected_num_region_params, supplied_num_region_params);
317
        }
318 319

        match anon_regions {
A
Aaron Turon 已提交
320
            Ok(v) => v.into_iter().collect(),
A
Aaron Turon 已提交
321 322
            Err(_) => range(0, expected_num_region_params)
                          .map(|_| ty::ReStatic).collect() // hokey
323
        }
324 325 326
    };

    // Convert the type parameters supplied by the user.
327
    let ty_param_defs = decl_generics.types.get_slice(TypeSpace);
328
    let supplied_ty_param_count = types.len();
329 330
    let formal_ty_param_count =
        ty_param_defs.iter()
331 332
        .take_while(|x| !ty::is_associated_type(tcx, x.def_id))
        .count();
333 334
    let required_ty_param_count =
        ty_param_defs.iter()
335 336 337 338 339
        .take_while(|x| {
            x.default.is_none() &&
                !ty::is_associated_type(tcx, x.def_id)
        })
        .count();
340 341 342 343 344 345
    if supplied_ty_param_count < required_ty_param_count {
        let expected = if required_ty_param_count < formal_ty_param_count {
            "expected at least"
        } else {
            "expected"
        };
346
        this.tcx().sess.span_fatal(span,
347 348 349
                                   format!("wrong number of type arguments: {} {}, found {}",
                                           expected,
                                           required_ty_param_count,
350
                                           supplied_ty_param_count).index(&FullRange));
351 352 353 354 355 356
    } else if supplied_ty_param_count > formal_ty_param_count {
        let expected = if required_ty_param_count < formal_ty_param_count {
            "expected at most"
        } else {
            "expected"
        };
357
        this.tcx().sess.span_fatal(span,
358 359 360
                                   format!("wrong number of type arguments: {} {}, found {}",
                                           expected,
                                           formal_ty_param_count,
361
                                           supplied_ty_param_count).index(&FullRange));
362 363
    }

364
    let mut substs = Substs::new_type(types, regions);
365

366 367 368 369 370 371 372 373 374 375
    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());
376
            substs.types.push(SelfSpace, ty);
377
        }
378
    }
379

380
    for param in ty_param_defs.index(&(supplied_ty_param_count..)).iter() {
381 382 383 384 385
        match param.default {
            Some(default) => {
                // This is a default type parameter.
                let default = default.subst_spanned(tcx,
                                                    &substs,
386
                                                    Some(span));
387 388 389
                substs.types.push(TypeSpace, default);
            }
            None => {
390
                tcx.sess.span_bug(span, "extra parameter without default");
391 392
            }
        }
393
    }
394

395
    return substs;
396
}
397

398 399 400 401 402 403
struct ConvertedBinding<'tcx> {
    item_name: ast::Name,
    ty: Ty<'tcx>,
    span: Span,
}

404 405 406 407 408 409
fn convert_angle_bracketed_parameters<'tcx>(this: &AstConv<'tcx>,
                                            rscope: &RegionScope,
                                            data: &ast::AngleBracketedParameterData)
                                            -> (Vec<ty::Region>,
                                                Vec<Ty<'tcx>>,
                                                Vec<ConvertedBinding<'tcx>>)
410 411 412 413 414
{
    let regions: Vec<_> =
        data.lifetimes.iter()
        .map(|l| ast_region_to_region(this.tcx(), l))
        .collect();
415

416 417 418 419 420
    let types: Vec<_> =
        data.types.iter()
        .map(|t| ast_ty_to_ty(this, rscope, &**t))
        .collect();

421 422
    let assoc_bindings: Vec<_> =
        data.bindings.iter()
423 424 425
        .map(|b| ConvertedBinding { item_name: b.ident.name,
                                    ty: ast_ty_to_ty(this, rscope, &*b.ty),
                                    span: b.span })
426 427 428
        .collect();

    (regions, types, assoc_bindings)
429 430
}

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
/// 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)
}

463 464 465 466 467
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>
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
{
    match implied_output_region {
        Some(implied_output_region) => {
            let rb = SpecificRscope::new(implied_output_region);
            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)
        }
    }
}

484 485 486
fn convert_parenthesized_parameters<'tcx>(this: &AstConv<'tcx>,
                                          data: &ast::ParenthesizedParameterData)
                                          -> Vec<Ty<'tcx>>
487 488 489 490
{
    let binding_rscope = BindingRscope::new();
    let inputs = data.inputs.iter()
                            .map(|a_t| ast_ty_to_ty(this, &binding_rscope, &**a_t))
491 492
                            .collect::<Vec<Ty<'tcx>>>();

A
Aaron Turon 已提交
493
    let input_params: Vec<_> = repeat(String::new()).take(inputs.len()).collect();
494 495 496
    let (implied_output_region,
         params_lifetimes) = find_implied_output_region(&*inputs, input_params);

497 498 499
    let input_ty = ty::mk_tup(this.tcx(), inputs);

    let output = match data.output {
500 501 502 503
        Some(ref output_ty) => convert_ty_with_lifetime_elision(this,
                                                                implied_output_region,
                                                                params_lifetimes,
                                                                &**output_ty),
504 505 506 507 508
        None => ty::mk_nil(this.tcx()),
    };

    vec![input_ty, output]
}
509

510 511 512
pub fn instantiate_poly_trait_ref<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
513 514
    ast_trait_ref: &ast::PolyTraitRef,
    self_ty: Option<Ty<'tcx>>,
515 516
    poly_projections: &mut Vec<ty::PolyProjectionPredicate<'tcx>>)
    -> ty::PolyTraitRef<'tcx>
517
{
518 519
    let mut projections = Vec::new();

520
    let trait_ref =
521 522 523 524 525 526 527 528
        instantiate_trait_ref(this, rscope, &ast_trait_ref.trait_ref,
                              self_ty, Some(&mut projections));

    for projection in projections.into_iter() {
        poly_projections.push(ty::Binder(projection));
    }

    ty::Binder(trait_ref)
529
}
530

531 532 533
/// 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.
534 535 536
///
/// If the `projections` argument is `None`, then assoc type bindings like `Foo<T=X>`
/// are disallowed. Otherwise, they are pushed onto the vector given.
537 538 539
pub fn instantiate_trait_ref<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
540 541 542 543
    ast_trait_ref: &ast::TraitRef,
    self_ty: Option<Ty<'tcx>>,
    projections: Option<&mut Vec<ty::ProjectionPredicate<'tcx>>>)
    -> Rc<ty::TraitRef<'tcx>>
N
Niko Matsakis 已提交
544
{
545
    match ::lookup_def_tcx(this.tcx(), ast_trait_ref.path.span, ast_trait_ref.ref_id) {
546
        def::DefTrait(trait_def_id) => {
547 548 549 550 551 552 553
            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 已提交
554 555 556 557 558
            trait_ref
        }
        _ => {
            this.tcx().sess.span_fatal(
                ast_trait_ref.path.span,
N
fallout  
Nick Cameron 已提交
559 560
                format!("`{}` is not a trait",
                        ast_trait_ref.path.user_string(this.tcx())).index(&FullRange));
N
Niko Matsakis 已提交
561 562 563 564
        }
    }
}

565 566 567
fn ast_path_to_trait_ref<'a,'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
568
    trait_def_id: ast::DefId,
569
    self_ty: Option<Ty<'tcx>>,
570
    path: &ast::Path,
571 572
    mut projections: Option<&mut Vec<ty::ProjectionPredicate<'tcx>>>)
    -> Rc<ty::TraitRef<'tcx>>
573
{
574
    debug!("ast_path_to_trait_ref {:?}", path);
E
Eduard Burtescu 已提交
575
    let trait_def = this.get_trait_def(trait_def_id);
576 577 578 579 580 581 582 583

    // the trait reference introduces a binding level here, so
    // 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);

584
    let (regions, types, assoc_bindings) = match path.segments.last().unwrap().parameters {
585 586 587 588
        ast::AngleBracketedParameters(ref data) => {
            convert_angle_bracketed_parameters(this, &shifted_rscope, data)
        }
        ast::ParenthesizedParameters(ref data) => {
589 590 591 592 593 594 595 596 597 598 599 600 601
            // For now, require that parenthetical notation be used
            // only with `Fn()` etc.
            if !this.tcx().sess.features.borrow().unboxed_closures &&
                this.tcx().lang_items.fn_trait_kind(trait_def_id).is_none()
            {
                this.tcx().sess.span_err(path.span,
                                         "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");
            }

602
            (Vec::new(), convert_parenthesized_parameters(this, data), Vec::new())
603 604 605 606 607 608 609 610 611
        }
    };

    let substs = create_substs_for_ast_path(this,
                                            &shifted_rscope,
                                            path.span,
                                            &trait_def.generics,
                                            self_ty,
                                            types,
612 613 614 615 616 617 618 619 620 621 622
                                            regions);
    let substs = this.tcx().mk_substs(substs);

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

    match projections {
        None => {
            prohibit_projections(this.tcx(), assoc_bindings.as_slice());
        }
        Some(ref mut v) => {
            for binding in assoc_bindings.iter() {
623 624
                match ast_type_binding_to_projection_predicate(this, trait_ref.clone(),
                                                               self_ty, binding) {
625 626 627 628 629 630 631 632 633
                    Ok(pp) => { v.push(pp); }
                    Err(ErrorReported) => { }
                }
            }
        }
    }

    trait_ref
}
634

635
fn ast_type_binding_to_projection_predicate<'tcx>(
636
    this: &AstConv<'tcx>,
637 638
    mut trait_ref: Rc<ty::TraitRef<'tcx>>,
    self_ty: Option<Ty<'tcx>>,
639 640 641
    binding: &ConvertedBinding<'tcx>)
    -> Result<ty::ProjectionPredicate<'tcx>, ErrorReported>
{
642 643
    let tcx = this.tcx();

644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
    // 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`.

660 661 662 663 664 665 666 667 668 669 670
    // 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,
        });
    }

671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
    // 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())
690 691
        .filter(|r| trait_defines_associated_type_named(this, r.def_id(), binding.item_name))
        .collect();
692

693 694 695 696 697 698 699 700 701 702 703 704
    // If converting for an object type, then remove the dummy-ty from `Self` now.
    // Yuckety yuck.
    if self_ty.is_none() {
        for candidate in candidates.iter_mut() {
            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))));
        }
    }

705
    if candidates.len() > 1 {
706
        tcx.sess.span_err(
707
            binding.span,
708
            format!("ambiguous associated type: `{}` defined in multiple supertraits `{}`",
709
                    token::get_name(binding.item_name),
710
                    candidates.user_string(tcx)).as_slice());
711 712 713 714 715 716
        return Err(ErrorReported);
    }

    let candidate = match candidates.pop() {
        Some(c) => c,
        None => {
717
            tcx.sess.span_err(
718 719 720
                binding.span,
                format!("no associated type `{}` defined in `{}`",
                        token::get_name(binding.item_name),
721
                        trait_ref.user_string(tcx)).as_slice());
722 723 724 725
            return Err(ErrorReported);
        }
    };

726 727
    if ty::binds_late_bound_regions(tcx, &candidate) {
        tcx.sess.span_err(
728 729 730
            binding.span,
            format!("associated type `{}` defined in higher-ranked supertrait `{}`",
                    token::get_name(binding.item_name),
731
                    candidate.user_string(tcx)).as_slice());
732 733 734 735 736
        return Err(ErrorReported);
    }

    Ok(ty::ProjectionPredicate {
        projection_ty: ty::ProjectionTy {
737
            trait_ref: candidate.0,
738 739 740 741
            item_name: binding.item_name,
        },
        ty: binding.ty,
    })
742 743
}

744 745 746
pub fn ast_path_to_ty<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
747
    did: ast::DefId,
748
    path: &ast::Path)
749
    -> TypeAndSubsts<'tcx>
750
{
751
    let tcx = this.tcx();
752
    let ty::TypeScheme {
753
        generics,
754
        ty: decl_ty
755
    } = this.get_item_type_scheme(did);
756

757 758 759 760
    let substs = ast_path_substs_for_ty(this,
                                        rscope,
                                        &generics,
                                        path);
761
    let ty = decl_ty.subst(tcx, &substs);
762
    TypeAndSubsts { substs: substs, ty: ty }
763 764
}

765 766 767 768 769
/// Returns the type that this AST path refers to. If the path has no type
/// parameters and the corresponding type has type parameters, fresh type
/// and/or region variables are substituted.
///
/// This is used when checking the constructor in struct literals.
770 771 772
pub fn ast_path_to_ty_relaxed<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
773
    did: ast::DefId,
774
    path: &ast::Path)
775
    -> TypeAndSubsts<'tcx>
776
{
777
    let tcx = this.tcx();
778
    let ty::TypeScheme {
779
        generics,
780
        ty: decl_ty
781
    } = this.get_item_type_scheme(did);
782

783 784 785 786 787 788 789 790
    let wants_params =
        generics.has_type_params(TypeSpace) || generics.has_region_params(TypeSpace);

    let needs_defaults =
        wants_params &&
        path.segments.iter().all(|s| s.parameters.is_empty());

    let substs = if needs_defaults {
A
Aaron Turon 已提交
791 792
        let type_params: Vec<_> = range(0, generics.types.len(TypeSpace))
                                      .map(|_| this.ty_infer(path.span)).collect();
793 794 795 796 797 798
        let region_params =
            rscope.anon_regions(path.span, generics.regions.len(TypeSpace))
                  .unwrap();
        Substs::new(VecPerParamSpace::params_from_type(type_params),
                    VecPerParamSpace::params_from_type(region_params))
    } else {
N
Niko Matsakis 已提交
799
        ast_path_substs_for_ty(this, rscope, &generics, path)
800 801 802 803 804 805 806 807 808
    };

    let ty = decl_ty.subst(tcx, &substs);
    TypeAndSubsts {
        substs: substs,
        ty: ty,
    }
}

809 810
/// 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`.
811 812 813
pub fn ast_ty_to_builtin_ty<'tcx>(
        this: &AstConv<'tcx>,
        rscope: &RegionScope,
814
        ast_ty: &ast::Ty)
815
        -> Option<Ty<'tcx>> {
816 817 818
    match ast_ty_to_prim_ty(this.tcx(), ast_ty) {
        Some(typ) => return Some(typ),
        None => {}
819 820
    }

821
    match ast_ty.node {
822
        ast::TyPath(ref path, id) => {
823
            let a_def = match this.tcx().def_map.borrow().get(&id) {
824 825 826 827 828
                None => {
                    this.tcx()
                        .sess
                        .span_bug(ast_ty.span,
                                  format!("unbound path {}",
829
                                          path.repr(this.tcx())).index(&FullRange))
830
                }
831 832
                Some(&d) => d
            };
833

834 835 836
            // FIXME(#12938): This is a hack until we have full support for
            // DST.
            match a_def {
837 838
                def::DefTy(did, _) |
                def::DefStruct(did) if Some(did) == this.tcx().lang_items.owned_box() => {
839
                    let ty = ast_path_to_ty(this, rscope, did, path).ty;
840
                    match ty.sty {
841 842 843 844 845 846 847 848 849 850
                        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,
                                format!("converting `Box` to `{}`",
851
                                        ty.repr(this.tcx())).index(&FullRange));
852
                        }
853 854
                    }
                }
855
                _ => None
856
            }
857
        }
858 859 860 861
        _ => None
    }
}

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

864 865 866 867 868
fn ast_ty_to_trait_ref<'tcx>(this: &AstConv<'tcx>,
                             rscope: &RegionScope,
                             ty: &ast::Ty,
                             bounds: &[ast::TyParamBound])
                             -> Result<TraitAndProjections<'tcx>, ErrorReported>
869
{
870 871 872 873 874 875 876 877 878 879
    /*!
     * 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.
     */
880

881 882 883 884
    match ty.node {
        ast::TyPath(ref path, id) => {
            match this.tcx().def_map.borrow().get(&id) {
                Some(&def::DefTrait(trait_def_id)) => {
885 886 887 888 889 890 891 892 893 894 895
                    let mut projection_bounds = Vec::new();
                    let trait_ref = ty::Binder(ast_path_to_trait_ref(this,
                                                                     rscope,
                                                                     trait_def_id,
                                                                     None,
                                                                     path,
                                                                     Some(&mut projection_bounds)));
                    let projection_bounds = projection_bounds.into_iter()
                                                             .map(ty::Binder)
                                                             .collect();
                    Ok((trait_ref, projection_bounds))
896 897
                }
                _ => {
898
                    span_err!(this.tcx().sess, ty.span, E0172, "expected a reference to a trait");
899 900 901
                    Err(ErrorReported)
                }
            }
902
        }
903
        _ => {
904
            span_err!(this.tcx().sess, ty.span, E0178,
905 906 907 908 909
                      "expected a path on the left-hand side of `+`, not `{}`",
                      pprust::ty_to_string(ty));
            match ty.node {
                ast::TyRptr(None, ref mut_ty) => {
                    span_note!(this.tcx().sess, ty.span,
C
Chris Morgan 已提交
910
                               "perhaps you meant `&{}({} +{})`? (per RFC 438)",
911 912 913
                               ppaux::mutability_to_string(mut_ty.mutbl),
                               pprust::ty_to_string(&*mut_ty.ty),
                               pprust::bounds_to_string(bounds));
914
                }
915
               ast::TyRptr(Some(ref lt), ref mut_ty) => {
916
                    span_note!(this.tcx().sess, ty.span,
C
Chris Morgan 已提交
917
                               "perhaps you meant `&{} {}({} +{})`? (per RFC 438)",
918 919 920 921 922 923 924 925
                               pprust::lifetime_to_string(lt),
                               ppaux::mutability_to_string(mut_ty.mutbl),
                               pprust::ty_to_string(&*mut_ty.ty),
                               pprust::bounds_to_string(bounds));
                }

                _ => {
                    span_note!(this.tcx().sess, ty.span,
C
Chris Morgan 已提交
926
                               "perhaps you forgot parentheses? (per RFC 438)");
927 928
                }
            }
929
            Err(ErrorReported)
930
        }
931
    }
932 933
}

934 935 936 937 938 939 940
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>
941 942 943 944
{
    let existential_bounds = conv_existential_bounds(this,
                                                     rscope,
                                                     span,
945
                                                     Some(trait_ref.clone()),
946
                                                     projection_bounds,
947 948 949 950 951 952 953
                                                     bounds);

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

    result
954 955
}

956 957 958 959 960 961 962 963
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();
964

965 966 967 968 969 970 971
    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;

972
        // FIXME(#20300) -- search where clauses, not bounds
973
        suitable_bounds =
974
            traits::transitive_bounds(tcx, ty_param_def.bounds.trait_bounds.as_slice())
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
            .filter(|b| trait_defines_associated_type_named(this, b.def_id(), assoc_name))
            .collect();
    }

    if suitable_bounds.len() == 0 {
        tcx.sess.span_err(ast_ty.span,
                          format!("associated type `{}` not found for type parameter `{}`",
                                  token::get_name(assoc_name),
                                  token::get_name(ty_param_name)).as_slice());
        return this.tcx().types.err;
    }

    if suitable_bounds.len() > 1 {
        tcx.sess.span_err(ast_ty.span,
                          format!("ambiguous associated type `{}` in bounds of `{}`",
                                  token::get_name(assoc_name),
                                  token::get_name(ty_param_name)).as_slice());

        for suitable_bound in suitable_bounds.iter() {
            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)
}

1015 1016 1017 1018 1019
fn qpath_to_ty<'tcx>(this: &AstConv<'tcx>,
                     rscope: &RegionScope,
                     ast_ty: &ast::Ty, // the TyQPath
                     qpath: &ast::QPath)
                     -> Ty<'tcx>
1020
{
1021 1022
    debug!("qpath_to_ty(ast_ty={})",
           ast_ty.repr(this.tcx()));
1023

1024 1025 1026
    let self_type = ast_ty_to_ty(this, rscope, &*qpath.self_type);

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

1028
    let trait_ref = instantiate_trait_ref(this,
1029
                                          rscope,
1030
                                          &*qpath.trait_ref,
1031
                                          Some(self_type),
1032
                                          None);
1033 1034 1035

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

1036 1037
    return this.projected_ty(ast_ty.span,
                             trait_ref,
1038
                             qpath.item_name.name);
1039 1040
}

1041 1042
// Parses the programmer's textual representation of a type into our
// internal notion of a type.
1043 1044
pub fn ast_ty_to_ty<'tcx>(
        this: &AstConv<'tcx>, rscope: &RegionScope, ast_ty: &ast::Ty) -> Ty<'tcx>
1045 1046 1047
{
    debug!("ast_ty_to_ty(ast_ty={})",
           ast_ty.repr(this.tcx()));
1048

1049
    let tcx = this.tcx();
1050

1051
    let mut ast_ty_to_ty_cache = tcx.ast_ty_to_ty_cache.borrow_mut();
1052
    match ast_ty_to_ty_cache.get(&ast_ty.id) {
1053 1054 1055 1056 1057 1058
        Some(&ty::atttce_resolved(ty)) => return ty,
        Some(&ty::atttce_unresolved) => {
            tcx.sess.span_fatal(ast_ty.span,
                                "illegal recursive type; insert an enum \
                                 or struct in the cycle, if this is \
                                 desired");
1059
        }
1060
        None => { /* go on */ }
1061
    }
1062 1063
    ast_ty_to_ty_cache.insert(ast_ty.id, ty::atttce_unresolved);
    drop(ast_ty_to_ty_cache);
1064

1065 1066
    let typ = ast_ty_to_builtin_ty(this, rscope, ast_ty).unwrap_or_else(|| {
        match ast_ty.node {
1067 1068
            ast::TyVec(ref ty) => {
                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty), None)
1069
            }
1070
            ast::TyObjectSum(ref ty, ref bounds) => {
1071
                match ast_ty_to_trait_ref(this, rscope, &**ty, bounds.index(&FullRange)) {
1072
                    Ok((trait_ref, projection_bounds)) => {
N
fallout  
Nick Cameron 已提交
1073 1074 1075 1076 1077 1078
                        trait_ref_to_object_type(this,
                                                 rscope,
                                                 ast_ty.span,
                                                 trait_ref,
                                                 projection_bounds,
                                                 bounds.index(&FullRange))
1079 1080
                    }
                    Err(ErrorReported) => {
1081
                        this.tcx().types.err
1082 1083 1084
                    }
                }
            }
1085
            ast::TyPtr(ref mt) => {
1086
                ty::mk_ptr(tcx, ty::mt {
1087
                    ty: ast_ty_to_ty(this, rscope, &*mt.ty),
1088 1089
                    mutbl: mt.mutbl
                })
1090
            }
1091 1092 1093
            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()));
1094
                let t = ast_ty_to_ty(this, rscope, &*mt.ty);
H
Huon Wilson 已提交
1095
                ty::mk_rptr(tcx, tcx.mk_region(r), ty::mt {ty: t, mutbl: mt.mutbl})
1096 1097
            }
            ast::TyTup(ref fields) => {
1098
                let flds = fields.iter()
1099
                                 .map(|t| ast_ty_to_ty(this, rscope, &**t))
1100
                                 .collect();
1101 1102
                ty::mk_tup(tcx, flds)
            }
1103
            ast::TyParen(ref typ) => ast_ty_to_ty(this, rscope, &**typ),
1104
            ast::TyBareFn(ref bf) => {
1105
                if bf.decl.variadic && bf.abi != abi::C {
1106 1107 1108
                    tcx.sess.span_err(ast_ty.span,
                                      "variadic function must have C calling convention");
                }
1109 1110
                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))
1111
            }
1112
            ast::TyPolyTraitRef(ref bounds) => {
1113
                conv_ty_poly_trait_ref(this, rscope, ast_ty.span, bounds.index(&FullRange))
N
Niko Matsakis 已提交
1114
            }
1115
            ast::TyPath(ref path, id) => {
1116
                let a_def = match tcx.def_map.borrow().get(&id) {
1117 1118 1119 1120
                    None => {
                        tcx.sess
                           .span_bug(ast_ty.span,
                                     format!("unbound path {}",
1121
                                             path.repr(tcx)).index(&FullRange))
1122
                    }
1123 1124 1125
                    Some(&d) => d
                };
                match a_def {
N
Nick Cameron 已提交
1126
                    def::DefTrait(trait_def_id) => {
1127 1128
                        // N.B. this case overlaps somewhat with
                        // TyObjectSum, see that fn for details
1129
                        let mut projection_bounds = Vec::new();
1130 1131 1132 1133 1134
                        let trait_ref = ast_path_to_trait_ref(this,
                                                              rscope,
                                                              trait_def_id,
                                                              None,
                                                              path,
1135
                                                              Some(&mut projection_bounds));
1136
                        let trait_ref = ty::Binder(trait_ref);
1137 1138 1139 1140 1141
                        let projection_bounds = projection_bounds.into_iter()
                                                                 .map(ty::Binder)
                                                                 .collect();
                        trait_ref_to_object_type(this, rscope, path.span,
                                                 trait_ref, projection_bounds, &[])
1142
                    }
1143
                    def::DefTy(did, _) | def::DefStruct(did) => {
1144
                        ast_path_to_ty(this, rscope, did, path).ty
1145
                    }
1146
                    def::DefTyParam(space, index, _, name) => {
1147
                        check_path_args(tcx, path, NO_TPS | NO_REGIONS);
1148
                        ty::mk_param(tcx, space, index, name)
1149
                    }
1150
                    def::DefSelfTy(_) => {
1151 1152 1153 1154
                        // 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);
1155
                        ty::mk_self_type(tcx)
1156
                    }
1157
                    def::DefMod(id) => {
1158 1159
                        tcx.sess.span_fatal(ast_ty.span,
                            format!("found module name used as a type: {}",
1160
                                    tcx.map.node_to_string(id.node)).index(&FullRange));
1161
                    }
1162
                    def::DefPrimTy(_) => {
S
Steve Klabnik 已提交
1163
                        panic!("DefPrimTy arm missed in previous ast_ty_to_prim_ty call");
1164
                    }
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
                    def::DefAssociatedTy(trait_type_id) => {
                        let path_str = tcx.map.path_to_string(
                            tcx.map.get_parent(trait_type_id.node));
                        tcx.sess.span_err(ast_ty.span,
                                          format!("ambiguous associated \
                                                   type; specify the type \
                                                   using the syntax `<Type \
                                                   as {}>::{}`",
                                                  path_str,
                                                  token::get_ident(
                                                      path.segments
                                                          .last()
                                                          .unwrap()
                                                          .identifier)
1179
                                                  .get()).index(&FullRange));
1180
                        this.tcx().types.err
1181
                    }
1182 1183
                    def::DefAssociatedPath(provenance, assoc_ident) => {
                        associated_path_def_to_ty(this, ast_ty, provenance, assoc_ident.name)
1184
                    }
1185 1186
                    _ => {
                        tcx.sess.span_fatal(ast_ty.span,
1187
                                            format!("found value name used \
1188
                                                     as a type: {:?}",
1189
                                                    a_def).index(&FullRange));
1190 1191 1192
                    }
                }
            }
1193
            ast::TyQPath(ref qpath) => {
1194
                qpath_to_ty(this, rscope, ast_ty, &**qpath)
1195
            }
1196 1197
            ast::TyFixedLengthVec(ref ty, ref e) => {
                match const_eval::eval_const_expr_partial(tcx, &**e) {
1198 1199 1200
                    Ok(ref r) => {
                        match *r {
                            const_eval::const_int(i) =>
1201
                                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty),
1202
                                           Some(i as uint)),
1203
                            const_eval::const_uint(i) =>
1204
                                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty),
1205
                                           Some(i as uint)),
1206 1207
                            _ => {
                                tcx.sess.span_fatal(
1208
                                    ast_ty.span, "expected constant expr for array length");
1209 1210 1211 1212 1213 1214
                            }
                        }
                    }
                    Err(ref r) => {
                        tcx.sess.span_fatal(
                            ast_ty.span,
1215
                            format!("expected constant expr for array \
1216
                                     length: {}",
1217
                                    *r).index(&FullRange));
1218 1219 1220
                    }
                }
            }
1221
            ast::TyTypeof(ref _e) => {
1222 1223 1224
                tcx.sess.span_bug(ast_ty.span, "typeof is reserved but unimplemented");
            }
            ast::TyInfer => {
1225
                // TyInfer also appears as the type of arguments or return
1226
                // values in a ExprClosure, or as
1227 1228
                // the type of local variables. Both of these cases are
                // handled specially and will not descend into this routine.
1229
                this.ty_infer(ast_ty.span)
1230
            }
1231 1232
        }
    });
1233

1234
    tcx.ast_ty_to_ty_cache.borrow_mut().insert(ast_ty.id, ty::atttce_resolved(typ));
B
Brian Anderson 已提交
1235
    return typ;
1236 1237
}

1238 1239 1240 1241 1242 1243
pub fn ty_of_arg<'tcx>(this: &AstConv<'tcx>,
                       rscope: &RegionScope,
                       a: &ast::Arg,
                       expected_ty: Option<Ty<'tcx>>)
                       -> Ty<'tcx>
{
E
Erick Tryzelaar 已提交
1244
    match a.ty.node {
1245 1246
        ast::TyInfer if expected_ty.is_some() => expected_ty.unwrap(),
        ast::TyInfer => this.ty_infer(a.ty.span),
1247
        _ => ast_ty_to_ty(this, rscope, &*a.ty),
1248
    }
1249 1250
}

1251 1252
struct SelfInfo<'a, 'tcx> {
    untransformed_self_ty: Ty<'tcx>,
1253
    explicit_self: &'a ast::ExplicitSelf,
1254 1255
}

1256 1257 1258 1259 1260 1261 1262
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) {
1263
    let self_info = Some(SelfInfo {
1264
        untransformed_self_ty: untransformed_self_ty,
1265 1266 1267 1268
        explicit_self: explicit_self,
    });
    let (bare_fn_ty, optional_explicit_self_category) =
        ty_of_method_or_bare_fn(this,
N
Niko Matsakis 已提交
1269
                                unsafety,
1270
                                abi,
1271 1272 1273
                                self_info,
                                decl);
    (bare_fn_ty, optional_explicit_self_category.unwrap())
1274 1275
}

1276
pub fn ty_of_bare_fn<'tcx>(this: &AstConv<'tcx>, unsafety: ast::Unsafety, abi: abi::Abi,
1277
                                              decl: &ast::FnDecl) -> ty::BareFnTy<'tcx> {
N
Niko Matsakis 已提交
1278
    let (bare_fn_ty, _) = ty_of_method_or_bare_fn(this, unsafety, abi, None, decl);
1279
    bare_fn_ty
1280 1281
}

1282 1283 1284 1285 1286 1287
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>)
1288
{
1289
    debug!("ty_of_method_or_bare_fn");
1290

1291 1292
    // New region names that appear inside of the arguments of the function
    // declaration are bound to that function type.
1293
    let rb = rscope::BindingRscope::new();
1294

1295 1296 1297 1298 1299
    // `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.
1300
    let mut explicit_self_category_result = None;
1301 1302 1303
    let (self_ty, mut implied_output_region) = match opt_self_info {
        None => (None, None),
        Some(self_info) => {
1304 1305 1306
            // This type comes from an impl or trait; no late-bound
            // regions should be present.
            assert!(!self_info.untransformed_self_ty.has_escaping_regions());
1307

1308 1309 1310 1311 1312
            // 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 {
1313 1314 1315
                ty::StaticExplicitSelfCategory => {
                    (None, None)
                }
1316
                ty::ByValueExplicitSelfCategory => {
1317
                    (Some(self_info.untransformed_self_ty), None)
1318 1319 1320
                }
                ty::ByReferenceExplicitSelfCategory(region, mutability) => {
                    (Some(ty::mk_rptr(this.tcx(),
H
Huon Wilson 已提交
1321
                                      this.tcx().mk_region(region),
1322
                                      ty::mt {
1323
                                        ty: self_info.untransformed_self_ty,
1324 1325 1326 1327 1328
                                        mutbl: mutability
                                      })),
                     Some(region))
                }
                ty::ByBoxExplicitSelfCategory => {
1329
                    (Some(ty::mk_uniq(this.tcx(), self_info.untransformed_self_ty)), None)
1330
                }
1331 1332
            }
        }
1333
    };
1334 1335

    // HACK(eddyb) replace the fake self type in the AST with the actual type.
1336
    let input_params = if self_ty.is_some() {
1337 1338
        decl.inputs.slice_from(1)
    } else {
1339
        decl.inputs.index(&FullRange)
1340
    };
1341 1342 1343 1344
    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();
1345
    let self_and_input_tys: Vec<Ty> =
A
Aaron Turon 已提交
1346
        self_ty.into_iter().chain(input_tys).collect();
1347

1348

1349 1350 1351
    // 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.
1352 1353
    let lifetimes_for_params = if implied_output_region.is_none() {
        let input_tys = if self_ty.is_some() {
1354
            // Skip the first argument if `self` is present.
1355 1356 1357 1358
            self_and_input_tys.slice_from(1)
        } else {
            self_and_input_tys.slice_from(0)
        };
1359

1360 1361 1362 1363 1364 1365
        let (ior, lfp) = find_implied_output_region(input_tys, input_pats);
        implied_output_region = ior;
        lfp
    } else {
        vec![]
    };
1366

1367 1368 1369 1370
    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) =>
1371 1372 1373 1374
            ty::FnConverging(convert_ty_with_lifetime_elision(this,
                                                              implied_output_region,
                                                              lifetimes_for_params,
                                                              &**output)),
1375
        ast::NoReturn(_) => ty::FnDiverging
1376 1377
    };

1378
    (ty::BareFnTy {
N
Niko Matsakis 已提交
1379
        unsafety: unsafety,
1380
        abi: abi,
1381
        sig: ty::Binder(ty::FnSig {
1382 1383 1384
            inputs: self_and_input_tys,
            output: output_ty,
            variadic: decl.variadic
1385
        }),
1386 1387 1388
    }, explicit_self_category_result)
}

1389 1390 1391 1392
fn determine_explicit_self_category<'a, 'tcx>(this: &AstConv<'tcx>,
                                              rscope: &RegionScope,
                                              self_info: &SelfInfo<'a, 'tcx>)
                                              -> ty::ExplicitSelfCategory
1393 1394
{
    return match self_info.explicit_self.node {
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
        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)
        }
1405 1406
        ast::SelfExplicit(ref ast_type, _) => {
            let explicit_type = ast_ty_to_ty(this, rscope, &**ast_type);
1407

1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
            // 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 {
1451
                match explicit_type.sty {
H
Huon Wilson 已提交
1452
                    ty::ty_rptr(r, mt) => ty::ByReferenceExplicitSelfCategory(*r, mt.mutbl),
1453 1454
                    ty::ty_uniq(_) => ty::ByBoxExplicitSelfCategory,
                    _ => ty::ByValueExplicitSelfCategory,
1455 1456
                }
            }
1457 1458
        }
    };
1459

1460
    fn count_modifiers(ty: Ty) -> uint {
1461
        match ty.sty {
1462 1463 1464
            ty::ty_rptr(_, mt) => count_modifiers(mt.ty) + 1,
            ty::ty_uniq(t) => count_modifiers(t) + 1,
            _ => 0,
1465 1466
        }
    }
1467 1468
}

1469 1470
pub fn ty_of_closure<'tcx>(
    this: &AstConv<'tcx>,
N
Niko Matsakis 已提交
1471
    unsafety: ast::Unsafety,
1472
    onceness: ast::Onceness,
1473
    bounds: ty::ExistentialBounds<'tcx>,
1474
    store: ty::TraitStore,
1475
    decl: &ast::FnDecl,
1476
    abi: abi::Abi,
1477 1478
    expected_sig: Option<ty::FnSig<'tcx>>)
    -> ty::ClosureTy<'tcx>
1479
{
1480 1481
    debug!("ty_of_closure(expected_sig={})",
           expected_sig.repr(this.tcx()));
1482 1483 1484

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

1487
    let input_tys: Vec<_> = decl.inputs.iter().enumerate().map(|(i, a)| {
1488
        let expected_arg_ty = expected_sig.as_ref().and_then(|e| {
1489 1490
            // no guarantee that the correct number of expected args
            // were supplied
1491
            if i < e.inputs.len() {
1492
                Some(e.inputs[i])
1493 1494 1495
            } else {
                None
            }
1496
        });
J
James Miller 已提交
1497
        ty_of_arg(this, &rb, a, expected_arg_ty)
1498
    }).collect();
1499

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

1502 1503 1504 1505 1506 1507 1508 1509
    let output_ty = match decl.output {
        ast::Return(ref output) if output.node == ast::TyInfer && expected_ret_ty.is_some() =>
            expected_ret_ty.unwrap(),
        ast::Return(ref output) if output.node == ast::TyInfer =>
            ty::FnConverging(this.ty_infer(output.span)),
        ast::Return(ref output) =>
            ty::FnConverging(ast_ty_to_ty(this, &rb, &**output)),
        ast::NoReturn(_) => ty::FnDiverging
1510 1511
    };

1512 1513 1514
    debug!("ty_of_closure: input_tys={}", input_tys.repr(this.tcx()));
    debug!("ty_of_closure: output_ty={}", output_ty.repr(this.tcx()));

1515
    ty::ClosureTy {
N
Niko Matsakis 已提交
1516
        unsafety: unsafety,
1517
        onceness: onceness,
1518
        store: store,
1519
        bounds: bounds,
1520
        abi: abi,
1521 1522 1523
        sig: ty::Binder(ty::FnSig {inputs: input_tys,
                                   output: output_ty,
                                   variadic: decl.variadic}),
1524 1525
    }
}
1526

S
Steve Klabnik 已提交
1527 1528 1529 1530
/// 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.
1531 1532 1533
pub fn conv_existential_bounds<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
1534
    span: Span,
1535
    principal_trait_ref: Option<ty::PolyTraitRef<'tcx>>, // None for boxed closures
1536
    projection_bounds: Vec<ty::PolyProjectionPredicate<'tcx>>,
1537
    ast_bounds: &[ast::TyParamBound])
1538
    -> ty::ExistentialBounds<'tcx>
1539
{
1540
    let partitioned_bounds =
1541
        partition_bounds(this.tcx(), span, ast_bounds);
1542 1543

    conv_existential_bounds_from_partitioned_bounds(
1544
        this, rscope, span, principal_trait_ref, projection_bounds, partitioned_bounds)
1545 1546
}

1547 1548 1549
fn conv_ty_poly_trait_ref<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
1550 1551
    span: Span,
    ast_bounds: &[ast::TyParamBound])
1552
    -> Ty<'tcx>
1553
{
1554
    let mut partitioned_bounds = partition_bounds(this.tcx(), span, ast_bounds.index(&FullRange));
1555

1556
    let mut projection_bounds = Vec::new();
A
Aaron Turon 已提交
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
    let main_trait_bound = if !partitioned_bounds.trait_bounds.is_empty() {
        let trait_bound = partitioned_bounds.trait_bounds.remove(0);
        Some(instantiate_poly_trait_ref(this,
                                        rscope,
                                        trait_bound,
                                        None,
                                        &mut projection_bounds))
    } else {
        this.tcx().sess.span_err(
            span,
            "at least one non-builtin trait is required for an object type");
        None
1569 1570
    };

1571 1572 1573 1574
    let bounds =
        conv_existential_bounds_from_partitioned_bounds(this,
                                                        rscope,
                                                        span,
1575
                                                        main_trait_bound.clone(),
1576
                                                        projection_bounds,
1577
                                                        partitioned_bounds);
1578 1579

    match main_trait_bound {
1580 1581
        None => this.tcx().types.err,
        Some(principal) => ty::mk_trait(this.tcx(), principal, bounds)
1582 1583 1584
    }
}

1585 1586 1587
pub fn conv_existential_bounds_from_partitioned_bounds<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
1588
    span: Span,
1589
    principal_trait_ref: Option<ty::PolyTraitRef<'tcx>>, // None for boxed closures
1590
    mut projection_bounds: Vec<ty::PolyProjectionPredicate<'tcx>>, // Empty for boxed closures
1591
    partitioned_bounds: PartitionedBounds)
1592
    -> ty::ExistentialBounds<'tcx>
1593
{
1594 1595
    let PartitionedBounds { builtin_bounds,
                            trait_bounds,
1596
                            region_bounds } =
1597
        partitioned_bounds;
1598 1599

    if !trait_bounds.is_empty() {
1600
        let b = &trait_bounds[0];
1601
        this.tcx().sess.span_err(
1602
            b.trait_ref.path.span,
1603
            format!("only the builtin traits can be used \
1604
                     as closure or object bounds").index(&FullRange));
1605 1606 1607 1608 1609 1610
    }

    let region_bound = compute_region_bound(this,
                                            rscope,
                                            span,
                                            region_bounds.as_slice(),
1611 1612
                                            principal_trait_ref,
                                            builtin_bounds);
1613

1614 1615
    ty::sort_bounds_list(projection_bounds.as_mut_slice());

1616 1617 1618
    ty::ExistentialBounds {
        region_bound: region_bound,
        builtin_bounds: builtin_bounds,
1619
        projection_bounds: projection_bounds,
1620 1621 1622
    }
}

S
Steve Klabnik 已提交
1623 1624 1625 1626
/// Given the bounds on a type parameter / existential type, determines what single region bound
/// (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`.
1627 1628 1629
fn compute_opt_region_bound<'tcx>(tcx: &ty::ctxt<'tcx>,
                                  span: Span,
                                  explicit_region_bounds: &[&ast::Lifetime],
1630
                                  principal_trait_ref: Option<ty::PolyTraitRef<'tcx>>,
1631 1632
                                  builtin_bounds: ty::BuiltinBounds)
                                  -> Option<ty::Region>
1633
{
1634
    debug!("compute_opt_region_bound(explicit_region_bounds={:?}, \
1635 1636 1637 1638 1639 1640
           principal_trait_ref={}, builtin_bounds={})",
           explicit_region_bounds,
           principal_trait_ref.repr(tcx),
           builtin_bounds.repr(tcx));

    if explicit_region_bounds.len() > 1 {
1641
        tcx.sess.span_err(
1642
            explicit_region_bounds[1].span,
1643 1644 1645
            format!("only a single explicit lifetime bound is permitted").as_slice());
    }

1646
    if explicit_region_bounds.len() != 0 {
1647
        // Explicitly specified region bound. Use that.
1648
        let r = explicit_region_bounds[0];
1649 1650 1651 1652 1653 1654
        return Some(ast_region_to_region(tcx, r));
    }

    // No explicit region bound specified. Therefore, examine trait
    // bounds and see if we can derive region bounds from those.
    let derived_region_bounds =
1655
        ty::object_region_bounds(tcx, principal_trait_ref.as_ref(), builtin_bounds);
1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671

    // If there are no derived region bounds, then report back that we
    // can find no region bound.
    if derived_region_bounds.len() == 0 {
        return None;
    }

    // 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) {
        return Some(ty::ReStatic);
    }

    // Determine whether there is exactly one unique region in the set
    // of derived region bounds. If so, use that. Otherwise, report an
    // error.
1672
    let r = derived_region_bounds[0];
1673 1674 1675 1676
    if derived_region_bounds.slice_from(1).iter().any(|r1| r != *r1) {
        tcx.sess.span_err(
            span,
            format!("ambiguous lifetime bound, \
1677
                     explicit lifetime bound required").index(&FullRange));
1678 1679 1680 1681
    }
    return Some(r);
}

S
Steve Klabnik 已提交
1682 1683 1684
/// A version of `compute_opt_region_bound` for use where some region bound is required
/// (existential types, basically). Reports an error if no region bound can be derived and we are
/// in an `rscope` that does not provide a default.
1685 1686 1687
fn compute_region_bound<'tcx>(
    this: &AstConv<'tcx>,
    rscope: &RegionScope,
1688 1689
    span: Span,
    region_bounds: &[&ast::Lifetime],
1690
    principal_trait_ref: Option<ty::PolyTraitRef<'tcx>>, // None for closures
1691
    builtin_bounds: ty::BuiltinBounds)
1692 1693
    -> ty::Region
{
1694 1695
    match compute_opt_region_bound(this.tcx(), span, region_bounds,
                                   principal_trait_ref, builtin_bounds) {
1696 1697 1698 1699 1700 1701 1702
        Some(r) => r,
        None => {
            match rscope.default_region_bound(span) {
                Some(r) => { r }
                None => {
                    this.tcx().sess.span_err(
                        span,
1703
                        format!("explicit lifetime bound required").index(&FullRange));
1704 1705 1706 1707 1708 1709 1710 1711 1712
                    ty::ReStatic
                }
            }
        }
    }
}

pub struct PartitionedBounds<'a> {
    pub builtin_bounds: ty::BuiltinBounds,
1713
    pub trait_bounds: Vec<&'a ast::PolyTraitRef>,
1714 1715 1716
    pub region_bounds: Vec<&'a ast::Lifetime>,
}

S
Steve Klabnik 已提交
1717 1718
/// Divides a list of bounds from the AST into three groups: builtin bounds (Copy, Sized etc),
/// general trait bounds, and region bounds.
1719 1720
pub fn partition_bounds<'a>(tcx: &ty::ctxt,
                            _span: Span,
1721
                            ast_bounds: &'a [ast::TyParamBound])
1722 1723 1724 1725 1726
                            -> PartitionedBounds<'a>
{
    let mut builtin_bounds = ty::empty_builtin_bounds();
    let mut region_bounds = Vec::new();
    let mut trait_bounds = Vec::new();
1727
    let mut trait_def_ids = DefIdMap::new();
1728
    for ast_bound in ast_bounds.iter() {
1729
        match *ast_bound {
N
Nick Cameron 已提交
1730
            ast::TraitTyParamBound(ref b, ast::TraitBoundModifier::None) => {
N
Niko Matsakis 已提交
1731
                match ::lookup_def_tcx(tcx, b.trait_ref.path.span, b.trait_ref.ref_id) {
1732
                    def::DefTrait(trait_did) => {
1733
                        match trait_def_ids.get(&trait_did) {
1734 1735 1736 1737 1738
                            // Already seen this trait. We forbid
                            // duplicates in the list (for some
                            // reason).
                            Some(span) => {
                                span_err!(
1739
                                    tcx.sess, b.trait_ref.path.span, E0127,
1740 1741
                                    "trait `{}` already appears in the \
                                     list of bounds",
1742
                                    b.trait_ref.path.user_string(tcx));
1743 1744 1745 1746 1747
                                tcx.sess.span_note(
                                    *span,
                                    "previous appearance is here");

                                continue;
1748
                            }
1749 1750

                            None => { }
1751
                        }
1752

1753
                        trait_def_ids.insert(trait_did, b.trait_ref.path.span);
1754 1755 1756 1757

                        if ty::try_add_builtin_trait(tcx,
                                                     trait_did,
                                                     &mut builtin_bounds) {
1758
                            // FIXME(#20302) -- we should check for things like Copy<T>
1759
                            continue; // success
1760 1761
                        }
                    }
1762 1763 1764 1765
                    _ => {
                        // Not a trait? that's an error, but it'll get
                        // reported later.
                    }
1766
                }
1767 1768
                trait_bounds.push(b);
            }
N
Nick Cameron 已提交
1769
            ast::TraitTyParamBound(_, ast::TraitBoundModifier::Maybe) => {}
1770 1771 1772
            ast::RegionTyParamBound(ref l) => {
                region_bounds.push(l);
            }
1773
        }
1774 1775 1776 1777 1778 1779
    }

    PartitionedBounds {
        builtin_bounds: builtin_bounds,
        trait_bounds: trait_bounds,
        region_bounds: region_bounds,
1780 1781
    }
}
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791

fn prohibit_projections<'tcx>(tcx: &ty::ctxt<'tcx>,
                              bindings: &[ConvertedBinding<'tcx>])
{
    for binding in bindings.iter().take(1) {
        tcx.sess.span_err(
            binding.span,
            "associated type bindings are not allowed here");
    }
}