lib.rs 209.1 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",
12 13
       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
       html_root_url = "https://doc.rust-lang.org/nightly/")]
14

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

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

34 35
pub use rustc::hir::def::{Namespace, PerNS};

S
Steven Fackler 已提交
36 37 38
use self::TypeParameters::*;
use self::RibKind::*;

39
use rustc::hir::map::{Definitions, DefCollector};
40
use rustc::hir::{self, PrimTy, Bool, Char, Float, Int, Uint, Str};
41
use rustc::middle::cstore::CrateStore;
42 43
use rustc::session::Session;
use rustc::lint;
44
use rustc::hir::def::*;
45
use rustc::hir::def::Namespace::*;
46
use rustc::hir::def_id::{CRATE_DEF_INDEX, LOCAL_CRATE, DefId};
S
Seo Sanghyeon 已提交
47
use rustc::hir::{Freevar, FreevarMap, TraitCandidate, TraitMap, GlobMap};
48 49
use rustc::session::config::nightly_options;
use rustc::ty;
50
use rustc::util::nodemap::{NodeMap, NodeSet, FxHashMap, FxHashSet, DefIdMap};
51

52 53 54
use rustc_metadata::creader::CrateLoader;
use rustc_metadata::cstore::CStore;

D
Donato Sciarra 已提交
55
use syntax::source_map::SourceMap;
56
use syntax::ext::hygiene::{Mark, Transparency, SyntaxContext};
V
Vadim Petrochenkov 已提交
57
use syntax::ast::{self, Name, NodeId, Ident, FloatTy, IntTy, UintTy};
J
Jeffrey Seyfried 已提交
58
use syntax::ext::base::SyntaxExtension;
J
Jeffrey Seyfried 已提交
59
use syntax::ext::base::Determinacy::{self, Determined, Undetermined};
60
use syntax::ext::base::MacroKind;
61
use syntax::feature_gate::{emit_feature_err, GateIssue};
62
use syntax::symbol::{Symbol, keywords};
63
use syntax::util::lev_distance::find_best_match_for_name;
64

65
use syntax::visit::{self, FnKind, Visitor};
66
use syntax::attr;
67
use syntax::ast::{CRATE_NODE_ID, Arm, IsAsync, BindingMode, Block, Crate, Expr, ExprKind};
V
varkor 已提交
68
use syntax::ast::{FnDecl, ForeignItem, ForeignItemKind, GenericParamKind, Generics};
69
use syntax::ast::{Item, ItemKind, ImplItem, ImplItemKind};
70
use syntax::ast::{Label, Local, Mutability, Pat, PatKind, Path};
J
Jeffrey Seyfried 已提交
71
use syntax::ast::{QSelf, TraitItemKind, TraitRef, Ty, TyKind};
72
use syntax::ptr::P;
73

74
use syntax_pos::{Span, DUMMY_SP, MultiSpan};
75
use errors::{Applicability, DiagnosticBuilder, DiagnosticId};
76

77
use std::cell::{Cell, RefCell};
78
use std::{cmp, fmt, iter, ptr};
79
use std::collections::BTreeSet;
80
use std::mem::replace;
81
use rustc_data_structures::ptr_key::PtrKey;
82
use rustc_data_structures::sync::Lrc;
83

84
use resolve_imports::{ImportDirective, ImportDirectiveSubclass, NameResolution, ImportResolver};
85
use macros::{InvocationData, LegacyBinding, ParentScope};
86

87 88
// NB: This module needs to be declared first so diagnostics are
// registered before they are used.
J
Jeffrey Seyfried 已提交
89
mod diagnostics;
90
mod error_reporting;
91
mod macros;
A
Alex Crichton 已提交
92
mod check_unused;
93
mod build_reduced_graph;
94
mod resolve_imports;
95

96 97 98 99
fn is_known_tool(name: Name) -> bool {
    ["clippy", "rustfmt"].contains(&&*name.as_str())
}

100 101 102
/// A free importable items suggested in case of resolution failure.
struct ImportSuggestion {
    path: Path,
103 104
}

105 106 107 108 109
/// A field or associated item from self type suggested in case of resolution failure.
enum AssocSuggestion {
    Field,
    MethodWithSelf,
    AssocItem,
110 111
}

112 113 114
#[derive(Eq)]
struct BindingError {
    name: Name,
115 116
    origin: BTreeSet<Span>,
    target: BTreeSet<Span>,
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
}

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 已提交
137
enum ResolutionError<'a> {
138
    /// error E0401: can't use type parameters from outer function
139
    TypeParametersFromOuterFunction(Def),
140
    /// error E0403: the name is already used for a type parameter in this type parameter list
C
Chris Stankus 已提交
141
    NameAlreadyUsedInTypeParameterList(Name, &'a Span),
142
    /// error E0407: method is not a member of trait
143
    MethodNotMemberOfTrait(Name, &'a str),
144 145 146 147
    /// 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),
148 149 150 151
    /// 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),
152
    /// error E0415: identifier is bound more than once in this parameter list
153
    IdentifierBoundMoreThanOnceInParameterList(&'a str),
154
    /// error E0416: identifier is bound more than once in the same pattern
155
    IdentifierBoundMoreThanOnceInSamePattern(&'a str),
156
    /// error E0426: use of undeclared label
157
    UndeclaredLabel(&'a str, Option<Name>),
158
    /// error E0429: `self` imports are only allowed within a { } list
159
    SelfImportsOnlyAllowedWithin,
160
    /// error E0430: `self` import can only appear once in the list
161
    SelfImportCanOnlyAppearOnceInTheList,
162
    /// error E0431: `self` import can only appear in an import list with a non-empty prefix
163
    SelfImportOnlyInImportListWithNonEmptyPrefix,
164
    /// error E0433: failed to resolve
165
    FailedToResolve(&'a str),
166
    /// error E0434: can't capture dynamic environment in a fn item
167
    CannotCaptureDynamicEnvironmentInFnItem,
168
    /// error E0435: attempt to use a non-constant value in a constant
169
    AttemptToUseNonConstantValueInConstant,
170
    /// error E0530: X bindings cannot shadow Ys
171
    BindingShadowsSomethingUnacceptable(&'a str, Name, &'a NameBinding<'a>),
172 173
    /// error E0128: type parameters with a default cannot use forward declared identifiers
    ForwardDeclaredTyParam,
174 175
}

176 177 178 179
/// 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.
180 181 182
fn resolve_error<'sess, 'a>(resolver: &'sess Resolver,
                            span: Span,
                            resolution_error: ResolutionError<'a>) {
N
Nick Cameron 已提交
183
    resolve_struct_error(resolver, span, resolution_error).emit();
N
Nick Cameron 已提交
184 185
}

186 187 188 189
fn resolve_struct_error<'sess, 'a>(resolver: &'sess Resolver,
                                   span: Span,
                                   resolution_error: ResolutionError<'a>)
                                   -> DiagnosticBuilder<'sess> {
N
Nick Cameron 已提交
190
    match resolution_error {
191
        ResolutionError::TypeParametersFromOuterFunction(outer_def) => {
192 193 194
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0401,
195
                                           "can't use type parameters from outer function");
196
            err.span_label(span, "use of type variable from outer function");
197

D
Donato Sciarra 已提交
198
            let cm = resolver.session.source_map();
199
            match outer_def {
E
Esteban Küber 已提交
200 201 202 203 204 205
                Def::SelfTy(maybe_trait_defid, maybe_impl_defid) => {
                    if let Some(impl_span) = maybe_impl_defid.and_then(|def_id| {
                        resolver.definitions.opt_span(def_id)
                    }) {
                        err.span_label(
                            reduce_impl_span_to_impl_keyword(cm, impl_span),
E
Esteban Küber 已提交
206
                            "`Self` type implicitly declared here, by this `impl`",
E
Esteban Küber 已提交
207
                        );
208
                    }
E
Esteban Küber 已提交
209 210 211 212 213 214 215 216 217 218
                    match (maybe_trait_defid, maybe_impl_defid) {
                        (Some(_), None) => {
                            err.span_label(span, "can't use `Self` here");
                        }
                        (_, Some(_)) => {
                            err.span_label(span, "use a type here instead");
                        }
                        (None, None) => bug!("`impl` without trait nor type?"),
                    }
                    return err;
219
                },
220
                Def::TyParam(typaram_defid) => {
221 222 223 224
                    if let Some(typaram_span) = resolver.definitions.opt_span(typaram_defid) {
                        err.span_label(typaram_span, "type variable from outer function");
                    }
                },
225
                _ => {
226
                    bug!("TypeParametersFromOuterFunction should only be used with Def::SelfTy or \
227
                         Def::TyParam")
228
                }
229 230 231 232 233
            }

            // 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";
234
            if let Some((sugg_span, new_snippet)) = cm.generate_local_type_param_snippet(span) {
235
                // Suggest the modification to the user
236 237 238 239 240 241
                err.span_suggestion_with_applicability(
                    sugg_span,
                    sugg_msg,
                    new_snippet,
                    Applicability::MachineApplicable,
                );
242
            } else if let Some(sp) = cm.generate_fn_name_span(span) {
243
                err.span_label(sp, "try adding a local type parameter in this method instead");
244 245 246 247
            } else {
                err.help("try using a local type parameter instead");
            }

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

416 417 418 419 420 421
/// 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
D
Donato Sciarra 已提交
422
/// source_map functions and this function to something more robust.
D
Donato Sciarra 已提交
423
fn reduce_impl_span_to_impl_keyword(cm: &SourceMap, impl_span: Span) -> Span {
424 425 426 427 428
    let impl_span = cm.span_until_char(impl_span, '<');
    let impl_span = cm.span_until_whitespace(impl_span);
    impl_span
}

429
#[derive(Copy, Clone, Debug)]
430
struct BindingInfo {
431
    span: Span,
432
    binding_mode: BindingMode,
433 434
}

435
/// Map from the name in a pattern to its binding mode.
436
type BindingMap = FxHashMap<Ident, BindingInfo>;
437

438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
#[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",
        }
    }
459 460
}

A
Alex Burka 已提交
461 462 463 464 465 466
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
enum AliasPossibility {
    No,
    Maybe,
}

467
#[derive(Copy, Clone, Debug)]
468 469 470 471
enum PathSource<'a> {
    // Type paths `Path`.
    Type,
    // Trait paths in bounds or impls.
A
Alex Burka 已提交
472
    Trait(AliasPossibility),
473
    // Expression paths `path`, with optional parent context.
474
    Expr(Option<&'a Expr>),
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
    // 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 已提交
492
            PathSource::Type | PathSource::Trait(_) | PathSource::Struct |
493 494 495 496 497 498 499 500 501 502 503
            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 已提交
504
            PathSource::Trait(_) | PathSource::TraitItem(..) => false,
505 506 507 508 509 510 511
        }
    }

    fn defer_to_typeck(self) -> bool {
        match self {
            PathSource::Type | PathSource::Expr(..) | PathSource::Pat |
            PathSource::Struct | PathSource::TupleStruct => true,
A
Alex Burka 已提交
512
            PathSource::Trait(_) | PathSource::TraitItem(..) |
513 514 515 516 517 518 519
            PathSource::Visibility | PathSource::ImportPrefix => false,
        }
    }

    fn descr_expected(self) -> &'static str {
        match self {
            PathSource::Type => "type",
A
Alex Burka 已提交
520
            PathSource::Trait(_) => "trait",
521 522 523 524 525 526 527 528 529 530
            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"),
            },
531
            PathSource::Expr(parent) => match parent.map(|p| &p.node) {
532 533 534 535 536 537 538 539 540 541 542 543 544
                // "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(..) |
545
                Def::PrimTy(..) | Def::TyParam(..) | Def::SelfTy(..) |
O
Oliver Schneider 已提交
546
                Def::Existential(..) |
V
varkor 已提交
547
                Def::ForeignTy(..) => true,
548 549
                _ => false,
            },
A
Alex Burka 已提交
550 551 552 553 554
            PathSource::Trait(AliasPossibility::No) => match def {
                Def::Trait(..) => true,
                _ => false,
            },
            PathSource::Trait(AliasPossibility::Maybe) => match def {
555
                Def::Trait(..) => true,
A
Alex Burka 已提交
556
                Def::TraitAlias(..) => true,
557 558 559 560 561 562
                _ => 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(..) |
F
F001 已提交
563 564
                Def::Fn(..) | Def::Method(..) | Def::AssociatedConst(..) |
                Def::SelfCtor(..) => true,
565 566 567 568 569
                _ => false,
            },
            PathSource::Pat => match def {
                Def::StructCtor(_, CtorKind::Const) |
                Def::VariantCtor(_, CtorKind::Const) |
F
F001 已提交
570 571
                Def::Const(..) | Def::AssociatedConst(..) |
                Def::SelfCtor(..) => true,
572 573 574
                _ => false,
            },
            PathSource::TupleStruct => match def {
F
F001 已提交
575 576 577
                Def::StructCtor(_, CtorKind::Fn) |
                Def::VariantCtor(_, CtorKind::Fn) |
                Def::SelfCtor(..) => true,
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
                _ => 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 已提交
617 618
            (PathSource::Trait(_), true) => "E0404",
            (PathSource::Trait(_), false) => "E0405",
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
            (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",
        }
    }
}

N
Nick Cameron 已提交
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
// A minimal representation of a path segment. We use this in resolve because
// we synthesize 'path segments' which don't have the rest of an AST or HIR
// PathSegment.
#[derive(Clone, Copy, Debug)]
pub struct Segment {
    ident: Ident,
    id: Option<NodeId>,
}

impl Segment {
    fn from_path(path: &Path) -> Vec<Segment> {
        path.segments.iter().map(|s| s.into()).collect()
    }

    fn from_ident(ident: Ident) -> Segment {
        Segment {
            ident,
            id: None,
        }
    }

    fn names_to_string(segments: &[Segment]) -> String {
        names_to_string(&segments.iter()
                            .map(|seg| seg.ident)
                            .collect::<Vec<_>>())
    }
}

impl<'a> From<&'a ast::PathSegment> for Segment {
    fn from(seg: &'a ast::PathSegment) -> Segment {
        Segment {
            ident: seg.ident,
            id: Some(seg.id),
        }
    }
}

672 673 674
struct UsePlacementFinder {
    target_module: NodeId,
    span: Option<Span>,
675
    found_use: bool,
676 677
}

678 679 680 681 682 683 684 685 686 687 688 689
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)
    }
}

690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
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
711
                    if item.span.ctxt().outer().expn_info().is_none() {
712
                        self.span = Some(item.span.shrink_to_lo());
713
                        self.found_use = true;
714 715 716 717 718 719 720
                        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 ) {
721 722 723
                    if item.span.ctxt().outer().expn_info().is_none() {
                        // don't insert between attributes and an item
                        if item.attrs.is_empty() {
724
                            self.span = Some(item.span.shrink_to_lo());
725 726 727 728
                        } else {
                            // find the first attribute on the item
                            for attr in &item.attrs {
                                if self.span.map_or(true, |span| attr.span < span) {
729
                                    self.span = Some(attr.span.shrink_to_lo());
730 731 732 733
                                }
                            }
                        }
                    }
734 735 736 737 738 739
                },
            }
        }
    }
}

740
/// This thing walks the whole crate in DFS manner, visiting each item, resolving names as it goes.
741
impl<'a, 'tcx, 'cl> Visitor<'tcx> for Resolver<'a, 'cl> {
742
    fn visit_item(&mut self, item: &'tcx Item) {
A
Alex Crichton 已提交
743
        self.resolve_item(item);
744
    }
745
    fn visit_arm(&mut self, arm: &'tcx Arm) {
A
Alex Crichton 已提交
746
        self.resolve_arm(arm);
747
    }
748
    fn visit_block(&mut self, block: &'tcx Block) {
A
Alex Crichton 已提交
749
        self.resolve_block(block);
750
    }
751 752 753 754 755
    fn visit_anon_const(&mut self, constant: &'tcx ast::AnonConst) {
        self.with_constant_rib(|this| {
            visit::walk_anon_const(this, constant);
        });
    }
756
    fn visit_expr(&mut self, expr: &'tcx Expr) {
757
        self.resolve_expr(expr, None);
758
    }
759
    fn visit_local(&mut self, local: &'tcx Local) {
A
Alex Crichton 已提交
760
        self.resolve_local(local);
761
    }
762
    fn visit_ty(&mut self, ty: &'tcx Ty) {
763 764 765 766 767 768
        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();
769
                let def = self.resolve_ident_in_lexical_scope(self_ty, TypeNS, Some(ty.id), ty.span)
770 771 772 773
                              .map_or(Def::Err, |d| d.def());
                self.record_def(ty.id, PathResolution::new(def));
            }
            _ => (),
774 775
        }
        visit::walk_ty(self, ty);
776
    }
777 778 779
    fn visit_poly_trait_ref(&mut self,
                            tref: &'tcx ast::PolyTraitRef,
                            m: &'tcx ast::TraitBoundModifier) {
780
        self.smart_resolve_path(tref.trait_ref.ref_id, None,
A
Alex Burka 已提交
781
                                &tref.trait_ref.path, PathSource::Trait(AliasPossibility::Maybe));
782
        visit::walk_poly_trait_ref(self, tref, m);
783
    }
784
    fn visit_foreign_item(&mut self, foreign_item: &'tcx ForeignItem) {
785
        let type_parameters = match foreign_item.node {
786
            ForeignItemKind::Fn(_, ref generics) => {
787
                HasTypeParameters(generics, ItemRibKind)
788
            }
789
            ForeignItemKind::Static(..) => NoTypeParameters,
P
Paul Lietar 已提交
790
            ForeignItemKind::Ty => NoTypeParameters,
791
            ForeignItemKind::Macro(..) => NoTypeParameters,
792 793
        };
        self.with_type_parameter_rib(type_parameters, |this| {
794
            visit::walk_foreign_item(this, foreign_item);
795 796 797
        });
    }
    fn visit_fn(&mut self,
798 799
                function_kind: FnKind<'tcx>,
                declaration: &'tcx FnDecl,
800
                _: Span,
T
Taylor Cramer 已提交
801 802 803 804 805 806 807 808 809 810 811
                node_id: NodeId)
    {
        let (rib_kind, asyncness) = match function_kind {
            FnKind::ItemFn(_, ref header, ..) =>
                (ItemRibKind, header.asyncness),
            FnKind::Method(_, ref sig, _, _) =>
                (TraitOrImplItemRibKind, sig.header.asyncness),
            FnKind::Closure(_) =>
                // Async closures aren't resolved through `visit_fn`-- they're
                // processed separately
                (ClosureRibKind(node_id), IsAsync::NotAsync),
812
        };
813 814

        // Create a value rib for the function.
J
Jeffrey Seyfried 已提交
815
        self.ribs[ValueNS].push(Rib::new(rib_kind));
816 817 818 819 820

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

        // Add each argument to the rib.
821
        let mut bindings_list = FxHashMap::default();
822 823 824 825 826 827 828 829 830
        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);

T
Taylor Cramer 已提交
831
        // Resolve the function body, potentially inside the body of an async closure
832 833
        if let IsAsync::Async { closure_id, .. } = asyncness {
            let rib_kind = ClosureRibKind(closure_id);
T
Taylor Cramer 已提交
834 835 836 837
            self.ribs[ValueNS].push(Rib::new(rib_kind));
            self.label_ribs.push(Rib::new(rib_kind));
        }

838 839 840 841 842 843 844 845 846 847
        match function_kind {
            FnKind::ItemFn(.., body) |
            FnKind::Method(.., body) => {
                self.visit_block(body);
            }
            FnKind::Closure(body) => {
                self.visit_expr(body);
            }
        };

T
Taylor Cramer 已提交
848 849 850 851 852 853
        // Leave the body of the async closure
        if asyncness.is_async() {
            self.label_ribs.pop();
            self.ribs[ValueNS].pop();
        }

854 855 856
        debug!("(resolving function) leaving function");

        self.label_ribs.pop();
J
Jeffrey Seyfried 已提交
857
        self.ribs[ValueNS].pop();
858
    }
859 860 861
    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
862 863 864
        // 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.
865
        let mut default_ban_rib = Rib::new(ForwardTyParamBanRibKind);
V
varkor 已提交
866
        let mut found_default = false;
867
        default_ban_rib.bindings.extend(generics.params.iter()
V
varkor 已提交
868
            .filter_map(|param| match param.kind {
V
varkor 已提交
869 870
                GenericParamKind::Lifetime { .. } => None,
                GenericParamKind::Type { ref default, .. } => {
V
varkor 已提交
871 872
                    found_default |= default.is_some();
                    if found_default {
V
varkor 已提交
873
                        Some((Ident::with_empty_ctxt(param.ident.name), Def::Err))
V
varkor 已提交
874 875
                    } else {
                        None
V
varkor 已提交
876 877 878
                    }
                }
            }));
879

880
        for param in &generics.params {
V
varkor 已提交
881
            match param.kind {
V
varkor 已提交
882
                GenericParamKind::Lifetime { .. } => self.visit_generic_param(param),
V
varkor 已提交
883 884
                GenericParamKind::Type { ref default, .. } => {
                    for bound in &param.bounds {
V
varkor 已提交
885
                        self.visit_param_bound(bound);
886
                    }
887

V
varkor 已提交
888
                    if let Some(ref ty) = default {
889 890 891 892
                        self.ribs[TypeNS].push(default_ban_rib);
                        self.visit_ty(ty);
                        default_ban_rib = self.ribs[TypeNS].pop().unwrap();
                    }
893

894
                    // Allow all following defaults to refer to this type parameter.
V
varkor 已提交
895
                    default_ban_rib.bindings.remove(&Ident::with_empty_ctxt(param.ident.name));
896 897
                }
            }
898
        }
V
varkor 已提交
899 900 901
        for p in &generics.where_clause.predicates {
            self.visit_where_predicate(p);
        }
902
    }
903
}
904

