astconv.rs 67.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 19 20 21 22 23 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
//! 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
//! `AstConv` instance; in this phase, the `get_item_ty()` function
//! 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`,
//! `get_item_ty()` just looks up the item type in `tcx.tcache`.
//!
//! 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, AssocSpace, SelfSpace, Subst, Substs};
55
use middle::subst::{VecPerParamSpace};
56
use middle::ty::{mod, Ty};
57
use middle::ty_fold;
N
Niko Matsakis 已提交
58 59 60
use rscope::{mod, UnelidableRscope, RegionScope, SpecificRscope,
             ShiftedRscope, BindingRscope};
use TypeAndSubsts;
61
use util::common::ErrorReported;
62
use util::nodemap::DefIdMap;
63
use util::ppaux::{mod, Repr, UserString};
64

E
Eduard Burtescu 已提交
65
use std::rc::Rc;
66 67
use std::iter::AdditiveIterator;
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_ty(&self, id: ast::DefId) -> ty::Polytype<'tcx>;
    fn get_trait_def(&self, id: ast::DefId) -> Rc<ty::TraitDef<'tcx>>;
N
Nick Cameron 已提交
76 77 78 79 80

    /// 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.
81 82 83
    fn get_free_substs(&self) -> Option<&Substs<'tcx>> {
        None
    }
84

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

    /// Returns true if associated types from the given trait and type are
    /// allowed to be used here and false otherwise.
    fn associated_types_of_trait_are_valid(&self,
91
                                           ty: Ty<'tcx>,
92 93 94
                                           trait_id: ast::DefId)
                                           -> bool;

95 96 97 98
    /// Returns the concrete type bound to the given associated type (indicated
    /// by associated_type_id) in the current context. For example,
    /// in `trait Foo { type A; }` looking up `A` will give a type variable;
    /// in `impl Foo for ... { type A = int; ... }` looking up `A` will give `int`.
99 100
    fn associated_type_binding(&self,
                               span: Span,
101 102 103
                               self_ty: Option<Ty<'tcx>>,
                               // DefId for the declaration of the trait
                               // in which the associated type is declared.
104 105
                               trait_id: ast::DefId,
                               associated_type_id: ast::DefId)
106
                               -> Option<Ty<'tcx>>;
107 108
}

E
Eduard Burtescu 已提交
109
pub fn ast_region_to_region(tcx: &ty::ctxt, lifetime: &ast::Lifetime)
110
                            -> ty::Region {
111
    let r = match tcx.named_region_map.get(&lifetime.id) {
112 113 114
        None => {
            // should have been recorded by the `resolve_lifetime` pass
            tcx.sess.span_bug(lifetime.span, "unresolved lifetime");
115
        }
116

117
        Some(&rl::DefStaticRegion) => {
118
            ty::ReStatic
119 120
        }

121 122
        Some(&rl::DefLateBoundRegion(debruijn, id)) => {
            ty::ReLateBound(debruijn, ty::BrNamed(ast_util::local_def(id), lifetime.name))
123 124
        }

125 126
        Some(&rl::DefEarlyBoundRegion(space, index, id)) => {
            ty::ReEarlyBound(id, space, index, lifetime.name)
127 128
        }

129
        Some(&rl::DefFreeRegion(scope, id)) => {
130
            ty::ReFree(ty::FreeRegion {
131
                    scope: scope,
132
                    bound_region: ty::BrNamed(ast_util::local_def(id),
133
                                              lifetime.name)
134 135 136 137 138
                })
        }
    };

    debug!("ast_region_to_region(lifetime={} id={}) yields {}",
139 140 141
           lifetime.repr(tcx),
           lifetime.id,
           r.repr(tcx));
142 143

    r
144 145
}

146
pub fn opt_ast_region_to_region<'tcx, AC: AstConv<'tcx>, RS: RegionScope>(
147
    this: &AC,
148
    rscope: &RS,
149
    default_span: Span,
J
James Miller 已提交
150
    opt_lifetime: &Option<ast::Lifetime>) -> ty::Region
151
{
152 153 154
    let r = match *opt_lifetime {
        Some(ref lifetime) => {
            ast_region_to_region(this.tcx(), lifetime)
155
        }
156 157 158

        None => {
            match rscope.anon_regions(default_span, 1) {
159
                Err(v) => {
160
                    debug!("optional region in illegal location");
J
Jakub Wieczorek 已提交
161 162
                    span_err!(this.tcx().sess, default_span, E0106,
                        "missing lifetime specifier");
163 164 165 166
                    match v {
                        Some(v) => {
                            let mut m = String::new();
                            let len = v.len();
167
                            for (i, (name, n)) in v.into_iter().enumerate() {
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
                                m.push_str(if n == 1 {
                                    format!("`{}`", name)
                                } else {
                                    format!("one of `{}`'s {} elided lifetimes", name, n)
                                }.as_slice());

                                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 已提交
183
                                span_help!(this.tcx().sess, default_span,
184 185 186 187
                                    "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 已提交
188
                                span_help!(this.tcx().sess, default_span,
189 190
                                    "this function's return type contains a borrowed value, but \
                                     there is no value for it to be borrowed from");
P
P1start 已提交
191
                                span_help!(this.tcx().sess, default_span,
192 193
                                    "consider giving it a 'static lifetime");
                            } else {
P
P1start 已提交
194
                                span_help!(this.tcx().sess, default_span,
195 196 197 198 199 200 201
                                    "this function's return type contains a borrowed value, but \
                                     the signature does not say whether it is borrowed from {}",
                                    m);
                            }
                        }
                        None => {},
                    }
202
                    ty::ReStatic
203 204
                }

205
                Ok(rs) => rs[0],
206
            }
207
        }
208 209
    };

B
Ben Gamari 已提交
210
    debug!("opt_ast_region_to_region(opt_lifetime={}) yields {}",
211
            opt_lifetime.repr(this.tcx()),
212 213 214
            r.repr(this.tcx()));

    r
215 216
}

S
Steve Klabnik 已提交
217 218
/// 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`.
219
fn ast_path_substs_for_ty<'tcx,AC,RS>(
220 221 222
    this: &AC,
    rscope: &RS,
    decl_def_id: ast::DefId,
223
    decl_generics: &ty::Generics<'tcx>,
224
    path: &ast::Path)
225
    -> Substs<'tcx>
226
    where AC: AstConv<'tcx>, RS: RegionScope
