lib.rs 186.8 KB
Newer Older
1
// Copyright 2012-2015 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.

11
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
A
Alex Crichton 已提交
12
      html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
13
      html_root_url = "https://doc.rust-lang.org/nightly/")]
14

15
#![feature(crate_visibility_modifier)]
A
Alex Crichton 已提交
16
#![feature(rustc_diagnostic_macros)]
17
#![feature(slice_sort_by_cached_key)]
18

C
corentih 已提交
19 20 21 22
#[macro_use]
extern crate log;
#[macro_use]
extern crate syntax;
23 24
extern crate syntax_pos;
extern crate rustc_errors as errors;
25
extern crate arena;
C
corentih 已提交
26
#[macro_use]
27
extern crate rustc;
28
extern crate rustc_data_structures;
29

S
Steven Fackler 已提交
30 31 32 33
use self::Namespace::*;
use self::TypeParameters::*;
use self::RibKind::*;

34
use rustc::hir::map::{Definitions, DefCollector};
35
use rustc::hir::{self, PrimTy, TyBool, TyChar, TyFloat, TyInt, TyUint, TyStr};
36
use rustc::middle::cstore::{CrateStore, CrateLoader};
37 38
use rustc::session::Session;
use rustc::lint;
39
use rustc::hir::def::*;
40
use rustc::hir::def_id::{CRATE_DEF_INDEX, LOCAL_CRATE, DefId};
41
use rustc::ty;
S
Seo Sanghyeon 已提交
42
use rustc::hir::{Freevar, FreevarMap, TraitCandidate, TraitMap, GlobMap};
43
use rustc::util::nodemap::{NodeMap, NodeSet, FxHashMap, FxHashSet, DefIdMap};
44

45
use syntax::codemap::CodeMap;
46
use syntax::ext::hygiene::{Mark, MarkKind, SyntaxContext};
V
Vadim Petrochenkov 已提交
47
use syntax::ast::{self, Name, NodeId, Ident, FloatTy, IntTy, UintTy};
J
Jeffrey Seyfried 已提交
48
use syntax::ext::base::SyntaxExtension;
J
Jeffrey Seyfried 已提交
49
use syntax::ext::base::Determinacy::{self, Determined, Undetermined};
50
use syntax::ext::base::MacroKind;
51
use syntax::symbol::{Symbol, keywords};
52
use syntax::util::lev_distance::find_best_match_for_name;
53

54
use syntax::visit::{self, FnKind, Visitor};
55
use syntax::attr;
56
use syntax::ast::{Arm, BindingMode, Block, Crate, Expr, ExprKind};
57
use syntax::ast::{FnDecl, ForeignItem, ForeignItemKind, GenericParam, Generics};
58
use syntax::ast::{Item, ItemKind, ImplItem, ImplItemKind};
59
use syntax::ast::{Label, Local, Mutability, Pat, PatKind, Path};
J
Jeffrey Seyfried 已提交
60
use syntax::ast::{QSelf, TraitItemKind, TraitRef, Ty, TyKind};
M
Mark Mansi 已提交
61
use syntax::feature_gate::{feature_err, GateIssue};
62
use syntax::ptr::P;
63

64
use syntax_pos::{Span, DUMMY_SP, MultiSpan};
65
use errors::{DiagnosticBuilder, DiagnosticId};
66

67
use std::cell::{Cell, RefCell};
68
use std::cmp;
69
use std::collections::BTreeSet;
70
use std::fmt;
M
Manish Goregaokar 已提交
71
use std::iter;
72
use std::mem::replace;
73
use rustc_data_structures::sync::Lrc;
74

75
use resolve_imports::{ImportDirective, ImportDirectiveSubclass, NameResolution, ImportResolver};
76
use macros::{InvocationData, LegacyBinding, LegacyScope, MacroBinding};
77

78 79
// NB: This module needs to be declared first so diagnostics are
// registered before they are used.
J
Jeffrey Seyfried 已提交
80
mod diagnostics;
81

82
mod macros;
A
Alex Crichton 已提交
83
mod check_unused;
84
mod build_reduced_graph;
85
mod resolve_imports;
86

87 88 89
/// A free importable items suggested in case of resolution failure.
struct ImportSuggestion {
    path: Path,
90 91
}

92 93 94 95 96
/// A field or associated item from self type suggested in case of resolution failure.
enum AssocSuggestion {
    Field,
    MethodWithSelf,
    AssocItem,
97 98
}

99 100 101
#[derive(Eq)]
struct BindingError {
    name: Name,
102 103
    origin: BTreeSet<Span>,
    target: BTreeSet<Span>,
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
}

impl PartialOrd for BindingError {
    fn partial_cmp(&self, other: &BindingError) -> Option<cmp::Ordering> {
        Some(self.cmp(other))
    }
}

impl PartialEq for BindingError {
    fn eq(&self, other: &BindingError) -> bool {
        self.name == other.name
    }
}

impl Ord for BindingError {
    fn cmp(&self, other: &BindingError) -> cmp::Ordering {
        self.name.cmp(&other.name)
    }
}

J
Jeffrey Seyfried 已提交
124
enum ResolutionError<'a> {
125
    /// error E0401: can't use type parameters from outer function
126
    TypeParametersFromOuterFunction(Def),
127
    /// error E0403: the name is already used for a type parameter in this type parameter list
C
Chris Stankus 已提交
128
    NameAlreadyUsedInTypeParameterList(Name, &'a Span),
129
    /// error E0407: method is not a member of trait
130
    MethodNotMemberOfTrait(Name, &'a str),
131 132 133 134
    /// error E0437: type is not a member of trait
    TypeNotMemberOfTrait(Name, &'a str),
    /// error E0438: const is not a member of trait
    ConstNotMemberOfTrait(Name, &'a str),
135 136 137 138
    /// error E0408: variable `{}` is not bound in all patterns
    VariableNotBoundInPattern(&'a BindingError),
    /// error E0409: variable `{}` is bound in inconsistent ways within the same match arm
    VariableBoundWithDifferentMode(Name, Span),
139
    /// error E0415: identifier is bound more than once in this parameter list
140
    IdentifierBoundMoreThanOnceInParameterList(&'a str),
141
    /// error E0416: identifier is bound more than once in the same pattern
142
    IdentifierBoundMoreThanOnceInSamePattern(&'a str),
143
    /// error E0426: use of undeclared label
144
    UndeclaredLabel(&'a str, Option<Name>),
145
    /// error E0429: `self` imports are only allowed within a { } list
146
    SelfImportsOnlyAllowedWithin,
147
    /// error E0430: `self` import can only appear once in the list
148
    SelfImportCanOnlyAppearOnceInTheList,
149
    /// error E0431: `self` import can only appear in an import list with a non-empty prefix
150
    SelfImportOnlyInImportListWithNonEmptyPrefix,
151
    /// error E0432: unresolved import
152
    UnresolvedImport(Option<(Span, &'a str, &'a str)>),
153
    /// error E0433: failed to resolve
154
    FailedToResolve(&'a str),
155
    /// error E0434: can't capture dynamic environment in a fn item
156
    CannotCaptureDynamicEnvironmentInFnItem,
157
    /// error E0435: attempt to use a non-constant value in a constant
158
    AttemptToUseNonConstantValueInConstant,
159
    /// error E0530: X bindings cannot shadow Ys
160
    BindingShadowsSomethingUnacceptable(&'a str, Name, &'a NameBinding<'a>),
161 162
    /// error E0128: type parameters with a default cannot use forward declared identifiers
    ForwardDeclaredTyParam,
163 164
}

165 166 167 168
/// Combines an error with provided span and emits it
///
/// This takes the error provided, combines it with the span and any additional spans inside the
/// error and emits it.
169 170 171
fn resolve_error<'sess, 'a>(resolver: &'sess Resolver,
                            span: Span,
                            resolution_error: ResolutionError<'a>) {
N
Nick Cameron 已提交
172
    resolve_struct_error(resolver, span, resolution_error).emit();
N
Nick Cameron 已提交
173 174
}

175 176 177 178
fn resolve_struct_error<'sess, 'a>(resolver: &'sess Resolver,
                                   span: Span,
                                   resolution_error: ResolutionError<'a>)
                                   -> DiagnosticBuilder<'sess> {
N
Nick Cameron 已提交
179
    match resolution_error {
180
        ResolutionError::TypeParametersFromOuterFunction(outer_def) => {
181 182 183
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0401,
184
                                           "can't use type parameters from outer function");
185
            err.span_label(span, "use of type variable from outer function");
186 187

            let cm = resolver.session.codemap();
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
            match outer_def {
                Def::SelfTy(_, maybe_impl_defid) => {
                    if let Some(impl_span) = maybe_impl_defid.map_or(None,
                            |def_id| resolver.definitions.opt_span(def_id)) {
                        err.span_label(reduce_impl_span_to_impl_keyword(cm, impl_span),
                                    "`Self` type implicitely declared here, on the `impl`");
                    }
                },
                Def::TyParam(typaram_defid) => {
                    if let Some(typaram_span) = resolver.definitions.opt_span(typaram_defid) {
                        err.span_label(typaram_span, "type variable from outer function");
                    }
                },
                Def::Mod(..) | Def::Struct(..) | Def::Union(..) | Def::Enum(..) | Def::Variant(..) |
                Def::Trait(..) | Def::TyAlias(..) | Def::TyForeign(..) | Def::TraitAlias(..) |
                Def::AssociatedTy(..) | Def::PrimTy(..) | Def::Fn(..) | Def::Const(..) |
                Def::Static(..) | Def::StructCtor(..) | Def::VariantCtor(..) | Def::Method(..) |
                Def::AssociatedConst(..) | Def::Local(..) | Def::Upvar(..) | Def::Label(..) |
                Def::Macro(..) | Def::GlobalAsm(..) | Def::Err =>
                    bug!("TypeParametersFromOuterFunction should only be used with Def::SelfTy or \
                         Def::TyParam")
            }

            // Try to retrieve the span of the function signature and generate a new message with
            // a local type parameter
            let sugg_msg = "try using a local type parameter instead";
214
            if let Some((sugg_span, new_snippet)) = cm.generate_local_type_param_snippet(span) {
215 216 217 218
                // Suggest the modification to the user
                err.span_suggestion(sugg_span,
                                    sugg_msg,
                                    new_snippet);
219
            } else if let Some(sp) = cm.generate_fn_name_span(span) {
220
                err.span_label(sp, "try adding a local type parameter in this method instead");
221 222 223 224
            } else {
                err.help("try using a local type parameter instead");
            }

225
            err
C
corentih 已提交
226
        }
C
Chris Stankus 已提交
227 228 229 230 231 232 233
        ResolutionError::NameAlreadyUsedInTypeParameterList(name, first_use_span) => {
             let mut err = struct_span_err!(resolver.session,
                                            span,
                                            E0403,
                                            "the name `{}` is already used for a type parameter \
                                            in this type parameter list",
                                            name);
234 235
             err.span_label(span, "already used");
             err.span_label(first_use_span.clone(), format!("first use of `{}`", name));
C
Chris Stankus 已提交
236
             err
C
corentih 已提交
237
        }
238
        ResolutionError::MethodNotMemberOfTrait(method, trait_) => {
C
crypto-universe 已提交
239 240 241 242 243 244
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0407,
                                           "method `{}` is not a member of trait `{}`",
                                           method,
                                           trait_);
245
            err.span_label(span, format!("not a member of trait `{}`", trait_));
C
crypto-universe 已提交
246
            err
C
corentih 已提交
247
        }
248
        ResolutionError::TypeNotMemberOfTrait(type_, trait_) => {
S
Shyam Sundar B 已提交
249
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
250 251 252 253
                             span,
                             E0437,
                             "type `{}` is not a member of trait `{}`",
                             type_,
S
Shyam Sundar B 已提交
254
                             trait_);
255
            err.span_label(span, format!("not a member of trait `{}`", trait_));
S
Shyam Sundar B 已提交
256
            err
C
corentih 已提交
257
        }
258
        ResolutionError::ConstNotMemberOfTrait(const_, trait_) => {
S
Shyam Sundar B 已提交
259
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
260 261 262 263
                             span,
                             E0438,
                             "const `{}` is not a member of trait `{}`",
                             const_,
S
Shyam Sundar B 已提交
264
                             trait_);
265
            err.span_label(span, format!("not a member of trait `{}`", trait_));
S
Shyam Sundar B 已提交
266
            err
C
corentih 已提交
267
        }
268
        ResolutionError::VariableNotBoundInPattern(binding_error) => {
269
            let target_sp = binding_error.target.iter().map(|x| *x).collect::<Vec<_>>();
270 271
            let msp = MultiSpan::from_spans(target_sp.clone());
            let msg = format!("variable `{}` is not bound in all patterns", binding_error.name);
272 273 274 275 276
            let mut err = resolver.session.struct_span_err_with_code(
                msp,
                &msg,
                DiagnosticId::Error("E0408".into()),
            );
277
            for sp in target_sp {
278
                err.span_label(sp, format!("pattern doesn't bind `{}`", binding_error.name));
279
            }
280
            let origin_sp = binding_error.origin.iter().map(|x| *x).collect::<Vec<_>>();
281
            for sp in origin_sp {
282
                err.span_label(sp, "variable not in all patterns");
283
            }
284
            err
C
corentih 已提交
285
        }
M
Mikhail Modin 已提交
286 287 288
        ResolutionError::VariableBoundWithDifferentMode(variable_name,
                                                        first_binding_span) => {
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
289 290
                             span,
                             E0409,
291 292 293
                             "variable `{}` is bound in inconsistent \
                             ways within the same match arm",
                             variable_name);
294 295
            err.span_label(span, "bound in different ways");
            err.span_label(first_binding_span, "first binding");
M
Mikhail Modin 已提交
296
            err
C
corentih 已提交
297
        }
298
        ResolutionError::IdentifierBoundMoreThanOnceInParameterList(identifier) => {
299
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
300 301 302
                             span,
                             E0415,
                             "identifier `{}` is bound more than once in this parameter list",
303
                             identifier);
304
            err.span_label(span, "used as parameter more than once");
305
            err
C
corentih 已提交
306
        }
307
        ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(identifier) => {
308
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
309 310 311
                             span,
                             E0416,
                             "identifier `{}` is bound more than once in the same pattern",
312
                             identifier);
313
            err.span_label(span, "used in a pattern more than once");
314
            err
C
corentih 已提交
315
        }
316
        ResolutionError::UndeclaredLabel(name, lev_candidate) => {
C
crypto-universe 已提交
317 318 319 320 321
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0426,
                                           "use of undeclared label `{}`",
                                           name);
322 323 324 325 326
            if let Some(lev_candidate) = lev_candidate {
                err.span_label(span, format!("did you mean `{}`?", lev_candidate));
            } else {
                err.span_label(span, format!("undeclared label `{}`", name));
            }
C
crypto-universe 已提交
327
            err
C
corentih 已提交
328
        }
329
        ResolutionError::SelfImportsOnlyAllowedWithin => {
N
Nick Cameron 已提交
330 331 332 333 334
            struct_span_err!(resolver.session,
                             span,
                             E0429,
                             "{}",
                             "`self` imports are only allowed within a { } list")
C
corentih 已提交
335
        }
336
        ResolutionError::SelfImportCanOnlyAppearOnceInTheList => {
E
Esteban Küber 已提交
337 338 339 340
            let mut err = struct_span_err!(resolver.session, span, E0430,
                                           "`self` import can only appear once in an import list");
            err.span_label(span, "can only appear once in an import list");
            err
C
corentih 已提交
341
        }
342
        ResolutionError::SelfImportOnlyInImportListWithNonEmptyPrefix => {
E
Esteban Küber 已提交
343 344 345 346 347
            let mut err = struct_span_err!(resolver.session, span, E0431,
                                           "`self` import can only appear in an import list with \
                                            a non-empty prefix");
            err.span_label(span, "can only appear in an import list with a non-empty prefix");
            err
348
        }
349
        ResolutionError::UnresolvedImport(name) => {
350 351 352
            let (span, msg) = match name {
                Some((sp, n, _)) => (sp, format!("unresolved import `{}`", n)),
                None => (span, "unresolved import".to_owned()),
353
            };
K
Knight 已提交
354
            let mut err = struct_span_err!(resolver.session, span, E0432, "{}", msg);
355
            if let Some((_, _, p)) = name {
356
                err.span_label(span, p);
K
Knight 已提交
357 358
            }
            err
C
corentih 已提交
359
        }
360
        ResolutionError::FailedToResolve(msg) => {
J
Jonathan Turner 已提交
361 362
            let mut err = struct_span_err!(resolver.session, span, E0433,
                                           "failed to resolve. {}", msg);
363
            err.span_label(span, msg);
364
            err
C
corentih 已提交
365
        }
366
        ResolutionError::CannotCaptureDynamicEnvironmentInFnItem => {
E
Esteban Küber 已提交
367 368 369 370 371 372 373
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0434,
                                           "{}",
                                           "can't capture dynamic environment in a fn item");
            err.help("use the `|| { ... }` closure form instead");
            err
C
corentih 已提交
374 375
        }
        ResolutionError::AttemptToUseNonConstantValueInConstant => {
E
Esteban Küber 已提交
376 377
            let mut err = struct_span_err!(resolver.session, span, E0435,
                                           "attempt to use a non-constant value in a constant");
378
            err.span_label(span, "non-constant value");
S
Shyam Sundar B 已提交
379
            err
C
corentih 已提交
380
        }
381
        ResolutionError::BindingShadowsSomethingUnacceptable(what_binding, name, binding) => {
382
            let shadows_what = PathResolution::new(binding.def()).kind_name();
383 384
            let mut err = struct_span_err!(resolver.session,
                                           span,
385
                                           E0530,
386
                                           "{}s cannot shadow {}s", what_binding, shadows_what);
387
            err.span_label(span, format!("cannot be named the same as a {}", shadows_what));
388
            let participle = if binding.is_import() { "imported" } else { "defined" };
389
            let msg = format!("a {} `{}` is {} here", shadows_what, name, participle);
390
            err.span_label(binding.span, msg);
391 392
            err
        }
393 394 395 396
        ResolutionError::ForwardDeclaredTyParam => {
            let mut err = struct_span_err!(resolver.session, span, E0128,
                                           "type parameters with a default cannot use \
                                            forward declared identifiers");
E
Esteban Küber 已提交
397
            err.span_label(span, format!("defaulted type parameters cannot be forward declared"));
398 399
            err
        }
N
Nick Cameron 已提交
400
    }
401 402
}

403 404 405 406 407 408 409 410 411 412 413 414 415
/// Adjust the impl span so that just the `impl` keyword is taken by removing
/// everything after `<` (`"impl<T> Iterator for A<T> {}" -> "impl"`) and
/// everything after the first whitespace (`"impl Iterator for A" -> "impl"`)
///
/// Attention: The method used is very fragile since it essentially duplicates the work of the
/// parser. If you need to use this function or something similar, please consider updating the
/// codemap functions and this function to something more robust.
fn reduce_impl_span_to_impl_keyword(cm: &CodeMap, impl_span: Span) -> Span {
    let impl_span = cm.span_until_char(impl_span, '<');
    let impl_span = cm.span_until_whitespace(impl_span);
    impl_span
}

416
#[derive(Copy, Clone, Debug)]
417
struct BindingInfo {
418
    span: Span,
419
    binding_mode: BindingMode,
420 421
}

422
/// Map from the name in a pattern to its binding mode.
423
type BindingMap = FxHashMap<Ident, BindingInfo>;
424

425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
enum PatternSource {
    Match,
    IfLet,
    WhileLet,
    Let,
    For,
    FnParam,
}

impl PatternSource {
    fn descr(self) -> &'static str {
        match self {
            PatternSource::Match => "match binding",
            PatternSource::IfLet => "if let binding",
            PatternSource::WhileLet => "while let binding",
            PatternSource::Let => "let binding",
            PatternSource::For => "for binding",
            PatternSource::FnParam => "function parameter",
        }
    }
446 447
}

A
Alex Burka 已提交
448 449 450 451 452 453
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
enum AliasPossibility {
    No,
    Maybe,
}

454 455 456 457 458
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
enum PathSource<'a> {
    // Type paths `Path`.
    Type,
    // Trait paths in bounds or impls.
A
Alex Burka 已提交
459
    Trait(AliasPossibility),
460
    // Expression paths `path`, with optional parent context.
461
    Expr(Option<&'a Expr>),
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
    // Paths in path patterns `Path`.
    Pat,
    // Paths in struct expressions and patterns `Path { .. }`.
    Struct,
    // Paths in tuple struct patterns `Path(..)`.
    TupleStruct,
    // `m::A::B` in `<T as m::A>::B::C`.
    TraitItem(Namespace),
    // Path in `pub(path)`
    Visibility,
    // Path in `use a::b::{...};`
    ImportPrefix,
}

impl<'a> PathSource<'a> {
    fn namespace(self) -> Namespace {
        match self {
A
Alex Burka 已提交
479
            PathSource::Type | PathSource::Trait(_) | PathSource::Struct |
480 481 482 483 484 485 486 487 488 489 490
            PathSource::Visibility | PathSource::ImportPrefix => TypeNS,
            PathSource::Expr(..) | PathSource::Pat | PathSource::TupleStruct => ValueNS,
            PathSource::TraitItem(ns) => ns,
        }
    }

    fn global_by_default(self) -> bool {
        match self {
            PathSource::Visibility | PathSource::ImportPrefix => true,
            PathSource::Type | PathSource::Expr(..) | PathSource::Pat |
            PathSource::Struct | PathSource::TupleStruct |
A
Alex Burka 已提交
491
            PathSource::Trait(_) | PathSource::TraitItem(..) => false,
492 493 494 495 496 497 498
        }
    }

    fn defer_to_typeck(self) -> bool {
        match self {
            PathSource::Type | PathSource::Expr(..) | PathSource::Pat |
            PathSource::Struct | PathSource::TupleStruct => true,
A
Alex Burka 已提交
499
            PathSource::Trait(_) | PathSource::TraitItem(..) |
500 501 502 503 504 505 506
            PathSource::Visibility | PathSource::ImportPrefix => false,
        }
    }

    fn descr_expected(self) -> &'static str {
        match self {
            PathSource::Type => "type",
A
Alex Burka 已提交
507
            PathSource::Trait(_) => "trait",
508 509 510 511 512 513 514 515 516 517
            PathSource::Pat => "unit struct/variant or constant",
            PathSource::Struct => "struct, variant or union type",
            PathSource::TupleStruct => "tuple struct/variant",
            PathSource::Visibility => "module",
            PathSource::ImportPrefix => "module or enum",
            PathSource::TraitItem(ns) => match ns {
                TypeNS => "associated type",
                ValueNS => "method or associated constant",
                MacroNS => bug!("associated macro"),
            },
518
            PathSource::Expr(parent) => match parent.map(|p| &p.node) {
519 520 521 522 523 524 525 526 527 528 529 530 531
                // "function" here means "anything callable" rather than `Def::Fn`,
                // this is not precise but usually more helpful than just "value".
                Some(&ExprKind::Call(..)) => "function",
                _ => "value",
            },
        }
    }

    fn is_expected(self, def: Def) -> bool {
        match self {
            PathSource::Type => match def {
                Def::Struct(..) | Def::Union(..) | Def::Enum(..) |
                Def::Trait(..) | Def::TyAlias(..) | Def::AssociatedTy(..) |
P
Paul Lietar 已提交
532 533
                Def::PrimTy(..) | Def::TyParam(..) | Def::SelfTy(..) |
                Def::TyForeign(..) => true,
534 535
                _ => false,
            },
A
Alex Burka 已提交
536 537 538 539 540
            PathSource::Trait(AliasPossibility::No) => match def {
                Def::Trait(..) => true,
                _ => false,
            },
            PathSource::Trait(AliasPossibility::Maybe) => match def {
541
                Def::Trait(..) => true,
A
Alex Burka 已提交
542
                Def::TraitAlias(..) => true,
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
                _ => false,
            },
            PathSource::Expr(..) => match def {
                Def::StructCtor(_, CtorKind::Const) | Def::StructCtor(_, CtorKind::Fn) |
                Def::VariantCtor(_, CtorKind::Const) | Def::VariantCtor(_, CtorKind::Fn) |
                Def::Const(..) | Def::Static(..) | Def::Local(..) | Def::Upvar(..) |
                Def::Fn(..) | Def::Method(..) | Def::AssociatedConst(..) => true,
                _ => false,
            },
            PathSource::Pat => match def {
                Def::StructCtor(_, CtorKind::Const) |
                Def::VariantCtor(_, CtorKind::Const) |
                Def::Const(..) | Def::AssociatedConst(..) => true,
                _ => false,
            },
            PathSource::TupleStruct => match def {
                Def::StructCtor(_, CtorKind::Fn) | Def::VariantCtor(_, CtorKind::Fn) => true,
                _ => false,
            },
            PathSource::Struct => match def {
                Def::Struct(..) | Def::Union(..) | Def::Variant(..) |
                Def::TyAlias(..) | Def::AssociatedTy(..) | Def::SelfTy(..) => true,
                _ => false,
            },
            PathSource::TraitItem(ns) => match def {
                Def::AssociatedConst(..) | Def::Method(..) if ns == ValueNS => true,
                Def::AssociatedTy(..) if ns == TypeNS => true,
                _ => false,
            },
            PathSource::ImportPrefix => match def {
                Def::Mod(..) | Def::Enum(..) => true,
                _ => false,
            },
            PathSource::Visibility => match def {
                Def::Mod(..) => true,
                _ => false,
            },
        }
    }

    fn error_code(self, has_unexpected_resolution: bool) -> &'static str {
        __diagnostic_used!(E0404);
        __diagnostic_used!(E0405);
        __diagnostic_used!(E0412);
        __diagnostic_used!(E0422);
        __diagnostic_used!(E0423);
        __diagnostic_used!(E0425);
        __diagnostic_used!(E0531);
        __diagnostic_used!(E0532);
        __diagnostic_used!(E0573);
        __diagnostic_used!(E0574);
        __diagnostic_used!(E0575);
        __diagnostic_used!(E0576);
        __diagnostic_used!(E0577);
        __diagnostic_used!(E0578);
        match (self, has_unexpected_resolution) {
A
Alex Burka 已提交
599 600
            (PathSource::Trait(_), true) => "E0404",
            (PathSource::Trait(_), false) => "E0405",
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
            (PathSource::Type, true) => "E0573",
            (PathSource::Type, false) => "E0412",
            (PathSource::Struct, true) => "E0574",
            (PathSource::Struct, false) => "E0422",
            (PathSource::Expr(..), true) => "E0423",
            (PathSource::Expr(..), false) => "E0425",
            (PathSource::Pat, true) | (PathSource::TupleStruct, true) => "E0532",
            (PathSource::Pat, false) | (PathSource::TupleStruct, false) => "E0531",
            (PathSource::TraitItem(..), true) => "E0575",
            (PathSource::TraitItem(..), false) => "E0576",
            (PathSource::Visibility, true) | (PathSource::ImportPrefix, true) => "E0577",
            (PathSource::Visibility, false) | (PathSource::ImportPrefix, false) => "E0578",
        }
    }
}