N
Niko Matsakis 已提交
905
#[derive(Copy, Clone)]
906
enum TypeParameters<'a, 'b> {
907
    NoTypeParameters,
C
corentih 已提交
908
    HasTypeParameters(// Type parameters.
909
                      &'b Generics,
910

C
corentih 已提交
911
                      // The kind of the rib used for type parameters.
912
                      RibKind<'a>),
913 914
}

M
Mark Mansi 已提交
915 916
/// The rib kind controls the translation of local
/// definitions (`Def::Local`) to upvars (`Def::Upvar`).
N
Niko Matsakis 已提交
917
#[derive(Copy, Clone, Debug)]
918
enum RibKind<'a> {
M
Mark Mansi 已提交
919
    /// No translation needs to be applied.
920
    NormalRibKind,
921

M
Mark Mansi 已提交
922 923
    /// We passed through a closure scope at the given node ID.
    /// Translate upvars as appropriate.
924
    ClosureRibKind(NodeId /* func id */),
925

M
Mark Mansi 已提交
926 927 928 929
    /// 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).
930
    TraitOrImplItemRibKind,
931

M
Mark Mansi 已提交
932
    /// We passed through an item scope. Disallow upvars.
933
    ItemRibKind,
934

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

M
Mark Mansi 已提交
938
    /// We passed through a module.
939
    ModuleRibKind(Module<'a>),
940

M
Mark Mansi 已提交
941
    /// We passed through a `macro_rules!` statement
942
    MacroDefinition(DefId),
943

M
Mark Mansi 已提交
944 945 946
    /// 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.
947
    ForwardTyParamBanRibKind,
948 949
}

950
/// One local scope.
951 952 953
///
/// 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)
954 955 956
/// 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.
957 958 959 960 961
///
/// 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 已提交
962
#[derive(Debug)]
963
struct Rib<'a> {
964
    bindings: FxHashMap<Ident, Def>,
965
    kind: RibKind<'a>,
B
Brian Anderson 已提交
966
}
967

968 969
impl<'a> Rib<'a> {
    fn new(kind: RibKind<'a>) -> Rib<'a> {
970
        Rib {
971
            bindings: Default::default(),
972
            kind,
973
        }
974 975 976
    }
}

977 978 979 980 981
/// 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.
982 983
enum LexicalScopeBinding<'a> {
    Item(&'a NameBinding<'a>),
J
Jeffrey Seyfried 已提交
984
    Def(Def),
985 986
}

987
impl<'a> LexicalScopeBinding<'a> {
988
    fn item(self) -> Option<&'a NameBinding<'a>> {
989
        match self {
990
            LexicalScopeBinding::Item(binding) => Some(binding),
991 992 993
            _ => None,
        }
    }
994 995 996 997 998 999 1000

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

1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
#[derive(Copy, Clone, Debug)]
pub enum ModuleOrUniformRoot<'a> {
    /// Regular module.
    Module(Module<'a>),

    /// The `{{root}}` (`CrateRoot` aka "global") / `extern` initial segment
    /// in which external crates resolve, and also `crate` (only in `{{root}}`,
    /// but *not* `extern`), in the Rust 2018 edition.
    UniformRoot(Name),
}

1014
#[derive(Clone, Debug)]
J
Jeffrey Seyfried 已提交
1015
enum PathResult<'a> {
1016
    Module(ModuleOrUniformRoot<'a>),
J
Jeffrey Seyfried 已提交
1017 1018
    NonModule(PathResolution),
    Indeterminate,
1019
    Failed(Span, String, bool /* is the error from the last segment? */),
J
Jeffrey Seyfried 已提交
1020 1021
}

J
Jeffrey Seyfried 已提交
1022
enum ModuleKind {
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
    /// 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 已提交
1035
    Block(NodeId),
1036 1037 1038
    /// Any module with a name.
    ///
    /// This could be:
1039
    ///
1040 1041 1042
    /// * 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 已提交
1043
    Def(Def, Name),
1044 1045
}

1046
/// One node in the tree of modules.
1047
pub struct ModuleData<'a> {
J
Jeffrey Seyfried 已提交
1048 1049
    parent: Option<Module<'a>>,
    kind: ModuleKind,
1050

1051 1052
    // The def id of the closest normal module (`mod`) ancestor (including this module).
    normal_ancestor_id: DefId,
1053

1054
    resolutions: RefCell<FxHashMap<(Ident, Namespace), &'a RefCell<NameResolution<'a>>>>,
1055 1056
    legacy_macro_resolutions: RefCell<Vec<(Ident, MacroKind, ParentScope<'a>,
                                           Option<&'a NameBinding<'a>>)>>,
1057
    macro_resolutions: RefCell<Vec<(Box<[Ident]>, Span)>>,
1058
    builtin_attrs: RefCell<Vec<(Ident, ParentScope<'a>)>>,
1059

1060 1061 1062
    // Macro invocations that can expand into items in this module.
    unresolved_invocations: RefCell<FxHashSet<Mark>>,

1063
    no_implicit_prelude: bool,
1064

1065
    glob_importers: RefCell<Vec<&'a ImportDirective<'a>>>,
1066
    globs: RefCell<Vec<&'a ImportDirective<'a>>>,
1067

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

1071 1072 1073
    // Whether this module is populated. If not populated, any attempt to
    // access the children must be preceded with a
    // `populate_module_if_necessary` call.
1074
    populated: Cell<bool>,
1075 1076 1077

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

    expansion: Mark,
1080 1081
}

1082
type Module<'a> = &'a ModuleData<'a>;
1083

1084
impl<'a> ModuleData<'a> {
O
Oliver Schneider 已提交
1085 1086 1087
    fn new(parent: Option<Module<'a>>,
           kind: ModuleKind,
           normal_ancestor_id: DefId,
J
Jeffrey Seyfried 已提交
1088
           expansion: Mark,
O
Oliver Schneider 已提交
1089
           span: Span) -> Self {
1090
        ModuleData {
1091 1092 1093
            parent,
            kind,
            normal_ancestor_id,
1094
            resolutions: Default::default(),
1095
            legacy_macro_resolutions: RefCell::new(Vec::new()),
1096
            macro_resolutions: RefCell::new(Vec::new()),
1097
            builtin_attrs: RefCell::new(Vec::new()),
1098
            unresolved_invocations: Default::default(),
1099
            no_implicit_prelude: false,
1100
            glob_importers: RefCell::new(Vec::new()),
1101
            globs: RefCell::new(Vec::new()),
J
Jeffrey Seyfried 已提交
1102
            traits: RefCell::new(None),
1103
            populated: Cell::new(normal_ancestor_id.is_local()),
1104 1105
            span,
            expansion,
1106
        }
B
Brian Anderson 已提交
1107 1108
    }

1109 1110 1111
    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));
1112 1113 1114
        }
    }

1115 1116
    fn for_each_child_stable<F: FnMut(Ident, Namespace, &'a NameBinding<'a>)>(&self, mut f: F) {
        let resolutions = self.resolutions.borrow();
1117
        let mut resolutions = resolutions.iter().collect::<Vec<_>>();
V
Vadim Petrochenkov 已提交
1118
        resolutions.sort_by_cached_key(|&(&(ident, ns), _)| (ident.as_str(), ns));
1119
        for &(&(ident, ns), &resolution) in resolutions.iter() {
1120 1121 1122 1123
            resolution.borrow().binding.map(|binding| f(ident, ns, binding));
        }
    }

J
Jeffrey Seyfried 已提交
1124 1125 1126 1127 1128 1129 1130
    fn def(&self) -> Option<Def> {
        match self.kind {
            ModuleKind::Def(def, _) => Some(def),
            _ => None,
        }
    }

1131
    fn def_id(&self) -> Option<DefId> {
J
Jeffrey Seyfried 已提交
1132
        self.def().as_ref().map(Def::def_id)
1133 1134
    }

1135
    // `self` resolves to the first module ancestor that `is_normal`.
1136
    fn is_normal(&self) -> bool {
J
Jeffrey Seyfried 已提交
1137 1138
        match self.kind {
            ModuleKind::Def(Def::Mod(_), _) => true,
1139 1140 1141 1142 1143
            _ => false,
        }
    }

    fn is_trait(&self) -> bool {
J
Jeffrey Seyfried 已提交
1144 1145
        match self.kind {
            ModuleKind::Def(Def::Trait(_), _) => true,
1146
            _ => false,
1147
        }
B
Brian Anderson 已提交
1148
    }
1149 1150

    fn is_local(&self) -> bool {
1151
        self.normal_ancestor_id.is_local()
1152
    }
1153 1154 1155 1156

    fn nearest_item_scope(&'a self) -> Module<'a> {
        if self.is_trait() { self.parent.unwrap() } else { self }
    }
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167

    fn is_ancestor_of(&self, mut other: &Self) -> bool {
        while !ptr::eq(self, other) {
            if let Some(parent) = other.parent {
                other = parent;
            } else {
                return false;
            }
        }
        true
    }
V
Victor Berger 已提交
1168 1169
}

1170
impl<'a> fmt::Debug for ModuleData<'a> {
1171
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
J
Jeffrey Seyfried 已提交
1172
        write!(f, "{:?}", self.def())
1173 1174 1175
    }
}

M
Mark Mansi 已提交
1176
/// Records a possibly-private value, type, or module definition.
1177
#[derive(Clone, Debug)]
1178
pub struct NameBinding<'a> {
1179
    kind: NameBindingKind<'a>,
1180
    expansion: Mark,
1181
    span: Span,
1182
    vis: ty::Visibility,
1183 1184
}

1185
pub trait ToNameBinding<'a> {
J
Jeffrey Seyfried 已提交
1186
    fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a>;
1187 1188
}

J
Jeffrey Seyfried 已提交
1189 1190
impl<'a> ToNameBinding<'a> for &'a NameBinding<'a> {
    fn to_name_binding(self, _: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
1191 1192 1193 1194
        self
    }
}

1195
#[derive(Clone, Debug)]
1196
enum NameBindingKind<'a> {
1197
    Def(Def, /* is_macro_export */ bool),
1198
    Module(Module<'a>),
1199 1200
    Import {
        binding: &'a NameBinding<'a>,
1201
        directive: &'a ImportDirective<'a>,
1202
        used: Cell<bool>,
1203
    },
1204 1205 1206 1207
    Ambiguity {
        b1: &'a NameBinding<'a>,
        b2: &'a NameBinding<'a>,
    }
1208 1209
}

1210 1211
struct PrivacyError<'a>(Span, Name, &'a NameBinding<'a>);

1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
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 已提交
1222
struct AmbiguityError<'a> {
1223
    ident: Ident,
J
Jeffrey Seyfried 已提交
1224 1225 1226 1227
    b1: &'a NameBinding<'a>,
    b2: &'a NameBinding<'a>,
}

1228
impl<'a> NameBinding<'a> {
J
Jeffrey Seyfried 已提交
1229
    fn module(&self) -> Option<Module<'a>> {
1230
        match self.kind {
J
Jeffrey Seyfried 已提交
1231
            NameBindingKind::Module(module) => Some(module),
1232
            NameBindingKind::Import { binding, .. } => binding.module(),
J
Jeffrey Seyfried 已提交
1233
            _ => None,
1234 1235 1236
        }
    }

1237
    fn def(&self) -> Def {
1238
        match self.kind {
1239
            NameBindingKind::Def(def, _) => def,
J
Jeffrey Seyfried 已提交
1240
            NameBindingKind::Module(module) => module.def().unwrap(),
1241
            NameBindingKind::Import { binding, .. } => binding.def(),
1242
            NameBindingKind::Ambiguity { .. } => Def::Err,
1243
        }
1244
    }
1245

1246
    fn def_ignoring_ambiguity(&self) -> Def {
J
Jeffrey Seyfried 已提交
1247
        match self.kind {
1248 1249 1250
            NameBindingKind::Import { binding, .. } => binding.def_ignoring_ambiguity(),
            NameBindingKind::Ambiguity { b1, .. } => b1.def_ignoring_ambiguity(),
            _ => self.def(),
J
Jeffrey Seyfried 已提交
1251 1252 1253
        }
    }

1254 1255
    // We sometimes need to treat variants as `pub` for backwards compatibility
    fn pseudo_vis(&self) -> ty::Visibility {
1256 1257 1258 1259 1260
        if self.is_variant() && self.def().def_id().is_local() {
            ty::Visibility::Public
        } else {
            self.vis
        }
1261 1262 1263 1264
    }

    fn is_variant(&self) -> bool {
        match self.kind {
1265 1266
            NameBindingKind::Def(Def::Variant(..), _) |
            NameBindingKind::Def(Def::VariantCtor(..), _) => true,
1267 1268
            _ => false,
        }
1269 1270
    }

1271
    fn is_extern_crate(&self) -> bool {
1272 1273 1274
        match self.kind {
            NameBindingKind::Import {
                directive: &ImportDirective {
1275
                    subclass: ImportDirectiveSubclass::ExternCrate { .. }, ..
1276 1277 1278 1279
                }, ..
            } => true,
            _ => false,
        }
1280
    }
1281 1282 1283 1284 1285 1286 1287

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

    fn is_glob_import(&self) -> bool {
        match self.kind {
            NameBindingKind::Import { directive, .. } => directive.is_glob(),
1292
            NameBindingKind::Ambiguity { b1, .. } => b1.is_glob_import(),
1293 1294 1295 1296 1297
            _ => false,
        }
    }

    fn is_importable(&self) -> bool {
1298
        match self.def() {
1299 1300 1301 1302
            Def::AssociatedConst(..) | Def::Method(..) | Def::AssociatedTy(..) => false,
            _ => true,
        }
    }
1303 1304 1305

    fn is_macro_def(&self) -> bool {
        match self.kind {
1306
            NameBindingKind::Def(Def::Macro(..), _) => true,
1307 1308 1309
            _ => false,
        }
    }
1310

1311 1312 1313
    fn macro_kind(&self) -> Option<MacroKind> {
        match self.def_ignoring_ambiguity() {
            Def::Macro(_, kind) => Some(kind),
1314
            Def::NonMacroAttr(..) => Some(MacroKind::Attr),
1315 1316 1317 1318
            _ => None,
        }
    }

1319 1320 1321
    fn descr(&self) -> &'static str {
        if self.is_extern_crate() { "extern crate" } else { self.def().kind_name() }
    }
1322

1323 1324
    // Suppose that we resolved macro invocation with `invoc_parent_expansion` to binding `binding`
    // at some expansion round `max(invoc, binding)` when they both emerged from macros.
1325 1326
    // Then this function returns `true` if `self` may emerge from a macro *after* that
    // in some later round and screw up our previously found resolution.
1327 1328
    // See more detailed explanation in
    // https://github.com/rust-lang/rust/pull/53778#issuecomment-419224049
1329 1330
    fn may_appear_after(&self, invoc_parent_expansion: Mark, binding: &NameBinding) -> bool {
        // self > max(invoc, binding) => !(self <= invoc || self <= binding)
1331 1332 1333 1334 1335 1336 1337 1338 1339
        // Expansions are partially ordered, so "may appear after" is an inversion of
        // "certainly appears before or simultaneously" and includes unordered cases.
        let self_parent_expansion = self.expansion;
        let other_parent_expansion = binding.expansion;
        let certainly_before_other_or_simultaneously =
            other_parent_expansion.is_descendant_of(self_parent_expansion);
        let certainly_before_invoc_or_simultaneously =
            invoc_parent_expansion.is_descendant_of(self_parent_expansion);
        !(certainly_before_other_or_simultaneously || certainly_before_invoc_or_simultaneously)
1340
    }
1341 1342
}

1343
/// Interns the names of the primitive types.
1344 1345 1346
///
/// All other types are defined somewhere and possibly imported, but the primitive ones need
/// special handling, since they have no place of origin.
1347
#[derive(Default)]
F
Felix S. Klock II 已提交
1348
struct PrimitiveTypeTable {
1349
    primitive_types: FxHashMap<Name, PrimTy>,
1350
}
1351

1352
impl PrimitiveTypeTable {
K
Kevin Butler 已提交
1353
    fn new() -> PrimitiveTypeTable {
1354
        let mut table = PrimitiveTypeTable::default();
C
corentih 已提交
1355

1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
        table.intern("bool", Bool);
        table.intern("char", Char);
        table.intern("f32", Float(FloatTy::F32));
        table.intern("f64", Float(FloatTy::F64));
        table.intern("isize", Int(IntTy::Isize));
        table.intern("i8", Int(IntTy::I8));
        table.intern("i16", Int(IntTy::I16));
        table.intern("i32", Int(IntTy::I32));
        table.intern("i64", Int(IntTy::I64));
        table.intern("i128", Int(IntTy::I128));
        table.intern("str", Str);
        table.intern("usize", Uint(UintTy::Usize));
        table.intern("u8", Uint(UintTy::U8));
        table.intern("u16", Uint(UintTy::U16));
        table.intern("u32", Uint(UintTy::U32));
        table.intern("u64", Uint(UintTy::U64));
        table.intern("u128", Uint(UintTy::U128));
K
Kevin Butler 已提交
1373 1374 1375
        table
    }

1376
    fn intern(&mut self, string: &str, primitive_type: PrimTy) {
1377
        self.primitive_types.insert(Symbol::intern(string), primitive_type);
1378 1379 1380
    }
}

1381 1382 1383 1384 1385 1386
#[derive(Default, Clone)]
pub struct ExternPreludeEntry<'a> {
    extern_crate_item: Option<&'a NameBinding<'a>>,
    pub introduced_by_item: bool,
}

1387
/// The main resolver class.
1388 1389
///
/// This is the visitor that walks the whole crate.
1390
pub struct Resolver<'a, 'b: 'a> {
E
Eduard Burtescu 已提交
1391
    session: &'a Session,
1392
    cstore: &'a CStore,
1393

1394
    pub definitions: Definitions,
1395

1396
    graph_root: Module<'a>,
1397

1398
    prelude: Option<Module<'a>>,
1399
    pub extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'a>>,
1400

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

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

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

M
Mark Mansi 已提交
1411
    /// All non-determined imports.
1412
    indeterminate_imports: Vec<&'a ImportDirective<'a>>,
1413

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

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

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

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

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

1430 1431 1432
    /// The current self item if inside an ADT (used for better errors).
    current_self_item: Option<NodeId>,

M
Mark Mansi 已提交
1433
    /// The idents for the primitive types.
E
Eduard Burtescu 已提交
1434
    primitive_type_table: PrimitiveTypeTable,
1435

1436
    def_map: DefMap,
1437
    import_map: ImportMap,
1438
    pub freevars: FreevarMap,
1439
    freevars_seen: NodeMap<NodeMap<usize>>,
1440 1441
    pub export_map: ExportMap,
    pub trait_map: TraitMap,
1442

M
Mark Mansi 已提交
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
    /// 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`.
1457 1458
    block_map: NodeMap<Module<'a>>,
    module_map: FxHashMap<DefId, Module<'a>>,
J
Jeffrey Seyfried 已提交
1459
    extern_module_map: FxHashMap<(DefId, bool /* MacrosOnly? */), Module<'a>>,
1460
    binding_parent_modules: FxHashMap<PtrKey<'a, NameBinding<'a>>, Module<'a>>,
1461

1462
    pub make_glob_map: bool,
1463 1464
    /// Maps imports to the names of items actually imported (this actually maps
    /// all imports, but only glob imports are actually interesting).
1465
    pub glob_map: GlobMap,
1466

1467
    used_imports: FxHashSet<(NodeId, Namespace)>,
1468
    pub maybe_unused_trait_imports: NodeSet,
1469
    pub maybe_unused_extern_crates: Vec<(NodeId, Span)>,
G
Garming Sam 已提交
1470

1471 1472 1473 1474
    /// 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>,

1475
    /// privacy errors are delayed until the end in order to deduplicate them
1476
    privacy_errors: Vec<PrivacyError<'a>>,
1477
    /// ambiguity errors are delayed for deduplication
J
Jeffrey Seyfried 已提交
1478
    ambiguity_errors: Vec<AmbiguityError<'a>>,
1479 1480
    /// `use` injections are delayed for better placement and deduplication
    use_injections: Vec<UseError<'a>>,
1481 1482
    /// crate-local macro expanded `macro_export` referred to by a module-relative path
    macro_expanded_macro_export_errors: BTreeSet<(Span, Span)>,
1483 1484

    arenas: &'a ResolverArenas<'a>,
1485
    dummy_binding: &'a NameBinding<'a>,
1486

1487
    crate_loader: &'a mut CrateLoader<'b>,
J
Jeffrey Seyfried 已提交
1488
    macro_names: FxHashSet<Ident>,
1489 1490
    builtin_macros: FxHashMap<Name, &'a NameBinding<'a>>,
    macro_use_prelude: FxHashMap<Name, &'a NameBinding<'a>>,
1491
    pub all_macros: FxHashMap<Name, Def>,
1492
    macro_map: FxHashMap<DefId, Lrc<SyntaxExtension>>,
1493 1494
    macro_defs: FxHashMap<Mark, DefId>,
    local_macro_def_scopes: FxHashMap<NodeId, Module<'a>>,
1495
    pub whitelisted_legacy_custom_derives: Vec<Name>,
1496
    pub found_unresolved_macro: bool,
1497

M
Mark Mansi 已提交
1498 1499
    /// 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 已提交
1500
    unused_macros: FxHashSet<DefId>,
E
est31 已提交
1501

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

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

1508
    potentially_unused_imports: Vec<&'a ImportDirective<'a>>,
1509

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

M
Mark Mansi 已提交
1514
    /// Only used for better errors on `fn(): fn()`
1515
    current_type_ascription: Vec<Span>,
1516 1517

    injected_crate: Option<Module<'a>>,
1518 1519
}

1520
/// Nothing really interesting here, it just provides memory for the rest of the crate.
1521
#[derive(Default)]
1522
pub struct ResolverArenas<'a> {
1523
    modules: arena::TypedArena<ModuleData<'a>>,
1524
    local_modules: RefCell<Vec<Module<'a>>>,