227
{
228
    let tcx = this.tcx();
229

230 231 232 233 234 235 236 237
    // 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.
238 239
    assert!(decl_generics.regions.all(|d| d.space == TypeSpace));
    assert!(decl_generics.types.all(|d| d.space != FnSpace));
240

241
    let (regions, types, assoc_bindings) = match path.segments.last().unwrap().parameters {
242 243 244 245
        ast::AngleBracketedParameters(ref data) => {
            convert_angle_bracketed_parameters(this, rscope, data)
        }
        ast::ParenthesizedParameters(ref data) => {
246 247 248
            tcx.sess.span_err(
                path.span,
                "parenthesized parameters may only be used with a trait");
249
            (Vec::new(), convert_parenthesized_parameters(this, data), Vec::new())
250
        }
251 252
    };

253 254 255 256 257 258 259 260 261
    create_substs_for_ast_path(this,
                               rscope,
                               path.span,
                               decl_def_id,
                               decl_generics,
                               None,
                               types,
                               regions,
                               assoc_bindings)
262 263 264 265 266 267 268
}

fn create_substs_for_ast_path<'tcx,AC,RS>(
    this: &AC,
    rscope: &RS,
    span: Span,
    decl_def_id: ast::DefId,
269 270 271
    decl_generics: &ty::Generics<'tcx>,
    self_ty: Option<Ty<'tcx>>,
    types: Vec<Ty<'tcx>>,
272 273
    regions: Vec<ty::Region>,
    assoc_bindings: Vec<(ast::Ident, Ty<'tcx>)>)
274
    -> Substs<'tcx>
275 276 277 278
    where AC: AstConv<'tcx>, RS: RegionScope
{
    let tcx = this.tcx();

279
    // If the type is parameterized by the this region, then replace this
280 281
    // region with the current anon region binding (in other words,
    // whatever & would get replaced with).
282
    let expected_num_region_params = decl_generics.regions.len(TypeSpace);
283
    let supplied_num_region_params = regions.len();
284
    let regions = if expected_num_region_params == supplied_num_region_params {
285
        regions
286 287
    } else {
        let anon_regions =
288
            rscope.anon_regions(span, expected_num_region_params);
289

290
        if supplied_num_region_params != 0 || anon_regions.is_err() {
291
            span_err!(tcx.sess, span, E0107,
292 293
                      "wrong number of lifetime parameters: expected {}, found {}",
                      expected_num_region_params, supplied_num_region_params);
294
        }
295 296

        match anon_regions {
A
Aaron Turon 已提交
297
            Ok(v) => v.into_iter().collect(),
298
            Err(_) => Vec::from_fn(expected_num_region_params,
299
                                   |_| ty::ReStatic) // hokey
300
        }
301 302 303
    };

    // Convert the type parameters supplied by the user.
304
    let ty_param_defs = decl_generics.types.get_slice(TypeSpace);
305
    let supplied_ty_param_count = types.len();
306 307
    let formal_ty_param_count =
        ty_param_defs.iter()
308 309
        .take_while(|x| !ty::is_associated_type(tcx, x.def_id))
        .count();
310 311
    let required_ty_param_count =
        ty_param_defs.iter()
312 313 314 315 316
        .take_while(|x| {
            x.default.is_none() &&
                !ty::is_associated_type(tcx, x.def_id)
        })
        .count();
317 318 319 320 321 322
    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"
        };
323
        this.tcx().sess.span_fatal(span,
324 325 326 327
                                   format!("wrong number of type arguments: {} {}, found {}",
                                           expected,
                                           required_ty_param_count,
                                           supplied_ty_param_count).as_slice());
328 329 330 331 332 333
    } 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"
        };
334
        this.tcx().sess.span_fatal(span,
335 336 337 338
                                   format!("wrong number of type arguments: {} {}, found {}",
                                           expected,
                                           formal_ty_param_count,
                                           supplied_ty_param_count).as_slice());
339 340
    }

341
    if supplied_ty_param_count > required_ty_param_count
N
Nick Cameron 已提交
342
        && !this.tcx().sess.features.borrow().default_type_params {
343
        span_err!(this.tcx().sess, span, E0108,
J
Jakub Wieczorek 已提交
344
            "default type parameters are experimental and possibly buggy");
345
        span_help!(this.tcx().sess, span,
J
Jakub Wieczorek 已提交
346
            "add #![feature(default_type_params)] to the crate attributes to enable");
347 348
    }

349
    let mut substs = Substs::new_type(types, regions);
350

351 352 353 354 355 356 357 358 359 360
    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());
361
            substs.types.push(SelfSpace, ty);
362
        }
363
    }
364

365
    for param in ty_param_defs[supplied_ty_param_count..].iter() {
366 367 368 369 370
        match param.default {
            Some(default) => {
                // This is a default type parameter.
                let default = default.subst_spanned(tcx,
                                                    &substs,
371
                                                    Some(span));
372 373 374
                substs.types.push(TypeSpace, default);
            }
            None => {
375
                tcx.sess.span_bug(span, "extra parameter without default");
376 377
            }
        }
378
    }
379

380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
    for formal_assoc in decl_generics.types.get_slice(AssocSpace).iter() {
        let mut found = false;
        for &(ident, ty) in assoc_bindings.iter() {
            if formal_assoc.name.ident() == ident {
                substs.types.push(AssocSpace, ty);
                found = true;
                break;
            }
        }
        if !found {
            match this.associated_type_binding(span,
                                               self_ty,
                                               decl_def_id,
                                               formal_assoc.def_id) {
                Some(ty) => {
                    substs.types.push(AssocSpace, ty);
                }
                None => {
N
Nick Cameron 已提交
398 399
                    substs.types.push(AssocSpace, ty::mk_err());
                    span_err!(this.tcx().sess, span, E0171,
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
                              "missing type for associated type `{}`",
                              token::get_ident(formal_assoc.name.ident()));
                }
            }
        }
    }

    for &(ident, _) in assoc_bindings.iter() {
        let mut formal_idents = decl_generics.types.get_slice(AssocSpace)
                                .iter().map(|t| t.name.ident());
        if !formal_idents.any(|i| i == ident) {
            span_err!(this.tcx().sess, span, E0177,
                      "associated type `{}` does not exist",
                      token::get_ident(ident));
        }
415 416
    }

417
    return substs;
418
}
419

420 421 422
fn convert_angle_bracketed_parameters<'tcx, AC, RS>(this: &AC,
                                                    rscope: &RS,
                                                    data: &ast::AngleBracketedParameterData)
423 424 425
                                                    -> (Vec<ty::Region>,
                                                        Vec<Ty<'tcx>>,
                                                        Vec<(ast::Ident, Ty<'tcx>)>)
426 427 428 429 430 431
    where AC: AstConv<'tcx>, RS: RegionScope
{
    let regions: Vec<_> =
        data.lifetimes.iter()
        .map(|l| ast_region_to_region(this.tcx(), l))
        .collect();
432

433 434 435 436 437
    let types: Vec<_> =
        data.types.iter()
        .map(|t| ast_ty_to_ty(this, rscope, &**t))
        .collect();

438 439 440 441 442 443
    let assoc_bindings: Vec<_> =
        data.bindings.iter()
        .map(|b| (b.ident, ast_ty_to_ty(this, rscope, &*b.ty)))
        .collect();

    (regions, types, assoc_bindings)
444 445
}

446 447 448 449 450 451 452 453 454 455 456 457 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 492 493 494 495 496 497 498 499
/// 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)
}

fn convert_ty_with_lifetime_elision<'tcx,AC>(this: &AC,
                                             implied_output_region: Option<ty::Region>,
                                             param_lifetimes: Vec<(String, uint)>,
                                             ty: &ast::Ty)
                                             -> Ty<'tcx>
    where AC: AstConv<'tcx>
{
    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)
        }
    }
}