617 618 619
/// Different kinds of symbols don't influence each other.
///
/// Therefore, they have a separate universe (namespace).
620
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
G
Garming Sam 已提交
621
pub enum Namespace {
622
    TypeNS,
C
corentih 已提交
623
    ValueNS,
624
    MacroNS,
625 626
}

627
/// Just a helper ‒ separate structure for each namespace.
J
Jeffrey Seyfried 已提交
628 629 630 631
#[derive(Clone, Default, Debug)]
pub struct PerNS<T> {
    value_ns: T,
    type_ns: T,
632
    macro_ns: T,
J
Jeffrey Seyfried 已提交
633 634 635 636 637 638 639 640
}

impl<T> ::std::ops::Index<Namespace> for PerNS<T> {
    type Output = T;
    fn index(&self, ns: Namespace) -> &T {
        match ns {
            ValueNS => &self.value_ns,
            TypeNS => &self.type_ns,
641
            MacroNS => &self.macro_ns,
J
Jeffrey Seyfried 已提交
642 643 644 645 646 647 648 649 650
        }
    }
}

impl<T> ::std::ops::IndexMut<Namespace> for PerNS<T> {
    fn index_mut(&mut self, ns: Namespace) -> &mut T {
        match ns {
            ValueNS => &mut self.value_ns,
            TypeNS => &mut self.type_ns,
651
            MacroNS => &mut self.macro_ns,
J
Jeffrey Seyfried 已提交
652 653 654 655
        }
    }
}

656 657 658
struct UsePlacementFinder {
    target_module: NodeId,
    span: Option<Span>,
659
    found_use: bool,
660 661
}

662 663 664 665 666 667 668 669 670 671 672 673
impl UsePlacementFinder {
    fn check(krate: &Crate, target_module: NodeId) -> (Option<Span>, bool) {
        let mut finder = UsePlacementFinder {
            target_module,
            span: None,
            found_use: false,
        };
        visit::walk_crate(&mut finder, krate);
        (finder.span, finder.found_use)
    }
}

674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
impl<'tcx> Visitor<'tcx> for UsePlacementFinder {
    fn visit_mod(
        &mut self,
        module: &'tcx ast::Mod,
        _: Span,
        _: &[ast::Attribute],
        node_id: NodeId,
    ) {
        if self.span.is_some() {
            return;
        }
        if node_id != self.target_module {
            visit::walk_mod(self, module);
            return;
        }
        // find a use statement
        for item in &module.items {
            match item.node {
                ItemKind::Use(..) => {
                    // don't suggest placing a use before the prelude
                    // import or other generated ones
695
                    if item.span.ctxt().outer().expn_info().is_none() {
696
                        self.span = Some(item.span.shrink_to_lo());
697
                        self.found_use = true;
698 699 700 701 702 703 704
                        return;
                    }
                },
                // don't place use before extern crate
                ItemKind::ExternCrate(_) => {}
                // but place them before the first other item
                _ => if self.span.map_or(true, |span| item.span < span ) {
705 706 707
                    if item.span.ctxt().outer().expn_info().is_none() {
                        // don't insert between attributes and an item
                        if item.attrs.is_empty() {
708
                            self.span = Some(item.span.shrink_to_lo());
709 710 711 712
                        } else {
                            // find the first attribute on the item
                            for attr in &item.attrs {
                                if self.span.map_or(true, |span| attr.span < span) {
713
                                    self.span = Some(attr.span.shrink_to_lo());
714 715 716 717
                                }
                            }
                        }
                    }
718 719 720 721 722 723
                },
            }
        }
    }
}

724
/// This thing walks the whole crate in DFS manner, visiting each item, resolving names as it goes.
725 726
impl<'a, 'tcx> Visitor<'tcx> for Resolver<'a> {
    fn visit_item(&mut self, item: &'tcx Item) {
A
Alex Crichton 已提交
727
        self.resolve_item(item);
728
    }
729
    fn visit_arm(&mut self, arm: &'tcx Arm) {
A
Alex Crichton 已提交
730
        self.resolve_arm(arm);
731
    }
732
    fn visit_block(&mut self, block: &'tcx Block) {
A
Alex Crichton 已提交
733
        self.resolve_block(block);
734
    }
735 736 737 738 739
    fn visit_anon_const(&mut self, constant: &'tcx ast::AnonConst) {
        self.with_constant_rib(|this| {
            visit::walk_anon_const(this, constant);
        });
    }
740
    fn visit_expr(&mut self, expr: &'tcx Expr) {
741
        self.resolve_expr(expr, None);
742
    }
743
    fn visit_local(&mut self, local: &'tcx Local) {
A
Alex Crichton 已提交
744
        self.resolve_local(local);
745
    }
746
    fn visit_ty(&mut self, ty: &'tcx Ty) {
747 748 749 750 751 752 753 754 755 756 757
        match ty.node {
            TyKind::Path(ref qself, ref path) => {
                self.smart_resolve_path(ty.id, qself.as_ref(), path, PathSource::Type);
            }
            TyKind::ImplicitSelf => {
                let self_ty = keywords::SelfType.ident();
                let def = self.resolve_ident_in_lexical_scope(self_ty, TypeNS, true, ty.span)
                              .map_or(Def::Err, |d| d.def());
                self.record_def(ty.id, PathResolution::new(def));
            }
            _ => (),
758 759
        }
        visit::walk_ty(self, ty);
760
    }
761 762 763
    fn visit_poly_trait_ref(&mut self,
                            tref: &'tcx ast::PolyTraitRef,
                            m: &'tcx ast::TraitBoundModifier) {
764
        self.smart_resolve_path(tref.trait_ref.ref_id, None,
A
Alex Burka 已提交
765
                                &tref.trait_ref.path, PathSource::Trait(AliasPossibility::Maybe));
766
        visit::walk_poly_trait_ref(self, tref, m);
767
    }
768
    fn visit_foreign_item(&mut self, foreign_item: &'tcx ForeignItem) {
769
        let type_parameters = match foreign_item.node {
770
            ForeignItemKind::Fn(_, ref generics) => {
771
                HasTypeParameters(generics, ItemRibKind)
772
            }
773
            ForeignItemKind::Static(..) => NoTypeParameters,
P
Paul Lietar 已提交
774
            ForeignItemKind::Ty => NoTypeParameters,
775
            ForeignItemKind::Macro(..) => NoTypeParameters,
776 777
        };
        self.with_type_parameter_rib(type_parameters, |this| {
778
            visit::walk_foreign_item(this, foreign_item);
779 780 781
        });
    }
    fn visit_fn(&mut self,
782 783
                function_kind: FnKind<'tcx>,
                declaration: &'tcx FnDecl,
784 785 786
                _: Span,
                node_id: NodeId) {
        let rib_kind = match function_kind {
787
            FnKind::ItemFn(..) => {
788 789
                ItemRibKind
            }
790 791
            FnKind::Method(_, _, _, _) => {
                TraitOrImplItemRibKind
792
            }
793
            FnKind::Closure(_) => ClosureRibKind(node_id),
794
        };
795 796

        // Create a value rib for the function.
J
Jeffrey Seyfried 已提交
797
        self.ribs[ValueNS].push(Rib::new(rib_kind));
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826

        // Create a label rib for the function.
        self.label_ribs.push(Rib::new(rib_kind));

        // Add each argument to the rib.
        let mut bindings_list = FxHashMap();
        for argument in &declaration.inputs {
            self.resolve_pattern(&argument.pat, PatternSource::FnParam, &mut bindings_list);

            self.visit_ty(&argument.ty);

            debug!("(resolving function) recorded argument");
        }
        visit::walk_fn_ret_ty(self, &declaration.output);

        // Resolve the function body.
        match function_kind {
            FnKind::ItemFn(.., body) |
            FnKind::Method(.., body) => {
                self.visit_block(body);
            }
            FnKind::Closure(body) => {
                self.visit_expr(body);
            }
        };

        debug!("(resolving function) leaving function");

        self.label_ribs.pop();
J
Jeffrey Seyfried 已提交
827
        self.ribs[ValueNS].pop();
828
    }
829 830 831
    fn visit_generics(&mut self, generics: &'tcx Generics) {
        // For type parameter defaults, we have to ban access
        // to following type parameters, as the Substs can only
832 833 834
        // provide previous type parameters as they're built. We
        // put all the parameters on the ban list and then remove
        // them one by one as they are processed and become available.
835
        let mut default_ban_rib = Rib::new(ForwardTyParamBanRibKind);
836 837
        default_ban_rib.bindings.extend(generics.params.iter()
            .filter_map(|p| if let GenericParam::Type(ref tp) = *p { Some(tp) } else { None })
838 839 840
            .skip_while(|p| p.default.is_none())
            .map(|p| (Ident::with_empty_ctxt(p.ident.name), Def::Err)));

841 842 843 844 845 846 847
        for param in &generics.params {
            match *param {
                GenericParam::Lifetime(_) => self.visit_generic_param(param),
                GenericParam::Type(ref ty_param) => {
                    for bound in &ty_param.bounds {
                        self.visit_ty_param_bound(bound);
                    }
848

849 850 851 852 853
                    if let Some(ref ty) = ty_param.default {
                        self.ribs[TypeNS].push(default_ban_rib);
                        self.visit_ty(ty);
                        default_ban_rib = self.ribs[TypeNS].pop().unwrap();
                    }
854

855 856 857 858
                    // Allow all following defaults to refer to this type parameter.
                    default_ban_rib.bindings.remove(&Ident::with_empty_ctxt(ty_param.ident.name));
                }
            }
859 860 861
        }
        for p in &generics.where_clause.predicates { self.visit_where_predicate(p); }
    }
862
}
863

N
Niko Matsakis 已提交
864
#[derive(Copy, Clone)]
865
enum TypeParameters<'a, 'b> {
866
    NoTypeParameters,
C
corentih 已提交
867
    HasTypeParameters(// Type parameters.
868
                      &'b Generics,
869

C
corentih 已提交
870
                      // The kind of the rib used for type parameters.
871
                      RibKind<'a>),
872 873
}

M
Mark Mansi 已提交
874 875
/// The rib kind controls the translation of local
/// definitions (`Def::Local`) to upvars (`Def::Upvar`).
N
Niko Matsakis 已提交
876
#[derive(Copy, Clone, Debug)]
877
enum RibKind<'a> {
M
Mark Mansi 已提交
878
    /// No translation needs to be applied.
879
    NormalRibKind,
880

M
Mark Mansi 已提交
881 882
    /// We passed through a closure scope at the given node ID.
    /// Translate upvars as appropriate.
883
    ClosureRibKind(NodeId /* func id */),
884

M
Mark Mansi 已提交
885 886 887 888
    /// We passed through an impl or trait and are now in one of its
    /// methods or associated types. Allow references to ty params that impl or trait
    /// binds. Disallow any other upvars (including other ty params that are
    /// upvars).
889
    TraitOrImplItemRibKind,
890

M
Mark Mansi 已提交
891
    /// We passed through an item scope. Disallow upvars.
892
    ItemRibKind,
893

M
Mark Mansi 已提交
894
    /// We're in a constant item. Can't refer to dynamic stuff.
C
corentih 已提交
895
    ConstantItemRibKind,
896

M
Mark Mansi 已提交
897
    /// We passed through a module.
898
    ModuleRibKind(Module<'a>),
899

M
Mark Mansi 已提交
900
    /// We passed through a `macro_rules!` statement
901
    MacroDefinition(DefId),
902

M
Mark Mansi 已提交
903 904 905
    /// All bindings in this rib are type parameters that can't be used
    /// from the default of a type parameter because they're not declared
    /// before said type parameter. Also see the `visit_generics` override.
906
    ForwardTyParamBanRibKind,
907 908
}

909
/// One local scope.
910 911 912
///
/// A rib represents a scope names can live in. Note that these appear in many places, not just
/// around braces. At any place where the list of accessible names (of the given namespace)
913 914 915
/// changes or a new restrictions on the name accessibility are introduced, a new rib is put onto a
/// stack. This may be, for example, a `let` statement (because it introduces variables), a macro,
/// etc.
916 917 918 919 920
///
/// Different [rib kinds](enum.RibKind) are transparent for different names.
///
/// The resolution keeps a separate stack of ribs as it traverses the AST for each namespace. When
/// resolving, the name is looked up from inside out.
J
Jorge Aparicio 已提交
921
#[derive(Debug)]
922
struct Rib<'a> {
923
    bindings: FxHashMap<Ident, Def>,
924
    kind: RibKind<'a>,
B
Brian Anderson 已提交
925
}
926

927 928
impl<'a> Rib<'a> {
    fn new(kind: RibKind<'a>) -> Rib<'a> {
929
        Rib {
930
            bindings: FxHashMap(),
931
            kind,
932
        }
933 934 935
    }
}

936 937 938 939 940
/// An intermediate resolution result.
///
/// This refers to the thing referred by a name. The difference between `Def` and `Item` is that
/// items are visible in their whole block, while defs only from the place they are defined
/// forward.
941 942
enum LexicalScopeBinding<'a> {
    Item(&'a NameBinding<'a>),
J
Jeffrey Seyfried 已提交
943
    Def(Def),
944 945
}

946
impl<'a> LexicalScopeBinding<'a> {
947
    fn item(self) -> Option<&'a NameBinding<'a>> {
948
        match self {
949
            LexicalScopeBinding::Item(binding) => Some(binding),
950 951 952
            _ => None,
        }
    }
953 954 955 956 957 958 959

    fn def(self) -> Def {
        match self {
            LexicalScopeBinding::Item(binding) => binding.def(),
            LexicalScopeBinding::Def(def) => def,
        }
    }
960 961
}

962
#[derive(Clone, Debug)]
J
Jeffrey Seyfried 已提交
963 964 965 966
enum PathResult<'a> {
    Module(Module<'a>),
    NonModule(PathResolution),
    Indeterminate,
967
    Failed(Span, String, bool /* is the error from the last segment? */),
J
Jeffrey Seyfried 已提交
968 969
}

J
Jeffrey Seyfried 已提交
970
enum ModuleKind {
971 972 973 974 975 976 977 978 979 980 981 982
    /// An anonymous module, eg. just a block.
    ///
    /// ```
    /// fn main() {
    ///     fn f() {} // (1)
    ///     { // This is an anonymous module
    ///         f(); // This resolves to (2) as we are inside the block.
    ///         fn f() {} // (2)
    ///     }
    ///     f(); // Resolves to (1)
    /// }
    /// ```
J
Jeffrey Seyfried 已提交
983
    Block(NodeId),
984 985 986
    /// Any module with a name.
    ///
    /// This could be:
987
    ///
988 989 990
    /// * A normal module ‒ either `mod from_file;` or `mod from_block { }`.
    /// * A trait or an enum (it implicitly contains associated types, methods and variant
    ///   constructors).
J
Jeffrey Seyfried 已提交
991
    Def(Def, Name),
992 993
}

994
/// One node in the tree of modules.
995
pub struct ModuleData<'a> {
J
Jeffrey Seyfried 已提交
996 997
    parent: Option<Module<'a>>,
    kind: ModuleKind,
998

999 1000
    // The def id of the closest normal module (`mod`) ancestor (including this module).
    normal_ancestor_id: DefId,
1001

1002
    resolutions: RefCell<FxHashMap<(Ident, Namespace), &'a RefCell<NameResolution<'a>>>>,
1003
    legacy_macro_resolutions: RefCell<Vec<(Mark, Ident, MacroKind, Option<Def>)>>,
1004
    macro_resolutions: RefCell<Vec<(Box<[Ident]>, Span)>>,
1005

1006 1007 1008
    // Macro invocations that can expand into items in this module.
    unresolved_invocations: RefCell<FxHashSet<Mark>>,

1009
    no_implicit_prelude: bool,
1010

1011
    glob_importers: RefCell<Vec<&'a ImportDirective<'a>>>,
1012
    globs: RefCell<Vec<&'a ImportDirective<'a>>>,
1013

J
Jeffrey Seyfried 已提交
1014
    // Used to memoize the traits in this module for faster searches through all traits in scope.
1015
    traits: RefCell<Option<Box<[(Ident, &'a NameBinding<'a>)]>>>,
J
Jeffrey Seyfried 已提交
1016

1017 1018 1019
    // Whether this module is populated. If not populated, any attempt to
    // access the children must be preceded with a
    // `populate_module_if_necessary` call.
1020
    populated: Cell<bool>,
1021 1022 1023

    /// Span of the module itself. Used for error reporting.
    span: Span,
J
Jeffrey Seyfried 已提交
1024 1025

    expansion: Mark,
1026 1027
}

1028
type Module<'a> = &'a ModuleData<'a>;
1029

1030
impl<'a> ModuleData<'a> {
O
Oliver Schneider 已提交
1031 1032 1033
    fn new(parent: Option<Module<'a>>,
           kind: ModuleKind,
           normal_ancestor_id: DefId,
J
Jeffrey Seyfried 已提交
1034
           expansion: Mark,
O
Oliver Schneider 已提交
1035
           span: Span) -> Self {
1036
        ModuleData {
1037 1038 1039
            parent,
            kind,
            normal_ancestor_id,
1040
            resolutions: RefCell::new(FxHashMap()),
1041
            legacy_macro_resolutions: RefCell::new(Vec::new()),
1042
            macro_resolutions: RefCell::new(Vec::new()),
1043
            unresolved_invocations: RefCell::new(FxHashSet()),
1044
            no_implicit_prelude: false,
1045
            glob_importers: RefCell::new(Vec::new()),
1046
            globs: RefCell::new(Vec::new()),
J
Jeffrey Seyfried 已提交
1047
            traits: RefCell::new(None),
1048
            populated: Cell::new(normal_ancestor_id.is_local()),
1049 1050
            span,
            expansion,
1051
        }
B
Brian Anderson 已提交
1052 1053
    }

1054 1055 1056
    fn for_each_child<F: FnMut(Ident, Namespace, &'a NameBinding<'a>)>(&self, mut f: F) {
        for (&(ident, ns), name_resolution) in self.resolutions.borrow().iter() {
            name_resolution.borrow().binding.map(|binding| f(ident, ns, binding));
1057 1058 1059
        }
    }

1060 1061
    fn for_each_child_stable<F: FnMut(Ident, Namespace, &'a NameBinding<'a>)>(&self, mut f: F) {
        let resolutions = self.resolutions.borrow();
1062
        let mut resolutions = resolutions.iter().collect::<Vec<_>>();
V
Vadim Petrochenkov 已提交
1063
        resolutions.sort_by_cached_key(|&(&(ident, ns), _)| (ident.as_str(), ns));
1064
        for &(&(ident, ns), &resolution) in resolutions.iter() {
1065 1066 1067 1068
            resolution.borrow().binding.map(|binding| f(ident, ns, binding));
        }
    }

J
Jeffrey Seyfried 已提交
1069 1070 1071 1072 1073 1074 1075
    fn def(&self) -> Option<Def> {
        match self.kind {
            ModuleKind::Def(def, _) => Some(def),
            _ => None,
        }
    }

1076
    fn def_id(&self) -> Option<DefId> {
J
Jeffrey Seyfried 已提交
1077
        self.def().as_ref().map(Def::def_id)
1078 1079
    }

1080
    // `self` resolves to the first module ancestor that `is_normal`.
1081
    fn is_normal(&self) -> bool {
J
Jeffrey Seyfried 已提交
1082 1083
        match self.kind {
            ModuleKind::Def(Def::Mod(_), _) => true,
1084 1085 1086 1087 1088
            _ => false,
        }
    }

    fn is_trait(&self) -> bool {
J
Jeffrey Seyfried 已提交
1089 1090
        match self.kind {
            ModuleKind::Def(Def::Trait(_), _) => true,
1091
            _ => false,
1092
        }
B
Brian Anderson 已提交
1093
    }
1094 1095

    fn is_local(&self) -> bool {
1096
        self.normal_ancestor_id.is_local()
1097
    }
1098 1099 1100 1101

    fn nearest_item_scope(&'a self) -> Module<'a> {
        if self.is_trait() { self.parent.unwrap() } else { self }
    }
V
Victor Berger 已提交
1102 1103
}

1104
impl<'a> fmt::Debug for ModuleData<'a> {
1105
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
J
Jeffrey Seyfried 已提交
1106
        write!(f, "{:?}", self.def())
1107 1108 1109
    }
}

M
Mark Mansi 已提交
1110
/// Records a possibly-private value, type, or module definition.
1111
#[derive(Clone, Debug)]
1112
pub struct NameBinding<'a> {
1113
    kind: NameBindingKind<'a>,
1114
    expansion: Mark,
1115
    span: Span,
1116
    vis: ty::Visibility,
1117 1118
}

1119
pub trait ToNameBinding<'a> {
J
Jeffrey Seyfried 已提交
1120
    fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a>;
1121 1122
}

J
Jeffrey Seyfried 已提交
1123 1124
impl<'a> ToNameBinding<'a> for &'a NameBinding<'a> {
    fn to_name_binding(self, _: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
1125 1126 1127 1128
        self
    }
}

1129
#[derive(Clone, Debug)]
1130
enum NameBindingKind<'a> {
1131
    Def(Def),
1132
    Module(Module<'a>),
1133 1134
    Import {
        binding: &'a NameBinding<'a>,
1135
        directive: &'a ImportDirective<'a>,
1136
        used: Cell<bool>,
1137
    },
1138 1139 1140 1141
    Ambiguity {
        b1: &'a NameBinding<'a>,
        b2: &'a NameBinding<'a>,
    }
1142 1143
}

1144 1145
struct PrivacyError<'a>(Span, Name, &'a NameBinding<'a>);

1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
struct UseError<'a> {
    err: DiagnosticBuilder<'a>,
    /// Attach `use` statements for these candidates
    candidates: Vec<ImportSuggestion>,
    /// The node id of the module to place the use statements in
    node_id: NodeId,
    /// Whether the diagnostic should state that it's "better"
    better: bool,
}

J
Jeffrey Seyfried 已提交
1156 1157 1158
struct AmbiguityError<'a> {
    span: Span,
    name: Name,
1159
    lexical: bool,
J
Jeffrey Seyfried 已提交
1160 1161 1162 1163
    b1: &'a NameBinding<'a>,
    b2: &'a NameBinding<'a>,
}

1164
impl<'a> NameBinding<'a> {
J
Jeffrey Seyfried 已提交
1165
    fn module(&self) -> Option<Module<'a>> {
1166
        match self.kind {
J
Jeffrey Seyfried 已提交
1167
            NameBindingKind::Module(module) => Some(module),
1168
            NameBindingKind::Import { binding, .. } => binding.module(),
J
Jeffrey Seyfried 已提交
1169
            _ => None,
1170 1171 1172
        }
    }

1173
    fn def(&self) -> Def {
1174
        match self.kind {
1175
            NameBindingKind::Def(def) => def,
J
Jeffrey Seyfried 已提交
1176
            NameBindingKind::Module(module) => module.def().unwrap(),
1177
            NameBindingKind::Import { binding, .. } => binding.def(),
1178
            NameBindingKind::Ambiguity { .. } => Def::Err,
1179
        }
1180
    }
1181