1525
    name_bindings: arena::TypedArena<NameBinding<'a>>,
1526
    import_directives: arena::TypedArena<ImportDirective<'a>>,
1527
    name_resolutions: arena::TypedArena<RefCell<NameResolution<'a>>>,
1528
    invocation_data: arena::TypedArena<InvocationData<'a>>,
J
Jeffrey Seyfried 已提交
1529
    legacy_bindings: arena::TypedArena<LegacyBinding<'a>>,
1530 1531 1532
}

impl<'a> ResolverArenas<'a> {
1533
    fn alloc_module(&'a self, module: ModuleData<'a>) -> Module<'a> {
1534 1535 1536 1537 1538 1539 1540 1541
        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()
1542 1543 1544 1545
    }
    fn alloc_name_binding(&'a self, name_binding: NameBinding<'a>) -> &'a NameBinding<'a> {
        self.name_bindings.alloc(name_binding)
    }
1546 1547
    fn alloc_import_directive(&'a self, import_directive: ImportDirective<'a>)
                              -> &'a ImportDirective {
1548 1549
        self.import_directives.alloc(import_directive)
    }
1550 1551 1552
    fn alloc_name_resolution(&'a self) -> &'a RefCell<NameResolution<'a>> {
        self.name_resolutions.alloc(Default::default())
    }
1553 1554 1555
    fn alloc_invocation_data(&'a self, expansion_data: InvocationData<'a>)
                             -> &'a InvocationData<'a> {
        self.invocation_data.alloc(expansion_data)
J
Jeffrey Seyfried 已提交
1556
    }
J
Jeffrey Seyfried 已提交
1557 1558 1559
    fn alloc_legacy_binding(&'a self, binding: LegacyBinding<'a>) -> &'a LegacyBinding<'a> {
        self.legacy_bindings.alloc(binding)
    }
1560 1561
}

1562
impl<'a, 'b: 'a, 'cl: 'b> ty::DefIdTree for &'a Resolver<'b, 'cl> {
1563 1564 1565
    fn parent(self, id: DefId) -> Option<DefId> {
        match id.krate {
            LOCAL_CRATE => self.definitions.def_key(id.index).parent,
1566
            _ => self.cstore.def_key(id).parent,
1567
        }.map(|index| DefId { index, ..id })
1568 1569 1570
    }
}

1571 1572
/// 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.
1573
impl<'a, 'cl> hir::lowering::Resolver for Resolver<'a, 'cl> {
1574 1575 1576 1577 1578 1579 1580
    fn resolve_hir_path(
        &mut self,
        path: &ast::Path,
        args: Option<P<hir::GenericArgs>>,
        is_value: bool,
    ) -> hir::Path {
        self.resolve_hir_path_cb(path, args, is_value,
1581 1582 1583
                                 |resolver, span, error| resolve_error(resolver, span, error))
    }

T
Taylor Cramer 已提交
1584 1585 1586 1587 1588
    fn resolve_str_path(
        &mut self,
        span: Span,
        crate_root: Option<&str>,
        components: &[&str],
1589
        args: Option<P<hir::GenericArgs>>,
T
Taylor Cramer 已提交
1590 1591
        is_value: bool
    ) -> hir::Path {
1592
        let segments = iter::once(keywords::CrateRoot.ident())
T
Taylor Cramer 已提交
1593 1594 1595
            .chain(
                crate_root.into_iter()
                    .chain(components.iter().cloned())
V
Vadim Petrochenkov 已提交
1596
                    .map(Ident::from_str)
1597
            ).map(|i| self.new_ast_path_segment(i)).collect::<Vec<_>>();
T
Taylor Cramer 已提交
1598 1599


1600
        let path = ast::Path {
1601
            span,
1602
            segments,
1603 1604
        };

1605
        self.resolve_hir_path(&path, args, is_value)
1606 1607
    }

M
Manish Goregaokar 已提交
1608 1609 1610 1611
    fn get_resolution(&mut self, id: NodeId) -> Option<PathResolution> {
        self.def_map.get(&id).cloned()
    }

1612 1613 1614 1615
    fn get_import(&mut self, id: NodeId) -> PerNS<Option<PathResolution>> {
        self.import_map.get(&id).cloned().unwrap_or_default()
    }

M
Manish Goregaokar 已提交
1616 1617 1618 1619 1620
    fn definitions(&mut self) -> &mut Definitions {
        &mut self.definitions
    }
}

1621
impl<'a, 'crateloader> Resolver<'a, 'crateloader> {
1622 1623 1624
    /// 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,
1625
    /// just that an error occurred.
M
Manish Goregaokar 已提交
1626 1627
    pub fn resolve_str_path_error(&mut self, span: Span, path_str: &str, is_value: bool)
        -> Result<hir::Path, ()> {
M
Manish Goregaokar 已提交
1628
        use std::iter;
1629
        let mut errored = false;
M
Manish Goregaokar 已提交
1630

1631 1632
        let path = if path_str.starts_with("::") {
            ast::Path {
M
Manish Goregaokar 已提交
1633
                span,
1634 1635 1636 1637 1638 1639
                segments: iter::once(keywords::CrateRoot.ident())
                    .chain({
                        path_str.split("::").skip(1).map(Ident::from_str)
                    })
                    .map(|i| self.new_ast_path_segment(i))
                    .collect(),
M
Manish Goregaokar 已提交
1640 1641
            }
        } else {
1642
            ast::Path {
M
Manish Goregaokar 已提交
1643
                span,
1644 1645 1646 1647 1648
                segments: path_str
                    .split("::")
                    .map(Ident::from_str)
                    .map(|i| self.new_ast_path_segment(i))
                    .collect(),
M
Manish Goregaokar 已提交
1649 1650
            }
        };
1651
        let path = self.resolve_hir_path_cb(&path, None, is_value, |_, _, _| errored = true);
1652 1653 1654 1655 1656 1657 1658 1659
        if errored || path.def == Def::Err {
            Err(())
        } else {
            Ok(path)
        }
    }

    /// resolve_hir_path, but takes a callback in case there was an error
1660 1661 1662 1663 1664 1665 1666
    fn resolve_hir_path_cb<F>(
        &mut self,
        path: &ast::Path,
        args: Option<P<hir::GenericArgs>>,
        is_value: bool,
        error_callback: F,
    ) -> hir::Path
1667 1668
        where F: for<'c, 'b> FnOnce(&'c mut Resolver, Span, ResolutionError<'b>)
    {
1669
        let namespace = if is_value { ValueNS } else { TypeNS };
1670 1671
        let span = path.span;
        let segments = &path.segments;
N
Nick Cameron 已提交
1672
        let path = Segment::from_path(&path);
1673
        // FIXME (Manishearth): Intra doc links won't get warned of epoch changes
1674
        let def = match self.resolve_path(None, &path, Some(namespace), true, span, CrateLint::No) {
1675
            PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
1676
                module.def().unwrap(),
1677
            PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 =>
1678 1679
                path_res.base_def(),
            PathResult::NonModule(..) => {
L
ljedrz 已提交
1680 1681 1682 1683 1684 1685 1686 1687
                if let PathResult::Failed(span, msg, _) = self.resolve_path(
                    None,
                    &path,
                    None,
                    true,
                    span,
                    CrateLint::No,
                ) {
1688
                    error_callback(self, span, ResolutionError::FailedToResolve(&msg));
1689 1690 1691
                }
                Def::Err
            }
1692
            PathResult::Module(ModuleOrUniformRoot::UniformRoot(_)) |
J
Jeffrey Seyfried 已提交
1693
            PathResult::Indeterminate => unreachable!(),
1694
            PathResult::Failed(span, msg, _) => {
1695
                error_callback(self, span, ResolutionError::FailedToResolve(&msg));
1696
                Def::Err
1697
            }
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
        };

        let mut segments: Vec<_> = segments.iter().map(|seg| {
            let mut hir_seg = hir::PathSegment::from_ident(seg.ident);
            hir_seg.def = Some(self.def_map.get(&seg.id).map_or(Def::Err, |p| p.base_def()));
            hir_seg
        }).collect();
        segments.last_mut().unwrap().args = args;
        hir::Path {
            span,
            def,
            segments: segments.into(),
1710 1711
        }
    }
1712 1713 1714 1715 1716 1717

    fn new_ast_path_segment(&self, ident: Ident) -> ast::PathSegment {
        let mut seg = ast::PathSegment::from_ident(ident);
        seg.id = self.session.next_node_id();
        seg
    }
1718 1719
}

1720
impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
1721
    pub fn new(session: &'a Session,
1722
               cstore: &'a CStore,
1723
               krate: &Crate,
1724
               crate_name: &str,
1725
               make_glob_map: MakeGlobMap,
1726
               crate_loader: &'a mut CrateLoader<'crateloader>,
1727
               arenas: &'a ResolverArenas<'a>)
1728
               -> Resolver<'a, 'crateloader> {
1729 1730
        let root_def_id = DefId::local(CRATE_DEF_INDEX);
        let root_module_kind = ModuleKind::Def(Def::Mod(root_def_id), keywords::Invalid.name());
1731
        let graph_root = arenas.alloc_module(ModuleData {
1732
            no_implicit_prelude: attr::contains_name(&krate.attrs, "no_implicit_prelude"),
J
Jeffrey Seyfried 已提交
1733
            ..ModuleData::new(None, root_module_kind, root_def_id, Mark::root(), krate.span)
1734
        });
1735
        let mut module_map = FxHashMap::default();
1736
        module_map.insert(DefId::local(CRATE_DEF_INDEX), graph_root);
K
Kevin Butler 已提交
1737

1738
        let mut definitions = Definitions::new();
J
Jeffrey Seyfried 已提交
1739
        DefCollector::new(&mut definitions, Mark::root())
1740
            .collect_root(crate_name, session.local_crate_disambiguator());
1741

1742 1743 1744
        let mut extern_prelude: FxHashMap<Ident, ExternPreludeEntry> =
            session.opts.externs.iter().map(|kv| (Ident::from_str(kv.0), Default::default()))
                                       .collect();
1745

1746
        if !attr::contains_name(&krate.attrs, "no_core") {
1747
            extern_prelude.insert(Ident::from_str("core"), Default::default());
1748
            if !attr::contains_name(&krate.attrs, "no_std") {
1749
                extern_prelude.insert(Ident::from_str("std"), Default::default());
1750
                if session.rust_2018() {
1751
                    extern_prelude.insert(Ident::from_str("meta"), Default::default());
1752 1753 1754
                }
            }
        }
1755

1756
        let mut invocations = FxHashMap::default();
1757 1758
        invocations.insert(Mark::root(),
                           arenas.alloc_invocation_data(InvocationData::root(graph_root)));
1759

1760
        let mut macro_defs = FxHashMap::default();
1761 1762
        macro_defs.insert(Mark::root(), root_def_id);

K
Kevin Butler 已提交
1763
        Resolver {
1764
            session,
K
Kevin Butler 已提交
1765

1766 1767
            cstore,

1768
            definitions,
1769

K
Kevin Butler 已提交
1770 1771
            // The outermost module has def ID 0; this is not reflected in the
            // AST.
1772
            graph_root,
1773
            prelude: None,
1774
            extern_prelude,
K
Kevin Butler 已提交
1775

1776 1777
            has_self: FxHashSet::default(),
            field_names: FxHashMap::default(),
K
Kevin Butler 已提交
1778

1779
            determined_imports: Vec::new(),
1780
            indeterminate_imports: Vec::new(),
K
Kevin Butler 已提交
1781

1782
            current_module: graph_root,
J
Jeffrey Seyfried 已提交
1783 1784 1785
            ribs: PerNS {
                value_ns: vec![Rib::new(ModuleRibKind(graph_root))],
                type_ns: vec![Rib::new(ModuleRibKind(graph_root))],
1786
                macro_ns: vec![Rib::new(ModuleRibKind(graph_root))],
J
Jeffrey Seyfried 已提交
1787
            },
1788
            label_ribs: Vec::new(),
K
Kevin Butler 已提交
1789 1790 1791

            current_trait_ref: None,
            current_self_type: None,
1792
            current_self_item: None,
K
Kevin Butler 已提交
1793 1794 1795

            primitive_type_table: PrimitiveTypeTable::new(),

1796
            def_map: NodeMap(),
1797
            import_map: NodeMap(),
1798 1799
            freevars: NodeMap(),
            freevars_seen: NodeMap(),
1800
            export_map: FxHashMap::default(),
1801
            trait_map: NodeMap(),
1802
            module_map,
1803
            block_map: NodeMap(),
1804 1805
            extern_module_map: FxHashMap::default(),
            binding_parent_modules: FxHashMap::default(),
K
Kevin Butler 已提交
1806

1807
            make_glob_map: make_glob_map == MakeGlobMap::Yes,
1808
            glob_map: NodeMap(),
G
Garming Sam 已提交
1809

1810
            used_imports: FxHashSet::default(),
S
Seo Sanghyeon 已提交
1811
            maybe_unused_trait_imports: NodeSet(),
1812
            maybe_unused_extern_crates: Vec::new(),
S
Seo Sanghyeon 已提交
1813

1814
            unused_labels: FxHashMap::default(),
1815

1816
            privacy_errors: Vec::new(),
1817
            ambiguity_errors: Vec::new(),
1818
            use_injections: Vec::new(),
1819
            macro_expanded_macro_export_errors: BTreeSet::new(),
1820

1821
            arenas,
1822
            dummy_binding: arenas.alloc_name_binding(NameBinding {
1823
                kind: NameBindingKind::Def(Def::Err, false),
1824
                expansion: Mark::root(),
1825 1826 1827
                span: DUMMY_SP,
                vis: ty::Visibility::Public,
            }),
1828

1829
            crate_loader,
1830 1831 1832 1833 1834
            macro_names: FxHashSet::default(),
            builtin_macros: FxHashMap::default(),
            macro_use_prelude: FxHashMap::default(),
            all_macros: FxHashMap::default(),
            macro_map: FxHashMap::default(),
1835 1836
            invocations,
            macro_defs,
1837 1838
            local_macro_def_scopes: FxHashMap::default(),
            name_already_seen: FxHashMap::default(),
1839
            whitelisted_legacy_custom_derives: Vec::new(),
1840
            potentially_unused_imports: Vec::new(),
1841
            struct_constructors: DefIdMap(),
1842
            found_unresolved_macro: false,
1843
            unused_macros: FxHashSet::default(),
1844
            current_type_ascription: Vec::new(),
1845
            injected_crate: None,
1846 1847 1848
        }
    }

1849
    pub fn arenas() -> ResolverArenas<'a> {
1850
        Default::default()
K
Kevin Butler 已提交
1851
    }
1852

1853
    /// Runs the function on each namespace.
1854 1855 1856
    fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
        f(self, TypeNS);
        f(self, ValueNS);
1857
        f(self, MacroNS);
J
Jeffrey Seyfried 已提交
1858 1859
    }

J
Jeffrey Seyfried 已提交
1860 1861 1862 1863 1864 1865 1866 1867 1868
    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(),
            };
        }
    }

1869 1870
    /// Entry point to crate resolution.
    pub fn resolve_crate(&mut self, krate: &Crate) {
1871
        ImportResolver { resolver: self }.finalize_imports();
1872
        self.current_module = self.graph_root;
1873
        self.finalize_current_module_macro_resolutions();
1874

1875 1876 1877
        visit::walk_crate(self, krate);

        check_unused::check_crate(self, krate);
1878
        self.report_errors(krate);
1879
        self.crate_loader.postprocess(krate);
1880 1881
    }

O
Oliver Schneider 已提交
1882 1883 1884 1885 1886
    fn new_module(
        &self,
        parent: Module<'a>,
        kind: ModuleKind,
        normal_ancestor_id: DefId,
J
Jeffrey Seyfried 已提交
1887
        expansion: Mark,
O
Oliver Schneider 已提交
1888 1889
        span: Span,
    ) -> Module<'a> {
J
Jeffrey Seyfried 已提交
1890 1891
        let module = ModuleData::new(Some(parent), kind, normal_ancestor_id, expansion, span);
        self.arenas.alloc_module(module)
1892 1893
    }

1894
    fn record_use(&mut self, ident: Ident, ns: Namespace, binding: &'a NameBinding<'a>)
1895
                  -> bool /* true if an error was reported */ {
1896
        match binding.kind {
1897
            NameBindingKind::Import { directive, binding, ref used }
J
Jeffrey Seyfried 已提交
1898
                    if !used.get() => {
1899
                used.set(true);
1900
                directive.used.set(true);
1901
                self.used_imports.insert((directive.id, ns));
1902
                self.add_to_glob_map(directive.id, ident);
1903
                self.record_use(ident, ns, binding)
1904 1905
            }
            NameBindingKind::Import { .. } => false,
1906
            NameBindingKind::Ambiguity { b1, b2 } => {
1907
                self.ambiguity_errors.push(AmbiguityError { ident, b1, b2 });
1908
                true
1909 1910
            }
            _ => false
1911
        }
1912
    }
1913

1914
    fn add_to_glob_map(&mut self, id: NodeId, ident: Ident) {
1915
        if self.make_glob_map {
1916
            self.glob_map.entry(id).or_default().insert(ident.name);
1917
        }
1918 1919
    }

1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
    /// 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.
    /// }
    /// ```
1934
    ///
1935 1936
    /// Invariant: This must only be called during main resolution, not during
    /// import resolution.
1937
    fn resolve_ident_in_lexical_scope(&mut self,
1938
                                      mut ident: Ident,
1939
                                      ns: Namespace,
1940
                                      record_used_id: Option<NodeId>,
1941
                                      path_span: Span)
1942
                                      -> Option<LexicalScopeBinding<'a>> {
1943
        let record_used = record_used_id.is_some();
1944
        assert!(ns == TypeNS  || ns == ValueNS);
1945
        if ns == TypeNS {
1946 1947 1948
            ident.span = if ident.name == keywords::SelfType.name() {
                // FIXME(jseyfried) improve `Self` hygiene
                ident.span.with_ctxt(SyntaxContext::empty())
J
Jeffrey Seyfried 已提交
1949
            } else {
1950
                ident.span.modern()
J
Jeffrey Seyfried 已提交
1951
            }
1952 1953
        } else {
            ident = ident.modern_and_legacy();
1954
        }
1955

1956
        // Walk backwards up the ribs in scope.
J
Jeffrey Seyfried 已提交
1957
        let mut module = self.graph_root;
J
Jeffrey Seyfried 已提交
1958 1959
        for i in (0 .. self.ribs[ns].len()).rev() {
            if let Some(def) = self.ribs[ns][i].bindings.get(&ident).cloned() {
1960
                // The ident resolves to a type parameter or local variable.
1961
                return Some(LexicalScopeBinding::Def(
1962
                    self.adjust_local_def(ns, i, def, record_used, path_span)
1963
                ));
1964 1965
            }

J
Jeffrey Seyfried 已提交
1966 1967
            module = match self.ribs[ns][i].kind {
                ModuleRibKind(module) => module,
1968
                MacroDefinition(def) if def == self.macro_def(ident.span.ctxt()) => {
J
Jeffrey Seyfried 已提交
1969 1970
                    // If an invocation of this macro created `ident`, give up on `ident`
                    // and switch to `ident`'s source from the macro definition.
1971
                    ident.span.remove_mark();
J
Jeffrey Seyfried 已提交
1972
                    continue
1973
                }
J
Jeffrey Seyfried 已提交
1974 1975
                _ => continue,
            };
1976

J
Jeffrey Seyfried 已提交
1977
            let item = self.resolve_ident_in_module_unadjusted(
1978 1979 1980 1981 1982 1983
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                record_used,
                path_span,
J
Jeffrey Seyfried 已提交
1984 1985 1986 1987
            );
            if let Ok(binding) = item {
                // The ident resolves to an item.
                return Some(LexicalScopeBinding::Item(binding));
1988
            }
1989

J
Jeffrey Seyfried 已提交
1990 1991 1992 1993 1994 1995
            match module.kind {
                ModuleKind::Block(..) => {}, // We can see through blocks
                _ => break,
            }
        }

1996
        ident.span = ident.span.modern();
1997
        let mut poisoned = None;
J
Jeffrey Seyfried 已提交
1998
        loop {
1999
            let opt_module = if let Some(node_id) = record_used_id {
2000
                self.hygienic_lexical_parent_with_compatibility_fallback(module, &mut ident.span,
2001
                                                                         node_id, &mut poisoned)
2002
            } else {
2003
                self.hygienic_lexical_parent(module, &mut ident.span)
2004 2005
            };
            module = unwrap_or!(opt_module, break);
J
Jeffrey Seyfried 已提交
2006 2007 2008
            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(
2009 2010 2011 2012 2013 2014
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                record_used,
                path_span,
J
Jeffrey Seyfried 已提交
2015 2016 2017 2018
            );
            self.current_module = orig_current_module;

            match result {
2019
                Ok(binding) => {
2020
                    if let Some(node_id) = poisoned {
2021 2022
                        self.session.buffer_lint_with_diagnostic(
                            lint::builtin::PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
2023
                            node_id, ident.span,
2024 2025 2026 2027 2028 2029 2030
                            &format!("cannot find {} `{}` in this scope", ns.descr(), ident),
                            lint::builtin::BuiltinLintDiagnostics::
                                ProcMacroDeriveResolutionFallback(ident.span),
                        );
                    }
                    return Some(LexicalScopeBinding::Item(binding))
                }
2031 2032 2033
                Err(Determined) => continue,
                Err(Undetermined) =>
                    span_bug!(ident.span, "undetermined resolution during main resolution pass"),
J
Jeffrey Seyfried 已提交
2034 2035 2036
            }
        }