500 501
fn convert_parenthesized_parameters<'tcx,AC>(this: &AC,
                                             data: &ast::ParenthesizedParameterData)
502
                                             -> Vec<Ty<'tcx>>
503 504 505 506 507
    where AC: AstConv<'tcx>
{
    let binding_rscope = BindingRscope::new();
    let inputs = data.inputs.iter()
                            .map(|a_t| ast_ty_to_ty(this, &binding_rscope, &**a_t))
508 509 510 511 512 513
                            .collect::<Vec<Ty<'tcx>>>();

    let input_params = Vec::from_elem(inputs.len(), String::new());
    let (implied_output_region,
         params_lifetimes) = find_implied_output_region(&*inputs, input_params);

514 515 516
    let input_ty = ty::mk_tup(this.tcx(), inputs);

    let output = match data.output {
517 518 519 520
        Some(ref output_ty) => convert_ty_with_lifetime_elision(this,
                                                                implied_output_region,
                                                                params_lifetimes,
                                                                &**output_ty),
521 522 523 524 525
        None => ty::mk_nil(this.tcx()),
    };

    vec![input_ty, output]
}
526

527

528 529 530
/// 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.
N
Niko Matsakis 已提交
531 532 533
pub fn instantiate_trait_ref<'tcx,AC,RS>(this: &AC,
                                         rscope: &RS,
                                         ast_trait_ref: &ast::TraitRef,
534 535
                                         self_ty: Option<Ty<'tcx>>,
                                         allow_eq: AllowEqConstraints)
536
                                         -> Rc<ty::TraitRef<'tcx>>
N
Niko Matsakis 已提交
537 538 539
                                         where AC: AstConv<'tcx>,
                                               RS: RegionScope
{
N
Niko Matsakis 已提交
540 541 542
    match ::lookup_def_tcx(this.tcx(),
                           ast_trait_ref.path.span,
                           ast_trait_ref.ref_id) {
543
        def::DefTrait(trait_def_id) => {
544 545 546 547 548 549
            let trait_ref = Rc::new(ast_path_to_trait_ref(this,
                                                          rscope,
                                                          trait_def_id,
                                                          self_ty,
                                                          &ast_trait_ref.path,
                                                          allow_eq));
N
Niko Matsakis 已提交
550 551 552 553 554 555 556 557 558 559 560 561
            this.tcx().trait_refs.borrow_mut().insert(ast_trait_ref.ref_id,
                                                      trait_ref.clone());
            trait_ref
        }
        _ => {
            this.tcx().sess.span_fatal(
                ast_trait_ref.path.span,
                format!("`{}` is not a trait", ast_trait_ref.path.user_string(this.tcx()))[]);
        }
    }
}

562 563 564 565 566 567
#[deriving(PartialEq,Show)]
pub enum AllowEqConstraints {
    Allow,
    DontAllow
}

568 569 570 571
fn ast_path_to_trait_ref<'tcx,AC,RS>(
    this: &AC,
    rscope: &RS,
    trait_def_id: ast::DefId,
572
    self_ty: Option<Ty<'tcx>>,
573 574
    path: &ast::Path,
    allow_eq: AllowEqConstraints)
575
    -> ty::TraitRef<'tcx>
576 577
    where AC: AstConv<'tcx>, RS: RegionScope
{
578
    debug!("ast_path_to_trait_ref {}", path);
E
Eduard Burtescu 已提交
579
    let trait_def = this.get_trait_def(trait_def_id);
580 581 582 583 584 585 586 587

    // 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);

588
    let (regions, types, assoc_bindings) = match path.segments.last().unwrap().parameters {
589 590 591 592
        ast::AngleBracketedParameters(ref data) => {
            convert_angle_bracketed_parameters(this, &shifted_rscope, data)
        }
        ast::ParenthesizedParameters(ref data) => {
593 594 595 596 597 598 599 600 601 602 603 604 605
            // 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");
            }

606
            (Vec::new(), convert_parenthesized_parameters(this, data), Vec::new())
607 608 609
        }
    };

610 611 612 613 614
    if allow_eq == AllowEqConstraints::DontAllow && assoc_bindings.len() > 0 {
        span_err!(this.tcx().sess, path.span, E0173,
                  "equality constraints are not allowed in this position");
    }

615 616 617 618 619 620 621
    let substs = create_substs_for_ast_path(this,
                                            &shifted_rscope,
                                            path.span,
                                            trait_def_id,
                                            &trait_def.generics,
                                            self_ty,
                                            types,
622 623
                                            regions,
                                            assoc_bindings);
624 625

    ty::TraitRef::new(trait_def_id, substs)
626 627
}

628
pub fn ast_path_to_ty<'tcx, AC: AstConv<'tcx>, RS: RegionScope>(
629 630 631
    this: &AC,
    rscope: &RS,
    did: ast::DefId,
632
    path: &ast::Path)
633
    -> TypeAndSubsts<'tcx>
634
{
635
    let tcx = this.tcx();
636
    let ty::Polytype {
637
        generics,
638 639 640
        ty: decl_ty
    } = this.get_item_ty(did);

641 642 643 644 645
    let substs = ast_path_substs_for_ty(this,
                                        rscope,
                                        did,
                                        &generics,
                                        path);
646
    let ty = decl_ty.subst(tcx, &substs);
647
    TypeAndSubsts { substs: substs, ty: ty }
648 649
}

650 651 652 653 654
/// 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.
655 656 657 658
pub fn ast_path_to_ty_relaxed<'tcx,AC,RS>(
    this: &AC,
    rscope: &RS,
    did: ast::DefId,
659
    path: &ast::Path)
660
    -> TypeAndSubsts<'tcx>