1182
    fn def_ignoring_ambiguity(&self) -> Def {
J
Jeffrey Seyfried 已提交
1183
        match self.kind {
1184 1185 1186
            NameBindingKind::Import { binding, .. } => binding.def_ignoring_ambiguity(),
            NameBindingKind::Ambiguity { b1, .. } => b1.def_ignoring_ambiguity(),
            _ => self.def(),
J
Jeffrey Seyfried 已提交
1187 1188 1189
        }
    }

1190
    fn get_macro(&self, resolver: &mut Resolver<'a>) -> Lrc<SyntaxExtension> {
1191 1192 1193
        resolver.get_macro(self.def_ignoring_ambiguity())
    }

1194 1195
    // We sometimes need to treat variants as `pub` for backwards compatibility
    fn pseudo_vis(&self) -> ty::Visibility {
1196 1197 1198 1199 1200
        if self.is_variant() && self.def().def_id().is_local() {
            ty::Visibility::Public
        } else {
            self.vis
        }
1201 1202 1203 1204
    }

    fn is_variant(&self) -> bool {
        match self.kind {
1205 1206
            NameBindingKind::Def(Def::Variant(..)) |
            NameBindingKind::Def(Def::VariantCtor(..)) => true,
1207 1208
            _ => false,
        }
1209 1210
    }

1211
    fn is_extern_crate(&self) -> bool {
1212 1213 1214
        match self.kind {
            NameBindingKind::Import {
                directive: &ImportDirective {
1215
                    subclass: ImportDirectiveSubclass::ExternCrate(_), ..
1216 1217 1218 1219
                }, ..
            } => true,
            _ => false,
        }
1220
    }
1221 1222 1223 1224 1225 1226 1227

    fn is_import(&self) -> bool {
        match self.kind {
            NameBindingKind::Import { .. } => true,
            _ => false,
        }
    }
1228

1229 1230 1231 1232 1233 1234 1235 1236 1237
    fn is_renamed_extern_crate(&self) -> bool {
        if let NameBindingKind::Import { directive, ..} = self.kind {
            if let ImportDirectiveSubclass::ExternCrate(Some(_)) = directive.subclass {
                return true;
            }
        }
        false
    }

1238 1239 1240
    fn is_glob_import(&self) -> bool {
        match self.kind {
            NameBindingKind::Import { directive, .. } => directive.is_glob(),
1241
            NameBindingKind::Ambiguity { b1, .. } => b1.is_glob_import(),
1242 1243 1244 1245 1246
            _ => false,
        }
    }

    fn is_importable(&self) -> bool {
1247
        match self.def() {
1248 1249 1250 1251
            Def::AssociatedConst(..) | Def::Method(..) | Def::AssociatedTy(..) => false,
            _ => true,
        }
    }
1252 1253 1254 1255 1256 1257 1258

    fn is_macro_def(&self) -> bool {
        match self.kind {
            NameBindingKind::Def(Def::Macro(..)) => true,
            _ => false,
        }
    }
1259 1260 1261 1262

    fn descr(&self) -> &'static str {
        if self.is_extern_crate() { "extern crate" } else { self.def().kind_name() }
    }
1263 1264
}

1265
/// Interns the names of the primitive types.
1266 1267 1268
///
/// All other types are defined somewhere and possibly imported, but the primitive ones need
/// special handling, since they have no place of origin.
F
Felix S. Klock II 已提交
1269
struct PrimitiveTypeTable {
1270
    primitive_types: FxHashMap<Name, PrimTy>,
1271
}
1272

1273
impl PrimitiveTypeTable {
K
Kevin Butler 已提交
1274
    fn new() -> PrimitiveTypeTable {
1275
        let mut table = PrimitiveTypeTable { primitive_types: FxHashMap() };
C
corentih 已提交
1276 1277 1278

        table.intern("bool", TyBool);
        table.intern("char", TyChar);
1279 1280
        table.intern("f32", TyFloat(FloatTy::F32));
        table.intern("f64", TyFloat(FloatTy::F64));
1281
        table.intern("isize", TyInt(IntTy::Isize));
1282 1283 1284 1285
        table.intern("i8", TyInt(IntTy::I8));
        table.intern("i16", TyInt(IntTy::I16));
        table.intern("i32", TyInt(IntTy::I32));
        table.intern("i64", TyInt(IntTy::I64));
1286
        table.intern("i128", TyInt(IntTy::I128));
C
corentih 已提交
1287
        table.intern("str", TyStr);
1288
        table.intern("usize", TyUint(UintTy::Usize));
1289 1290 1291 1292
        table.intern("u8", TyUint(UintTy::U8));
        table.intern("u16", TyUint(UintTy::U16));
        table.intern("u32", TyUint(UintTy::U32));
        table.intern("u64", TyUint(UintTy::U64));
1293
        table.intern("u128", TyUint(UintTy::U128));
K
Kevin Butler 已提交
1294 1295 1296
        table
    }

1297
    fn intern(&mut self, string: &str, primitive_type: PrimTy) {
1298
        self.primitive_types.insert(Symbol::intern(string), primitive_type);
1299 1300 1301
    }
}

1302
/// The main resolver class.
1303 1304
///
/// This is the visitor that walks the whole crate.
1305
pub struct Resolver<'a> {
E
Eduard Burtescu 已提交
1306
    session: &'a Session,
1307
    cstore: &'a CrateStore,
1308

1309
    pub definitions: Definitions,
1310

1311
    graph_root: Module<'a>,
1312

1313
    prelude: Option<Module<'a>>,
1314
    extern_prelude: FxHashSet<Name>,
1315

M
Mark Mansi 已提交
1316
    /// n.b. This is used only for better diagnostics, not name resolution itself.
1317
    has_self: FxHashSet<DefId>,
1318

M
Mark Mansi 已提交
1319 1320
    /// Names of fields of an item `DefId` accessible with dot syntax.
    /// Used for hints during error reporting.
1321
    field_names: FxHashMap<DefId, Vec<Name>>,
1322

M
Mark Mansi 已提交
1323
    /// All imports known to succeed or fail.
1324 1325
    determined_imports: Vec<&'a ImportDirective<'a>>,

M
Mark Mansi 已提交
1326
    /// All non-determined imports.
1327
    indeterminate_imports: Vec<&'a ImportDirective<'a>>,
1328

M
Mark Mansi 已提交
1329
    /// The module that represents the current item scope.
1330
    current_module: Module<'a>,
1331

M
Mark Mansi 已提交
1332 1333
    /// The current set of local scopes for types and values.
    /// FIXME #4948: Reuse ribs to avoid allocation.
J
Jeffrey Seyfried 已提交
1334
    ribs: PerNS<Vec<Rib<'a>>>,
1335

M
Mark Mansi 已提交
1336
    /// The current set of local scopes, for labels.
1337
    label_ribs: Vec<Rib<'a>>,
1338

M
Mark Mansi 已提交
1339
    /// The trait that the current context can refer to.
1340
    current_trait_ref: Option<(Module<'a>, TraitRef)>,
1341

M
Mark Mansi 已提交
1342
    /// The current self type if inside an impl (used for better errors).
1343
    current_self_type: Option<Ty>,
1344

M
Mark Mansi 已提交
1345
    /// The idents for the primitive types.
E
Eduard Burtescu 已提交
1346
    primitive_type_table: PrimitiveTypeTable,
1347

1348
    def_map: DefMap,
1349
    pub freevars: FreevarMap,
1350
    freevars_seen: NodeMap<NodeMap<usize>>,
1351 1352
    pub export_map: ExportMap,
    pub trait_map: TraitMap,
1353

M
Mark Mansi 已提交
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
    /// A map from nodes to anonymous modules.
    /// Anonymous modules are pseudo-modules that are implicitly created around items
    /// contained within blocks.
    ///
    /// For example, if we have this:
    ///
    ///  fn f() {
    ///      fn g() {
    ///          ...
    ///      }
    ///  }
    ///
    /// There will be an anonymous module created around `g` with the ID of the
    /// entry block for `f`.
1368 1369
    block_map: NodeMap<Module<'a>>,
    module_map: FxHashMap<DefId, Module<'a>>,
J
Jeffrey Seyfried 已提交
1370
    extern_module_map: FxHashMap<(DefId, bool /* MacrosOnly? */), Module<'a>>,
1371

1372
    pub make_glob_map: bool,
1373 1374
    /// Maps imports to the names of items actually imported (this actually maps
    /// all imports, but only glob imports are actually interesting).
1375
    pub glob_map: GlobMap,
1376

1377
    used_imports: FxHashSet<(NodeId, Namespace)>,
1378
    pub maybe_unused_trait_imports: NodeSet,
1379
    pub maybe_unused_extern_crates: Vec<(NodeId, Span)>,
G
Garming Sam 已提交
1380

1381 1382 1383 1384
    /// A list of labels as of yet unused. Labels will be removed from this map when
    /// they are used (in a `break` or `continue` statement)
    pub unused_labels: FxHashMap<NodeId, Span>,

1385
    /// privacy errors are delayed until the end in order to deduplicate them
1386
    privacy_errors: Vec<PrivacyError<'a>>,
1387
    /// ambiguity errors are delayed for deduplication
J
Jeffrey Seyfried 已提交
1388
    ambiguity_errors: Vec<AmbiguityError<'a>>,
1389 1390
    /// `use` injections are delayed for better placement and deduplication
    use_injections: Vec<UseError<'a>>,
1391 1392
    /// `use` injections for proc macros wrongly imported with #[macro_use]
    proc_mac_errors: Vec<macros::ProcMacError>,
1393

J
Jeffrey Seyfried 已提交
1394
    gated_errors: FxHashSet<Span>,
1395
    disallowed_shadowing: Vec<&'a LegacyBinding<'a>>,
1396 1397

    arenas: &'a ResolverArenas<'a>,
1398
    dummy_binding: &'a NameBinding<'a>,
M
Mark Mansi 已提交
1399 1400
    /// true if `#![feature(use_extern_macros)]`
    use_extern_macros: bool,
1401

1402
    crate_loader: &'a mut CrateLoader,
J
Jeffrey Seyfried 已提交
1403
    macro_names: FxHashSet<Ident>,
J
Jeffrey Seyfried 已提交
1404
    global_macros: FxHashMap<Name, &'a NameBinding<'a>>,
1405
    pub all_macros: FxHashMap<Name, Def>,
J
Jeffrey Seyfried 已提交
1406
    lexical_macro_resolutions: Vec<(Ident, &'a Cell<LegacyScope<'a>>)>,
1407
    macro_map: FxHashMap<DefId, Lrc<SyntaxExtension>>,
1408 1409
    macro_defs: FxHashMap<Mark, DefId>,
    local_macro_def_scopes: FxHashMap<NodeId, Module<'a>>,
J
Jeffrey Seyfried 已提交
1410
    macro_exports: Vec<Export>,
1411
    pub whitelisted_legacy_custom_derives: Vec<Name>,
1412
    pub found_unresolved_macro: bool,
1413

M
Mark Mansi 已提交
1414 1415
    /// List of crate local macros that we need to warn about as being unused.
    /// Right now this only includes macro_rules! macros, and macros 2.0.
E
est31 已提交
1416
    unused_macros: FxHashSet<DefId>,
E
est31 已提交
1417

M
Mark Mansi 已提交
1418
    /// Maps the `Mark` of an expansion to its containing module or block.
1419
    invocations: FxHashMap<Mark, &'a InvocationData<'a>>,
1420

M
Mark Mansi 已提交
1421
    /// Avoid duplicated errors for "name already defined".
1422
    name_already_seen: FxHashMap<Name, Span>,
1423

M
Mark Mansi 已提交
1424
    /// If `#![feature(proc_macro)]` is set
1425 1426
    proc_macro_enabled: bool,

M
Mark Mansi 已提交
1427
    /// A set of procedural macros imported by `#[macro_use]` that have already been warned about
1428
    warned_proc_macros: FxHashSet<Name>,
1429 1430

    potentially_unused_imports: Vec<&'a ImportDirective<'a>>,
1431

M
Mark Mansi 已提交
1432 1433
    /// This table maps struct IDs into struct constructor IDs,
    /// it's not used during normal resolution, only for better error reporting.
1434
    struct_constructors: DefIdMap<(Def, ty::Visibility)>,
1435

M
Mark Mansi 已提交
1436
    /// Only used for better errors on `fn(): fn()`
1437
    current_type_ascription: Vec<Span>,
1438 1439

    injected_crate: Option<Module<'a>>,
1440 1441 1442

    /// Only supposed to be used by rustdoc, otherwise should be false.
    pub ignore_extern_prelude_feature: bool,
1443 1444
}

1445
/// Nothing really interesting here, it just provides memory for the rest of the crate.
1446
pub struct ResolverArenas<'a> {
1447
    modules: arena::TypedArena<ModuleData<'a>>,
1448
    local_modules: RefCell<Vec<Module<'a>>>,
1449
    name_bindings: arena::TypedArena<NameBinding<'a>>,
1450
    import_directives: arena::TypedArena<ImportDirective<'a>>,
1451
    name_resolutions: arena::TypedArena<RefCell<NameResolution<'a>>>,
1452
    invocation_data: arena::TypedArena<InvocationData<'a>>,
J
Jeffrey Seyfried 已提交
1453
    legacy_bindings: arena::TypedArena<LegacyBinding<'a>>,
1454 1455 1456
}

impl<'a> ResolverArenas<'a> {
1457
    fn alloc_module(&'a self, module: ModuleData<'a>) -> Module<'a> {
1458 1459 1460 1461 1462 1463 1464 1465
        let module = self.modules.alloc(module);
        if module.def_id().map(|def_id| def_id.is_local()).unwrap_or(true) {
            self.local_modules.borrow_mut().push(module);
        }
        module
    }
    fn local_modules(&'a self) -> ::std::cell::Ref<'a, Vec<Module<'a>>> {
        self.local_modules.borrow()
1466 1467 1468 1469
    }
    fn alloc_name_binding(&'a self, name_binding: NameBinding<'a>) -> &'a NameBinding<'a> {
        self.name_bindings.alloc(name_binding)
    }
1470 1471
    fn alloc_import_directive(&'a self, import_directive: ImportDirective<'a>)
                              -> &'a ImportDirective {
1472 1473
        self.import_directives.alloc(import_directive)
    }
1474 1475 1476
    fn alloc_name_resolution(&'a self) -> &'a RefCell<NameResolution<'a>> {
        self.name_resolutions.alloc(Default::default())
    }
1477 1478 1479
    fn alloc_invocation_data(&'a self, expansion_data: InvocationData<'a>)
                             -> &'a InvocationData<'a> {
        self.invocation_data.alloc(expansion_data)
J
Jeffrey Seyfried 已提交
1480
    }
J
Jeffrey Seyfried 已提交
1481 1482 1483
    fn alloc_legacy_binding(&'a self, binding: LegacyBinding<'a>) -> &'a LegacyBinding<'a> {
        self.legacy_bindings.alloc(binding)
    }
1484 1485
}

1486 1487 1488 1489
impl<'a, 'b: 'a> ty::DefIdTree for &'a Resolver<'b> {
    fn parent(self, id: DefId) -> Option<DefId> {
        match id.krate {
            LOCAL_CRATE => self.definitions.def_key(id.index).parent,
1490
            _ => self.cstore.def_key(id).parent,
1491
        }.map(|index| DefId { index, ..id })
1492 1493 1494
    }
}

1495 1496
/// This interface is used through the AST→HIR step, to embed full paths into the HIR. After that
/// the resolver is no longer needed as all the relevant information is inline.
1497
impl<'a> hir::lowering::Resolver for Resolver<'a> {
J
Jeffrey Seyfried 已提交
1498
    fn resolve_hir_path(&mut self, path: &mut hir::Path, is_value: bool) {
1499 1500 1501 1502 1503
        self.resolve_hir_path_cb(path, is_value,
                                 |resolver, span, error| resolve_error(resolver, span, error))
    }

    fn resolve_str_path(&mut self, span: Span, crate_root: Option<&str>,
M
Manish Goregaokar 已提交
1504
                        components: &[&str], is_value: bool) -> hir::Path {
1505 1506 1507 1508 1509 1510 1511 1512
        let mut path = hir::Path {
            span,
            def: Def::Err,
            segments: iter::once(keywords::CrateRoot.name()).chain({
                crate_root.into_iter().chain(components.iter().cloned()).map(Symbol::intern)
            }).map(hir::PathSegment::from_name).collect(),
        };

M
Manish Goregaokar 已提交
1513
        self.resolve_hir_path(&mut path, is_value);
1514 1515 1516
        path
    }

M
Manish Goregaokar 已提交
1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
    fn get_resolution(&mut self, id: NodeId) -> Option<PathResolution> {
        self.def_map.get(&id).cloned()
    }

    fn definitions(&mut self) -> &mut Definitions {
        &mut self.definitions
    }
}

impl<'a> Resolver<'a> {
1527 1528 1529
    /// Rustdoc uses this to resolve things in a recoverable way. ResolutionError<'a>
    /// isn't something that can be returned because it can't be made to live that long,
    /// and also it's a private type. Fortunately rustdoc doesn't need to know the error,
1530
    /// just that an error occurred.
M
Manish Goregaokar 已提交
1531 1532
    pub fn resolve_str_path_error(&mut self, span: Span, path_str: &str, is_value: bool)
        -> Result<hir::Path, ()> {
M
Manish Goregaokar 已提交
1533
        use std::iter;
1534
        let mut errored = false;
M
Manish Goregaokar 已提交
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552

        let mut path = if path_str.starts_with("::") {
            hir::Path {
                span,
                def: Def::Err,
                segments: iter::once(keywords::CrateRoot.name()).chain({
                    path_str.split("::").skip(1).map(Symbol::intern)
                }).map(hir::PathSegment::from_name).collect(),
            }
        } else {
            hir::Path {
                span,
                def: Def::Err,
                segments: path_str.split("::").map(Symbol::intern)
                                  .map(hir::PathSegment::from_name).collect(),
            }
        };
        self.resolve_hir_path_cb(&mut path, is_value, |_, _, _| errored = true);
1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563
        if errored || path.def == Def::Err {
            Err(())
        } else {
            Ok(path)
        }
    }

    /// resolve_hir_path, but takes a callback in case there was an error
    fn resolve_hir_path_cb<F>(&mut self, path: &mut hir::Path, is_value: bool, error_callback: F)
            where F: for<'c, 'b> FnOnce(&'c mut Resolver, Span, ResolutionError<'b>)
        {
1564
        let namespace = if is_value { ValueNS } else { TypeNS };
1565
        let hir::Path { ref segments, span, ref mut def } = *path;
V
Vadim Petrochenkov 已提交
1566 1567
        let path: Vec<Ident> = segments.iter()
            .map(|seg| Ident::new(seg.name, span))
1568
            .collect();
1569
        // FIXME (Manishearth): Intra doc links won't get warned of epoch changes
1570
        match self.resolve_path(&path, Some(namespace), true, span, CrateLint::No) {
J
Jeffrey Seyfried 已提交
1571
            PathResult::Module(module) => *def = module.def().unwrap(),
1572 1573
            PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 =>
                *def = path_res.base_def(),
N
Niko Matsakis 已提交
1574 1575 1576 1577 1578 1579 1580
            PathResult::NonModule(..) => match self.resolve_path(
                &path,
                None,
                true,
                span,
                CrateLint::No,
            ) {
1581
                PathResult::Failed(span, msg, _) => {
1582
                    error_callback(self, span, ResolutionError::FailedToResolve(&msg));
J
Jeffrey Seyfried 已提交
1583 1584 1585 1586
                }
                _ => {}
            },
            PathResult::Indeterminate => unreachable!(),
1587
            PathResult::Failed(span, msg, _) => {
1588
                error_callback(self, span, ResolutionError::FailedToResolve(&msg));
1589 1590 1591 1592 1593
            }
        }
    }
}

1594
impl<'a> Resolver<'a> {
1595
    pub fn new(session: &'a Session,
1596
               cstore: &'a CrateStore,
1597
               krate: &Crate,
1598
               crate_name: &str,
1599
               make_glob_map: MakeGlobMap,
1600
               crate_loader: &'a mut CrateLoader,
1601
               arenas: &'a ResolverArenas<'a>)
1602
               -> Resolver<'a> {
1603 1604
        let root_def_id = DefId::local(CRATE_DEF_INDEX);
        let root_module_kind = ModuleKind::Def(Def::Mod(root_def_id), keywords::Invalid.name());
1605
        let graph_root = arenas.alloc_module(ModuleData {
1606
            no_implicit_prelude: attr::contains_name(&krate.attrs, "no_implicit_prelude"),
J
Jeffrey Seyfried 已提交
1607
            ..ModuleData::new(None, root_module_kind, root_def_id, Mark::root(), krate.span)
1608
        });
1609 1610
        let mut module_map = FxHashMap();
        module_map.insert(DefId::local(CRATE_DEF_INDEX), graph_root);
K
Kevin Butler 已提交
1611

1612
        let mut definitions = Definitions::new();
J
Jeffrey Seyfried 已提交
1613
        DefCollector::new(&mut definitions, Mark::root())
1614
            .collect_root(crate_name, session.local_crate_disambiguator());
1615

1616 1617 1618 1619 1620 1621 1622 1623 1624 1625
        let mut extern_prelude: FxHashSet<Name> =
            session.opts.externs.iter().map(|kv| Symbol::intern(kv.0)).collect();
        if !attr::contains_name(&krate.attrs, "no_core") {
            if !attr::contains_name(&krate.attrs, "no_std") {
                extern_prelude.insert(Symbol::intern("std"));
            } else {
                extern_prelude.insert(Symbol::intern("core"));
            }
        }

1626
        let mut invocations = FxHashMap();
1627 1628
        invocations.insert(Mark::root(),
                           arenas.alloc_invocation_data(InvocationData::root(graph_root)));
1629

1630
        let features = session.features_untracked();
1631

1632 1633 1634
        let mut macro_defs = FxHashMap();
        macro_defs.insert(Mark::root(), root_def_id);

K
Kevin Butler 已提交
1635
        Resolver {
1636
            session,
K
Kevin Butler 已提交
1637

1638 1639
            cstore,

1640
            definitions,
1641

K
Kevin Butler 已提交
1642 1643
            // The outermost module has def ID 0; this is not reflected in the
            // AST.
1644
            graph_root,
1645
            prelude: None,
1646
            extern_prelude,
K
Kevin Butler 已提交
1647

1648
            has_self: FxHashSet(),
1649
            field_names: FxHashMap(),
K
Kevin Butler 已提交
1650

1651
            determined_imports: Vec::new(),
1652
            indeterminate_imports: Vec::new(),
K
Kevin Butler 已提交
1653

1654
            current_module: graph_root,
J
Jeffrey Seyfried 已提交
1655 1656 1657
            ribs: PerNS {
                value_ns: vec![Rib::new(ModuleRibKind(graph_root))],
                type_ns: vec![Rib::new(ModuleRibKind(graph_root))],
1658
                macro_ns: vec![Rib::new(ModuleRibKind(graph_root))],
J
Jeffrey Seyfried 已提交
1659
            },
1660
            label_ribs: Vec::new(),
K
Kevin Butler 已提交
1661 1662 1663 1664 1665 1666

            current_trait_ref: None,
            current_self_type: None,

            primitive_type_table: PrimitiveTypeTable::new(),

1667
            def_map: NodeMap(),
1668 1669
            freevars: NodeMap(),
            freevars_seen: NodeMap(),
A
Alex Crichton 已提交
1670
            export_map: FxHashMap(),
1671
            trait_map: NodeMap(),
1672
            module_map,
1673
            block_map: NodeMap(),
J
Jeffrey Seyfried 已提交
1674
            extern_module_map: FxHashMap(),
K
Kevin Butler 已提交
1675

1676
            make_glob_map: make_glob_map == MakeGlobMap::Yes,
1677
            glob_map: NodeMap(),
G
Garming Sam 已提交
1678

1679
            used_imports: FxHashSet(),
S
Seo Sanghyeon 已提交
1680
            maybe_unused_trait_imports: NodeSet(),
1681
            maybe_unused_extern_crates: Vec::new(),
S
Seo Sanghyeon 已提交
1682

1683 1684
            unused_labels: FxHashMap(),

1685
            privacy_errors: Vec::new(),
1686
            ambiguity_errors: Vec::new(),
1687
            use_injections: Vec::new(),
1688
            proc_mac_errors: Vec::new(),
J
Jeffrey Seyfried 已提交
1689
            gated_errors: FxHashSet(),
1690
            disallowed_shadowing: Vec::new(),
1691

1692
            arenas,
1693 1694
            dummy_binding: arenas.alloc_name_binding(NameBinding {
                kind: NameBindingKind::Def(Def::Err),
1695
                expansion: Mark::root(),
1696 1697 1698
                span: DUMMY_SP,
                vis: ty::Visibility::Public,
            }),
1699

1700 1701 1702
            // The `proc_macro` and `decl_macro` features imply `use_extern_macros`
            use_extern_macros:
                features.use_extern_macros || features.proc_macro || features.decl_macro,
1703

1704
            crate_loader,
1705
            macro_names: FxHashSet(),
J
Jeffrey Seyfried 已提交
1706
            global_macros: FxHashMap(),
1707
            all_macros: FxHashMap(),
J
Jeffrey Seyfried 已提交
1708
            lexical_macro_resolutions: Vec::new(),
J
Jeffrey Seyfried 已提交
1709 1710
            macro_map: FxHashMap(),
            macro_exports: Vec::new(),
1711 1712
            invocations,
            macro_defs,
1713
            local_macro_def_scopes: FxHashMap(),
1714
            name_already_seen: FxHashMap(),
1715
            whitelisted_legacy_custom_derives: Vec::new(),
1716 1717
            proc_macro_enabled: features.proc_macro,
            warned_proc_macros: FxHashSet(),
1718
            potentially_unused_imports: Vec::new(),
1719
            struct_constructors: DefIdMap(),
1720
            found_unresolved_macro: false,
E
est31 已提交
1721
            unused_macros: FxHashSet(),
1722
            current_type_ascription: Vec::new(),
1723
            injected_crate: None,
1724
            ignore_extern_prelude_feature: false,
1725 1726 1727
        }
    }