2037
        if !module.no_implicit_prelude {
2038
            if ns == TypeNS {
2039
                if let Some(binding) = self.extern_prelude_get(ident, !record_used, false) {
2040 2041
                    return Some(LexicalScopeBinding::Item(binding));
                }
2042
            }
2043 2044 2045 2046 2047
            if ns == TypeNS && is_known_tool(ident.name) {
                let binding = (Def::ToolMod, ty::Visibility::Public,
                               ident.span, Mark::root()).to_name_binding(self.arenas);
                return Some(LexicalScopeBinding::Item(binding));
            }
2048
            if let Some(prelude) = self.prelude {
2049 2050 2051 2052 2053 2054 2055 2056
                if let Ok(binding) = self.resolve_ident_in_module_unadjusted(
                    ModuleOrUniformRoot::Module(prelude),
                    ident,
                    ns,
                    false,
                    false,
                    path_span,
                ) {
2057 2058
                    return Some(LexicalScopeBinding::Item(binding));
                }
J
Jeffrey Seyfried 已提交
2059 2060
            }
        }
2061 2062

        None
J
Jeffrey Seyfried 已提交
2063 2064
    }

2065
    fn hygienic_lexical_parent(&mut self, module: Module<'a>, span: &mut Span)
J
Jeffrey Seyfried 已提交
2066
                               -> Option<Module<'a>> {
2067 2068
        if !module.expansion.is_descendant_of(span.ctxt().outer()) {
            return Some(self.macro_def_scope(span.remove_mark()));
J
Jeffrey Seyfried 已提交
2069 2070 2071 2072 2073 2074
        }

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

2075 2076 2077
        None
    }

2078 2079 2080 2081
    fn hygienic_lexical_parent_with_compatibility_fallback(&mut self, module: Module<'a>,
                                                           span: &mut Span, node_id: NodeId,
                                                           poisoned: &mut Option<NodeId>)
                                                           -> Option<Module<'a>> {
2082
        if let module @ Some(..) = self.hygienic_lexical_parent(module, span) {
2083
            return module;
2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
        }

        // We need to support the next case under a deprecation warning
        // ```
        // struct MyStruct;
        // ---- begin: this comes from a proc macro derive
        // mod implementation_details {
        //     // Note that `MyStruct` is not in scope here.
        //     impl SomeTrait for MyStruct { ... }
        // }
        // ---- end
        // ```
        // So we have to fall back to the module's parent during lexical resolution in this case.
        if let Some(parent) = module.parent {
            // Inner module is inside the macro, parent module is outside of the macro.
            if module.expansion != parent.expansion &&
            module.expansion.is_descendant_of(parent.expansion) {
                // The macro is a proc macro derive
                if module.expansion.looks_like_proc_macro_derive() {
                    if parent.expansion.is_descendant_of(span.ctxt().outer()) {
2104 2105
                        *poisoned = Some(node_id);
                        return module.parent;
2106 2107
                    }
                }
2108
            }
2109
        }
2110

2111
        None
2112 2113
    }

J
Jeffrey Seyfried 已提交
2114
    fn resolve_ident_in_module(&mut self,
2115
                               module: ModuleOrUniformRoot<'a>,
J
Jeffrey Seyfried 已提交
2116 2117 2118 2119 2120
                               mut ident: Ident,
                               ns: Namespace,
                               record_used: bool,
                               span: Span)
                               -> Result<&'a NameBinding<'a>, Determinacy> {
2121
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
2122
        let orig_current_module = self.current_module;
2123 2124 2125 2126
        if let ModuleOrUniformRoot::Module(module) = module {
            if let Some(def) = ident.span.adjust(module.expansion) {
                self.current_module = self.macro_def_scope(def);
            }
J
Jeffrey Seyfried 已提交
2127 2128
        }
        let result = self.resolve_ident_in_module_unadjusted(
2129
            module, ident, ns, false, record_used, span,
J
Jeffrey Seyfried 已提交
2130 2131 2132 2133 2134
        );
        self.current_module = orig_current_module;
        result
    }

2135 2136 2137
    fn resolve_crate_root(&mut self, ident: Ident) -> Module<'a> {
        let mut ctxt = ident.span.ctxt();
        let mark = if ident.name == keywords::DollarCrate.name() {
2138 2139 2140
            // 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.
2141 2142 2143 2144 2145 2146 2147
            // FIXME: This is only a guess and it doesn't work correctly for `macro_rules!`
            // definitions actually produced by `macro` and `macro` definitions produced by
            // `macro_rules!`, but at least such configurations are not stable yet.
            ctxt = ctxt.modern_and_legacy();
            let mut iter = ctxt.marks().into_iter().rev().peekable();
            let mut result = None;
            // Find the last modern mark from the end if it exists.
2148 2149
            while let Some(&(mark, transparency)) = iter.peek() {
                if transparency == Transparency::Opaque {
2150 2151 2152 2153 2154 2155 2156
                    result = Some(mark);
                    iter.next();
                } else {
                    break;
                }
            }
            // Then find the last legacy mark from the end if it exists.
2157 2158
            for (mark, transparency) in iter {
                if transparency == Transparency::SemiTransparent {
2159 2160 2161 2162 2163 2164
                    result = Some(mark);
                } else {
                    break;
                }
            }
            result
2165 2166 2167 2168 2169
        } else {
            ctxt = ctxt.modern();
            ctxt.adjust(Mark::root())
        };
        let module = match mark {
J
Jeffrey Seyfried 已提交
2170 2171 2172 2173 2174 2175 2176 2177
            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);
2178
        while module.span.ctxt().modern() != *ctxt {
J
Jeffrey Seyfried 已提交
2179 2180
            let parent = module.parent.unwrap_or_else(|| self.macro_def_scope(ctxt.remove_mark()));
            module = self.get_module(parent.normal_ancestor_id);
2181
        }
J
Jeffrey Seyfried 已提交
2182
        module
2183 2184
    }

2185 2186
    // AST resolution
    //
2187
    // We maintain a list of value ribs and type ribs.
2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202
    //
    // 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 已提交
2203 2204
    pub fn with_scope<F, T>(&mut self, id: NodeId, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
J
Jorge Aparicio 已提交
2205
    {
2206
        let id = self.definitions.local_def_id(id);
2207 2208
        let module = self.module_map.get(&id).cloned(); // clones a reference
        if let Some(module) = module {
2209
            // Move down in the graph.
2210
            let orig_module = replace(&mut self.current_module, module);
J
Jeffrey Seyfried 已提交
2211 2212
            self.ribs[ValueNS].push(Rib::new(ModuleRibKind(module)));
            self.ribs[TypeNS].push(Rib::new(ModuleRibKind(module)));
2213

2214
            self.finalize_current_module_macro_resolutions();
M
Manish Goregaokar 已提交
2215
            let ret = f(self);
2216

2217
            self.current_module = orig_module;
J
Jeffrey Seyfried 已提交
2218 2219
            self.ribs[ValueNS].pop();
            self.ribs[TypeNS].pop();
M
Manish Goregaokar 已提交
2220
            ret
2221
        } else {
M
Manish Goregaokar 已提交
2222
            f(self)
2223
        }
2224 2225
    }

2226 2227 2228
    /// 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 已提交
2229
    /// Stops after meeting a closure.
2230 2231 2232
    fn search_label<P, R>(&self, mut ident: Ident, pred: P) -> Option<R>
        where P: Fn(&Rib, Ident) -> Option<R>
    {
2233 2234
        for rib in self.label_ribs.iter().rev() {
            match rib.kind {
J
Jeffrey Seyfried 已提交
2235 2236 2237
                NormalRibKind => {}
                // If an invocation of this macro created `ident`, give up on `ident`
                // and switch to `ident`'s source from the macro definition.
2238
                MacroDefinition(def) => {
2239 2240
                    if def == self.macro_def(ident.span.ctxt()) {
                        ident.span.remove_mark();
2241 2242
                    }
                }
2243 2244
                _ => {
                    // Do not resolve labels across function boundary
C
corentih 已提交
2245
                    return None;
2246 2247
                }
            }
2248 2249 2250
            let r = pred(rib, ident);
            if r.is_some() {
                return r;
2251 2252 2253 2254 2255
            }
        }
        None
    }

F
F001 已提交
2256
    fn resolve_adt(&mut self, item: &Item, generics: &Generics) {
2257 2258 2259 2260 2261 2262 2263 2264
        self.with_current_self_item(item, |this| {
            this.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
                let item_def_id = this.definitions.local_def_id(item.id);
                if this.session.features_untracked().self_in_typedefs {
                    this.with_self_rib(Def::SelfTy(None, Some(item_def_id)), |this| {
                        visit::walk_item(this, item);
                    });
                } else {
F
F001 已提交
2265
                    visit::walk_item(this, item);
2266 2267
                }
            });
F
F001 已提交
2268 2269 2270
        });
    }

2271
    fn resolve_item(&mut self, item: &Item) {
2272
        let name = item.ident.name;
C
corentih 已提交
2273
        debug!("(resolving item) resolving {}", name);
2274

2275
        match item.node {
2276
            ItemKind::Ty(_, ref generics) |
2277 2278
            ItemKind::Fn(_, _, ref generics, _) |
            ItemKind::Existential(_, ref generics) => {
2279
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind),
2280 2281 2282 2283 2284 2285
                                             |this| visit::walk_item(this, item));
            }

            ItemKind::Enum(_, ref generics) |
            ItemKind::Struct(_, ref generics) |
            ItemKind::Union(_, ref generics) => {
F
F001 已提交
2286
                self.resolve_adt(item, generics);
2287 2288
            }

V
Vadim Petrochenkov 已提交
2289
            ItemKind::Impl(.., ref generics, ref opt_trait_ref, ref self_type, ref impl_items) =>
2290
                self.resolve_implementation(generics,
2291
                                            opt_trait_ref,
J
Jonas Schievink 已提交
2292
                                            &self_type,
2293
                                            item.id,
2294
                                            impl_items),
2295

2296
            ItemKind::Trait(.., ref generics, ref bounds, ref trait_items) => {
2297
                // Create a new rib for the trait-wide type parameters.
2298
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
2299
                    let local_def_id = this.definitions.local_def_id(item.id);
2300
                    this.with_self_rib(Def::SelfTy(Some(local_def_id), None), |this| {
2301
                        this.visit_generics(generics);
V
varkor 已提交
2302
                        walk_list!(this, visit_param_bound, bounds);
2303 2304

                        for trait_item in trait_items {
2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319
                            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);
                                            });
                                        }
2320
                                    }
2321
                                    TraitItemKind::Method(_, _) => {
2322
                                        visit::walk_trait_item(this, trait_item)
2323 2324
                                    }
                                    TraitItemKind::Type(..) => {
2325
                                        visit::walk_trait_item(this, trait_item)
2326 2327 2328 2329 2330 2331
                                    }
                                    TraitItemKind::Macro(_) => {
                                        panic!("unexpanded macro in resolve!")
                                    }
                                };
                            });
2332 2333
                        }
                    });
2334
                });
2335 2336
            }

A
Alex Burka 已提交
2337 2338 2339 2340 2341 2342
            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);
V
varkor 已提交
2343
                        walk_list!(this, visit_param_bound, bounds);
A
Alex Burka 已提交
2344 2345 2346 2347
                    });
                });
            }

2348
            ItemKind::Mod(_) | ItemKind::ForeignMod(_) => {
2349
                self.with_scope(item.id, |this| {
2350
                    visit::walk_item(this, item);
2351
                });
2352 2353
            }

2354 2355 2356 2357 2358 2359 2360
            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);
                    });
2361
                });
2362
            }
2363

2364
            ItemKind::Use(ref use_tree) => {
2365
                // Imports are resolved as global by default, add starting root segment.
2366
                let path = Path {
2367
                    segments: use_tree.prefix.make_root().into_iter().collect(),
2368 2369
                    span: use_tree.span,
                };
2370
                self.resolve_use_tree(item.id, use_tree.span, item.id, use_tree, &path);
W
we 已提交
2371 2372
            }

2373
            ItemKind::ExternCrate(_) | ItemKind::MacroDef(..) | ItemKind::GlobalAsm(_) => {
2374
                // do nothing, these are just around to be encoded
2375
            }
2376 2377

            ItemKind::Mac(_) => panic!("unexpanded macro in resolve!"),
2378 2379 2380
        }
    }

2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392
    /// 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,
    ) {
2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403
        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),
                };

L
ljedrz 已提交
2404
                if items.is_empty() {
2405
                    // Resolve prefix of an import with empty braces (issue #28388).
2406 2407 2408 2409 2410
                    self.smart_resolve_path_with_crate_lint(
                        id,
                        None,
                        &path,
                        PathSource::ImportPrefix,
2411
                        CrateLint::UsePath { root_id, root_span },
2412
                    );
2413
                } else {
2414
                    for &(ref tree, nested_id) in items {
2415
                        self.resolve_use_tree(root_id, root_span, nested_id, tree, &path);
2416 2417 2418
                    }
                }
            }
2419
            ast::UseTreeKind::Simple(..) => {},
2420 2421 2422 2423
            ast::UseTreeKind::Glob => {},
        }
    }

2424
    fn with_type_parameter_rib<'b, F>(&'b mut self, type_parameters: TypeParameters<'a, 'b>, f: F)
C
corentih 已提交
2425
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2426
    {
2427
        match type_parameters {
2428
            HasTypeParameters(generics, rib_kind) => {
2429
                let mut function_type_rib = Rib::new(rib_kind);
2430
                let mut seen_bindings = FxHashMap::default();
V
varkor 已提交
2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446
                for param in &generics.params {
                    match param.kind {
                        GenericParamKind::Lifetime { .. } => {}
                        GenericParamKind::Type { .. } => {
                            let ident = param.ident.modern();
                            debug!("with_type_parameter_rib: {}", param.id);

                            if seen_bindings.contains_key(&ident) {
                                let span = seen_bindings.get(&ident).unwrap();
                                let err = ResolutionError::NameAlreadyUsedInTypeParameterList(
                                    ident.name,
                                    span,
                                );
                                resolve_error(self, param.ident.span, err);
                            }
                            seen_bindings.entry(ident).or_insert(param.ident.span);
V
varkor 已提交
2447

V
varkor 已提交
2448
                        // Plain insert (no renaming).
2449
                        let def = Def::TyParam(self.definitions.local_def_id(param.id));
V
varkor 已提交
2450 2451 2452
                            function_type_rib.bindings.insert(ident, def);
                            self.record_def(param.id, PathResolution::new(def));
                        }
V
varkor 已提交
2453
                    }
V
varkor 已提交
2454
                }
J
Jeffrey Seyfried 已提交
2455
                self.ribs[TypeNS].push(function_type_rib);
2456 2457
            }

B
Brian Anderson 已提交
2458
            NoTypeParameters => {
2459 2460 2461 2462
                // Nothing to do.
            }
        }

A
Alex Crichton 已提交
2463
        f(self);
2464

J
Jeffrey Seyfried 已提交
2465
        if let HasTypeParameters(..) = type_parameters {
J
Jeffrey Seyfried 已提交
2466
            self.ribs[TypeNS].pop();
2467 2468 2469
        }
    }

C
corentih 已提交
2470 2471
    fn with_label_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2472
    {
2473
        self.label_ribs.push(Rib::new(NormalRibKind));
A
Alex Crichton 已提交
2474
        f(self);
J
Jeffrey Seyfried 已提交
2475
        self.label_ribs.pop();
2476
    }
2477

2478 2479 2480 2481 2482 2483 2484 2485 2486 2487
    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 已提交
2488 2489
    fn with_constant_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2490
    {
J
Jeffrey Seyfried 已提交
2491
        self.ribs[ValueNS].push(Rib::new(ConstantItemRibKind));
2492
        self.label_ribs.push(Rib::new(ConstantItemRibKind));
A
Alex Crichton 已提交
2493
        f(self);
2494
        self.label_ribs.pop();
J
Jeffrey Seyfried 已提交
2495
        self.ribs[ValueNS].pop();
2496 2497
    }

2498 2499
    fn with_current_self_type<T, F>(&mut self, self_type: &Ty, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
J
Jorge Aparicio 已提交
2500
    {
2501 2502 2503 2504 2505 2506 2507
        // 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
    }

2508 2509 2510 2511 2512 2513 2514 2515 2516
    fn with_current_self_item<T, F>(&mut self, self_item: &Item, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
    {
        let previous_value = replace(&mut self.current_self_item, Some(self_item.id));
        let result = f(self);
        self.current_self_item = previous_value;
        result
    }

2517
    /// This is called to resolve a trait reference from an `impl` (i.e. `impl Trait for Foo`)
2518
    fn with_optional_trait_ref<T, F>(&mut self, opt_trait_ref: Option<&TraitRef>, f: F) -> T
2519
        where F: FnOnce(&mut Resolver, Option<DefId>) -> T
J
Jorge Aparicio 已提交
2520
    {
2521
        let mut new_val = None;
2522
        let mut new_id = None;
E
Eduard Burtescu 已提交
2523
        if let Some(trait_ref) = opt_trait_ref {
N
Nick Cameron 已提交
2524
            let path: Vec<_> = Segment::from_path(&trait_ref.path);
2525 2526 2527 2528 2529
            let def = self.smart_resolve_path_fragment(
                trait_ref.ref_id,
                None,
                &path,
                trait_ref.path.span,
2530 2531
                PathSource::Trait(AliasPossibility::No),
                CrateLint::SimplePath(trait_ref.ref_id),
2532
            ).base_def();
2533 2534
            if def != Def::Err {
                new_id = Some(def.def_id());
2535
                let span = trait_ref.path.span;
2536 2537 2538 2539 2540 2541 2542 2543 2544 2545
                if let PathResult::Module(ModuleOrUniformRoot::Module(module)) =
                    self.resolve_path(
                        None,
                        &path,
                        None,
                        false,
                        span,
                        CrateLint::SimplePath(trait_ref.ref_id),
                    )
                {
2546 2547
                    new_val = Some((module, trait_ref.clone()));
                }
2548
            }
2549
        }
2550
        let original_trait_ref = replace(&mut self.current_trait_ref, new_val);
2551
        let result = f(self, new_id);
2552 2553 2554 2555
        self.current_trait_ref = original_trait_ref;
        result
    }

2556 2557 2558 2559 2560 2561
    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....)
2562
        self_type_rib.bindings.insert(keywords::SelfType.ident(), self_def);
J
Jeffrey Seyfried 已提交
2563
        self.ribs[TypeNS].push(self_type_rib);
2564
        f(self);
J
Jeffrey Seyfried 已提交
2565
        self.ribs[TypeNS].pop();
2566 2567
    }

F
F001 已提交
2568
    fn with_self_struct_ctor_rib<F>(&mut self, impl_id: DefId, f: F)
F
F001 已提交
2569 2570
        where F: FnOnce(&mut Resolver)
    {
F
F001 已提交
2571 2572 2573 2574 2575 2576
        let self_def = Def::SelfCtor(impl_id);
        let mut self_type_rib = Rib::new(NormalRibKind);
        self_type_rib.bindings.insert(keywords::SelfType.ident(), self_def);
        self.ribs[ValueNS].push(self_type_rib);
        f(self);
        self.ribs[ValueNS].pop();
F
F001 已提交
2577 2578
    }

F
Felix S. Klock II 已提交
2579
    fn resolve_implementation(&mut self,
2580 2581 2582
                              generics: &Generics,
                              opt_trait_reference: &Option<TraitRef>,
                              self_type: &Ty,
2583
                              item_id: NodeId,
2584
                              impl_items: &[ImplItem]) {
2585
        // If applicable, create a rib for the type parameters.
2586
        self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
2587 2588 2589 2590 2591 2592 2593
            // 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() {
2594
                            // Resolve type arguments in the trait path.
2595 2596 2597 2598 2599 2600
                            visit::walk_trait_ref(this, trait_ref);
                        }
                        // Resolve the self type.
                        this.visit_ty(self_type);
                        // Resolve the type parameters.
                        this.visit_generics(generics);
2601
                        // Resolve the items within the impl.
2602
                        this.with_current_self_type(self_type, |this| {
F
F001 已提交
2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622
                            this.with_self_struct_ctor_rib(item_def_id, |this| {
                                for impl_item in impl_items {
                                    this.resolve_visibility(&impl_item.vis);

                                    // 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)
                                                );
O
Oliver Schneider 已提交
2623
                                            }
F
F001 已提交
2624 2625 2626 2627 2628 2629 2630 2631
                                            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));

F
F001 已提交
2632
                                                visit::walk_impl_item(this, impl_item);
O
Oliver Schneider 已提交
2633
                                            }
F
F001 已提交
2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657
                                            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));

                                                this.visit_ty(ty);
                                            }
                                            ImplItemKind::Existential(ref bounds) => {
                                                // 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));

                                                for bound in bounds {
                                                    this.visit_param_bound(bound);
                                                }
                                            }
                                            ImplItemKind::Macro(_) =>
                                                panic!("unexpanded macro in resolve!"),
O
Oliver Schneider 已提交
2658
                                        }
F
F001 已提交
2659 2660 2661
                                    });
                                }
                            });
2662
                        });
2663
                    });
2664
                });
2665
            });
2666
        });
2667 2668
    }

2669
    fn check_trait_item<F>(&mut self, ident: Ident, ns: Namespace, span: Span, err: F)
C
corentih 已提交
2670 2671 2672 2673
        where F: FnOnce(Name, &str) -> ResolutionError
    {
        // If there is a TraitRef in scope for an impl, then the method must be in the
        // trait.
2674
        if let Some((module, _)) = self.current_trait_ref {
2675 2676 2677 2678 2679 2680 2681
            if self.resolve_ident_in_module(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                span,
            ).is_err() {
2682 2683
                let path = &self.current_trait_ref.as_ref().unwrap().1.path;
                resolve_error(self, span, err(ident.name, &path_names_to_string(path)));
2684 2685 2686 2687
            }
        }
    }

E
Eduard Burtescu 已提交
2688
    fn resolve_local(&mut self, local: &Local) {
2689
        // Resolve the type.
2690
        walk_list!(self, visit_ty, &local.ty);
2691

2692
        // Resolve the initializer.
2693
        walk_list!(self, visit_expr, &local.init);
2694 2695

        // Resolve the pattern.
2696
        self.resolve_pattern(&local.pat, PatternSource::Let, &mut FxHashMap::default());
2697 2698
    }