661 662
    where AC : AstConv<'tcx>, RS : RegionScope
{
663 664
    let tcx = this.tcx();
    let ty::Polytype {
665
        generics,
666 667 668
        ty: decl_ty
    } = this.get_item_ty(did);

669 670 671 672 673 674 675 676
    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 {
677 678 679 680 681 682 683 684
        let type_params = Vec::from_fn(generics.types.len(TypeSpace),
                                       |_| this.ty_infer(path.span));
        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 {
685
        ast_path_substs_for_ty(this, rscope, did, &generics, path)
686 687 688 689 690 691 692 693 694
    };

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

695 696
/// 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`.
697 698 699 700
pub fn ast_ty_to_builtin_ty<'tcx, AC: AstConv<'tcx>, RS: RegionScope>(
        this: &AC,
        rscope: &RS,
        ast_ty: &ast::Ty)
701
        -> Option<Ty<'tcx>> {
702 703 704
    match ast_ty_to_prim_ty(this.tcx(), ast_ty) {
        Some(typ) => return Some(typ),
        None => {}
705 706
    }

707
    match ast_ty.node {
708
        ast::TyPath(ref path, id) => {
709
            let a_def = match this.tcx().def_map.borrow().get(&id) {
710 711 712 713 714
                None => {
                    this.tcx()
                        .sess
                        .span_bug(ast_ty.span,
                                  format!("unbound path {}",
715
                                          path.repr(this.tcx())).as_slice())
716
                }
717 718
                Some(&d) => d
            };
719

720 721 722
            // FIXME(#12938): This is a hack until we have full support for
            // DST.
            match a_def {
723 724
                def::DefTy(did, _) |
                def::DefStruct(did) if Some(did) == this.tcx().lang_items.owned_box() => {
725
                    let ty = ast_path_to_ty(this, rscope, did, path).ty;
726
                    match ty.sty {
727 728 729 730 731 732 733 734 735 736 737 738
                        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 `{}`",
                                        ty.repr(this.tcx()))[]);
                        }
739 740
                    }
                }
741
                _ => None
742
            }
743
        }
744 745 746 747
        _ => None
    }
}

748 749 750 751 752 753
fn ast_ty_to_trait_ref<'tcx,AC,RS>(this: &AC,
                                   rscope: &RS,
                                   ty: &ast::Ty,
                                   bounds: &[ast::TyParamBound])
                                   -> Result<ty::TraitRef<'tcx>, ErrorReported>
    where AC : AstConv<'tcx>, RS : RegionScope
754
{
755 756 757 758 759 760 761 762 763 764
    /*!
     * 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.
     */
765

766 767 768 769 770 771 772 773
    match ty.node {
        ast::TyPath(ref path, id) => {
            match this.tcx().def_map.borrow().get(&id) {
                Some(&def::DefTrait(trait_def_id)) => {
                    return Ok(ast_path_to_trait_ref(this,
                                                    rscope,
                                                    trait_def_id,
                                                    None,
774 775
                                                    path,
                                                    AllowEqConstraints::Allow));
776 777
                }
                _ => {
778
                    span_err!(this.tcx().sess, ty.span, E0172, "expected a reference to a trait");
779 780 781
                    Err(ErrorReported)
                }
            }
782
        }
783
        _ => {
784
            span_err!(this.tcx().sess, ty.span, E0178,
785 786 787 788 789 790 791 792 793
                      "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,
                               "perhaps you meant `&{}({} +{})`? (per RFC 248)",
                               ppaux::mutability_to_string(mut_ty.mutbl),
                               pprust::ty_to_string(&*mut_ty.ty),
                               pprust::bounds_to_string(bounds));
794
                }
795
               ast::TyRptr(Some(ref lt), ref mut_ty) => {
796 797 798 799 800 801 802 803 804 805
                    span_note!(this.tcx().sess, ty.span,
                               "perhaps you meant `&{} {}({} +{})`? (per RFC 248)",
                               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,
A
Alex Crichton 已提交
806
                               "perhaps you forgot parentheses? (per RFC 248)");
807 808
                }
            }
809
            Err(ErrorReported)
810
        }
811
    }
812 813 814 815 816 817 818 819 820 821 822 823 824
}

fn trait_ref_to_object_type<'tcx,AC,RS>(this: &AC,
                                        rscope: &RS,
                                        span: Span,
                                        trait_ref: ty::TraitRef<'tcx>,
                                        bounds: &[ast::TyParamBound])
                                        -> Ty<'tcx>
    where AC : AstConv<'tcx>, RS : RegionScope
{
    let existential_bounds = conv_existential_bounds(this,
                                                     rscope,
                                                     span,
825
                                                     Some(&trait_ref),
826 827 828 829 830 831 832
                                                     bounds);

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

    result
833 834
}

835 836 837 838 839 840
fn qpath_to_ty<'tcx,AC,RS>(this: &AC,
                           rscope: &RS,
                           ast_ty: &ast::Ty, // the TyQPath
                           qpath: &ast::QPath)
                           -> Ty<'tcx>
    where AC: AstConv<'tcx>, RS: RegionScope
841
{
842 843
    debug!("qpath_to_ty(ast_ty={})",
           ast_ty.repr(this.tcx()));
844

845 846 847
    let self_type = ast_ty_to_ty(this, rscope, &*qpath.self_type);

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

849
    let trait_ref = instantiate_trait_ref(this,
850
                                          rscope,
851
                                          &*qpath.trait_ref,
852 853
                                          Some(self_type),
                                          AllowEqConstraints::DontAllow);
854 855 856

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

857 858 859 860 861 862 863 864 865 866 867 868 869 870
    if let Some(ty) = find_assoc_ty(this, &*trait_ref, qpath.item_name) {
        return ty;
    }

    this.tcx().sess.span_bug(ast_ty.span,
                             "this associated type didn't get added \
                              as a parameter for some reason")
}

fn find_assoc_ty<'tcx, AC>(this: &AC,
                           trait_ref: &ty::TraitRef<'tcx>,
                           type_name: ast::Ident)
                           -> Option<Ty<'tcx>>
where AC: AstConv<'tcx> {
871 872 873
    let trait_def = this.get_trait_def(trait_ref.def_id);

    for ty_param_def in trait_def.generics.types.get_slice(AssocSpace).iter() {
874 875
        if ty_param_def.name == type_name.name {
            return Some(trait_ref.substs.type_for_def(ty_param_def));
876 877
        }
    }
878

879
    None
880 881
}

882 883
// Parses the programmer's textual representation of a type into our
// internal notion of a type.
884
pub fn ast_ty_to_ty<'tcx, AC: AstConv<'tcx>, RS: RegionScope>(
885
        this: &AC, rscope: &RS, ast_ty: &ast::Ty) -> Ty<'tcx>
886 887 888
{
    debug!("ast_ty_to_ty(ast_ty={})",
           ast_ty.repr(this.tcx()));
889

890
    let tcx = this.tcx();
891

892
    let mut ast_ty_to_ty_cache = tcx.ast_ty_to_ty_cache.borrow_mut();
893
    match ast_ty_to_ty_cache.get(&ast_ty.id) {
894 895 896 897 898 899
        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");
900
        }
901
        None => { /* go on */ }
902
    }
903 904
    ast_ty_to_ty_cache.insert(ast_ty.id, ty::atttce_unresolved);
    drop(ast_ty_to_ty_cache);
905