1728
    pub fn arenas() -> ResolverArenas<'a> {
1729 1730
        ResolverArenas {
            modules: arena::TypedArena::new(),
1731
            local_modules: RefCell::new(Vec::new()),
1732
            name_bindings: arena::TypedArena::new(),
1733
            import_directives: arena::TypedArena::new(),
1734
            name_resolutions: arena::TypedArena::new(),
1735
            invocation_data: arena::TypedArena::new(),
J
Jeffrey Seyfried 已提交
1736
            legacy_bindings: arena::TypedArena::new(),
K
Kevin Butler 已提交
1737 1738
        }
    }
1739

1740
    /// Runs the function on each namespace.
1741 1742 1743 1744 1745
    fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
        f(self, TypeNS);
        f(self, ValueNS);
        if self.use_extern_macros {
            f(self, MacroNS);
J
Jeffrey Seyfried 已提交
1746 1747 1748
        }
    }

J
Jeffrey Seyfried 已提交
1749 1750 1751 1752 1753 1754 1755 1756 1757
    fn macro_def(&self, mut ctxt: SyntaxContext) -> DefId {
        loop {
            match self.macro_defs.get(&ctxt.outer()) {
                Some(&def_id) => return def_id,
                None => ctxt.remove_mark(),
            };
        }
    }

1758 1759
    /// Entry point to crate resolution.
    pub fn resolve_crate(&mut self, krate: &Crate) {
1760
        ImportResolver { resolver: self }.finalize_imports();
1761
        self.current_module = self.graph_root;
1762
        self.finalize_current_module_macro_resolutions();
1763

1764 1765 1766
        visit::walk_crate(self, krate);

        check_unused::check_crate(self, krate);
1767
        self.report_errors(krate);
1768
        self.crate_loader.postprocess(krate);
1769 1770
    }

O
Oliver Schneider 已提交
1771 1772 1773 1774 1775
    fn new_module(
        &self,
        parent: Module<'a>,
        kind: ModuleKind,
        normal_ancestor_id: DefId,
J
Jeffrey Seyfried 已提交
1776
        expansion: Mark,
O
Oliver Schneider 已提交
1777 1778
        span: Span,
    ) -> Module<'a> {
J
Jeffrey Seyfried 已提交
1779 1780
        let module = ModuleData::new(Some(parent), kind, normal_ancestor_id, expansion, span);
        self.arenas.alloc_module(module)
1781 1782
    }

1783
    fn record_use(&mut self, ident: Ident, ns: Namespace, binding: &'a NameBinding<'a>, span: Span)
1784
                  -> bool /* true if an error was reported */ {
1785
        match binding.kind {
1786
            NameBindingKind::Import { directive, binding, ref used }
J
Jeffrey Seyfried 已提交
1787
                    if !used.get() => {
1788
                used.set(true);
1789
                directive.used.set(true);
1790
                self.used_imports.insert((directive.id, ns));
1791 1792
                self.add_to_glob_map(directive.id, ident);
                self.record_use(ident, ns, binding, span)
1793 1794
            }
            NameBindingKind::Import { .. } => false,
1795
            NameBindingKind::Ambiguity { b1, b2 } => {
1796
                self.ambiguity_errors.push(AmbiguityError {
1797
                    span, name: ident.name, lexical: false, b1, b2,
1798
                });
1799
                true
1800 1801
            }
            _ => false
1802
        }
1803
    }
1804

1805
    fn add_to_glob_map(&mut self, id: NodeId, ident: Ident) {
1806
        if self.make_glob_map {
1807
            self.glob_map.entry(id).or_insert_with(FxHashSet).insert(ident.name);
1808
        }
1809 1810
    }

1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
    /// This resolves the identifier `ident` in the namespace `ns` in the current lexical scope.
    /// More specifically, we proceed up the hierarchy of scopes and return the binding for
    /// `ident` in the first scope that defines it (or None if no scopes define it).
    ///
    /// A block's items are above its local variables in the scope hierarchy, regardless of where
    /// the items are defined in the block. For example,
    /// ```rust
    /// fn f() {
    ///    g(); // Since there are no local variables in scope yet, this resolves to the item.
    ///    let g = || {};
    ///    fn g() {}
    ///    g(); // This resolves to the local variable `g` since it shadows the item.
    /// }
    /// ```
1825
    ///
1826 1827
    /// Invariant: This must only be called during main resolution, not during
    /// import resolution.
1828
    fn resolve_ident_in_lexical_scope(&mut self,
1829
                                      mut ident: Ident,
1830
                                      ns: Namespace,
1831 1832
                                      record_used: bool,
                                      path_span: Span)
1833
                                      -> Option<LexicalScopeBinding<'a>> {
1834
        if ns == TypeNS {
1835 1836 1837
            ident.span = if ident.name == keywords::SelfType.name() {
                // FIXME(jseyfried) improve `Self` hygiene
                ident.span.with_ctxt(SyntaxContext::empty())
J
Jeffrey Seyfried 已提交
1838
            } else {
1839
                ident.span.modern()
J
Jeffrey Seyfried 已提交
1840
            }
1841
        }
1842

1843
        // Walk backwards up the ribs in scope.
J
Jeffrey Seyfried 已提交
1844
        let mut module = self.graph_root;
J
Jeffrey Seyfried 已提交
1845 1846
        for i in (0 .. self.ribs[ns].len()).rev() {
            if let Some(def) = self.ribs[ns][i].bindings.get(&ident).cloned() {
1847
                // The ident resolves to a type parameter or local variable.
1848
                return Some(LexicalScopeBinding::Def(
1849
                    self.adjust_local_def(ns, i, def, record_used, path_span)
1850
                ));
1851 1852
            }

J
Jeffrey Seyfried 已提交
1853 1854
            module = match self.ribs[ns][i].kind {
                ModuleRibKind(module) => module,
1855
                MacroDefinition(def) if def == self.macro_def(ident.span.ctxt()) => {
J
Jeffrey Seyfried 已提交
1856 1857
                    // If an invocation of this macro created `ident`, give up on `ident`
                    // and switch to `ident`'s source from the macro definition.
1858
                    ident.span.remove_mark();
J
Jeffrey Seyfried 已提交
1859
                    continue
1860
                }
J
Jeffrey Seyfried 已提交
1861 1862
                _ => continue,
            };
1863

J
Jeffrey Seyfried 已提交
1864 1865 1866 1867 1868 1869
            let item = self.resolve_ident_in_module_unadjusted(
                module, ident, ns, false, record_used, path_span,
            );
            if let Ok(binding) = item {
                // The ident resolves to an item.
                return Some(LexicalScopeBinding::Item(binding));
1870
            }
1871

J
Jeffrey Seyfried 已提交
1872 1873 1874 1875 1876 1877
            match module.kind {
                ModuleKind::Block(..) => {}, // We can see through blocks
                _ => break,
            }
        }

1878
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
1879
        loop {
1880
            module = unwrap_or!(self.hygienic_lexical_parent(module, &mut ident.span), break);
J
Jeffrey Seyfried 已提交
1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894
            let orig_current_module = self.current_module;
            self.current_module = module; // Lexical resolutions can never be a privacy error.
            let result = self.resolve_ident_in_module_unadjusted(
                module, ident, ns, false, record_used, path_span,
            );
            self.current_module = orig_current_module;

            match result {
                Ok(binding) => return Some(LexicalScopeBinding::Item(binding)),
                Err(Undetermined) => return None,
                Err(Determined) => {}
            }
        }

1895 1896 1897
        if !module.no_implicit_prelude {
            // `record_used` means that we don't try to load crates during speculative resolution
            if record_used && ns == TypeNS && self.extern_prelude.contains(&ident.name) {
1898 1899
                if !self.session.features_untracked().extern_prelude &&
                   !self.ignore_extern_prelude_feature {
1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917
                    feature_err(&self.session.parse_sess, "extern_prelude",
                                ident.span, GateIssue::Language,
                                "access to extern crates through prelude is experimental").emit();
                }

                let crate_id = self.crate_loader.process_path_extern(ident.name, ident.span);
                let crate_root = self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX });
                self.populate_module_if_necessary(crate_root);

                let binding = (crate_root, ty::Visibility::Public,
                               ident.span, Mark::root()).to_name_binding(self.arenas);
                return Some(LexicalScopeBinding::Item(binding));
            }
            if let Some(prelude) = self.prelude {
                if let Ok(binding) = self.resolve_ident_in_module_unadjusted(prelude, ident, ns,
                                                                        false, false, path_span) {
                    return Some(LexicalScopeBinding::Item(binding));
                }
J
Jeffrey Seyfried 已提交
1918 1919
            }
        }
1920 1921

        None
J
Jeffrey Seyfried 已提交
1922 1923
    }

1924
    fn hygienic_lexical_parent(&mut self, mut module: Module<'a>, span: &mut Span)
J
Jeffrey Seyfried 已提交
1925
                               -> Option<Module<'a>> {
1926 1927
        if !module.expansion.is_descendant_of(span.ctxt().outer()) {
            return Some(self.macro_def_scope(span.remove_mark()));
J
Jeffrey Seyfried 已提交
1928 1929 1930 1931 1932 1933
        }

        if let ModuleKind::Block(..) = module.kind {
            return Some(module.parent.unwrap());
        }

B
Bastien Orivel 已提交
1934
        let mut module_expansion = module.expansion.modern(); // for backward compatibility
J
Jeffrey Seyfried 已提交
1935 1936 1937 1938
        while let Some(parent) = module.parent {
            let parent_expansion = parent.expansion.modern();
            if module_expansion.is_descendant_of(parent_expansion) &&
               parent_expansion != module_expansion {
1939
                return if parent_expansion.is_descendant_of(span.ctxt().outer()) {
J
Jeffrey Seyfried 已提交
1940 1941 1942 1943
                    Some(parent)
                } else {
                    None
                };
1944
            }
J
Jeffrey Seyfried 已提交
1945 1946
            module = parent;
            module_expansion = parent_expansion;
1947
        }
1948

1949 1950 1951
        None
    }

J
Jeffrey Seyfried 已提交
1952 1953 1954 1955 1956 1957 1958 1959
    fn resolve_ident_in_module(&mut self,
                               module: Module<'a>,
                               mut ident: Ident,
                               ns: Namespace,
                               ignore_unresolved_invocations: bool,
                               record_used: bool,
                               span: Span)
                               -> Result<&'a NameBinding<'a>, Determinacy> {
1960
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
1961
        let orig_current_module = self.current_module;
1962
        if let Some(def) = ident.span.adjust(module.expansion) {
J
Jeffrey Seyfried 已提交
1963 1964 1965 1966 1967 1968 1969 1970 1971
            self.current_module = self.macro_def_scope(def);
        }
        let result = self.resolve_ident_in_module_unadjusted(
            module, ident, ns, ignore_unresolved_invocations, record_used, span,
        );
        self.current_module = orig_current_module;
        result
    }

1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982
    fn resolve_crate_root(&mut self, mut ctxt: SyntaxContext, legacy: bool) -> Module<'a> {
        let mark = if legacy {
            // When resolving `$crate` from a `macro_rules!` invoked in a `macro`,
            // we don't want to pretend that the `macro_rules!` definition is in the `macro`
            // as described in `SyntaxContext::apply_mark`, so we ignore prepended modern marks.
            ctxt.marks().into_iter().find(|&mark| mark.kind() != MarkKind::Modern)
        } else {
            ctxt = ctxt.modern();
            ctxt.adjust(Mark::root())
        };
        let module = match mark {
J
Jeffrey Seyfried 已提交
1983 1984 1985 1986 1987 1988 1989 1990
            Some(def) => self.macro_def_scope(def),
            None => return self.graph_root,
        };
        self.get_module(DefId { index: CRATE_DEF_INDEX, ..module.normal_ancestor_id })
    }

    fn resolve_self(&mut self, ctxt: &mut SyntaxContext, module: Module<'a>) -> Module<'a> {
        let mut module = self.get_module(module.normal_ancestor_id);
1991
        while module.span.ctxt().modern() != *ctxt {
J
Jeffrey Seyfried 已提交
1992 1993
            let parent = module.parent.unwrap_or_else(|| self.macro_def_scope(ctxt.remove_mark()));
            module = self.get_module(parent.normal_ancestor_id);
1994
        }
J
Jeffrey Seyfried 已提交
1995
        module
1996 1997
    }

1998 1999
    // AST resolution
    //
2000
    // We maintain a list of value ribs and type ribs.
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015
    //
    // Simultaneously, we keep track of the current position in the module
    // graph in the `current_module` pointer. When we go to resolve a name in
    // the value or type namespaces, we first look through all the ribs and
    // then query the module graph. When we resolve a name in the module
    // namespace, we can skip all the ribs (since nested modules are not
    // allowed within blocks in Rust) and jump straight to the current module
    // graph node.
    //
    // Named implementations are handled separately. When we find a method
    // call, we consult the module node to find all of the implementations in
    // scope. This information is lazily cached in the module node. We then
    // generate a fake "implementation scope" containing all the
    // implementations thus found, for compatibility with old resolve pass.

M
Manish Goregaokar 已提交
2016 2017
    pub fn with_scope<F, T>(&mut self, id: NodeId, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
J
Jorge Aparicio 已提交
2018
    {
2019
        let id = self.definitions.local_def_id(id);
2020 2021
        let module = self.module_map.get(&id).cloned(); // clones a reference
        if let Some(module) = module {
2022
            // Move down in the graph.
2023
            let orig_module = replace(&mut self.current_module, module);
J
Jeffrey Seyfried 已提交
2024 2025
            self.ribs[ValueNS].push(Rib::new(ModuleRibKind(module)));
            self.ribs[TypeNS].push(Rib::new(ModuleRibKind(module)));
2026

2027
            self.finalize_current_module_macro_resolutions();
M
Manish Goregaokar 已提交
2028
            let ret = f(self);
2029

2030
            self.current_module = orig_module;
J
Jeffrey Seyfried 已提交
2031 2032
            self.ribs[ValueNS].pop();
            self.ribs[TypeNS].pop();
M
Manish Goregaokar 已提交
2033
            ret
2034
        } else {
M
Manish Goregaokar 已提交
2035
            f(self)
2036
        }
2037 2038
    }

2039 2040 2041
    /// Searches the current set of local scopes for labels. Returns the first non-None label that
    /// is returned by the given predicate function
    ///
S
Seo Sanghyeon 已提交
2042
    /// Stops after meeting a closure.
2043 2044 2045
    fn search_label<P, R>(&self, mut ident: Ident, pred: P) -> Option<R>
        where P: Fn(&Rib, Ident) -> Option<R>
    {
2046 2047
        for rib in self.label_ribs.iter().rev() {
            match rib.kind {
J
Jeffrey Seyfried 已提交
2048 2049 2050
                NormalRibKind => {}
                // If an invocation of this macro created `ident`, give up on `ident`
                // and switch to `ident`'s source from the macro definition.
2051
                MacroDefinition(def) => {
2052 2053
                    if def == self.macro_def(ident.span.ctxt()) {
                        ident.span.remove_mark();
2054 2055
                    }
                }
2056 2057
                _ => {
                    // Do not resolve labels across function boundary
C
corentih 已提交
2058
                    return None;
2059 2060
                }
            }
2061 2062 2063
            let r = pred(rib, ident);
            if r.is_some() {
                return r;
2064 2065 2066 2067 2068
            }
        }
        None
    }

2069
    fn resolve_item(&mut self, item: &Item) {
2070
        let name = item.ident.name;
2071

C
corentih 已提交
2072
        debug!("(resolving item) resolving {}", name);
2073

2074 2075
        self.check_proc_macro_attrs(&item.attrs);

2076
        match item.node {
2077 2078
            ItemKind::Enum(_, ref generics) |
            ItemKind::Ty(_, ref generics) |
2079
            ItemKind::Struct(_, ref generics) |
2080
            ItemKind::Union(_, ref generics) |
V
Vadim Petrochenkov 已提交
2081
            ItemKind::Fn(.., ref generics, _) => {
2082
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind),
2083
                                             |this| visit::walk_item(this, item));
2084 2085
            }

V
Vadim Petrochenkov 已提交
2086
            ItemKind::Impl(.., ref generics, ref opt_trait_ref, ref self_type, ref impl_items) =>
2087
                self.resolve_implementation(generics,
2088
                                            opt_trait_ref,
J
Jonas Schievink 已提交
2089
                                            &self_type,
2090
                                            item.id,
2091
                                            impl_items),
2092

2093
            ItemKind::Trait(.., ref generics, ref bounds, ref trait_items) => {
2094
                // Create a new rib for the trait-wide type parameters.
2095
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
2096
                    let local_def_id = this.definitions.local_def_id(item.id);
2097
                    this.with_self_rib(Def::SelfTy(Some(local_def_id), None), |this| {
2098
                        this.visit_generics(generics);
2099
                        walk_list!(this, visit_ty_param_bound, bounds);
2100 2101

                        for trait_item in trait_items {
2102 2103
                            this.check_proc_macro_attrs(&trait_item.attrs);

2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118
                            let type_parameters = HasTypeParameters(&trait_item.generics,
                                                                    TraitOrImplItemRibKind);
                            this.with_type_parameter_rib(type_parameters, |this| {
                                match trait_item.node {
                                    TraitItemKind::Const(ref ty, ref default) => {
                                        this.visit_ty(ty);

                                        // Only impose the restrictions of
                                        // ConstRibKind for an actual constant
                                        // expression in a provided default.
                                        if let Some(ref expr) = *default{
                                            this.with_constant_rib(|this| {
                                                this.visit_expr(expr);
                                            });
                                        }
2119
                                    }
2120
                                    TraitItemKind::Method(_, _) => {
2121
                                        visit::walk_trait_item(this, trait_item)
2122 2123
                                    }
                                    TraitItemKind::Type(..) => {
2124
                                        visit::walk_trait_item(this, trait_item)
2125 2126 2127 2128 2129 2130
                                    }
                                    TraitItemKind::Macro(_) => {
                                        panic!("unexpanded macro in resolve!")
                                    }
                                };
                            });
2131 2132
                        }
                    });
2133
                });
2134 2135
            }

A
Alex Burka 已提交
2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146
            ItemKind::TraitAlias(ref generics, ref bounds) => {
                // Create a new rib for the trait-wide type parameters.
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
                    let local_def_id = this.definitions.local_def_id(item.id);
                    this.with_self_rib(Def::SelfTy(Some(local_def_id), None), |this| {
                        this.visit_generics(generics);
                        walk_list!(this, visit_ty_param_bound, bounds);
                    });
                });
            }

2147
            ItemKind::Mod(_) | ItemKind::ForeignMod(_) => {
2148
                self.with_scope(item.id, |this| {
2149
                    visit::walk_item(this, item);
2150
                });
2151 2152
            }

2153 2154 2155 2156 2157 2158 2159
            ItemKind::Static(ref ty, _, ref expr) |
            ItemKind::Const(ref ty, ref expr) => {
                self.with_item_rib(|this| {
                    this.visit_ty(ty);
                    this.with_constant_rib(|this| {
                        this.visit_expr(expr);
                    });
2160
                });
2161
            }
2162

2163
            ItemKind::Use(ref use_tree) => {
2164
                // Imports are resolved as global by default, add starting root segment.
2165
                let path = Path {
2166
                    segments: use_tree.prefix.make_root().into_iter().collect(),
2167 2168
                    span: use_tree.span,
                };
2169
                self.resolve_use_tree(item.id, use_tree.span, item.id, use_tree, &path);
W
we 已提交
2170 2171
            }

2172
            ItemKind::ExternCrate(_) | ItemKind::MacroDef(..) | ItemKind::GlobalAsm(_) => {
2173
                // do nothing, these are just around to be encoded
2174
            }
2175 2176

            ItemKind::Mac(_) => panic!("unexpanded macro in resolve!"),
2177 2178 2179
        }
    }

2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191
    /// For the most part, use trees are desugared into `ImportDirective` instances
    /// when building the reduced graph (see `build_reduced_graph_for_use_tree`). But
    /// there is one special case we handle here: an empty nested import like
    /// `a::{b::{}}`, which desugares into...no import directives.
    fn resolve_use_tree(
        &mut self,
        root_id: NodeId,
        root_span: Span,
        id: NodeId,
        use_tree: &ast::UseTree,
        prefix: &Path,
    ) {
2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204
        match use_tree.kind {
            ast::UseTreeKind::Nested(ref items) => {
                let path = Path {
                    segments: prefix.segments
                        .iter()
                        .chain(use_tree.prefix.segments.iter())
                        .cloned()
                        .collect(),
                    span: prefix.span.to(use_tree.prefix.span),
                };

                if items.len() == 0 {
                    // Resolve prefix of an import with empty braces (issue #28388).
2205 2206 2207 2208 2209
                    self.smart_resolve_path_with_crate_lint(
                        id,
                        None,
                        &path,
                        PathSource::ImportPrefix,
2210
                        CrateLint::UsePath { root_id, root_span },
2211
                    );
2212
                } else {
2213
                    for &(ref tree, nested_id) in items {
2214
                        self.resolve_use_tree(root_id, root_span, nested_id, tree, &path);
2215 2216 2217 2218 2219 2220 2221 2222
                    }
                }
            }
            ast::UseTreeKind::Simple(_) => {},
            ast::UseTreeKind::Glob => {},
        }
    }

2223
    fn with_type_parameter_rib<'b, F>(&'b mut self, type_parameters: TypeParameters<'a, 'b>, f: F)
C
corentih 已提交
2224
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2225
    {
2226
        match type_parameters {
2227
            HasTypeParameters(generics, rib_kind) => {
2228
                let mut function_type_rib = Rib::new(rib_kind);
2229
                let mut seen_bindings = FxHashMap();
2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240
                for param in &generics.params {
                    if let GenericParam::Type(ref type_parameter) = *param {
                        let ident = type_parameter.ident.modern();
                        debug!("with_type_parameter_rib: {}", type_parameter.id);

                        if seen_bindings.contains_key(&ident) {
                            let span = seen_bindings.get(&ident).unwrap();
                            let err = ResolutionError::NameAlreadyUsedInTypeParameterList(
                                ident.name,
                                span,
                            );
2241
                            resolve_error(self, type_parameter.ident.span, err);
2242
                        }
2243
                        seen_bindings.entry(ident).or_insert(type_parameter.ident.span);
2244

2245 2246 2247 2248 2249 2250
                        // plain insert (no renaming)
                        let def_id = self.definitions.local_def_id(type_parameter.id);
                        let def = Def::TyParam(def_id);
                        function_type_rib.bindings.insert(ident, def);
                        self.record_def(type_parameter.id, PathResolution::new(def));
                    }
2251
                }
J
Jeffrey Seyfried 已提交
2252
                self.ribs[TypeNS].push(function_type_rib);
2253 2254
            }

B
Brian Anderson 已提交
2255
            NoTypeParameters => {
2256 2257 2258 2259
                // Nothing to do.
            }
        }

A
Alex Crichton 已提交
2260
        f(self);
2261

J
Jeffrey Seyfried 已提交
2262
        if let HasTypeParameters(..) = type_parameters {
J
Jeffrey Seyfried 已提交
2263
            self.ribs[TypeNS].pop();
2264 2265 2266
        }
    }

C
corentih 已提交
2267 2268
    fn with_label_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2269
    {
2270
        self.label_ribs.push(Rib::new(NormalRibKind));
A
Alex Crichton 已提交
2271
        f(self);
J
Jeffrey Seyfried 已提交
2272
        self.label_ribs.pop();
2273
    }
2274

2275 2276 2277 2278 2279 2280 2281 2282 2283 2284
    fn with_item_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
    {
        self.ribs[ValueNS].push(Rib::new(ItemRibKind));
        self.ribs[TypeNS].push(Rib::new(ItemRibKind));
        f(self);
        self.ribs[TypeNS].pop();
        self.ribs[ValueNS].pop();
    }

C
corentih 已提交
2285 2286
    fn with_constant_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2287
    {
J
Jeffrey Seyfried 已提交
2288
        self.ribs[ValueNS].push(Rib::new(ConstantItemRibKind));
A
Alex Crichton 已提交
2289
        f(self);
J
Jeffrey Seyfried 已提交
2290
        self.ribs[ValueNS].pop();
2291 2292
    }