J
John Clements 已提交
2699 2700 2701 2702
    // 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 已提交
2703
    fn binding_mode_map(&mut self, pat: &Pat) -> BindingMap {
2704
        let mut binding_map = FxHashMap::default();
2705 2706 2707

        pat.walk(&mut |pat| {
            if let PatKind::Ident(binding_mode, ident, ref sub_pat) = pat.node {
2708 2709
                if sub_pat.is_some() || match self.def_map.get(&pat.id).map(|res| res.base_def()) {
                    Some(Def::Local(..)) => true,
2710 2711 2712
                    _ => false,
                } {
                    let binding_info = BindingInfo { span: ident.span, binding_mode: binding_mode };
V
Vadim Petrochenkov 已提交
2713
                    binding_map.insert(ident, binding_info);
2714 2715 2716
                }
            }
            true
2717
        });
2718 2719

        binding_map
2720 2721
    }

J
John Clements 已提交
2722 2723
    // check that all of the arms in an or-pattern have exactly the
    // same set of bindings, with the same binding modes for each.
2724 2725
    fn check_consistent_bindings(&mut self, pats: &[P<Pat>]) {
        if pats.is_empty() {
C
corentih 已提交
2726
            return;
2727
        }
2728

2729 2730
        let mut missing_vars = FxHashMap::default();
        let mut inconsistent_vars = FxHashMap::default();
2731
        for (i, p) in pats.iter().enumerate() {
J
Jonas Schievink 已提交
2732
            let map_i = self.binding_mode_map(&p);
2733

2734
            for (j, q) in pats.iter().enumerate() {
2735 2736 2737 2738 2739 2740
                if i == j {
                    continue;
                }

                let map_j = self.binding_mode_map(&q);
                for (&key, &binding_i) in &map_i {
L
ljedrz 已提交
2741
                    if map_j.is_empty() {                   // Account for missing bindings when
2742 2743 2744 2745
                        let binding_error = missing_vars    // map_j has none.
                            .entry(key.name)
                            .or_insert(BindingError {
                                name: key.name,
2746 2747
                                origin: BTreeSet::new(),
                                target: BTreeSet::new(),
2748 2749 2750
                            });
                        binding_error.origin.insert(binding_i.span);
                        binding_error.target.insert(q.span);
C
corentih 已提交
2751
                    }
2752 2753 2754 2755 2756 2757 2758
                    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,
2759 2760
                                        origin: BTreeSet::new(),
                                        target: BTreeSet::new(),
2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771
                                    });
                                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 已提交
2772
                        }
2773
                    }
2774 2775
                }
            }
2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787
        }
        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));
2788
        }
2789 2790
    }

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

2794
        let mut bindings_list = FxHashMap::default();
2795
        for pattern in &arm.pats {
2796
            self.resolve_pattern(&pattern, PatternSource::Match, &mut bindings_list);
2797 2798
        }

2799 2800
        // This has to happen *after* we determine which pat_idents are variants
        self.check_consistent_bindings(&arm.pats);
2801

L
ljedrz 已提交
2802 2803
        if let Some(ast::Guard::If(ref expr)) = arm.guard {
            self.visit_expr(expr)
F
F001 已提交
2804
        }
J
Jonas Schievink 已提交
2805
        self.visit_expr(&arm.body);
2806

J
Jeffrey Seyfried 已提交
2807
        self.ribs[ValueNS].pop();
2808 2809
    }

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

2816
        let mut num_macro_definition_ribs = 0;
2817 2818
        if let Some(anonymous_module) = anonymous_module {
            debug!("(resolving block) found anonymous module, moving down");
J
Jeffrey Seyfried 已提交
2819 2820
            self.ribs[ValueNS].push(Rib::new(ModuleRibKind(anonymous_module)));
            self.ribs[TypeNS].push(Rib::new(ModuleRibKind(anonymous_module)));
2821
            self.current_module = anonymous_module;
2822
            self.finalize_current_module_macro_resolutions();
2823
        } else {
J
Jeffrey Seyfried 已提交
2824
            self.ribs[ValueNS].push(Rib::new(NormalRibKind));
2825 2826 2827
        }

        // Descend into the block.
2828
        for stmt in &block.stmts {
2829
            if let ast::StmtKind::Item(ref item) = stmt.node {
2830
                if let ast::ItemKind::MacroDef(..) = item.node {
2831
                    num_macro_definition_ribs += 1;
2832 2833 2834
                    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)));
2835 2836 2837 2838 2839
                }
            }

            self.visit_stmt(stmt);
        }
2840 2841

        // Move back up.
J
Jeffrey Seyfried 已提交
2842
        self.current_module = orig_module;
2843
        for _ in 0 .. num_macro_definition_ribs {
J
Jeffrey Seyfried 已提交
2844
            self.ribs[ValueNS].pop();
2845
            self.label_ribs.pop();
2846
        }
J
Jeffrey Seyfried 已提交
2847
        self.ribs[ValueNS].pop();
2848
        if anonymous_module.is_some() {
J
Jeffrey Seyfried 已提交
2849
            self.ribs[TypeNS].pop();
G
Garming Sam 已提交
2850
        }
2851
        debug!("(resolving block) leaving block");
2852 2853
    }

2854
    fn fresh_binding(&mut self,
V
Vadim Petrochenkov 已提交
2855
                     ident: Ident,
2856 2857 2858
                     pat_id: NodeId,
                     outer_pat_id: NodeId,
                     pat_src: PatternSource,
2859
                     bindings: &mut FxHashMap<Ident, NodeId>)
2860 2861
                     -> PathResolution {
        // Add the binding to the local ribs, if it
2862 2863
        // doesn't already exist in the bindings map. (We
        // must not add it if it's in the bindings map
2864 2865
        // because that breaks the assumptions later
        // passes make about or-patterns.)
2866
        let ident = ident.modern_and_legacy();
2867
        let mut def = Def::Local(pat_id);
V
Vadim Petrochenkov 已提交
2868
        match bindings.get(&ident).cloned() {
2869 2870 2871 2872 2873 2874
            Some(id) if id == outer_pat_id => {
                // `Variant(a, a)`, error
                resolve_error(
                    self,
                    ident.span,
                    ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(
V
Vadim Petrochenkov 已提交
2875
                        &ident.as_str())
2876 2877 2878 2879 2880 2881 2882 2883
                );
            }
            Some(..) if pat_src == PatternSource::FnParam => {
                // `fn f(a: u8, a: u8)`, error
                resolve_error(
                    self,
                    ident.span,
                    ResolutionError::IdentifierBoundMoreThanOnceInParameterList(
V
Vadim Petrochenkov 已提交
2884
                        &ident.as_str())
2885 2886
                );
            }
2887 2888 2889
            Some(..) if pat_src == PatternSource::Match ||
                        pat_src == PatternSource::IfLet ||
                        pat_src == PatternSource::WhileLet => {
2890 2891
                // `Variant1(a) | Variant2(a)`, ok
                // Reuse definition from the first `a`.
V
Vadim Petrochenkov 已提交
2892
                def = self.ribs[ValueNS].last_mut().unwrap().bindings[&ident];
2893 2894 2895 2896 2897 2898
            }
            Some(..) => {
                span_bug!(ident.span, "two bindings with the same name from \
                                       unexpected pattern source {:?}", pat_src);
            }
            None => {
2899
                // A completely fresh binding, add to the lists if it's valid.
V
Vadim Petrochenkov 已提交
2900 2901 2902
                if ident.name != keywords::Invalid.name() {
                    bindings.insert(ident, outer_pat_id);
                    self.ribs[ValueNS].last_mut().unwrap().bindings.insert(ident, def);
2903
                }
2904
            }
2905
        }
2906

2907
        PathResolution::new(def)
2908
    }
2909

2910 2911 2912 2913 2914
    fn resolve_pattern(&mut self,
                       pat: &Pat,
                       pat_src: PatternSource,
                       // Maps idents to the node ID for the
                       // outermost pattern that binds them.
2915
                       bindings: &mut FxHashMap<Ident, NodeId>) {
2916
        // Visit all direct subpatterns of this pattern.
2917 2918 2919
        let outer_pat_id = pat.id;
        pat.walk(&mut |pat| {
            match pat.node {
V
Vadim Petrochenkov 已提交
2920
                PatKind::Ident(bmode, ident, ref opt_pat) => {
2921 2922
                    // First try to resolve the identifier as some existing
                    // entity, then fall back to a fresh binding.
V
Vadim Petrochenkov 已提交
2923
                    let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS,
2924
                                                                      None, pat.span)
2925
                                      .and_then(LexicalScopeBinding::item);
2926
                    let resolution = binding.map(NameBinding::def).and_then(|def| {
2927 2928
                        let is_syntactic_ambiguity = opt_pat.is_none() &&
                            bmode == BindingMode::ByValue(Mutability::Immutable);
2929
                        match def {
2930 2931
                            Def::StructCtor(_, CtorKind::Const) |
                            Def::VariantCtor(_, CtorKind::Const) |
2932 2933 2934
                            Def::Const(..) if is_syntactic_ambiguity => {
                                // Disambiguate in favor of a unit struct/variant
                                // or constant pattern.
2935
                                self.record_use(ident, ValueNS, binding.unwrap());
2936
                                Some(PathResolution::new(def))
2937
                            }
2938
                            Def::StructCtor(..) | Def::VariantCtor(..) |
2939
                            Def::Const(..) | Def::Static(..) => {
2940 2941 2942 2943 2944
                                // 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.
2945
                                resolve_error(
2946
                                    self,
2947 2948
                                    ident.span,
                                    ResolutionError::BindingShadowsSomethingUnacceptable(
V
Vadim Petrochenkov 已提交
2949
                                        pat_src.descr(), ident.name, binding.unwrap())
2950
                                );
2951
                                None
2952
                            }
2953
                            Def::Fn(..) | Def::Err => {
2954 2955
                                // These entities are explicitly allowed
                                // to be shadowed by fresh bindings.
2956
                                None
2957 2958 2959
                            }
                            def => {
                                span_bug!(ident.span, "unexpected definition for an \
2960
                                                       identifier in pattern: {:?}", def);
2961
                            }
2962
                        }
2963
                    }).unwrap_or_else(|| {
2964
                        self.fresh_binding(ident, pat.id, outer_pat_id, pat_src, bindings)
2965
                    });
2966 2967

                    self.record_def(pat.id, resolution);
2968 2969
                }

2970
                PatKind::TupleStruct(ref path, ..) => {
2971
                    self.smart_resolve_path(pat.id, None, path, PathSource::TupleStruct);
2972 2973
                }

2974
                PatKind::Path(ref qself, ref path) => {
2975
                    self.smart_resolve_path(pat.id, qself.as_ref(), path, PathSource::Pat);
2976 2977
                }

V
Vadim Petrochenkov 已提交
2978
                PatKind::Struct(ref path, ..) => {
2979
                    self.smart_resolve_path(pat.id, None, path, PathSource::Struct);
2980
                }
2981 2982

                _ => {}
2983
            }
2984
            true
2985
        });
2986

2987
        visit::walk_pat(self, pat);
2988 2989
    }

2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000
    // 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 {
3001 3002 3003 3004 3005 3006
        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
T
Takanori Ishibashi 已提交
3007
    /// absolute paths to `crate`, so that it knows how to frame the
3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019
    /// 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 {
N
Nick Cameron 已提交
3020 3021 3022 3023 3024 3025 3026 3027
        self.smart_resolve_path_fragment(
            id,
            qself,
            &Segment::from_path(path),
            path.span,
            source,
            crate_lint,
        )
3028 3029 3030
    }

    fn smart_resolve_path_fragment(&mut self,
3031
                                   id: NodeId,
3032
                                   qself: Option<&QSelf>,
N
Nick Cameron 已提交
3033
                                   path: &[Segment],
3034
                                   span: Span,
3035 3036
                                   source: PathSource,
                                   crate_lint: CrateLint)
3037
                                   -> PathResolution {
N
Nick Cameron 已提交
3038
        let ident_span = path.last().map_or(span, |ident| ident.ident.span);
3039 3040
        let ns = source.namespace();
        let is_expected = &|def| source.is_expected(def);
3041
        let is_enum_variant = &|def| if let Def::Variant(..) = def { true } else { false };
3042 3043 3044 3045 3046

        // 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();
3047
            let path_str = Segment::names_to_string(path);
N
Nick Cameron 已提交
3048
            let item_str = path.last().unwrap().ident;
3049
            let code = source.error_code(def.is_some());
3050
            let (base_msg, fallback_label, base_span) = if let Some(def) = def {
3051
                (format!("expected {}, found {} `{}`", expected, def.kind_name(), path_str),
3052 3053
                 format!("not a {}", expected),
                 span)
3054
            } else {
N
Nick Cameron 已提交
3055
                let item_span = path.last().unwrap().ident.span;
3056
                let (mod_prefix, mod_str) = if path.len() == 1 {
L
ljedrz 已提交
3057
                    (String::new(), "this scope".to_string())
N
Nick Cameron 已提交
3058
                } else if path.len() == 2 && path[0].ident.name == keywords::CrateRoot.name() {
L
ljedrz 已提交
3059
                    (String::new(), "the crate root".to_string())
3060 3061
                } else {
                    let mod_path = &path[..path.len() - 1];
3062
                    let mod_prefix = match this.resolve_path(None, mod_path, Some(TypeNS),
3063
                                                             false, span, CrateLint::No) {
3064 3065
                        PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                            module.def(),
3066
                        _ => None,
L
ljedrz 已提交
3067
                    }.map_or(String::new(), |def| format!("{} ", def.kind_name()));
N
Nick Cameron 已提交
3068
                    (mod_prefix, format!("`{}`", Segment::names_to_string(mod_path)))
3069 3070
                };
                (format!("cannot find {} `{}` in {}{}", expected, item_str, mod_prefix, mod_str),
3071 3072
                 format!("not found in {}", mod_str),
                 item_span)
3073
            };
3074
            let code = DiagnosticId::Error(code.into());
3075
            let mut err = this.session.struct_span_err_with_code(base_span, &base_msg, code);
3076

C
csmoe 已提交
3077
            // Emit help message for fake-self from other languages like `this`(javascript)
L
ljedrz 已提交
3078
            if ["this", "my"].contains(&&*item_str.as_str())
N
Nick Cameron 已提交
3079
                && this.self_value_is_available(path[0].ident.span, span) {
C
csmoe 已提交
3080 3081 3082 3083
                err.span_suggestion_with_applicability(
                    span,
                    "did you mean",
                    "self".to_string(),
C
csmoe 已提交
3084
                    Applicability::MaybeIncorrect,
C
csmoe 已提交
3085 3086 3087
                );
            }

3088 3089 3090
            // Emit special messages for unresolved `Self` and `self`.
            if is_self_type(path, ns) {
                __diagnostic_used!(E0411);
3091
                err.code(DiagnosticId::Error("E0411".into()));
A
Alexander Regueiro 已提交
3092 3093 3094 3095 3096 3097
                let available_in = if this.session.features_untracked().self_in_typedefs {
                    "impls, traits, and type definitions"
                } else {
                    "traits and impls"
                };
                err.span_label(span, format!("`Self` is only available in {}", available_in));
3098 3099 3100 3101
                if this.current_self_item.is_some() && nightly_options::is_nightly_build() {
                    err.help("add #![feature(self_in_typedefs)] to the crate attributes \
                              to enable");
                }
3102
                return (err, Vec::new());
3103 3104 3105
            }
            if is_self_value(path, ns) {
                __diagnostic_used!(E0424);
3106
                err.code(DiagnosticId::Error("E0424".into()));
J
Julian Kulesh 已提交
3107 3108
                err.span_label(span, format!("`self` value is a keyword \
                                               only available in \
3109
                                               methods with `self` parameter"));
3110
                return (err, Vec::new());
3111 3112 3113
            }

            // Try to lookup the name in more relaxed fashion for better error reporting.
N
Nick Cameron 已提交
3114
            let ident = path.last().unwrap().ident;
V
Vadim Petrochenkov 已提交
3115
            let candidates = this.lookup_import_candidates(ident.name, ns, is_expected);
3116
            if candidates.is_empty() && is_expected(Def::Enum(DefId::local(CRATE_DEF_INDEX))) {
3117
                let enum_candidates =
V
Vadim Petrochenkov 已提交
3118
                    this.lookup_import_candidates(ident.name, ns, is_enum_variant);
E
Esteban Küber 已提交
3119 3120 3121 3122
                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 {
V
Vadim Petrochenkov 已提交
3123
                    if sp.is_dummy() {
3124 3125 3126 3127
                        let msg = format!("there is an enum variant `{}`, \
                                        try using `{}`?",
                                        variant_path,
                                        enum_path);
3128 3129
                        err.help(&msg);
                    } else {
3130 3131 3132 3133 3134 3135
                        err.span_suggestion_with_applicability(
                            span,
                            "you can try using the variant's enum",
                            enum_path,
                            Applicability::MachineApplicable,
                        );
3136 3137
                    }
                }
3138
            }
3139
            if path.len() == 1 && this.self_type_is_available(span) {
V
Vadim Petrochenkov 已提交
3140
                if let Some(candidate) = this.lookup_assoc_candidate(ident, ns, is_expected) {
N
Nick Cameron 已提交
3141
                    let self_is_available = this.self_value_is_available(path[0].ident.span, span);
3142 3143
                    match candidate {
                        AssocSuggestion::Field => {
3144 3145 3146 3147 3148 3149
                            err.span_suggestion_with_applicability(
                                span,
                                "try",
                                format!("self.{}", path_str),
                                Applicability::MachineApplicable,
                            );
3150
                            if !self_is_available {
J
Julian Kulesh 已提交
3151 3152
                                err.span_label(span, format!("`self` value is a keyword \
                                                               only available in \
3153 3154 3155 3156
                                                               methods with `self` parameter"));
                            }
                        }
                        AssocSuggestion::MethodWithSelf if self_is_available => {
3157 3158 3159 3160 3161 3162
                            err.span_suggestion_with_applicability(
                                span,
                                "try",
                                format!("self.{}", path_str),
                                Applicability::MachineApplicable,
                            );
3163 3164
                        }
                        AssocSuggestion::MethodWithSelf | AssocSuggestion::AssocItem => {
3165 3166 3167 3168 3169 3170
                            err.span_suggestion_with_applicability(
                                span,
                                "try",
                                format!("Self::{}", path_str),
                                Applicability::MachineApplicable,
                            );
3171 3172
                        }
                    }
3173
                    return (err, candidates);
3174 3175 3176
                }
            }

3177 3178 3179
            let mut levenshtein_worked = false;

            // Try Levenshtein.
3180
            if let Some(candidate) = this.lookup_typo_candidate(path, ns, is_expected, span) {
3181
                err.span_label(ident_span, format!("did you mean `{}`?", candidate));
3182 3183 3184
                levenshtein_worked = true;
            }

3185 3186 3187 3188
            // Try context dependent help if relaxed lookup didn't work.
            if let Some(def) = def {
                match (def, source) {
                    (Def::Macro(..), _) => {
3189
                        err.span_label(span, format!("did you mean `{}!(...)`?", path_str));
3190
                        return (err, candidates);
3191
                    }
A
Alex Burka 已提交
3192
                    (Def::TyAlias(..), PathSource::Trait(_)) => {
3193
                        err.span_label(span, "type aliases cannot be used for traits");
3194
                        return (err, candidates);
3195
                    }
3196
                    (Def::Mod(..), PathSource::Expr(Some(parent))) => match parent.node {
3197
                        ExprKind::Field(_, ident) => {
3198
                            err.span_label(parent.span, format!("did you mean `{}::{}`?",
V
Vadim Petrochenkov 已提交
3199
                                                                 path_str, ident));
3200
                            return (err, candidates);
3201
                        }
3202
                        ExprKind::MethodCall(ref segment, ..) => {
3203
                            err.span_label(parent.span, format!("did you mean `{}::{}(...)`?",
3204
                                                                 path_str, segment.ident));
3205
                            return (err, candidates);
3206 3207 3208
                        }
                        _ => {}
                    },
3209 3210
                    (Def::Enum(..), PathSource::TupleStruct)
                        | (Def::Enum(..), PathSource::Expr(..))  => {
3211 3212 3213 3214
                        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()
3215 3216
                                    .map(|suggestion| path_names_to_string(suggestion))
                                    .map(|suggestion| format!("- `{}`", suggestion))
3217 3218 3219 3220 3221 3222 3223 3224
                                    .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 已提交
3225
                    (Def::Struct(def_id), _) if ns == ValueNS => {
3226 3227 3228 3229 3230 3231
                        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"));
3232
                            }
3233
                        } else {
3234 3235 3236 3237
                            // 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 `{`.
3238
                            let sm = this.session.source_map();
3239 3240
                            let mut sp = span;
                            loop {
3241 3242
                                sp = sm.next_point(sp);
                                match sm.span_to_snippet(sp) {
3243 3244 3245 3246 3247 3248 3249 3250
                                    Ok(ref snippet) => {
                                        if snippet.chars().any(|c| { !c.is_whitespace() }) {
                                            break;
                                        }
                                    }
                                    _ => break,
                                }
                            }
3251
                            let followed_by_brace = match sm.span_to_snippet(sp) {
3252 3253 3254
                                Ok(ref snippet) if snippet == "{" => true,
                                _ => false,
                            };
3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295
                            match source {
                                PathSource::Expr(Some(parent)) => {
                                    match parent.node {
                                        ExprKind::MethodCall(ref path_assignment, _)  => {
                                            err.span_suggestion_with_applicability(
                                                sm.start_point(parent.span)
                                                  .to(path_assignment.ident.span),
                                                "use `::` to access an associated function",
                                                format!("{}::{}",
                                                        path_str,
                                                        path_assignment.ident),
                                                Applicability::MaybeIncorrect
                                            );
                                            return (err, candidates);
                                        },
                                        _ => {
                                            err.span_label(
                                                span,
                                                format!("did you mean `{} {{ /* fields */ }}`?",
                                                        path_str),
                                            );
                                            return (err, candidates);
                                        },
                                    }
                                },
                                PathSource::Expr(None) if followed_by_brace == true => {
                                    err.span_label(
                                        span,
                                        format!("did you mean `({} {{ /* fields */ }})`?",
                                                path_str),
                                    );
                                    return (err, candidates);
                                },
                                _ => {
                                    err.span_label(
                                        span,
                                        format!("did you mean `{} {{ /* fields */ }}`?",
                                                path_str),
                                    );
                                    return (err, candidates);
                                },
3296
                            }
3297
                        }
3298
                        return (err, candidates);
3299
                    }
3300 3301 3302
                    (Def::Union(..), _) |
                    (Def::Variant(..), _) |
                    (Def::VariantCtor(_, CtorKind::Fictive), _) if ns == ValueNS => {
3303
                        err.span_label(span, format!("did you mean `{} {{ /* fields */ }}`?",
3304
                                                     path_str));
3305
                        return (err, candidates);
3306
                    }
E
Esteban Küber 已提交
3307
                    (Def::SelfTy(..), _) if ns == ValueNS => {
3308
                        err.span_label(span, fallback_label);
E
Esteban Küber 已提交
3309 3310
                        err.note("can't use `Self` as a constructor, you must use the \
                                  implemented struct");
3311
                        return (err, candidates);
3312
                    }
3313
                    (Def::TyAlias(_), _) | (Def::AssociatedTy(..), _) if ns == ValueNS => {
E
Esteban Küber 已提交
3314
                        err.note("can't use a type alias as a constructor");
3315
                        return (err, candidates);
E
Esteban Küber 已提交
3316
                    }
3317 3318 3319 3320
                    _ => {}
                }
            }

3321
            // Fallback label.
3322
            if !levenshtein_worked {
3323
                err.span_label(base_span, fallback_label);
3324
                this.type_ascription_suggestion(&mut err, base_span);
3325
            }
3326
            (err, candidates)
3327 3328
        };
        let report_errors = |this: &mut Self, def: Option<Def>| {
3329 3330 3331 3332 3333
            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 });
3334 3335 3336
            err_path_resolution()
        };

3337 3338 3339 3340 3341 3342 3343 3344 3345 3346
        let resolution = match self.resolve_qpath_anywhere(
            id,
            qself,
            path,
            ns,
            span,
            source.defer_to_typeck(),
            source.global_by_default(),
            crate_lint,
        ) {
3347 3348
            Some(resolution) if resolution.unresolved_segments() == 0 => {
                if is_expected(resolution.base_def()) || resolution.base_def() == Def::Err {
3349 3350
                    resolution
                } else {
3351 3352 3353
                    // Add a temporary hack to smooth the transition to new struct ctor
                    // visibility rules. See #38932 for more details.
                    let mut res = None;
3354
                    if let Def::Struct(def_id) = resolution.base_def() {
3355
                        if let Some((ctor_def, ctor_vis))
3356
                                = self.struct_constructors.get(&def_id).cloned() {
3357 3358
                            if is_expected(ctor_def) && self.is_accessible(ctor_vis) {
                                let lint = lint::builtin::LEGACY_CONSTRUCTOR_VISIBILITY;
3359
                                self.session.buffer_lint(lint, id, span,
3360
                                    "private struct constructors are not usable through \
3361
                                     re-exports in outer modules",
3362
                                );
3363 3364 3365 3366 3367
                                res = Some(PathResolution::new(ctor_def));
                            }
                        }
                    }

3368
                    res.unwrap_or_else(|| report_errors(self, Some(resolution.base_def())))
3369 3370 3371 3372 3373 3374 3375
                }
            }
            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 {
N
Nick Cameron 已提交
3376
                    let item_name = path.last().unwrap().ident;
3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391
                    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
    }

3392 3393 3394 3395
    fn type_ascription_suggestion(&self,
                                  err: &mut DiagnosticBuilder,
                                  base_span: Span) {
        debug!("type_ascription_suggetion {:?}", base_span);
D
Donato Sciarra 已提交
3396
        let cm = self.session.source_map();
3397 3398 3399 3400
        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
3401 3402
                sp = cm.next_point(sp);
                if let Ok(snippet) = cm.span_to_snippet(sp.to(cm.next_point(sp))) {
3403
                    debug!("snippet {:?}", snippet);
3404 3405
                    let line_sp = cm.lookup_char_pos(sp.hi()).line;
                    let line_base_sp = cm.lookup_char_pos(base_span.lo()).line;
3406 3407 3408 3409 3410
                    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 {
3411
                            err.span_suggestion_short_with_applicability(
V
Vitaly _Vi Shukela 已提交
3412 3413 3414 3415 3416
                                sp,
                                "did you mean to use `;` here instead?",
                                ";".to_string(),
                                Applicability::MaybeIncorrect,
                            );
3417 3418
                        }
                        break;
L
ljedrz 已提交
3419
                    } else if !snippet.trim().is_empty() {
3420 3421 3422 3423 3424 3425 3426 3427 3428 3429
                        debug!("tried to find type ascription `:` token, couldn't find it");
                        break;
                    }
                } else {
                    break;
                }
            }
        }
    }