906 907
    let typ = ast_ty_to_builtin_ty(this, rscope, ast_ty).unwrap_or_else(|| {
        match ast_ty.node {
908 909
            ast::TyVec(ref ty) => {
                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty), None)
910
            }
911 912 913 914 915 916 917 918 919 920 921
            ast::TyObjectSum(ref ty, ref bounds) => {
                match ast_ty_to_trait_ref(this, rscope, &**ty, bounds.as_slice()) {
                    Ok(trait_ref) => {
                        trait_ref_to_object_type(this, rscope, ast_ty.span,
                                                 trait_ref, bounds.as_slice())
                    }
                    Err(ErrorReported) => {
                        ty::mk_err()
                    }
                }
            }
922
            ast::TyPtr(ref mt) => {
923
                ty::mk_ptr(tcx, ty::mt {
924
                    ty: ast_ty_to_ty(this, rscope, &*mt.ty),
925 926
                    mutbl: mt.mutbl
                })
927
            }
928 929 930
            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()));
931 932
                let t = ast_ty_to_ty(this, rscope, &*mt.ty);
                ty::mk_rptr(tcx, r, ty::mt {ty: t, mutbl: mt.mutbl})
933 934
            }
            ast::TyTup(ref fields) => {
935
                let flds = fields.iter()
936
                                 .map(|t| ast_ty_to_ty(this, rscope, &**t))
937
                                 .collect();
938 939
                ty::mk_tup(tcx, flds)
            }
940
            ast::TyParen(ref typ) => ast_ty_to_ty(this, rscope, &**typ),
941
            ast::TyBareFn(ref bf) => {
942
                if bf.decl.variadic && bf.abi != abi::C {
943 944 945
                    tcx.sess.span_err(ast_ty.span,
                                      "variadic function must have C calling convention");
                }
N
Niko Matsakis 已提交
946
                ty::mk_bare_fn(tcx, ty_of_bare_fn(this, bf.unsafety, bf.abi, &*bf.decl))
947
            }
948
            ast::TyClosure(ref f) => {
949 950
                // Use corresponding trait store to figure out default bounds
                // if none were specified.
951 952 953
                let bounds = conv_existential_bounds(this,
                                                     rscope,
                                                     ast_ty.span,
954
                                                     None,
955
                                                     f.bounds.as_slice());
956
                let fn_decl = ty_of_closure(this,
N
Niko Matsakis 已提交
957
                                            f.unsafety,
958 959
                                            f.onceness,
                                            bounds,
960 961 962
                                            ty::RegionTraitStore(
                                                bounds.region_bound,
                                                ast::MutMutable),
963
                                            &*f.decl,
964
                                            abi::Rust,
965 966 967
                                            None);
                ty::mk_closure(tcx, fn_decl)
            }
968 969
            ast::TyPolyTraitRef(ref bounds) => {
                conv_ty_poly_trait_ref(this, rscope, ast_ty.span, bounds.as_slice())
N
Niko Matsakis 已提交
970
            }
971
            ast::TyPath(ref path, id) => {
972
                let a_def = match tcx.def_map.borrow().get(&id) {
973 974 975 976
                    None => {
                        tcx.sess
                           .span_bug(ast_ty.span,
                                     format!("unbound path {}",
977
                                             path.repr(tcx)).as_slice())
978
                    }
979 980 981
                    Some(&d) => d
                };
                match a_def {
N
Nick Cameron 已提交
982
                    def::DefTrait(trait_def_id) => {
983 984
                        // N.B. this case overlaps somewhat with
                        // TyObjectSum, see that fn for details
985 986 987 988
                        let result = ast_path_to_trait_ref(this,
                                                           rscope,
                                                           trait_def_id,
                                                           None,
989 990
                                                           path,
                                                           AllowEqConstraints::Allow);
991
                        trait_ref_to_object_type(this, rscope, path.span, result, &[])
992
                    }
993
                    def::DefTy(did, _) | def::DefStruct(did) => {
994
                        ast_path_to_ty(this, rscope, did, path).ty
995
                    }
996
                    def::DefTyParam(space, id, n) => {
997
                        check_path_args(tcx, path, NO_TPS | NO_REGIONS);
998
                        ty::mk_param(tcx, space, n, id)
999
                    }
1000
                    def::DefSelfTy(id) => {
1001 1002 1003 1004 1005
                        // 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);
                        let did = ast_util::local_def(id);
1006
                        ty::mk_self_type(tcx, did)
1007
                    }
1008
                    def::DefMod(id) => {
1009 1010
                        tcx.sess.span_fatal(ast_ty.span,
                            format!("found module name used as a type: {}",
1011
                                    tcx.map.node_to_string(id.node)).as_slice());
1012
                    }
1013
                    def::DefPrimTy(_) => {
S
Steve Klabnik 已提交
1014
                        panic!("DefPrimTy arm missed in previous ast_ty_to_prim_ty call");
1015
                    }
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
                    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)
                                                  .get()).as_slice());
                        ty::mk_err()
                    }
1033 1034 1035 1036
                    def::DefAssociatedPath(typ, assoc_ident) => {
                        // FIXME(#19541): in both branches we should consider
                        // associated types in super-traits.
                        let (assoc_tys, tp_name): (Vec<_>, _) = match typ {
N
Nick Cameron 已提交
1037 1038
                            def::TyParamProvenance::FromParam(did) |
                            def::TyParamProvenance::FromSelf(did) => {
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
                                let ty_param_defs = tcx.ty_param_defs.borrow();
                                let tp_def = &(*ty_param_defs)[did.node];
                                let assoc_tys = tp_def.bounds.trait_bounds.iter()
                                    .filter_map(|b| find_assoc_ty(this, &**b, assoc_ident))
                                    .collect();
                                (assoc_tys, token::get_name(tp_def.name).to_string())
                            }
                        };

                        if assoc_tys.len() == 0 {
                            tcx.sess.span_err(ast_ty.span,
                                              format!("associated type `{}` not \
                                                       found for type parameter `{}`",
                                                      token::get_ident(assoc_ident),
                                                      tp_name).as_slice());
                            return ty::mk_err()
                        }

                        if assoc_tys.len() > 1 {
                            tcx.sess.span_err(ast_ty.span,
                                              format!("ambiguous associated type \
                                                       `{}` in bounds of `{}`",
                                                      token::get_ident(assoc_ident),
                                                      tp_name).as_slice());
                        }

                        let mut result_ty = assoc_tys[0];
                        if let Some(substs) = this.get_free_substs() {
                            result_ty = result_ty.subst(tcx, substs);
                        }

                        result_ty
                    }
1072 1073
                    _ => {
                        tcx.sess.span_fatal(ast_ty.span,
1074
                                            format!("found value name used \
L
Luqman Aden 已提交
1075
                                                     as a type: {}",
1076
                                                    a_def).as_slice());
1077 1078 1079
                    }
                }
            }
1080
            ast::TyQPath(ref qpath) => {
1081
                qpath_to_ty(this, rscope, ast_ty, &**qpath)
1082
            }