2293 2294
    fn with_current_self_type<T, F>(&mut self, self_type: &Ty, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
J
Jorge Aparicio 已提交
2295
    {
2296 2297 2298 2299 2300 2301 2302
        // Handle nested impls (inside fn bodies)
        let previous_value = replace(&mut self.current_self_type, Some(self_type.clone()));
        let result = f(self);
        self.current_self_type = previous_value;
        result
    }

2303
    /// This is called to resolve a trait reference from an `impl` (i.e. `impl Trait for Foo`)
2304
    fn with_optional_trait_ref<T, F>(&mut self, opt_trait_ref: Option<&TraitRef>, f: F) -> T
2305
        where F: FnOnce(&mut Resolver, Option<DefId>) -> T
J
Jorge Aparicio 已提交
2306
    {
2307
        let mut new_val = None;
2308
        let mut new_id = None;
E
Eduard Burtescu 已提交
2309
        if let Some(trait_ref) = opt_trait_ref {
2310
            let path: Vec<_> = trait_ref.path.segments.iter()
V
Vadim Petrochenkov 已提交
2311
                .map(|seg| seg.ident)
2312
                .collect();
2313 2314 2315 2316 2317
            let def = self.smart_resolve_path_fragment(
                trait_ref.ref_id,
                None,
                &path,
                trait_ref.path.span,
2318 2319
                PathSource::Trait(AliasPossibility::No),
                CrateLint::SimplePath(trait_ref.ref_id),
2320
            ).base_def();
2321 2322
            if def != Def::Err {
                new_id = Some(def.def_id());
2323
                let span = trait_ref.path.span;
2324 2325 2326 2327 2328 2329 2330
                if let PathResult::Module(module) = self.resolve_path(
                    &path,
                    None,
                    false,
                    span,
                    CrateLint::SimplePath(trait_ref.ref_id),
                ) {
2331 2332
                    new_val = Some((module, trait_ref.clone()));
                }
2333
            }
2334
        }
2335
        let original_trait_ref = replace(&mut self.current_trait_ref, new_val);
2336
        let result = f(self, new_id);
2337 2338 2339 2340
        self.current_trait_ref = original_trait_ref;
        result
    }

2341 2342 2343 2344 2345 2346
    fn with_self_rib<F>(&mut self, self_def: Def, f: F)
        where F: FnOnce(&mut Resolver)
    {
        let mut self_type_rib = Rib::new(NormalRibKind);

        // plain insert (no renaming, types are not currently hygienic....)
2347
        self_type_rib.bindings.insert(keywords::SelfType.ident(), self_def);
J
Jeffrey Seyfried 已提交
2348
        self.ribs[TypeNS].push(self_type_rib);
2349
        f(self);
J
Jeffrey Seyfried 已提交
2350
        self.ribs[TypeNS].pop();
2351 2352
    }

F
Felix S. Klock II 已提交
2353
    fn resolve_implementation(&mut self,
2354 2355 2356
                              generics: &Generics,
                              opt_trait_reference: &Option<TraitRef>,
                              self_type: &Ty,
2357
                              item_id: NodeId,
2358
                              impl_items: &[ImplItem]) {
2359
        // If applicable, create a rib for the type parameters.
2360
        self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
            // Dummy self type for better errors if `Self` is used in the trait path.
            this.with_self_rib(Def::SelfTy(None, None), |this| {
                // Resolve the trait reference, if necessary.
                this.with_optional_trait_ref(opt_trait_reference.as_ref(), |this, trait_id| {
                    let item_def_id = this.definitions.local_def_id(item_id);
                    this.with_self_rib(Def::SelfTy(trait_id, Some(item_def_id)), |this| {
                        if let Some(trait_ref) = opt_trait_reference.as_ref() {
                            // Resolve type arguments in trait path
                            visit::walk_trait_ref(this, trait_ref);
                        }
                        // Resolve the self type.
                        this.visit_ty(self_type);
                        // Resolve the type parameters.
                        this.visit_generics(generics);
                        this.with_current_self_type(self_type, |this| {
                            for impl_item in impl_items {
                                this.check_proc_macro_attrs(&impl_item.attrs);
                                this.resolve_visibility(&impl_item.vis);

2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404
                                // We also need a new scope for the impl item type parameters.
                                let type_parameters = HasTypeParameters(&impl_item.generics,
                                                                        TraitOrImplItemRibKind);
                                this.with_type_parameter_rib(type_parameters, |this| {
                                    use self::ResolutionError::*;
                                    match impl_item.node {
                                        ImplItemKind::Const(..) => {
                                            // If this is a trait impl, ensure the const
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
                                                                ValueNS,
                                                                impl_item.span,
                                                |n, s| ConstNotMemberOfTrait(n, s));
                                            this.with_constant_rib(|this|
                                                visit::walk_impl_item(this, impl_item)
                                            );
                                        }
                                        ImplItemKind::Method(_, _) => {
                                            // If this is a trait impl, ensure the method
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
                                                                ValueNS,
                                                                impl_item.span,
                                                |n, s| MethodNotMemberOfTrait(n, s));

2405
                                            visit::walk_impl_item(this, impl_item);
2406 2407 2408 2409 2410 2411 2412 2413 2414
                                        }
                                        ImplItemKind::Type(ref ty) => {
                                            // If this is a trait impl, ensure the type
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
                                                                TypeNS,
                                                                impl_item.span,
                                                |n, s| TypeNotMemberOfTrait(n, s));

2415
                                            this.visit_ty(ty);
2416 2417 2418
                                        }
                                        ImplItemKind::Macro(_) =>
                                            panic!("unexpanded macro in resolve!"),
2419
                                    }
2420
                                });
2421
                            }
2422
                        });
2423
                    });
2424
                });
2425
            });
2426
        });
2427 2428
    }

2429
    fn check_trait_item<F>(&mut self, ident: Ident, ns: Namespace, span: Span, err: F)
C
corentih 已提交
2430 2431 2432 2433
        where F: FnOnce(Name, &str) -> ResolutionError
    {
        // If there is a TraitRef in scope for an impl, then the method must be in the
        // trait.
2434 2435 2436 2437
        if let Some((module, _)) = self.current_trait_ref {
            if self.resolve_ident_in_module(module, ident, ns, false, false, span).is_err() {
                let path = &self.current_trait_ref.as_ref().unwrap().1.path;
                resolve_error(self, span, err(ident.name, &path_names_to_string(path)));
2438 2439 2440 2441
            }
        }
    }

E
Eduard Burtescu 已提交
2442
    fn resolve_local(&mut self, local: &Local) {
2443
        // Resolve the type.
2444
        walk_list!(self, visit_ty, &local.ty);
2445

2446
        // Resolve the initializer.
2447
        walk_list!(self, visit_expr, &local.init);
2448 2449

        // Resolve the pattern.
2450
        self.resolve_pattern(&local.pat, PatternSource::Let, &mut FxHashMap());
2451 2452
    }

J
John Clements 已提交
2453 2454 2455 2456
    // build a map from pattern identifiers to binding-info's.
    // this is done hygienically. This could arise for a macro
    // that expands into an or-pattern where one 'x' was from the
    // user and one 'x' came from the macro.
E
Eduard Burtescu 已提交
2457
    fn binding_mode_map(&mut self, pat: &Pat) -> BindingMap {
2458
        let mut binding_map = FxHashMap();
2459 2460 2461

        pat.walk(&mut |pat| {
            if let PatKind::Ident(binding_mode, ident, ref sub_pat) = pat.node {
2462 2463
                if sub_pat.is_some() || match self.def_map.get(&pat.id).map(|res| res.base_def()) {
                    Some(Def::Local(..)) => true,
2464 2465 2466
                    _ => false,
                } {
                    let binding_info = BindingInfo { span: ident.span, binding_mode: binding_mode };
V
Vadim Petrochenkov 已提交
2467
                    binding_map.insert(ident, binding_info);
2468 2469 2470
                }
            }
            true
2471
        });
2472 2473

        binding_map
2474 2475
    }

J
John Clements 已提交
2476 2477
    // check that all of the arms in an or-pattern have exactly the
    // same set of bindings, with the same binding modes for each.
2478 2479
    fn check_consistent_bindings(&mut self, pats: &[P<Pat>]) {
        if pats.is_empty() {
C
corentih 已提交
2480
            return;
2481
        }
2482 2483 2484

        let mut missing_vars = FxHashMap();
        let mut inconsistent_vars = FxHashMap();
2485
        for (i, p) in pats.iter().enumerate() {
J
Jonas Schievink 已提交
2486
            let map_i = self.binding_mode_map(&p);
2487

2488
            for (j, q) in pats.iter().enumerate() {
2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499
                if i == j {
                    continue;
                }

                let map_j = self.binding_mode_map(&q);
                for (&key, &binding_i) in &map_i {
                    if map_j.len() == 0 {                   // Account for missing bindings when
                        let binding_error = missing_vars    // map_j has none.
                            .entry(key.name)
                            .or_insert(BindingError {
                                name: key.name,
2500 2501
                                origin: BTreeSet::new(),
                                target: BTreeSet::new(),
2502 2503 2504
                            });
                        binding_error.origin.insert(binding_i.span);
                        binding_error.target.insert(q.span);
C
corentih 已提交
2505
                    }
2506 2507 2508 2509 2510 2511 2512
                    for (&key_j, &binding_j) in &map_j {
                        match map_i.get(&key_j) {
                            None => {  // missing binding
                                let binding_error = missing_vars
                                    .entry(key_j.name)
                                    .or_insert(BindingError {
                                        name: key_j.name,
2513 2514
                                        origin: BTreeSet::new(),
                                        target: BTreeSet::new(),
2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525
                                    });
                                binding_error.origin.insert(binding_j.span);
                                binding_error.target.insert(p.span);
                            }
                            Some(binding_i) => {  // check consistent binding
                                if binding_i.binding_mode != binding_j.binding_mode {
                                    inconsistent_vars
                                        .entry(key.name)
                                        .or_insert((binding_j.span, binding_i.span));
                                }
                            }
C
corentih 已提交
2526
                        }
2527
                    }
2528 2529
                }
            }
2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541
        }
        let mut missing_vars = missing_vars.iter().collect::<Vec<_>>();
        missing_vars.sort();
        for (_, v) in missing_vars {
            resolve_error(self,
                          *v.origin.iter().next().unwrap(),
                          ResolutionError::VariableNotBoundInPattern(v));
        }
        let mut inconsistent_vars = inconsistent_vars.iter().collect::<Vec<_>>();
        inconsistent_vars.sort();
        for (name, v) in inconsistent_vars {
            resolve_error(self, v.0, ResolutionError::VariableBoundWithDifferentMode(*name, v.1));
2542
        }
2543 2544
    }

F
Felix S. Klock II 已提交
2545
    fn resolve_arm(&mut self, arm: &Arm) {
J
Jeffrey Seyfried 已提交
2546
        self.ribs[ValueNS].push(Rib::new(NormalRibKind));
2547

2548
        let mut bindings_list = FxHashMap();
2549
        for pattern in &arm.pats {
2550
            self.resolve_pattern(&pattern, PatternSource::Match, &mut bindings_list);
2551 2552
        }

2553 2554
        // This has to happen *after* we determine which pat_idents are variants
        self.check_consistent_bindings(&arm.pats);
2555

2556
        walk_list!(self, visit_expr, &arm.guard);
J
Jonas Schievink 已提交
2557
        self.visit_expr(&arm.body);
2558

J
Jeffrey Seyfried 已提交
2559
        self.ribs[ValueNS].pop();
2560 2561
    }

E
Eduard Burtescu 已提交
2562
    fn resolve_block(&mut self, block: &Block) {
2563
        debug!("(resolving block) entering block");
2564
        // Move down in the graph, if there's an anonymous module rooted here.
2565
        let orig_module = self.current_module;
2566
        let anonymous_module = self.block_map.get(&block.id).cloned(); // clones a reference
2567

2568
        let mut num_macro_definition_ribs = 0;
2569 2570
        if let Some(anonymous_module) = anonymous_module {
            debug!("(resolving block) found anonymous module, moving down");
J
Jeffrey Seyfried 已提交
2571 2572
            self.ribs[ValueNS].push(Rib::new(ModuleRibKind(anonymous_module)));
            self.ribs[TypeNS].push(Rib::new(ModuleRibKind(anonymous_module)));
2573
            self.current_module = anonymous_module;
2574
            self.finalize_current_module_macro_resolutions();
2575
        } else {
J
Jeffrey Seyfried 已提交
2576
            self.ribs[ValueNS].push(Rib::new(NormalRibKind));
2577 2578 2579
        }

        // Descend into the block.
2580
        for stmt in &block.stmts {
2581
            if let ast::StmtKind::Item(ref item) = stmt.node {
2582
                if let ast::ItemKind::MacroDef(..) = item.node {
2583
                    num_macro_definition_ribs += 1;
2584 2585 2586
                    let def = self.definitions.local_def_id(item.id);
                    self.ribs[ValueNS].push(Rib::new(MacroDefinition(def)));
                    self.label_ribs.push(Rib::new(MacroDefinition(def)));
2587 2588 2589 2590 2591
                }
            }

            self.visit_stmt(stmt);
        }
2592 2593

        // Move back up.
J
Jeffrey Seyfried 已提交
2594
        self.current_module = orig_module;
2595
        for _ in 0 .. num_macro_definition_ribs {
J
Jeffrey Seyfried 已提交
2596
            self.ribs[ValueNS].pop();
2597
            self.label_ribs.pop();
2598
        }
J
Jeffrey Seyfried 已提交
2599
        self.ribs[ValueNS].pop();
J
Jeffrey Seyfried 已提交
2600
        if let Some(_) = anonymous_module {
J
Jeffrey Seyfried 已提交
2601
            self.ribs[TypeNS].pop();
G
Garming Sam 已提交
2602
        }
2603
        debug!("(resolving block) leaving block");
2604 2605
    }

2606
    fn fresh_binding(&mut self,
V
Vadim Petrochenkov 已提交
2607
                     ident: Ident,
2608 2609 2610
                     pat_id: NodeId,
                     outer_pat_id: NodeId,
                     pat_src: PatternSource,
2611
                     bindings: &mut FxHashMap<Ident, NodeId>)
2612 2613
                     -> PathResolution {
        // Add the binding to the local ribs, if it
2614 2615
        // doesn't already exist in the bindings map. (We
        // must not add it if it's in the bindings map
2616 2617
        // because that breaks the assumptions later
        // passes make about or-patterns.)
2618
        let mut def = Def::Local(pat_id);
V
Vadim Petrochenkov 已提交
2619
        match bindings.get(&ident).cloned() {
2620 2621 2622 2623 2624 2625
            Some(id) if id == outer_pat_id => {
                // `Variant(a, a)`, error
                resolve_error(
                    self,
                    ident.span,
                    ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(
V
Vadim Petrochenkov 已提交
2626
                        &ident.as_str())
2627 2628 2629 2630 2631 2632 2633 2634
                );
            }
            Some(..) if pat_src == PatternSource::FnParam => {
                // `fn f(a: u8, a: u8)`, error
                resolve_error(
                    self,
                    ident.span,
                    ResolutionError::IdentifierBoundMoreThanOnceInParameterList(
V
Vadim Petrochenkov 已提交
2635
                        &ident.as_str())
2636 2637
                );
            }
2638 2639 2640
            Some(..) if pat_src == PatternSource::Match ||
                        pat_src == PatternSource::IfLet ||
                        pat_src == PatternSource::WhileLet => {
2641 2642
                // `Variant1(a) | Variant2(a)`, ok
                // Reuse definition from the first `a`.
V
Vadim Petrochenkov 已提交
2643
                def = self.ribs[ValueNS].last_mut().unwrap().bindings[&ident];
2644 2645 2646 2647 2648 2649
            }
            Some(..) => {
                span_bug!(ident.span, "two bindings with the same name from \
                                       unexpected pattern source {:?}", pat_src);
            }
            None => {
2650
                // A completely fresh binding, add to the lists if it's valid.
V
Vadim Petrochenkov 已提交
2651 2652 2653
                if ident.name != keywords::Invalid.name() {
                    bindings.insert(ident, outer_pat_id);
                    self.ribs[ValueNS].last_mut().unwrap().bindings.insert(ident, def);
2654
                }
2655
            }
2656
        }
2657

2658
        PathResolution::new(def)
2659
    }
2660

2661 2662 2663 2664 2665
    fn resolve_pattern(&mut self,
                       pat: &Pat,
                       pat_src: PatternSource,
                       // Maps idents to the node ID for the
                       // outermost pattern that binds them.
2666
                       bindings: &mut FxHashMap<Ident, NodeId>) {
2667
        // Visit all direct subpatterns of this pattern.
2668 2669 2670
        let outer_pat_id = pat.id;
        pat.walk(&mut |pat| {
            match pat.node {
V
Vadim Petrochenkov 已提交
2671
                PatKind::Ident(bmode, ident, ref opt_pat) => {
2672 2673
                    // First try to resolve the identifier as some existing
                    // entity, then fall back to a fresh binding.
V
Vadim Petrochenkov 已提交
2674
                    let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS,
2675
                                                                      false, pat.span)
2676
                                      .and_then(LexicalScopeBinding::item);
2677
                    let resolution = binding.map(NameBinding::def).and_then(|def| {
2678 2679
                        let is_syntactic_ambiguity = opt_pat.is_none() &&
                            bmode == BindingMode::ByValue(Mutability::Immutable);
2680
                        match def {
2681 2682
                            Def::StructCtor(_, CtorKind::Const) |
                            Def::VariantCtor(_, CtorKind::Const) |
2683 2684 2685
                            Def::Const(..) if is_syntactic_ambiguity => {
                                // Disambiguate in favor of a unit struct/variant
                                // or constant pattern.
V
Vadim Petrochenkov 已提交
2686
                                self.record_use(ident, ValueNS, binding.unwrap(), ident.span);
2687
                                Some(PathResolution::new(def))
2688
                            }
2689
                            Def::StructCtor(..) | Def::VariantCtor(..) |
2690
                            Def::Const(..) | Def::Static(..) => {
2691 2692 2693 2694 2695
                                // This is unambiguously a fresh binding, either syntactically
                                // (e.g. `IDENT @ PAT` or `ref IDENT`) or because `IDENT` resolves
                                // to something unusable as a pattern (e.g. constructor function),
                                // but we still conservatively report an error, see
                                // issues/33118#issuecomment-233962221 for one reason why.
2696
                                resolve_error(
2697
                                    self,
2698 2699
                                    ident.span,
                                    ResolutionError::BindingShadowsSomethingUnacceptable(
V
Vadim Petrochenkov 已提交
2700
                                        pat_src.descr(), ident.name, binding.unwrap())
2701
                                );
2702
                                None
2703
                            }
2704
                            Def::Fn(..) | Def::Err => {
2705 2706
                                // These entities are explicitly allowed
                                // to be shadowed by fresh bindings.
2707
                                None
2708 2709 2710
                            }
                            def => {
                                span_bug!(ident.span, "unexpected definition for an \
2711
                                                       identifier in pattern: {:?}", def);
2712
                            }
2713
                        }
2714
                    }).unwrap_or_else(|| {
2715
                        self.fresh_binding(ident, pat.id, outer_pat_id, pat_src, bindings)
2716
                    });
2717 2718

                    self.record_def(pat.id, resolution);
2719 2720
                }

2721
                PatKind::TupleStruct(ref path, ..) => {
2722
                    self.smart_resolve_path(pat.id, None, path, PathSource::TupleStruct);
2723 2724
                }

2725
                PatKind::Path(ref qself, ref path) => {
2726
                    self.smart_resolve_path(pat.id, qself.as_ref(), path, PathSource::Pat);
2727 2728
                }

V
Vadim Petrochenkov 已提交
2729
                PatKind::Struct(ref path, ..) => {
2730
                    self.smart_resolve_path(pat.id, None, path, PathSource::Struct);
2731
                }
2732 2733

                _ => {}
2734
            }
2735
            true
2736
        });
2737

2738
        visit::walk_pat(self, pat);
2739 2740
    }

2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751
    // High-level and context dependent path resolution routine.
    // Resolves the path and records the resolution into definition map.
    // If resolution fails tries several techniques to find likely
    // resolution candidates, suggest imports or other help, and report
    // errors in user friendly way.
    fn smart_resolve_path(&mut self,
                          id: NodeId,
                          qself: Option<&QSelf>,
                          path: &Path,
                          source: PathSource)
                          -> PathResolution {
2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770
        self.smart_resolve_path_with_crate_lint(id, qself, path, source, CrateLint::SimplePath(id))
    }

    /// A variant of `smart_resolve_path` where you also specify extra
    /// information about where the path came from; this extra info is
    /// sometimes needed for the lint that recommends rewriting
    /// absoluate paths to `crate`, so that it knows how to frame the
    /// suggestion. If you are just resolving a path like `foo::bar`
    /// that appears...somewhere, though, then you just want
    /// `CrateLint::SimplePath`, which is what `smart_resolve_path`
    /// already provides.
    fn smart_resolve_path_with_crate_lint(
        &mut self,
        id: NodeId,
        qself: Option<&QSelf>,
        path: &Path,
        source: PathSource,
        crate_lint: CrateLint
    ) -> PathResolution {
2771
        let segments = &path.segments.iter()
V
Vadim Petrochenkov 已提交
2772
            .map(|seg| seg.ident)
2773
            .collect::<Vec<_>>();
2774
        self.smart_resolve_path_fragment(id, qself, segments, path.span, source, crate_lint)
2775 2776 2777
    }

    fn smart_resolve_path_fragment(&mut self,
2778
                                   id: NodeId,
2779
                                   qself: Option<&QSelf>,
V
Vadim Petrochenkov 已提交
2780
                                   path: &[Ident],
2781
                                   span: Span,
2782 2783
                                   source: PathSource,
                                   crate_lint: CrateLint)