3430 3431
    fn self_type_is_available(&mut self, span: Span) -> bool {
        let binding = self.resolve_ident_in_lexical_scope(keywords::SelfType.ident(),
3432
                                                          TypeNS, None, span);
3433 3434 3435
        if let Some(LexicalScopeBinding::Def(def)) = binding { def != Def::Err } else { false }
    }

3436 3437
    fn self_value_is_available(&mut self, self_span: Span, path_span: Span) -> bool {
        let ident = Ident::new(keywords::SelfValue.name(), self_span);
3438
        let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS, None, path_span);
3439 3440 3441 3442 3443 3444 3445
        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>,
N
Nick Cameron 已提交
3446
                              path: &[Segment],
3447 3448 3449
                              primary_ns: Namespace,
                              span: Span,
                              defer_to_typeck: bool,
3450 3451
                              global_by_default: bool,
                              crate_lint: CrateLint)
3452 3453 3454 3455 3456 3457
                              -> 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 {
3458
                match self.resolve_qpath(id, qself, path, ns, span, global_by_default, crate_lint) {
3459 3460
                    // If defer_to_typeck, then resolution > no resolution,
                    // otherwise full resolution > partial resolution > no resolution.
3461 3462
                    Some(res) if res.unresolved_segments() == 0 || defer_to_typeck =>
                        return Some(res),
3463 3464 3465 3466
                    res => if fin_res.is_none() { fin_res = res },
                };
            }
        }
3467
        if primary_ns != MacroNS &&
N
Nick Cameron 已提交
3468 3469
           (self.macro_names.contains(&path[0].ident.modern()) ||
            self.builtin_macros.get(&path[0].ident.name).cloned()
3470
                               .and_then(NameBinding::macro_kind) == Some(MacroKind::Bang) ||
N
Nick Cameron 已提交
3471
            self.macro_use_prelude.get(&path[0].ident.name).cloned()
3472
                                  .and_then(NameBinding::macro_kind) == Some(MacroKind::Bang)) {
3473
            // Return some dummy definition, it's enough for error reporting.
J
Josh Driver 已提交
3474 3475 3476
            return Some(
                PathResolution::new(Def::Macro(DefId::local(CRATE_DEF_INDEX), MacroKind::Bang))
            );
3477 3478 3479 3480 3481 3482 3483 3484
        }
        fin_res
    }

    /// Handles paths that may refer to associated items.
    fn resolve_qpath(&mut self,
                     id: NodeId,
                     qself: Option<&QSelf>,
N
Nick Cameron 已提交
3485
                     path: &[Segment],
3486 3487
                     ns: Namespace,
                     span: Span,
3488 3489
                     global_by_default: bool,
                     crate_lint: CrateLint)
3490
                     -> Option<PathResolution> {
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501
        debug!(
            "resolve_qpath(id={:?}, qself={:?}, path={:?}, \
             ns={:?}, span={:?}, global_by_default={:?})",
            id,
            qself,
            path,
            ns,
            span,
            global_by_default,
        );

3502
        if let Some(qself) = qself {
J
Jeffrey Seyfried 已提交
3503
            if qself.position == 0 {
3504 3505 3506
                // 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.
3507 3508 3509
                return Some(PathResolution::with_unresolved_segments(
                    Def::Mod(DefId::local(CRATE_DEF_INDEX)), path.len()
                ));
3510
            }
3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525

            // 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`).
3526
            let ns = if qself.position + 1 == path.len() { ns } else { TypeNS };
3527 3528 3529 3530 3531 3532
            let res = self.smart_resolve_path_fragment(
                id,
                None,
                &path[..qself.position + 1],
                span,
                PathSource::TraitItem(ns),
3533 3534 3535 3536
                CrateLint::QPathTrait {
                    qpath_id: id,
                    qpath_span: qself.path_span,
                },
3537
            );
3538 3539 3540 3541

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

N
Niko Matsakis 已提交
3547
        let result = match self.resolve_path(
3548
            None,
N
Niko Matsakis 已提交
3549 3550 3551 3552
            &path,
            Some(ns),
            true,
            span,
3553
            crate_lint,
N
Niko Matsakis 已提交
3554
        ) {
3555
            PathResult::NonModule(path_res) => path_res,
3556
            PathResult::Module(ModuleOrUniformRoot::Module(module)) if !module.is_normal() => {
J
Jeffrey Seyfried 已提交
3557
                PathResolution::new(module.def().unwrap())
V
Cleanup  
Vadim Petrochenkov 已提交
3558
            }
3559 3560 3561 3562 3563 3564
            // 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 已提交
3565 3566
            //     u8::max_value() // OK, resolves to associated function <u8>::max_value,
            //                     // not to non-existent std::u8::max_value
3567 3568 3569 3570
            // }
            //
            // Such behavior is required for backward compatibility.
            // The same fallback is used when `a` resolves to nothing.
3571 3572
            PathResult::Module(ModuleOrUniformRoot::Module(_)) |
            PathResult::Failed(..)
3573
                    if (ns == TypeNS || path.len() > 1) &&
3574
                       self.primitive_type_table.primitive_types
N
Nick Cameron 已提交
3575 3576
                           .contains_key(&path[0].ident.name) => {
                let prim = self.primitive_type_table.primitive_types[&path[0].ident.name];
3577
                PathResolution::with_unresolved_segments(Def::PrimTy(prim), path.len() - 1)
J
Jeffrey Seyfried 已提交
3578
            }
3579 3580
            PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                PathResolution::new(module.def().unwrap()),
3581
            PathResult::Failed(span, msg, false) => {
J
Jeffrey Seyfried 已提交
3582 3583 3584
                resolve_error(self, span, ResolutionError::FailedToResolve(&msg));
                err_path_resolution()
            }
3585
            PathResult::Module(ModuleOrUniformRoot::UniformRoot(_)) |
3586 3587
            PathResult::Failed(..) => return None,
            PathResult::Indeterminate => bug!("indetermined path result in resolve_qpath"),
J
Jeffrey Seyfried 已提交
3588 3589
        };

3590
        if path.len() > 1 && !global_by_default && result.base_def() != Def::Err &&
N
Nick Cameron 已提交
3591 3592
           path[0].ident.name != keywords::CrateRoot.name() &&
           path[0].ident.name != keywords::DollarCrate.name() {
3593
            let unqualified_result = {
N
Niko Matsakis 已提交
3594
                match self.resolve_path(
3595
                    None,
N
Niko Matsakis 已提交
3596 3597 3598 3599 3600 3601
                    &[*path.last().unwrap()],
                    Some(ns),
                    false,
                    span,
                    CrateLint::No,
                ) {
3602
                    PathResult::NonModule(path_res) => path_res.base_def(),
3603 3604
                    PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                        module.def().unwrap(),
3605 3606 3607
                    _ => return Some(result),
                }
            };
3608
            if result.base_def() == unqualified_result {
3609
                let lint = lint::builtin::UNUSED_QUALIFICATIONS;
3610
                self.session.buffer_lint(lint, id, span, "unnecessary qualification")
N
Nick Cameron 已提交
3611
            }
3612
        }
N
Nick Cameron 已提交
3613

J
Jeffrey Seyfried 已提交
3614
        Some(result)
3615 3616
    }

3617 3618
    fn resolve_path(
        &mut self,
3619
        base_module: Option<ModuleOrUniformRoot<'a>>,
N
Nick Cameron 已提交
3620
        path: &[Segment],
3621 3622 3623 3624
        opt_ns: Option<Namespace>, // `None` indicates a module path
        record_used: bool,
        path_span: Span,
        crate_lint: CrateLint,
3625
    ) -> PathResult<'a> {
3626 3627 3628
        let parent_scope = ParentScope { module: self.current_module, ..self.dummy_parent_scope() };
        self.resolve_path_with_parent_scope(base_module, path, opt_ns, &parent_scope,
                                            record_used, path_span, crate_lint)
3629 3630
    }

3631
    fn resolve_path_with_parent_scope(
3632 3633
        &mut self,
        base_module: Option<ModuleOrUniformRoot<'a>>,
N
Nick Cameron 已提交
3634
        path: &[Segment],
3635
        opt_ns: Option<Namespace>, // `None` indicates a module path
3636
        parent_scope: &ParentScope<'a>,
3637 3638 3639
        record_used: bool,
        path_span: Span,
        crate_lint: CrateLint,
3640
    ) -> PathResult<'a> {
3641
        let mut module = base_module;
3642
        let mut allow_super = true;
3643
        let mut second_binding = None;
3644
        self.current_module = parent_scope.module;
J
Jeffrey Seyfried 已提交
3645

3646
        debug!(
N
Niko Matsakis 已提交
3647 3648
            "resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
             path_span={:?}, crate_lint={:?})",
3649 3650 3651 3652 3653 3654 3655
            path,
            opt_ns,
            record_used,
            path_span,
            crate_lint,
        );

N
Nick Cameron 已提交
3656
        for (i, &Segment { ident, id }) in path.iter().enumerate() {
3657
            debug!("resolve_path ident {} {:?}", i, ident);
3658

J
Jeffrey Seyfried 已提交
3659 3660
            let is_last = i == path.len() - 1;
            let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
V
Vadim Petrochenkov 已提交
3661
            let name = ident.name;
J
Jeffrey Seyfried 已提交
3662

3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683
            allow_super &= ns == TypeNS &&
                (name == keywords::SelfValue.name() ||
                 name == keywords::Super.name());

            if ns == TypeNS {
                if allow_super && name == keywords::Super.name() {
                    let mut ctxt = ident.span.ctxt().modern();
                    let self_module = match i {
                        0 => Some(self.resolve_self(&mut ctxt, self.current_module)),
                        _ => match module {
                            Some(ModuleOrUniformRoot::Module(module)) => Some(module),
                            _ => None,
                        },
                    };
                    if let Some(self_module) = self_module {
                        if let Some(parent) = self_module.parent {
                            module = Some(ModuleOrUniformRoot::Module(
                                self.resolve_self(&mut ctxt, parent)));
                            continue;
                        }
                    }
J
Jeffrey Seyfried 已提交
3684
                    let msg = "There are too many initial `super`s.".to_string();
3685
                    return PathResult::Failed(ident.span, msg, false);
J
Jeffrey Seyfried 已提交
3686
                }
3687
                if i == 0 {
3688 3689 3690 3691 3692 3693
                    if name == keywords::SelfValue.name() {
                        let mut ctxt = ident.span.ctxt().modern();
                        module = Some(ModuleOrUniformRoot::Module(
                            self.resolve_self(&mut ctxt, self.current_module)));
                        continue;
                    }
3694 3695 3696 3697 3698 3699
                    if name == keywords::Extern.name() ||
                       name == keywords::CrateRoot.name() &&
                       self.session.rust_2018() {
                        module = Some(ModuleOrUniformRoot::UniformRoot(name));
                        continue;
                    }
3700 3701 3702 3703 3704 3705 3706 3707
                    if name == keywords::CrateRoot.name() ||
                       name == keywords::Crate.name() ||
                       name == keywords::DollarCrate.name() {
                        // `::a::b`, `crate::a::b` or `$crate::a::b`
                        module = Some(ModuleOrUniformRoot::Module(
                            self.resolve_crate_root(ident)));
                        continue;
                    }
V
Vadim Petrochenkov 已提交
3708
                }
3709 3710
            }

3711
            // Report special messages for path segment keywords in wrong positions.
3712
            if ident.is_path_segment_keyword() && i != 0 {
3713
                let name_str = if name == keywords::CrateRoot.name() {
L
ljedrz 已提交
3714
                    "crate root".to_string()
3715 3716 3717
                } else {
                    format!("`{}`", name)
                };
N
Nick Cameron 已提交
3718
                let msg = if i == 1 && path[0].ident.name == keywords::CrateRoot.name() {
3719 3720 3721 3722 3723 3724 3725
                    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 已提交
3726
            let binding = if let Some(module) = module {
3727
                self.resolve_ident_in_module(module, ident, ns, record_used, path_span)
3728
            } else if opt_ns == Some(MacroNS) {
3729
                assert!(ns == TypeNS);
3730 3731
                self.early_resolve_ident_in_lexical_scope(ident, ns, None, parent_scope,
                                                          record_used, record_used, path_span)
J
Jeffrey Seyfried 已提交
3732
            } else {
3733 3734 3735
                let record_used_id =
                    if record_used { crate_lint.node_id().or(Some(CRATE_NODE_ID)) } else { None };
                match self.resolve_ident_in_lexical_scope(ident, ns, record_used_id, path_span) {
3736
                    // we found a locally-imported or available item/module
J
Jeffrey Seyfried 已提交
3737
                    Some(LexicalScopeBinding::Item(binding)) => Ok(binding),
3738
                    // we found a local variable or type param
3739 3740
                    Some(LexicalScopeBinding::Def(def))
                            if opt_ns == Some(TypeNS) || opt_ns == Some(ValueNS) => {
3741 3742 3743
                        return PathResult::NonModule(PathResolution::with_unresolved_segments(
                            def, path.len() - 1
                        ));
J
Jeffrey Seyfried 已提交
3744
                    }
3745
                    _ => Err(if record_used { Determined } else { Undetermined }),
J
Jeffrey Seyfried 已提交
3746 3747 3748 3749 3750
                }
            };

            match binding {
                Ok(binding) => {
3751 3752 3753
                    if i == 1 {
                        second_binding = Some(binding);
                    }
3754 3755
                    let def = binding.def();
                    let maybe_assoc = opt_ns != Some(MacroNS) && PathSource::Type.is_expected(def);
J
Jeffrey Seyfried 已提交
3756
                    if let Some(next_module) = binding.module() {
3757
                        module = Some(ModuleOrUniformRoot::Module(next_module));
3758
                        if record_used {
3759
                            if let Some(id) = id {
3760 3761 3762 3763
                                if !self.def_map.contains_key(&id) {
                                    assert!(id != ast::DUMMY_NODE_ID, "Trying to resolve dummy id");
                                    self.record_def(id, PathResolution::new(def));
                                }
3764 3765
                            }
                        }
3766
                    } else if def == Def::ToolMod && i + 1 != path.len() {
3767 3768
                        let def = Def::NonMacroAttr(NonMacroAttrKind::Tool);
                        return PathResult::NonModule(PathResolution::new(def));
3769
                    } else if def == Def::Err {
J
Jeffrey Seyfried 已提交
3770
                        return PathResult::NonModule(err_path_resolution());
3771
                    } else if opt_ns.is_some() && (is_last || maybe_assoc) {
3772
                        self.lint_if_path_starts_with_module(
3773
                            crate_lint,
3774 3775 3776 3777
                            path,
                            path_span,
                            second_binding,
                        );
3778 3779 3780
                        return PathResult::NonModule(PathResolution::with_unresolved_segments(
                            def, path.len() - i - 1
                        ));
J
Jeffrey Seyfried 已提交
3781
                    } else {
3782
                        return PathResult::Failed(ident.span,
V
Vadim Petrochenkov 已提交
3783
                                                  format!("Not a module `{}`", ident),
3784
                                                  is_last);
J
Jeffrey Seyfried 已提交
3785 3786 3787 3788
                    }
                }
                Err(Undetermined) => return PathResult::Indeterminate,
                Err(Determined) => {
3789
                    if let Some(ModuleOrUniformRoot::Module(module)) = module {
J
Jeffrey Seyfried 已提交
3790
                        if opt_ns.is_some() && !module.is_normal() {
3791 3792 3793
                            return PathResult::NonModule(PathResolution::with_unresolved_segments(
                                module.def().unwrap(), path.len() - i
                            ));
J
Jeffrey Seyfried 已提交
3794 3795
                        }
                    }
3796 3797 3798 3799 3800
                    let module_def = match module {
                        Some(ModuleOrUniformRoot::Module(module)) => module.def(),
                        _ => None,
                    };
                    let msg = if module_def == self.graph_root.def() {
J
Jeffrey Seyfried 已提交
3801 3802
                        let is_mod = |def| match def { Def::Mod(..) => true, _ => false };
                        let mut candidates =
3803
                            self.lookup_import_candidates(name, TypeNS, is_mod);
3804 3805 3806
                        candidates.sort_by_cached_key(|c| {
                            (c.path.segments.len(), c.path.to_string())
                        });
J
Jeffrey Seyfried 已提交
3807
                        if let Some(candidate) = candidates.get(0) {
3808
                            format!("Did you mean `{}`?", candidate.path)
J
Jeffrey Seyfried 已提交
3809
                        } else {
V
Vadim Petrochenkov 已提交
3810
                            format!("Maybe a missing `extern crate {};`?", ident)
J
Jeffrey Seyfried 已提交
3811 3812
                        }
                    } else if i == 0 {
V
Vadim Petrochenkov 已提交
3813
                        format!("Use of undeclared type or module `{}`", ident)
J
Jeffrey Seyfried 已提交
3814
                    } else {
N
Nick Cameron 已提交
3815
                        format!("Could not find `{}` in `{}`", ident, path[i - 1].ident)
J
Jeffrey Seyfried 已提交
3816
                    };
3817
                    return PathResult::Failed(ident.span, msg, is_last);
J
Jeffrey Seyfried 已提交
3818 3819
                }
            }
3820 3821
        }

3822
        self.lint_if_path_starts_with_module(crate_lint, path, path_span, second_binding);
3823

3824 3825 3826 3827
        PathResult::Module(module.unwrap_or_else(|| {
            span_bug!(path_span, "resolve_path: empty(?) path {:?} has no module", path);
        }))

3828 3829
    }

3830 3831 3832
    fn lint_if_path_starts_with_module(
        &self,
        crate_lint: CrateLint,
N
Nick Cameron 已提交
3833
        path: &[Segment],
3834 3835 3836
        path_span: Span,
        second_binding: Option<&NameBinding>,
    ) {
3837 3838 3839 3840 3841
        // In the 2018 edition this lint is a hard error, so nothing to do
        if self.session.rust_2018() {
            return
        }

3842 3843 3844 3845
        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),
3846
            CrateLint::QPathTrait { qpath_id, qpath_span } => (qpath_id, qpath_span),
3847 3848 3849
        };

        let first_name = match path.get(0) {
N
Nick Cameron 已提交
3850
            Some(ident) => ident.ident.name,
3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861
            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
N
Nick Cameron 已提交
3862
            Some(Segment { ident, .. }) if ident.name == keywords::Crate.name() => return,
3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875
            // 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 {
3876 3877
                // Careful: we still want to rewrite paths from
                // renamed extern crates.
3878
                if let ImportDirectiveSubclass::ExternCrate { source: None, .. } = d.subclass {
3879 3880 3881 3882 3883 3884
                    return
                }
            }
        }

        let diag = lint::builtin::BuiltinLintDiagnostics