1083 1084
            ast::TyFixedLengthVec(ref ty, ref e) => {
                match const_eval::eval_const_expr_partial(tcx, &**e) {
1085 1086 1087
                    Ok(ref r) => {
                        match *r {
                            const_eval::const_int(i) =>
1088
                                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty),
1089
                                           Some(i as uint)),
1090
                            const_eval::const_uint(i) =>
1091
                                ty::mk_vec(tcx, ast_ty_to_ty(this, rscope, &**ty),
1092
                                           Some(i as uint)),
1093 1094
                            _ => {
                                tcx.sess.span_fatal(
1095
                                    ast_ty.span, "expected constant expr for array length");
1096 1097 1098 1099 1100 1101
                            }
                        }
                    }
                    Err(ref r) => {
                        tcx.sess.span_fatal(
                            ast_ty.span,
1102
                            format!("expected constant expr for array \
1103 1104
                                     length: {}",
                                    *r).as_slice());
1105 1106 1107
                    }
                }
            }
1108
            ast::TyTypeof(ref _e) => {
1109 1110 1111
                tcx.sess.span_bug(ast_ty.span, "typeof is reserved but unimplemented");
            }
            ast::TyInfer => {
1112
                // TyInfer also appears as the type of arguments or return
1113
                // values in a ExprClosure, or as
1114 1115
                // the type of local variables. Both of these cases are
                // handled specially and will not descend into this routine.
1116
                this.ty_infer(ast_ty.span)
1117
            }
1118 1119
        }
    });
1120

1121
    tcx.ast_ty_to_ty_cache.borrow_mut().insert(ast_ty.id, ty::atttce_resolved(typ));
B
Brian Anderson 已提交
1122
    return typ;
1123 1124
}

1125 1126
pub fn ty_of_arg<'tcx, AC: AstConv<'tcx>, RS: RegionScope>(this: &AC, rscope: &RS,
                                                           a: &ast::Arg,
1127 1128
                                                           expected_ty: Option<Ty<'tcx>>)
                                                           -> Ty<'tcx> {
E
Erick Tryzelaar 已提交
1129
    match a.ty.node {
1130 1131
        ast::TyInfer if expected_ty.is_some() => expected_ty.unwrap(),
        ast::TyInfer => this.ty_infer(a.ty.span),
1132
        _ => ast_ty_to_ty(this, rscope, &*a.ty),
1133
    }
1134 1135
}

1136 1137
struct SelfInfo<'a, 'tcx> {
    untransformed_self_ty: Ty<'tcx>,
1138
    explicit_self: &'a ast::ExplicitSelf,
1139 1140
}

1141
pub fn ty_of_method<'tcx, AC: AstConv<'tcx>>(
1142
                    this: &AC,
N
Niko Matsakis 已提交
1143
                    unsafety: ast::Unsafety,
1144
                    untransformed_self_ty: Ty<'tcx>,
1145
                    explicit_self: &ast::ExplicitSelf,
1146 1147
                    decl: &ast::FnDecl,
                    abi: abi::Abi)
1148
                    -> (ty::BareFnTy<'tcx>, ty::ExplicitSelfCategory) {
1149
    let self_info = Some(SelfInfo {
1150
        untransformed_self_ty: untransformed_self_ty,
1151 1152 1153 1154
        explicit_self: explicit_self,
    });
    let (bare_fn_ty, optional_explicit_self_category) =
        ty_of_method_or_bare_fn(this,
N
Niko Matsakis 已提交
1155
                                unsafety,
1156
                                abi,
1157 1158 1159
                                self_info,
                                decl);
    (bare_fn_ty, optional_explicit_self_category.unwrap())
1160 1161
}

N
Niko Matsakis 已提交
1162
pub fn ty_of_bare_fn<'tcx, AC: AstConv<'tcx>>(this: &AC, unsafety: ast::Unsafety, abi: abi::Abi,
1163
                                              decl: &ast::FnDecl) -> ty::BareFnTy<'tcx> {
N
Niko Matsakis 已提交
1164
    let (bare_fn_ty, _) = ty_of_method_or_bare_fn(this, unsafety, abi, None, decl);
1165
    bare_fn_ty
1166 1167
}

1168
fn ty_of_method_or_bare_fn<'a, 'tcx, AC: AstConv<'tcx>>(
1169
                           this: &AC,
N
Niko Matsakis 已提交
1170
                           unsafety: ast::Unsafety,
1171
                           abi: abi::Abi,
1172
                           opt_self_info: Option<SelfInfo<'a, 'tcx>>,
1173
                           decl: &ast::FnDecl)
1174
                           -> (ty::BareFnTy<'tcx>,
1175 1176
                               Option<ty::ExplicitSelfCategory>)
{
1177
    debug!("ty_of_method_or_bare_fn");
1178

1179 1180
    // New region names that appear inside of the arguments of the function
    // declaration are bound to that function type.
1181
    let rb = rscope::BindingRscope::new();
1182

1183 1184 1185 1186 1187
    // `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.
1188
    let mut explicit_self_category_result = None;
1189 1190 1191
    let (self_ty, mut implied_output_region) = match opt_self_info {
        None => (None, None),
        Some(self_info) => {
1192 1193 1194 1195 1196
            // Shift regions in the self type by 1 to account for the binding
            // level introduced by the function itself.
            let untransformed_self_ty =
                ty_fold::shift_regions(this.tcx(), 1, &self_info.untransformed_self_ty);

1197 1198 1199 1200 1201
            // 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 {
1202 1203 1204
                ty::StaticExplicitSelfCategory => {
                    (None, None)
                }
1205
                ty::ByValueExplicitSelfCategory => {
1206
                    (Some(untransformed_self_ty), None)
1207 1208 1209 1210 1211
                }
                ty::ByReferenceExplicitSelfCategory(region, mutability) => {
                    (Some(ty::mk_rptr(this.tcx(),
                                      region,
                                      ty::mt {
1212
                                        ty: untransformed_self_ty,
1213 1214 1215 1216 1217
                                        mutbl: mutability
                                      })),
                     Some(region))
                }
                ty::ByBoxExplicitSelfCategory => {
1218
                    (Some(ty::mk_uniq(this.tcx(), untransformed_self_ty)), None)
1219
                }
1220 1221
            }
        }
1222
    };
1223 1224

    // HACK(eddyb) replace the fake self type in the AST with the actual type.
1225
    let input_params = if self_ty.is_some() {
1226 1227 1228 1229
        decl.inputs.slice_from(1)
    } else {
        decl.inputs.as_slice()
    };
1230 1231 1232 1233
    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();
1234
    let self_and_input_tys: Vec<Ty> =
A
Aaron Turon 已提交
1235
        self_ty.into_iter().chain(input_tys).collect();
1236

1237

1238 1239 1240
    // 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.