2784
                                   -> PathResolution {
2785
        let ident_span = path.last().map_or(span, |ident| ident.span);
2786 2787
        let ns = source.namespace();
        let is_expected = &|def| source.is_expected(def);
2788
        let is_enum_variant = &|def| if let Def::Variant(..) = def { true } else { false };
2789 2790 2791 2792 2793 2794 2795

        // Base error is amended with one short label and possibly some longer helps/notes.
        let report_errors = |this: &mut Self, def: Option<Def>| {
            // Make the base error.
            let expected = source.descr_expected();
            let path_str = names_to_string(path);
            let code = source.error_code(def.is_some());
2796
            let (base_msg, fallback_label, base_span) = if let Some(def) = def {
2797
                (format!("expected {}, found {} `{}`", expected, def.kind_name(), path_str),
2798 2799
                 format!("not a {}", expected),
                 span)
2800
            } else {
V
Vadim Petrochenkov 已提交
2801
                let item_str = path[path.len() - 1];
2802
                let item_span = path[path.len() - 1].span;
2803 2804
                let (mod_prefix, mod_str) = if path.len() == 1 {
                    (format!(""), format!("this scope"))
V
Vadim Petrochenkov 已提交
2805
                } else if path.len() == 2 && path[0].name == keywords::CrateRoot.name() {
2806 2807 2808
                    (format!(""), format!("the crate root"))
                } else {
                    let mod_path = &path[..path.len() - 1];
2809
                    let mod_prefix = match this.resolve_path(mod_path, Some(TypeNS),
2810
                                                             false, span, CrateLint::No) {
2811 2812 2813 2814 2815 2816
                        PathResult::Module(module) => module.def(),
                        _ => None,
                    }.map_or(format!(""), |def| format!("{} ", def.kind_name()));
                    (mod_prefix, format!("`{}`", names_to_string(mod_path)))
                };
                (format!("cannot find {} `{}` in {}{}", expected, item_str, mod_prefix, mod_str),
2817 2818
                 format!("not found in {}", mod_str),
                 item_span)
2819
            };
2820
            let code = DiagnosticId::Error(code.into());
2821
            let mut err = this.session.struct_span_err_with_code(base_span, &base_msg, code);
2822 2823 2824 2825

            // Emit special messages for unresolved `Self` and `self`.
            if is_self_type(path, ns) {
                __diagnostic_used!(E0411);
2826
                err.code(DiagnosticId::Error("E0411".into()));
2827
                err.span_label(span, "`Self` is only available in traits and impls");
2828
                return (err, Vec::new());
2829 2830 2831
            }
            if is_self_value(path, ns) {
                __diagnostic_used!(E0424);
2832
                err.code(DiagnosticId::Error("E0424".into()));
2833
                err.span_label(span, format!("`self` value is only available in \
2834
                                               methods with `self` parameter"));
2835
                return (err, Vec::new());
2836 2837 2838
            }

            // Try to lookup the name in more relaxed fashion for better error reporting.
2839
            let ident = *path.last().unwrap();
V
Vadim Petrochenkov 已提交
2840
            let candidates = this.lookup_import_candidates(ident.name, ns, is_expected);
2841
            if candidates.is_empty() && is_expected(Def::Enum(DefId::local(CRATE_DEF_INDEX))) {
2842
                let enum_candidates =
V
Vadim Petrochenkov 已提交
2843
                    this.lookup_import_candidates(ident.name, ns, is_enum_variant);
E
Esteban Küber 已提交
2844 2845 2846 2847 2848
                let mut enum_candidates = enum_candidates.iter()
                    .map(|suggestion| import_candidate_to_paths(&suggestion)).collect::<Vec<_>>();
                enum_candidates.sort();
                for (sp, variant_path, enum_path) in enum_candidates {
                    if sp == DUMMY_SP {
2849 2850 2851 2852
                        let msg = format!("there is an enum variant `{}`, \
                                        try using `{}`?",
                                        variant_path,
                                        enum_path);
2853 2854
                        err.help(&msg);
                    } else {
2855 2856
                        err.span_suggestion(span, "you can try using the variant's enum",
                                            enum_path);
2857 2858
                    }
                }
2859
            }
2860
            if path.len() == 1 && this.self_type_is_available(span) {
V
Vadim Petrochenkov 已提交
2861 2862
                if let Some(candidate) = this.lookup_assoc_candidate(ident, ns, is_expected) {
                    let self_is_available = this.self_value_is_available(path[0].span, span);
2863 2864
                    match candidate {
                        AssocSuggestion::Field => {
2865 2866
                            err.span_suggestion(span, "try",
                                                format!("self.{}", path_str));
2867
                            if !self_is_available {
2868
                                err.span_label(span, format!("`self` value is only available in \
2869 2870 2871 2872
                                                               methods with `self` parameter"));
                            }
                        }
                        AssocSuggestion::MethodWithSelf if self_is_available => {
2873 2874
                            err.span_suggestion(span, "try",
                                                format!("self.{}", path_str));
2875 2876
                        }
                        AssocSuggestion::MethodWithSelf | AssocSuggestion::AssocItem => {
2877 2878
                            err.span_suggestion(span, "try",
                                                format!("Self::{}", path_str));
2879 2880
                        }
                    }
2881
                    return (err, candidates);
2882 2883 2884
                }
            }

2885 2886 2887
            let mut levenshtein_worked = false;

            // Try Levenshtein.
2888
            if let Some(candidate) = this.lookup_typo_candidate(path, ns, is_expected, span) {
2889
                err.span_label(ident_span, format!("did you mean `{}`?", candidate));
2890 2891 2892
                levenshtein_worked = true;
            }

2893 2894 2895 2896
            // Try context dependent help if relaxed lookup didn't work.
            if let Some(def) = def {
                match (def, source) {
                    (Def::Macro(..), _) => {
2897
                        err.span_label(span, format!("did you mean `{}!(...)`?", path_str));
2898
                        return (err, candidates);
2899
                    }
A
Alex Burka 已提交
2900
                    (Def::TyAlias(..), PathSource::Trait(_)) => {
2901
                        err.span_label(span, "type aliases cannot be used for traits");
2902
                        return (err, candidates);
2903
                    }
2904
                    (Def::Mod(..), PathSource::Expr(Some(parent))) => match parent.node {
2905
                        ExprKind::Field(_, ident) => {
2906
                            err.span_label(parent.span, format!("did you mean `{}::{}`?",
V
Vadim Petrochenkov 已提交
2907
                                                                 path_str, ident));
2908
                            return (err, candidates);
2909
                        }
2910
                        ExprKind::MethodCall(ref segment, ..) => {
2911
                            err.span_label(parent.span, format!("did you mean `{}::{}(...)`?",
2912
                                                                 path_str, segment.ident));
2913
                            return (err, candidates);
2914 2915 2916
                        }
                        _ => {}
                    },
2917 2918
                    (Def::Enum(..), PathSource::TupleStruct)
                        | (Def::Enum(..), PathSource::Expr(..))  => {
2919 2920 2921 2922
                        if let Some(variants) = this.collect_enum_variants(def) {
                            err.note(&format!("did you mean to use one \
                                               of the following variants?\n{}",
                                variants.iter()
2923 2924
                                    .map(|suggestion| path_names_to_string(suggestion))
                                    .map(|suggestion| format!("- `{}`", suggestion))
2925 2926 2927 2928 2929 2930 2931 2932
                                    .collect::<Vec<_>>()
                                    .join("\n")));

                        } else {
                            err.note("did you mean to use one of the enum's variants?");
                        }
                        return (err, candidates);
                    },
E
Esteban Küber 已提交
2933
                    (Def::Struct(def_id), _) if ns == ValueNS => {
2934 2935 2936 2937 2938 2939
                        if let Some((ctor_def, ctor_vis))
                                = this.struct_constructors.get(&def_id).cloned() {
                            let accessible_ctor = this.is_accessible(ctor_vis);
                            if is_expected(ctor_def) && !accessible_ctor {
                                err.span_label(span, format!("constructor is not visible \
                                                              here due to private fields"));
2940
                            }
2941
                        } else {
2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973
                            // HACK(estebank): find a better way to figure out that this was a
                            // parser issue where a struct literal is being used on an expression
                            // where a brace being opened means a block is being started. Look
                            // ahead for the next text to see if `span` is followed by a `{`.
                            let cm = this.session.codemap();
                            let mut sp = span;
                            loop {
                                sp = cm.next_point(sp);
                                match cm.span_to_snippet(sp) {
                                    Ok(ref snippet) => {
                                        if snippet.chars().any(|c| { !c.is_whitespace() }) {
                                            break;
                                        }
                                    }
                                    _ => break,
                                }
                            }
                            let followed_by_brace = match cm.span_to_snippet(sp) {
                                Ok(ref snippet) if snippet == "{" => true,
                                _ => false,
                            };
                            if let (PathSource::Expr(None), true) = (source, followed_by_brace) {
                                err.span_label(
                                    span,
                                    format!("did you mean `({} {{ /* fields */ }})`?", path_str),
                                );
                            } else {
                                err.span_label(
                                    span,
                                    format!("did you mean `{} {{ /* fields */ }}`?", path_str),
                                );
                            }
2974
                        }
2975
                        return (err, candidates);
2976
                    }
2977 2978 2979
                    (Def::Union(..), _) |
                    (Def::Variant(..), _) |
                    (Def::VariantCtor(_, CtorKind::Fictive), _) if ns == ValueNS => {
2980
                        err.span_label(span, format!("did you mean `{} {{ /* fields */ }}`?",
2981
                                                     path_str));
2982
                        return (err, candidates);
2983
                    }
E
Esteban Küber 已提交
2984
                    (Def::SelfTy(..), _) if ns == ValueNS => {
2985
                        err.span_label(span, fallback_label);
E
Esteban Küber 已提交
2986 2987
                        err.note("can't use `Self` as a constructor, you must use the \
                                  implemented struct");
2988
                        return (err, candidates);
2989
                    }
2990
                    (Def::TyAlias(_), _) | (Def::AssociatedTy(..), _) if ns == ValueNS => {
E
Esteban Küber 已提交
2991
                        err.note("can't use a type alias as a constructor");
2992
                        return (err, candidates);
E
Esteban Küber 已提交
2993
                    }
2994 2995 2996 2997
                    _ => {}
                }
            }

2998
            // Fallback label.
2999
            if !levenshtein_worked {
3000
                err.span_label(base_span, fallback_label);
3001
                this.type_ascription_suggestion(&mut err, base_span);
3002
            }
3003
            (err, candidates)
3004 3005
        };
        let report_errors = |this: &mut Self, def: Option<Def>| {
3006 3007 3008 3009 3010
            let (err, candidates) = report_errors(this, def);
            let def_id = this.current_module.normal_ancestor_id;
            let node_id = this.definitions.as_local_node_id(def_id).unwrap();
            let better = def.is_some();
            this.use_injections.push(UseError { err, candidates, node_id, better });
3011 3012 3013
            err_path_resolution()
        };

3014 3015 3016 3017 3018 3019 3020 3021 3022 3023
        let resolution = match self.resolve_qpath_anywhere(
            id,
            qself,
            path,
            ns,
            span,
            source.defer_to_typeck(),
            source.global_by_default(),
            crate_lint,
        ) {
3024 3025
            Some(resolution) if resolution.unresolved_segments() == 0 => {
                if is_expected(resolution.base_def()) || resolution.base_def() == Def::Err {
3026 3027
                    resolution
                } else {
3028 3029 3030
                    // Add a temporary hack to smooth the transition to new struct ctor
                    // visibility rules. See #38932 for more details.
                    let mut res = None;
3031
                    if let Def::Struct(def_id) = resolution.base_def() {
3032
                        if let Some((ctor_def, ctor_vis))
3033
                                = self.struct_constructors.get(&def_id).cloned() {
3034 3035
                            if is_expected(ctor_def) && self.is_accessible(ctor_vis) {
                                let lint = lint::builtin::LEGACY_CONSTRUCTOR_VISIBILITY;
3036
                                self.session.buffer_lint(lint, id, span,
3037
                                    "private struct constructors are not usable through \
3038
                                     re-exports in outer modules",
3039
                                );
3040 3041 3042 3043 3044
                                res = Some(PathResolution::new(ctor_def));
                            }
                        }
                    }

3045
                    res.unwrap_or_else(|| report_errors(self, Some(resolution.base_def())))
3046 3047 3048 3049 3050 3051 3052
                }
            }
            Some(resolution) if source.defer_to_typeck() => {
                // Not fully resolved associated item `T::A::B` or `<T as Tr>::A::B`
                // or `<T>::A::B`. If `B` should be resolved in value namespace then
                // it needs to be added to the trait map.
                if ns == ValueNS {
V
Vadim Petrochenkov 已提交
3053
                    let item_name = *path.last().unwrap();
3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068
                    let traits = self.get_traits_containing_item(item_name, ns);
                    self.trait_map.insert(id, traits);
                }
                resolution
            }
            _ => report_errors(self, None)
        };

        if let PathSource::TraitItem(..) = source {} else {
            // Avoid recording definition of `A::B` in `<T as A>::B::C`.
            self.record_def(id, resolution);
        }
        resolution
    }

3069 3070 3071 3072 3073 3074 3075 3076 3077
    fn type_ascription_suggestion(&self,
                                  err: &mut DiagnosticBuilder,
                                  base_span: Span) {
        debug!("type_ascription_suggetion {:?}", base_span);
        let cm = self.session.codemap();
        debug!("self.current_type_ascription {:?}", self.current_type_ascription);
        if let Some(sp) = self.current_type_ascription.last() {
            let mut sp = *sp;
            loop {  // try to find the `:`, bail on first non-':'/non-whitespace
3078 3079
                sp = cm.next_point(sp);
                if let Ok(snippet) = cm.span_to_snippet(sp.to(cm.next_point(sp))) {
3080
                    debug!("snippet {:?}", snippet);
3081 3082
                    let line_sp = cm.lookup_char_pos(sp.hi()).line;
                    let line_base_sp = cm.lookup_char_pos(base_span.lo()).line;
3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103
                    debug!("{:?} {:?}", line_sp, line_base_sp);
                    if snippet == ":" {
                        err.span_label(base_span,
                                       "expecting a type here because of type ascription");
                        if line_sp != line_base_sp {
                            err.span_suggestion_short(sp,
                                                      "did you mean to use `;` here instead?",
                                                      ";".to_string());
                        }
                        break;
                    } else if snippet.trim().len() != 0  {
                        debug!("tried to find type ascription `:` token, couldn't find it");
                        break;
                    }
                } else {
                    break;
                }
            }
        }
    }

3104 3105 3106
    fn self_type_is_available(&mut self, span: Span) -> bool {
        let binding = self.resolve_ident_in_lexical_scope(keywords::SelfType.ident(),
                                                          TypeNS, false, span);
3107 3108 3109
        if let Some(LexicalScopeBinding::Def(def)) = binding { def != Def::Err } else { false }
    }

3110 3111 3112
    fn self_value_is_available(&mut self, self_span: Span, path_span: Span) -> bool {
        let ident = Ident::new(keywords::SelfValue.name(), self_span);
        let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS, false, path_span);
3113 3114 3115 3116 3117 3118 3119
        if let Some(LexicalScopeBinding::Def(def)) = binding { def != Def::Err } else { false }
    }

    // Resolve in alternative namespaces if resolution in the primary namespace fails.
    fn resolve_qpath_anywhere(&mut self,
                              id: NodeId,
                              qself: Option<&QSelf>,
V
Vadim Petrochenkov 已提交
3120
                              path: &[Ident],
3121 3122 3123
                              primary_ns: Namespace,
                              span: Span,
                              defer_to_typeck: bool,
3124 3125
                              global_by_default: bool,
                              crate_lint: CrateLint)
3126 3127 3128 3129 3130 3131
                              -> Option<PathResolution> {
        let mut fin_res = None;
        // FIXME: can't resolve paths in macro namespace yet, macros are
        // processed by the little special hack below.
        for (i, ns) in [primary_ns, TypeNS, ValueNS, /*MacroNS*/].iter().cloned().enumerate() {
            if i == 0 || ns != primary_ns {
3132
                match self.resolve_qpath(id, qself, path, ns, span, global_by_default, crate_lint) {
3133 3134
                    // If defer_to_typeck, then resolution > no resolution,
                    // otherwise full resolution > partial resolution > no resolution.
3135 3136
                    Some(res) if res.unresolved_segments() == 0 || defer_to_typeck =>
                        return Some(res),
3137 3138 3139 3140
                    res => if fin_res.is_none() { fin_res = res },
                };
            }
        }
V
Vadim Petrochenkov 已提交
3141
        let is_global = self.global_macros.get(&path[0].name).cloned()
3142
            .map(|binding| binding.get_macro(self).kind() == MacroKind::Bang).unwrap_or(false);
3143
        if primary_ns != MacroNS && (is_global ||
V
Vadim Petrochenkov 已提交
3144
                                     self.macro_names.contains(&path[0].modern())) {
3145
            // Return some dummy definition, it's enough for error reporting.
J
Josh Driver 已提交
3146 3147 3148
            return Some(
                PathResolution::new(Def::Macro(DefId::local(CRATE_DEF_INDEX), MacroKind::Bang))
            );
3149 3150 3151 3152 3153 3154 3155 3156
        }
        fin_res
    }

    /// Handles paths that may refer to associated items.
    fn resolve_qpath(&mut self,
                     id: NodeId,
                     qself: Option<&QSelf>,
V
Vadim Petrochenkov 已提交
3157
                     path: &[Ident],
3158 3159
                     ns: Namespace,
                     span: Span,
3160 3161
                     global_by_default: bool,
                     crate_lint: CrateLint)
3162
                     -> Option<PathResolution> {
3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173
        debug!(
            "resolve_qpath(id={:?}, qself={:?}, path={:?}, \
             ns={:?}, span={:?}, global_by_default={:?})",
            id,
            qself,
            path,
            ns,
            span,
            global_by_default,
        );

3174
        if let Some(qself) = qself {
J
Jeffrey Seyfried 已提交
3175
            if qself.position == 0 {
3176 3177 3178
                // This is a case like `<T>::B`, where there is no
                // trait to resolve.  In that case, we leave the `B`
                // segment to be resolved by type-check.
3179 3180 3181
                return Some(PathResolution::with_unresolved_segments(
                    Def::Mod(DefId::local(CRATE_DEF_INDEX)), path.len()
                ));
3182
            }
3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197

            // Make sure `A::B` in `<T as A::B>::C` is a trait item.
            //
            // Currently, `path` names the full item (`A::B::C`, in
            // our example).  so we extract the prefix of that that is
            // the trait (the slice upto and including
            // `qself.position`). And then we recursively resolve that,
            // but with `qself` set to `None`.
            //
            // However, setting `qself` to none (but not changing the
            // span) loses the information about where this path
            // *actually* appears, so for the purposes of the crate
            // lint we pass along information that this is the trait
            // name from a fully qualified path, and this also
            // contains the full span (the `CrateLint::QPathTrait`).
3198
            let ns = if qself.position + 1 == path.len() { ns } else { TypeNS };
3199 3200 3201 3202 3203 3204
            let res = self.smart_resolve_path_fragment(
                id,
                None,
                &path[..qself.position + 1],
                span,
                PathSource::TraitItem(ns),
3205 3206 3207 3208
                CrateLint::QPathTrait {
                    qpath_id: id,
                    qpath_span: qself.path_span,
                },
3209
            );
3210 3211 3212 3213

            // The remaining segments (the `C` in our example) will
            // have to be resolved by type-check, since that requires doing
            // trait resolution.
3214 3215 3216
            return Some(PathResolution::with_unresolved_segments(
                res.base_def(), res.unresolved_segments() + path.len() - qself.position - 1
            ));
3217 3218
        }

N
Niko Matsakis 已提交
3219 3220 3221 3222 3223
        let result = match self.resolve_path(
            &path,
            Some(ns),
            true,
            span,
3224
            crate_lint,
N
Niko Matsakis 已提交
3225
        ) {
3226
            PathResult::NonModule(path_res) => path_res,
J
Jeffrey Seyfried 已提交
3227 3228
            PathResult::Module(module) if !module.is_normal() => {
                PathResolution::new(module.def().unwrap())
V
Cleanup  
Vadim Petrochenkov 已提交
3229
            }
3230 3231 3232 3233 3234 3235
            // In `a(::assoc_item)*` `a` cannot be a module. If `a` does resolve to a module we
            // don't report an error right away, but try to fallback to a primitive type.
            // So, we are still able to successfully resolve something like
            //
            // use std::u8; // bring module u8 in scope
            // fn f() -> u8 { // OK, resolves to primitive u8, not to std::u8
V
Cleanup  
Vadim Petrochenkov 已提交
3236 3237
            //     u8::max_value() // OK, resolves to associated function <u8>::max_value,
            //                     // not to non-existent std::u8::max_value
3238 3239 3240 3241
            // }
            //
            // Such behavior is required for backward compatibility.
            // The same fallback is used when `a` resolves to nothing.
3242
            PathResult::Module(..) | PathResult::Failed(..)
3243
                    if (ns == TypeNS || path.len() > 1) &&
3244
                       self.primitive_type_table.primitive_types
V
Vadim Petrochenkov 已提交
3245 3246
                           .contains_key(&path[0].name) => {
                let prim = self.primitive_type_table.primitive_types[&path[0].name];
3247
                PathResolution::with_unresolved_segments(Def::PrimTy(prim), path.len() - 1)
J
Jeffrey Seyfried 已提交
3248 3249
            }
            PathResult::Module(module) => PathResolution::new(module.def().unwrap()),
3250
            PathResult::Failed(span, msg, false) => {
J
Jeffrey Seyfried 已提交
3251 3252 3253
                resolve_error(self, span, ResolutionError::FailedToResolve(&msg));
                err_path_resolution()
            }
3254 3255
            PathResult::Failed(..) => return None,
            PathResult::Indeterminate => bug!("indetermined path result in resolve_qpath"),
J
Jeffrey Seyfried 已提交
3256 3257
        };

3258
        if path.len() > 1 && !global_by_default && result.base_def() != Def::Err &&
V
Vadim Petrochenkov 已提交
3259 3260
           path[0].name != keywords::CrateRoot.name() &&
           path[0].name != keywords::DollarCrate.name() {
3261
            let unqualified_result = {
N
Niko Matsakis 已提交
3262 3263 3264 3265 3266 3267 3268
                match self.resolve_path(
                    &[*path.last().unwrap()],
                    Some(ns),
                    false,
                    span,
                    CrateLint::No,
                ) {
3269
                    PathResult::NonModule(path_res) => path_res.base_def(),
3270 3271 3272 3273
                    PathResult::Module(module) => module.def().unwrap(),
                    _ => return Some(result),
                }
            };
3274
            if result.base_def() == unqualified_result {
3275
                let lint = lint::builtin::UNUSED_QUALIFICATIONS;
3276
                self.session.buffer_lint(lint, id, span, "unnecessary qualification")
N
Nick Cameron 已提交
3277
            }
3278
        }
N
Nick Cameron 已提交
3279

J
Jeffrey Seyfried 已提交
3280
        Some(result)
3281 3282
    }

3283 3284 3285 3286 3287 3288 3289 3290
    fn resolve_path(
        &mut self,
        path: &[Ident],
        opt_ns: Option<Namespace>, // `None` indicates a module path
        record_used: bool,
        path_span: Span,
        crate_lint: CrateLint,
    ) -> PathResult<'a> {
3291 3292
        let mut module = None;
        let mut allow_super = true;
3293
        let mut second_binding = None;
J
Jeffrey Seyfried 已提交
3294

3295
        debug!(
N
Niko Matsakis 已提交
3296 3297
            "resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
             path_span={:?}, crate_lint={:?})",
3298 3299 3300 3301 3302 3303 3304
            path,
            opt_ns,
            record_used,
            path_span,
            crate_lint,
        );

J
Jeffrey Seyfried 已提交
3305
        for (i, &ident) in path.iter().enumerate() {
3306
            debug!("resolve_path ident {} {:?}", i, ident);
J
Jeffrey Seyfried 已提交
3307 3308
            let is_last = i == path.len() - 1;
            let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
V
Vadim Petrochenkov 已提交
3309
            let name = ident.name;
J
Jeffrey Seyfried 已提交
3310

3311
            if i == 0 && ns == TypeNS && name == keywords::SelfValue.name() {
V
Vadim Petrochenkov 已提交
3312
                let mut ctxt = ident.span.ctxt().modern();
J
Jeffrey Seyfried 已提交
3313
                module = Some(self.resolve_self(&mut ctxt, self.current_module));
J
Jeffrey Seyfried 已提交
3314
                continue
3315
            } else if allow_super && ns == TypeNS && name == keywords::Super.name() {
V
Vadim Petrochenkov 已提交
3316
                let mut ctxt = ident.span.ctxt().modern();
J
Jeffrey Seyfried 已提交
3317 3318 3319 3320
                let self_module = match i {
                    0 => self.resolve_self(&mut ctxt, self.current_module),
                    _ => module.unwrap(),
                };
J
Jeffrey Seyfried 已提交
3321
                if let Some(parent) = self_module.parent {
J
Jeffrey Seyfried 已提交
3322
                    module = Some(self.resolve_self(&mut ctxt, parent));
J
Jeffrey Seyfried 已提交
3323 3324 3325
                    continue
                } else {
                    let msg = "There are too many initial `super`s.".to_string();
3326
                    return PathResult::Failed(ident.span, msg, false);
J
Jeffrey Seyfried 已提交
3327
                }
V
Vadim Petrochenkov 已提交
3328 3329
            } else if i == 0 && ns == TypeNS && name == keywords::Extern.name() {
                continue;
J
Jeffrey Seyfried 已提交
3330 3331 3332
            }
            allow_super = false;

V
Vadim Petrochenkov 已提交
3333
            if ns == TypeNS {
3334
                if (i == 0 && name == keywords::CrateRoot.name()) ||
M
Manish Goregaokar 已提交
3335
                   (i == 0 && name == keywords::Crate.name()) ||
3336
                   (i == 1 && name == keywords::Crate.name() &&
V
Vadim Petrochenkov 已提交
3337
                              path[0].name == keywords::CrateRoot.name()) {
V
Vadim Petrochenkov 已提交
3338
                    // `::a::b` or `::crate::a::b`
V
Vadim Petrochenkov 已提交
3339
                    module = Some(self.resolve_crate_root(ident.span.ctxt(), false));
V
Vadim Petrochenkov 已提交
3340
                    continue
3341
                } else if i == 0 && name == keywords::DollarCrate.name() {
V
Vadim Petrochenkov 已提交
3342
                    // `$crate::a::b`
V
Vadim Petrochenkov 已提交
3343
                    module = Some(self.resolve_crate_root(ident.span.ctxt(), true));
V
Vadim Petrochenkov 已提交
3344
                    continue
3345
                } else if i == 1 && !ident.is_path_segment_keyword() {
V
Vadim Petrochenkov 已提交
3346
                    let prev_name = path[0].name;
V
Vadim Petrochenkov 已提交
3347 3348
                    if prev_name == keywords::Extern.name() ||
                       prev_name == keywords::CrateRoot.name() &&
3349 3350
                       self.session.features_untracked().extern_absolute_paths &&
                       self.session.rust_2018() {
V
Vadim Petrochenkov 已提交
3351
                        // `::extern_crate::a::b`
3352
                        let crate_id = self.crate_loader.process_path_extern(name, ident.span);
V
Vadim Petrochenkov 已提交
3353 3354 3355 3356 3357 3358
                        let crate_root =
                            self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX });
                        self.populate_module_if_necessary(crate_root);
                        module = Some(crate_root);
                        continue
                    }
V
Vadim Petrochenkov 已提交
3359
                }
3360 3361
            }

3362 3363 3364 3365 3366 3367
            // Report special messages for path segment keywords in wrong positions.
            if name == keywords::CrateRoot.name() && i != 0 ||
               name == keywords::DollarCrate.name() && i != 0 ||
               name == keywords::SelfValue.name() && i != 0 ||
               name == keywords::SelfType.name() && i != 0 ||
               name == keywords::Super.name() && i != 0 ||
V
Vadim Petrochenkov 已提交
3368
               name == keywords::Extern.name() && i != 0 ||
M
Manish Goregaokar 已提交
3369 3370 3371 3372
               // we allow crate::foo and ::crate::foo but nothing else
               name == keywords::Crate.name() && i > 1 &&
                    path[0].name != keywords::CrateRoot.name() ||
               name == keywords::Crate.name() && path.len() == 1 {
3373 3374 3375 3376 3377
                let name_str = if name == keywords::CrateRoot.name() {
                    format!("crate root")
                } else {
                    format!("`{}`", name)
                };
V
Vadim Petrochenkov 已提交
3378
                let msg = if i == 1 && path[0].name == keywords::CrateRoot.name() {
3379 3380 3381 3382 3383 3384 3385
                    format!("global paths cannot start with {}", name_str)
                } else {
                    format!("{} in paths can only be used in start position", name_str)
                };
                return PathResult::Failed(ident.span, msg, false);
            }

J
Jeffrey Seyfried 已提交
3386
            let binding = if let Some(module) = module {
V
Vadim Petrochenkov 已提交
3387
                self.resolve_ident_in_module(module, ident, ns, false, record_used, path_span)
3388
            } else if opt_ns == Some(MacroNS) {
V
Vadim Petrochenkov 已提交
3389
                self.resolve_lexical_macro_path_segment(ident, ns, record_used, path_span)
3390
                    .map(MacroBinding::binding)
J
Jeffrey Seyfried 已提交
3391
            } else {
V
Vadim Petrochenkov 已提交
3392
                match self.resolve_ident_in_lexical_scope(ident, ns, record_used, path_span) {
3393
                    // we found a locally-imported or available item/module
J
Jeffrey Seyfried 已提交
3394
                    Some(LexicalScopeBinding::Item(binding)) => Ok(binding),
3395
                    // we found a local variable or type param
3396 3397
                    Some(LexicalScopeBinding::Def(def))
                            if opt_ns == Some(TypeNS) || opt_ns == Some(ValueNS) => {
3398 3399 3400
                        return PathResult::NonModule(PathResolution::with_unresolved_segments(
                            def, path.len() - 1
                        ));
J
Jeffrey Seyfried 已提交
3401
                    }
3402
                    _ => Err(if record_used { Determined } else { Undetermined }),
J
Jeffrey Seyfried 已提交
3403 3404 3405 3406 3407
                }
            };

            match binding {
                Ok(binding) => {
3408 3409 3410
                    if i == 1 {
                        second_binding = Some(binding);
                    }
3411 3412
                    let def = binding.def();
                    let maybe_assoc = opt_ns != Some(MacroNS) && PathSource::Type.is_expected(def);
J
Jeffrey Seyfried 已提交
3413
                    if let Some(next_module) = binding.module() {
J
Jeffrey Seyfried 已提交
3414
                        module = Some(next_module);
3415
                    } else if def == Def::Err {
J
Jeffrey Seyfried 已提交
3416
                        return PathResult::NonModule(err_path_resolution());
3417
                    } else if opt_ns.is_some() && (is_last || maybe_assoc) {
3418
                        self.lint_if_path_starts_with_module(
3419
                            crate_lint,
3420 3421 3422 3423
                            path,
                            path_span,
                            second_binding,
                        );
3424 3425 3426
                        return PathResult::NonModule(PathResolution::with_unresolved_segments(
                            def, path.len() - i - 1
                        ));
J
Jeffrey Seyfried 已提交
3427
                    } else {
3428
                        return PathResult::Failed(ident.span,
V
Vadim Petrochenkov 已提交
3429
                                                  format!("Not a module `{}`", ident),
3430
                                                  is_last);
J
Jeffrey Seyfried 已提交
3431 3432 3433 3434 3435 3436
                    }
                }
                Err(Undetermined) => return PathResult::Indeterminate,
                Err(Determined) => {
                    if let Some(module) = module {
                        if opt_ns.is_some() && !module.is_normal() {
3437 3438 3439
                            return PathResult::NonModule(PathResolution::with_unresolved_segments(
                                module.def().unwrap(), path.len() - i
                            ));
J
Jeffrey Seyfried 已提交
3440 3441
                        }
                    }
3442
                    let msg = if module.and_then(ModuleData::def) == self.graph_root.def() {
J
Jeffrey Seyfried 已提交
3443 3444
                        let is_mod = |def| match def { Def::Mod(..) => true, _ => false };
                        let mut candidates =
3445
                            self.lookup_import_candidates(name, TypeNS, is_mod);
3446 3447 3448
                        candidates.sort_by_cached_key(|c| {
                            (c.path.segments.len(), c.path.to_string())
                        });
J
Jeffrey Seyfried 已提交
3449
                        if let Some(candidate) = candidates.get(0) {
3450
                            format!("Did you mean `{}`?", candidate.path)
J
Jeffrey Seyfried 已提交
3451
                        } else {
V
Vadim Petrochenkov 已提交
3452
                            format!("Maybe a missing `extern crate {};`?", ident)
J
Jeffrey Seyfried 已提交
3453 3454
                        }
                    } else if i == 0 {
V
Vadim Petrochenkov 已提交
3455
                        format!("Use of undeclared type or module `{}`", ident)
J
Jeffrey Seyfried 已提交
3456
                    } else {
V
Vadim Petrochenkov 已提交
3457
                        format!("Could not find `{}` in `{}`", ident, path[i - 1])
J
Jeffrey Seyfried 已提交
3458
                    };
3459
                    return PathResult::Failed(ident.span, msg, is_last);
J
Jeffrey Seyfried 已提交
3460 3461
                }
            }
3462 3463
        }