3885
            ::AbsPathWithModule(diag_span);
3886
        self.session.buffer_lint_with_diagnostic(
3887
            lint::builtin::ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
3888
            diag_id, diag_span,
3889 3890 3891 3892 3893
            "absolute paths must start with `self`, `super`, \
            `crate`, or an external crate name in the 2018 edition",
            diag);
    }

3894
    // Resolve a local definition, potentially adjusting for closures.
3895 3896 3897 3898
    fn adjust_local_def(&mut self,
                        ns: Namespace,
                        rib_index: usize,
                        mut def: Def,
3899 3900
                        record_used: bool,
                        span: Span) -> Def {
3901 3902 3903 3904
        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 {
3905
            if record_used {
3906
                resolve_error(self, span, ResolutionError::ForwardDeclaredTyParam);
3907 3908 3909 3910 3911
            }
            assert_eq!(def, Def::Err);
            return Def::Err;
        }

3912
        match def {
3913
            Def::Upvar(..) => {
3914
                span_bug!(span, "unexpected {:?} in bindings", def)
3915
            }
3916
            Def::Local(node_id) => {
3917 3918
                for rib in ribs {
                    match rib.kind {
3919 3920
                        NormalRibKind | ModuleRibKind(..) | MacroDefinition(..) |
                        ForwardTyParamBanRibKind => {
3921 3922 3923 3924 3925
                            // Nothing to do. Continue.
                        }
                        ClosureRibKind(function_id) => {
                            let prev_def = def;

C
corentih 已提交
3926 3927
                            let seen = self.freevars_seen
                                           .entry(function_id)
3928
                                           .or_default();
3929
                            if let Some(&index) = seen.get(&node_id) {
3930
                                def = Def::Upvar(node_id, index, function_id);
3931 3932
                                continue;
                            }
C
corentih 已提交
3933 3934
                            let vec = self.freevars
                                          .entry(function_id)
3935
                                          .or_default();
3936
                            let depth = vec.len();
3937
                            def = Def::Upvar(node_id, depth, function_id);
3938

3939
                            if record_used {
3940 3941
                                vec.push(Freevar {
                                    def: prev_def,
3942
                                    span,
3943 3944 3945
                                });
                                seen.insert(node_id, depth);
                            }
3946
                        }
3947
                        ItemRibKind | TraitOrImplItemRibKind => {
3948 3949 3950
                            // This was an attempt to access an upvar inside a
                            // named function item. This is not allowed, so we
                            // report an error.
3951
                            if record_used {
3952 3953 3954
                                resolve_error(self, span,
                                        ResolutionError::CannotCaptureDynamicEnvironmentInFnItem);
                            }
3955
                            return Def::Err;
3956 3957 3958
                        }
                        ConstantItemRibKind => {
                            // Still doesn't deal with upvars
3959
                            if record_used {
3960 3961 3962
                                resolve_error(self, span,
                                        ResolutionError::AttemptToUseNonConstantValueInConstant);
                            }
3963
                            return Def::Err;
3964 3965 3966 3967
                        }
                    }
                }
            }
3968
            Def::TyParam(..) | Def::SelfTy(..) => {
3969 3970
                for rib in ribs {
                    match rib.kind {
3971
                        NormalRibKind | TraitOrImplItemRibKind | ClosureRibKind(..) |
3972 3973
                        ModuleRibKind(..) | MacroDefinition(..) | ForwardTyParamBanRibKind |
                        ConstantItemRibKind => {
3974 3975 3976 3977 3978
                            // Nothing to do. Continue.
                        }
                        ItemRibKind => {
                            // This was an attempt to use a type parameter outside
                            // its scope.
3979
                            if record_used {
3980
                                resolve_error(self, span,
3981
                                    ResolutionError::TypeParametersFromOuterFunction(def));
3982
                            }
3983
                            return Def::Err;
3984 3985 3986 3987 3988 3989
                        }
                    }
                }
            }
            _ => {}
        }
L
ljedrz 已提交
3990
        def
3991 3992
    }

3993
    fn lookup_assoc_candidate<FilterFn>(&mut self,
3994
                                        ident: Ident,
3995 3996 3997 3998 3999
                                        ns: Namespace,
                                        filter_fn: FilterFn)
                                        -> Option<AssocSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
4000
        fn extract_node_id(t: &Ty) -> Option<NodeId> {
4001
            match t.node {
4002 4003
                TyKind::Path(None, _) => Some(t.id),
                TyKind::Rptr(_, ref mut_ty) => extract_node_id(&mut_ty.ty),
4004 4005 4006 4007 4008 4009 4010
                // 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,
            }
        }

4011
        // Fields are generally expected in the same contexts as locals.
4012
        if filter_fn(Def::Local(ast::DUMMY_NODE_ID)) {
4013 4014 4015
            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) {
4016 4017 4018
                    match resolution.base_def() {
                        Def::Struct(did) | Def::Union(did)
                                if resolution.unresolved_segments() == 0 => {
4019
                            if let Some(field_names) = self.field_names.get(&did) {
4020
                                if field_names.iter().any(|&field_name| ident.name == field_name) {
4021 4022
                                    return Some(AssocSuggestion::Field);
                                }
4023
                            }
4024
                        }
4025
                        _ => {}
4026
                    }
4027
                }
4028
            }
4029 4030
        }

4031
        // Look for associated items in the current trait.
4032
        if let Some((module, _)) = self.current_trait_ref {
4033 4034 4035 4036 4037 4038 4039
            if let Ok(binding) = self.resolve_ident_in_module(
                    ModuleOrUniformRoot::Module(module),
                    ident,
                    ns,
                    false,
                    module.span,
                ) {
4040
                let def = binding.def();
4041
                if filter_fn(def) {
4042
                    return Some(if self.has_self.contains(&def.def_id()) {
4043 4044 4045 4046
                        AssocSuggestion::MethodWithSelf
                    } else {
                        AssocSuggestion::AssocItem
                    });
4047 4048 4049 4050
                }
            }
        }

4051
        None
4052 4053
    }

4054
    fn lookup_typo_candidate<FilterFn>(&mut self,
N
Nick Cameron 已提交
4055
                                       path: &[Segment],
4056
                                       ns: Namespace,
4057 4058
                                       filter_fn: FilterFn,
                                       span: Span)
4059
                                       -> Option<Symbol>
4060 4061
        where FilterFn: Fn(Def) -> bool
    {
4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072
        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();
4073
        if path.len() == 1 {
4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091
            // 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
4092
                        if !module.no_implicit_prelude {
4093
                            names.extend(self.extern_prelude.iter().map(|(ident, _)| ident.name));
4094
                            if let Some(prelude) = self.prelude {
4095 4096 4097 4098 4099 4100 4101 4102
                                add_module_candidates(prelude, &mut names);
                            }
                        }
                        break;
                    }
                }
            }
            // Add primitive types to the mix
4103
            if filter_fn(Def::PrimTy(Bool)) {
4104 4105 4106
                names.extend(
                    self.primitive_type_table.primitive_types.iter().map(|(name, _)| name)
                )
4107 4108 4109 4110
            }
        } else {
            // Search in module.
            let mod_path = &path[..path.len() - 1];
4111
            if let PathResult::Module(module) = self.resolve_path(None, mod_path, Some(TypeNS),
4112
                                                                  false, span, CrateLint::No) {
4113 4114 4115
                if let ModuleOrUniformRoot::Module(module) = module {
                    add_module_candidates(module, &mut names);
                }
4116
            }
4117
        }
4118

N
Nick Cameron 已提交
4119
        let name = path[path.len() - 1].ident.name;
4120
        // Make sure error reporting is deterministic.
4121
        names.sort_by_cached_key(|name| name.as_str());
4122
        match find_best_match_for_name(names.iter(), &name.as_str(), None) {
4123
            Some(found) if found != name => Some(found),
4124
            _ => None,
4125
        }
4126 4127
    }

4128
    fn with_resolved_label<F>(&mut self, label: Option<Label>, id: NodeId, f: F)
4129 4130
        where F: FnOnce(&mut Resolver)
    {
4131
        if let Some(label) = label {
4132
            self.unused_labels.insert(id, label.ident.span);
4133
            let def = Def::Label(id);
4134
            self.with_label_rib(|this| {
4135 4136
                let ident = label.ident.modern_and_legacy();
                this.label_ribs.last_mut().unwrap().bindings.insert(ident, def);
4137
                f(this);
4138 4139
            });
        } else {
4140
            f(self);
4141 4142 4143
        }
    }

4144
    fn resolve_labeled_block(&mut self, label: Option<Label>, id: NodeId, block: &Block) {
4145 4146 4147
        self.with_resolved_label(label, id, |this| this.visit_block(block));
    }

4148
    fn resolve_expr(&mut self, expr: &Expr, parent: Option<&Expr>) {
P
Patrick Walton 已提交
4149 4150
        // First, record candidate traits for this expression if it could
        // result in the invocation of a method call.
4151 4152 4153

        self.record_candidate_traits_for_expr_if_necessary(expr);

4154
        // Next, resolve the node.
4155
        match expr.node {
4156 4157
            ExprKind::Path(ref qself, ref path) => {
                self.smart_resolve_path(expr.id, qself.as_ref(), path, PathSource::Expr(parent));
4158
                visit::walk_expr(self, expr);
4159 4160
            }

V
Vadim Petrochenkov 已提交
4161
            ExprKind::Struct(ref path, ..) => {
4162
                self.smart_resolve_path(expr.id, None, path, PathSource::Struct);
4163
                visit::walk_expr(self, expr);
4164 4165
            }

4166
            ExprKind::Break(Some(label), _) | ExprKind::Continue(Some(label)) => {
4167 4168 4169 4170
                let def = self.search_label(label.ident, |rib, ident| {
                    rib.bindings.get(&ident.modern_and_legacy()).cloned()
                });
                match def {
4171
                    None => {
4172 4173 4174
                        // Search again for close matches...
                        // Picks the first label that is "close enough", which is not necessarily
                        // the closest match
4175
                        let close_match = self.search_label(label.ident, |rib, ident| {
4176
                            let names = rib.bindings.iter().map(|(id, _)| &id.name);
V
Vadim Petrochenkov 已提交
4177
                            find_best_match_for_name(names, &*ident.as_str(), None)
4178
                        });
4179
                        self.record_def(expr.id, err_path_resolution());
4180
                        resolve_error(self,
4181
                                      label.ident.span,
V
Vadim Petrochenkov 已提交
4182
                                      ResolutionError::UndeclaredLabel(&label.ident.as_str(),
4183
                                                                       close_match));
4184
                    }
4185
                    Some(Def::Label(id)) => {
4186
                        // Since this def is a label, it is never read.
4187 4188
                        self.record_def(expr.id, PathResolution::new(Def::Label(id)));
                        self.unused_labels.remove(&id);
4189 4190
                    }
                    Some(_) => {
4191
                        span_bug!(expr.span, "label wasn't mapped to a label def!");
4192 4193
                    }
                }
4194 4195 4196

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

4199
            ExprKind::IfLet(ref pats, ref subexpression, ref if_block, ref optional_else) => {
4200 4201
                self.visit_expr(subexpression);

J
Jeffrey Seyfried 已提交
4202
                self.ribs[ValueNS].push(Rib::new(NormalRibKind));
4203
                let mut bindings_list = FxHashMap::default();
4204 4205 4206 4207 4208
                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);
4209
                self.visit_block(if_block);
J
Jeffrey Seyfried 已提交
4210
                self.ribs[ValueNS].pop();
4211 4212 4213 4214

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

J
Jeffrey Seyfried 已提交
4215 4216 4217
            ExprKind::Loop(ref block, label) => self.resolve_labeled_block(label, expr.id, &block),

            ExprKind::While(ref subexpression, ref block, label) => {
4218 4219 4220 4221
                self.with_resolved_label(label, expr.id, |this| {
                    this.visit_expr(subexpression);
                    this.visit_block(block);
                });
J
Jeffrey Seyfried 已提交
4222 4223
            }

4224
            ExprKind::WhileLet(ref pats, ref subexpression, ref block, label) => {
4225 4226
                self.with_resolved_label(label, expr.id, |this| {
                    this.visit_expr(subexpression);
4227
                    this.ribs[ValueNS].push(Rib::new(NormalRibKind));
4228
                    let mut bindings_list = FxHashMap::default();
4229 4230 4231 4232 4233
                    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);
4234
                    this.visit_block(block);
4235
                    this.ribs[ValueNS].pop();
4236
                });
4237 4238 4239 4240
            }

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

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

J
Jeffrey Seyfried 已提交
4246
                self.ribs[ValueNS].pop();
4247 4248
            }

4249 4250
            ExprKind::Block(ref block, label) => self.resolve_labeled_block(label, block.id, block),

4251
            // Equivalent to `visit::walk_expr` + passing some context to children.
4252
            ExprKind::Field(ref subexpression, _) => {
4253
                self.resolve_expr(subexpression, Some(expr));
4254
            }
4255
            ExprKind::MethodCall(ref segment, ref arguments) => {
4256
                let mut arguments = arguments.iter();
4257
                self.resolve_expr(arguments.next().unwrap(), Some(expr));
4258 4259 4260
                for argument in arguments {
                    self.resolve_expr(argument, None);
                }
4261
                self.visit_path_segment(expr.span, segment);
4262
            }
4263

4264
            ExprKind::Call(ref callee, ref arguments) => {
4265
                self.resolve_expr(callee, Some(expr));
4266 4267 4268 4269
                for argument in arguments {
                    self.resolve_expr(argument, None);
                }
            }
4270 4271 4272 4273 4274
            ExprKind::Type(ref type_expr, _) => {
                self.current_type_ascription.push(type_expr.span);
                visit::walk_expr(self, expr);
                self.current_type_ascription.pop();
            }
T
Taylor Cramer 已提交
4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287
            // Resolve the body of async exprs inside the async closure to which they desugar
            ExprKind::Async(_, async_closure_id, ref block) => {
                let rib_kind = ClosureRibKind(async_closure_id);
                self.ribs[ValueNS].push(Rib::new(rib_kind));
                self.label_ribs.push(Rib::new(rib_kind));
                self.visit_block(&block);
                self.label_ribs.pop();
                self.ribs[ValueNS].pop();
            }
            // `async |x| ...` gets desugared to `|x| future_from_generator(|| ...)`, so we need to
            // resolve the arguments within the proper scopes so that usages of them inside the
            // closure are detected as upvars rather than normal closure arg usages.
            ExprKind::Closure(
4288 4289 4290
                _, IsAsync::Async { closure_id: inner_closure_id, .. }, _,
                ref fn_decl, ref body, _span,
            ) => {
T
Taylor Cramer 已提交
4291 4292 4293 4294
                let rib_kind = ClosureRibKind(expr.id);
                self.ribs[ValueNS].push(Rib::new(rib_kind));
                self.label_ribs.push(Rib::new(rib_kind));
                // Resolve arguments:
4295
                let mut bindings_list = FxHashMap::default();
T
Taylor Cramer 已提交
4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
                for argument in &fn_decl.inputs {
                    self.resolve_pattern(&argument.pat, PatternSource::FnParam, &mut bindings_list);
                    self.visit_ty(&argument.ty);
                }
                // No need to resolve return type-- the outer closure return type is
                // FunctionRetTy::Default

                // Now resolve the inner closure
                {
                    let rib_kind = ClosureRibKind(inner_closure_id);
                    self.ribs[ValueNS].push(Rib::new(rib_kind));
                    self.label_ribs.push(Rib::new(rib_kind));
                    // No need to resolve arguments: the inner closure has none.
                    // Resolve the return type:
                    visit::walk_fn_ret_ty(self, &fn_decl.output);
                    // Resolve the body
                    self.visit_expr(body);
                    self.label_ribs.pop();
                    self.ribs[ValueNS].pop();
                }
                self.label_ribs.pop();
                self.ribs[ValueNS].pop();
            }
B
Brian Anderson 已提交
4319
            _ => {
4320
                visit::walk_expr(self, expr);
4321 4322 4323 4324
            }
        }
    }

E
Eduard Burtescu 已提交
4325
    fn record_candidate_traits_for_expr_if_necessary(&mut self, expr: &Expr) {
4326
        match expr.node {
V
Vadim Petrochenkov 已提交
4327
            ExprKind::Field(_, ident) => {
4328 4329 4330 4331
                // 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 已提交
4332
                let traits = self.get_traits_containing_item(ident, ValueNS);
4333
                self.trait_map.insert(expr.id, traits);
4334
            }
4335
            ExprKind::MethodCall(ref segment, ..) => {
C
corentih 已提交
4336
                debug!("(recording candidate traits for expr) recording traits for {}",
4337
                       expr.id);
4338
                let traits = self.get_traits_containing_item(segment.ident, ValueNS);
4339
                self.trait_map.insert(expr.id, traits);
4340
            }
4341
            _ => {
4342 4343 4344 4345 4346
                // Nothing to do.
            }
        }
    }

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

4351
        let mut found_traits = Vec::new();
J
Jeffrey Seyfried 已提交
4352
        // Look for the current trait.
4353
        if let Some((module, _)) = self.current_trait_ref {
4354 4355 4356 4357 4358 4359 4360
            if self.resolve_ident_in_module(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                module.span,
            ).is_ok() {
4361 4362
                let def_id = module.def_id().unwrap();
                found_traits.push(TraitCandidate { def_id: def_id, import_id: None });
E
Eduard Burtescu 已提交
4363
            }
J
Jeffrey Seyfried 已提交
4364
        }
4365

4366
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
4367 4368
        let mut search_module = self.current_module;
        loop {
4369
            self.get_traits_in_module_containing_item(ident, ns, search_module, &mut found_traits);
4370 4371 4372
            search_module = unwrap_or!(
                self.hygienic_lexical_parent(search_module, &mut ident.span), break
            );
4373
        }
4374

4375 4376
        if let Some(prelude) = self.prelude {
            if !search_module.no_implicit_prelude {
4377
                self.get_traits_in_module_containing_item(ident, ns, prelude, &mut found_traits);
E
Eduard Burtescu 已提交
4378
            }
4379 4380
        }

E
Eduard Burtescu 已提交
4381
        found_traits
4382 4383
    }

4384
    fn get_traits_in_module_containing_item(&mut self,
4385
                                            ident: Ident,
4386
                                            ns: Namespace,
4387
                                            module: Module<'a>,
4388
                                            found_traits: &mut Vec<TraitCandidate>) {
4389
        assert!(ns == TypeNS || ns == ValueNS);
4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402
        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() {
4403
            let module = binding.module().unwrap();
J
Jeffrey Seyfried 已提交
4404
            let mut ident = ident;
4405
            if ident.span.glob_adjust(module.expansion, binding.span.ctxt().modern()).is_none() {
J
Jeffrey Seyfried 已提交
4406 4407
                continue
            }
4408 4409 4410 4411 4412 4413 4414 4415
            if self.resolve_ident_in_module_unadjusted(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                false,
                module.span,
            ).is_ok() {
4416 4417 4418 4419 4420 4421 4422 4423
                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,
                };
4424
                let trait_def_id = module.def_id().unwrap();
4425 4426 4427 4428 4429
                found_traits.push(TraitCandidate { def_id: trait_def_id, import_id: import_id });
            }
        }
    }

D
Douglas Campos 已提交
4430
    fn lookup_import_candidates_from_module<FilterFn>(&mut self,
4431 4432
                                          lookup_name: Name,
                                          namespace: Namespace,
D
Douglas Campos 已提交
4433
                                          start_module: &'a ModuleData<'a>,
D
Douglas Campos 已提交
4434
                                          crate_name: Ident,
4435 4436 4437 4438 4439
                                          filter_fn: FilterFn)
                                          -> Vec<ImportSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
        let mut candidates = Vec::new();
4440
        let mut seen_modules = FxHashSet::default();
4441
        let not_local_module = crate_name != keywords::Crate.ident();
L
ljedrz 已提交
4442
        let mut worklist = vec![(start_module, Vec::<ast::PathSegment>::new(), not_local_module)];