1241 1242
    let lifetimes_for_params = if implied_output_region.is_none() {
        let input_tys = if self_ty.is_some() {
1243
            // Skip the first argument if `self` is present.
1244 1245 1246 1247
            self_and_input_tys.slice_from(1)
        } else {
            self_and_input_tys.slice_from(0)
        };
1248

1249 1250 1251 1252 1253 1254
        let (ior, lfp) = find_implied_output_region(input_tys, input_pats);
        implied_output_region = ior;
        lfp
    } else {
        vec![]
    };
1255

1256 1257 1258 1259
    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) =>
1260 1261 1262 1263
            ty::FnConverging(convert_ty_with_lifetime_elision(this,
                                                              implied_output_region,
                                                              lifetimes_for_params,
                                                              &**output)),
1264
        ast::NoReturn(_) => ty::FnDiverging
1265 1266
    };

1267
    (ty::BareFnTy {
N
Niko Matsakis 已提交
1268
        unsafety: unsafety,
1269
        abi: abi,
1270 1271 1272 1273 1274
        sig: ty::FnSig {
            inputs: self_and_input_tys,
            output: output_ty,
            variadic: decl.variadic
        }
1275 1276 1277
    }, explicit_self_category_result)
}

1278
fn determine_explicit_self_category<'a, 'tcx, AC: AstConv<'tcx>,
1279 1280 1281
                                    RS:RegionScope>(
                                    this: &AC,
                                    rscope: &RS,
1282
                                    self_info: &SelfInfo<'a, 'tcx>)
1283 1284 1285
                                    -> ty::ExplicitSelfCategory
{
    return match self_info.explicit_self.node {
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
        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)
        }
1296 1297
        ast::SelfExplicit(ref ast_type, _) => {
            let explicit_type = ast_ty_to_ty(this, rscope, &**ast_type);
1298

1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
            // 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 {
1342
                match explicit_type.sty {
1343 1344 1345
                    ty::ty_rptr(r, mt) => ty::ByReferenceExplicitSelfCategory(r, mt.mutbl),
                    ty::ty_uniq(_) => ty::ByBoxExplicitSelfCategory,
                    _ => ty::ByValueExplicitSelfCategory,
1346 1347
                }
            }
1348 1349
        }
    };
1350

1351
    fn count_modifiers(ty: Ty) -> uint {
1352
        match ty.sty {
1353 1354 1355
            ty::ty_rptr(_, mt) => count_modifiers(mt.ty) + 1,
            ty::ty_uniq(t) => count_modifiers(t) + 1,
            _ => 0,
1356 1357
        }
    }
1358 1359
}

1360
pub fn ty_of_closure<'tcx, AC: AstConv<'tcx>>(
1361
    this: &AC,
N
Niko Matsakis 已提交
1362
    unsafety: ast::Unsafety,
1363
    onceness: ast::Onceness,
1364
    bounds: ty::ExistentialBounds,
1365
    store: ty::TraitStore,
1366
    decl: &ast::FnDecl,
1367
    abi: abi::Abi,
1368 1369
    expected_sig: Option<ty::FnSig<'tcx>>)
    -> ty::ClosureTy<'tcx>
1370
{
1371 1372
    debug!("ty_of_closure(expected_sig={})",
           expected_sig.repr(this.tcx()));
1373 1374 1375

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

1378
    let input_tys: Vec<_> = decl.inputs.iter().enumerate().map(|(i, a)| {
1379
        let expected_arg_ty = expected_sig.as_ref().and_then(|e| {
1380 1381
            // no guarantee that the correct number of expected args
            // were supplied
1382
            if i < e.inputs.len() {
1383
                Some(e.inputs[i])
1384 1385 1386
            } else {
                None
            }
1387
        });
J
James Miller 已提交
1388
        ty_of_arg(this, &rb, a, expected_arg_ty)
1389
    }).collect();
1390

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

1393 1394 1395 1396 1397 1398 1399 1400
    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
1401 1402
    };

1403 1404 1405
    debug!("ty_of_closure: input_tys={}", input_tys.repr(this.tcx()));
    debug!("ty_of_closure: output_ty={}", output_ty.repr(this.tcx()));

1406
    ty::ClosureTy {
N
Niko Matsakis 已提交
1407
        unsafety: unsafety,
1408
        onceness: onceness,
1409
        store: store,
1410
        bounds: bounds,
1411
        abi: abi,
1412
        sig: ty::FnSig {inputs: input_tys,
1413 1414
                        output: output_ty,
                        variadic: decl.variadic}
1415 1416
    }
}
1417

S
Steve Klabnik 已提交
1418 1419 1420 1421
/// 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.
1422
pub fn conv_existential_bounds<'tcx, AC: AstConv<'tcx>, RS:RegionScope>(
1423 1424 1425
    this: &AC,
    rscope: &RS,
    span: Span,
1426
    principal_trait_ref: Option<&ty::TraitRef<'tcx>>, // None for boxed closures
1427 1428 1429 1430 1431 1432
    ast_bounds: &[ast::TyParamBound])
    -> ty::ExistentialBounds
{
    let ast_bound_refs: Vec<&ast::TyParamBound> =
        ast_bounds.iter().collect();

1433 1434 1435 1436
    let partitioned_bounds =
        partition_bounds(this.tcx(), span, ast_bound_refs.as_slice());

    conv_existential_bounds_from_partitioned_bounds(
1437
        this, rscope, span, principal_trait_ref, partitioned_bounds)
1438 1439 1440 1441 1442 1443 1444
}

fn conv_ty_poly_trait_ref<'tcx, AC, RS>(
    this: &AC,
    rscope: &RS,
    span: Span,
    ast_bounds: &[ast::TyParamBound])
1445
    -> Ty<'tcx>
1446 1447 1448 1449 1450 1451 1452
    where AC: AstConv<'tcx>, RS:RegionScope
{
    let ast_bounds: Vec<&ast::TyParamBound> = ast_bounds.iter().collect();
    let mut partitioned_bounds = partition_bounds(this.tcx(), span, ast_bounds[]);

    let main_trait_bound = match partitioned_bounds.trait_bounds.remove(0) {
        Some(trait_bound) => {
1453 1454 1455 1456 1457
            Some(instantiate_trait_ref(this,
                                       rscope,
                                       &trait_bound.trait_ref,
                                       None,
                                       AllowEqConstraints::Allow))
1458 1459 1460 1461 1462 1463 1464 1465 1466
        }
        None => {
            this.tcx().sess.span_err(
                span,
                "at least one non-builtin trait is required for an object type");
            None
        }
    };

1467 1468 1469 1470 1471 1472
    let bounds =
        conv_existential_bounds_from_partitioned_bounds(this,
                                                        rscope,
                                                        span,
                                                        main_trait_bound.as_ref().map(|tr| &**tr),
                                                        partitioned_bounds);
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483

    match main_trait_bound {
        None => ty::mk_err(),
        Some(principal) => ty::mk_trait(this.tcx(), (*principal).clone(), bounds)
    }
}