3464
        self.lint_if_path_starts_with_module(crate_lint, path, path_span, second_binding);
3465

3466
        PathResult::Module(module.unwrap_or(self.graph_root))
3467 3468
    }

3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479
    fn lint_if_path_starts_with_module(
        &self,
        crate_lint: CrateLint,
        path: &[Ident],
        path_span: Span,
        second_binding: Option<&NameBinding>,
    ) {
        let (diag_id, diag_span) = match crate_lint {
            CrateLint::No => return,
            CrateLint::SimplePath(id) => (id, path_span),
            CrateLint::UsePath { root_id, root_span } => (root_id, root_span),
3480
            CrateLint::QPathTrait { qpath_id, qpath_span } => (qpath_id, qpath_span),
3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509
        };

        let first_name = match path.get(0) {
            Some(ident) => ident.name,
            None => return,
        };

        // We're only interested in `use` paths which should start with
        // `{{root}}` or `extern` currently.
        if first_name != keywords::Extern.name() && first_name != keywords::CrateRoot.name() {
            return
        }

        match path.get(1) {
            // If this import looks like `crate::...` it's already good
            Some(name) if name.name == keywords::Crate.name() => return,
            // Otherwise go below to see if it's an extern crate
            Some(_) => {}
            // If the path has length one (and it's `CrateRoot` most likely)
            // then we don't know whether we're gonna be importing a crate or an
            // item in our crate. Defer this lint to elsewhere
            None => return,
        }

        // If the first element of our path was actually resolved to an
        // `ExternCrate` (also used for `crate::...`) then no need to issue a
        // warning, this looks all good!
        if let Some(binding) = second_binding {
            if let NameBindingKind::Import { directive: d, .. } = binding.kind {
3510 3511 3512
                // Careful: we still want to rewrite paths from
                // renamed extern crates.
                if let ImportDirectiveSubclass::ExternCrate(None) = d.subclass {
3513 3514 3515 3516 3517
                    return
                }
            }
        }

3518
        self.lint_path_starts_with_module(diag_id, diag_span);
3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533
    }

    fn lint_path_starts_with_module(&self, id: NodeId, span: Span) {
        // In the 2018 edition this lint is a hard error, so nothing to do
        if self.session.rust_2018() {
            return
        }
        // In the 2015 edition there's no use in emitting lints unless the
        // crate's already enabled the feature that we're going to suggest
        if !self.session.features_untracked().crate_in_paths {
            return
        }
        let diag = lint::builtin::BuiltinLintDiagnostics
            ::AbsPathWithModule(span);
        self.session.buffer_lint_with_diagnostic(
3534
            lint::builtin::ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
3535 3536 3537 3538 3539 3540
            id, span,
            "absolute paths must start with `self`, `super`, \
            `crate`, or an external crate name in the 2018 edition",
            diag);
    }

3541
    // Resolve a local definition, potentially adjusting for closures.
3542 3543 3544 3545
    fn adjust_local_def(&mut self,
                        ns: Namespace,
                        rib_index: usize,
                        mut def: Def,
3546 3547
                        record_used: bool,
                        span: Span) -> Def {
3548 3549 3550 3551
        let ribs = &self.ribs[ns][rib_index + 1..];

        // An invalid forward use of a type parameter from a previous default.
        if let ForwardTyParamBanRibKind = self.ribs[ns][rib_index].kind {
3552
            if record_used {
3553
                resolve_error(self, span, ResolutionError::ForwardDeclaredTyParam);
3554 3555 3556 3557 3558
            }
            assert_eq!(def, Def::Err);
            return Def::Err;
        }

3559
        match def {
3560
            Def::Upvar(..) => {
3561
                span_bug!(span, "unexpected {:?} in bindings", def)
3562
            }
3563
            Def::Local(node_id) => {
3564 3565
                for rib in ribs {
                    match rib.kind {
3566 3567
                        NormalRibKind | ModuleRibKind(..) | MacroDefinition(..) |
                        ForwardTyParamBanRibKind => {
3568 3569 3570 3571 3572
                            // Nothing to do. Continue.
                        }
                        ClosureRibKind(function_id) => {
                            let prev_def = def;

C
corentih 已提交
3573 3574 3575
                            let seen = self.freevars_seen
                                           .entry(function_id)
                                           .or_insert_with(|| NodeMap());
3576
                            if let Some(&index) = seen.get(&node_id) {
3577
                                def = Def::Upvar(node_id, index, function_id);
3578 3579
                                continue;
                            }
C
corentih 已提交
3580 3581 3582
                            let vec = self.freevars
                                          .entry(function_id)
                                          .or_insert_with(|| vec![]);
3583
                            let depth = vec.len();
3584
                            def = Def::Upvar(node_id, depth, function_id);
3585

3586
                            if record_used {
3587 3588
                                vec.push(Freevar {
                                    def: prev_def,
3589
                                    span,
3590 3591 3592
                                });
                                seen.insert(node_id, depth);
                            }
3593
                        }
3594
                        ItemRibKind | TraitOrImplItemRibKind => {
3595 3596 3597
                            // This was an attempt to access an upvar inside a
                            // named function item. This is not allowed, so we
                            // report an error.
3598
                            if record_used {
3599 3600 3601
                                resolve_error(self, span,
                                        ResolutionError::CannotCaptureDynamicEnvironmentInFnItem);
                            }
3602
                            return Def::Err;
3603 3604 3605
                        }
                        ConstantItemRibKind => {
                            // Still doesn't deal with upvars
3606
                            if record_used {
3607 3608 3609
                                resolve_error(self, span,
                                        ResolutionError::AttemptToUseNonConstantValueInConstant);
                            }
3610
                            return Def::Err;
3611 3612 3613 3614
                        }
                    }
                }
            }
3615
            Def::TyParam(..) | Def::SelfTy(..) => {
3616 3617
                for rib in ribs {
                    match rib.kind {
3618
                        NormalRibKind | TraitOrImplItemRibKind | ClosureRibKind(..) |
3619 3620
                        ModuleRibKind(..) | MacroDefinition(..) | ForwardTyParamBanRibKind |
                        ConstantItemRibKind => {
3621 3622 3623 3624 3625
                            // Nothing to do. Continue.
                        }
                        ItemRibKind => {
                            // This was an attempt to use a type parameter outside
                            // its scope.
3626
                            if record_used {
3627
                                resolve_error(self, span,
3628
                                    ResolutionError::TypeParametersFromOuterFunction(def));
3629
                            }
3630
                            return Def::Err;
3631 3632 3633 3634 3635 3636
                        }
                    }
                }
            }
            _ => {}
        }
3637
        return def;
3638 3639
    }

3640
    fn lookup_assoc_candidate<FilterFn>(&mut self,
3641
                                        ident: Ident,
3642 3643 3644 3645 3646
                                        ns: Namespace,
                                        filter_fn: FilterFn)
                                        -> Option<AssocSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
3647
        fn extract_node_id(t: &Ty) -> Option<NodeId> {
3648
            match t.node {
3649 3650
                TyKind::Path(None, _) => Some(t.id),
                TyKind::Rptr(_, ref mut_ty) => extract_node_id(&mut_ty.ty),
3651 3652 3653 3654 3655 3656 3657
                // This doesn't handle the remaining `Ty` variants as they are not
                // that commonly the self_type, it might be interesting to provide
                // support for those in future.
                _ => None,
            }
        }

3658
        // Fields are generally expected in the same contexts as locals.
3659
        if filter_fn(Def::Local(ast::DUMMY_NODE_ID)) {
3660 3661 3662
            if let Some(node_id) = self.current_self_type.as_ref().and_then(extract_node_id) {
                // Look for a field with the same name in the current self_type.
                if let Some(resolution) = self.def_map.get(&node_id) {
3663 3664 3665
                    match resolution.base_def() {
                        Def::Struct(did) | Def::Union(did)
                                if resolution.unresolved_segments() == 0 => {
3666
                            if let Some(field_names) = self.field_names.get(&did) {
3667
                                if field_names.iter().any(|&field_name| ident.name == field_name) {
3668 3669
                                    return Some(AssocSuggestion::Field);
                                }
3670
                            }
3671
                        }
3672
                        _ => {}
3673
                    }
3674
                }
3675
            }
3676 3677
        }

3678
        // Look for associated items in the current trait.
3679 3680 3681 3682
        if let Some((module, _)) = self.current_trait_ref {
            if let Ok(binding) =
                    self.resolve_ident_in_module(module, ident, ns, false, false, module.span) {
                let def = binding.def();
3683
                if filter_fn(def) {
3684
                    return Some(if self.has_self.contains(&def.def_id()) {
3685 3686 3687 3688
                        AssocSuggestion::MethodWithSelf
                    } else {
                        AssocSuggestion::AssocItem
                    });
3689 3690 3691 3692
                }
            }
        }

3693
        None
3694 3695
    }

3696
    fn lookup_typo_candidate<FilterFn>(&mut self,
V
Vadim Petrochenkov 已提交
3697
                                       path: &[Ident],
3698
                                       ns: Namespace,
3699 3700
                                       filter_fn: FilterFn,
                                       span: Span)
3701
                                       -> Option<Symbol>
3702 3703
        where FilterFn: Fn(Def) -> bool
    {
3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714
        let add_module_candidates = |module: Module, names: &mut Vec<Name>| {
            for (&(ident, _), resolution) in module.resolutions.borrow().iter() {
                if let Some(binding) = resolution.borrow().binding {
                    if filter_fn(binding.def()) {
                        names.push(ident.name);
                    }
                }
            }
        };

        let mut names = Vec::new();
3715
        if path.len() == 1 {
3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733
            // Search in lexical scope.
            // Walk backwards up the ribs in scope and collect candidates.
            for rib in self.ribs[ns].iter().rev() {
                // Locals and type parameters
                for (ident, def) in &rib.bindings {
                    if filter_fn(*def) {
                        names.push(ident.name);
                    }
                }
                // Items in scope
                if let ModuleRibKind(module) = rib.kind {
                    // Items from this module
                    add_module_candidates(module, &mut names);

                    if let ModuleKind::Block(..) = module.kind {
                        // We can see through blocks
                    } else {
                        // Items from the prelude
3734 3735 3736
                        if !module.no_implicit_prelude {
                            names.extend(self.extern_prelude.iter().cloned());
                            if let Some(prelude) = self.prelude {
3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752
                                add_module_candidates(prelude, &mut names);
                            }
                        }
                        break;
                    }
                }
            }
            // Add primitive types to the mix
            if filter_fn(Def::PrimTy(TyBool)) {
                for (name, _) in &self.primitive_type_table.primitive_types {
                    names.push(*name);
                }
            }
        } else {
            // Search in module.
            let mod_path = &path[..path.len() - 1];
3753
            if let PathResult::Module(module) = self.resolve_path(mod_path, Some(TypeNS),
3754
                                                                  false, span, CrateLint::No) {
3755 3756
                add_module_candidates(module, &mut names);
            }
3757
        }
3758

V
Vadim Petrochenkov 已提交
3759
        let name = path[path.len() - 1].name;
3760
        // Make sure error reporting is deterministic.
3761
        names.sort_by_cached_key(|name| name.as_str());
3762
        match find_best_match_for_name(names.iter(), &name.as_str(), None) {
3763
            Some(found) if found != name => Some(found),
3764
            _ => None,
3765
        }
3766 3767
    }

3768
    fn with_resolved_label<F>(&mut self, label: Option<Label>, id: NodeId, f: F)
3769 3770
        where F: FnOnce(&mut Resolver)
    {
3771
        if let Some(label) = label {
3772
            self.unused_labels.insert(id, label.ident.span);
3773
            let def = Def::Label(id);
3774
            self.with_label_rib(|this| {
3775
                this.label_ribs.last_mut().unwrap().bindings.insert(label.ident, def);
3776
                f(this);
3777 3778
            });
        } else {
3779
            f(self);
3780 3781 3782
        }
    }

3783
    fn resolve_labeled_block(&mut self, label: Option<Label>, id: NodeId, block: &Block) {
3784 3785 3786
        self.with_resolved_label(label, id, |this| this.visit_block(block));
    }

3787
    fn resolve_expr(&mut self, expr: &Expr, parent: Option<&Expr>) {
P
Patrick Walton 已提交
3788 3789
        // First, record candidate traits for this expression if it could
        // result in the invocation of a method call.
3790 3791 3792

        self.record_candidate_traits_for_expr_if_necessary(expr);

3793
        // Next, resolve the node.
3794
        match expr.node {
3795 3796
            ExprKind::Path(ref qself, ref path) => {
                self.smart_resolve_path(expr.id, qself.as_ref(), path, PathSource::Expr(parent));
3797
                visit::walk_expr(self, expr);
3798 3799
            }

V
Vadim Petrochenkov 已提交
3800
            ExprKind::Struct(ref path, ..) => {
3801
                self.smart_resolve_path(expr.id, None, path, PathSource::Struct);
3802
                visit::walk_expr(self, expr);
3803 3804
            }

3805
            ExprKind::Break(Some(label), _) | ExprKind::Continue(Some(label)) => {
3806
                match self.search_label(label.ident, |rib, id| rib.bindings.get(&id).cloned()) {
3807
                    None => {
3808 3809 3810
                        // Search again for close matches...
                        // Picks the first label that is "close enough", which is not necessarily
                        // the closest match
3811
                        let close_match = self.search_label(label.ident, |rib, ident| {
3812
                            let names = rib.bindings.iter().map(|(id, _)| &id.name);
V
Vadim Petrochenkov 已提交
3813
                            find_best_match_for_name(names, &*ident.as_str(), None)
3814
                        });
3815
                        self.record_def(expr.id, err_path_resolution());
3816
                        resolve_error(self,
3817
                                      label.ident.span,
V
Vadim Petrochenkov 已提交
3818
                                      ResolutionError::UndeclaredLabel(&label.ident.as_str(),
3819
                                                                       close_match));
3820
                    }
3821
                    Some(Def::Label(id)) => {
3822
                        // Since this def is a label, it is never read.
3823 3824
                        self.record_def(expr.id, PathResolution::new(Def::Label(id)));
                        self.unused_labels.remove(&id);
3825 3826
                    }
                    Some(_) => {
3827
                        span_bug!(expr.span, "label wasn't mapped to a label def!");
3828 3829
                    }
                }
3830 3831 3832

                // visit `break` argument if any
                visit::walk_expr(self, expr);
3833
            }
3834

3835
            ExprKind::IfLet(ref pats, ref subexpression, ref if_block, ref optional_else) => {
3836 3837
                self.visit_expr(subexpression);

J
Jeffrey Seyfried 已提交
3838
                self.ribs[ValueNS].push(Rib::new(NormalRibKind));
3839 3840 3841 3842 3843 3844
                let mut bindings_list = FxHashMap();
                for pat in pats {
                    self.resolve_pattern(pat, PatternSource::IfLet, &mut bindings_list);
                }
                // This has to happen *after* we determine which pat_idents are variants
                self.check_consistent_bindings(pats);
3845
                self.visit_block(if_block);
J
Jeffrey Seyfried 已提交
3846
                self.ribs[ValueNS].pop();
3847 3848 3849 3850

                optional_else.as_ref().map(|expr| self.visit_expr(expr));
            }

J
Jeffrey Seyfried 已提交
3851 3852 3853
            ExprKind::Loop(ref block, label) => self.resolve_labeled_block(label, expr.id, &block),

            ExprKind::While(ref subexpression, ref block, label) => {
3854 3855 3856 3857
                self.with_resolved_label(label, expr.id, |this| {
                    this.visit_expr(subexpression);
                    this.visit_block(block);
                });
J
Jeffrey Seyfried 已提交
3858 3859
            }

3860
            ExprKind::WhileLet(ref pats, ref subexpression, ref block, label) => {
3861 3862
                self.with_resolved_label(label, expr.id, |this| {
                    this.visit_expr(subexpression);
3863
                    this.ribs[ValueNS].push(Rib::new(NormalRibKind));
3864 3865 3866 3867 3868 3869
                    let mut bindings_list = FxHashMap();
                    for pat in pats {
                        this.resolve_pattern(pat, PatternSource::WhileLet, &mut bindings_list);
                    }
                    // This has to happen *after* we determine which pat_idents are variants
                    this.check_consistent_bindings(pats);
3870
                    this.visit_block(block);
3871
                    this.ribs[ValueNS].pop();
3872
                });
3873 3874 3875 3876
            }

            ExprKind::ForLoop(ref pattern, ref subexpression, ref block, label) => {
                self.visit_expr(subexpression);
J
Jeffrey Seyfried 已提交
3877
                self.ribs[ValueNS].push(Rib::new(NormalRibKind));
3878
                self.resolve_pattern(pattern, PatternSource::For, &mut FxHashMap());
3879

J
Jeffrey Seyfried 已提交
3880
                self.resolve_labeled_block(label, expr.id, block);
3881

J
Jeffrey Seyfried 已提交
3882
                self.ribs[ValueNS].pop();
3883 3884
            }

3885 3886
            ExprKind::Block(ref block, label) => self.resolve_labeled_block(label, block.id, block),

3887
            // Equivalent to `visit::walk_expr` + passing some context to children.
3888
            ExprKind::Field(ref subexpression, _) => {
3889
                self.resolve_expr(subexpression, Some(expr));
3890
            }
3891
            ExprKind::MethodCall(ref segment, ref arguments) => {
3892
                let mut arguments = arguments.iter();
3893
                self.resolve_expr(arguments.next().unwrap(), Some(expr));
3894 3895 3896
                for argument in arguments {
                    self.resolve_expr(argument, None);
                }
3897
                self.visit_path_segment(expr.span, segment);
3898
            }
3899

3900
            ExprKind::Call(ref callee, ref arguments) => {
3901
                self.resolve_expr(callee, Some(expr));
3902 3903 3904 3905
                for argument in arguments {
                    self.resolve_expr(argument, None);
                }
            }
3906 3907 3908 3909 3910
            ExprKind::Type(ref type_expr, _) => {
                self.current_type_ascription.push(type_expr.span);
                visit::walk_expr(self, expr);
                self.current_type_ascription.pop();
            }
B
Brian Anderson 已提交
3911
            _ => {
3912
                visit::walk_expr(self, expr);
3913 3914 3915 3916
            }
        }
    }

E
Eduard Burtescu 已提交
3917
    fn record_candidate_traits_for_expr_if_necessary(&mut self, expr: &Expr) {
3918
        match expr.node {
V
Vadim Petrochenkov 已提交
3919
            ExprKind::Field(_, ident) => {
3920 3921 3922 3923
                // FIXME(#6890): Even though you can't treat a method like a
                // field, we need to add any trait methods we find that match
                // the field name so that we can do some nice error reporting
                // later on in typeck.
V
Vadim Petrochenkov 已提交
3924
                let traits = self.get_traits_containing_item(ident, ValueNS);
3925
                self.trait_map.insert(expr.id, traits);
3926
            }
3927
            ExprKind::MethodCall(ref segment, ..) => {
C
corentih 已提交
3928
                debug!("(recording candidate traits for expr) recording traits for {}",
3929
                       expr.id);
3930
                let traits = self.get_traits_containing_item(segment.ident, ValueNS);
3931
                self.trait_map.insert(expr.id, traits);
3932
            }
3933
            _ => {
3934 3935 3936 3937 3938
                // Nothing to do.
            }
        }
    }

J
Jeffrey Seyfried 已提交
3939 3940
    fn get_traits_containing_item(&mut self, mut ident: Ident, ns: Namespace)
                                  -> Vec<TraitCandidate> {
3941
        debug!("(getting traits containing item) looking for '{}'", ident.name);
E
Eduard Burtescu 已提交
3942

3943
        let mut found_traits = Vec::new();
J
Jeffrey Seyfried 已提交
3944
        // Look for the current trait.
3945 3946 3947 3948
        if let Some((module, _)) = self.current_trait_ref {
            if self.resolve_ident_in_module(module, ident, ns, false, false, module.span).is_ok() {
                let def_id = module.def_id().unwrap();
                found_traits.push(TraitCandidate { def_id: def_id, import_id: None });
E
Eduard Burtescu 已提交
3949
            }
J
Jeffrey Seyfried 已提交
3950
        }
3951

3952
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
3953 3954
        let mut search_module = self.current_module;
        loop {
3955
            self.get_traits_in_module_containing_item(ident, ns, search_module, &mut found_traits);
J
Jeffrey Seyfried 已提交
3956
            search_module =
3957
                unwrap_or!(self.hygienic_lexical_parent(search_module, &mut ident.span), break);
3958
        }
3959

3960 3961
        if let Some(prelude) = self.prelude {
            if !search_module.no_implicit_prelude {
3962
                self.get_traits_in_module_containing_item(ident, ns, prelude, &mut found_traits);
E
Eduard Burtescu 已提交
3963
            }
3964 3965
        }

E
Eduard Burtescu 已提交
3966
        found_traits
3967 3968
    }