4443 4444 4445 4446

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

4449 4450 4451
            // 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| {
4452
                // avoid imports entirely
4453
                if name_binding.is_import() && !name_binding.is_extern_crate() { return; }
4454 4455
                // avoid non-importable candidates as well
                if !name_binding.is_importable() { return; }
4456 4457

                // collect results based on the filter function
4458
                if ident.name == lookup_name && ns == namespace {
4459
                    if filter_fn(name_binding.def()) {
4460
                        // create the path
4461
                        let mut segms = path_segments.clone();
4462
                        if self.session.rust_2018() {
4463 4464
                            // crate-local absolute paths start with `crate::` in edition 2018
                            // FIXME: may also be stabilized for Rust 2015 (Issues #45477, #44660)
D
Douglas Campos 已提交
4465 4466 4467
                            segms.insert(
                                0, ast::PathSegment::from_ident(crate_name)
                            );
4468
                        }
4469

4470
                        segms.push(ast::PathSegment::from_ident(ident));
4471
                        let path = Path {
4472
                            span: name_binding.span,
4473 4474 4475 4476 4477 4478 4479 4480 4481
                            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)
4482
                        if !in_module_is_extern || name_binding.vis == ty::Visibility::Public {
4483
                            candidates.push(ImportSuggestion { path: path });
4484 4485 4486 4487 4488
                        }
                    }
                }

                // collect submodules to explore
J
Jeffrey Seyfried 已提交
4489
                if let Some(module) = name_binding.module() {
4490
                    // form the path
4491
                    let mut path_segments = path_segments.clone();
4492
                    path_segments.push(ast::PathSegment::from_ident(ident));
4493

4494 4495
                    let is_extern_crate_that_also_appears_in_prelude =
                        name_binding.is_extern_crate() &&
D
Douglas Campos 已提交
4496
                        self.session.rust_2018();
4497 4498 4499 4500

                    let is_visible_to_user =
                        !in_module_is_extern || name_binding.vis == ty::Visibility::Public;

4501
                    if !is_extern_crate_that_also_appears_in_prelude && is_visible_to_user {
4502
                        // add the module to the lookup
4503
                        let is_extern = in_module_is_extern || name_binding.is_extern_crate();
4504
                        if seen_modules.insert(module.def_id().unwrap()) {
4505 4506
                            worklist.push((module, path_segments, is_extern));
                        }
4507 4508 4509 4510 4511
                    }
                }
            })
        }

4512
        candidates
4513 4514
    }

D
Douglas Campos 已提交
4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528
    /// 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).
    fn lookup_import_candidates<FilterFn>(&mut self,
                                          lookup_name: Name,
                                          namespace: Namespace,
                                          filter_fn: FilterFn)
                                          -> Vec<ImportSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
L
ljedrz 已提交
4529 4530
        let mut suggestions = self.lookup_import_candidates_from_module(
            lookup_name, namespace, self.graph_root, keywords::Crate.ident(), &filter_fn);
4531

4532
        if self.session.rust_2018() {
4533
            let extern_prelude_names = self.extern_prelude.clone();
4534 4535 4536
            for (ident, _) in extern_prelude_names.into_iter() {
                if let Some(crate_id) = self.crate_loader.maybe_process_path_extern(ident.name,
                                                                                    ident.span) {
L
ljedrz 已提交
4537 4538 4539 4540 4541
                    let crate_root = self.get_module(DefId {
                        krate: crate_id,
                        index: CRATE_DEF_INDEX,
                    });
                    self.populate_module_if_necessary(&crate_root);
4542

L
ljedrz 已提交
4543 4544
                    suggestions.extend(self.lookup_import_candidates_from_module(
                        lookup_name, namespace, crate_root, ident, &filter_fn));
4545
                }
4546 4547 4548 4549
            }
        }

        suggestions
D
Douglas Campos 已提交
4550 4551
    }

4552 4553 4554 4555 4556
    fn find_module(&mut self,
                   module_def: Def)
                   -> Option<(Module<'a>, ImportSuggestion)>
    {
        let mut result = None;
4557
        let mut seen_modules = FxHashSet::default();
L
ljedrz 已提交
4558
        let mut worklist = vec![(self.graph_root, Vec::new())];
4559 4560 4561

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

            self.populate_module_if_necessary(in_module);

4566
            in_module.for_each_child_stable(|ident, _, name_binding| {
4567 4568 4569
                // 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
4570 4571 4572 4573
                }
                if let Some(module) = name_binding.module() {
                    // form the path
                    let mut path_segments = path_segments.clone();
4574
                    path_segments.push(ast::PathSegment::from_ident(ident));
4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599
                    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)| {
4600 4601
            self.populate_module_if_necessary(enum_module);

4602 4603 4604 4605
            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();
4606
                    segms.push(ast::PathSegment::from_ident(ident));
4607 4608 4609 4610 4611 4612 4613 4614 4615 4616
                    variants.push(Path {
                        span: name_binding.span,
                        segments: segms,
                    });
                }
            });
            variants
        })
    }

4617 4618
    fn record_def(&mut self, node_id: NodeId, resolution: PathResolution) {
        debug!("(recording def) recording {:?} for {}", resolution, node_id);
4619
        if let Some(prev_res) = self.def_map.insert(node_id, resolution) {
4620
            panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
4621
        }
4622 4623
    }

4624
    fn resolve_visibility(&mut self, vis: &ast::Visibility) -> ty::Visibility {
4625 4626 4627 4628 4629 4630
        match vis.node {
            ast::VisibilityKind::Public => ty::Visibility::Public,
            ast::VisibilityKind::Crate(..) => {
                ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))
            }
            ast::VisibilityKind::Inherited => {
4631
                ty::Visibility::Restricted(self.current_module.normal_ancestor_id)
4632
            }
4633
            ast::VisibilityKind::Restricted { ref path, id, .. } => {
4634 4635
                // Visibilities are resolved as global by default, add starting root segment.
                let segments = path.make_root().iter().chain(path.segments.iter())
N
Nick Cameron 已提交
4636
                    .map(|seg| Segment { ident: seg.ident, id: Some(seg.id) })
4637
                    .collect::<Vec<_>>();
4638 4639 4640 4641 4642 4643 4644 4645
                let def = self.smart_resolve_path_fragment(
                    id,
                    None,
                    &segments,
                    path.span,
                    PathSource::Visibility,
                    CrateLint::SimplePath(id),
                ).base_def();
4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657
                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
                    }
                }
4658 4659 4660 4661
            }
        }
    }

4662
    fn is_accessible(&self, vis: ty::Visibility) -> bool {
4663
        vis.is_accessible_from(self.current_module.normal_ancestor_id, self)
4664 4665
    }

4666
    fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
4667
        vis.is_accessible_from(module.normal_ancestor_id, self)
4668 4669
    }

4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694
    fn set_binding_parent_module(&mut self, binding: &'a NameBinding<'a>, module: Module<'a>) {
        if let Some(old_module) = self.binding_parent_modules.insert(PtrKey(binding), module) {
            if !ptr::eq(module, old_module) {
                span_bug!(binding.span, "parent module is reset for binding");
            }
        }
    }

    fn disambiguate_legacy_vs_modern(
        &self,
        legacy: &'a NameBinding<'a>,
        modern: &'a NameBinding<'a>,
    ) -> bool {
        // Some non-controversial subset of ambiguities "modern macro name" vs "macro_rules"
        // is disambiguated to mitigate regressions from macro modularization.
        // Scoping for `macro_rules` behaves like scoping for `let` at module level, in general.
        match (self.binding_parent_modules.get(&PtrKey(legacy)),
               self.binding_parent_modules.get(&PtrKey(modern))) {
            (Some(legacy), Some(modern)) =>
                legacy.normal_ancestor_id == modern.normal_ancestor_id &&
                modern.is_ancestor_of(legacy),
            _ => false,
        }
    }

4695
    fn report_ambiguity_error(&self, ident: Ident, b1: &NameBinding, b2: &NameBinding) {
4696
        let participle = |is_import: bool| if is_import { "imported" } else { "defined" };
4697
        let msg1 =
4698
            format!("`{}` could refer to the name {} here", ident, participle(b1.is_import()));
4699
        let msg2 =
4700
            format!("`{}` could also refer to the name {} here", ident, participle(b2.is_import()));
4701 4702
        let note = if b1.expansion != Mark::root() {
            Some(if let Def::Macro(..) = b1.def() {
4703
                format!("macro-expanded {} do not shadow",
4704
                        if b1.is_import() { "macro imports" } else { "macros" })
4705 4706
            } else {
                format!("macro-expanded {} do not shadow when used in a macro invocation path",
4707
                        if b1.is_import() { "imports" } else { "items" })
4708
            })
4709
        } else if b1.is_glob_import() {
4710
            Some(format!("consider adding an explicit import of `{}` to disambiguate", ident))
4711 4712 4713 4714
        } else {
            None
        };

4715 4716
        let mut err = struct_span_err!(self.session, ident.span, E0659, "`{}` is ambiguous", ident);
        err.span_label(ident.span, "ambiguous name");
4717 4718 4719
        err.span_note(b1.span, &msg1);
        match b2.def() {
            Def::Macro(..) if b2.span.is_dummy() =>
4720
                err.note(&format!("`{}` is also a builtin macro", ident)),
4721
            _ => err.span_note(b2.span, &msg2),
4722 4723 4724 4725 4726 4727 4728
        };
        if let Some(note) = note {
            err.note(&note);
        }
        err.emit();
    }

4729 4730
    fn report_errors(&mut self, krate: &Crate) {
        self.report_with_use_injections(krate);
4731
        let mut reported_spans = FxHashSet::default();
4732

4733 4734 4735
        for &(span_use, span_def) in &self.macro_expanded_macro_export_errors {
            let msg = "macro-expanded `macro_export` macros from the current crate \
                       cannot be referred to by absolute paths";
4736 4737 4738 4739 4740 4741
            self.session.buffer_lint_with_diagnostic(
                lint::builtin::MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
                CRATE_NODE_ID, span_use, msg,
                lint::builtin::BuiltinLintDiagnostics::
                    MacroExpandedMacroExportsAccessedByAbsolutePaths(span_def),
            );
4742 4743
        }

4744 4745 4746
        for &AmbiguityError { ident, b1, b2 } in &self.ambiguity_errors {
            if reported_spans.insert(ident.span) {
                self.report_ambiguity_error(ident, b1, b2);
4747
            }
4748 4749
        }

4750 4751
        for &PrivacyError(span, name, binding) in &self.privacy_errors {
            if !reported_spans.insert(span) { continue }
G
Guillaume Gomez 已提交
4752
            span_err!(self.session, span, E0603, "{} `{}` is private", binding.descr(), name);
4753 4754
        }
    }
4755

4756 4757
    fn report_with_use_injections(&mut self, krate: &Crate) {
        for UseError { mut err, candidates, node_id, better } in self.use_injections.drain(..) {
4758
            let (span, found_use) = UsePlacementFinder::check(krate, node_id);
4759
            if !candidates.is_empty() {
4760
                show_candidates(&mut err, span, &candidates, better, found_use);
4761 4762 4763 4764 4765
            }
            err.emit();
        }
    }

C
Cldfire 已提交
4766
    fn report_conflict<'b>(&mut self,
4767
                       parent: Module,
4768
                       ident: Ident,
4769
                       ns: Namespace,
C
Cldfire 已提交
4770 4771
                       new_binding: &NameBinding<'b>,
                       old_binding: &NameBinding<'b>) {
4772
        // Error on the second of two conflicting names
4773
        if old_binding.span.lo() > new_binding.span.lo() {
4774
            return self.report_conflict(parent, ident, ns, old_binding, new_binding);
4775 4776
        }

J
Jeffrey Seyfried 已提交
4777 4778 4779 4780
        let container = match parent.kind {
            ModuleKind::Def(Def::Mod(_), _) => "module",
            ModuleKind::Def(Def::Trait(_), _) => "trait",
            ModuleKind::Block(..) => "block",
4781 4782 4783
            _ => "enum",
        };

4784 4785 4786
        let old_noun = match old_binding.is_import() {
            true => "import",
            false => "definition",
4787 4788
        };

4789 4790 4791 4792 4793
        let new_participle = match new_binding.is_import() {
            true => "imported",
            false => "defined",
        };

D
Donato Sciarra 已提交
4794
        let (name, span) = (ident.name, self.session.source_map().def_span(new_binding.span));
4795 4796 4797 4798 4799 4800 4801

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

4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813
        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 msg = format!("the name `{}` is defined multiple times", name);

        let mut err = match (old_binding.is_extern_crate(), new_binding.is_extern_crate()) {
4814
            (true, true) => struct_span_err!(self.session, span, E0259, "{}", msg),
4815
            (true, _) | (_, true) => match new_binding.is_import() && old_binding.is_import() {
4816 4817
                true => struct_span_err!(self.session, span, E0254, "{}", msg),
                false => struct_span_err!(self.session, span, E0260, "{}", msg),
M
Mohit Agarwal 已提交
4818
            },
4819
            _ => match (old_binding.is_import(), new_binding.is_import()) {
4820 4821 4822
                (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),
4823 4824 4825
            },
        };

4826 4827
        err.note(&format!("`{}` must be defined only once in the {} namespace of this {}",
                          name,
4828
                          ns.descr(),
4829 4830 4831
                          container));

        err.span_label(span, format!("`{}` re{} here", name, new_participle));
V
Vadim Petrochenkov 已提交
4832
        if !old_binding.span.is_dummy() {
D
Donato Sciarra 已提交
4833
            err.span_label(self.session.source_map().def_span(old_binding.span),
4834
                           format!("previous {} of the {} `{}` here", old_noun, old_kind, name));
4835
        }
4836

C
Cldfire 已提交
4837 4838
        // See https://github.com/rust-lang/rust/issues/32354
        if old_binding.is_import() || new_binding.is_import() {
V
Vadim Petrochenkov 已提交
4839
            let binding = if new_binding.is_import() && !new_binding.span.is_dummy() {
C
Cldfire 已提交
4840 4841 4842 4843 4844
                new_binding
            } else {
                old_binding
            };

D
Donato Sciarra 已提交
4845
            let cm = self.session.source_map();
F
François Mockers 已提交
4846
            let rename_msg = "you can use `as` to change the binding name of the import";
C
Cldfire 已提交
4847

4848 4849 4850
            if let (
                Ok(snippet),
                NameBindingKind::Import { directive, ..},
4851
                _dummy @ false,
4852 4853 4854
            ) = (
                cm.span_to_snippet(binding.span),
                binding.kind.clone(),
4855
                binding.span.is_dummy(),
4856
            ) {
4857 4858 4859 4860 4861 4862
                let suggested_name = if name.as_str().chars().next().unwrap().is_uppercase() {
                    format!("Other{}", name)
                } else {
                    format!("other_{}", name)
                };

4863 4864
                err.span_suggestion_with_applicability(
                    binding.span,
4865
                    &rename_msg,
4866 4867
                    match (&directive.subclass, snippet.as_ref()) {
                        (ImportDirectiveSubclass::SingleImport { .. }, "self") =>
4868
                            format!("self as {}", suggested_name),
4869
                        (ImportDirectiveSubclass::SingleImport { source, .. }, _) =>
4870
                            format!(
4871
                                "{} as {}{}",
4872 4873
                                &snippet[..((source.span.hi().0 - binding.span.lo().0) as usize)],
                                suggested_name,
4874 4875 4876 4877 4878
                                if snippet.ends_with(";") {
                                    ";"
                                } else {
                                    ""
                                }
4879
                            ),
4880
                        (ImportDirectiveSubclass::ExternCrate { source, target, .. }, _) =>
4881 4882 4883 4884 4885
                            format!(
                                "extern crate {} as {};",
                                source.unwrap_or(target.name),
                                suggested_name,
                            ),
4886
                        (_, _) => unreachable!(),
4887
                    },
F
François Mockers 已提交
4888
                    Applicability::MaybeIncorrect,
4889
                );
C
Cldfire 已提交
4890 4891 4892 4893 4894
            } else {
                err.span_label(binding.span, rename_msg);
            }
        }

4895
        err.emit();
4896
        self.name_already_seen.insert(name, span);
4897
    }
4898

4899
    fn extern_prelude_get(&mut self, ident: Ident, speculative: bool, skip_feature_gate: bool)
4900 4901 4902
                          -> Option<&'a NameBinding<'a>> {
        self.extern_prelude.get(&ident.modern()).cloned().and_then(|entry| {
            if let Some(binding) = entry.extern_crate_item {
4903 4904 4905 4906 4907 4908 4909
                if !speculative && !skip_feature_gate && entry.introduced_by_item &&
                   !self.session.features_untracked().extern_crate_item_prelude {
                    emit_feature_err(&self.session.parse_sess, "extern_crate_item_prelude",
                                     ident.span, GateIssue::Language,
                                     "use of extern prelude names introduced \
                                      with `extern crate` items is unstable");
                }
4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926
                Some(binding)
            } else {
                let crate_id = if !speculative {
                    self.crate_loader.process_path_extern(ident.name, ident.span)
                } else if let Some(crate_id) =
                        self.crate_loader.maybe_process_path_extern(ident.name, ident.span) {
                    crate_id
                } else {
                    return None;
                };
                let crate_root = self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX });
                self.populate_module_if_necessary(&crate_root);
                Some((crate_root, ty::Visibility::Public, ident.span, Mark::root())
                    .to_name_binding(self.arenas))
            }
        })
    }
4927
}
4928

N
Nick Cameron 已提交
4929 4930
fn is_self_type(path: &[Segment], namespace: Namespace) -> bool {
    namespace == TypeNS && path.len() == 1 && path[0].ident.name == keywords::SelfType.name()
4931 4932
}

N
Nick Cameron 已提交
4933 4934
fn is_self_value(path: &[Segment], namespace: Namespace) -> bool {
    namespace == ValueNS && path.len() == 1 && path[0].ident.name == keywords::SelfValue.name()
4935 4936
}

V
Vadim Petrochenkov 已提交
4937
fn names_to_string(idents: &[Ident]) -> String {
4938
    let mut result = String::new();
4939
    for (i, ident) in idents.iter()
V
Vadim Petrochenkov 已提交
4940
                            .filter(|ident| ident.name != keywords::CrateRoot.name())
4941
                            .enumerate() {
4942 4943 4944
        if i > 0 {
            result.push_str("::");
        }
V
Vadim Petrochenkov 已提交
4945
        result.push_str(&ident.as_str());
C
corentih 已提交
4946
    }
4947 4948 4949
    result
}

4950
fn path_names_to_string(path: &Path) -> String {
4951
    names_to_string(&path.segments.iter()
V
Vadim Petrochenkov 已提交
4952
                        .map(|seg| seg.ident)
4953
                        .collect::<Vec<_>>())
4954 4955
}

4956
/// Get the path for an enum and the variant from an `ImportSuggestion` for an enum variant.
E
Esteban Küber 已提交
4957
fn import_candidate_to_paths(suggestion: &ImportSuggestion) -> (Span, String, String) {
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967
    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 已提交
4968
    (suggestion.path.span, variant_path_string, enum_path_string)
4969 4970 4971
}


4972 4973 4974
/// 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
4975
fn show_candidates(err: &mut DiagnosticBuilder,
4976 4977
                   // This is `None` if all placement locations are inside expansions
                   span: Option<Span>,
4978
                   candidates: &[ImportSuggestion],
4979 4980
                   better: bool,
                   found_use: bool) {
4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991

    // 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",
4992
    };
4993 4994
    let msg = format!("possible {}candidate{} into scope", better, msg_diff);

4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005
    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);
        }
5006

V
Vitaly _Vi Shukela 已提交
5007 5008 5009 5010 5011 5012
        err.span_suggestions_with_applicability(
            span,
            &msg,
            path_strings,
            Applicability::Unspecified,
        );
5013 5014 5015 5016 5017 5018 5019 5020
    } else {
        let mut msg = msg;
        msg.push(':');
        for candidate in path_strings {
            msg.push('\n');
            msg.push_str(&candidate);
        }
    }
5021 5022
}

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

5027
    fn collect_mod(names: &mut Vec<Ident>, module: Module) {
J
Jeffrey Seyfried 已提交
5028 5029
        if let ModuleKind::Def(_, name) = module.kind {
            if let Some(parent) = module.parent {
5030
                names.push(Ident::with_empty_ctxt(name));
J
Jeffrey Seyfried 已提交
5031
                collect_mod(names, parent);
5032
            }
J
Jeffrey Seyfried 已提交
5033 5034
        } else {
            // danger, shouldn't be ident?
5035
            names.push(Ident::from_str("<opaque>"));
J
Jeffrey Seyfried 已提交
5036
            collect_mod(names, module.parent.unwrap());
5037 5038 5039 5040
        }
    }
    collect_mod(&mut names, module);

5041
    if names.is_empty() {
5042
        return None;
5043
    }
5044
    Some(names_to_string(&names.into_iter()
5045
                        .rev()
5046
                        .collect::<Vec<_>>()))
5047 5048
}

5049
fn err_path_resolution() -> PathResolution {
5050
    PathResolution::new(Def::Err)
5051 5052
}

N
Niko Matsakis 已提交
5053
#[derive(PartialEq,Copy, Clone)]
5054 5055
pub enum MakeGlobMap {
    Yes,
C
corentih 已提交
5056
    No,
5057 5058
}

5059
#[derive(Copy, Clone, Debug)]
5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072
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 },
5073 5074 5075 5076 5077

    /// 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 },
5078 5079
}

5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090
impl CrateLint {
    fn node_id(&self) -> Option<NodeId> {
        match *self {
            CrateLint::No => None,
            CrateLint::SimplePath(id) |
            CrateLint::UsePath { root_id: id, .. } |
            CrateLint::QPathTrait { qpath_id: id, .. } => Some(id),
        }
    }
}

5091
__build_diagnostic_array! { librustc_resolve, DIAGNOSTICS }