pub fn conv_existential_bounds_from_partitioned_bounds<'tcx, AC, RS>(
    this: &AC,
    rscope: &RS,
    span: Span,
1484
    principal_trait_ref: Option<&ty::TraitRef<'tcx>>, // None for boxed closures
1485 1486 1487 1488
    partitioned_bounds: PartitionedBounds)
    -> ty::ExistentialBounds
    where AC: AstConv<'tcx>, RS:RegionScope
{
1489 1490
    let PartitionedBounds { builtin_bounds,
                            trait_bounds,
1491
                            region_bounds } =
1492
        partitioned_bounds;
1493 1494

    if !trait_bounds.is_empty() {
1495
        let b = &trait_bounds[0];
1496
        this.tcx().sess.span_err(
1497
            b.trait_ref.path.span,
1498 1499 1500 1501 1502 1503 1504 1505
            format!("only the builtin traits can be used \
                     as closure or object bounds").as_slice());
    }

    let region_bound = compute_region_bound(this,
                                            rscope,
                                            span,
                                            region_bounds.as_slice(),
1506 1507
                                            principal_trait_ref,
                                            builtin_bounds);
1508 1509 1510 1511 1512 1513 1514

    ty::ExistentialBounds {
        region_bound: region_bound,
        builtin_bounds: builtin_bounds,
    }
}

S
Steve Klabnik 已提交
1515 1516 1517 1518
/// 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`.
1519 1520 1521 1522 1523 1524
fn compute_opt_region_bound<'tcx>(tcx: &ty::ctxt<'tcx>,
                                  span: Span,
                                  explicit_region_bounds: &[&ast::Lifetime],
                                  principal_trait_ref: Option<&ty::TraitRef<'tcx>>,
                                  builtin_bounds: ty::BuiltinBounds)
                                  -> Option<ty::Region>
1525
{
1526 1527 1528 1529 1530 1531 1532
    debug!("compute_opt_region_bound(explicit_region_bounds={}, \
           principal_trait_ref={}, builtin_bounds={})",
           explicit_region_bounds,
           principal_trait_ref.repr(tcx),
           builtin_bounds.repr(tcx));

    if explicit_region_bounds.len() > 1 {
1533
        tcx.sess.span_err(
1534
            explicit_region_bounds[1].span,
1535 1536 1537
            format!("only a single explicit lifetime bound is permitted").as_slice());
    }

1538
    if explicit_region_bounds.len() != 0 {
1539
        // Explicitly specified region bound. Use that.
1540
        let r = explicit_region_bounds[0];
1541 1542 1543 1544 1545 1546
        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 =
1547
        ty::object_region_bounds(tcx, principal_trait_ref, builtin_bounds);
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563

    // 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.
1564
    let r = derived_region_bounds[0];
1565 1566 1567 1568 1569 1570 1571 1572 1573
    if derived_region_bounds.slice_from(1).iter().any(|r1| r != *r1) {
        tcx.sess.span_err(
            span,
            format!("ambiguous lifetime bound, \
                     explicit lifetime bound required").as_slice());
    }
    return Some(r);
}

S
Steve Klabnik 已提交
1574 1575 1576
/// 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.
1577
fn compute_region_bound<'tcx, AC: AstConv<'tcx>, RS:RegionScope>(
1578 1579 1580 1581
    this: &AC,
    rscope: &RS,
    span: Span,
    region_bounds: &[&ast::Lifetime],
1582 1583
    principal_trait_ref: Option<&ty::TraitRef<'tcx>>, // None for closures
    builtin_bounds: ty::BuiltinBounds)
1584 1585
    -> ty::Region
{
1586 1587
    match compute_opt_region_bound(this.tcx(), span, region_bounds,
                                   principal_trait_ref, builtin_bounds) {
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
        Some(r) => r,
        None => {
            match rscope.default_region_bound(span) {
                Some(r) => { r }
                None => {
                    this.tcx().sess.span_err(
                        span,
                        format!("explicit lifetime bound required").as_slice());
                    ty::ReStatic
                }
            }
        }
    }
}

pub struct PartitionedBounds<'a> {
    pub builtin_bounds: ty::BuiltinBounds,
1605
    pub trait_bounds: Vec<&'a ast::PolyTraitRef>,
1606 1607 1608
    pub region_bounds: Vec<&'a ast::Lifetime>,
}

S
Steve Klabnik 已提交
1609 1610
/// Divides a list of bounds from the AST into three groups: builtin bounds (Copy, Sized etc),
/// general trait bounds, and region bounds.
1611 1612 1613 1614 1615 1616 1617 1618
pub fn partition_bounds<'a>(tcx: &ty::ctxt,
                            _span: Span,
                            ast_bounds: &'a [&ast::TyParamBound])
                            -> PartitionedBounds<'a>
{
    let mut builtin_bounds = ty::empty_builtin_bounds();
    let mut region_bounds = Vec::new();
    let mut trait_bounds = Vec::new();
1619
    let mut trait_def_ids = DefIdMap::new();
1620 1621 1622
    for &ast_bound in ast_bounds.iter() {
        match *ast_bound {
            ast::TraitTyParamBound(ref b) => {
N
Niko Matsakis 已提交
1623
                match ::lookup_def_tcx(tcx, b.trait_ref.path.span, b.trait_ref.ref_id) {
1624
                    def::DefTrait(trait_did) => {
1625
                        match trait_def_ids.get(&trait_did) {
1626 1627 1628 1629 1630
                            // Already seen this trait. We forbid
                            // duplicates in the list (for some
                            // reason).
                            Some(span) => {
                                span_err!(
1631
                                    tcx.sess, b.trait_ref.path.span, E0127,
1632 1633
                                    "trait `{}` already appears in the \
                                     list of bounds",
1634
                                    b.trait_ref.path.user_string(tcx));
1635 1636 1637 1638 1639
                                tcx.sess.span_note(
                                    *span,
                                    "previous appearance is here");

                                continue;
1640
                            }
1641 1642

                            None => { }
1643
                        }
1644

1645
                        trait_def_ids.insert(trait_did, b.trait_ref.path.span);
1646 1647 1648 1649 1650

                        if ty::try_add_builtin_trait(tcx,
                                                     trait_did,
                                                     &mut builtin_bounds) {
                            continue; // success
1651 1652
                        }
                    }
1653 1654 1655 1656
                    _ => {
                        // Not a trait? that's an error, but it'll get
                        // reported later.
                    }
1657
                }
1658 1659 1660 1661 1662
                trait_bounds.push(b);
            }
            ast::RegionTyParamBound(ref l) => {
                region_bounds.push(l);
            }
1663
        }
1664 1665 1666 1667 1668 1669
    }

    PartitionedBounds {
        builtin_bounds: builtin_bounds,
        trait_bounds: trait_bounds,
        region_bounds: region_bounds,
1670 1671
    }
}