]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/lib.rs
77e8cc3272cc3580089cf1c2e7822aa2f51e7aee
[rust.git] / src / librustc_resolve / lib.rs
1 // ignore-tidy-filelength
2
3 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
4
5 #![feature(crate_visibility_modifier)]
6 #![feature(label_break_value)]
7 #![feature(nll)]
8 #![feature(rustc_diagnostic_macros)]
9 #![feature(type_alias_enum_variants)]
10
11 #![recursion_limit="256"]
12
13 #![deny(rust_2018_idioms)]
14 #![deny(internal)]
15
16 pub use rustc::hir::def::{Namespace, PerNS};
17
18 use GenericParameters::*;
19 use RibKind::*;
20 use smallvec::smallvec;
21
22 use rustc::hir::map::{Definitions, DefCollector};
23 use rustc::hir::{self, PrimTy, Bool, Char, Float, Int, Uint, Str};
24 use rustc::middle::cstore::CrateStore;
25 use rustc::session::Session;
26 use rustc::lint;
27 use rustc::hir::def::{
28     self, DefKind, PartialRes, CtorKind, CtorOf, NonMacroAttrKind, ExportMap
29 };
30 use rustc::hir::def::Namespace::*;
31 use rustc::hir::def_id::{CRATE_DEF_INDEX, LOCAL_CRATE, DefId};
32 use rustc::hir::{Upvar, UpvarMap, TraitCandidate, TraitMap, GlobMap};
33 use rustc::ty::{self, DefIdTree};
34 use rustc::util::nodemap::{NodeMap, NodeSet, FxHashMap, FxHashSet, DefIdMap};
35 use rustc::{bug, span_bug};
36
37 use rustc_metadata::creader::CrateLoader;
38 use rustc_metadata::cstore::CStore;
39
40 use syntax::source_map::SourceMap;
41 use syntax::ext::hygiene::{Mark, Transparency, SyntaxContext};
42 use syntax::ast::{self, Name, NodeId, Ident, FloatTy, IntTy, UintTy};
43 use syntax::ext::base::SyntaxExtension;
44 use syntax::ext::base::Determinacy::{self, Determined, Undetermined};
45 use syntax::ext::base::MacroKind;
46 use syntax::symbol::{Symbol, keywords, sym};
47 use syntax::util::lev_distance::find_best_match_for_name;
48
49 use syntax::visit::{self, FnKind, Visitor};
50 use syntax::attr;
51 use syntax::ast::{CRATE_NODE_ID, Arm, IsAsync, BindingMode, Block, Crate, Expr, ExprKind};
52 use syntax::ast::{FnDecl, ForeignItem, ForeignItemKind, GenericParamKind, Generics};
53 use syntax::ast::{Item, ItemKind, ImplItem, ImplItemKind};
54 use syntax::ast::{Label, Local, Mutability, Pat, PatKind, Path};
55 use syntax::ast::{QSelf, TraitItemKind, TraitRef, Ty, TyKind};
56 use syntax::ptr::P;
57 use syntax::{span_err, struct_span_err, unwrap_or, walk_list};
58
59 use syntax_pos::{Span, DUMMY_SP, MultiSpan};
60 use errors::{Applicability, DiagnosticBuilder, DiagnosticId};
61
62 use log::debug;
63
64 use std::cell::{Cell, RefCell};
65 use std::{cmp, fmt, iter, mem, ptr};
66 use std::collections::BTreeSet;
67 use std::mem::replace;
68 use rustc_data_structures::ptr_key::PtrKey;
69 use rustc_data_structures::sync::Lrc;
70 use smallvec::SmallVec;
71
72 use diagnostics::{find_span_of_binding_until_next_binding, extend_span_to_previous_binding};
73 use resolve_imports::{ImportDirective, ImportDirectiveSubclass, NameResolution, ImportResolver};
74 use macros::{InvocationData, LegacyBinding, ParentScope};
75
76 type Res = def::Res<NodeId>;
77
78 // N.B., this module needs to be declared first so diagnostics are
79 // registered before they are used.
80 mod error_codes;
81 mod diagnostics;
82 mod macros;
83 mod check_unused;
84 mod build_reduced_graph;
85 mod resolve_imports;
86
87 fn is_known_tool(name: Name) -> bool {
88     ["clippy", "rustfmt"].contains(&&*name.as_str())
89 }
90
91 enum Weak {
92     Yes,
93     No,
94 }
95
96 enum ScopeSet {
97     Import(Namespace),
98     AbsolutePath(Namespace),
99     Macro(MacroKind),
100     Module,
101 }
102
103 /// A free importable items suggested in case of resolution failure.
104 struct ImportSuggestion {
105     did: Option<DefId>,
106     path: Path,
107 }
108
109 /// A field or associated item from self type suggested in case of resolution failure.
110 enum AssocSuggestion {
111     Field,
112     MethodWithSelf,
113     AssocItem,
114 }
115
116 #[derive(Eq)]
117 struct BindingError {
118     name: Name,
119     origin: BTreeSet<Span>,
120     target: BTreeSet<Span>,
121 }
122
123 struct TypoSuggestion {
124     candidate: Symbol,
125
126     /// The kind of the binding ("crate", "module", etc.)
127     kind: &'static str,
128
129     /// An appropriate article to refer to the binding ("a", "an", etc.)
130     article: &'static str,
131 }
132
133 impl PartialOrd for BindingError {
134     fn partial_cmp(&self, other: &BindingError) -> Option<cmp::Ordering> {
135         Some(self.cmp(other))
136     }
137 }
138
139 impl PartialEq for BindingError {
140     fn eq(&self, other: &BindingError) -> bool {
141         self.name == other.name
142     }
143 }
144
145 impl Ord for BindingError {
146     fn cmp(&self, other: &BindingError) -> cmp::Ordering {
147         self.name.cmp(&other.name)
148     }
149 }
150
151 /// A vector of spans and replacements, a message and applicability.
152 type Suggestion = (Vec<(Span, String)>, String, Applicability);
153
154 enum ResolutionError<'a> {
155     /// Error E0401: can't use type or const parameters from outer function.
156     GenericParamsFromOuterFunction(Res),
157     /// Error E0403: the name is already used for a type or const parameter in this generic
158     /// parameter list.
159     NameAlreadyUsedInParameterList(Name, &'a Span),
160     /// Error E0407: method is not a member of trait.
161     MethodNotMemberOfTrait(Name, &'a str),
162     /// Error E0437: type is not a member of trait.
163     TypeNotMemberOfTrait(Name, &'a str),
164     /// Error E0438: const is not a member of trait.
165     ConstNotMemberOfTrait(Name, &'a str),
166     /// Error E0408: variable `{}` is not bound in all patterns.
167     VariableNotBoundInPattern(&'a BindingError),
168     /// Error E0409: variable `{}` is bound in inconsistent ways within the same match arm.
169     VariableBoundWithDifferentMode(Name, Span),
170     /// Error E0415: identifier is bound more than once in this parameter list.
171     IdentifierBoundMoreThanOnceInParameterList(&'a str),
172     /// Error E0416: identifier is bound more than once in the same pattern.
173     IdentifierBoundMoreThanOnceInSamePattern(&'a str),
174     /// Error E0426: use of undeclared label.
175     UndeclaredLabel(&'a str, Option<Name>),
176     /// Error E0429: `self` imports are only allowed within a `{ }` list.
177     SelfImportsOnlyAllowedWithin,
178     /// Error E0430: `self` import can only appear once in the list.
179     SelfImportCanOnlyAppearOnceInTheList,
180     /// Error E0431: `self` import can only appear in an import list with a non-empty prefix.
181     SelfImportOnlyInImportListWithNonEmptyPrefix,
182     /// Error E0433: failed to resolve.
183     FailedToResolve { label: String, suggestion: Option<Suggestion> },
184     /// Error E0434: can't capture dynamic environment in a fn item.
185     CannotCaptureDynamicEnvironmentInFnItem,
186     /// Error E0435: attempt to use a non-constant value in a constant.
187     AttemptToUseNonConstantValueInConstant,
188     /// Error E0530: `X` bindings cannot shadow `Y`s.
189     BindingShadowsSomethingUnacceptable(&'a str, Name, &'a NameBinding<'a>),
190     /// Error E0128: type parameters with a default cannot use forward-declared identifiers.
191     ForwardDeclaredTyParam, // FIXME(const_generics:defaults)
192     /// Error E0671: const parameter cannot depend on type parameter.
193     ConstParamDependentOnTypeParam,
194 }
195
196 /// Combines an error with provided span and emits it.
197 ///
198 /// This takes the error provided, combines it with the span and any additional spans inside the
199 /// error and emits it.
200 fn resolve_error<'sess, 'a>(resolver: &'sess Resolver<'_>,
201                             span: Span,
202                             resolution_error: ResolutionError<'a>) {
203     resolve_struct_error(resolver, span, resolution_error).emit();
204 }
205
206 fn resolve_struct_error<'sess, 'a>(resolver: &'sess Resolver<'_>,
207                                    span: Span,
208                                    resolution_error: ResolutionError<'a>)
209                                    -> DiagnosticBuilder<'sess> {
210     match resolution_error {
211         ResolutionError::GenericParamsFromOuterFunction(outer_res) => {
212             let mut err = struct_span_err!(resolver.session,
213                 span,
214                 E0401,
215                 "can't use generic parameters from outer function",
216             );
217             err.span_label(span, format!("use of generic parameter from outer function"));
218
219             let cm = resolver.session.source_map();
220             match outer_res {
221                 Res::SelfTy(maybe_trait_defid, maybe_impl_defid) => {
222                     if let Some(impl_span) = maybe_impl_defid.and_then(|def_id| {
223                         resolver.definitions.opt_span(def_id)
224                     }) {
225                         err.span_label(
226                             reduce_impl_span_to_impl_keyword(cm, impl_span),
227                             "`Self` type implicitly declared here, by this `impl`",
228                         );
229                     }
230                     match (maybe_trait_defid, maybe_impl_defid) {
231                         (Some(_), None) => {
232                             err.span_label(span, "can't use `Self` here");
233                         }
234                         (_, Some(_)) => {
235                             err.span_label(span, "use a type here instead");
236                         }
237                         (None, None) => bug!("`impl` without trait nor type?"),
238                     }
239                     return err;
240                 },
241                 Res::Def(DefKind::TyParam, def_id) => {
242                     if let Some(span) = resolver.definitions.opt_span(def_id) {
243                         err.span_label(span, "type parameter from outer function");
244                     }
245                 }
246                 Res::Def(DefKind::ConstParam, def_id) => {
247                     if let Some(span) = resolver.definitions.opt_span(def_id) {
248                         err.span_label(span, "const parameter from outer function");
249                     }
250                 }
251                 _ => {
252                     bug!("GenericParamsFromOuterFunction should only be used with Res::SelfTy, \
253                          DefKind::TyParam");
254                 }
255             }
256
257             // Try to retrieve the span of the function signature and generate a new message with
258             // a local type or const parameter.
259             let sugg_msg = &format!("try using a local generic parameter instead");
260             if let Some((sugg_span, new_snippet)) = cm.generate_local_type_param_snippet(span) {
261                 // Suggest the modification to the user
262                 err.span_suggestion(
263                     sugg_span,
264                     sugg_msg,
265                     new_snippet,
266                     Applicability::MachineApplicable,
267                 );
268             } else if let Some(sp) = cm.generate_fn_name_span(span) {
269                 err.span_label(sp,
270                     format!("try adding a local generic parameter in this method instead"));
271             } else {
272                 err.help(&format!("try using a local generic parameter instead"));
273             }
274
275             err
276         }
277         ResolutionError::NameAlreadyUsedInParameterList(name, first_use_span) => {
278              let mut err = struct_span_err!(resolver.session,
279                                             span,
280                                             E0403,
281                                             "the name `{}` is already used for a generic \
282                                             parameter in this list of generic parameters",
283                                             name);
284              err.span_label(span, "already used");
285              err.span_label(first_use_span.clone(), format!("first use of `{}`", name));
286              err
287         }
288         ResolutionError::MethodNotMemberOfTrait(method, trait_) => {
289             let mut err = struct_span_err!(resolver.session,
290                                            span,
291                                            E0407,
292                                            "method `{}` is not a member of trait `{}`",
293                                            method,
294                                            trait_);
295             err.span_label(span, format!("not a member of trait `{}`", trait_));
296             err
297         }
298         ResolutionError::TypeNotMemberOfTrait(type_, trait_) => {
299             let mut err = struct_span_err!(resolver.session,
300                              span,
301                              E0437,
302                              "type `{}` is not a member of trait `{}`",
303                              type_,
304                              trait_);
305             err.span_label(span, format!("not a member of trait `{}`", trait_));
306             err
307         }
308         ResolutionError::ConstNotMemberOfTrait(const_, trait_) => {
309             let mut err = struct_span_err!(resolver.session,
310                              span,
311                              E0438,
312                              "const `{}` is not a member of trait `{}`",
313                              const_,
314                              trait_);
315             err.span_label(span, format!("not a member of trait `{}`", trait_));
316             err
317         }
318         ResolutionError::VariableNotBoundInPattern(binding_error) => {
319             let target_sp = binding_error.target.iter().cloned().collect::<Vec<_>>();
320             let msp = MultiSpan::from_spans(target_sp.clone());
321             let msg = format!("variable `{}` is not bound in all patterns", binding_error.name);
322             let mut err = resolver.session.struct_span_err_with_code(
323                 msp,
324                 &msg,
325                 DiagnosticId::Error("E0408".into()),
326             );
327             for sp in target_sp {
328                 err.span_label(sp, format!("pattern doesn't bind `{}`", binding_error.name));
329             }
330             let origin_sp = binding_error.origin.iter().cloned();
331             for sp in origin_sp {
332                 err.span_label(sp, "variable not in all patterns");
333             }
334             err
335         }
336         ResolutionError::VariableBoundWithDifferentMode(variable_name,
337                                                         first_binding_span) => {
338             let mut err = struct_span_err!(resolver.session,
339                              span,
340                              E0409,
341                              "variable `{}` is bound in inconsistent \
342                              ways within the same match arm",
343                              variable_name);
344             err.span_label(span, "bound in different ways");
345             err.span_label(first_binding_span, "first binding");
346             err
347         }
348         ResolutionError::IdentifierBoundMoreThanOnceInParameterList(identifier) => {
349             let mut err = struct_span_err!(resolver.session,
350                              span,
351                              E0415,
352                              "identifier `{}` is bound more than once in this parameter list",
353                              identifier);
354             err.span_label(span, "used as parameter more than once");
355             err
356         }
357         ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(identifier) => {
358             let mut err = struct_span_err!(resolver.session,
359                              span,
360                              E0416,
361                              "identifier `{}` is bound more than once in the same pattern",
362                              identifier);
363             err.span_label(span, "used in a pattern more than once");
364             err
365         }
366         ResolutionError::UndeclaredLabel(name, lev_candidate) => {
367             let mut err = struct_span_err!(resolver.session,
368                                            span,
369                                            E0426,
370                                            "use of undeclared label `{}`",
371                                            name);
372             if let Some(lev_candidate) = lev_candidate {
373                 err.span_suggestion(
374                     span,
375                     "a label with a similar name exists in this scope",
376                     lev_candidate.to_string(),
377                     Applicability::MaybeIncorrect,
378                 );
379             } else {
380                 err.span_label(span, format!("undeclared label `{}`", name));
381             }
382             err
383         }
384         ResolutionError::SelfImportsOnlyAllowedWithin => {
385             struct_span_err!(resolver.session,
386                              span,
387                              E0429,
388                              "{}",
389                              "`self` imports are only allowed within a { } list")
390         }
391         ResolutionError::SelfImportCanOnlyAppearOnceInTheList => {
392             let mut err = struct_span_err!(resolver.session, span, E0430,
393                                            "`self` import can only appear once in an import list");
394             err.span_label(span, "can only appear once in an import list");
395             err
396         }
397         ResolutionError::SelfImportOnlyInImportListWithNonEmptyPrefix => {
398             let mut err = struct_span_err!(resolver.session, span, E0431,
399                                            "`self` import can only appear in an import list with \
400                                             a non-empty prefix");
401             err.span_label(span, "can only appear in an import list with a non-empty prefix");
402             err
403         }
404         ResolutionError::FailedToResolve { label, suggestion } => {
405             let mut err = struct_span_err!(resolver.session, span, E0433,
406                                            "failed to resolve: {}", &label);
407             err.span_label(span, label);
408
409             if let Some((suggestions, msg, applicability)) = suggestion {
410                 err.multipart_suggestion(&msg, suggestions, applicability);
411             }
412
413             err
414         }
415         ResolutionError::CannotCaptureDynamicEnvironmentInFnItem => {
416             let mut err = struct_span_err!(resolver.session,
417                                            span,
418                                            E0434,
419                                            "{}",
420                                            "can't capture dynamic environment in a fn item");
421             err.help("use the `|| { ... }` closure form instead");
422             err
423         }
424         ResolutionError::AttemptToUseNonConstantValueInConstant => {
425             let mut err = struct_span_err!(resolver.session, span, E0435,
426                                            "attempt to use a non-constant value in a constant");
427             err.span_label(span, "non-constant value");
428             err
429         }
430         ResolutionError::BindingShadowsSomethingUnacceptable(what_binding, name, binding) => {
431             let shadows_what = binding.descr();
432             let mut err = struct_span_err!(resolver.session, span, E0530, "{}s cannot shadow {}s",
433                                            what_binding, shadows_what);
434             err.span_label(span, format!("cannot be named the same as {} {}",
435                                          binding.article(), shadows_what));
436             let participle = if binding.is_import() { "imported" } else { "defined" };
437             let msg = format!("the {} `{}` is {} here", shadows_what, name, participle);
438             err.span_label(binding.span, msg);
439             err
440         }
441         ResolutionError::ForwardDeclaredTyParam => {
442             let mut err = struct_span_err!(resolver.session, span, E0128,
443                                            "type parameters with a default cannot use \
444                                             forward declared identifiers");
445             err.span_label(
446                 span, "defaulted type parameters cannot be forward declared".to_string());
447             err
448         }
449         ResolutionError::ConstParamDependentOnTypeParam => {
450             let mut err = struct_span_err!(
451                 resolver.session,
452                 span,
453                 E0671,
454                 "const parameters cannot depend on type parameters"
455             );
456             err.span_label(span, format!("const parameter depends on type parameter"));
457             err
458         }
459     }
460 }
461
462 /// Adjust the impl span so that just the `impl` keyword is taken by removing
463 /// everything after `<` (`"impl<T> Iterator for A<T> {}" -> "impl"`) and
464 /// everything after the first whitespace (`"impl Iterator for A" -> "impl"`).
465 ///
466 /// *Attention*: the method used is very fragile since it essentially duplicates the work of the
467 /// parser. If you need to use this function or something similar, please consider updating the
468 /// `source_map` functions and this function to something more robust.
469 fn reduce_impl_span_to_impl_keyword(cm: &SourceMap, impl_span: Span) -> Span {
470     let impl_span = cm.span_until_char(impl_span, '<');
471     let impl_span = cm.span_until_whitespace(impl_span);
472     impl_span
473 }
474
475 #[derive(Copy, Clone, Debug)]
476 struct BindingInfo {
477     span: Span,
478     binding_mode: BindingMode,
479 }
480
481 /// Map from the name in a pattern to its binding mode.
482 type BindingMap = FxHashMap<Ident, BindingInfo>;
483
484 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
485 enum PatternSource {
486     Match,
487     IfLet,
488     WhileLet,
489     Let,
490     For,
491     FnParam,
492 }
493
494 impl PatternSource {
495     fn descr(self) -> &'static str {
496         match self {
497             PatternSource::Match => "match binding",
498             PatternSource::IfLet => "if let binding",
499             PatternSource::WhileLet => "while let binding",
500             PatternSource::Let => "let binding",
501             PatternSource::For => "for binding",
502             PatternSource::FnParam => "function parameter",
503         }
504     }
505 }
506
507 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
508 enum AliasPossibility {
509     No,
510     Maybe,
511 }
512
513 #[derive(Copy, Clone, Debug)]
514 enum PathSource<'a> {
515     // Type paths `Path`.
516     Type,
517     // Trait paths in bounds or impls.
518     Trait(AliasPossibility),
519     // Expression paths `path`, with optional parent context.
520     Expr(Option<&'a Expr>),
521     // Paths in path patterns `Path`.
522     Pat,
523     // Paths in struct expressions and patterns `Path { .. }`.
524     Struct,
525     // Paths in tuple struct patterns `Path(..)`.
526     TupleStruct,
527     // `m::A::B` in `<T as m::A>::B::C`.
528     TraitItem(Namespace),
529     // Path in `pub(path)`
530     Visibility,
531 }
532
533 impl<'a> PathSource<'a> {
534     fn namespace(self) -> Namespace {
535         match self {
536             PathSource::Type | PathSource::Trait(_) | PathSource::Struct |
537             PathSource::Visibility => TypeNS,
538             PathSource::Expr(..) | PathSource::Pat | PathSource::TupleStruct => ValueNS,
539             PathSource::TraitItem(ns) => ns,
540         }
541     }
542
543     fn global_by_default(self) -> bool {
544         match self {
545             PathSource::Visibility => true,
546             PathSource::Type | PathSource::Expr(..) | PathSource::Pat |
547             PathSource::Struct | PathSource::TupleStruct |
548             PathSource::Trait(_) | PathSource::TraitItem(..) => false,
549         }
550     }
551
552     fn defer_to_typeck(self) -> bool {
553         match self {
554             PathSource::Type | PathSource::Expr(..) | PathSource::Pat |
555             PathSource::Struct | PathSource::TupleStruct => true,
556             PathSource::Trait(_) | PathSource::TraitItem(..) |
557             PathSource::Visibility => false,
558         }
559     }
560
561     fn descr_expected(self) -> &'static str {
562         match self {
563             PathSource::Type => "type",
564             PathSource::Trait(_) => "trait",
565             PathSource::Pat => "unit struct/variant or constant",
566             PathSource::Struct => "struct, variant or union type",
567             PathSource::TupleStruct => "tuple struct/variant",
568             PathSource::Visibility => "module",
569             PathSource::TraitItem(ns) => match ns {
570                 TypeNS => "associated type",
571                 ValueNS => "method or associated constant",
572                 MacroNS => bug!("associated macro"),
573             },
574             PathSource::Expr(parent) => match parent.map(|p| &p.node) {
575                 // "function" here means "anything callable" rather than `DefKind::Fn`,
576                 // this is not precise but usually more helpful than just "value".
577                 Some(&ExprKind::Call(..)) => "function",
578                 _ => "value",
579             },
580         }
581     }
582
583     fn is_expected(self, res: Res) -> bool {
584         match self {
585             PathSource::Type => match res {
586                 Res::Def(DefKind::Struct, _)
587                 | Res::Def(DefKind::Union, _)
588                 | Res::Def(DefKind::Enum, _)
589                 | Res::Def(DefKind::Trait, _)
590                 | Res::Def(DefKind::TraitAlias, _)
591                 | Res::Def(DefKind::TyAlias, _)
592                 | Res::Def(DefKind::AssociatedTy, _)
593                 | Res::PrimTy(..)
594                 | Res::Def(DefKind::TyParam, _)
595                 | Res::SelfTy(..)
596                 | Res::Def(DefKind::Existential, _)
597                 | Res::Def(DefKind::ForeignTy, _) => true,
598                 _ => false,
599             },
600             PathSource::Trait(AliasPossibility::No) => match res {
601                 Res::Def(DefKind::Trait, _) => true,
602                 _ => false,
603             },
604             PathSource::Trait(AliasPossibility::Maybe) => match res {
605                 Res::Def(DefKind::Trait, _) => true,
606                 Res::Def(DefKind::TraitAlias, _) => true,
607                 _ => false,
608             },
609             PathSource::Expr(..) => match res {
610                 Res::Def(DefKind::Ctor(_, CtorKind::Const), _)
611                 | Res::Def(DefKind::Ctor(_, CtorKind::Fn), _)
612                 | Res::Def(DefKind::Const, _)
613                 | Res::Def(DefKind::Static, _)
614                 | Res::Local(..)
615                 | Res::Upvar(..)
616                 | Res::Def(DefKind::Fn, _)
617                 | Res::Def(DefKind::Method, _)
618                 | Res::Def(DefKind::AssociatedConst, _)
619                 | Res::SelfCtor(..)
620                 | Res::Def(DefKind::ConstParam, _) => true,
621                 _ => false,
622             },
623             PathSource::Pat => match res {
624                 Res::Def(DefKind::Ctor(_, CtorKind::Const), _) |
625                 Res::Def(DefKind::Const, _) | Res::Def(DefKind::AssociatedConst, _) |
626                 Res::SelfCtor(..) => true,
627                 _ => false,
628             },
629             PathSource::TupleStruct => match res {
630                 Res::Def(DefKind::Ctor(_, CtorKind::Fn), _) | Res::SelfCtor(..) => true,
631                 _ => false,
632             },
633             PathSource::Struct => match res {
634                 Res::Def(DefKind::Struct, _)
635                 | Res::Def(DefKind::Union, _)
636                 | Res::Def(DefKind::Variant, _)
637                 | Res::Def(DefKind::TyAlias, _)
638                 | Res::Def(DefKind::AssociatedTy, _)
639                 | Res::SelfTy(..) => true,
640                 _ => false,
641             },
642             PathSource::TraitItem(ns) => match res {
643                 Res::Def(DefKind::AssociatedConst, _)
644                 | Res::Def(DefKind::Method, _) if ns == ValueNS => true,
645                 Res::Def(DefKind::AssociatedTy, _) if ns == TypeNS => true,
646                 _ => false,
647             },
648             PathSource::Visibility => match res {
649                 Res::Def(DefKind::Mod, _) => true,
650                 _ => false,
651             },
652         }
653     }
654
655     fn error_code(self, has_unexpected_resolution: bool) -> &'static str {
656         __diagnostic_used!(E0404);
657         __diagnostic_used!(E0405);
658         __diagnostic_used!(E0412);
659         __diagnostic_used!(E0422);
660         __diagnostic_used!(E0423);
661         __diagnostic_used!(E0425);
662         __diagnostic_used!(E0531);
663         __diagnostic_used!(E0532);
664         __diagnostic_used!(E0573);
665         __diagnostic_used!(E0574);
666         __diagnostic_used!(E0575);
667         __diagnostic_used!(E0576);
668         __diagnostic_used!(E0577);
669         __diagnostic_used!(E0578);
670         match (self, has_unexpected_resolution) {
671             (PathSource::Trait(_), true) => "E0404",
672             (PathSource::Trait(_), false) => "E0405",
673             (PathSource::Type, true) => "E0573",
674             (PathSource::Type, false) => "E0412",
675             (PathSource::Struct, true) => "E0574",
676             (PathSource::Struct, false) => "E0422",
677             (PathSource::Expr(..), true) => "E0423",
678             (PathSource::Expr(..), false) => "E0425",
679             (PathSource::Pat, true) | (PathSource::TupleStruct, true) => "E0532",
680             (PathSource::Pat, false) | (PathSource::TupleStruct, false) => "E0531",
681             (PathSource::TraitItem(..), true) => "E0575",
682             (PathSource::TraitItem(..), false) => "E0576",
683             (PathSource::Visibility, true) => "E0577",
684             (PathSource::Visibility, false) => "E0578",
685         }
686     }
687 }
688
689 // A minimal representation of a path segment. We use this in resolve because
690 // we synthesize 'path segments' which don't have the rest of an AST or HIR
691 // `PathSegment`.
692 #[derive(Clone, Copy, Debug)]
693 pub struct Segment {
694     ident: Ident,
695     id: Option<NodeId>,
696 }
697
698 impl Segment {
699     fn from_path(path: &Path) -> Vec<Segment> {
700         path.segments.iter().map(|s| s.into()).collect()
701     }
702
703     fn from_ident(ident: Ident) -> Segment {
704         Segment {
705             ident,
706             id: None,
707         }
708     }
709
710     fn names_to_string(segments: &[Segment]) -> String {
711         names_to_string(&segments.iter()
712                             .map(|seg| seg.ident)
713                             .collect::<Vec<_>>())
714     }
715 }
716
717 impl<'a> From<&'a ast::PathSegment> for Segment {
718     fn from(seg: &'a ast::PathSegment) -> Segment {
719         Segment {
720             ident: seg.ident,
721             id: Some(seg.id),
722         }
723     }
724 }
725
726 struct UsePlacementFinder {
727     target_module: NodeId,
728     span: Option<Span>,
729     found_use: bool,
730 }
731
732 impl UsePlacementFinder {
733     fn check(krate: &Crate, target_module: NodeId) -> (Option<Span>, bool) {
734         let mut finder = UsePlacementFinder {
735             target_module,
736             span: None,
737             found_use: false,
738         };
739         visit::walk_crate(&mut finder, krate);
740         (finder.span, finder.found_use)
741     }
742 }
743
744 impl<'tcx> Visitor<'tcx> for UsePlacementFinder {
745     fn visit_mod(
746         &mut self,
747         module: &'tcx ast::Mod,
748         _: Span,
749         _: &[ast::Attribute],
750         node_id: NodeId,
751     ) {
752         if self.span.is_some() {
753             return;
754         }
755         if node_id != self.target_module {
756             visit::walk_mod(self, module);
757             return;
758         }
759         // find a use statement
760         for item in &module.items {
761             match item.node {
762                 ItemKind::Use(..) => {
763                     // don't suggest placing a use before the prelude
764                     // import or other generated ones
765                     if item.span.ctxt().outer().expn_info().is_none() {
766                         self.span = Some(item.span.shrink_to_lo());
767                         self.found_use = true;
768                         return;
769                     }
770                 },
771                 // don't place use before extern crate
772                 ItemKind::ExternCrate(_) => {}
773                 // but place them before the first other item
774                 _ => if self.span.map_or(true, |span| item.span < span ) {
775                     if item.span.ctxt().outer().expn_info().is_none() {
776                         // don't insert between attributes and an item
777                         if item.attrs.is_empty() {
778                             self.span = Some(item.span.shrink_to_lo());
779                         } else {
780                             // find the first attribute on the item
781                             for attr in &item.attrs {
782                                 if self.span.map_or(true, |span| attr.span < span) {
783                                     self.span = Some(attr.span.shrink_to_lo());
784                                 }
785                             }
786                         }
787                     }
788                 },
789             }
790         }
791     }
792 }
793
794 /// Walks the whole crate in DFS order, visiting each item, resolving names as it goes.
795 impl<'a, 'tcx> Visitor<'tcx> for Resolver<'a> {
796     fn visit_item(&mut self, item: &'tcx Item) {
797         self.resolve_item(item);
798     }
799     fn visit_arm(&mut self, arm: &'tcx Arm) {
800         self.resolve_arm(arm);
801     }
802     fn visit_block(&mut self, block: &'tcx Block) {
803         self.resolve_block(block);
804     }
805     fn visit_anon_const(&mut self, constant: &'tcx ast::AnonConst) {
806         debug!("visit_anon_const {:?}", constant);
807         self.with_constant_rib(|this| {
808             visit::walk_anon_const(this, constant);
809         });
810     }
811     fn visit_expr(&mut self, expr: &'tcx Expr) {
812         self.resolve_expr(expr, None);
813     }
814     fn visit_local(&mut self, local: &'tcx Local) {
815         self.resolve_local(local);
816     }
817     fn visit_ty(&mut self, ty: &'tcx Ty) {
818         match ty.node {
819             TyKind::Path(ref qself, ref path) => {
820                 self.smart_resolve_path(ty.id, qself.as_ref(), path, PathSource::Type);
821             }
822             TyKind::ImplicitSelf => {
823                 let self_ty = keywords::SelfUpper.ident();
824                 let res = self.resolve_ident_in_lexical_scope(self_ty, TypeNS, Some(ty.id), ty.span)
825                               .map_or(Res::Err, |d| d.res());
826                 self.record_partial_res(ty.id, PartialRes::new(res));
827             }
828             _ => (),
829         }
830         visit::walk_ty(self, ty);
831     }
832     fn visit_poly_trait_ref(&mut self,
833                             tref: &'tcx ast::PolyTraitRef,
834                             m: &'tcx ast::TraitBoundModifier) {
835         self.smart_resolve_path(tref.trait_ref.ref_id, None,
836                                 &tref.trait_ref.path, PathSource::Trait(AliasPossibility::Maybe));
837         visit::walk_poly_trait_ref(self, tref, m);
838     }
839     fn visit_foreign_item(&mut self, foreign_item: &'tcx ForeignItem) {
840         let generic_params = match foreign_item.node {
841             ForeignItemKind::Fn(_, ref generics) => {
842                 HasGenericParams(generics, ItemRibKind)
843             }
844             ForeignItemKind::Static(..) => NoGenericParams,
845             ForeignItemKind::Ty => NoGenericParams,
846             ForeignItemKind::Macro(..) => NoGenericParams,
847         };
848         self.with_generic_param_rib(generic_params, |this| {
849             visit::walk_foreign_item(this, foreign_item);
850         });
851     }
852     fn visit_fn(&mut self,
853                 function_kind: FnKind<'tcx>,
854                 declaration: &'tcx FnDecl,
855                 _: Span,
856                 node_id: NodeId)
857     {
858         debug!("(resolving function) entering function");
859         let (rib_kind, asyncness) = match function_kind {
860             FnKind::ItemFn(_, ref header, ..) =>
861                 (FnItemRibKind, &header.asyncness.node),
862             FnKind::Method(_, ref sig, _, _) =>
863                 (TraitOrImplItemRibKind, &sig.header.asyncness.node),
864             FnKind::Closure(_) =>
865                 // Async closures aren't resolved through `visit_fn`-- they're
866                 // processed separately
867                 (ClosureRibKind(node_id), &IsAsync::NotAsync),
868         };
869
870         // Create a value rib for the function.
871         self.ribs[ValueNS].push(Rib::new(rib_kind));
872
873         // Create a label rib for the function.
874         self.label_ribs.push(Rib::new(rib_kind));
875
876         // Add each argument to the rib.
877         let mut bindings_list = FxHashMap::default();
878         let mut add_argument = |argument: &ast::Arg| {
879             self.resolve_pattern(&argument.pat, PatternSource::FnParam, &mut bindings_list);
880             self.visit_ty(&argument.ty);
881             debug!("(resolving function) recorded argument");
882         };
883
884         // Walk the generated async arguments if this is an `async fn`, otherwise walk the
885         // normal arguments.
886         if let IsAsync::Async { ref arguments, .. } = asyncness {
887             for (i, a) in arguments.iter().enumerate() {
888                 if let Some(arg) = &a.arg {
889                     add_argument(&arg);
890                 } else {
891                     add_argument(&declaration.inputs[i]);
892                 }
893             }
894         } else {
895             for a in &declaration.inputs { add_argument(a); }
896         }
897
898         visit::walk_fn_ret_ty(self, &declaration.output);
899
900         // Resolve the function body, potentially inside the body of an async closure
901         if let IsAsync::Async { closure_id, .. } = asyncness {
902             let rib_kind = ClosureRibKind(*closure_id);
903             self.ribs[ValueNS].push(Rib::new(rib_kind));
904             self.label_ribs.push(Rib::new(rib_kind));
905         }
906
907         match function_kind {
908             FnKind::ItemFn(.., body) | FnKind::Method(.., body) => {
909                 if let IsAsync::Async { ref arguments, .. } = asyncness {
910                     let mut body = body.clone();
911                     // Insert the generated statements into the body before attempting to
912                     // resolve names.
913                     for a in arguments.iter().rev() {
914                         if let Some(pat_stmt) = a.pat_stmt.clone() {
915                             body.stmts.insert(0, pat_stmt);
916                         }
917                         body.stmts.insert(0, a.move_stmt.clone());
918                     }
919                     self.visit_block(&body);
920                 } else {
921                     self.visit_block(body);
922                 }
923             }
924             FnKind::Closure(body) => {
925                 self.visit_expr(body);
926             }
927         };
928
929         // Leave the body of the async closure
930         if asyncness.is_async() {
931             self.label_ribs.pop();
932             self.ribs[ValueNS].pop();
933         }
934
935         debug!("(resolving function) leaving function");
936
937         self.label_ribs.pop();
938         self.ribs[ValueNS].pop();
939     }
940
941     fn visit_generics(&mut self, generics: &'tcx Generics) {
942         // For type parameter defaults, we have to ban access
943         // to following type parameters, as the InternalSubsts can only
944         // provide previous type parameters as they're built. We
945         // put all the parameters on the ban list and then remove
946         // them one by one as they are processed and become available.
947         let mut default_ban_rib = Rib::new(ForwardTyParamBanRibKind);
948         let mut found_default = false;
949         default_ban_rib.bindings.extend(generics.params.iter()
950             .filter_map(|param| match param.kind {
951                 GenericParamKind::Const { .. } |
952                 GenericParamKind::Lifetime { .. } => None,
953                 GenericParamKind::Type { ref default, .. } => {
954                     found_default |= default.is_some();
955                     if found_default {
956                         Some((Ident::with_empty_ctxt(param.ident.name), Res::Err))
957                     } else {
958                         None
959                     }
960                 }
961             }));
962
963         // We also ban access to type parameters for use as the types of const parameters.
964         let mut const_ty_param_ban_rib = Rib::new(TyParamAsConstParamTy);
965         const_ty_param_ban_rib.bindings.extend(generics.params.iter()
966             .filter(|param| {
967                 if let GenericParamKind::Type { .. } = param.kind {
968                     true
969                 } else {
970                     false
971                 }
972             })
973             .map(|param| (Ident::with_empty_ctxt(param.ident.name), Res::Err)));
974
975         for param in &generics.params {
976             match param.kind {
977                 GenericParamKind::Lifetime { .. } => self.visit_generic_param(param),
978                 GenericParamKind::Type { ref default, .. } => {
979                     for bound in &param.bounds {
980                         self.visit_param_bound(bound);
981                     }
982
983                     if let Some(ref ty) = default {
984                         self.ribs[TypeNS].push(default_ban_rib);
985                         self.visit_ty(ty);
986                         default_ban_rib = self.ribs[TypeNS].pop().unwrap();
987                     }
988
989                     // Allow all following defaults to refer to this type parameter.
990                     default_ban_rib.bindings.remove(&Ident::with_empty_ctxt(param.ident.name));
991                 }
992                 GenericParamKind::Const { ref ty } => {
993                     self.ribs[TypeNS].push(const_ty_param_ban_rib);
994
995                     for bound in &param.bounds {
996                         self.visit_param_bound(bound);
997                     }
998
999                     self.visit_ty(ty);
1000
1001                     const_ty_param_ban_rib = self.ribs[TypeNS].pop().unwrap();
1002                 }
1003             }
1004         }
1005         for p in &generics.where_clause.predicates {
1006             self.visit_where_predicate(p);
1007         }
1008     }
1009 }
1010
1011 #[derive(Copy, Clone)]
1012 enum GenericParameters<'a, 'b> {
1013     NoGenericParams,
1014     HasGenericParams(// Type parameters.
1015                       &'b Generics,
1016
1017                       // The kind of the rib used for type parameters.
1018                       RibKind<'a>),
1019 }
1020
1021 /// The rib kind controls the translation of local
1022 /// definitions (`Res::Local`) to upvars (`Res::Upvar`).
1023 #[derive(Copy, Clone, Debug)]
1024 enum RibKind<'a> {
1025     /// No translation needs to be applied.
1026     NormalRibKind,
1027
1028     /// We passed through a closure scope at the given `NodeId`.
1029     /// Translate upvars as appropriate.
1030     ClosureRibKind(NodeId /* func id */),
1031
1032     /// We passed through an impl or trait and are now in one of its
1033     /// methods or associated types. Allow references to ty params that impl or trait
1034     /// binds. Disallow any other upvars (including other ty params that are
1035     /// upvars).
1036     TraitOrImplItemRibKind,
1037
1038     /// We passed through a function definition. Disallow upvars.
1039     /// Permit only those const parameters that are specified in the function's generics.
1040     FnItemRibKind,
1041
1042     /// We passed through an item scope. Disallow upvars.
1043     ItemRibKind,
1044
1045     /// We're in a constant item. Can't refer to dynamic stuff.
1046     ConstantItemRibKind,
1047
1048     /// We passed through a module.
1049     ModuleRibKind(Module<'a>),
1050
1051     /// We passed through a `macro_rules!` statement
1052     MacroDefinition(DefId),
1053
1054     /// All bindings in this rib are type parameters that can't be used
1055     /// from the default of a type parameter because they're not declared
1056     /// before said type parameter. Also see the `visit_generics` override.
1057     ForwardTyParamBanRibKind,
1058
1059     /// We forbid the use of type parameters as the types of const parameters.
1060     TyParamAsConstParamTy,
1061 }
1062
1063 /// A single local scope.
1064 ///
1065 /// A rib represents a scope names can live in. Note that these appear in many places, not just
1066 /// around braces. At any place where the list of accessible names (of the given namespace)
1067 /// changes or a new restrictions on the name accessibility are introduced, a new rib is put onto a
1068 /// stack. This may be, for example, a `let` statement (because it introduces variables), a macro,
1069 /// etc.
1070 ///
1071 /// Different [rib kinds](enum.RibKind) are transparent for different names.
1072 ///
1073 /// The resolution keeps a separate stack of ribs as it traverses the AST for each namespace. When
1074 /// resolving, the name is looked up from inside out.
1075 #[derive(Debug)]
1076 struct Rib<'a, R = Res> {
1077     bindings: FxHashMap<Ident, R>,
1078     kind: RibKind<'a>,
1079 }
1080
1081 impl<'a, R> Rib<'a, R> {
1082     fn new(kind: RibKind<'a>) -> Rib<'a, R> {
1083         Rib {
1084             bindings: Default::default(),
1085             kind,
1086         }
1087     }
1088 }
1089
1090 /// An intermediate resolution result.
1091 ///
1092 /// This refers to the thing referred by a name. The difference between `Res` and `Item` is that
1093 /// items are visible in their whole block, while `Res`es only from the place they are defined
1094 /// forward.
1095 enum LexicalScopeBinding<'a> {
1096     Item(&'a NameBinding<'a>),
1097     Res(Res),
1098 }
1099
1100 impl<'a> LexicalScopeBinding<'a> {
1101     fn item(self) -> Option<&'a NameBinding<'a>> {
1102         match self {
1103             LexicalScopeBinding::Item(binding) => Some(binding),
1104             _ => None,
1105         }
1106     }
1107
1108     fn res(self) -> Res {
1109         match self {
1110             LexicalScopeBinding::Item(binding) => binding.res(),
1111             LexicalScopeBinding::Res(res) => res,
1112         }
1113     }
1114 }
1115
1116 #[derive(Copy, Clone, Debug)]
1117 enum ModuleOrUniformRoot<'a> {
1118     /// Regular module.
1119     Module(Module<'a>),
1120
1121     /// Virtual module that denotes resolution in crate root with fallback to extern prelude.
1122     CrateRootAndExternPrelude,
1123
1124     /// Virtual module that denotes resolution in extern prelude.
1125     /// Used for paths starting with `::` on 2018 edition.
1126     ExternPrelude,
1127
1128     /// Virtual module that denotes resolution in current scope.
1129     /// Used only for resolving single-segment imports. The reason it exists is that import paths
1130     /// are always split into two parts, the first of which should be some kind of module.
1131     CurrentScope,
1132 }
1133
1134 impl ModuleOrUniformRoot<'_> {
1135     fn same_def(lhs: Self, rhs: Self) -> bool {
1136         match (lhs, rhs) {
1137             (ModuleOrUniformRoot::Module(lhs),
1138              ModuleOrUniformRoot::Module(rhs)) => lhs.def_id() == rhs.def_id(),
1139             (ModuleOrUniformRoot::CrateRootAndExternPrelude,
1140              ModuleOrUniformRoot::CrateRootAndExternPrelude) |
1141             (ModuleOrUniformRoot::ExternPrelude, ModuleOrUniformRoot::ExternPrelude) |
1142             (ModuleOrUniformRoot::CurrentScope, ModuleOrUniformRoot::CurrentScope) => true,
1143             _ => false,
1144         }
1145     }
1146 }
1147
1148 #[derive(Clone, Debug)]
1149 enum PathResult<'a> {
1150     Module(ModuleOrUniformRoot<'a>),
1151     NonModule(PartialRes),
1152     Indeterminate,
1153     Failed {
1154         span: Span,
1155         label: String,
1156         suggestion: Option<Suggestion>,
1157         is_error_from_last_segment: bool,
1158     },
1159 }
1160
1161 enum ModuleKind {
1162     /// An anonymous module; e.g., just a block.
1163     ///
1164     /// ```
1165     /// fn main() {
1166     ///     fn f() {} // (1)
1167     ///     { // This is an anonymous module
1168     ///         f(); // This resolves to (2) as we are inside the block.
1169     ///         fn f() {} // (2)
1170     ///     }
1171     ///     f(); // Resolves to (1)
1172     /// }
1173     /// ```
1174     Block(NodeId),
1175     /// Any module with a name.
1176     ///
1177     /// This could be:
1178     ///
1179     /// * A normal module â€’ either `mod from_file;` or `mod from_block { }`.
1180     /// * A trait or an enum (it implicitly contains associated types, methods and variant
1181     ///   constructors).
1182     Def(DefKind, DefId, Name),
1183 }
1184
1185 impl ModuleKind {
1186     /// Get name of the module.
1187     pub fn name(&self) -> Option<Name> {
1188         match self {
1189             ModuleKind::Block(..) => None,
1190             ModuleKind::Def(.., name) => Some(*name),
1191         }
1192     }
1193 }
1194
1195 /// One node in the tree of modules.
1196 pub struct ModuleData<'a> {
1197     parent: Option<Module<'a>>,
1198     kind: ModuleKind,
1199
1200     // The def id of the closest normal module (`mod`) ancestor (including this module).
1201     normal_ancestor_id: DefId,
1202
1203     resolutions: RefCell<FxHashMap<(Ident, Namespace), &'a RefCell<NameResolution<'a>>>>,
1204     single_segment_macro_resolutions: RefCell<Vec<(Ident, MacroKind, ParentScope<'a>,
1205                                                    Option<&'a NameBinding<'a>>)>>,
1206     multi_segment_macro_resolutions: RefCell<Vec<(Vec<Segment>, Span, MacroKind, ParentScope<'a>,
1207                                                   Option<Res>)>>,
1208     builtin_attrs: RefCell<Vec<(Ident, ParentScope<'a>)>>,
1209
1210     // Macro invocations that can expand into items in this module.
1211     unresolved_invocations: RefCell<FxHashSet<Mark>>,
1212
1213     no_implicit_prelude: bool,
1214
1215     glob_importers: RefCell<Vec<&'a ImportDirective<'a>>>,
1216     globs: RefCell<Vec<&'a ImportDirective<'a>>>,
1217
1218     // Used to memoize the traits in this module for faster searches through all traits in scope.
1219     traits: RefCell<Option<Box<[(Ident, &'a NameBinding<'a>)]>>>,
1220
1221     // Whether this module is populated. If not populated, any attempt to
1222     // access the children must be preceded with a
1223     // `populate_module_if_necessary` call.
1224     populated: Cell<bool>,
1225
1226     /// Span of the module itself. Used for error reporting.
1227     span: Span,
1228
1229     expansion: Mark,
1230 }
1231
1232 type Module<'a> = &'a ModuleData<'a>;
1233
1234 impl<'a> ModuleData<'a> {
1235     fn new(parent: Option<Module<'a>>,
1236            kind: ModuleKind,
1237            normal_ancestor_id: DefId,
1238            expansion: Mark,
1239            span: Span) -> Self {
1240         ModuleData {
1241             parent,
1242             kind,
1243             normal_ancestor_id,
1244             resolutions: Default::default(),
1245             single_segment_macro_resolutions: RefCell::new(Vec::new()),
1246             multi_segment_macro_resolutions: RefCell::new(Vec::new()),
1247             builtin_attrs: RefCell::new(Vec::new()),
1248             unresolved_invocations: Default::default(),
1249             no_implicit_prelude: false,
1250             glob_importers: RefCell::new(Vec::new()),
1251             globs: RefCell::new(Vec::new()),
1252             traits: RefCell::new(None),
1253             populated: Cell::new(normal_ancestor_id.is_local()),
1254             span,
1255             expansion,
1256         }
1257     }
1258
1259     fn for_each_child<F: FnMut(Ident, Namespace, &'a NameBinding<'a>)>(&self, mut f: F) {
1260         for (&(ident, ns), name_resolution) in self.resolutions.borrow().iter() {
1261             name_resolution.borrow().binding.map(|binding| f(ident, ns, binding));
1262         }
1263     }
1264
1265     fn for_each_child_stable<F: FnMut(Ident, Namespace, &'a NameBinding<'a>)>(&self, mut f: F) {
1266         let resolutions = self.resolutions.borrow();
1267         let mut resolutions = resolutions.iter().collect::<Vec<_>>();
1268         resolutions.sort_by_cached_key(|&(&(ident, ns), _)| (ident.as_str(), ns));
1269         for &(&(ident, ns), &resolution) in resolutions.iter() {
1270             resolution.borrow().binding.map(|binding| f(ident, ns, binding));
1271         }
1272     }
1273
1274     fn res(&self) -> Option<Res> {
1275         match self.kind {
1276             ModuleKind::Def(kind, def_id, _) => Some(Res::Def(kind, def_id)),
1277             _ => None,
1278         }
1279     }
1280
1281     fn def_kind(&self) -> Option<DefKind> {
1282         match self.kind {
1283             ModuleKind::Def(kind, ..) => Some(kind),
1284             _ => None,
1285         }
1286     }
1287
1288     fn def_id(&self) -> Option<DefId> {
1289         match self.kind {
1290             ModuleKind::Def(_, def_id, _) => Some(def_id),
1291             _ => None,
1292         }
1293     }
1294
1295     // `self` resolves to the first module ancestor that `is_normal`.
1296     fn is_normal(&self) -> bool {
1297         match self.kind {
1298             ModuleKind::Def(DefKind::Mod, _, _) => true,
1299             _ => false,
1300         }
1301     }
1302
1303     fn is_trait(&self) -> bool {
1304         match self.kind {
1305             ModuleKind::Def(DefKind::Trait, _, _) => true,
1306             _ => false,
1307         }
1308     }
1309
1310     fn nearest_item_scope(&'a self) -> Module<'a> {
1311         if self.is_trait() { self.parent.unwrap() } else { self }
1312     }
1313
1314     fn is_ancestor_of(&self, mut other: &Self) -> bool {
1315         while !ptr::eq(self, other) {
1316             if let Some(parent) = other.parent {
1317                 other = parent;
1318             } else {
1319                 return false;
1320             }
1321         }
1322         true
1323     }
1324 }
1325
1326 impl<'a> fmt::Debug for ModuleData<'a> {
1327     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1328         write!(f, "{:?}", self.res())
1329     }
1330 }
1331
1332 /// Records a possibly-private value, type, or module definition.
1333 #[derive(Clone, Debug)]
1334 pub struct NameBinding<'a> {
1335     kind: NameBindingKind<'a>,
1336     ambiguity: Option<(&'a NameBinding<'a>, AmbiguityKind)>,
1337     expansion: Mark,
1338     span: Span,
1339     vis: ty::Visibility,
1340 }
1341
1342 pub trait ToNameBinding<'a> {
1343     fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a>;
1344 }
1345
1346 impl<'a> ToNameBinding<'a> for &'a NameBinding<'a> {
1347     fn to_name_binding(self, _: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
1348         self
1349     }
1350 }
1351
1352 #[derive(Clone, Debug)]
1353 enum NameBindingKind<'a> {
1354     Res(Res, /* is_macro_export */ bool),
1355     Module(Module<'a>),
1356     Import {
1357         binding: &'a NameBinding<'a>,
1358         directive: &'a ImportDirective<'a>,
1359         used: Cell<bool>,
1360     },
1361 }
1362
1363 impl<'a> NameBindingKind<'a> {
1364     /// Is this a name binding of a import?
1365     fn is_import(&self) -> bool {
1366         match *self {
1367             NameBindingKind::Import { .. } => true,
1368             _ => false,
1369         }
1370     }
1371 }
1372
1373 struct PrivacyError<'a>(Span, Ident, &'a NameBinding<'a>);
1374
1375 struct UseError<'a> {
1376     err: DiagnosticBuilder<'a>,
1377     /// Attach `use` statements for these candidates.
1378     candidates: Vec<ImportSuggestion>,
1379     /// The `NodeId` of the module to place the use-statements in.
1380     node_id: NodeId,
1381     /// Whether the diagnostic should state that it's "better".
1382     better: bool,
1383 }
1384
1385 #[derive(Clone, Copy, PartialEq, Debug)]
1386 enum AmbiguityKind {
1387     Import,
1388     BuiltinAttr,
1389     DeriveHelper,
1390     LegacyHelperVsPrelude,
1391     LegacyVsModern,
1392     GlobVsOuter,
1393     GlobVsGlob,
1394     GlobVsExpanded,
1395     MoreExpandedVsOuter,
1396 }
1397
1398 impl AmbiguityKind {
1399     fn descr(self) -> &'static str {
1400         match self {
1401             AmbiguityKind::Import =>
1402                 "name vs any other name during import resolution",
1403             AmbiguityKind::BuiltinAttr =>
1404                 "built-in attribute vs any other name",
1405             AmbiguityKind::DeriveHelper =>
1406                 "derive helper attribute vs any other name",
1407             AmbiguityKind::LegacyHelperVsPrelude =>
1408                 "legacy plugin helper attribute vs name from prelude",
1409             AmbiguityKind::LegacyVsModern =>
1410                 "`macro_rules` vs non-`macro_rules` from other module",
1411             AmbiguityKind::GlobVsOuter =>
1412                 "glob import vs any other name from outer scope during import/macro resolution",
1413             AmbiguityKind::GlobVsGlob =>
1414                 "glob import vs glob import in the same module",
1415             AmbiguityKind::GlobVsExpanded =>
1416                 "glob import vs macro-expanded name in the same \
1417                  module during import/macro resolution",
1418             AmbiguityKind::MoreExpandedVsOuter =>
1419                 "macro-expanded name vs less macro-expanded name \
1420                  from outer scope during import/macro resolution",
1421         }
1422     }
1423 }
1424
1425 /// Miscellaneous bits of metadata for better ambiguity error reporting.
1426 #[derive(Clone, Copy, PartialEq)]
1427 enum AmbiguityErrorMisc {
1428     SuggestCrate,
1429     SuggestSelf,
1430     FromPrelude,
1431     None,
1432 }
1433
1434 struct AmbiguityError<'a> {
1435     kind: AmbiguityKind,
1436     ident: Ident,
1437     b1: &'a NameBinding<'a>,
1438     b2: &'a NameBinding<'a>,
1439     misc1: AmbiguityErrorMisc,
1440     misc2: AmbiguityErrorMisc,
1441 }
1442
1443 impl<'a> NameBinding<'a> {
1444     fn module(&self) -> Option<Module<'a>> {
1445         match self.kind {
1446             NameBindingKind::Module(module) => Some(module),
1447             NameBindingKind::Import { binding, .. } => binding.module(),
1448             _ => None,
1449         }
1450     }
1451
1452     fn res(&self) -> Res {
1453         match self.kind {
1454             NameBindingKind::Res(res, _) => res,
1455             NameBindingKind::Module(module) => module.res().unwrap(),
1456             NameBindingKind::Import { binding, .. } => binding.res(),
1457         }
1458     }
1459
1460     fn is_ambiguity(&self) -> bool {
1461         self.ambiguity.is_some() || match self.kind {
1462             NameBindingKind::Import { binding, .. } => binding.is_ambiguity(),
1463             _ => false,
1464         }
1465     }
1466
1467     // We sometimes need to treat variants as `pub` for backwards compatibility.
1468     fn pseudo_vis(&self) -> ty::Visibility {
1469         if self.is_variant() && self.res().def_id().is_local() {
1470             ty::Visibility::Public
1471         } else {
1472             self.vis
1473         }
1474     }
1475
1476     fn is_variant(&self) -> bool {
1477         match self.kind {
1478             NameBindingKind::Res(Res::Def(DefKind::Variant, _), _) |
1479             NameBindingKind::Res(Res::Def(DefKind::Ctor(CtorOf::Variant, ..), _), _) => true,
1480             _ => false,
1481         }
1482     }
1483
1484     fn is_extern_crate(&self) -> bool {
1485         match self.kind {
1486             NameBindingKind::Import {
1487                 directive: &ImportDirective {
1488                     subclass: ImportDirectiveSubclass::ExternCrate { .. }, ..
1489                 }, ..
1490             } => true,
1491             NameBindingKind::Module(
1492                 &ModuleData { kind: ModuleKind::Def(DefKind::Mod, def_id, _), .. }
1493             ) => def_id.index == CRATE_DEF_INDEX,
1494             _ => false,
1495         }
1496     }
1497
1498     fn is_import(&self) -> bool {
1499         match self.kind {
1500             NameBindingKind::Import { .. } => true,
1501             _ => false,
1502         }
1503     }
1504
1505     fn is_glob_import(&self) -> bool {
1506         match self.kind {
1507             NameBindingKind::Import { directive, .. } => directive.is_glob(),
1508             _ => false,
1509         }
1510     }
1511
1512     fn is_importable(&self) -> bool {
1513         match self.res() {
1514             Res::Def(DefKind::AssociatedConst, _)
1515             | Res::Def(DefKind::Method, _)
1516             | Res::Def(DefKind::AssociatedTy, _) => false,
1517             _ => true,
1518         }
1519     }
1520
1521     fn is_macro_def(&self) -> bool {
1522         match self.kind {
1523             NameBindingKind::Res(Res::Def(DefKind::Macro(..), _), _) => true,
1524             _ => false,
1525         }
1526     }
1527
1528     fn macro_kind(&self) -> Option<MacroKind> {
1529         match self.res() {
1530             Res::Def(DefKind::Macro(kind), _) => Some(kind),
1531             Res::NonMacroAttr(..) => Some(MacroKind::Attr),
1532             _ => None,
1533         }
1534     }
1535
1536     fn descr(&self) -> &'static str {
1537         if self.is_extern_crate() { "extern crate" } else { self.res().descr() }
1538     }
1539
1540     fn article(&self) -> &'static str {
1541         if self.is_extern_crate() { "an" } else { self.res().article() }
1542     }
1543
1544     // Suppose that we resolved macro invocation with `invoc_parent_expansion` to binding `binding`
1545     // at some expansion round `max(invoc, binding)` when they both emerged from macros.
1546     // Then this function returns `true` if `self` may emerge from a macro *after* that
1547     // in some later round and screw up our previously found resolution.
1548     // See more detailed explanation in
1549     // https://github.com/rust-lang/rust/pull/53778#issuecomment-419224049
1550     fn may_appear_after(&self, invoc_parent_expansion: Mark, binding: &NameBinding<'_>) -> bool {
1551         // self > max(invoc, binding) => !(self <= invoc || self <= binding)
1552         // Expansions are partially ordered, so "may appear after" is an inversion of
1553         // "certainly appears before or simultaneously" and includes unordered cases.
1554         let self_parent_expansion = self.expansion;
1555         let other_parent_expansion = binding.expansion;
1556         let certainly_before_other_or_simultaneously =
1557             other_parent_expansion.is_descendant_of(self_parent_expansion);
1558         let certainly_before_invoc_or_simultaneously =
1559             invoc_parent_expansion.is_descendant_of(self_parent_expansion);
1560         !(certainly_before_other_or_simultaneously || certainly_before_invoc_or_simultaneously)
1561     }
1562 }
1563
1564 /// Interns the names of the primitive types.
1565 ///
1566 /// All other types are defined somewhere and possibly imported, but the primitive ones need
1567 /// special handling, since they have no place of origin.
1568 #[derive(Default)]
1569 struct PrimitiveTypeTable {
1570     primitive_types: FxHashMap<Name, PrimTy>,
1571 }
1572
1573 impl PrimitiveTypeTable {
1574     fn new() -> PrimitiveTypeTable {
1575         let mut table = PrimitiveTypeTable::default();
1576
1577         table.intern("bool", Bool);
1578         table.intern("char", Char);
1579         table.intern("f32", Float(FloatTy::F32));
1580         table.intern("f64", Float(FloatTy::F64));
1581         table.intern("isize", Int(IntTy::Isize));
1582         table.intern("i8", Int(IntTy::I8));
1583         table.intern("i16", Int(IntTy::I16));
1584         table.intern("i32", Int(IntTy::I32));
1585         table.intern("i64", Int(IntTy::I64));
1586         table.intern("i128", Int(IntTy::I128));
1587         table.intern("str", Str);
1588         table.intern("usize", Uint(UintTy::Usize));
1589         table.intern("u8", Uint(UintTy::U8));
1590         table.intern("u16", Uint(UintTy::U16));
1591         table.intern("u32", Uint(UintTy::U32));
1592         table.intern("u64", Uint(UintTy::U64));
1593         table.intern("u128", Uint(UintTy::U128));
1594         table
1595     }
1596
1597     fn intern(&mut self, string: &str, primitive_type: PrimTy) {
1598         self.primitive_types.insert(Symbol::intern(string), primitive_type);
1599     }
1600 }
1601
1602 #[derive(Debug, Default, Clone)]
1603 pub struct ExternPreludeEntry<'a> {
1604     extern_crate_item: Option<&'a NameBinding<'a>>,
1605     pub introduced_by_item: bool,
1606 }
1607
1608 /// The main resolver class.
1609 ///
1610 /// This is the visitor that walks the whole crate.
1611 pub struct Resolver<'a> {
1612     session: &'a Session,
1613     cstore: &'a CStore,
1614
1615     pub definitions: Definitions,
1616
1617     graph_root: Module<'a>,
1618
1619     prelude: Option<Module<'a>>,
1620     pub extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'a>>,
1621
1622     /// N.B., this is used only for better diagnostics, not name resolution itself.
1623     has_self: FxHashSet<DefId>,
1624
1625     /// Names of fields of an item `DefId` accessible with dot syntax.
1626     /// Used for hints during error reporting.
1627     field_names: FxHashMap<DefId, Vec<Name>>,
1628
1629     /// All imports known to succeed or fail.
1630     determined_imports: Vec<&'a ImportDirective<'a>>,
1631
1632     /// All non-determined imports.
1633     indeterminate_imports: Vec<&'a ImportDirective<'a>>,
1634
1635     /// The module that represents the current item scope.
1636     current_module: Module<'a>,
1637
1638     /// The current set of local scopes for types and values.
1639     /// FIXME #4948: Reuse ribs to avoid allocation.
1640     ribs: PerNS<Vec<Rib<'a>>>,
1641
1642     /// The current set of local scopes, for labels.
1643     label_ribs: Vec<Rib<'a, NodeId>>,
1644
1645     /// The trait that the current context can refer to.
1646     current_trait_ref: Option<(Module<'a>, TraitRef)>,
1647
1648     /// The current self type if inside an impl (used for better errors).
1649     current_self_type: Option<Ty>,
1650
1651     /// The current self item if inside an ADT (used for better errors).
1652     current_self_item: Option<NodeId>,
1653
1654     /// FIXME: Refactor things so that these fields are passed through arguments and not resolver.
1655     /// We are resolving a last import segment during import validation.
1656     last_import_segment: bool,
1657     /// This binding should be ignored during in-module resolution, so that we don't get
1658     /// "self-confirming" import resolutions during import validation.
1659     blacklisted_binding: Option<&'a NameBinding<'a>>,
1660
1661     /// The idents for the primitive types.
1662     primitive_type_table: PrimitiveTypeTable,
1663
1664     /// Resolutions for nodes that have a single resolution.
1665     partial_res_map: NodeMap<PartialRes>,
1666     /// Resolutions for import nodes, which have multiple resolutions in different namespaces.
1667     import_res_map: NodeMap<PerNS<Option<Res>>>,
1668     /// Resolutions for labels (node IDs of their corresponding blocks or loops).
1669     label_res_map: NodeMap<NodeId>,
1670
1671     pub upvars: UpvarMap,
1672     upvars_seen: NodeMap<NodeMap<usize>>,
1673     pub export_map: ExportMap<NodeId>,
1674     pub trait_map: TraitMap,
1675
1676     /// A map from nodes to anonymous modules.
1677     /// Anonymous modules are pseudo-modules that are implicitly created around items
1678     /// contained within blocks.
1679     ///
1680     /// For example, if we have this:
1681     ///
1682     ///  fn f() {
1683     ///      fn g() {
1684     ///          ...
1685     ///      }
1686     ///  }
1687     ///
1688     /// There will be an anonymous module created around `g` with the ID of the
1689     /// entry block for `f`.
1690     block_map: NodeMap<Module<'a>>,
1691     module_map: FxHashMap<DefId, Module<'a>>,
1692     extern_module_map: FxHashMap<(DefId, bool /* MacrosOnly? */), Module<'a>>,
1693     binding_parent_modules: FxHashMap<PtrKey<'a, NameBinding<'a>>, Module<'a>>,
1694
1695     /// Maps glob imports to the names of items actually imported.
1696     pub glob_map: GlobMap,
1697
1698     used_imports: FxHashSet<(NodeId, Namespace)>,
1699     pub maybe_unused_trait_imports: NodeSet,
1700     pub maybe_unused_extern_crates: Vec<(NodeId, Span)>,
1701
1702     /// A list of labels as of yet unused. Labels will be removed from this map when
1703     /// they are used (in a `break` or `continue` statement)
1704     pub unused_labels: FxHashMap<NodeId, Span>,
1705
1706     /// Privacy errors are delayed until the end in order to deduplicate them.
1707     privacy_errors: Vec<PrivacyError<'a>>,
1708     /// Ambiguity errors are delayed for deduplication.
1709     ambiguity_errors: Vec<AmbiguityError<'a>>,
1710     /// `use` injections are delayed for better placement and deduplication.
1711     use_injections: Vec<UseError<'a>>,
1712     /// Crate-local macro expanded `macro_export` referred to by a module-relative path.
1713     macro_expanded_macro_export_errors: BTreeSet<(Span, Span)>,
1714
1715     arenas: &'a ResolverArenas<'a>,
1716     dummy_binding: &'a NameBinding<'a>,
1717
1718     crate_loader: &'a mut CrateLoader<'a>,
1719     macro_names: FxHashSet<Ident>,
1720     builtin_macros: FxHashMap<Name, &'a NameBinding<'a>>,
1721     macro_use_prelude: FxHashMap<Name, &'a NameBinding<'a>>,
1722     pub all_macros: FxHashMap<Name, Res>,
1723     macro_map: FxHashMap<DefId, Lrc<SyntaxExtension>>,
1724     macro_defs: FxHashMap<Mark, DefId>,
1725     local_macro_def_scopes: FxHashMap<NodeId, Module<'a>>,
1726
1727     /// List of crate local macros that we need to warn about as being unused.
1728     /// Right now this only includes macro_rules! macros, and macros 2.0.
1729     unused_macros: FxHashSet<DefId>,
1730
1731     /// Maps the `Mark` of an expansion to its containing module or block.
1732     invocations: FxHashMap<Mark, &'a InvocationData<'a>>,
1733
1734     /// Avoid duplicated errors for "name already defined".
1735     name_already_seen: FxHashMap<Name, Span>,
1736
1737     potentially_unused_imports: Vec<&'a ImportDirective<'a>>,
1738
1739     /// Table for mapping struct IDs into struct constructor IDs,
1740     /// it's not used during normal resolution, only for better error reporting.
1741     struct_constructors: DefIdMap<(Res, ty::Visibility)>,
1742
1743     /// Only used for better errors on `fn(): fn()`.
1744     current_type_ascription: Vec<Span>,
1745
1746     injected_crate: Option<Module<'a>>,
1747 }
1748
1749 /// Nothing really interesting here; it just provides memory for the rest of the crate.
1750 #[derive(Default)]
1751 pub struct ResolverArenas<'a> {
1752     modules: arena::TypedArena<ModuleData<'a>>,
1753     local_modules: RefCell<Vec<Module<'a>>>,
1754     name_bindings: arena::TypedArena<NameBinding<'a>>,
1755     import_directives: arena::TypedArena<ImportDirective<'a>>,
1756     name_resolutions: arena::TypedArena<RefCell<NameResolution<'a>>>,
1757     invocation_data: arena::TypedArena<InvocationData<'a>>,
1758     legacy_bindings: arena::TypedArena<LegacyBinding<'a>>,
1759 }
1760
1761 impl<'a> ResolverArenas<'a> {
1762     fn alloc_module(&'a self, module: ModuleData<'a>) -> Module<'a> {
1763         let module = self.modules.alloc(module);
1764         if module.def_id().map(|def_id| def_id.is_local()).unwrap_or(true) {
1765             self.local_modules.borrow_mut().push(module);
1766         }
1767         module
1768     }
1769     fn local_modules(&'a self) -> std::cell::Ref<'a, Vec<Module<'a>>> {
1770         self.local_modules.borrow()
1771     }
1772     fn alloc_name_binding(&'a self, name_binding: NameBinding<'a>) -> &'a NameBinding<'a> {
1773         self.name_bindings.alloc(name_binding)
1774     }
1775     fn alloc_import_directive(&'a self, import_directive: ImportDirective<'a>)
1776                               -> &'a ImportDirective<'_> {
1777         self.import_directives.alloc(import_directive)
1778     }
1779     fn alloc_name_resolution(&'a self) -> &'a RefCell<NameResolution<'a>> {
1780         self.name_resolutions.alloc(Default::default())
1781     }
1782     fn alloc_invocation_data(&'a self, expansion_data: InvocationData<'a>)
1783                              -> &'a InvocationData<'a> {
1784         self.invocation_data.alloc(expansion_data)
1785     }
1786     fn alloc_legacy_binding(&'a self, binding: LegacyBinding<'a>) -> &'a LegacyBinding<'a> {
1787         self.legacy_bindings.alloc(binding)
1788     }
1789 }
1790
1791 impl<'a, 'b: 'a> ty::DefIdTree for &'a Resolver<'b> {
1792     fn parent(self, id: DefId) -> Option<DefId> {
1793         match id.krate {
1794             LOCAL_CRATE => self.definitions.def_key(id.index).parent,
1795             _ => self.cstore.def_key(id).parent,
1796         }.map(|index| DefId { index, ..id })
1797     }
1798 }
1799
1800 /// This interface is used through the AST→HIR step, to embed full paths into the HIR. After that
1801 /// the resolver is no longer needed as all the relevant information is inline.
1802 impl<'a> hir::lowering::Resolver for Resolver<'a> {
1803     fn resolve_hir_path(
1804         &mut self,
1805         path: &ast::Path,
1806         is_value: bool,
1807     ) -> hir::Path {
1808         self.resolve_hir_path_cb(path, is_value,
1809                                  |resolver, span, error| resolve_error(resolver, span, error))
1810     }
1811
1812     fn resolve_str_path(
1813         &mut self,
1814         span: Span,
1815         crate_root: Option<Symbol>,
1816         components: &[Symbol],
1817         is_value: bool
1818     ) -> hir::Path {
1819         let root = if crate_root.is_some() {
1820             keywords::PathRoot
1821         } else {
1822             keywords::Crate
1823         };
1824         let segments = iter::once(root.ident())
1825             .chain(
1826                 crate_root.into_iter()
1827                     .chain(components.iter().cloned())
1828                     .map(Ident::with_empty_ctxt)
1829             ).map(|i| self.new_ast_path_segment(i)).collect::<Vec<_>>();
1830
1831
1832         let path = ast::Path {
1833             span,
1834             segments,
1835         };
1836
1837         self.resolve_hir_path(&path, is_value)
1838     }
1839
1840     fn get_partial_res(&mut self, id: NodeId) -> Option<PartialRes> {
1841         self.partial_res_map.get(&id).cloned()
1842     }
1843
1844     fn get_import_res(&mut self, id: NodeId) -> PerNS<Option<Res>> {
1845         self.import_res_map.get(&id).cloned().unwrap_or_default()
1846     }
1847
1848     fn get_label_res(&mut self, id: NodeId) -> Option<NodeId> {
1849         self.label_res_map.get(&id).cloned()
1850     }
1851
1852     fn definitions(&mut self) -> &mut Definitions {
1853         &mut self.definitions
1854     }
1855 }
1856
1857 impl<'a> Resolver<'a> {
1858     /// Rustdoc uses this to resolve things in a recoverable way. `ResolutionError<'a>`
1859     /// isn't something that can be returned because it can't be made to live that long,
1860     /// and also it's a private type. Fortunately rustdoc doesn't need to know the error,
1861     /// just that an error occurred.
1862     pub fn resolve_str_path_error(&mut self, span: Span, path_str: &str, is_value: bool)
1863         -> Result<hir::Path, ()> {
1864         let mut errored = false;
1865
1866         let path = if path_str.starts_with("::") {
1867             ast::Path {
1868                 span,
1869                 segments: iter::once(keywords::PathRoot.ident())
1870                     .chain({
1871                         path_str.split("::").skip(1).map(Ident::from_str)
1872                     })
1873                     .map(|i| self.new_ast_path_segment(i))
1874                     .collect(),
1875             }
1876         } else {
1877             ast::Path {
1878                 span,
1879                 segments: path_str
1880                     .split("::")
1881                     .map(Ident::from_str)
1882                     .map(|i| self.new_ast_path_segment(i))
1883                     .collect(),
1884             }
1885         };
1886         let path = self.resolve_hir_path_cb(&path, is_value, |_, _, _| errored = true);
1887         if errored || path.res == def::Res::Err {
1888             Err(())
1889         } else {
1890             Ok(path)
1891         }
1892     }
1893
1894     /// Like `resolve_hir_path`, but takes a callback in case there was an error.
1895     fn resolve_hir_path_cb<F>(
1896         &mut self,
1897         path: &ast::Path,
1898         is_value: bool,
1899         error_callback: F,
1900     ) -> hir::Path
1901         where F: for<'c, 'b> FnOnce(&'c mut Resolver<'_>, Span, ResolutionError<'b>)
1902     {
1903         let namespace = if is_value { ValueNS } else { TypeNS };
1904         let span = path.span;
1905         let segments = &path.segments;
1906         let path = Segment::from_path(&path);
1907         // FIXME(Manishearth): intra-doc links won't get warned of epoch changes.
1908         let res = match self.resolve_path_without_parent_scope(&path, Some(namespace), true,
1909                                                                span, CrateLint::No) {
1910             PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
1911                 module.res().unwrap(),
1912             PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 =>
1913                 path_res.base_res(),
1914             PathResult::NonModule(..) => {
1915                 error_callback(self, span, ResolutionError::FailedToResolve {
1916                     label: String::from("type-relative paths are not supported in this context"),
1917                     suggestion: None,
1918                 });
1919                 Res::Err
1920             }
1921             PathResult::Module(..) | PathResult::Indeterminate => unreachable!(),
1922             PathResult::Failed { span, label, suggestion, .. } => {
1923                 error_callback(self, span, ResolutionError::FailedToResolve {
1924                     label,
1925                     suggestion,
1926                 });
1927                 Res::Err
1928             }
1929         };
1930
1931         let segments: Vec<_> = segments.iter().map(|seg| {
1932             let mut hir_seg = hir::PathSegment::from_ident(seg.ident);
1933             hir_seg.res = Some(self.partial_res_map.get(&seg.id).map_or(def::Res::Err, |p| {
1934                 p.base_res().map_id(|_| panic!("unexpected node_id"))
1935             }));
1936             hir_seg
1937         }).collect();
1938         hir::Path {
1939             span,
1940             res: res.map_id(|_| panic!("unexpected node_id")),
1941             segments: segments.into(),
1942         }
1943     }
1944
1945     fn new_ast_path_segment(&self, ident: Ident) -> ast::PathSegment {
1946         let mut seg = ast::PathSegment::from_ident(ident);
1947         seg.id = self.session.next_node_id();
1948         seg
1949     }
1950 }
1951
1952 impl<'a> Resolver<'a> {
1953     pub fn new(session: &'a Session,
1954                cstore: &'a CStore,
1955                krate: &Crate,
1956                crate_name: &str,
1957                crate_loader: &'a mut CrateLoader<'a>,
1958                arenas: &'a ResolverArenas<'a>)
1959                -> Resolver<'a> {
1960         let root_def_id = DefId::local(CRATE_DEF_INDEX);
1961         let root_module_kind = ModuleKind::Def(
1962             DefKind::Mod,
1963             root_def_id,
1964             keywords::Invalid.name(),
1965         );
1966         let graph_root = arenas.alloc_module(ModuleData {
1967             no_implicit_prelude: attr::contains_name(&krate.attrs, sym::no_implicit_prelude),
1968             ..ModuleData::new(None, root_module_kind, root_def_id, Mark::root(), krate.span)
1969         });
1970         let mut module_map = FxHashMap::default();
1971         module_map.insert(DefId::local(CRATE_DEF_INDEX), graph_root);
1972
1973         let mut definitions = Definitions::default();
1974         DefCollector::new(&mut definitions, Mark::root())
1975             .collect_root(crate_name, session.local_crate_disambiguator());
1976
1977         let mut extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'_>> =
1978             session.opts.externs.iter().map(|kv| (Ident::from_str(kv.0), Default::default()))
1979                                        .collect();
1980
1981         if !attr::contains_name(&krate.attrs, sym::no_core) {
1982             extern_prelude.insert(Ident::with_empty_ctxt(sym::core), Default::default());
1983             if !attr::contains_name(&krate.attrs, sym::no_std) {
1984                 extern_prelude.insert(Ident::with_empty_ctxt(sym::std), Default::default());
1985                 if session.rust_2018() {
1986                     extern_prelude.insert(Ident::with_empty_ctxt(sym::meta), Default::default());
1987                 }
1988             }
1989         }
1990
1991         let mut invocations = FxHashMap::default();
1992         invocations.insert(Mark::root(),
1993                            arenas.alloc_invocation_data(InvocationData::root(graph_root)));
1994
1995         let mut macro_defs = FxHashMap::default();
1996         macro_defs.insert(Mark::root(), root_def_id);
1997
1998         Resolver {
1999             session,
2000
2001             cstore,
2002
2003             definitions,
2004
2005             // The outermost module has def ID 0; this is not reflected in the
2006             // AST.
2007             graph_root,
2008             prelude: None,
2009             extern_prelude,
2010
2011             has_self: FxHashSet::default(),
2012             field_names: FxHashMap::default(),
2013
2014             determined_imports: Vec::new(),
2015             indeterminate_imports: Vec::new(),
2016
2017             current_module: graph_root,
2018             ribs: PerNS {
2019                 value_ns: vec![Rib::new(ModuleRibKind(graph_root))],
2020                 type_ns: vec![Rib::new(ModuleRibKind(graph_root))],
2021                 macro_ns: vec![Rib::new(ModuleRibKind(graph_root))],
2022             },
2023             label_ribs: Vec::new(),
2024
2025             current_trait_ref: None,
2026             current_self_type: None,
2027             current_self_item: None,
2028             last_import_segment: false,
2029             blacklisted_binding: None,
2030
2031             primitive_type_table: PrimitiveTypeTable::new(),
2032
2033             partial_res_map: Default::default(),
2034             import_res_map: Default::default(),
2035             label_res_map: Default::default(),
2036             upvars: Default::default(),
2037             upvars_seen: Default::default(),
2038             export_map: FxHashMap::default(),
2039             trait_map: Default::default(),
2040             module_map,
2041             block_map: Default::default(),
2042             extern_module_map: FxHashMap::default(),
2043             binding_parent_modules: FxHashMap::default(),
2044
2045             glob_map: Default::default(),
2046
2047             used_imports: FxHashSet::default(),
2048             maybe_unused_trait_imports: Default::default(),
2049             maybe_unused_extern_crates: Vec::new(),
2050
2051             unused_labels: FxHashMap::default(),
2052
2053             privacy_errors: Vec::new(),
2054             ambiguity_errors: Vec::new(),
2055             use_injections: Vec::new(),
2056             macro_expanded_macro_export_errors: BTreeSet::new(),
2057
2058             arenas,
2059             dummy_binding: arenas.alloc_name_binding(NameBinding {
2060                 kind: NameBindingKind::Res(Res::Err, false),
2061                 ambiguity: None,
2062                 expansion: Mark::root(),
2063                 span: DUMMY_SP,
2064                 vis: ty::Visibility::Public,
2065             }),
2066
2067             crate_loader,
2068             macro_names: FxHashSet::default(),
2069             builtin_macros: FxHashMap::default(),
2070             macro_use_prelude: FxHashMap::default(),
2071             all_macros: FxHashMap::default(),
2072             macro_map: FxHashMap::default(),
2073             invocations,
2074             macro_defs,
2075             local_macro_def_scopes: FxHashMap::default(),
2076             name_already_seen: FxHashMap::default(),
2077             potentially_unused_imports: Vec::new(),
2078             struct_constructors: Default::default(),
2079             unused_macros: FxHashSet::default(),
2080             current_type_ascription: Vec::new(),
2081             injected_crate: None,
2082         }
2083     }
2084
2085     pub fn arenas() -> ResolverArenas<'a> {
2086         Default::default()
2087     }
2088
2089     /// Runs the function on each namespace.
2090     fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
2091         f(self, TypeNS);
2092         f(self, ValueNS);
2093         f(self, MacroNS);
2094     }
2095
2096     fn macro_def(&self, mut ctxt: SyntaxContext) -> DefId {
2097         loop {
2098             match self.macro_defs.get(&ctxt.outer()) {
2099                 Some(&def_id) => return def_id,
2100                 None => ctxt.remove_mark(),
2101             };
2102         }
2103     }
2104
2105     /// Entry point to crate resolution.
2106     pub fn resolve_crate(&mut self, krate: &Crate) {
2107         ImportResolver { resolver: self }.finalize_imports();
2108         self.current_module = self.graph_root;
2109         self.finalize_current_module_macro_resolutions();
2110
2111         visit::walk_crate(self, krate);
2112
2113         check_unused::check_crate(self, krate);
2114         self.report_errors(krate);
2115         self.crate_loader.postprocess(krate);
2116     }
2117
2118     fn new_module(
2119         &self,
2120         parent: Module<'a>,
2121         kind: ModuleKind,
2122         normal_ancestor_id: DefId,
2123         expansion: Mark,
2124         span: Span,
2125     ) -> Module<'a> {
2126         let module = ModuleData::new(Some(parent), kind, normal_ancestor_id, expansion, span);
2127         self.arenas.alloc_module(module)
2128     }
2129
2130     fn record_use(&mut self, ident: Ident, ns: Namespace,
2131                   used_binding: &'a NameBinding<'a>, is_lexical_scope: bool) {
2132         if let Some((b2, kind)) = used_binding.ambiguity {
2133             self.ambiguity_errors.push(AmbiguityError {
2134                 kind, ident, b1: used_binding, b2,
2135                 misc1: AmbiguityErrorMisc::None,
2136                 misc2: AmbiguityErrorMisc::None,
2137             });
2138         }
2139         if let NameBindingKind::Import { directive, binding, ref used } = used_binding.kind {
2140             // Avoid marking `extern crate` items that refer to a name from extern prelude,
2141             // but not introduce it, as used if they are accessed from lexical scope.
2142             if is_lexical_scope {
2143                 if let Some(entry) = self.extern_prelude.get(&ident.modern()) {
2144                     if let Some(crate_item) = entry.extern_crate_item {
2145                         if ptr::eq(used_binding, crate_item) && !entry.introduced_by_item {
2146                             return;
2147                         }
2148                     }
2149                 }
2150             }
2151             used.set(true);
2152             directive.used.set(true);
2153             self.used_imports.insert((directive.id, ns));
2154             self.add_to_glob_map(&directive, ident);
2155             self.record_use(ident, ns, binding, false);
2156         }
2157     }
2158
2159     #[inline]
2160     fn add_to_glob_map(&mut self, directive: &ImportDirective<'_>, ident: Ident) {
2161         if directive.is_glob() {
2162             self.glob_map.entry(directive.id).or_default().insert(ident.name);
2163         }
2164     }
2165
2166     /// This resolves the identifier `ident` in the namespace `ns` in the current lexical scope.
2167     /// More specifically, we proceed up the hierarchy of scopes and return the binding for
2168     /// `ident` in the first scope that defines it (or None if no scopes define it).
2169     ///
2170     /// A block's items are above its local variables in the scope hierarchy, regardless of where
2171     /// the items are defined in the block. For example,
2172     /// ```rust
2173     /// fn f() {
2174     ///    g(); // Since there are no local variables in scope yet, this resolves to the item.
2175     ///    let g = || {};
2176     ///    fn g() {}
2177     ///    g(); // This resolves to the local variable `g` since it shadows the item.
2178     /// }
2179     /// ```
2180     ///
2181     /// Invariant: This must only be called during main resolution, not during
2182     /// import resolution.
2183     fn resolve_ident_in_lexical_scope(&mut self,
2184                                       mut ident: Ident,
2185                                       ns: Namespace,
2186                                       record_used_id: Option<NodeId>,
2187                                       path_span: Span)
2188                                       -> Option<LexicalScopeBinding<'a>> {
2189         assert!(ns == TypeNS  || ns == ValueNS);
2190         if ident.name == keywords::Invalid.name() {
2191             return Some(LexicalScopeBinding::Res(Res::Err));
2192         }
2193         ident.span = if ident.name == keywords::SelfUpper.name() {
2194             // FIXME(jseyfried) improve `Self` hygiene
2195             ident.span.with_ctxt(SyntaxContext::empty())
2196         } else if ns == TypeNS {
2197             ident.span.modern()
2198         } else {
2199             ident.span.modern_and_legacy()
2200         };
2201
2202         // Walk backwards up the ribs in scope.
2203         let record_used = record_used_id.is_some();
2204         let mut module = self.graph_root;
2205         for i in (0 .. self.ribs[ns].len()).rev() {
2206             debug!("walk rib\n{:?}", self.ribs[ns][i].bindings);
2207             if let Some(res) = self.ribs[ns][i].bindings.get(&ident).cloned() {
2208                 // The ident resolves to a type parameter or local variable.
2209                 return Some(LexicalScopeBinding::Res(
2210                     self.adjust_local_res(ns, i, res, record_used, path_span)
2211                 ));
2212             }
2213
2214             module = match self.ribs[ns][i].kind {
2215                 ModuleRibKind(module) => module,
2216                 MacroDefinition(def) if def == self.macro_def(ident.span.ctxt()) => {
2217                     // If an invocation of this macro created `ident`, give up on `ident`
2218                     // and switch to `ident`'s source from the macro definition.
2219                     ident.span.remove_mark();
2220                     continue
2221                 }
2222                 _ => continue,
2223             };
2224
2225             let item = self.resolve_ident_in_module_unadjusted(
2226                 ModuleOrUniformRoot::Module(module),
2227                 ident,
2228                 ns,
2229                 record_used,
2230                 path_span,
2231             );
2232             if let Ok(binding) = item {
2233                 // The ident resolves to an item.
2234                 return Some(LexicalScopeBinding::Item(binding));
2235             }
2236
2237             match module.kind {
2238                 ModuleKind::Block(..) => {}, // We can see through blocks
2239                 _ => break,
2240             }
2241         }
2242
2243         ident.span = ident.span.modern();
2244         let mut poisoned = None;
2245         loop {
2246             let opt_module = if let Some(node_id) = record_used_id {
2247                 self.hygienic_lexical_parent_with_compatibility_fallback(module, &mut ident.span,
2248                                                                          node_id, &mut poisoned)
2249             } else {
2250                 self.hygienic_lexical_parent(module, &mut ident.span)
2251             };
2252             module = unwrap_or!(opt_module, break);
2253             let orig_current_module = self.current_module;
2254             self.current_module = module; // Lexical resolutions can never be a privacy error.
2255             let result = self.resolve_ident_in_module_unadjusted(
2256                 ModuleOrUniformRoot::Module(module),
2257                 ident,
2258                 ns,
2259                 record_used,
2260                 path_span,
2261             );
2262             self.current_module = orig_current_module;
2263
2264             match result {
2265                 Ok(binding) => {
2266                     if let Some(node_id) = poisoned {
2267                         self.session.buffer_lint_with_diagnostic(
2268                             lint::builtin::PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
2269                             node_id, ident.span,
2270                             &format!("cannot find {} `{}` in this scope", ns.descr(), ident),
2271                             lint::builtin::BuiltinLintDiagnostics::
2272                                 ProcMacroDeriveResolutionFallback(ident.span),
2273                         );
2274                     }
2275                     return Some(LexicalScopeBinding::Item(binding))
2276                 }
2277                 Err(Determined) => continue,
2278                 Err(Undetermined) =>
2279                     span_bug!(ident.span, "undetermined resolution during main resolution pass"),
2280             }
2281         }
2282
2283         if !module.no_implicit_prelude {
2284             if ns == TypeNS {
2285                 if let Some(binding) = self.extern_prelude_get(ident, !record_used) {
2286                     return Some(LexicalScopeBinding::Item(binding));
2287                 }
2288             }
2289             if ns == TypeNS && is_known_tool(ident.name) {
2290                 let binding = (Res::ToolMod, ty::Visibility::Public,
2291                                DUMMY_SP, Mark::root()).to_name_binding(self.arenas);
2292                 return Some(LexicalScopeBinding::Item(binding));
2293             }
2294             if let Some(prelude) = self.prelude {
2295                 if let Ok(binding) = self.resolve_ident_in_module_unadjusted(
2296                     ModuleOrUniformRoot::Module(prelude),
2297                     ident,
2298                     ns,
2299                     false,
2300                     path_span,
2301                 ) {
2302                     return Some(LexicalScopeBinding::Item(binding));
2303                 }
2304             }
2305         }
2306
2307         None
2308     }
2309
2310     fn hygienic_lexical_parent(&mut self, module: Module<'a>, span: &mut Span)
2311                                -> Option<Module<'a>> {
2312         if !module.expansion.is_descendant_of(span.ctxt().outer()) {
2313             return Some(self.macro_def_scope(span.remove_mark()));
2314         }
2315
2316         if let ModuleKind::Block(..) = module.kind {
2317             return Some(module.parent.unwrap());
2318         }
2319
2320         None
2321     }
2322
2323     fn hygienic_lexical_parent_with_compatibility_fallback(&mut self, module: Module<'a>,
2324                                                            span: &mut Span, node_id: NodeId,
2325                                                            poisoned: &mut Option<NodeId>)
2326                                                            -> Option<Module<'a>> {
2327         if let module @ Some(..) = self.hygienic_lexical_parent(module, span) {
2328             return module;
2329         }
2330
2331         // We need to support the next case under a deprecation warning
2332         // ```
2333         // struct MyStruct;
2334         // ---- begin: this comes from a proc macro derive
2335         // mod implementation_details {
2336         //     // Note that `MyStruct` is not in scope here.
2337         //     impl SomeTrait for MyStruct { ... }
2338         // }
2339         // ---- end
2340         // ```
2341         // So we have to fall back to the module's parent during lexical resolution in this case.
2342         if let Some(parent) = module.parent {
2343             // Inner module is inside the macro, parent module is outside of the macro.
2344             if module.expansion != parent.expansion &&
2345             module.expansion.is_descendant_of(parent.expansion) {
2346                 // The macro is a proc macro derive
2347                 if module.expansion.looks_like_proc_macro_derive() {
2348                     if parent.expansion.is_descendant_of(span.ctxt().outer()) {
2349                         *poisoned = Some(node_id);
2350                         return module.parent;
2351                     }
2352                 }
2353             }
2354         }
2355
2356         None
2357     }
2358
2359     fn resolve_ident_in_module(
2360         &mut self,
2361         module: ModuleOrUniformRoot<'a>,
2362         ident: Ident,
2363         ns: Namespace,
2364         parent_scope: Option<&ParentScope<'a>>,
2365         record_used: bool,
2366         path_span: Span
2367     ) -> Result<&'a NameBinding<'a>, Determinacy> {
2368         self.resolve_ident_in_module_ext(
2369             module, ident, ns, parent_scope, record_used, path_span
2370         ).map_err(|(determinacy, _)| determinacy)
2371     }
2372
2373     fn resolve_ident_in_module_ext(
2374         &mut self,
2375         module: ModuleOrUniformRoot<'a>,
2376         mut ident: Ident,
2377         ns: Namespace,
2378         parent_scope: Option<&ParentScope<'a>>,
2379         record_used: bool,
2380         path_span: Span
2381     ) -> Result<&'a NameBinding<'a>, (Determinacy, Weak)> {
2382         let orig_current_module = self.current_module;
2383         match module {
2384             ModuleOrUniformRoot::Module(module) => {
2385                 ident.span = ident.span.modern();
2386                 if let Some(def) = ident.span.adjust(module.expansion) {
2387                     self.current_module = self.macro_def_scope(def);
2388                 }
2389             }
2390             ModuleOrUniformRoot::ExternPrelude => {
2391                 ident.span = ident.span.modern();
2392                 ident.span.adjust(Mark::root());
2393             }
2394             ModuleOrUniformRoot::CrateRootAndExternPrelude |
2395             ModuleOrUniformRoot::CurrentScope => {
2396                 // No adjustments
2397             }
2398         }
2399         let result = self.resolve_ident_in_module_unadjusted_ext(
2400             module, ident, ns, parent_scope, false, record_used, path_span,
2401         );
2402         self.current_module = orig_current_module;
2403         result
2404     }
2405
2406     fn resolve_crate_root(&mut self, ident: Ident) -> Module<'a> {
2407         let mut ctxt = ident.span.ctxt();
2408         let mark = if ident.name == keywords::DollarCrate.name() {
2409             // When resolving `$crate` from a `macro_rules!` invoked in a `macro`,
2410             // we don't want to pretend that the `macro_rules!` definition is in the `macro`
2411             // as described in `SyntaxContext::apply_mark`, so we ignore prepended modern marks.
2412             // FIXME: This is only a guess and it doesn't work correctly for `macro_rules!`
2413             // definitions actually produced by `macro` and `macro` definitions produced by
2414             // `macro_rules!`, but at least such configurations are not stable yet.
2415             ctxt = ctxt.modern_and_legacy();
2416             let mut iter = ctxt.marks().into_iter().rev().peekable();
2417             let mut result = None;
2418             // Find the last modern mark from the end if it exists.
2419             while let Some(&(mark, transparency)) = iter.peek() {
2420                 if transparency == Transparency::Opaque {
2421                     result = Some(mark);
2422                     iter.next();
2423                 } else {
2424                     break;
2425                 }
2426             }
2427             // Then find the last legacy mark from the end if it exists.
2428             for (mark, transparency) in iter {
2429                 if transparency == Transparency::SemiTransparent {
2430                     result = Some(mark);
2431                 } else {
2432                     break;
2433                 }
2434             }
2435             result
2436         } else {
2437             ctxt = ctxt.modern();
2438             ctxt.adjust(Mark::root())
2439         };
2440         let module = match mark {
2441             Some(def) => self.macro_def_scope(def),
2442             None => return self.graph_root,
2443         };
2444         self.get_module(DefId { index: CRATE_DEF_INDEX, ..module.normal_ancestor_id })
2445     }
2446
2447     fn resolve_self(&mut self, ctxt: &mut SyntaxContext, module: Module<'a>) -> Module<'a> {
2448         let mut module = self.get_module(module.normal_ancestor_id);
2449         while module.span.ctxt().modern() != *ctxt {
2450             let parent = module.parent.unwrap_or_else(|| self.macro_def_scope(ctxt.remove_mark()));
2451             module = self.get_module(parent.normal_ancestor_id);
2452         }
2453         module
2454     }
2455
2456     // AST resolution
2457     //
2458     // We maintain a list of value ribs and type ribs.
2459     //
2460     // Simultaneously, we keep track of the current position in the module
2461     // graph in the `current_module` pointer. When we go to resolve a name in
2462     // the value or type namespaces, we first look through all the ribs and
2463     // then query the module graph. When we resolve a name in the module
2464     // namespace, we can skip all the ribs (since nested modules are not
2465     // allowed within blocks in Rust) and jump straight to the current module
2466     // graph node.
2467     //
2468     // Named implementations are handled separately. When we find a method
2469     // call, we consult the module node to find all of the implementations in
2470     // scope. This information is lazily cached in the module node. We then
2471     // generate a fake "implementation scope" containing all the
2472     // implementations thus found, for compatibility with old resolve pass.
2473
2474     pub fn with_scope<F, T>(&mut self, id: NodeId, f: F) -> T
2475         where F: FnOnce(&mut Resolver<'_>) -> T
2476     {
2477         let id = self.definitions.local_def_id(id);
2478         let module = self.module_map.get(&id).cloned(); // clones a reference
2479         if let Some(module) = module {
2480             // Move down in the graph.
2481             let orig_module = replace(&mut self.current_module, module);
2482             self.ribs[ValueNS].push(Rib::new(ModuleRibKind(module)));
2483             self.ribs[TypeNS].push(Rib::new(ModuleRibKind(module)));
2484
2485             self.finalize_current_module_macro_resolutions();
2486             let ret = f(self);
2487
2488             self.current_module = orig_module;
2489             self.ribs[ValueNS].pop();
2490             self.ribs[TypeNS].pop();
2491             ret
2492         } else {
2493             f(self)
2494         }
2495     }
2496
2497     /// Searches the current set of local scopes for labels. Returns the first non-`None` label that
2498     /// is returned by the given predicate function
2499     ///
2500     /// Stops after meeting a closure.
2501     fn search_label<P, R>(&self, mut ident: Ident, pred: P) -> Option<R>
2502         where P: Fn(&Rib<'_, NodeId>, Ident) -> Option<R>
2503     {
2504         for rib in self.label_ribs.iter().rev() {
2505             match rib.kind {
2506                 NormalRibKind => {}
2507                 // If an invocation of this macro created `ident`, give up on `ident`
2508                 // and switch to `ident`'s source from the macro definition.
2509                 MacroDefinition(def) => {
2510                     if def == self.macro_def(ident.span.ctxt()) {
2511                         ident.span.remove_mark();
2512                     }
2513                 }
2514                 _ => {
2515                     // Do not resolve labels across function boundary
2516                     return None;
2517                 }
2518             }
2519             let r = pred(rib, ident);
2520             if r.is_some() {
2521                 return r;
2522             }
2523         }
2524         None
2525     }
2526
2527     fn resolve_adt(&mut self, item: &Item, generics: &Generics) {
2528         debug!("resolve_adt");
2529         self.with_current_self_item(item, |this| {
2530             this.with_generic_param_rib(HasGenericParams(generics, ItemRibKind), |this| {
2531                 let item_def_id = this.definitions.local_def_id(item.id);
2532                 this.with_self_rib(Res::SelfTy(None, Some(item_def_id)), |this| {
2533                     visit::walk_item(this, item);
2534                 });
2535             });
2536         });
2537     }
2538
2539     fn future_proof_import(&mut self, use_tree: &ast::UseTree) {
2540         let segments = &use_tree.prefix.segments;
2541         if !segments.is_empty() {
2542             let ident = segments[0].ident;
2543             if ident.is_path_segment_keyword() || ident.span.rust_2015() {
2544                 return;
2545             }
2546
2547             let nss = match use_tree.kind {
2548                 ast::UseTreeKind::Simple(..) if segments.len() == 1 => &[TypeNS, ValueNS][..],
2549                 _ => &[TypeNS],
2550             };
2551             let report_error = |this: &Self, ns| {
2552                 let what = if ns == TypeNS { "type parameters" } else { "local variables" };
2553                 this.session.span_err(ident.span, &format!("imports cannot refer to {}", what));
2554             };
2555
2556             for &ns in nss {
2557                 match self.resolve_ident_in_lexical_scope(ident, ns, None, use_tree.prefix.span) {
2558                     Some(LexicalScopeBinding::Res(..)) => {
2559                         report_error(self, ns);
2560                     }
2561                     Some(LexicalScopeBinding::Item(binding)) => {
2562                         let orig_blacklisted_binding =
2563                             mem::replace(&mut self.blacklisted_binding, Some(binding));
2564                         if let Some(LexicalScopeBinding::Res(..)) =
2565                                 self.resolve_ident_in_lexical_scope(ident, ns, None,
2566                                                                     use_tree.prefix.span) {
2567                             report_error(self, ns);
2568                         }
2569                         self.blacklisted_binding = orig_blacklisted_binding;
2570                     }
2571                     None => {}
2572                 }
2573             }
2574         } else if let ast::UseTreeKind::Nested(use_trees) = &use_tree.kind {
2575             for (use_tree, _) in use_trees {
2576                 self.future_proof_import(use_tree);
2577             }
2578         }
2579     }
2580
2581     fn resolve_item(&mut self, item: &Item) {
2582         let name = item.ident.name;
2583         debug!("(resolving item) resolving {} ({:?})", name, item.node);
2584
2585         match item.node {
2586             ItemKind::Ty(_, ref generics) |
2587             ItemKind::Fn(_, _, ref generics, _) |
2588             ItemKind::Existential(_, ref generics) => {
2589                 self.with_generic_param_rib(HasGenericParams(generics, ItemRibKind),
2590                                              |this| visit::walk_item(this, item));
2591             }
2592
2593             ItemKind::Enum(_, ref generics) |
2594             ItemKind::Struct(_, ref generics) |
2595             ItemKind::Union(_, ref generics) => {
2596                 self.resolve_adt(item, generics);
2597             }
2598
2599             ItemKind::Impl(.., ref generics, ref opt_trait_ref, ref self_type, ref impl_items) =>
2600                 self.resolve_implementation(generics,
2601                                             opt_trait_ref,
2602                                             &self_type,
2603                                             item.id,
2604                                             impl_items),
2605
2606             ItemKind::Trait(.., ref generics, ref bounds, ref trait_items) => {
2607                 // Create a new rib for the trait-wide type parameters.
2608                 self.with_generic_param_rib(HasGenericParams(generics, ItemRibKind), |this| {
2609                     let local_def_id = this.definitions.local_def_id(item.id);
2610                     this.with_self_rib(Res::SelfTy(Some(local_def_id), None), |this| {
2611                         this.visit_generics(generics);
2612                         walk_list!(this, visit_param_bound, bounds);
2613
2614                         for trait_item in trait_items {
2615                             let generic_params = HasGenericParams(&trait_item.generics,
2616                                                                     TraitOrImplItemRibKind);
2617                             this.with_generic_param_rib(generic_params, |this| {
2618                                 match trait_item.node {
2619                                     TraitItemKind::Const(ref ty, ref default) => {
2620                                         this.visit_ty(ty);
2621
2622                                         // Only impose the restrictions of
2623                                         // ConstRibKind for an actual constant
2624                                         // expression in a provided default.
2625                                         if let Some(ref expr) = *default{
2626                                             this.with_constant_rib(|this| {
2627                                                 this.visit_expr(expr);
2628                                             });
2629                                         }
2630                                     }
2631                                     TraitItemKind::Method(_, _) => {
2632                                         visit::walk_trait_item(this, trait_item)
2633                                     }
2634                                     TraitItemKind::Type(..) => {
2635                                         visit::walk_trait_item(this, trait_item)
2636                                     }
2637                                     TraitItemKind::Macro(_) => {
2638                                         panic!("unexpanded macro in resolve!")
2639                                     }
2640                                 };
2641                             });
2642                         }
2643                     });
2644                 });
2645             }
2646
2647             ItemKind::TraitAlias(ref generics, ref bounds) => {
2648                 // Create a new rib for the trait-wide type parameters.
2649                 self.with_generic_param_rib(HasGenericParams(generics, ItemRibKind), |this| {
2650                     let local_def_id = this.definitions.local_def_id(item.id);
2651                     this.with_self_rib(Res::SelfTy(Some(local_def_id), None), |this| {
2652                         this.visit_generics(generics);
2653                         walk_list!(this, visit_param_bound, bounds);
2654                     });
2655                 });
2656             }
2657
2658             ItemKind::Mod(_) | ItemKind::ForeignMod(_) => {
2659                 self.with_scope(item.id, |this| {
2660                     visit::walk_item(this, item);
2661                 });
2662             }
2663
2664             ItemKind::Static(ref ty, _, ref expr) |
2665             ItemKind::Const(ref ty, ref expr) => {
2666                 debug!("resolve_item ItemKind::Const");
2667                 self.with_item_rib(|this| {
2668                     this.visit_ty(ty);
2669                     this.with_constant_rib(|this| {
2670                         this.visit_expr(expr);
2671                     });
2672                 });
2673             }
2674
2675             ItemKind::Use(ref use_tree) => {
2676                 self.future_proof_import(use_tree);
2677             }
2678
2679             ItemKind::ExternCrate(..) |
2680             ItemKind::MacroDef(..) | ItemKind::GlobalAsm(..) => {
2681                 // do nothing, these are just around to be encoded
2682             }
2683
2684             ItemKind::Mac(_) => panic!("unexpanded macro in resolve!"),
2685         }
2686     }
2687
2688     fn with_generic_param_rib<'b, F>(&'b mut self, generic_params: GenericParameters<'a, 'b>, f: F)
2689         where F: FnOnce(&mut Resolver<'_>)
2690     {
2691         debug!("with_generic_param_rib");
2692         match generic_params {
2693             HasGenericParams(generics, rib_kind) => {
2694                 let mut function_type_rib = Rib::new(rib_kind);
2695                 let mut function_value_rib = Rib::new(rib_kind);
2696                 let mut seen_bindings = FxHashMap::default();
2697                 for param in &generics.params {
2698                     match param.kind {
2699                         GenericParamKind::Lifetime { .. } => {}
2700                         GenericParamKind::Type { .. } => {
2701                             let ident = param.ident.modern();
2702                             debug!("with_generic_param_rib: {}", param.id);
2703
2704                             if seen_bindings.contains_key(&ident) {
2705                                 let span = seen_bindings.get(&ident).unwrap();
2706                                 let err = ResolutionError::NameAlreadyUsedInParameterList(
2707                                     ident.name,
2708                                     span,
2709                                 );
2710                                 resolve_error(self, param.ident.span, err);
2711                             }
2712                             seen_bindings.entry(ident).or_insert(param.ident.span);
2713
2714                             // Plain insert (no renaming).
2715                             let res = Res::Def(
2716                                 DefKind::TyParam,
2717                                 self.definitions.local_def_id(param.id),
2718                             );
2719                             function_type_rib.bindings.insert(ident, res);
2720                             self.record_partial_res(param.id, PartialRes::new(res));
2721                         }
2722                         GenericParamKind::Const { .. } => {
2723                             let ident = param.ident.modern();
2724                             debug!("with_generic_param_rib: {}", param.id);
2725
2726                             if seen_bindings.contains_key(&ident) {
2727                                 let span = seen_bindings.get(&ident).unwrap();
2728                                 let err = ResolutionError::NameAlreadyUsedInParameterList(
2729                                     ident.name,
2730                                     span,
2731                                 );
2732                                 resolve_error(self, param.ident.span, err);
2733                             }
2734                             seen_bindings.entry(ident).or_insert(param.ident.span);
2735
2736                             let res = Res::Def(
2737                                 DefKind::ConstParam,
2738                                 self.definitions.local_def_id(param.id),
2739                             );
2740                             function_value_rib.bindings.insert(ident, res);
2741                             self.record_partial_res(param.id, PartialRes::new(res));
2742                         }
2743                     }
2744                 }
2745                 self.ribs[ValueNS].push(function_value_rib);
2746                 self.ribs[TypeNS].push(function_type_rib);
2747             }
2748
2749             NoGenericParams => {
2750                 // Nothing to do.
2751             }
2752         }
2753
2754         f(self);
2755
2756         if let HasGenericParams(..) = generic_params {
2757             self.ribs[TypeNS].pop();
2758             self.ribs[ValueNS].pop();
2759         }
2760     }
2761
2762     fn with_label_rib<F>(&mut self, f: F)
2763         where F: FnOnce(&mut Resolver<'_>)
2764     {
2765         self.label_ribs.push(Rib::new(NormalRibKind));
2766         f(self);
2767         self.label_ribs.pop();
2768     }
2769
2770     fn with_item_rib<F>(&mut self, f: F)
2771         where F: FnOnce(&mut Resolver<'_>)
2772     {
2773         self.ribs[ValueNS].push(Rib::new(ItemRibKind));
2774         self.ribs[TypeNS].push(Rib::new(ItemRibKind));
2775         f(self);
2776         self.ribs[TypeNS].pop();
2777         self.ribs[ValueNS].pop();
2778     }
2779
2780     fn with_constant_rib<F>(&mut self, f: F)
2781         where F: FnOnce(&mut Resolver<'_>)
2782     {
2783         debug!("with_constant_rib");
2784         self.ribs[ValueNS].push(Rib::new(ConstantItemRibKind));
2785         self.label_ribs.push(Rib::new(ConstantItemRibKind));
2786         f(self);
2787         self.label_ribs.pop();
2788         self.ribs[ValueNS].pop();
2789     }
2790
2791     fn with_current_self_type<T, F>(&mut self, self_type: &Ty, f: F) -> T
2792         where F: FnOnce(&mut Resolver<'_>) -> T
2793     {
2794         // Handle nested impls (inside fn bodies)
2795         let previous_value = replace(&mut self.current_self_type, Some(self_type.clone()));
2796         let result = f(self);
2797         self.current_self_type = previous_value;
2798         result
2799     }
2800
2801     fn with_current_self_item<T, F>(&mut self, self_item: &Item, f: F) -> T
2802         where F: FnOnce(&mut Resolver<'_>) -> T
2803     {
2804         let previous_value = replace(&mut self.current_self_item, Some(self_item.id));
2805         let result = f(self);
2806         self.current_self_item = previous_value;
2807         result
2808     }
2809
2810     /// This is called to resolve a trait reference from an `impl` (i.e., `impl Trait for Foo`).
2811     fn with_optional_trait_ref<T, F>(&mut self, opt_trait_ref: Option<&TraitRef>, f: F) -> T
2812         where F: FnOnce(&mut Resolver<'_>, Option<DefId>) -> T
2813     {
2814         let mut new_val = None;
2815         let mut new_id = None;
2816         if let Some(trait_ref) = opt_trait_ref {
2817             let path: Vec<_> = Segment::from_path(&trait_ref.path);
2818             let res = self.smart_resolve_path_fragment(
2819                 trait_ref.ref_id,
2820                 None,
2821                 &path,
2822                 trait_ref.path.span,
2823                 PathSource::Trait(AliasPossibility::No),
2824                 CrateLint::SimplePath(trait_ref.ref_id),
2825             ).base_res();
2826             if res != Res::Err {
2827                 new_id = Some(res.def_id());
2828                 let span = trait_ref.path.span;
2829                 if let PathResult::Module(ModuleOrUniformRoot::Module(module)) =
2830                     self.resolve_path_without_parent_scope(
2831                         &path,
2832                         Some(TypeNS),
2833                         false,
2834                         span,
2835                         CrateLint::SimplePath(trait_ref.ref_id),
2836                     )
2837                 {
2838                     new_val = Some((module, trait_ref.clone()));
2839                 }
2840             }
2841         }
2842         let original_trait_ref = replace(&mut self.current_trait_ref, new_val);
2843         let result = f(self, new_id);
2844         self.current_trait_ref = original_trait_ref;
2845         result
2846     }
2847
2848     fn with_self_rib<F>(&mut self, self_res: Res, f: F)
2849         where F: FnOnce(&mut Resolver<'_>)
2850     {
2851         let mut self_type_rib = Rib::new(NormalRibKind);
2852
2853         // Plain insert (no renaming, since types are not currently hygienic)
2854         self_type_rib.bindings.insert(keywords::SelfUpper.ident(), self_res);
2855         self.ribs[TypeNS].push(self_type_rib);
2856         f(self);
2857         self.ribs[TypeNS].pop();
2858     }
2859
2860     fn with_self_struct_ctor_rib<F>(&mut self, impl_id: DefId, f: F)
2861         where F: FnOnce(&mut Resolver<'_>)
2862     {
2863         let self_res = Res::SelfCtor(impl_id);
2864         let mut self_type_rib = Rib::new(NormalRibKind);
2865         self_type_rib.bindings.insert(keywords::SelfUpper.ident(), self_res);
2866         self.ribs[ValueNS].push(self_type_rib);
2867         f(self);
2868         self.ribs[ValueNS].pop();
2869     }
2870
2871     fn resolve_implementation(&mut self,
2872                               generics: &Generics,
2873                               opt_trait_reference: &Option<TraitRef>,
2874                               self_type: &Ty,
2875                               item_id: NodeId,
2876                               impl_items: &[ImplItem]) {
2877         debug!("resolve_implementation");
2878         // If applicable, create a rib for the type parameters.
2879         self.with_generic_param_rib(HasGenericParams(generics, ItemRibKind), |this| {
2880             // Dummy self type for better errors if `Self` is used in the trait path.
2881             this.with_self_rib(Res::SelfTy(None, None), |this| {
2882                 // Resolve the trait reference, if necessary.
2883                 this.with_optional_trait_ref(opt_trait_reference.as_ref(), |this, trait_id| {
2884                     let item_def_id = this.definitions.local_def_id(item_id);
2885                     this.with_self_rib(Res::SelfTy(trait_id, Some(item_def_id)), |this| {
2886                         if let Some(trait_ref) = opt_trait_reference.as_ref() {
2887                             // Resolve type arguments in the trait path.
2888                             visit::walk_trait_ref(this, trait_ref);
2889                         }
2890                         // Resolve the self type.
2891                         this.visit_ty(self_type);
2892                         // Resolve the generic parameters.
2893                         this.visit_generics(generics);
2894                         // Resolve the items within the impl.
2895                         this.with_current_self_type(self_type, |this| {
2896                             this.with_self_struct_ctor_rib(item_def_id, |this| {
2897                                 debug!("resolve_implementation with_self_struct_ctor_rib");
2898                                 for impl_item in impl_items {
2899                                     this.resolve_visibility(&impl_item.vis);
2900
2901                                     // We also need a new scope for the impl item type parameters.
2902                                     let generic_params = HasGenericParams(&impl_item.generics,
2903                                                                           TraitOrImplItemRibKind);
2904                                     this.with_generic_param_rib(generic_params, |this| {
2905                                         use self::ResolutionError::*;
2906                                         match impl_item.node {
2907                                             ImplItemKind::Const(..) => {
2908                                                 debug!(
2909                                                     "resolve_implementation ImplItemKind::Const",
2910                                                 );
2911                                                 // If this is a trait impl, ensure the const
2912                                                 // exists in trait
2913                                                 this.check_trait_item(
2914                                                     impl_item.ident,
2915                                                     ValueNS,
2916                                                     impl_item.span,
2917                                                     |n, s| ConstNotMemberOfTrait(n, s),
2918                                                 );
2919
2920                                                 this.with_constant_rib(|this| {
2921                                                     visit::walk_impl_item(this, impl_item)
2922                                                 });
2923                                             }
2924                                             ImplItemKind::Method(..) => {
2925                                                 // If this is a trait impl, ensure the method
2926                                                 // exists in trait
2927                                                 this.check_trait_item(impl_item.ident,
2928                                                                       ValueNS,
2929                                                                       impl_item.span,
2930                                                     |n, s| MethodNotMemberOfTrait(n, s));
2931
2932                                                 visit::walk_impl_item(this, impl_item);
2933                                             }
2934                                             ImplItemKind::Type(ref ty) => {
2935                                                 // If this is a trait impl, ensure the type
2936                                                 // exists in trait
2937                                                 this.check_trait_item(impl_item.ident,
2938                                                                       TypeNS,
2939                                                                       impl_item.span,
2940                                                     |n, s| TypeNotMemberOfTrait(n, s));
2941
2942                                                 this.visit_ty(ty);
2943                                             }
2944                                             ImplItemKind::Existential(ref bounds) => {
2945                                                 // If this is a trait impl, ensure the type
2946                                                 // exists in trait
2947                                                 this.check_trait_item(impl_item.ident,
2948                                                                       TypeNS,
2949                                                                       impl_item.span,
2950                                                     |n, s| TypeNotMemberOfTrait(n, s));
2951
2952                                                 for bound in bounds {
2953                                                     this.visit_param_bound(bound);
2954                                                 }
2955                                             }
2956                                             ImplItemKind::Macro(_) =>
2957                                                 panic!("unexpanded macro in resolve!"),
2958                                         }
2959                                     });
2960                                 }
2961                             });
2962                         });
2963                     });
2964                 });
2965             });
2966         });
2967     }
2968
2969     fn check_trait_item<F>(&mut self, ident: Ident, ns: Namespace, span: Span, err: F)
2970         where F: FnOnce(Name, &str) -> ResolutionError<'_>
2971     {
2972         // If there is a TraitRef in scope for an impl, then the method must be in the
2973         // trait.
2974         if let Some((module, _)) = self.current_trait_ref {
2975             if self.resolve_ident_in_module(
2976                 ModuleOrUniformRoot::Module(module),
2977                 ident,
2978                 ns,
2979                 None,
2980                 false,
2981                 span,
2982             ).is_err() {
2983                 let path = &self.current_trait_ref.as_ref().unwrap().1.path;
2984                 resolve_error(self, span, err(ident.name, &path_names_to_string(path)));
2985             }
2986         }
2987     }
2988
2989     fn resolve_local(&mut self, local: &Local) {
2990         // Resolve the type.
2991         walk_list!(self, visit_ty, &local.ty);
2992
2993         // Resolve the initializer.
2994         walk_list!(self, visit_expr, &local.init);
2995
2996         // Resolve the pattern.
2997         self.resolve_pattern(&local.pat, PatternSource::Let, &mut FxHashMap::default());
2998     }
2999
3000     // build a map from pattern identifiers to binding-info's.
3001     // this is done hygienically. This could arise for a macro
3002     // that expands into an or-pattern where one 'x' was from the
3003     // user and one 'x' came from the macro.
3004     fn binding_mode_map(&mut self, pat: &Pat) -> BindingMap {
3005         let mut binding_map = FxHashMap::default();
3006
3007         pat.walk(&mut |pat| {
3008             if let PatKind::Ident(binding_mode, ident, ref sub_pat) = pat.node {
3009                 if sub_pat.is_some() || match self.partial_res_map.get(&pat.id)
3010                                                                   .map(|res| res.base_res()) {
3011                     Some(Res::Local(..)) => true,
3012                     _ => false,
3013                 } {
3014                     let binding_info = BindingInfo { span: ident.span, binding_mode: binding_mode };
3015                     binding_map.insert(ident, binding_info);
3016                 }
3017             }
3018             true
3019         });
3020
3021         binding_map
3022     }
3023
3024     // check that all of the arms in an or-pattern have exactly the
3025     // same set of bindings, with the same binding modes for each.
3026     fn check_consistent_bindings(&mut self, pats: &[P<Pat>]) {
3027         if pats.is_empty() {
3028             return;
3029         }
3030
3031         let mut missing_vars = FxHashMap::default();
3032         let mut inconsistent_vars = FxHashMap::default();
3033         for (i, p) in pats.iter().enumerate() {
3034             let map_i = self.binding_mode_map(&p);
3035
3036             for (j, q) in pats.iter().enumerate() {
3037                 if i == j {
3038                     continue;
3039                 }
3040
3041                 let map_j = self.binding_mode_map(&q);
3042                 for (&key, &binding_i) in &map_i {
3043                     if map_j.is_empty() {                   // Account for missing bindings when
3044                         let binding_error = missing_vars    // map_j has none.
3045                             .entry(key.name)
3046                             .or_insert(BindingError {
3047                                 name: key.name,
3048                                 origin: BTreeSet::new(),
3049                                 target: BTreeSet::new(),
3050                             });
3051                         binding_error.origin.insert(binding_i.span);
3052                         binding_error.target.insert(q.span);
3053                     }
3054                     for (&key_j, &binding_j) in &map_j {
3055                         match map_i.get(&key_j) {
3056                             None => {  // missing binding
3057                                 let binding_error = missing_vars
3058                                     .entry(key_j.name)
3059                                     .or_insert(BindingError {
3060                                         name: key_j.name,
3061                                         origin: BTreeSet::new(),
3062                                         target: BTreeSet::new(),
3063                                     });
3064                                 binding_error.origin.insert(binding_j.span);
3065                                 binding_error.target.insert(p.span);
3066                             }
3067                             Some(binding_i) => {  // check consistent binding
3068                                 if binding_i.binding_mode != binding_j.binding_mode {
3069                                     inconsistent_vars
3070                                         .entry(key.name)
3071                                         .or_insert((binding_j.span, binding_i.span));
3072                                 }
3073                             }
3074                         }
3075                     }
3076                 }
3077             }
3078         }
3079         let mut missing_vars = missing_vars.iter().collect::<Vec<_>>();
3080         missing_vars.sort();
3081         for (_, v) in missing_vars {
3082             resolve_error(self,
3083                           *v.origin.iter().next().unwrap(),
3084                           ResolutionError::VariableNotBoundInPattern(v));
3085         }
3086         let mut inconsistent_vars = inconsistent_vars.iter().collect::<Vec<_>>();
3087         inconsistent_vars.sort();
3088         for (name, v) in inconsistent_vars {
3089             resolve_error(self, v.0, ResolutionError::VariableBoundWithDifferentMode(*name, v.1));
3090         }
3091     }
3092
3093     fn resolve_arm(&mut self, arm: &Arm) {
3094         self.ribs[ValueNS].push(Rib::new(NormalRibKind));
3095
3096         let mut bindings_list = FxHashMap::default();
3097         for pattern in &arm.pats {
3098             self.resolve_pattern(&pattern, PatternSource::Match, &mut bindings_list);
3099         }
3100
3101         // This has to happen *after* we determine which pat_idents are variants.
3102         self.check_consistent_bindings(&arm.pats);
3103
3104         if let Some(ast::Guard::If(ref expr)) = arm.guard {
3105             self.visit_expr(expr)
3106         }
3107         self.visit_expr(&arm.body);
3108
3109         self.ribs[ValueNS].pop();
3110     }
3111
3112     fn resolve_block(&mut self, block: &Block) {
3113         debug!("(resolving block) entering block");
3114         // Move down in the graph, if there's an anonymous module rooted here.
3115         let orig_module = self.current_module;
3116         let anonymous_module = self.block_map.get(&block.id).cloned(); // clones a reference
3117
3118         let mut num_macro_definition_ribs = 0;
3119         if let Some(anonymous_module) = anonymous_module {
3120             debug!("(resolving block) found anonymous module, moving down");
3121             self.ribs[ValueNS].push(Rib::new(ModuleRibKind(anonymous_module)));
3122             self.ribs[TypeNS].push(Rib::new(ModuleRibKind(anonymous_module)));
3123             self.current_module = anonymous_module;
3124             self.finalize_current_module_macro_resolutions();
3125         } else {
3126             self.ribs[ValueNS].push(Rib::new(NormalRibKind));
3127         }
3128
3129         // Descend into the block.
3130         for stmt in &block.stmts {
3131             if let ast::StmtKind::Item(ref item) = stmt.node {
3132                 if let ast::ItemKind::MacroDef(..) = item.node {
3133                     num_macro_definition_ribs += 1;
3134                     let res = self.definitions.local_def_id(item.id);
3135                     self.ribs[ValueNS].push(Rib::new(MacroDefinition(res)));
3136                     self.label_ribs.push(Rib::new(MacroDefinition(res)));
3137                 }
3138             }
3139
3140             self.visit_stmt(stmt);
3141         }
3142
3143         // Move back up.
3144         self.current_module = orig_module;
3145         for _ in 0 .. num_macro_definition_ribs {
3146             self.ribs[ValueNS].pop();
3147             self.label_ribs.pop();
3148         }
3149         self.ribs[ValueNS].pop();
3150         if anonymous_module.is_some() {
3151             self.ribs[TypeNS].pop();
3152         }
3153         debug!("(resolving block) leaving block");
3154     }
3155
3156     fn fresh_binding(&mut self,
3157                      ident: Ident,
3158                      pat_id: NodeId,
3159                      outer_pat_id: NodeId,
3160                      pat_src: PatternSource,
3161                      bindings: &mut FxHashMap<Ident, NodeId>)
3162                      -> Res {
3163         // Add the binding to the local ribs, if it
3164         // doesn't already exist in the bindings map. (We
3165         // must not add it if it's in the bindings map
3166         // because that breaks the assumptions later
3167         // passes make about or-patterns.)
3168         let ident = ident.modern_and_legacy();
3169         let mut res = Res::Local(pat_id);
3170         match bindings.get(&ident).cloned() {
3171             Some(id) if id == outer_pat_id => {
3172                 // `Variant(a, a)`, error
3173                 resolve_error(
3174                     self,
3175                     ident.span,
3176                     ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(
3177                         &ident.as_str())
3178                 );
3179             }
3180             Some(..) if pat_src == PatternSource::FnParam => {
3181                 // `fn f(a: u8, a: u8)`, error
3182                 resolve_error(
3183                     self,
3184                     ident.span,
3185                     ResolutionError::IdentifierBoundMoreThanOnceInParameterList(
3186                         &ident.as_str())
3187                 );
3188             }
3189             Some(..) if pat_src == PatternSource::Match ||
3190                         pat_src == PatternSource::IfLet ||
3191                         pat_src == PatternSource::WhileLet => {
3192                 // `Variant1(a) | Variant2(a)`, ok
3193                 // Reuse definition from the first `a`.
3194                 res = self.ribs[ValueNS].last_mut().unwrap().bindings[&ident];
3195             }
3196             Some(..) => {
3197                 span_bug!(ident.span, "two bindings with the same name from \
3198                                        unexpected pattern source {:?}", pat_src);
3199             }
3200             None => {
3201                 // A completely fresh binding, add to the lists if it's valid.
3202                 if ident.name != keywords::Invalid.name() {
3203                     bindings.insert(ident, outer_pat_id);
3204                     self.ribs[ValueNS].last_mut().unwrap().bindings.insert(ident, res);
3205                 }
3206             }
3207         }
3208
3209         res
3210     }
3211
3212     fn resolve_pattern(&mut self,
3213                        pat: &Pat,
3214                        pat_src: PatternSource,
3215                        // Maps idents to the node ID for the
3216                        // outermost pattern that binds them.
3217                        bindings: &mut FxHashMap<Ident, NodeId>) {
3218         // Visit all direct subpatterns of this pattern.
3219         let outer_pat_id = pat.id;
3220         pat.walk(&mut |pat| {
3221             debug!("resolve_pattern pat={:?} node={:?}", pat, pat.node);
3222             match pat.node {
3223                 PatKind::Ident(bmode, ident, ref opt_pat) => {
3224                     // First try to resolve the identifier as some existing
3225                     // entity, then fall back to a fresh binding.
3226                     let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS,
3227                                                                       None, pat.span)
3228                                       .and_then(LexicalScopeBinding::item);
3229                     let res = binding.map(NameBinding::res).and_then(|res| {
3230                         let is_syntactic_ambiguity = opt_pat.is_none() &&
3231                             bmode == BindingMode::ByValue(Mutability::Immutable);
3232                         match res {
3233                             Res::Def(DefKind::Ctor(_, CtorKind::Const), _) |
3234                             Res::Def(DefKind::Const, _) if is_syntactic_ambiguity => {
3235                                 // Disambiguate in favor of a unit struct/variant
3236                                 // or constant pattern.
3237                                 self.record_use(ident, ValueNS, binding.unwrap(), false);
3238                                 Some(res)
3239                             }
3240                             Res::Def(DefKind::Ctor(..), _)
3241                             | Res::Def(DefKind::Const, _)
3242                             | Res::Def(DefKind::Static, _) => {
3243                                 // This is unambiguously a fresh binding, either syntactically
3244                                 // (e.g., `IDENT @ PAT` or `ref IDENT`) or because `IDENT` resolves
3245                                 // to something unusable as a pattern (e.g., constructor function),
3246                                 // but we still conservatively report an error, see
3247                                 // issues/33118#issuecomment-233962221 for one reason why.
3248                                 resolve_error(
3249                                     self,
3250                                     ident.span,
3251                                     ResolutionError::BindingShadowsSomethingUnacceptable(
3252                                         pat_src.descr(), ident.name, binding.unwrap())
3253                                 );
3254                                 None
3255                             }
3256                             Res::Def(DefKind::Fn, _) | Res::Err => {
3257                                 // These entities are explicitly allowed
3258                                 // to be shadowed by fresh bindings.
3259                                 None
3260                             }
3261                             res => {
3262                                 span_bug!(ident.span, "unexpected resolution for an \
3263                                                        identifier in pattern: {:?}", res);
3264                             }
3265                         }
3266                     }).unwrap_or_else(|| {
3267                         self.fresh_binding(ident, pat.id, outer_pat_id, pat_src, bindings)
3268                     });
3269
3270                     self.record_partial_res(pat.id, PartialRes::new(res));
3271                 }
3272
3273                 PatKind::TupleStruct(ref path, ..) => {
3274                     self.smart_resolve_path(pat.id, None, path, PathSource::TupleStruct);
3275                 }
3276
3277                 PatKind::Path(ref qself, ref path) => {
3278                     self.smart_resolve_path(pat.id, qself.as_ref(), path, PathSource::Pat);
3279                 }
3280
3281                 PatKind::Struct(ref path, ..) => {
3282                     self.smart_resolve_path(pat.id, None, path, PathSource::Struct);
3283                 }
3284
3285                 _ => {}
3286             }
3287             true
3288         });
3289
3290         visit::walk_pat(self, pat);
3291     }
3292
3293     // High-level and context dependent path resolution routine.
3294     // Resolves the path and records the resolution into definition map.
3295     // If resolution fails tries several techniques to find likely
3296     // resolution candidates, suggest imports or other help, and report
3297     // errors in user friendly way.
3298     fn smart_resolve_path(&mut self,
3299                           id: NodeId,
3300                           qself: Option<&QSelf>,
3301                           path: &Path,
3302                           source: PathSource<'_>) {
3303         self.smart_resolve_path_fragment(
3304             id,
3305             qself,
3306             &Segment::from_path(path),
3307             path.span,
3308             source,
3309             CrateLint::SimplePath(id),
3310         );
3311     }
3312
3313     fn smart_resolve_path_fragment(&mut self,
3314                                    id: NodeId,
3315                                    qself: Option<&QSelf>,
3316                                    path: &[Segment],
3317                                    span: Span,
3318                                    source: PathSource<'_>,
3319                                    crate_lint: CrateLint)
3320                                    -> PartialRes {
3321         let ns = source.namespace();
3322         let is_expected = &|res| source.is_expected(res);
3323
3324         let report_errors = |this: &mut Self, res: Option<Res>| {
3325             let (err, candidates) = this.smart_resolve_report_errors(path, span, source, res);
3326             let def_id = this.current_module.normal_ancestor_id;
3327             let node_id = this.definitions.as_local_node_id(def_id).unwrap();
3328             let better = res.is_some();
3329             this.use_injections.push(UseError { err, candidates, node_id, better });
3330             PartialRes::new(Res::Err)
3331         };
3332
3333         let partial_res = match self.resolve_qpath_anywhere(
3334             id,
3335             qself,
3336             path,
3337             ns,
3338             span,
3339             source.defer_to_typeck(),
3340             source.global_by_default(),
3341             crate_lint,
3342         ) {
3343             Some(partial_res) if partial_res.unresolved_segments() == 0 => {
3344                 if is_expected(partial_res.base_res()) || partial_res.base_res() == Res::Err {
3345                     partial_res
3346                 } else {
3347                     // Add a temporary hack to smooth the transition to new struct ctor
3348                     // visibility rules. See #38932 for more details.
3349                     let mut res = None;
3350                     if let Res::Def(DefKind::Struct, def_id) = partial_res.base_res() {
3351                         if let Some((ctor_res, ctor_vis))
3352                                 = self.struct_constructors.get(&def_id).cloned() {
3353                             if is_expected(ctor_res) && self.is_accessible(ctor_vis) {
3354                                 let lint = lint::builtin::LEGACY_CONSTRUCTOR_VISIBILITY;
3355                                 self.session.buffer_lint(lint, id, span,
3356                                     "private struct constructors are not usable through \
3357                                      re-exports in outer modules",
3358                                 );
3359                                 res = Some(PartialRes::new(ctor_res));
3360                             }
3361                         }
3362                     }
3363
3364                     res.unwrap_or_else(|| report_errors(self, Some(partial_res.base_res())))
3365                 }
3366             }
3367             Some(partial_res) if source.defer_to_typeck() => {
3368                 // Not fully resolved associated item `T::A::B` or `<T as Tr>::A::B`
3369                 // or `<T>::A::B`. If `B` should be resolved in value namespace then
3370                 // it needs to be added to the trait map.
3371                 if ns == ValueNS {
3372                     let item_name = path.last().unwrap().ident;
3373                     let traits = self.get_traits_containing_item(item_name, ns);
3374                     self.trait_map.insert(id, traits);
3375                 }
3376
3377                 let mut std_path = vec![Segment::from_ident(Ident::with_empty_ctxt(sym::std))];
3378                 std_path.extend(path);
3379                 if self.primitive_type_table.primitive_types.contains_key(&path[0].ident.name) {
3380                     let cl = CrateLint::No;
3381                     let ns = Some(ns);
3382                     if let PathResult::Module(_) | PathResult::NonModule(_) =
3383                         self.resolve_path_without_parent_scope(&std_path, ns, false, span, cl)
3384                     {
3385                         // check if we wrote `str::from_utf8` instead of `std::str::from_utf8`
3386                         let item_span = path.iter().last().map(|segment| segment.ident.span)
3387                             .unwrap_or(span);
3388                         debug!("accessed item from `std` submodule as a bare type {:?}", std_path);
3389                         let mut hm = self.session.confused_type_with_std_module.borrow_mut();
3390                         hm.insert(item_span, span);
3391                         // In some places (E0223) we only have access to the full path
3392                         hm.insert(span, span);
3393                     }
3394                 }
3395                 partial_res
3396             }
3397             _ => report_errors(self, None)
3398         };
3399
3400         if let PathSource::TraitItem(..) = source {} else {
3401             // Avoid recording definition of `A::B` in `<T as A>::B::C`.
3402             self.record_partial_res(id, partial_res);
3403         }
3404         partial_res
3405     }
3406
3407     /// Only used in a specific case of type ascription suggestions
3408     #[doc(hidden)]
3409     fn get_colon_suggestion_span(&self, start: Span) -> Span {
3410         let cm = self.session.source_map();
3411         start.to(cm.next_point(start))
3412     }
3413
3414     fn type_ascription_suggestion(
3415         &self,
3416         err: &mut DiagnosticBuilder<'_>,
3417         base_span: Span,
3418     ) {
3419         debug!("type_ascription_suggetion {:?}", base_span);
3420         let cm = self.session.source_map();
3421         let base_snippet = cm.span_to_snippet(base_span);
3422         debug!("self.current_type_ascription {:?}", self.current_type_ascription);
3423         if let Some(sp) = self.current_type_ascription.last() {
3424             let mut sp = *sp;
3425             loop {
3426                 // Try to find the `:`; bail on first non-':' / non-whitespace.
3427                 sp = cm.next_point(sp);
3428                 if let Ok(snippet) = cm.span_to_snippet(sp.to(cm.next_point(sp))) {
3429                     let line_sp = cm.lookup_char_pos(sp.hi()).line;
3430                     let line_base_sp = cm.lookup_char_pos(base_span.lo()).line;
3431                     if snippet == ":" {
3432                         let mut show_label = true;
3433                         if line_sp != line_base_sp {
3434                             err.span_suggestion_short(
3435                                 sp,
3436                                 "did you mean to use `;` here instead?",
3437                                 ";".to_string(),
3438                                 Applicability::MaybeIncorrect,
3439                             );
3440                         } else {
3441                             let colon_sp = self.get_colon_suggestion_span(sp);
3442                             let after_colon_sp = self.get_colon_suggestion_span(
3443                                 colon_sp.shrink_to_hi(),
3444                             );
3445                             if !cm.span_to_snippet(after_colon_sp).map(|s| s == " ")
3446                                 .unwrap_or(false)
3447                             {
3448                                 err.span_suggestion(
3449                                     colon_sp,
3450                                     "maybe you meant to write a path separator here",
3451                                     "::".to_string(),
3452                                     Applicability::MaybeIncorrect,
3453                                 );
3454                                 show_label = false;
3455                             }
3456                             if let Ok(base_snippet) = base_snippet {
3457                                 let mut sp = after_colon_sp;
3458                                 for _ in 0..100 {
3459                                     // Try to find an assignment
3460                                     sp = cm.next_point(sp);
3461                                     let snippet = cm.span_to_snippet(sp.to(cm.next_point(sp)));
3462                                     match snippet {
3463                                         Ok(ref x) if x.as_str() == "=" => {
3464                                             err.span_suggestion(
3465                                                 base_span,
3466                                                 "maybe you meant to write an assignment here",
3467                                                 format!("let {}", base_snippet),
3468                                                 Applicability::MaybeIncorrect,
3469                                             );
3470                                             show_label = false;
3471                                             break;
3472                                         }
3473                                         Ok(ref x) if x.as_str() == "\n" => break,
3474                                         Err(_) => break,
3475                                         Ok(_) => {}
3476                                     }
3477                                 }
3478                             }
3479                         }
3480                         if show_label {
3481                             err.span_label(base_span,
3482                                            "expecting a type here because of type ascription");
3483                         }
3484                         break;
3485                     } else if !snippet.trim().is_empty() {
3486                         debug!("tried to find type ascription `:` token, couldn't find it");
3487                         break;
3488                     }
3489                 } else {
3490                     break;
3491                 }
3492             }
3493         }
3494     }
3495
3496     fn self_type_is_available(&mut self, span: Span) -> bool {
3497         let binding = self.resolve_ident_in_lexical_scope(keywords::SelfUpper.ident(),
3498                                                           TypeNS, None, span);
3499         if let Some(LexicalScopeBinding::Res(res)) = binding { res != Res::Err } else { false }
3500     }
3501
3502     fn self_value_is_available(&mut self, self_span: Span, path_span: Span) -> bool {
3503         let ident = Ident::new(keywords::SelfLower.name(), self_span);
3504         let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS, None, path_span);
3505         if let Some(LexicalScopeBinding::Res(res)) = binding { res != Res::Err } else { false }
3506     }
3507
3508     // Resolve in alternative namespaces if resolution in the primary namespace fails.
3509     fn resolve_qpath_anywhere(
3510         &mut self,
3511         id: NodeId,
3512         qself: Option<&QSelf>,
3513         path: &[Segment],
3514         primary_ns: Namespace,
3515         span: Span,
3516         defer_to_typeck: bool,
3517         global_by_default: bool,
3518         crate_lint: CrateLint,
3519     ) -> Option<PartialRes> {
3520         let mut fin_res = None;
3521         // FIXME: can't resolve paths in macro namespace yet, macros are
3522         // processed by the little special hack below.
3523         for (i, ns) in [primary_ns, TypeNS, ValueNS, /*MacroNS*/].iter().cloned().enumerate() {
3524             if i == 0 || ns != primary_ns {
3525                 match self.resolve_qpath(id, qself, path, ns, span, global_by_default, crate_lint) {
3526                     // If defer_to_typeck, then resolution > no resolution,
3527                     // otherwise full resolution > partial resolution > no resolution.
3528                     Some(partial_res) if partial_res.unresolved_segments() == 0 ||
3529                                          defer_to_typeck =>
3530                         return Some(partial_res),
3531                     partial_res => if fin_res.is_none() { fin_res = partial_res },
3532                 };
3533             }
3534         }
3535         if primary_ns != MacroNS &&
3536            (self.macro_names.contains(&path[0].ident.modern()) ||
3537             self.builtin_macros.get(&path[0].ident.name).cloned()
3538                                .and_then(NameBinding::macro_kind) == Some(MacroKind::Bang) ||
3539             self.macro_use_prelude.get(&path[0].ident.name).cloned()
3540                                   .and_then(NameBinding::macro_kind) == Some(MacroKind::Bang)) {
3541             // Return some dummy definition, it's enough for error reporting.
3542             return Some(PartialRes::new(Res::Def(
3543                 DefKind::Macro(MacroKind::Bang),
3544                 DefId::local(CRATE_DEF_INDEX),
3545             )));
3546         }
3547         fin_res
3548     }
3549
3550     /// Handles paths that may refer to associated items.
3551     fn resolve_qpath(
3552         &mut self,
3553         id: NodeId,
3554         qself: Option<&QSelf>,
3555         path: &[Segment],
3556         ns: Namespace,
3557         span: Span,
3558         global_by_default: bool,
3559         crate_lint: CrateLint,
3560     ) -> Option<PartialRes> {
3561         debug!(
3562             "resolve_qpath(id={:?}, qself={:?}, path={:?}, \
3563              ns={:?}, span={:?}, global_by_default={:?})",
3564             id,
3565             qself,
3566             path,
3567             ns,
3568             span,
3569             global_by_default,
3570         );
3571
3572         if let Some(qself) = qself {
3573             if qself.position == 0 {
3574                 // This is a case like `<T>::B`, where there is no
3575                 // trait to resolve.  In that case, we leave the `B`
3576                 // segment to be resolved by type-check.
3577                 return Some(PartialRes::with_unresolved_segments(
3578                     Res::Def(DefKind::Mod, DefId::local(CRATE_DEF_INDEX)), path.len()
3579                 ));
3580             }
3581
3582             // Make sure `A::B` in `<T as A::B>::C` is a trait item.
3583             //
3584             // Currently, `path` names the full item (`A::B::C`, in
3585             // our example).  so we extract the prefix of that that is
3586             // the trait (the slice upto and including
3587             // `qself.position`). And then we recursively resolve that,
3588             // but with `qself` set to `None`.
3589             //
3590             // However, setting `qself` to none (but not changing the
3591             // span) loses the information about where this path
3592             // *actually* appears, so for the purposes of the crate
3593             // lint we pass along information that this is the trait
3594             // name from a fully qualified path, and this also
3595             // contains the full span (the `CrateLint::QPathTrait`).
3596             let ns = if qself.position + 1 == path.len() { ns } else { TypeNS };
3597             let partial_res = self.smart_resolve_path_fragment(
3598                 id,
3599                 None,
3600                 &path[..=qself.position],
3601                 span,
3602                 PathSource::TraitItem(ns),
3603                 CrateLint::QPathTrait {
3604                     qpath_id: id,
3605                     qpath_span: qself.path_span,
3606                 },
3607             );
3608
3609             // The remaining segments (the `C` in our example) will
3610             // have to be resolved by type-check, since that requires doing
3611             // trait resolution.
3612             return Some(PartialRes::with_unresolved_segments(
3613                 partial_res.base_res(),
3614                 partial_res.unresolved_segments() + path.len() - qself.position - 1,
3615             ));
3616         }
3617
3618         let result = match self.resolve_path_without_parent_scope(
3619             &path,
3620             Some(ns),
3621             true,
3622             span,
3623             crate_lint,
3624         ) {
3625             PathResult::NonModule(path_res) => path_res,
3626             PathResult::Module(ModuleOrUniformRoot::Module(module)) if !module.is_normal() => {
3627                 PartialRes::new(module.res().unwrap())
3628             }
3629             // In `a(::assoc_item)*` `a` cannot be a module. If `a` does resolve to a module we
3630             // don't report an error right away, but try to fallback to a primitive type.
3631             // So, we are still able to successfully resolve something like
3632             //
3633             // use std::u8; // bring module u8 in scope
3634             // fn f() -> u8 { // OK, resolves to primitive u8, not to std::u8
3635             //     u8::max_value() // OK, resolves to associated function <u8>::max_value,
3636             //                     // not to non-existent std::u8::max_value
3637             // }
3638             //
3639             // Such behavior is required for backward compatibility.
3640             // The same fallback is used when `a` resolves to nothing.
3641             PathResult::Module(ModuleOrUniformRoot::Module(_)) |
3642             PathResult::Failed { .. }
3643                     if (ns == TypeNS || path.len() > 1) &&
3644                        self.primitive_type_table.primitive_types
3645                            .contains_key(&path[0].ident.name) => {
3646                 let prim = self.primitive_type_table.primitive_types[&path[0].ident.name];
3647                 PartialRes::with_unresolved_segments(Res::PrimTy(prim), path.len() - 1)
3648             }
3649             PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
3650                 PartialRes::new(module.res().unwrap()),
3651             PathResult::Failed { is_error_from_last_segment: false, span, label, suggestion } => {
3652                 resolve_error(self, span, ResolutionError::FailedToResolve { label, suggestion });
3653                 PartialRes::new(Res::Err)
3654             }
3655             PathResult::Module(..) | PathResult::Failed { .. } => return None,
3656             PathResult::Indeterminate => bug!("indetermined path result in resolve_qpath"),
3657         };
3658
3659         if path.len() > 1 && !global_by_default && result.base_res() != Res::Err &&
3660            path[0].ident.name != keywords::PathRoot.name() &&
3661            path[0].ident.name != keywords::DollarCrate.name() {
3662             let unqualified_result = {
3663                 match self.resolve_path_without_parent_scope(
3664                     &[*path.last().unwrap()],
3665                     Some(ns),
3666                     false,
3667                     span,
3668                     CrateLint::No,
3669                 ) {
3670                     PathResult::NonModule(path_res) => path_res.base_res(),
3671                     PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
3672                         module.res().unwrap(),
3673                     _ => return Some(result),
3674                 }
3675             };
3676             if result.base_res() == unqualified_result {
3677                 let lint = lint::builtin::UNUSED_QUALIFICATIONS;
3678                 self.session.buffer_lint(lint, id, span, "unnecessary qualification")
3679             }
3680         }
3681
3682         Some(result)
3683     }
3684
3685     fn resolve_path_without_parent_scope(
3686         &mut self,
3687         path: &[Segment],
3688         opt_ns: Option<Namespace>, // `None` indicates a module path in import
3689         record_used: bool,
3690         path_span: Span,
3691         crate_lint: CrateLint,
3692     ) -> PathResult<'a> {
3693         // Macro and import paths must have full parent scope available during resolution,
3694         // other paths will do okay with parent module alone.
3695         assert!(opt_ns != None && opt_ns != Some(MacroNS));
3696         let parent_scope = ParentScope { module: self.current_module, ..self.dummy_parent_scope() };
3697         self.resolve_path(path, opt_ns, &parent_scope, record_used, path_span, crate_lint)
3698     }
3699
3700     fn resolve_path(
3701         &mut self,
3702         path: &[Segment],
3703         opt_ns: Option<Namespace>, // `None` indicates a module path in import
3704         parent_scope: &ParentScope<'a>,
3705         record_used: bool,
3706         path_span: Span,
3707         crate_lint: CrateLint,
3708     ) -> PathResult<'a> {
3709         let mut module = None;
3710         let mut allow_super = true;
3711         let mut second_binding = None;
3712         self.current_module = parent_scope.module;
3713
3714         debug!(
3715             "resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
3716              path_span={:?}, crate_lint={:?})",
3717             path,
3718             opt_ns,
3719             record_used,
3720             path_span,
3721             crate_lint,
3722         );
3723
3724         for (i, &Segment { ident, id }) in path.iter().enumerate() {
3725             debug!("resolve_path ident {} {:?} {:?}", i, ident, id);
3726             let record_segment_res = |this: &mut Self, res| {
3727                 if record_used {
3728                     if let Some(id) = id {
3729                         if !this.partial_res_map.contains_key(&id) {
3730                             assert!(id != ast::DUMMY_NODE_ID, "Trying to resolve dummy id");
3731                             this.record_partial_res(id, PartialRes::new(res));
3732                         }
3733                     }
3734                 }
3735             };
3736
3737             let is_last = i == path.len() - 1;
3738             let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
3739             let name = ident.name;
3740
3741             allow_super &= ns == TypeNS &&
3742                 (name == keywords::SelfLower.name() ||
3743                  name == keywords::Super.name());
3744
3745             if ns == TypeNS {
3746                 if allow_super && name == keywords::Super.name() {
3747                     let mut ctxt = ident.span.ctxt().modern();
3748                     let self_module = match i {
3749                         0 => Some(self.resolve_self(&mut ctxt, self.current_module)),
3750                         _ => match module {
3751                             Some(ModuleOrUniformRoot::Module(module)) => Some(module),
3752                             _ => None,
3753                         },
3754                     };
3755                     if let Some(self_module) = self_module {
3756                         if let Some(parent) = self_module.parent {
3757                             module = Some(ModuleOrUniformRoot::Module(
3758                                 self.resolve_self(&mut ctxt, parent)));
3759                             continue;
3760                         }
3761                     }
3762                     let msg = "there are too many initial `super`s.".to_string();
3763                     return PathResult::Failed {
3764                         span: ident.span,
3765                         label: msg,
3766                         suggestion: None,
3767                         is_error_from_last_segment: false,
3768                     };
3769                 }
3770                 if i == 0 {
3771                     if name == keywords::SelfLower.name() {
3772                         let mut ctxt = ident.span.ctxt().modern();
3773                         module = Some(ModuleOrUniformRoot::Module(
3774                             self.resolve_self(&mut ctxt, self.current_module)));
3775                         continue;
3776                     }
3777                     if name == keywords::PathRoot.name() && ident.span.rust_2018() {
3778                         module = Some(ModuleOrUniformRoot::ExternPrelude);
3779                         continue;
3780                     }
3781                     if name == keywords::PathRoot.name() &&
3782                        ident.span.rust_2015() && self.session.rust_2018() {
3783                         // `::a::b` from 2015 macro on 2018 global edition
3784                         module = Some(ModuleOrUniformRoot::CrateRootAndExternPrelude);
3785                         continue;
3786                     }
3787                     if name == keywords::PathRoot.name() ||
3788                        name == keywords::Crate.name() ||
3789                        name == keywords::DollarCrate.name() {
3790                         // `::a::b`, `crate::a::b` or `$crate::a::b`
3791                         module = Some(ModuleOrUniformRoot::Module(
3792                             self.resolve_crate_root(ident)));
3793                         continue;
3794                     }
3795                 }
3796             }
3797
3798             // Report special messages for path segment keywords in wrong positions.
3799             if ident.is_path_segment_keyword() && i != 0 {
3800                 let name_str = if name == keywords::PathRoot.name() {
3801                     "crate root".to_string()
3802                 } else {
3803                     format!("`{}`", name)
3804                 };
3805                 let label = if i == 1 && path[0].ident.name == keywords::PathRoot.name() {
3806                     format!("global paths cannot start with {}", name_str)
3807                 } else {
3808                     format!("{} in paths can only be used in start position", name_str)
3809                 };
3810                 return PathResult::Failed {
3811                     span: ident.span,
3812                     label,
3813                     suggestion: None,
3814                     is_error_from_last_segment: false,
3815                 };
3816             }
3817
3818             let binding = if let Some(module) = module {
3819                 self.resolve_ident_in_module(module, ident, ns, None, record_used, path_span)
3820             } else if opt_ns.is_none() || opt_ns == Some(MacroNS) {
3821                 assert!(ns == TypeNS);
3822                 let scopes = if opt_ns.is_none() { ScopeSet::Import(ns) } else { ScopeSet::Module };
3823                 self.early_resolve_ident_in_lexical_scope(ident, scopes, parent_scope, record_used,
3824                                                           record_used, path_span)
3825             } else {
3826                 let record_used_id =
3827                     if record_used { crate_lint.node_id().or(Some(CRATE_NODE_ID)) } else { None };
3828                 match self.resolve_ident_in_lexical_scope(ident, ns, record_used_id, path_span) {
3829                     // we found a locally-imported or available item/module
3830                     Some(LexicalScopeBinding::Item(binding)) => Ok(binding),
3831                     // we found a local variable or type param
3832                     Some(LexicalScopeBinding::Res(res))
3833                             if opt_ns == Some(TypeNS) || opt_ns == Some(ValueNS) => {
3834                         record_segment_res(self, res);
3835                         return PathResult::NonModule(PartialRes::with_unresolved_segments(
3836                             res, path.len() - 1
3837                         ));
3838                     }
3839                     _ => Err(Determinacy::determined(record_used)),
3840                 }
3841             };
3842
3843             match binding {
3844                 Ok(binding) => {
3845                     if i == 1 {
3846                         second_binding = Some(binding);
3847                     }
3848                     let res = binding.res();
3849                     let maybe_assoc = opt_ns != Some(MacroNS) && PathSource::Type.is_expected(res);
3850                     if let Some(next_module) = binding.module() {
3851                         module = Some(ModuleOrUniformRoot::Module(next_module));
3852                         record_segment_res(self, res);
3853                     } else if res == Res::ToolMod && i + 1 != path.len() {
3854                         if binding.is_import() {
3855                             self.session.struct_span_err(
3856                                 ident.span, "cannot use a tool module through an import"
3857                             ).span_note(
3858                                 binding.span, "the tool module imported here"
3859                             ).emit();
3860                         }
3861                         let res = Res::NonMacroAttr(NonMacroAttrKind::Tool);
3862                         return PathResult::NonModule(PartialRes::new(res));
3863                     } else if res == Res::Err {
3864                         return PathResult::NonModule(PartialRes::new(Res::Err));
3865                     } else if opt_ns.is_some() && (is_last || maybe_assoc) {
3866                         self.lint_if_path_starts_with_module(
3867                             crate_lint,
3868                             path,
3869                             path_span,
3870                             second_binding,
3871                         );
3872                         return PathResult::NonModule(PartialRes::with_unresolved_segments(
3873                             res, path.len() - i - 1
3874                         ));
3875                     } else {
3876                         let label = format!(
3877                             "`{}` is {} {}, not a module",
3878                             ident,
3879                             res.article(),
3880                             res.descr(),
3881                         );
3882
3883                         return PathResult::Failed {
3884                             span: ident.span,
3885                             label,
3886                             suggestion: None,
3887                             is_error_from_last_segment: is_last,
3888                         };
3889                     }
3890                 }
3891                 Err(Undetermined) => return PathResult::Indeterminate,
3892                 Err(Determined) => {
3893                     if let Some(ModuleOrUniformRoot::Module(module)) = module {
3894                         if opt_ns.is_some() && !module.is_normal() {
3895                             return PathResult::NonModule(PartialRes::with_unresolved_segments(
3896                                 module.res().unwrap(), path.len() - i
3897                             ));
3898                         }
3899                     }
3900                     let module_res = match module {
3901                         Some(ModuleOrUniformRoot::Module(module)) => module.res(),
3902                         _ => None,
3903                     };
3904                     let (label, suggestion) = if module_res == self.graph_root.res() {
3905                         let is_mod = |res| {
3906                             match res { Res::Def(DefKind::Mod, _) => true, _ => false }
3907                         };
3908                         let mut candidates =
3909                             self.lookup_import_candidates(ident, TypeNS, is_mod);
3910                         candidates.sort_by_cached_key(|c| {
3911                             (c.path.segments.len(), c.path.to_string())
3912                         });
3913                         if let Some(candidate) = candidates.get(0) {
3914                             (
3915                                 String::from("unresolved import"),
3916                                 Some((
3917                                     vec![(ident.span, candidate.path.to_string())],
3918                                     String::from("a similar path exists"),
3919                                     Applicability::MaybeIncorrect,
3920                                 )),
3921                             )
3922                         } else if !ident.is_reserved() {
3923                             (format!("maybe a missing `extern crate {};`?", ident), None)
3924                         } else {
3925                             // the parser will already have complained about the keyword being used
3926                             return PathResult::NonModule(PartialRes::new(Res::Err));
3927                         }
3928                     } else if i == 0 {
3929                         (format!("use of undeclared type or module `{}`", ident), None)
3930                     } else {
3931                         (format!("could not find `{}` in `{}`", ident, path[i - 1].ident), None)
3932                     };
3933                     return PathResult::Failed {
3934                         span: ident.span,
3935                         label,
3936                         suggestion,
3937                         is_error_from_last_segment: is_last,
3938                     };
3939                 }
3940             }
3941         }
3942
3943         self.lint_if_path_starts_with_module(crate_lint, path, path_span, second_binding);
3944
3945         PathResult::Module(match module {
3946             Some(module) => module,
3947             None if path.is_empty() => ModuleOrUniformRoot::CurrentScope,
3948             _ => span_bug!(path_span, "resolve_path: non-empty path `{:?}` has no module", path),
3949         })
3950     }
3951
3952     fn lint_if_path_starts_with_module(
3953         &self,
3954         crate_lint: CrateLint,
3955         path: &[Segment],
3956         path_span: Span,
3957         second_binding: Option<&NameBinding<'_>>,
3958     ) {
3959         let (diag_id, diag_span) = match crate_lint {
3960             CrateLint::No => return,
3961             CrateLint::SimplePath(id) => (id, path_span),
3962             CrateLint::UsePath { root_id, root_span } => (root_id, root_span),
3963             CrateLint::QPathTrait { qpath_id, qpath_span } => (qpath_id, qpath_span),
3964         };
3965
3966         let first_name = match path.get(0) {
3967             // In the 2018 edition this lint is a hard error, so nothing to do
3968             Some(seg) if seg.ident.span.rust_2015() && self.session.rust_2015() => seg.ident.name,
3969             _ => return,
3970         };
3971
3972         // We're only interested in `use` paths which should start with
3973         // `{{root}}` currently.
3974         if first_name != keywords::PathRoot.name() {
3975             return
3976         }
3977
3978         match path.get(1) {
3979             // If this import looks like `crate::...` it's already good
3980             Some(Segment { ident, .. }) if ident.name == keywords::Crate.name() => return,
3981             // Otherwise go below to see if it's an extern crate
3982             Some(_) => {}
3983             // If the path has length one (and it's `PathRoot` most likely)
3984             // then we don't know whether we're gonna be importing a crate or an
3985             // item in our crate. Defer this lint to elsewhere
3986             None => return,
3987         }
3988
3989         // If the first element of our path was actually resolved to an
3990         // `ExternCrate` (also used for `crate::...`) then no need to issue a
3991         // warning, this looks all good!
3992         if let Some(binding) = second_binding {
3993             if let NameBindingKind::Import { directive: d, .. } = binding.kind {
3994                 // Careful: we still want to rewrite paths from
3995                 // renamed extern crates.
3996                 if let ImportDirectiveSubclass::ExternCrate { source: None, .. } = d.subclass {
3997                     return
3998                 }
3999             }
4000         }
4001
4002         let diag = lint::builtin::BuiltinLintDiagnostics
4003             ::AbsPathWithModule(diag_span);
4004         self.session.buffer_lint_with_diagnostic(
4005             lint::builtin::ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
4006             diag_id, diag_span,
4007             "absolute paths must start with `self`, `super`, \
4008             `crate`, or an external crate name in the 2018 edition",
4009             diag);
4010     }
4011
4012     // Resolve a local definition, potentially adjusting for closures.
4013     fn adjust_local_res(&mut self,
4014                         ns: Namespace,
4015                         rib_index: usize,
4016                         mut res: Res,
4017                         record_used: bool,
4018                         span: Span) -> Res {
4019         debug!("adjust_local_res");
4020         let ribs = &self.ribs[ns][rib_index + 1..];
4021
4022         // An invalid forward use of a type parameter from a previous default.
4023         if let ForwardTyParamBanRibKind = self.ribs[ns][rib_index].kind {
4024             if record_used {
4025                 resolve_error(self, span, ResolutionError::ForwardDeclaredTyParam);
4026             }
4027             assert_eq!(res, Res::Err);
4028             return Res::Err;
4029         }
4030
4031         // An invalid use of a type parameter as the type of a const parameter.
4032         if let TyParamAsConstParamTy = self.ribs[ns][rib_index].kind {
4033             if record_used {
4034                 resolve_error(self, span, ResolutionError::ConstParamDependentOnTypeParam);
4035             }
4036             assert_eq!(res, Res::Err);
4037             return Res::Err;
4038         }
4039
4040         match res {
4041             Res::Upvar(..) => {
4042                 span_bug!(span, "unexpected {:?} in bindings", res)
4043             }
4044             Res::Local(node_id) => {
4045                 use ResolutionError::*;
4046                 let mut res_err = None;
4047
4048                 for rib in ribs {
4049                     match rib.kind {
4050                         NormalRibKind | ModuleRibKind(..) | MacroDefinition(..) |
4051                         ForwardTyParamBanRibKind | TyParamAsConstParamTy => {
4052                             // Nothing to do. Continue.
4053                         }
4054                         ClosureRibKind(function_id) => {
4055                             let prev_res = res;
4056
4057                             let seen = self.upvars_seen
4058                                            .entry(function_id)
4059                                            .or_default();
4060                             if let Some(&index) = seen.get(&node_id) {
4061                                 res = Res::Upvar(node_id, index, function_id);
4062                                 continue;
4063                             }
4064                             let vec = self.upvars
4065                                           .entry(function_id)
4066                                           .or_default();
4067                             let depth = vec.len();
4068                             res = Res::Upvar(node_id, depth, function_id);
4069
4070                             if record_used {
4071                                 vec.push(Upvar {
4072                                     res: prev_res,
4073                                     span,
4074                                 });
4075                                 seen.insert(node_id, depth);
4076                             }
4077                         }
4078                         ItemRibKind | FnItemRibKind | TraitOrImplItemRibKind => {
4079                             // This was an attempt to access an upvar inside a
4080                             // named function item. This is not allowed, so we
4081                             // report an error.
4082                             if record_used {
4083                                 // We don't immediately trigger a resolve error, because
4084                                 // we want certain other resolution errors (namely those
4085                                 // emitted for `ConstantItemRibKind` below) to take
4086                                 // precedence.
4087                                 res_err = Some(CannotCaptureDynamicEnvironmentInFnItem);
4088                             }
4089                         }
4090                         ConstantItemRibKind => {
4091                             // Still doesn't deal with upvars
4092                             if record_used {
4093                                 resolve_error(self, span, AttemptToUseNonConstantValueInConstant);
4094                             }
4095                             return Res::Err;
4096                         }
4097                     }
4098                 }
4099                 if let Some(res_err) = res_err {
4100                      resolve_error(self, span, res_err);
4101                      return Res::Err;
4102                 }
4103             }
4104             Res::Def(DefKind::TyParam, _) | Res::SelfTy(..) => {
4105                 for rib in ribs {
4106                     match rib.kind {
4107                         NormalRibKind | TraitOrImplItemRibKind | ClosureRibKind(..) |
4108                         ModuleRibKind(..) | MacroDefinition(..) | ForwardTyParamBanRibKind |
4109                         ConstantItemRibKind | TyParamAsConstParamTy => {
4110                             // Nothing to do. Continue.
4111                         }
4112                         ItemRibKind | FnItemRibKind => {
4113                             // This was an attempt to use a type parameter outside its scope.
4114                             if record_used {
4115                                 resolve_error(
4116                                     self,
4117                                     span,
4118                                     ResolutionError::GenericParamsFromOuterFunction(res),
4119                                 );
4120                             }
4121                             return Res::Err;
4122                         }
4123                     }
4124                 }
4125             }
4126             Res::Def(DefKind::ConstParam, _) => {
4127                 let mut ribs = ribs.iter().peekable();
4128                 if let Some(Rib { kind: FnItemRibKind, .. }) = ribs.peek() {
4129                     // When declaring const parameters inside function signatures, the first rib
4130                     // is always a `FnItemRibKind`. In this case, we can skip it, to avoid it
4131                     // (spuriously) conflicting with the const param.
4132                     ribs.next();
4133                 }
4134                 for rib in ribs {
4135                     if let ItemRibKind | FnItemRibKind = rib.kind {
4136                         // This was an attempt to use a const parameter outside its scope.
4137                         if record_used {
4138                             resolve_error(
4139                                 self,
4140                                 span,
4141                                 ResolutionError::GenericParamsFromOuterFunction(res),
4142                             );
4143                         }
4144                         return Res::Err;
4145                     }
4146                 }
4147             }
4148             _ => {}
4149         }
4150         res
4151     }
4152
4153     fn lookup_assoc_candidate<FilterFn>(&mut self,
4154                                         ident: Ident,
4155                                         ns: Namespace,
4156                                         filter_fn: FilterFn)
4157                                         -> Option<AssocSuggestion>
4158         where FilterFn: Fn(Res) -> bool
4159     {
4160         fn extract_node_id(t: &Ty) -> Option<NodeId> {
4161             match t.node {
4162                 TyKind::Path(None, _) => Some(t.id),
4163                 TyKind::Rptr(_, ref mut_ty) => extract_node_id(&mut_ty.ty),
4164                 // This doesn't handle the remaining `Ty` variants as they are not
4165                 // that commonly the self_type, it might be interesting to provide
4166                 // support for those in future.
4167                 _ => None,
4168             }
4169         }
4170
4171         // Fields are generally expected in the same contexts as locals.
4172         if filter_fn(Res::Local(ast::DUMMY_NODE_ID)) {
4173             if let Some(node_id) = self.current_self_type.as_ref().and_then(extract_node_id) {
4174                 // Look for a field with the same name in the current self_type.
4175                 if let Some(resolution) = self.partial_res_map.get(&node_id) {
4176                     match resolution.base_res() {
4177                         Res::Def(DefKind::Struct, did) | Res::Def(DefKind::Union, did)
4178                                 if resolution.unresolved_segments() == 0 => {
4179                             if let Some(field_names) = self.field_names.get(&did) {
4180                                 if field_names.iter().any(|&field_name| ident.name == field_name) {
4181                                     return Some(AssocSuggestion::Field);
4182                                 }
4183                             }
4184                         }
4185                         _ => {}
4186                     }
4187                 }
4188             }
4189         }
4190
4191         // Look for associated items in the current trait.
4192         if let Some((module, _)) = self.current_trait_ref {
4193             if let Ok(binding) = self.resolve_ident_in_module(
4194                     ModuleOrUniformRoot::Module(module),
4195                     ident,
4196                     ns,
4197                     None,
4198                     false,
4199                     module.span,
4200                 ) {
4201                 let res = binding.res();
4202                 if filter_fn(res) {
4203                     return Some(if self.has_self.contains(&res.def_id()) {
4204                         AssocSuggestion::MethodWithSelf
4205                     } else {
4206                         AssocSuggestion::AssocItem
4207                     });
4208                 }
4209             }
4210         }
4211
4212         None
4213     }
4214
4215     fn lookup_typo_candidate<FilterFn>(
4216         &mut self,
4217         path: &[Segment],
4218         ns: Namespace,
4219         filter_fn: FilterFn,
4220         span: Span,
4221     ) -> Option<TypoSuggestion>
4222     where
4223         FilterFn: Fn(Res) -> bool,
4224     {
4225         let add_module_candidates = |module: Module<'_>, names: &mut Vec<TypoSuggestion>| {
4226             for (&(ident, _), resolution) in module.resolutions.borrow().iter() {
4227                 if let Some(binding) = resolution.borrow().binding {
4228                     if !ident.name.is_gensymed() && filter_fn(binding.res()) {
4229                         names.push(TypoSuggestion {
4230                             candidate: ident.name,
4231                             article: binding.res().article(),
4232                             kind: binding.res().descr(),
4233                         });
4234                     }
4235                 }
4236             }
4237         };
4238
4239         let mut names = Vec::new();
4240         if path.len() == 1 {
4241             // Search in lexical scope.
4242             // Walk backwards up the ribs in scope and collect candidates.
4243             for rib in self.ribs[ns].iter().rev() {
4244                 // Locals and type parameters
4245                 for (ident, &res) in &rib.bindings {
4246                     if !ident.name.is_gensymed() && filter_fn(res) {
4247                         names.push(TypoSuggestion {
4248                             candidate: ident.name,
4249                             article: res.article(),
4250                             kind: res.descr(),
4251                         });
4252                     }
4253                 }
4254                 // Items in scope
4255                 if let ModuleRibKind(module) = rib.kind {
4256                     // Items from this module
4257                     add_module_candidates(module, &mut names);
4258
4259                     if let ModuleKind::Block(..) = module.kind {
4260                         // We can see through blocks
4261                     } else {
4262                         // Items from the prelude
4263                         if !module.no_implicit_prelude {
4264                             names.extend(self.extern_prelude.clone().iter().flat_map(|(ident, _)| {
4265                                 self.crate_loader
4266                                     .maybe_process_path_extern(ident.name, ident.span)
4267                                     .and_then(|crate_id| {
4268                                         let crate_mod = Res::Def(
4269                                             DefKind::Mod,
4270                                             DefId {
4271                                                 krate: crate_id,
4272                                                 index: CRATE_DEF_INDEX,
4273                                             },
4274                                         );
4275
4276                                         if !ident.name.is_gensymed() && filter_fn(crate_mod) {
4277                                             Some(TypoSuggestion {
4278                                                 candidate: ident.name,
4279                                                 article: "a",
4280                                                 kind: "crate",
4281                                             })
4282                                         } else {
4283                                             None
4284                                         }
4285                                     })
4286                             }));
4287
4288                             if let Some(prelude) = self.prelude {
4289                                 add_module_candidates(prelude, &mut names);
4290                             }
4291                         }
4292                         break;
4293                     }
4294                 }
4295             }
4296             // Add primitive types to the mix
4297             if filter_fn(Res::PrimTy(Bool)) {
4298                 names.extend(
4299                     self.primitive_type_table.primitive_types
4300                         .iter()
4301                         .filter(|(name, _)| !name.is_gensymed())
4302                         .map(|(name, _)| {
4303                             TypoSuggestion {
4304                                 candidate: *name,
4305                                 article: "a",
4306                                 kind: "primitive type",
4307                             }
4308                         })
4309                 )
4310             }
4311         } else {
4312             // Search in module.
4313             let mod_path = &path[..path.len() - 1];
4314             if let PathResult::Module(module) = self.resolve_path_without_parent_scope(
4315                 mod_path, Some(TypeNS), false, span, CrateLint::No
4316             ) {
4317                 if let ModuleOrUniformRoot::Module(module) = module {
4318                     add_module_candidates(module, &mut names);
4319                 }
4320             }
4321         }
4322
4323         let name = path[path.len() - 1].ident.name;
4324         // Make sure error reporting is deterministic.
4325         names.sort_by_cached_key(|suggestion| suggestion.candidate.as_str());
4326
4327         match find_best_match_for_name(
4328             names.iter().map(|suggestion| &suggestion.candidate),
4329             &name.as_str(),
4330             None,
4331         ) {
4332             Some(found) if found != name => names
4333                 .into_iter()
4334                 .find(|suggestion| suggestion.candidate == found),
4335             _ => None,
4336         }
4337     }
4338
4339     fn with_resolved_label<F>(&mut self, label: Option<Label>, id: NodeId, f: F)
4340         where F: FnOnce(&mut Resolver<'_>)
4341     {
4342         if let Some(label) = label {
4343             self.unused_labels.insert(id, label.ident.span);
4344             self.with_label_rib(|this| {
4345                 let ident = label.ident.modern_and_legacy();
4346                 this.label_ribs.last_mut().unwrap().bindings.insert(ident, id);
4347                 f(this);
4348             });
4349         } else {
4350             f(self);
4351         }
4352     }
4353
4354     fn resolve_labeled_block(&mut self, label: Option<Label>, id: NodeId, block: &Block) {
4355         self.with_resolved_label(label, id, |this| this.visit_block(block));
4356     }
4357
4358     fn resolve_expr(&mut self, expr: &Expr, parent: Option<&Expr>) {
4359         // First, record candidate traits for this expression if it could
4360         // result in the invocation of a method call.
4361
4362         self.record_candidate_traits_for_expr_if_necessary(expr);
4363
4364         // Next, resolve the node.
4365         match expr.node {
4366             ExprKind::Path(ref qself, ref path) => {
4367                 self.smart_resolve_path(expr.id, qself.as_ref(), path, PathSource::Expr(parent));
4368                 visit::walk_expr(self, expr);
4369             }
4370
4371             ExprKind::Struct(ref path, ..) => {
4372                 self.smart_resolve_path(expr.id, None, path, PathSource::Struct);
4373                 visit::walk_expr(self, expr);
4374             }
4375
4376             ExprKind::Break(Some(label), _) | ExprKind::Continue(Some(label)) => {
4377                 let node_id = self.search_label(label.ident, |rib, ident| {
4378                     rib.bindings.get(&ident.modern_and_legacy()).cloned()
4379                 });
4380                 match node_id {
4381                     None => {
4382                         // Search again for close matches...
4383                         // Picks the first label that is "close enough", which is not necessarily
4384                         // the closest match
4385                         let close_match = self.search_label(label.ident, |rib, ident| {
4386                             let names = rib.bindings.iter().filter_map(|(id, _)| {
4387                                 if id.span.ctxt() == label.ident.span.ctxt() {
4388                                     Some(&id.name)
4389                                 } else {
4390                                     None
4391                                 }
4392                             });
4393                             find_best_match_for_name(names, &*ident.as_str(), None)
4394                         });
4395                         self.record_partial_res(expr.id, PartialRes::new(Res::Err));
4396                         resolve_error(self,
4397                                       label.ident.span,
4398                                       ResolutionError::UndeclaredLabel(&label.ident.as_str(),
4399                                                                        close_match));
4400                     }
4401                     Some(node_id) => {
4402                         // Since this res is a label, it is never read.
4403                         self.label_res_map.insert(expr.id, node_id);
4404                         self.unused_labels.remove(&node_id);
4405                     }
4406                 }
4407
4408                 // visit `break` argument if any
4409                 visit::walk_expr(self, expr);
4410             }
4411
4412             ExprKind::IfLet(ref pats, ref subexpression, ref if_block, ref optional_else) => {
4413                 self.visit_expr(subexpression);
4414
4415                 self.ribs[ValueNS].push(Rib::new(NormalRibKind));
4416                 let mut bindings_list = FxHashMap::default();
4417                 for pat in pats {
4418                     self.resolve_pattern(pat, PatternSource::IfLet, &mut bindings_list);
4419                 }
4420                 // This has to happen *after* we determine which pat_idents are variants
4421                 self.check_consistent_bindings(pats);
4422                 self.visit_block(if_block);
4423                 self.ribs[ValueNS].pop();
4424
4425                 optional_else.as_ref().map(|expr| self.visit_expr(expr));
4426             }
4427
4428             ExprKind::Loop(ref block, label) => self.resolve_labeled_block(label, expr.id, &block),
4429
4430             ExprKind::While(ref subexpression, ref block, label) => {
4431                 self.with_resolved_label(label, expr.id, |this| {
4432                     this.visit_expr(subexpression);
4433                     this.visit_block(block);
4434                 });
4435             }
4436
4437             ExprKind::WhileLet(ref pats, ref subexpression, ref block, label) => {
4438                 self.with_resolved_label(label, expr.id, |this| {
4439                     this.visit_expr(subexpression);
4440                     this.ribs[ValueNS].push(Rib::new(NormalRibKind));
4441                     let mut bindings_list = FxHashMap::default();
4442                     for pat in pats {
4443                         this.resolve_pattern(pat, PatternSource::WhileLet, &mut bindings_list);
4444                     }
4445                     // This has to happen *after* we determine which pat_idents are variants.
4446                     this.check_consistent_bindings(pats);
4447                     this.visit_block(block);
4448                     this.ribs[ValueNS].pop();
4449                 });
4450             }
4451
4452             ExprKind::ForLoop(ref pattern, ref subexpression, ref block, label) => {
4453                 self.visit_expr(subexpression);
4454                 self.ribs[ValueNS].push(Rib::new(NormalRibKind));
4455                 self.resolve_pattern(pattern, PatternSource::For, &mut FxHashMap::default());
4456
4457                 self.resolve_labeled_block(label, expr.id, block);
4458
4459                 self.ribs[ValueNS].pop();
4460             }
4461
4462             ExprKind::Block(ref block, label) => self.resolve_labeled_block(label, block.id, block),
4463
4464             // Equivalent to `visit::walk_expr` + passing some context to children.
4465             ExprKind::Field(ref subexpression, _) => {
4466                 self.resolve_expr(subexpression, Some(expr));
4467             }
4468             ExprKind::MethodCall(ref segment, ref arguments) => {
4469                 let mut arguments = arguments.iter();
4470                 self.resolve_expr(arguments.next().unwrap(), Some(expr));
4471                 for argument in arguments {
4472                     self.resolve_expr(argument, None);
4473                 }
4474                 self.visit_path_segment(expr.span, segment);
4475             }
4476
4477             ExprKind::Call(ref callee, ref arguments) => {
4478                 self.resolve_expr(callee, Some(expr));
4479                 for argument in arguments {
4480                     self.resolve_expr(argument, None);
4481                 }
4482             }
4483             ExprKind::Type(ref type_expr, _) => {
4484                 self.current_type_ascription.push(type_expr.span);
4485                 visit::walk_expr(self, expr);
4486                 self.current_type_ascription.pop();
4487             }
4488             // Resolve the body of async exprs inside the async closure to which they desugar
4489             ExprKind::Async(_, async_closure_id, ref block) => {
4490                 let rib_kind = ClosureRibKind(async_closure_id);
4491                 self.ribs[ValueNS].push(Rib::new(rib_kind));
4492                 self.label_ribs.push(Rib::new(rib_kind));
4493                 self.visit_block(&block);
4494                 self.label_ribs.pop();
4495                 self.ribs[ValueNS].pop();
4496             }
4497             // `async |x| ...` gets desugared to `|x| future_from_generator(|| ...)`, so we need to
4498             // resolve the arguments within the proper scopes so that usages of them inside the
4499             // closure are detected as upvars rather than normal closure arg usages.
4500             ExprKind::Closure(
4501                 _, IsAsync::Async { closure_id: inner_closure_id, .. }, _,
4502                 ref fn_decl, ref body, _span,
4503             ) => {
4504                 let rib_kind = ClosureRibKind(expr.id);
4505                 self.ribs[ValueNS].push(Rib::new(rib_kind));
4506                 self.label_ribs.push(Rib::new(rib_kind));
4507                 // Resolve arguments:
4508                 let mut bindings_list = FxHashMap::default();
4509                 for argument in &fn_decl.inputs {
4510                     self.resolve_pattern(&argument.pat, PatternSource::FnParam, &mut bindings_list);
4511                     self.visit_ty(&argument.ty);
4512                 }
4513                 // No need to resolve return type-- the outer closure return type is
4514                 // FunctionRetTy::Default
4515
4516                 // Now resolve the inner closure
4517                 {
4518                     let rib_kind = ClosureRibKind(inner_closure_id);
4519                     self.ribs[ValueNS].push(Rib::new(rib_kind));
4520                     self.label_ribs.push(Rib::new(rib_kind));
4521                     // No need to resolve arguments: the inner closure has none.
4522                     // Resolve the return type:
4523                     visit::walk_fn_ret_ty(self, &fn_decl.output);
4524                     // Resolve the body
4525                     self.visit_expr(body);
4526                     self.label_ribs.pop();
4527                     self.ribs[ValueNS].pop();
4528                 }
4529                 self.label_ribs.pop();
4530                 self.ribs[ValueNS].pop();
4531             }
4532             _ => {
4533                 visit::walk_expr(self, expr);
4534             }
4535         }
4536     }
4537
4538     fn record_candidate_traits_for_expr_if_necessary(&mut self, expr: &Expr) {
4539         match expr.node {
4540             ExprKind::Field(_, ident) => {
4541                 // FIXME(#6890): Even though you can't treat a method like a
4542                 // field, we need to add any trait methods we find that match
4543                 // the field name so that we can do some nice error reporting
4544                 // later on in typeck.
4545                 let traits = self.get_traits_containing_item(ident, ValueNS);
4546                 self.trait_map.insert(expr.id, traits);
4547             }
4548             ExprKind::MethodCall(ref segment, ..) => {
4549                 debug!("(recording candidate traits for expr) recording traits for {}",
4550                        expr.id);
4551                 let traits = self.get_traits_containing_item(segment.ident, ValueNS);
4552                 self.trait_map.insert(expr.id, traits);
4553             }
4554             _ => {
4555                 // Nothing to do.
4556             }
4557         }
4558     }
4559
4560     fn get_traits_containing_item(&mut self, mut ident: Ident, ns: Namespace)
4561                                   -> Vec<TraitCandidate> {
4562         debug!("(getting traits containing item) looking for '{}'", ident.name);
4563
4564         let mut found_traits = Vec::new();
4565         // Look for the current trait.
4566         if let Some((module, _)) = self.current_trait_ref {
4567             if self.resolve_ident_in_module(
4568                 ModuleOrUniformRoot::Module(module),
4569                 ident,
4570                 ns,
4571                 None,
4572                 false,
4573                 module.span,
4574             ).is_ok() {
4575                 let def_id = module.def_id().unwrap();
4576                 found_traits.push(TraitCandidate { def_id: def_id, import_ids: smallvec![] });
4577             }
4578         }
4579
4580         ident.span = ident.span.modern();
4581         let mut search_module = self.current_module;
4582         loop {
4583             self.get_traits_in_module_containing_item(ident, ns, search_module, &mut found_traits);
4584             search_module = unwrap_or!(
4585                 self.hygienic_lexical_parent(search_module, &mut ident.span), break
4586             );
4587         }
4588
4589         if let Some(prelude) = self.prelude {
4590             if !search_module.no_implicit_prelude {
4591                 self.get_traits_in_module_containing_item(ident, ns, prelude, &mut found_traits);
4592             }
4593         }
4594
4595         found_traits
4596     }
4597
4598     fn get_traits_in_module_containing_item(&mut self,
4599                                             ident: Ident,
4600                                             ns: Namespace,
4601                                             module: Module<'a>,
4602                                             found_traits: &mut Vec<TraitCandidate>) {
4603         assert!(ns == TypeNS || ns == ValueNS);
4604         let mut traits = module.traits.borrow_mut();
4605         if traits.is_none() {
4606             let mut collected_traits = Vec::new();
4607             module.for_each_child(|name, ns, binding| {
4608                 if ns != TypeNS { return }
4609                 match binding.res() {
4610                     Res::Def(DefKind::Trait, _) |
4611                     Res::Def(DefKind::TraitAlias, _) => collected_traits.push((name, binding)),
4612                     _ => (),
4613                 }
4614             });
4615             *traits = Some(collected_traits.into_boxed_slice());
4616         }
4617
4618         for &(trait_name, binding) in traits.as_ref().unwrap().iter() {
4619             // Traits have pseudo-modules that can be used to search for the given ident.
4620             if let Some(module) = binding.module() {
4621                 let mut ident = ident;
4622                 if ident.span.glob_adjust(
4623                     module.expansion,
4624                     binding.span.ctxt().modern(),
4625                 ).is_none() {
4626                     continue
4627                 }
4628                 if self.resolve_ident_in_module_unadjusted(
4629                     ModuleOrUniformRoot::Module(module),
4630                     ident,
4631                     ns,
4632                     false,
4633                     module.span,
4634                 ).is_ok() {
4635                     let import_ids = self.find_transitive_imports(&binding.kind, trait_name);
4636                     let trait_def_id = module.def_id().unwrap();
4637                     found_traits.push(TraitCandidate { def_id: trait_def_id, import_ids });
4638                 }
4639             } else if let Res::Def(DefKind::TraitAlias, _) = binding.res() {
4640                 // For now, just treat all trait aliases as possible candidates, since we don't
4641                 // know if the ident is somewhere in the transitive bounds.
4642                 let import_ids = self.find_transitive_imports(&binding.kind, trait_name);
4643                 let trait_def_id = binding.res().def_id();
4644                 found_traits.push(TraitCandidate { def_id: trait_def_id, import_ids });
4645             } else {
4646                 bug!("candidate is not trait or trait alias?")
4647             }
4648         }
4649     }
4650
4651     fn find_transitive_imports(&mut self, mut kind: &NameBindingKind<'_>,
4652                                trait_name: Ident) -> SmallVec<[NodeId; 1]> {
4653         let mut import_ids = smallvec![];
4654         while let NameBindingKind::Import { directive, binding, .. } = kind {
4655             self.maybe_unused_trait_imports.insert(directive.id);
4656             self.add_to_glob_map(&directive, trait_name);
4657             import_ids.push(directive.id);
4658             kind = &binding.kind;
4659         };
4660         import_ids
4661     }
4662
4663     fn lookup_import_candidates_from_module<FilterFn>(&mut self,
4664                                           lookup_ident: Ident,
4665                                           namespace: Namespace,
4666                                           start_module: &'a ModuleData<'a>,
4667                                           crate_name: Ident,
4668                                           filter_fn: FilterFn)
4669                                           -> Vec<ImportSuggestion>
4670         where FilterFn: Fn(Res) -> bool
4671     {
4672         let mut candidates = Vec::new();
4673         let mut seen_modules = FxHashSet::default();
4674         let not_local_module = crate_name != keywords::Crate.ident();
4675         let mut worklist = vec![(start_module, Vec::<ast::PathSegment>::new(), not_local_module)];
4676
4677         while let Some((in_module,
4678                         path_segments,
4679                         in_module_is_extern)) = worklist.pop() {
4680             self.populate_module_if_necessary(in_module);
4681
4682             // We have to visit module children in deterministic order to avoid
4683             // instabilities in reported imports (#43552).
4684             in_module.for_each_child_stable(|ident, ns, name_binding| {
4685                 // avoid imports entirely
4686                 if name_binding.is_import() && !name_binding.is_extern_crate() { return; }
4687                 // avoid non-importable candidates as well
4688                 if !name_binding.is_importable() { return; }
4689
4690                 // collect results based on the filter function
4691                 if ident.name == lookup_ident.name && ns == namespace {
4692                     let res = name_binding.res();
4693                     if filter_fn(res) {
4694                         // create the path
4695                         let mut segms = path_segments.clone();
4696                         if lookup_ident.span.rust_2018() {
4697                             // crate-local absolute paths start with `crate::` in edition 2018
4698                             // FIXME: may also be stabilized for Rust 2015 (Issues #45477, #44660)
4699                             segms.insert(
4700                                 0, ast::PathSegment::from_ident(crate_name)
4701                             );
4702                         }
4703
4704                         segms.push(ast::PathSegment::from_ident(ident));
4705                         let path = Path {
4706                             span: name_binding.span,
4707                             segments: segms,
4708                         };
4709                         // the entity is accessible in the following cases:
4710                         // 1. if it's defined in the same crate, it's always
4711                         // accessible (since private entities can be made public)
4712                         // 2. if it's defined in another crate, it's accessible
4713                         // only if both the module is public and the entity is
4714                         // declared as public (due to pruning, we don't explore
4715                         // outside crate private modules => no need to check this)
4716                         if !in_module_is_extern || name_binding.vis == ty::Visibility::Public {
4717                             let did = match res {
4718                                 Res::Def(DefKind::Ctor(..), did) => self.parent(did),
4719                                 _ => res.opt_def_id(),
4720                             };
4721                             candidates.push(ImportSuggestion { did, path });
4722                         }
4723                     }
4724                 }
4725
4726                 // collect submodules to explore
4727                 if let Some(module) = name_binding.module() {
4728                     // form the path
4729                     let mut path_segments = path_segments.clone();
4730                     path_segments.push(ast::PathSegment::from_ident(ident));
4731
4732                     let is_extern_crate_that_also_appears_in_prelude =
4733                         name_binding.is_extern_crate() &&
4734                         lookup_ident.span.rust_2018();
4735
4736                     let is_visible_to_user =
4737                         !in_module_is_extern || name_binding.vis == ty::Visibility::Public;
4738
4739                     if !is_extern_crate_that_also_appears_in_prelude && is_visible_to_user {
4740                         // add the module to the lookup
4741                         let is_extern = in_module_is_extern || name_binding.is_extern_crate();
4742                         if seen_modules.insert(module.def_id().unwrap()) {
4743                             worklist.push((module, path_segments, is_extern));
4744                         }
4745                     }
4746                 }
4747             })
4748         }
4749
4750         candidates
4751     }
4752
4753     /// When name resolution fails, this method can be used to look up candidate
4754     /// entities with the expected name. It allows filtering them using the
4755     /// supplied predicate (which should be used to only accept the types of
4756     /// definitions expected, e.g., traits). The lookup spans across all crates.
4757     ///
4758     /// N.B., the method does not look into imports, but this is not a problem,
4759     /// since we report the definitions (thus, the de-aliased imports).
4760     fn lookup_import_candidates<FilterFn>(&mut self,
4761                                           lookup_ident: Ident,
4762                                           namespace: Namespace,
4763                                           filter_fn: FilterFn)
4764                                           -> Vec<ImportSuggestion>
4765         where FilterFn: Fn(Res) -> bool
4766     {
4767         let mut suggestions = self.lookup_import_candidates_from_module(
4768             lookup_ident, namespace, self.graph_root, keywords::Crate.ident(), &filter_fn);
4769
4770         if lookup_ident.span.rust_2018() {
4771             let extern_prelude_names = self.extern_prelude.clone();
4772             for (ident, _) in extern_prelude_names.into_iter() {
4773                 if let Some(crate_id) = self.crate_loader.maybe_process_path_extern(ident.name,
4774                                                                                     ident.span) {
4775                     let crate_root = self.get_module(DefId {
4776                         krate: crate_id,
4777                         index: CRATE_DEF_INDEX,
4778                     });
4779                     self.populate_module_if_necessary(&crate_root);
4780
4781                     suggestions.extend(self.lookup_import_candidates_from_module(
4782                         lookup_ident, namespace, crate_root, ident, &filter_fn));
4783                 }
4784             }
4785         }
4786
4787         suggestions
4788     }
4789
4790     fn find_module(&mut self, def_id: DefId) -> Option<(Module<'a>, ImportSuggestion)> {
4791         let mut result = None;
4792         let mut seen_modules = FxHashSet::default();
4793         let mut worklist = vec![(self.graph_root, Vec::new())];
4794
4795         while let Some((in_module, path_segments)) = worklist.pop() {
4796             // abort if the module is already found
4797             if result.is_some() { break; }
4798
4799             self.populate_module_if_necessary(in_module);
4800
4801             in_module.for_each_child_stable(|ident, _, name_binding| {
4802                 // abort if the module is already found or if name_binding is private external
4803                 if result.is_some() || !name_binding.vis.is_visible_locally() {
4804                     return
4805                 }
4806                 if let Some(module) = name_binding.module() {
4807                     // form the path
4808                     let mut path_segments = path_segments.clone();
4809                     path_segments.push(ast::PathSegment::from_ident(ident));
4810                     let module_def_id = module.def_id().unwrap();
4811                     if module_def_id == def_id {
4812                         let path = Path {
4813                             span: name_binding.span,
4814                             segments: path_segments,
4815                         };
4816                         result = Some((module, ImportSuggestion { did: Some(def_id), path }));
4817                     } else {
4818                         // add the module to the lookup
4819                         if seen_modules.insert(module_def_id) {
4820                             worklist.push((module, path_segments));
4821                         }
4822                     }
4823                 }
4824             });
4825         }
4826
4827         result
4828     }
4829
4830     fn collect_enum_variants(&mut self, def_id: DefId) -> Option<Vec<Path>> {
4831         self.find_module(def_id).map(|(enum_module, enum_import_suggestion)| {
4832             self.populate_module_if_necessary(enum_module);
4833
4834             let mut variants = Vec::new();
4835             enum_module.for_each_child_stable(|ident, _, name_binding| {
4836                 if let Res::Def(DefKind::Variant, _) = name_binding.res() {
4837                     let mut segms = enum_import_suggestion.path.segments.clone();
4838                     segms.push(ast::PathSegment::from_ident(ident));
4839                     variants.push(Path {
4840                         span: name_binding.span,
4841                         segments: segms,
4842                     });
4843                 }
4844             });
4845             variants
4846         })
4847     }
4848
4849     fn record_partial_res(&mut self, node_id: NodeId, resolution: PartialRes) {
4850         debug!("(recording res) recording {:?} for {}", resolution, node_id);
4851         if let Some(prev_res) = self.partial_res_map.insert(node_id, resolution) {
4852             panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
4853         }
4854     }
4855
4856     fn resolve_visibility(&mut self, vis: &ast::Visibility) -> ty::Visibility {
4857         match vis.node {
4858             ast::VisibilityKind::Public => ty::Visibility::Public,
4859             ast::VisibilityKind::Crate(..) => {
4860                 ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))
4861             }
4862             ast::VisibilityKind::Inherited => {
4863                 ty::Visibility::Restricted(self.current_module.normal_ancestor_id)
4864             }
4865             ast::VisibilityKind::Restricted { ref path, id, .. } => {
4866                 // For visibilities we are not ready to provide correct implementation of "uniform
4867                 // paths" right now, so on 2018 edition we only allow module-relative paths for now.
4868                 // On 2015 edition visibilities are resolved as crate-relative by default,
4869                 // so we are prepending a root segment if necessary.
4870                 let ident = path.segments.get(0).expect("empty path in visibility").ident;
4871                 let crate_root = if ident.is_path_segment_keyword() {
4872                     None
4873                 } else if ident.span.rust_2018() {
4874                     let msg = "relative paths are not supported in visibilities on 2018 edition";
4875                     self.session.struct_span_err(ident.span, msg)
4876                         .span_suggestion(
4877                             path.span,
4878                             "try",
4879                             format!("crate::{}", path),
4880                             Applicability::MaybeIncorrect,
4881                         )
4882                         .emit();
4883                     return ty::Visibility::Public;
4884                 } else {
4885                     let ctxt = ident.span.ctxt();
4886                     Some(Segment::from_ident(Ident::new(
4887                         keywords::PathRoot.name(), path.span.shrink_to_lo().with_ctxt(ctxt)
4888                     )))
4889                 };
4890
4891                 let segments = crate_root.into_iter()
4892                     .chain(path.segments.iter().map(|seg| seg.into())).collect::<Vec<_>>();
4893                 let res = self.smart_resolve_path_fragment(
4894                     id,
4895                     None,
4896                     &segments,
4897                     path.span,
4898                     PathSource::Visibility,
4899                     CrateLint::SimplePath(id),
4900                 ).base_res();
4901                 if res == Res::Err {
4902                     ty::Visibility::Public
4903                 } else {
4904                     let vis = ty::Visibility::Restricted(res.def_id());
4905                     if self.is_accessible(vis) {
4906                         vis
4907                     } else {
4908                         self.session.span_err(path.span, "visibilities can only be restricted \
4909                                                           to ancestor modules");
4910                         ty::Visibility::Public
4911                     }
4912                 }
4913             }
4914         }
4915     }
4916
4917     fn is_accessible(&self, vis: ty::Visibility) -> bool {
4918         vis.is_accessible_from(self.current_module.normal_ancestor_id, self)
4919     }
4920
4921     fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
4922         vis.is_accessible_from(module.normal_ancestor_id, self)
4923     }
4924
4925     fn set_binding_parent_module(&mut self, binding: &'a NameBinding<'a>, module: Module<'a>) {
4926         if let Some(old_module) = self.binding_parent_modules.insert(PtrKey(binding), module) {
4927             if !ptr::eq(module, old_module) {
4928                 span_bug!(binding.span, "parent module is reset for binding");
4929             }
4930         }
4931     }
4932
4933     fn disambiguate_legacy_vs_modern(
4934         &self,
4935         legacy: &'a NameBinding<'a>,
4936         modern: &'a NameBinding<'a>,
4937     ) -> bool {
4938         // Some non-controversial subset of ambiguities "modern macro name" vs "macro_rules"
4939         // is disambiguated to mitigate regressions from macro modularization.
4940         // Scoping for `macro_rules` behaves like scoping for `let` at module level, in general.
4941         match (self.binding_parent_modules.get(&PtrKey(legacy)),
4942                self.binding_parent_modules.get(&PtrKey(modern))) {
4943             (Some(legacy), Some(modern)) =>
4944                 legacy.normal_ancestor_id == modern.normal_ancestor_id &&
4945                 modern.is_ancestor_of(legacy),
4946             _ => false,
4947         }
4948     }
4949
4950     fn binding_description(&self, b: &NameBinding<'_>, ident: Ident, from_prelude: bool) -> String {
4951         if b.span.is_dummy() {
4952             let add_built_in = match b.res() {
4953                 // These already contain the "built-in" prefix or look bad with it.
4954                 Res::NonMacroAttr(..) | Res::PrimTy(..) | Res::ToolMod => false,
4955                 _ => true,
4956             };
4957             let (built_in, from) = if from_prelude {
4958                 ("", " from prelude")
4959             } else if b.is_extern_crate() && !b.is_import() &&
4960                         self.session.opts.externs.get(&ident.as_str()).is_some() {
4961                 ("", " passed with `--extern`")
4962             } else if add_built_in {
4963                 (" built-in", "")
4964             } else {
4965                 ("", "")
4966             };
4967
4968             let article = if built_in.is_empty() { b.article() } else { "a" };
4969             format!("{a}{built_in} {thing}{from}",
4970                     a = article, thing = b.descr(), built_in = built_in, from = from)
4971         } else {
4972             let introduced = if b.is_import() { "imported" } else { "defined" };
4973             format!("the {thing} {introduced} here",
4974                     thing = b.descr(), introduced = introduced)
4975         }
4976     }
4977
4978     fn report_ambiguity_error(&self, ambiguity_error: &AmbiguityError<'_>) {
4979         let AmbiguityError { kind, ident, b1, b2, misc1, misc2 } = *ambiguity_error;
4980         let (b1, b2, misc1, misc2, swapped) = if b2.span.is_dummy() && !b1.span.is_dummy() {
4981             // We have to print the span-less alternative first, otherwise formatting looks bad.
4982             (b2, b1, misc2, misc1, true)
4983         } else {
4984             (b1, b2, misc1, misc2, false)
4985         };
4986
4987         let mut err = struct_span_err!(self.session, ident.span, E0659,
4988                                        "`{ident}` is ambiguous ({why})",
4989                                        ident = ident, why = kind.descr());
4990         err.span_label(ident.span, "ambiguous name");
4991
4992         let mut could_refer_to = |b: &NameBinding<'_>, misc: AmbiguityErrorMisc, also: &str| {
4993             let what = self.binding_description(b, ident, misc == AmbiguityErrorMisc::FromPrelude);
4994             let note_msg = format!("`{ident}` could{also} refer to {what}",
4995                                    ident = ident, also = also, what = what);
4996
4997             let mut help_msgs = Vec::new();
4998             if b.is_glob_import() && (kind == AmbiguityKind::GlobVsGlob ||
4999                                       kind == AmbiguityKind::GlobVsExpanded ||
5000                                       kind == AmbiguityKind::GlobVsOuter &&
5001                                       swapped != also.is_empty()) {
5002                 help_msgs.push(format!("consider adding an explicit import of \
5003                                         `{ident}` to disambiguate", ident = ident))
5004             }
5005             if b.is_extern_crate() && ident.span.rust_2018() {
5006                 help_msgs.push(format!(
5007                     "use `::{ident}` to refer to this {thing} unambiguously",
5008                     ident = ident, thing = b.descr(),
5009                 ))
5010             }
5011             if misc == AmbiguityErrorMisc::SuggestCrate {
5012                 help_msgs.push(format!(
5013                     "use `crate::{ident}` to refer to this {thing} unambiguously",
5014                     ident = ident, thing = b.descr(),
5015                 ))
5016             } else if misc == AmbiguityErrorMisc::SuggestSelf {
5017                 help_msgs.push(format!(
5018                     "use `self::{ident}` to refer to this {thing} unambiguously",
5019                     ident = ident, thing = b.descr(),
5020                 ))
5021             }
5022
5023             err.span_note(b.span, &note_msg);
5024             for (i, help_msg) in help_msgs.iter().enumerate() {
5025                 let or = if i == 0 { "" } else { "or " };
5026                 err.help(&format!("{}{}", or, help_msg));
5027             }
5028         };
5029
5030         could_refer_to(b1, misc1, "");
5031         could_refer_to(b2, misc2, " also");
5032         err.emit();
5033     }
5034
5035     fn report_errors(&mut self, krate: &Crate) {
5036         self.report_with_use_injections(krate);
5037
5038         for &(span_use, span_def) in &self.macro_expanded_macro_export_errors {
5039             let msg = "macro-expanded `macro_export` macros from the current crate \
5040                        cannot be referred to by absolute paths";
5041             self.session.buffer_lint_with_diagnostic(
5042                 lint::builtin::MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
5043                 CRATE_NODE_ID, span_use, msg,
5044                 lint::builtin::BuiltinLintDiagnostics::
5045                     MacroExpandedMacroExportsAccessedByAbsolutePaths(span_def),
5046             );
5047         }
5048
5049         for ambiguity_error in &self.ambiguity_errors {
5050             self.report_ambiguity_error(ambiguity_error);
5051         }
5052
5053         let mut reported_spans = FxHashSet::default();
5054         for &PrivacyError(dedup_span, ident, binding) in &self.privacy_errors {
5055             if reported_spans.insert(dedup_span) {
5056                 span_err!(self.session, ident.span, E0603, "{} `{}` is private",
5057                           binding.descr(), ident.name);
5058             }
5059         }
5060     }
5061
5062     fn report_with_use_injections(&mut self, krate: &Crate) {
5063         for UseError { mut err, candidates, node_id, better } in self.use_injections.drain(..) {
5064             let (span, found_use) = UsePlacementFinder::check(krate, node_id);
5065             if !candidates.is_empty() {
5066                 show_candidates(&mut err, span, &candidates, better, found_use);
5067             }
5068             err.emit();
5069         }
5070     }
5071
5072     fn report_conflict<'b>(&mut self,
5073                        parent: Module<'_>,
5074                        ident: Ident,
5075                        ns: Namespace,
5076                        new_binding: &NameBinding<'b>,
5077                        old_binding: &NameBinding<'b>) {
5078         // Error on the second of two conflicting names
5079         if old_binding.span.lo() > new_binding.span.lo() {
5080             return self.report_conflict(parent, ident, ns, old_binding, new_binding);
5081         }
5082
5083         let container = match parent.kind {
5084             ModuleKind::Def(DefKind::Mod, _, _) => "module",
5085             ModuleKind::Def(DefKind::Trait, _, _) => "trait",
5086             ModuleKind::Block(..) => "block",
5087             _ => "enum",
5088         };
5089
5090         let old_noun = match old_binding.is_import() {
5091             true => "import",
5092             false => "definition",
5093         };
5094
5095         let new_participle = match new_binding.is_import() {
5096             true => "imported",
5097             false => "defined",
5098         };
5099
5100         let (name, span) = (ident.name, self.session.source_map().def_span(new_binding.span));
5101
5102         if let Some(s) = self.name_already_seen.get(&name) {
5103             if s == &span {
5104                 return;
5105             }
5106         }
5107
5108         let old_kind = match (ns, old_binding.module()) {
5109             (ValueNS, _) => "value",
5110             (MacroNS, _) => "macro",
5111             (TypeNS, _) if old_binding.is_extern_crate() => "extern crate",
5112             (TypeNS, Some(module)) if module.is_normal() => "module",
5113             (TypeNS, Some(module)) if module.is_trait() => "trait",
5114             (TypeNS, _) => "type",
5115         };
5116
5117         let msg = format!("the name `{}` is defined multiple times", name);
5118
5119         let mut err = match (old_binding.is_extern_crate(), new_binding.is_extern_crate()) {
5120             (true, true) => struct_span_err!(self.session, span, E0259, "{}", msg),
5121             (true, _) | (_, true) => match new_binding.is_import() && old_binding.is_import() {
5122                 true => struct_span_err!(self.session, span, E0254, "{}", msg),
5123                 false => struct_span_err!(self.session, span, E0260, "{}", msg),
5124             },
5125             _ => match (old_binding.is_import(), new_binding.is_import()) {
5126                 (false, false) => struct_span_err!(self.session, span, E0428, "{}", msg),
5127                 (true, true) => struct_span_err!(self.session, span, E0252, "{}", msg),
5128                 _ => struct_span_err!(self.session, span, E0255, "{}", msg),
5129             },
5130         };
5131
5132         err.note(&format!("`{}` must be defined only once in the {} namespace of this {}",
5133                           name,
5134                           ns.descr(),
5135                           container));
5136
5137         err.span_label(span, format!("`{}` re{} here", name, new_participle));
5138         err.span_label(
5139             self.session.source_map().def_span(old_binding.span),
5140             format!("previous {} of the {} `{}` here", old_noun, old_kind, name),
5141         );
5142
5143         // See https://github.com/rust-lang/rust/issues/32354
5144         use NameBindingKind::Import;
5145         let directive = match (&new_binding.kind, &old_binding.kind) {
5146             // If there are two imports where one or both have attributes then prefer removing the
5147             // import without attributes.
5148             (Import { directive: new, .. }, Import { directive: old, .. }) if {
5149                 !new_binding.span.is_dummy() && !old_binding.span.is_dummy() &&
5150                     (new.has_attributes || old.has_attributes)
5151             } => {
5152                 if old.has_attributes {
5153                     Some((new, new_binding.span, true))
5154                 } else {
5155                     Some((old, old_binding.span, true))
5156                 }
5157             },
5158             // Otherwise prioritize the new binding.
5159             (Import { directive, .. }, other) if !new_binding.span.is_dummy() =>
5160                 Some((directive, new_binding.span, other.is_import())),
5161             (other, Import { directive, .. }) if !old_binding.span.is_dummy() =>
5162                 Some((directive, old_binding.span, other.is_import())),
5163             _ => None,
5164         };
5165
5166         // Check if the target of the use for both bindings is the same.
5167         let duplicate = new_binding.res().opt_def_id() == old_binding.res().opt_def_id();
5168         let has_dummy_span = new_binding.span.is_dummy() || old_binding.span.is_dummy();
5169         let from_item = self.extern_prelude.get(&ident)
5170             .map(|entry| entry.introduced_by_item)
5171             .unwrap_or(true);
5172         // Only suggest removing an import if both bindings are to the same def, if both spans
5173         // aren't dummy spans. Further, if both bindings are imports, then the ident must have
5174         // been introduced by a item.
5175         let should_remove_import = duplicate && !has_dummy_span &&
5176             ((new_binding.is_extern_crate() || old_binding.is_extern_crate()) || from_item);
5177
5178         match directive {
5179             Some((directive, span, true)) if should_remove_import && directive.is_nested() =>
5180                 self.add_suggestion_for_duplicate_nested_use(&mut err, directive, span),
5181             Some((directive, _, true)) if should_remove_import && !directive.is_glob() => {
5182                 // Simple case - remove the entire import. Due to the above match arm, this can
5183                 // only be a single use so just remove it entirely.
5184                 err.tool_only_span_suggestion(
5185                     directive.use_span_with_attributes,
5186                     "remove unnecessary import",
5187                     String::new(),
5188                     Applicability::MaybeIncorrect,
5189                 );
5190             },
5191             Some((directive, span, _)) =>
5192                 self.add_suggestion_for_rename_of_use(&mut err, name, directive, span),
5193             _ => {},
5194         }
5195
5196         err.emit();
5197         self.name_already_seen.insert(name, span);
5198     }
5199
5200     /// This function adds a suggestion to change the binding name of a new import that conflicts
5201     /// with an existing import.
5202     ///
5203     /// ```ignore (diagnostic)
5204     /// help: you can use `as` to change the binding name of the import
5205     ///    |
5206     /// LL | use foo::bar as other_bar;
5207     ///    |     ^^^^^^^^^^^^^^^^^^^^^
5208     /// ```
5209     fn add_suggestion_for_rename_of_use(
5210         &self,
5211         err: &mut DiagnosticBuilder<'_>,
5212         name: Symbol,
5213         directive: &ImportDirective<'_>,
5214         binding_span: Span,
5215     ) {
5216         let suggested_name = if name.as_str().chars().next().unwrap().is_uppercase() {
5217             format!("Other{}", name)
5218         } else {
5219             format!("other_{}", name)
5220         };
5221
5222         let mut suggestion = None;
5223         match directive.subclass {
5224             ImportDirectiveSubclass::SingleImport { type_ns_only: true, .. } =>
5225                 suggestion = Some(format!("self as {}", suggested_name)),
5226             ImportDirectiveSubclass::SingleImport { source, .. } => {
5227                 if let Some(pos) = source.span.hi().0.checked_sub(binding_span.lo().0)
5228                                                      .map(|pos| pos as usize) {
5229                     if let Ok(snippet) = self.session.source_map()
5230                                                      .span_to_snippet(binding_span) {
5231                         if pos <= snippet.len() {
5232                             suggestion = Some(format!(
5233                                 "{} as {}{}",
5234                                 &snippet[..pos],
5235                                 suggested_name,
5236                                 if snippet.ends_with(";") { ";" } else { "" }
5237                             ))
5238                         }
5239                     }
5240                 }
5241             }
5242             ImportDirectiveSubclass::ExternCrate { source, target, .. } =>
5243                 suggestion = Some(format!(
5244                     "extern crate {} as {};",
5245                     source.unwrap_or(target.name),
5246                     suggested_name,
5247                 )),
5248             _ => unreachable!(),
5249         }
5250
5251         let rename_msg = "you can use `as` to change the binding name of the import";
5252         if let Some(suggestion) = suggestion {
5253             err.span_suggestion(
5254                 binding_span,
5255                 rename_msg,
5256                 suggestion,
5257                 Applicability::MaybeIncorrect,
5258             );
5259         } else {
5260             err.span_label(binding_span, rename_msg);
5261         }
5262     }
5263
5264     /// This function adds a suggestion to remove a unnecessary binding from an import that is
5265     /// nested. In the following example, this function will be invoked to remove the `a` binding
5266     /// in the second use statement:
5267     ///
5268     /// ```ignore (diagnostic)
5269     /// use issue_52891::a;
5270     /// use issue_52891::{d, a, e};
5271     /// ```
5272     ///
5273     /// The following suggestion will be added:
5274     ///
5275     /// ```ignore (diagnostic)
5276     /// use issue_52891::{d, a, e};
5277     ///                      ^-- help: remove unnecessary import
5278     /// ```
5279     ///
5280     /// If the nested use contains only one import then the suggestion will remove the entire
5281     /// line.
5282     ///
5283     /// It is expected that the directive provided is a nested import - this isn't checked by the
5284     /// function. If this invariant is not upheld, this function's behaviour will be unexpected
5285     /// as characters expected by span manipulations won't be present.
5286     fn add_suggestion_for_duplicate_nested_use(
5287         &self,
5288         err: &mut DiagnosticBuilder<'_>,
5289         directive: &ImportDirective<'_>,
5290         binding_span: Span,
5291     ) {
5292         assert!(directive.is_nested());
5293         let message = "remove unnecessary import";
5294
5295         // Two examples will be used to illustrate the span manipulations we're doing:
5296         //
5297         // - Given `use issue_52891::{d, a, e};` where `a` is a duplicate then `binding_span` is
5298         //   `a` and `directive.use_span` is `issue_52891::{d, a, e};`.
5299         // - Given `use issue_52891::{d, e, a};` where `a` is a duplicate then `binding_span` is
5300         //   `a` and `directive.use_span` is `issue_52891::{d, e, a};`.
5301
5302         let (found_closing_brace, span) = find_span_of_binding_until_next_binding(
5303             self.session, binding_span, directive.use_span,
5304         );
5305
5306         // If there was a closing brace then identify the span to remove any trailing commas from
5307         // previous imports.
5308         if found_closing_brace {
5309             if let Some(span) = extend_span_to_previous_binding(self.session, span) {
5310                 err.tool_only_span_suggestion(span, message, String::new(),
5311                                               Applicability::MaybeIncorrect);
5312             } else {
5313                 // Remove the entire line if we cannot extend the span back, this indicates a
5314                 // `issue_52891::{self}` case.
5315                 err.span_suggestion(directive.use_span_with_attributes, message, String::new(),
5316                                     Applicability::MaybeIncorrect);
5317             }
5318
5319             return;
5320         }
5321
5322         err.span_suggestion(span, message, String::new(), Applicability::MachineApplicable);
5323     }
5324
5325     fn extern_prelude_get(&mut self, ident: Ident, speculative: bool)
5326                           -> Option<&'a NameBinding<'a>> {
5327         if ident.is_path_segment_keyword() {
5328             // Make sure `self`, `super` etc produce an error when passed to here.
5329             return None;
5330         }
5331         self.extern_prelude.get(&ident.modern()).cloned().and_then(|entry| {
5332             if let Some(binding) = entry.extern_crate_item {
5333                 if !speculative && entry.introduced_by_item {
5334                     self.record_use(ident, TypeNS, binding, false);
5335                 }
5336                 Some(binding)
5337             } else {
5338                 let crate_id = if !speculative {
5339                     self.crate_loader.process_path_extern(ident.name, ident.span)
5340                 } else if let Some(crate_id) =
5341                         self.crate_loader.maybe_process_path_extern(ident.name, ident.span) {
5342                     crate_id
5343                 } else {
5344                     return None;
5345                 };
5346                 let crate_root = self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX });
5347                 self.populate_module_if_necessary(&crate_root);
5348                 Some((crate_root, ty::Visibility::Public, DUMMY_SP, Mark::root())
5349                     .to_name_binding(self.arenas))
5350             }
5351         })
5352     }
5353 }
5354
5355 fn is_self_type(path: &[Segment], namespace: Namespace) -> bool {
5356     namespace == TypeNS && path.len() == 1 && path[0].ident.name == keywords::SelfUpper.name()
5357 }
5358
5359 fn is_self_value(path: &[Segment], namespace: Namespace) -> bool {
5360     namespace == ValueNS && path.len() == 1 && path[0].ident.name == keywords::SelfLower.name()
5361 }
5362
5363 fn names_to_string(idents: &[Ident]) -> String {
5364     let mut result = String::new();
5365     for (i, ident) in idents.iter()
5366                             .filter(|ident| ident.name != keywords::PathRoot.name())
5367                             .enumerate() {
5368         if i > 0 {
5369             result.push_str("::");
5370         }
5371         result.push_str(&ident.as_str());
5372     }
5373     result
5374 }
5375
5376 fn path_names_to_string(path: &Path) -> String {
5377     names_to_string(&path.segments.iter()
5378                         .map(|seg| seg.ident)
5379                         .collect::<Vec<_>>())
5380 }
5381
5382 /// Gets the stringified path for an enum from an `ImportSuggestion` for an enum variant.
5383 fn import_candidate_to_enum_paths(suggestion: &ImportSuggestion) -> (String, String) {
5384     let variant_path = &suggestion.path;
5385     let variant_path_string = path_names_to_string(variant_path);
5386
5387     let path_len = suggestion.path.segments.len();
5388     let enum_path = ast::Path {
5389         span: suggestion.path.span,
5390         segments: suggestion.path.segments[0..path_len - 1].to_vec(),
5391     };
5392     let enum_path_string = path_names_to_string(&enum_path);
5393
5394     (variant_path_string, enum_path_string)
5395 }
5396
5397 /// When an entity with a given name is not available in scope, we search for
5398 /// entities with that name in all crates. This method allows outputting the
5399 /// results of this search in a programmer-friendly way
5400 fn show_candidates(err: &mut DiagnosticBuilder<'_>,
5401                    // This is `None` if all placement locations are inside expansions
5402                    span: Option<Span>,
5403                    candidates: &[ImportSuggestion],
5404                    better: bool,
5405                    found_use: bool) {
5406
5407     // we want consistent results across executions, but candidates are produced
5408     // by iterating through a hash map, so make sure they are ordered:
5409     let mut path_strings: Vec<_> =
5410         candidates.into_iter().map(|c| path_names_to_string(&c.path)).collect();
5411     path_strings.sort();
5412
5413     let better = if better { "better " } else { "" };
5414     let msg_diff = match path_strings.len() {
5415         1 => " is found in another module, you can import it",
5416         _ => "s are found in other modules, you can import them",
5417     };
5418     let msg = format!("possible {}candidate{} into scope", better, msg_diff);
5419
5420     if let Some(span) = span {
5421         for candidate in &mut path_strings {
5422             // produce an additional newline to separate the new use statement
5423             // from the directly following item.
5424             let additional_newline = if found_use {
5425                 ""
5426             } else {
5427                 "\n"
5428             };
5429             *candidate = format!("use {};\n{}", candidate, additional_newline);
5430         }
5431
5432         err.span_suggestions(
5433             span,
5434             &msg,
5435             path_strings.into_iter(),
5436             Applicability::Unspecified,
5437         );
5438     } else {
5439         let mut msg = msg;
5440         msg.push(':');
5441         for candidate in path_strings {
5442             msg.push('\n');
5443             msg.push_str(&candidate);
5444         }
5445     }
5446 }
5447
5448 /// A somewhat inefficient routine to obtain the name of a module.
5449 fn module_to_string(module: Module<'_>) -> Option<String> {
5450     let mut names = Vec::new();
5451
5452     fn collect_mod(names: &mut Vec<Ident>, module: Module<'_>) {
5453         if let ModuleKind::Def(.., name) = module.kind {
5454             if let Some(parent) = module.parent {
5455                 names.push(Ident::with_empty_ctxt(name));
5456                 collect_mod(names, parent);
5457             }
5458         } else {
5459             // danger, shouldn't be ident?
5460             names.push(Ident::from_str("<opaque>"));
5461             collect_mod(names, module.parent.unwrap());
5462         }
5463     }
5464     collect_mod(&mut names, module);
5465
5466     if names.is_empty() {
5467         return None;
5468     }
5469     Some(names_to_string(&names.into_iter()
5470                         .rev()
5471                         .collect::<Vec<_>>()))
5472 }
5473
5474 #[derive(Copy, Clone, Debug)]
5475 enum CrateLint {
5476     /// Do not issue the lint.
5477     No,
5478
5479     /// This lint applies to some arbitrary path; e.g., `impl ::foo::Bar`.
5480     /// In this case, we can take the span of that path.
5481     SimplePath(NodeId),
5482
5483     /// This lint comes from a `use` statement. In this case, what we
5484     /// care about really is the *root* `use` statement; e.g., if we
5485     /// have nested things like `use a::{b, c}`, we care about the
5486     /// `use a` part.
5487     UsePath { root_id: NodeId, root_span: Span },
5488
5489     /// This is the "trait item" from a fully qualified path. For example,
5490     /// we might be resolving  `X::Y::Z` from a path like `<T as X::Y>::Z`.
5491     /// The `path_span` is the span of the to the trait itself (`X::Y`).
5492     QPathTrait { qpath_id: NodeId, qpath_span: Span },
5493 }
5494
5495 impl CrateLint {
5496     fn node_id(&self) -> Option<NodeId> {
5497         match *self {
5498             CrateLint::No => None,
5499             CrateLint::SimplePath(id) |
5500             CrateLint::UsePath { root_id: id, .. } |
5501             CrateLint::QPathTrait { qpath_id: id, .. } => Some(id),
5502         }
5503     }
5504 }
5505
5506 __build_diagnostic_array! { librustc_resolve, DIAGNOSTICS }