3969
    fn get_traits_in_module_containing_item(&mut self,
3970
                                            ident: Ident,
3971
                                            ns: Namespace,
3972
                                            module: Module<'a>,
3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986
                                            found_traits: &mut Vec<TraitCandidate>) {
        let mut traits = module.traits.borrow_mut();
        if traits.is_none() {
            let mut collected_traits = Vec::new();
            module.for_each_child(|name, ns, binding| {
                if ns != TypeNS { return }
                if let Def::Trait(_) = binding.def() {
                    collected_traits.push((name, binding));
                }
            });
            *traits = Some(collected_traits.into_boxed_slice());
        }

        for &(trait_name, binding) in traits.as_ref().unwrap().iter() {
3987
            let module = binding.module().unwrap();
J
Jeffrey Seyfried 已提交
3988
            let mut ident = ident;
3989
            if ident.span.glob_adjust(module.expansion, binding.span.ctxt().modern()).is_none() {
J
Jeffrey Seyfried 已提交
3990 3991 3992 3993
                continue
            }
            if self.resolve_ident_in_module_unadjusted(module, ident, ns, false, false, module.span)
                   .is_ok() {
3994 3995 3996 3997 3998 3999 4000 4001
                let import_id = match binding.kind {
                    NameBindingKind::Import { directive, .. } => {
                        self.maybe_unused_trait_imports.insert(directive.id);
                        self.add_to_glob_map(directive.id, trait_name);
                        Some(directive.id)
                    }
                    _ => None,
                };
4002
                let trait_def_id = module.def_id().unwrap();
4003 4004 4005 4006 4007
                found_traits.push(TraitCandidate { def_id: trait_def_id, import_id: import_id });
            }
        }
    }

4008 4009 4010 4011 4012 4013 4014
    /// When name resolution fails, this method can be used to look up candidate
    /// entities with the expected name. It allows filtering them using the
    /// supplied predicate (which should be used to only accept the types of
    /// definitions expected e.g. traits). The lookup spans across all crates.
    ///
    /// NOTE: The method does not look into imports, but this is not a problem,
    /// since we report the definitions (thus, the de-aliased imports).
4015 4016 4017 4018 4019 4020 4021 4022
    fn lookup_import_candidates<FilterFn>(&mut self,
                                          lookup_name: Name,
                                          namespace: Namespace,
                                          filter_fn: FilterFn)
                                          -> Vec<ImportSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
        let mut candidates = Vec::new();
4023
        let mut worklist = Vec::new();
4024
        let mut seen_modules = FxHashSet();
4025 4026 4027 4028 4029
        worklist.push((self.graph_root, Vec::new(), false));

        while let Some((in_module,
                        path_segments,
                        in_module_is_extern)) = worklist.pop() {
4030
            self.populate_module_if_necessary(in_module);
4031

4032 4033 4034
            // We have to visit module children in deterministic order to avoid
            // instabilities in reported imports (#43552).
            in_module.for_each_child_stable(|ident, ns, name_binding| {
4035
                // avoid imports entirely
4036
                if name_binding.is_import() && !name_binding.is_extern_crate() { return; }
4037 4038
                // avoid non-importable candidates as well
                if !name_binding.is_importable() { return; }
4039 4040

                // collect results based on the filter function
4041
                if ident.name == lookup_name && ns == namespace {
4042
                    if filter_fn(name_binding.def()) {
4043 4044
                        // create the path
                        let mut segms = path_segments.clone();
4045
                        segms.push(ast::PathSegment::from_ident(ident));
4046
                        let path = Path {
4047
                            span: name_binding.span,
4048 4049 4050 4051 4052 4053 4054 4055 4056
                            segments: segms,
                        };
                        // the entity is accessible in the following cases:
                        // 1. if it's defined in the same crate, it's always
                        // accessible (since private entities can be made public)
                        // 2. if it's defined in another crate, it's accessible
                        // only if both the module is public and the entity is
                        // declared as public (due to pruning, we don't explore
                        // outside crate private modules => no need to check this)
4057
                        if !in_module_is_extern || name_binding.vis == ty::Visibility::Public {
4058
                            candidates.push(ImportSuggestion { path: path });
4059 4060 4061 4062 4063
                        }
                    }
                }

                // collect submodules to explore
J
Jeffrey Seyfried 已提交
4064
                if let Some(module) = name_binding.module() {
4065
                    // form the path
4066
                    let mut path_segments = path_segments.clone();
4067
                    path_segments.push(ast::PathSegment::from_ident(ident));
4068

4069
                    if !in_module_is_extern || name_binding.vis == ty::Visibility::Public {
4070
                        // add the module to the lookup
4071
                        let is_extern = in_module_is_extern || name_binding.is_extern_crate();
4072
                        if seen_modules.insert(module.def_id().unwrap()) {
4073 4074
                            worklist.push((module, path_segments, is_extern));
                        }
4075 4076 4077 4078 4079
                    }
                }
            })
        }

4080
        candidates
4081 4082
    }

4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097
    fn find_module(&mut self,
                   module_def: Def)
                   -> Option<(Module<'a>, ImportSuggestion)>
    {
        let mut result = None;
        let mut worklist = Vec::new();
        let mut seen_modules = FxHashSet();
        worklist.push((self.graph_root, Vec::new()));

        while let Some((in_module, path_segments)) = worklist.pop() {
            // abort if the module is already found
            if let Some(_) = result { break; }

            self.populate_module_if_necessary(in_module);

4098
            in_module.for_each_child_stable(|ident, _, name_binding| {
4099 4100 4101
                // abort if the module is already found or if name_binding is private external
                if result.is_some() || !name_binding.vis.is_visible_locally() {
                    return
4102 4103 4104 4105
                }
                if let Some(module) = name_binding.module() {
                    // form the path
                    let mut path_segments = path_segments.clone();
4106
                    path_segments.push(ast::PathSegment::from_ident(ident));
4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131
                    if module.def() == Some(module_def) {
                        let path = Path {
                            span: name_binding.span,
                            segments: path_segments,
                        };
                        result = Some((module, ImportSuggestion { path: path }));
                    } else {
                        // add the module to the lookup
                        if seen_modules.insert(module.def_id().unwrap()) {
                            worklist.push((module, path_segments));
                        }
                    }
                }
            });
        }

        result
    }

    fn collect_enum_variants(&mut self, enum_def: Def) -> Option<Vec<Path>> {
        if let Def::Enum(..) = enum_def {} else {
            panic!("Non-enum def passed to collect_enum_variants: {:?}", enum_def)
        }

        self.find_module(enum_def).map(|(enum_module, enum_import_suggestion)| {
4132 4133
            self.populate_module_if_necessary(enum_module);

4134 4135 4136 4137
            let mut variants = Vec::new();
            enum_module.for_each_child_stable(|ident, _, name_binding| {
                if let Def::Variant(..) = name_binding.def() {
                    let mut segms = enum_import_suggestion.path.segments.clone();
4138
                    segms.push(ast::PathSegment::from_ident(ident));
4139 4140 4141 4142 4143 4144 4145 4146 4147 4148
                    variants.push(Path {
                        span: name_binding.span,
                        segments: segms,
                    });
                }
            });
            variants
        })
    }

4149 4150
    fn record_def(&mut self, node_id: NodeId, resolution: PathResolution) {
        debug!("(recording def) recording {:?} for {}", resolution, node_id);
4151
        if let Some(prev_res) = self.def_map.insert(node_id, resolution) {
4152
            panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
4153
        }
4154 4155
    }

4156
    fn resolve_visibility(&mut self, vis: &ast::Visibility) -> ty::Visibility {
4157 4158 4159 4160 4161 4162
        match vis.node {
            ast::VisibilityKind::Public => ty::Visibility::Public,
            ast::VisibilityKind::Crate(..) => {
                ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))
            }
            ast::VisibilityKind::Inherited => {
4163
                ty::Visibility::Restricted(self.current_module.normal_ancestor_id)
4164
            }
4165
            ast::VisibilityKind::Restricted { ref path, id, .. } => {
4166 4167
                // Visibilities are resolved as global by default, add starting root segment.
                let segments = path.make_root().iter().chain(path.segments.iter())
4168
                    .map(|seg| seg.ident)
4169
                    .collect::<Vec<_>>();
4170 4171 4172 4173 4174 4175 4176 4177
                let def = self.smart_resolve_path_fragment(
                    id,
                    None,
                    &segments,
                    path.span,
                    PathSource::Visibility,
                    CrateLint::SimplePath(id),
                ).base_def();
4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189
                if def == Def::Err {
                    ty::Visibility::Public
                } else {
                    let vis = ty::Visibility::Restricted(def.def_id());
                    if self.is_accessible(vis) {
                        vis
                    } else {
                        self.session.span_err(path.span, "visibilities can only be restricted \
                                                          to ancestor modules");
                        ty::Visibility::Public
                    }
                }
4190 4191 4192 4193
            }
        }
    }

4194
    fn is_accessible(&self, vis: ty::Visibility) -> bool {
4195
        vis.is_accessible_from(self.current_module.normal_ancestor_id, self)
4196 4197
    }

4198
    fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
4199
        vis.is_accessible_from(module.normal_ancestor_id, self)
4200 4201
    }

4202
    fn report_errors(&mut self, krate: &Crate) {
4203
        self.report_shadowing_errors();
4204
        self.report_with_use_injections(krate);
4205
        self.report_proc_macro_import(krate);
4206
        let mut reported_spans = FxHashSet();
4207

4208
        for &AmbiguityError { span, name, b1, b2, lexical } in &self.ambiguity_errors {
4209
            if !reported_spans.insert(span) { continue }
4210 4211 4212
            let participle = |binding: &NameBinding| {
                if binding.is_import() { "imported" } else { "defined" }
            };
4213 4214
            let msg1 = format!("`{}` could refer to the name {} here", name, participle(b1));
            let msg2 = format!("`{}` could also refer to the name {} here", name, participle(b2));
4215
            let note = if b1.expansion == Mark::root() || !lexical && b1.is_glob_import() {
4216 4217 4218 4219 4220 4221 4222 4223
                format!("consider adding an explicit import of `{}` to disambiguate", name)
            } else if let Def::Macro(..) = b1.def() {
                format!("macro-expanded {} do not shadow",
                        if b1.is_import() { "macro imports" } else { "macros" })
            } else {
                format!("macro-expanded {} do not shadow when used in a macro invocation path",
                        if b1.is_import() { "imports" } else { "items" })
            };
4224 4225 4226 4227 4228 4229 4230 4231 4232

            let mut err = struct_span_err!(self.session, span, E0659, "`{}` is ambiguous", name);
            err.span_note(b1.span, &msg1);
            match b2.def() {
                Def::Macro(..) if b2.span == DUMMY_SP =>
                    err.note(&format!("`{}` is also a builtin macro", name)),
                _ => err.span_note(b2.span, &msg2),
            };
            err.note(&note).emit();
4233 4234
        }

4235 4236
        for &PrivacyError(span, name, binding) in &self.privacy_errors {
            if !reported_spans.insert(span) { continue }
G
Guillaume Gomez 已提交
4237
            span_err!(self.session, span, E0603, "{} `{}` is private", binding.descr(), name);
4238 4239
        }
    }
4240

4241 4242
    fn report_with_use_injections(&mut self, krate: &Crate) {
        for UseError { mut err, candidates, node_id, better } in self.use_injections.drain(..) {
4243
            let (span, found_use) = UsePlacementFinder::check(krate, node_id);
4244
            if !candidates.is_empty() {
4245
                show_candidates(&mut err, span, &candidates, better, found_use);
4246 4247 4248 4249 4250
            }
            err.emit();
        }
    }

4251
    fn report_shadowing_errors(&mut self) {
J
Jeffrey Seyfried 已提交
4252 4253
        for (ident, scope) in replace(&mut self.lexical_macro_resolutions, Vec::new()) {
            self.resolve_legacy_scope(scope, ident, true);
J
Jeffrey Seyfried 已提交
4254 4255
        }

4256
        let mut reported_errors = FxHashSet();
4257
        for binding in replace(&mut self.disallowed_shadowing, Vec::new()) {
J
Jeffrey Seyfried 已提交
4258 4259 4260
            if self.resolve_legacy_scope(&binding.parent, binding.ident, false).is_some() &&
               reported_errors.insert((binding.ident, binding.span)) {
                let msg = format!("`{}` is already in scope", binding.ident);
4261
                self.session.struct_span_err(binding.span, &msg)
4262 4263
                    .note("macro-expanded `macro_rules!`s may not shadow \
                           existing macros (see RFC 1560)")
4264 4265 4266 4267 4268
                    .emit();
            }
        }
    }

C
Cldfire 已提交
4269
    fn report_conflict<'b>(&mut self,
4270
                       parent: Module,
4271
                       ident: Ident,
4272
                       ns: Namespace,
C
Cldfire 已提交
4273 4274
                       new_binding: &NameBinding<'b>,
                       old_binding: &NameBinding<'b>) {
4275
        // Error on the second of two conflicting names
4276
        if old_binding.span.lo() > new_binding.span.lo() {
4277
            return self.report_conflict(parent, ident, ns, old_binding, new_binding);
4278 4279
        }

J
Jeffrey Seyfried 已提交
4280 4281 4282 4283
        let container = match parent.kind {
            ModuleKind::Def(Def::Mod(_), _) => "module",
            ModuleKind::Def(Def::Trait(_), _) => "trait",
            ModuleKind::Block(..) => "block",
4284 4285 4286
            _ => "enum",
        };

4287 4288 4289
        let old_noun = match old_binding.is_import() {
            true => "import",
            false => "definition",
4290 4291
        };

4292 4293 4294 4295 4296
        let new_participle = match new_binding.is_import() {
            true => "imported",
            false => "defined",
        };

4297
        let (name, span) = (ident.name, self.session.codemap().def_span(new_binding.span));
4298 4299 4300 4301 4302 4303 4304

        if let Some(s) = self.name_already_seen.get(&name) {
            if s == &span {
                return;
            }
        }

4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317
        let old_kind = match (ns, old_binding.module()) {
            (ValueNS, _) => "value",
            (MacroNS, _) => "macro",
            (TypeNS, _) if old_binding.is_extern_crate() => "extern crate",
            (TypeNS, Some(module)) if module.is_normal() => "module",
            (TypeNS, Some(module)) if module.is_trait() => "trait",
            (TypeNS, _) => "type",
        };

        let namespace = match ns {
            ValueNS => "value",
            MacroNS => "macro",
            TypeNS => "type",
4318 4319
        };

4320 4321 4322
        let msg = format!("the name `{}` is defined multiple times", name);

        let mut err = match (old_binding.is_extern_crate(), new_binding.is_extern_crate()) {
4323
            (true, true) => struct_span_err!(self.session, span, E0259, "{}", msg),
4324
            (true, _) | (_, true) => match new_binding.is_import() && old_binding.is_import() {
4325 4326
                true => struct_span_err!(self.session, span, E0254, "{}", msg),
                false => struct_span_err!(self.session, span, E0260, "{}", msg),
M
Mohit Agarwal 已提交
4327
            },
4328
            _ => match (old_binding.is_import(), new_binding.is_import()) {
4329 4330 4331
                (false, false) => struct_span_err!(self.session, span, E0428, "{}", msg),
                (true, true) => struct_span_err!(self.session, span, E0252, "{}", msg),
                _ => struct_span_err!(self.session, span, E0255, "{}", msg),
4332 4333 4334
            },
        };

4335 4336 4337 4338 4339 4340
        err.note(&format!("`{}` must be defined only once in the {} namespace of this {}",
                          name,
                          namespace,
                          container));

        err.span_label(span, format!("`{}` re{} here", name, new_participle));
4341
        if old_binding.span != DUMMY_SP {
4342 4343
            err.span_label(self.session.codemap().def_span(old_binding.span),
                           format!("previous {} of the {} `{}` here", old_noun, old_kind, name));
4344
        }
4345

C
Cldfire 已提交
4346 4347
        // See https://github.com/rust-lang/rust/issues/32354
        if old_binding.is_import() || new_binding.is_import() {
4348
            let binding = if new_binding.is_import() && new_binding.span != DUMMY_SP {
C
Cldfire 已提交
4349 4350 4351 4352 4353 4354 4355 4356
                new_binding
            } else {
                old_binding
            };

            let cm = self.session.codemap();
            let rename_msg = "You can use `as` to change the binding name of the import";

4357 4358
            if let (Ok(snippet), false) = (cm.span_to_snippet(binding.span),
                                           binding.is_renamed_extern_crate()) {
4359 4360 4361 4362 4363 4364
                let suggested_name = if name.as_str().chars().next().unwrap().is_uppercase() {
                    format!("Other{}", name)
                } else {
                    format!("other_{}", name)
                };

C
Cldfire 已提交
4365 4366
                err.span_suggestion(binding.span,
                                    rename_msg,
4367
                                    if snippet.ends_with(';') {
4368
                                        format!("{} as {};",
4369
                                                &snippet[..snippet.len()-1],
4370
                                                suggested_name)
4371
                                    } else {
4372
                                        format!("{} as {}", snippet, suggested_name)
4373
                                    });
C
Cldfire 已提交
4374 4375 4376 4377 4378
            } else {
                err.span_label(binding.span, rename_msg);
            }
        }

4379
        err.emit();
4380
        self.name_already_seen.insert(name, span);
4381
    }
J
Jeffrey Seyfried 已提交
4382

4383 4384 4385 4386
    fn check_proc_macro_attrs(&mut self, attrs: &[ast::Attribute]) {
        if self.proc_macro_enabled { return; }

        for attr in attrs {
4387 4388 4389
            if attr.path.segments.len() > 1 {
                continue
            }
4390
            let ident = attr.path.segments[0].ident;
4391 4392 4393 4394
            let result = self.resolve_lexical_macro_path_segment(ident,
                                                                 MacroNS,
                                                                 false,
                                                                 attr.path.span);
4395 4396
            if let Ok(binding) = result {
                if let SyntaxExtension::AttrProcMacro(..) = *binding.binding().get_macro(self) {
4397 4398 4399 4400 4401 4402 4403
                    attr::mark_known(attr);

                    let msg = "attribute procedural macros are experimental";
                    let feature = "proc_macro";

                    feature_err(&self.session.parse_sess, feature,
                                attr.span, GateIssue::Language, msg)
E
Esteban Küber 已提交
4404
                        .span_label(binding.span(), "procedural macro imported here")
4405 4406 4407 4408 4409
                        .emit();
                }
            }
        }
    }
4410
}
4411

V
Vadim Petrochenkov 已提交
4412 4413
fn is_self_type(path: &[Ident], namespace: Namespace) -> bool {
    namespace == TypeNS && path.len() == 1 && path[0].name == keywords::SelfType.name()
4414 4415
}

V
Vadim Petrochenkov 已提交
4416 4417
fn is_self_value(path: &[Ident], namespace: Namespace) -> bool {
    namespace == ValueNS && path.len() == 1 && path[0].name == keywords::SelfValue.name()
4418 4419
}

V
Vadim Petrochenkov 已提交
4420
fn names_to_string(idents: &[Ident]) -> String {
4421
    let mut result = String::new();
4422
    for (i, ident) in idents.iter()
V
Vadim Petrochenkov 已提交
4423
                            .filter(|ident| ident.name != keywords::CrateRoot.name())
4424
                            .enumerate() {
4425 4426 4427
        if i > 0 {
            result.push_str("::");
        }
V
Vadim Petrochenkov 已提交
4428
        result.push_str(&ident.as_str());
C
corentih 已提交
4429
    }
4430 4431 4432
    result
}

4433
fn path_names_to_string(path: &Path) -> String {
4434
    names_to_string(&path.segments.iter()
V
Vadim Petrochenkov 已提交
4435
                        .map(|seg| seg.ident)
4436
                        .collect::<Vec<_>>())
4437 4438
}

4439
/// Get the path for an enum and the variant from an `ImportSuggestion` for an enum variant.
E
Esteban Küber 已提交
4440
fn import_candidate_to_paths(suggestion: &ImportSuggestion) -> (Span, String, String) {
4441 4442 4443 4444 4445 4446 4447 4448 4449 4450
    let variant_path = &suggestion.path;
    let variant_path_string = path_names_to_string(variant_path);

    let path_len = suggestion.path.segments.len();
    let enum_path = ast::Path {
        span: suggestion.path.span,
        segments: suggestion.path.segments[0..path_len - 1].to_vec(),
    };
    let enum_path_string = path_names_to_string(&enum_path);

E
Esteban Küber 已提交
4451
    (suggestion.path.span, variant_path_string, enum_path_string)
4452 4453 4454
}


4455 4456 4457
/// When an entity with a given name is not available in scope, we search for
/// entities with that name in all crates. This method allows outputting the
/// results of this search in a programmer-friendly way
4458
fn show_candidates(err: &mut DiagnosticBuilder,
4459 4460
                   // This is `None` if all placement locations are inside expansions
                   span: Option<Span>,
4461
                   candidates: &[ImportSuggestion],
4462 4463
                   better: bool,
                   found_use: bool) {
4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474

    // we want consistent results across executions, but candidates are produced
    // by iterating through a hash map, so make sure they are ordered:
    let mut path_strings: Vec<_> =
        candidates.into_iter().map(|c| path_names_to_string(&c.path)).collect();
    path_strings.sort();

    let better = if better { "better " } else { "" };
    let msg_diff = match path_strings.len() {
        1 => " is found in another module, you can import it",
        _ => "s are found in other modules, you can import them",
4475
    };
4476 4477
    let msg = format!("possible {}candidate{} into scope", better, msg_diff);

4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488
    if let Some(span) = span {
        for candidate in &mut path_strings {
            // produce an additional newline to separate the new use statement
            // from the directly following item.
            let additional_newline = if found_use {
                ""
            } else {
                "\n"
            };
            *candidate = format!("use {};\n{}", candidate, additional_newline);
        }
4489

4490 4491 4492 4493 4494 4495 4496 4497 4498
        err.span_suggestions(span, &msg, path_strings);
    } else {
        let mut msg = msg;
        msg.push(':');
        for candidate in path_strings {
            msg.push('\n');
            msg.push_str(&candidate);
        }
    }
4499 4500
}

4501
/// A somewhat inefficient routine to obtain the name of a module.
4502
fn module_to_string(module: Module) -> Option<String> {
4503 4504
    let mut names = Vec::new();

4505
    fn collect_mod(names: &mut Vec<Ident>, module: Module) {
J
Jeffrey Seyfried 已提交
4506 4507
        if let ModuleKind::Def(_, name) = module.kind {
            if let Some(parent) = module.parent {
4508
                names.push(Ident::with_empty_ctxt(name));
J
Jeffrey Seyfried 已提交
4509
                collect_mod(names, parent);
4510
            }
J
Jeffrey Seyfried 已提交
4511 4512
        } else {
            // danger, shouldn't be ident?
4513
            names.push(Ident::from_str("<opaque>"));
J
Jeffrey Seyfried 已提交
4514
            collect_mod(names, module.parent.unwrap());
4515 4516 4517 4518
        }
    }
    collect_mod(&mut names, module);

4519
    if names.is_empty() {
4520
        return None;
4521
    }
4522
    Some(names_to_string(&names.into_iter()
4523
                        .rev()
4524
                        .collect::<Vec<_>>()))
4525 4526
}

4527
fn err_path_resolution() -> PathResolution {
4528
    PathResolution::new(Def::Err)
4529 4530
}

N
Niko Matsakis 已提交
4531
#[derive(PartialEq,Copy, Clone)]
4532 4533
pub enum MakeGlobMap {
    Yes,
C
corentih 已提交
4534
    No,
4535 4536
}

4537
#[derive(Copy, Clone, Debug)]
4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550
enum CrateLint {
    /// Do not issue the lint
    No,

    /// This lint applies to some random path like `impl ::foo::Bar`
    /// or whatever. In this case, we can take the span of that path.
    SimplePath(NodeId),

    /// This lint comes from a `use` statement. In this case, what we
    /// care about really is the *root* `use` statement; e.g., if we
    /// have nested things like `use a::{b, c}`, we care about the
    /// `use a` part.
    UsePath { root_id: NodeId, root_span: Span },
4551 4552 4553 4554 4555

    /// This is the "trait item" from a fully qualified path. For example,
    /// we might be resolving  `X::Y::Z` from a path like `<T as X::Y>::Z`.
    /// The `path_span` is the span of the to the trait itself (`X::Y`).
    QPathTrait { qpath_id: NodeId, qpath_span: Span },
4556 4557
}

4558
__build_diagnostic_array! { librustc_resolve, DIAGNOSTICS }