]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/lib.rs
resolve: Introduce a new scope for derive helpers
[rust.git] / src / librustc_resolve / lib.rs
1 //! This crate is responsible for the part of name resolution that doesn't require type checker.
2 //!
3 //! Module structure of the crate is built here.
4 //! Paths in macros, imports, expressions, types, patterns are resolved here.
5 //! Label names are resolved here as well.
6 //!
7 //! Type-relative name resolution (methods, fields, associated items) happens in `librustc_typeck`.
8 //! Lifetime names are resolved in `librustc/middle/resolve_lifetime.rs`.
9
10 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
11
12 #![feature(crate_visibility_modifier)]
13 #![feature(label_break_value)]
14 #![feature(nll)]
15
16 #![recursion_limit="256"]
17
18 pub use rustc::hir::def::{Namespace, PerNS};
19
20 use Determinacy::*;
21
22 use rustc::hir::map::Definitions;
23 use rustc::hir::{self, PrimTy, Bool, Char, Float, Int, Uint, Str};
24 use rustc::middle::cstore::{CrateStore, MetadataLoaderDyn};
25 use rustc::session::Session;
26 use rustc::lint;
27 use rustc::hir::def::{self, DefKind, PartialRes, CtorKind, CtorOf, NonMacroAttrKind, ExportMap};
28 use rustc::hir::def::Namespace::*;
29 use rustc::hir::def_id::{CRATE_DEF_INDEX, LOCAL_CRATE, CrateNum, DefId};
30 use rustc::hir::{TraitMap, GlobMap};
31 use rustc::ty::{self, DefIdTree, ResolverOutputs};
32 use rustc::util::nodemap::{NodeMap, NodeSet, FxHashMap, FxHashSet, DefIdMap};
33 use rustc::span_bug;
34
35 use rustc_metadata::creader::CrateLoader;
36 use rustc_metadata::cstore::CStore;
37
38 use syntax::{struct_span_err, unwrap_or};
39 use syntax::ast::{self, Name, NodeId, Ident, FloatTy, IntTy, UintTy};
40 use syntax::ast::{CRATE_NODE_ID, Crate};
41 use syntax::ast::{ItemKind, Path};
42 use syntax::attr;
43 use syntax::print::pprust;
44 use syntax::symbol::{kw, sym};
45 use syntax::source_map::Spanned;
46 use syntax::visit::{self, Visitor};
47 use syntax_expand::base::SyntaxExtension;
48 use syntax_pos::hygiene::{MacroKind, ExpnId, ExpnKind, Transparency, SyntaxContext};
49 use syntax_pos::{Span, DUMMY_SP};
50 use errors::{Applicability, DiagnosticBuilder};
51
52 use log::debug;
53
54 use std::cell::{Cell, RefCell};
55 use std::{cmp, fmt, iter, ptr};
56 use std::collections::BTreeSet;
57 use rustc_data_structures::ptr_key::PtrKey;
58 use rustc_data_structures::sync::Lrc;
59 use rustc_data_structures::fx::FxIndexMap;
60
61 use diagnostics::{Suggestion, ImportSuggestion};
62 use diagnostics::{find_span_of_binding_until_next_binding, extend_span_to_previous_binding};
63 use late::{HasGenericParams, PathSource, Rib, RibKind::*};
64 use resolve_imports::{ImportDirective, ImportDirectiveSubclass, NameResolution, ImportResolver};
65 use macros::{LegacyBinding, LegacyScope};
66
67 use rustc_error_codes::*;
68
69 type Res = def::Res<NodeId>;
70
71 mod diagnostics;
72 mod late;
73 mod macros;
74 mod check_unused;
75 mod build_reduced_graph;
76 mod resolve_imports;
77
78 enum Weak {
79     Yes,
80     No,
81 }
82
83 #[derive(Copy, Clone, PartialEq, Debug)]
84 pub enum Determinacy {
85     Determined,
86     Undetermined,
87 }
88
89 impl Determinacy {
90     fn determined(determined: bool) -> Determinacy {
91         if determined { Determinacy::Determined } else { Determinacy::Undetermined }
92     }
93 }
94
95 /// A specific scope in which a name can be looked up.
96 /// This enum is currently used only for early resolution (imports and macros),
97 /// but not for late resolution yet.
98 #[derive(Clone, Copy)]
99 enum Scope<'a> {
100     DeriveHelpers(ExpnId),
101     DeriveHelpersCompat,
102     MacroRules(LegacyScope<'a>),
103     CrateRoot,
104     Module(Module<'a>),
105     RegisteredAttrs,
106     MacroUsePrelude,
107     BuiltinAttrs,
108     LegacyPluginHelpers,
109     ExternPrelude,
110     ToolPrelude,
111     StdLibPrelude,
112     BuiltinTypes,
113 }
114
115 /// Names from different contexts may want to visit different subsets of all specific scopes
116 /// with different restrictions when looking up the resolution.
117 /// This enum is currently used only for early resolution (imports and macros),
118 /// but not for late resolution yet.
119 enum ScopeSet {
120     /// All scopes with the given namespace.
121     All(Namespace, /*is_import*/ bool),
122     /// Crate root, then extern prelude (used for mixed 2015-2018 mode in macros).
123     AbsolutePath(Namespace),
124     /// All scopes with macro namespace and the given macro kind restriction.
125     Macro(MacroKind),
126 }
127
128 /// Everything you need to know about a name's location to resolve it.
129 /// Serves as a starting point for the scope visitor.
130 /// This struct is currently used only for early resolution (imports and macros),
131 /// but not for late resolution yet.
132 #[derive(Clone, Copy, Debug)]
133 pub struct ParentScope<'a> {
134     module: Module<'a>,
135     expansion: ExpnId,
136     legacy: LegacyScope<'a>,
137     derives: &'a [ast::Path],
138 }
139
140 impl<'a> ParentScope<'a> {
141     /// Creates a parent scope with the passed argument used as the module scope component,
142     /// and other scope components set to default empty values.
143     pub fn module(module: Module<'a>) -> ParentScope<'a> {
144         ParentScope {
145             module,
146             expansion: ExpnId::root(),
147             legacy: LegacyScope::Empty,
148             derives: &[],
149         }
150     }
151 }
152
153 #[derive(Eq)]
154 struct BindingError {
155     name: Name,
156     origin: BTreeSet<Span>,
157     target: BTreeSet<Span>,
158     could_be_path: bool
159 }
160
161 impl PartialOrd for BindingError {
162     fn partial_cmp(&self, other: &BindingError) -> Option<cmp::Ordering> {
163         Some(self.cmp(other))
164     }
165 }
166
167 impl PartialEq for BindingError {
168     fn eq(&self, other: &BindingError) -> bool {
169         self.name == other.name
170     }
171 }
172
173 impl Ord for BindingError {
174     fn cmp(&self, other: &BindingError) -> cmp::Ordering {
175         self.name.cmp(&other.name)
176     }
177 }
178
179 enum ResolutionError<'a> {
180     /// Error E0401: can't use type or const parameters from outer function.
181     GenericParamsFromOuterFunction(Res, HasGenericParams),
182     /// Error E0403: the name is already used for a type or const parameter in this generic
183     /// parameter list.
184     NameAlreadyUsedInParameterList(Name, Span),
185     /// Error E0407: method is not a member of trait.
186     MethodNotMemberOfTrait(Name, &'a str),
187     /// Error E0437: type is not a member of trait.
188     TypeNotMemberOfTrait(Name, &'a str),
189     /// Error E0438: const is not a member of trait.
190     ConstNotMemberOfTrait(Name, &'a str),
191     /// Error E0408: variable `{}` is not bound in all patterns.
192     VariableNotBoundInPattern(&'a BindingError),
193     /// Error E0409: variable `{}` is bound in inconsistent ways within the same match arm.
194     VariableBoundWithDifferentMode(Name, Span),
195     /// Error E0415: identifier is bound more than once in this parameter list.
196     IdentifierBoundMoreThanOnceInParameterList(&'a str),
197     /// Error E0416: identifier is bound more than once in the same pattern.
198     IdentifierBoundMoreThanOnceInSamePattern(&'a str),
199     /// Error E0426: use of undeclared label.
200     UndeclaredLabel(&'a str, Option<Name>),
201     /// Error E0429: `self` imports are only allowed within a `{ }` list.
202     SelfImportsOnlyAllowedWithin,
203     /// Error E0430: `self` import can only appear once in the list.
204     SelfImportCanOnlyAppearOnceInTheList,
205     /// Error E0431: `self` import can only appear in an import list with a non-empty prefix.
206     SelfImportOnlyInImportListWithNonEmptyPrefix,
207     /// Error E0433: failed to resolve.
208     FailedToResolve { label: String, suggestion: Option<Suggestion> },
209     /// Error E0434: can't capture dynamic environment in a fn item.
210     CannotCaptureDynamicEnvironmentInFnItem,
211     /// Error E0435: attempt to use a non-constant value in a constant.
212     AttemptToUseNonConstantValueInConstant,
213     /// Error E0530: `X` bindings cannot shadow `Y`s.
214     BindingShadowsSomethingUnacceptable(&'a str, Name, &'a NameBinding<'a>),
215     /// Error E0128: type parameters with a default cannot use forward-declared identifiers.
216     ForwardDeclaredTyParam, // FIXME(const_generics:defaults)
217     /// Error E0735: type parameters with a default cannot use `Self`
218     SelfInTyParamDefault,
219 }
220
221 // A minimal representation of a path segment. We use this in resolve because
222 // we synthesize 'path segments' which don't have the rest of an AST or HIR
223 // `PathSegment`.
224 #[derive(Clone, Copy, Debug)]
225 pub struct Segment {
226     ident: Ident,
227     id: Option<NodeId>,
228 }
229
230 impl Segment {
231     fn from_path(path: &Path) -> Vec<Segment> {
232         path.segments.iter().map(|s| s.into()).collect()
233     }
234
235     fn from_ident(ident: Ident) -> Segment {
236         Segment {
237             ident,
238             id: None,
239         }
240     }
241
242     fn names_to_string(segments: &[Segment]) -> String {
243         names_to_string(&segments.iter()
244                             .map(|seg| seg.ident.name)
245                             .collect::<Vec<_>>())
246     }
247 }
248
249 impl<'a> From<&'a ast::PathSegment> for Segment {
250     fn from(seg: &'a ast::PathSegment) -> Segment {
251         Segment {
252             ident: seg.ident,
253             id: Some(seg.id),
254         }
255     }
256 }
257
258 struct UsePlacementFinder {
259     target_module: NodeId,
260     span: Option<Span>,
261     found_use: bool,
262 }
263
264 impl UsePlacementFinder {
265     fn check(krate: &Crate, target_module: NodeId) -> (Option<Span>, bool) {
266         let mut finder = UsePlacementFinder {
267             target_module,
268             span: None,
269             found_use: false,
270         };
271         visit::walk_crate(&mut finder, krate);
272         (finder.span, finder.found_use)
273     }
274 }
275
276 impl<'tcx> Visitor<'tcx> for UsePlacementFinder {
277     fn visit_mod(
278         &mut self,
279         module: &'tcx ast::Mod,
280         _: Span,
281         _: &[ast::Attribute],
282         node_id: NodeId,
283     ) {
284         if self.span.is_some() {
285             return;
286         }
287         if node_id != self.target_module {
288             visit::walk_mod(self, module);
289             return;
290         }
291         // find a use statement
292         for item in &module.items {
293             match item.kind {
294                 ItemKind::Use(..) => {
295                     // don't suggest placing a use before the prelude
296                     // import or other generated ones
297                     if !item.span.from_expansion() {
298                         self.span = Some(item.span.shrink_to_lo());
299                         self.found_use = true;
300                         return;
301                     }
302                 },
303                 // don't place use before extern crate
304                 ItemKind::ExternCrate(_) => {}
305                 // but place them before the first other item
306                 _ => if self.span.map_or(true, |span| item.span < span ) {
307                     if !item.span.from_expansion() {
308                         // don't insert between attributes and an item
309                         if item.attrs.is_empty() {
310                             self.span = Some(item.span.shrink_to_lo());
311                         } else {
312                             // find the first attribute on the item
313                             for attr in &item.attrs {
314                                 if self.span.map_or(true, |span| attr.span < span) {
315                                     self.span = Some(attr.span.shrink_to_lo());
316                                 }
317                             }
318                         }
319                     }
320                 },
321             }
322         }
323     }
324 }
325
326 /// An intermediate resolution result.
327 ///
328 /// This refers to the thing referred by a name. The difference between `Res` and `Item` is that
329 /// items are visible in their whole block, while `Res`es only from the place they are defined
330 /// forward.
331 #[derive(Debug)]
332 enum LexicalScopeBinding<'a> {
333     Item(&'a NameBinding<'a>),
334     Res(Res),
335 }
336
337 impl<'a> LexicalScopeBinding<'a> {
338     fn item(self) -> Option<&'a NameBinding<'a>> {
339         match self {
340             LexicalScopeBinding::Item(binding) => Some(binding),
341             _ => None,
342         }
343     }
344
345     fn res(self) -> Res {
346         match self {
347             LexicalScopeBinding::Item(binding) => binding.res(),
348             LexicalScopeBinding::Res(res) => res,
349         }
350     }
351 }
352
353 #[derive(Copy, Clone, Debug)]
354 enum ModuleOrUniformRoot<'a> {
355     /// Regular module.
356     Module(Module<'a>),
357
358     /// Virtual module that denotes resolution in crate root with fallback to extern prelude.
359     CrateRootAndExternPrelude,
360
361     /// Virtual module that denotes resolution in extern prelude.
362     /// Used for paths starting with `::` on 2018 edition.
363     ExternPrelude,
364
365     /// Virtual module that denotes resolution in current scope.
366     /// Used only for resolving single-segment imports. The reason it exists is that import paths
367     /// are always split into two parts, the first of which should be some kind of module.
368     CurrentScope,
369 }
370
371 impl ModuleOrUniformRoot<'_> {
372     fn same_def(lhs: Self, rhs: Self) -> bool {
373         match (lhs, rhs) {
374             (ModuleOrUniformRoot::Module(lhs),
375              ModuleOrUniformRoot::Module(rhs)) => lhs.def_id() == rhs.def_id(),
376             (ModuleOrUniformRoot::CrateRootAndExternPrelude,
377              ModuleOrUniformRoot::CrateRootAndExternPrelude) |
378             (ModuleOrUniformRoot::ExternPrelude, ModuleOrUniformRoot::ExternPrelude) |
379             (ModuleOrUniformRoot::CurrentScope, ModuleOrUniformRoot::CurrentScope) => true,
380             _ => false,
381         }
382     }
383 }
384
385 #[derive(Clone, Debug)]
386 enum PathResult<'a> {
387     Module(ModuleOrUniformRoot<'a>),
388     NonModule(PartialRes),
389     Indeterminate,
390     Failed {
391         span: Span,
392         label: String,
393         suggestion: Option<Suggestion>,
394         is_error_from_last_segment: bool,
395     },
396 }
397
398 enum ModuleKind {
399     /// An anonymous module; e.g., just a block.
400     ///
401     /// ```
402     /// fn main() {
403     ///     fn f() {} // (1)
404     ///     { // This is an anonymous module
405     ///         f(); // This resolves to (2) as we are inside the block.
406     ///         fn f() {} // (2)
407     ///     }
408     ///     f(); // Resolves to (1)
409     /// }
410     /// ```
411     Block(NodeId),
412     /// Any module with a name.
413     ///
414     /// This could be:
415     ///
416     /// * A normal module â€’ either `mod from_file;` or `mod from_block { }`.
417     /// * A trait or an enum (it implicitly contains associated types, methods and variant
418     ///   constructors).
419     Def(DefKind, DefId, Name),
420 }
421
422 impl ModuleKind {
423     /// Get name of the module.
424     pub fn name(&self) -> Option<Name> {
425         match self {
426             ModuleKind::Block(..) => None,
427             ModuleKind::Def(.., name) => Some(*name),
428         }
429     }
430 }
431
432 /// A key that identifies a binding in a given `Module`.
433 ///
434 /// Multiple bindings in the same module can have the same key (in a valid
435 /// program) if all but one of them come from glob imports.
436 #[derive(Copy, Clone, PartialEq, Eq, Hash)]
437 struct BindingKey {
438     /// The identifier for the binding, aways the `modern` version of the
439     /// identifier.
440     ident: Ident,
441     ns: Namespace,
442     /// 0 if ident is not `_`, otherwise a value that's unique to the specific
443     /// `_` in the expanded AST that introduced this binding.
444     disambiguator: u32,
445 }
446
447 type Resolutions<'a> = RefCell<FxIndexMap<BindingKey, &'a RefCell<NameResolution<'a>>>>;
448
449 /// One node in the tree of modules.
450 pub struct ModuleData<'a> {
451     parent: Option<Module<'a>>,
452     kind: ModuleKind,
453
454     // The def id of the closest normal module (`mod`) ancestor (including this module).
455     normal_ancestor_id: DefId,
456
457     // Mapping between names and their (possibly in-progress) resolutions in this module.
458     // Resolutions in modules from other crates are not populated until accessed.
459     lazy_resolutions: Resolutions<'a>,
460     // True if this is a module from other crate that needs to be populated on access.
461     populate_on_access: Cell<bool>,
462
463     // Macro invocations that can expand into items in this module.
464     unexpanded_invocations: RefCell<FxHashSet<ExpnId>>,
465
466     no_implicit_prelude: bool,
467
468     glob_importers: RefCell<Vec<&'a ImportDirective<'a>>>,
469     globs: RefCell<Vec<&'a ImportDirective<'a>>>,
470
471     // Used to memoize the traits in this module for faster searches through all traits in scope.
472     traits: RefCell<Option<Box<[(Ident, &'a NameBinding<'a>)]>>>,
473
474     /// Span of the module itself. Used for error reporting.
475     span: Span,
476
477     expansion: ExpnId,
478 }
479
480 type Module<'a> = &'a ModuleData<'a>;
481
482 impl<'a> ModuleData<'a> {
483     fn new(parent: Option<Module<'a>>,
484            kind: ModuleKind,
485            normal_ancestor_id: DefId,
486            expansion: ExpnId,
487            span: Span) -> Self {
488         ModuleData {
489             parent,
490             kind,
491             normal_ancestor_id,
492             lazy_resolutions: Default::default(),
493             populate_on_access: Cell::new(!normal_ancestor_id.is_local()),
494             unexpanded_invocations: Default::default(),
495             no_implicit_prelude: false,
496             glob_importers: RefCell::new(Vec::new()),
497             globs: RefCell::new(Vec::new()),
498             traits: RefCell::new(None),
499             span,
500             expansion,
501         }
502     }
503
504     fn for_each_child<R, F>(&'a self, resolver: &mut R, mut f: F)
505         where R: AsMut<Resolver<'a>>, F: FnMut(&mut R, Ident, Namespace, &'a NameBinding<'a>)
506     {
507         for (key, name_resolution) in resolver.as_mut().resolutions(self).borrow().iter() {
508             name_resolution.borrow().binding.map(|binding| f(resolver, key.ident, key.ns, binding));
509         }
510     }
511
512     fn res(&self) -> Option<Res> {
513         match self.kind {
514             ModuleKind::Def(kind, def_id, _) => Some(Res::Def(kind, def_id)),
515             _ => None,
516         }
517     }
518
519     fn def_id(&self) -> Option<DefId> {
520         match self.kind {
521             ModuleKind::Def(_, def_id, _) => Some(def_id),
522             _ => None,
523         }
524     }
525
526     // `self` resolves to the first module ancestor that `is_normal`.
527     fn is_normal(&self) -> bool {
528         match self.kind {
529             ModuleKind::Def(DefKind::Mod, _, _) => true,
530             _ => false,
531         }
532     }
533
534     fn is_trait(&self) -> bool {
535         match self.kind {
536             ModuleKind::Def(DefKind::Trait, _, _) => true,
537             _ => false,
538         }
539     }
540
541     fn nearest_item_scope(&'a self) -> Module<'a> {
542         match self.kind {
543             ModuleKind::Def(DefKind::Enum, ..) | ModuleKind::Def(DefKind::Trait, ..) =>
544                 self.parent.expect("enum or trait module without a parent"),
545             _ => self,
546         }
547     }
548
549     fn is_ancestor_of(&self, mut other: &Self) -> bool {
550         while !ptr::eq(self, other) {
551             if let Some(parent) = other.parent {
552                 other = parent;
553             } else {
554                 return false;
555             }
556         }
557         true
558     }
559 }
560
561 impl<'a> fmt::Debug for ModuleData<'a> {
562     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
563         write!(f, "{:?}", self.res())
564     }
565 }
566
567 /// Records a possibly-private value, type, or module definition.
568 #[derive(Clone, Debug)]
569 pub struct NameBinding<'a> {
570     kind: NameBindingKind<'a>,
571     ambiguity: Option<(&'a NameBinding<'a>, AmbiguityKind)>,
572     expansion: ExpnId,
573     span: Span,
574     vis: ty::Visibility,
575 }
576
577 pub trait ToNameBinding<'a> {
578     fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a>;
579 }
580
581 impl<'a> ToNameBinding<'a> for &'a NameBinding<'a> {
582     fn to_name_binding(self, _: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
583         self
584     }
585 }
586
587 #[derive(Clone, Debug)]
588 enum NameBindingKind<'a> {
589     Res(Res, /* is_macro_export */ bool),
590     Module(Module<'a>),
591     Import {
592         binding: &'a NameBinding<'a>,
593         directive: &'a ImportDirective<'a>,
594         used: Cell<bool>,
595     },
596 }
597
598 impl<'a> NameBindingKind<'a> {
599     /// Is this a name binding of a import?
600     fn is_import(&self) -> bool {
601         match *self {
602             NameBindingKind::Import { .. } => true,
603             _ => false,
604         }
605     }
606 }
607
608 struct PrivacyError<'a>(Span, Ident, &'a NameBinding<'a>);
609
610 struct UseError<'a> {
611     err: DiagnosticBuilder<'a>,
612     /// Attach `use` statements for these candidates.
613     candidates: Vec<ImportSuggestion>,
614     /// The `NodeId` of the module to place the use-statements in.
615     node_id: NodeId,
616     /// Whether the diagnostic should state that it's "better".
617     better: bool,
618 }
619
620 #[derive(Clone, Copy, PartialEq, Debug)]
621 enum AmbiguityKind {
622     Import,
623     BuiltinAttr,
624     DeriveHelper,
625     LegacyVsModern,
626     GlobVsOuter,
627     GlobVsGlob,
628     GlobVsExpanded,
629     MoreExpandedVsOuter,
630 }
631
632 impl AmbiguityKind {
633     fn descr(self) -> &'static str {
634         match self {
635             AmbiguityKind::Import =>
636                 "name vs any other name during import resolution",
637             AmbiguityKind::BuiltinAttr =>
638                 "built-in attribute vs any other name",
639             AmbiguityKind::DeriveHelper =>
640                 "derive helper attribute vs any other name",
641             AmbiguityKind::LegacyVsModern =>
642                 "`macro_rules` vs non-`macro_rules` from other module",
643             AmbiguityKind::GlobVsOuter =>
644                 "glob import vs any other name from outer scope during import/macro resolution",
645             AmbiguityKind::GlobVsGlob =>
646                 "glob import vs glob import in the same module",
647             AmbiguityKind::GlobVsExpanded =>
648                 "glob import vs macro-expanded name in the same \
649                  module during import/macro resolution",
650             AmbiguityKind::MoreExpandedVsOuter =>
651                 "macro-expanded name vs less macro-expanded name \
652                  from outer scope during import/macro resolution",
653         }
654     }
655 }
656
657 /// Miscellaneous bits of metadata for better ambiguity error reporting.
658 #[derive(Clone, Copy, PartialEq)]
659 enum AmbiguityErrorMisc {
660     SuggestCrate,
661     SuggestSelf,
662     FromPrelude,
663     None,
664 }
665
666 struct AmbiguityError<'a> {
667     kind: AmbiguityKind,
668     ident: Ident,
669     b1: &'a NameBinding<'a>,
670     b2: &'a NameBinding<'a>,
671     misc1: AmbiguityErrorMisc,
672     misc2: AmbiguityErrorMisc,
673 }
674
675 impl<'a> NameBinding<'a> {
676     fn module(&self) -> Option<Module<'a>> {
677         match self.kind {
678             NameBindingKind::Module(module) => Some(module),
679             NameBindingKind::Import { binding, .. } => binding.module(),
680             _ => None,
681         }
682     }
683
684     fn res(&self) -> Res {
685         match self.kind {
686             NameBindingKind::Res(res, _) => res,
687             NameBindingKind::Module(module) => module.res().unwrap(),
688             NameBindingKind::Import { binding, .. } => binding.res(),
689         }
690     }
691
692     fn is_ambiguity(&self) -> bool {
693         self.ambiguity.is_some() || match self.kind {
694             NameBindingKind::Import { binding, .. } => binding.is_ambiguity(),
695             _ => false,
696         }
697     }
698
699     // We sometimes need to treat variants as `pub` for backwards compatibility.
700     fn pseudo_vis(&self) -> ty::Visibility {
701         if self.is_variant() && self.res().def_id().is_local() {
702             ty::Visibility::Public
703         } else {
704             self.vis
705         }
706     }
707
708     fn is_variant(&self) -> bool {
709         match self.kind {
710             NameBindingKind::Res(Res::Def(DefKind::Variant, _), _) |
711             NameBindingKind::Res(Res::Def(DefKind::Ctor(CtorOf::Variant, ..), _), _) => true,
712             _ => false,
713         }
714     }
715
716     fn is_extern_crate(&self) -> bool {
717         match self.kind {
718             NameBindingKind::Import {
719                 directive: &ImportDirective {
720                     subclass: ImportDirectiveSubclass::ExternCrate { .. }, ..
721                 }, ..
722             } => true,
723             NameBindingKind::Module(
724                 &ModuleData { kind: ModuleKind::Def(DefKind::Mod, def_id, _), .. }
725             ) => def_id.index == CRATE_DEF_INDEX,
726             _ => false,
727         }
728     }
729
730     fn is_import(&self) -> bool {
731         match self.kind {
732             NameBindingKind::Import { .. } => true,
733             _ => false,
734         }
735     }
736
737     fn is_glob_import(&self) -> bool {
738         match self.kind {
739             NameBindingKind::Import { directive, .. } => directive.is_glob(),
740             _ => false,
741         }
742     }
743
744     fn is_importable(&self) -> bool {
745         match self.res() {
746             Res::Def(DefKind::AssocConst, _)
747             | Res::Def(DefKind::Method, _)
748             | Res::Def(DefKind::AssocTy, _) => false,
749             _ => true,
750         }
751     }
752
753     fn is_macro_def(&self) -> bool {
754         match self.kind {
755             NameBindingKind::Res(Res::Def(DefKind::Macro(..), _), _) => true,
756             _ => false,
757         }
758     }
759
760     fn macro_kind(&self) -> Option<MacroKind> {
761         self.res().macro_kind()
762     }
763
764     // Suppose that we resolved macro invocation with `invoc_parent_expansion` to binding `binding`
765     // at some expansion round `max(invoc, binding)` when they both emerged from macros.
766     // Then this function returns `true` if `self` may emerge from a macro *after* that
767     // in some later round and screw up our previously found resolution.
768     // See more detailed explanation in
769     // https://github.com/rust-lang/rust/pull/53778#issuecomment-419224049
770     fn may_appear_after(&self, invoc_parent_expansion: ExpnId, binding: &NameBinding<'_>) -> bool {
771         // self > max(invoc, binding) => !(self <= invoc || self <= binding)
772         // Expansions are partially ordered, so "may appear after" is an inversion of
773         // "certainly appears before or simultaneously" and includes unordered cases.
774         let self_parent_expansion = self.expansion;
775         let other_parent_expansion = binding.expansion;
776         let certainly_before_other_or_simultaneously =
777             other_parent_expansion.is_descendant_of(self_parent_expansion);
778         let certainly_before_invoc_or_simultaneously =
779             invoc_parent_expansion.is_descendant_of(self_parent_expansion);
780         !(certainly_before_other_or_simultaneously || certainly_before_invoc_or_simultaneously)
781     }
782 }
783
784 /// Interns the names of the primitive types.
785 ///
786 /// All other types are defined somewhere and possibly imported, but the primitive ones need
787 /// special handling, since they have no place of origin.
788 struct PrimitiveTypeTable {
789     primitive_types: FxHashMap<Name, PrimTy>,
790 }
791
792 impl PrimitiveTypeTable {
793     fn new() -> PrimitiveTypeTable {
794         let mut table = FxHashMap::default();
795
796         table.insert(sym::bool, Bool);
797         table.insert(sym::char, Char);
798         table.insert(sym::f32, Float(FloatTy::F32));
799         table.insert(sym::f64, Float(FloatTy::F64));
800         table.insert(sym::isize, Int(IntTy::Isize));
801         table.insert(sym::i8, Int(IntTy::I8));
802         table.insert(sym::i16, Int(IntTy::I16));
803         table.insert(sym::i32, Int(IntTy::I32));
804         table.insert(sym::i64, Int(IntTy::I64));
805         table.insert(sym::i128, Int(IntTy::I128));
806         table.insert(sym::str, Str);
807         table.insert(sym::usize, Uint(UintTy::Usize));
808         table.insert(sym::u8, Uint(UintTy::U8));
809         table.insert(sym::u16, Uint(UintTy::U16));
810         table.insert(sym::u32, Uint(UintTy::U32));
811         table.insert(sym::u64, Uint(UintTy::U64));
812         table.insert(sym::u128, Uint(UintTy::U128));
813         Self { primitive_types: table }
814     }
815 }
816
817 #[derive(Debug, Default, Clone)]
818 pub struct ExternPreludeEntry<'a> {
819     extern_crate_item: Option<&'a NameBinding<'a>>,
820     pub introduced_by_item: bool,
821 }
822
823 /// The main resolver class.
824 ///
825 /// This is the visitor that walks the whole crate.
826 pub struct Resolver<'a> {
827     session: &'a Session,
828
829     definitions: Definitions,
830
831     graph_root: Module<'a>,
832
833     prelude: Option<Module<'a>>,
834     extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'a>>,
835
836     /// N.B., this is used only for better diagnostics, not name resolution itself.
837     has_self: FxHashSet<DefId>,
838
839     /// Names of fields of an item `DefId` accessible with dot syntax.
840     /// Used for hints during error reporting.
841     field_names: FxHashMap<DefId, Vec<Spanned<Name>>>,
842
843     /// All imports known to succeed or fail.
844     determined_imports: Vec<&'a ImportDirective<'a>>,
845
846     /// All non-determined imports.
847     indeterminate_imports: Vec<&'a ImportDirective<'a>>,
848
849     /// FIXME: Refactor things so that these fields are passed through arguments and not resolver.
850     /// We are resolving a last import segment during import validation.
851     last_import_segment: bool,
852     /// This binding should be ignored during in-module resolution, so that we don't get
853     /// "self-confirming" import resolutions during import validation.
854     blacklisted_binding: Option<&'a NameBinding<'a>>,
855
856     /// The idents for the primitive types.
857     primitive_type_table: PrimitiveTypeTable,
858
859     /// Resolutions for nodes that have a single resolution.
860     partial_res_map: NodeMap<PartialRes>,
861     /// Resolutions for import nodes, which have multiple resolutions in different namespaces.
862     import_res_map: NodeMap<PerNS<Option<Res>>>,
863     /// Resolutions for labels (node IDs of their corresponding blocks or loops).
864     label_res_map: NodeMap<NodeId>,
865
866     /// `CrateNum` resolutions of `extern crate` items.
867     extern_crate_map: NodeMap<CrateNum>,
868     export_map: ExportMap<NodeId>,
869     trait_map: TraitMap,
870
871     /// A map from nodes to anonymous modules.
872     /// Anonymous modules are pseudo-modules that are implicitly created around items
873     /// contained within blocks.
874     ///
875     /// For example, if we have this:
876     ///
877     ///  fn f() {
878     ///      fn g() {
879     ///          ...
880     ///      }
881     ///  }
882     ///
883     /// There will be an anonymous module created around `g` with the ID of the
884     /// entry block for `f`.
885     block_map: NodeMap<Module<'a>>,
886     /// A fake module that contains no definition and no prelude. Used so that
887     /// some AST passes can generate identifiers that only resolve to local or
888     /// language items.
889     empty_module: Module<'a>,
890     module_map: FxHashMap<DefId, Module<'a>>,
891     extern_module_map: FxHashMap<DefId, Module<'a>>,
892     binding_parent_modules: FxHashMap<PtrKey<'a, NameBinding<'a>>, Module<'a>>,
893     underscore_disambiguator: u32,
894
895     /// Maps glob imports to the names of items actually imported.
896     glob_map: GlobMap,
897
898     used_imports: FxHashSet<(NodeId, Namespace)>,
899     maybe_unused_trait_imports: NodeSet,
900     maybe_unused_extern_crates: Vec<(NodeId, Span)>,
901
902     /// Privacy errors are delayed until the end in order to deduplicate them.
903     privacy_errors: Vec<PrivacyError<'a>>,
904     /// Ambiguity errors are delayed for deduplication.
905     ambiguity_errors: Vec<AmbiguityError<'a>>,
906     /// `use` injections are delayed for better placement and deduplication.
907     use_injections: Vec<UseError<'a>>,
908     /// Crate-local macro expanded `macro_export` referred to by a module-relative path.
909     macro_expanded_macro_export_errors: BTreeSet<(Span, Span)>,
910
911     arenas: &'a ResolverArenas<'a>,
912     dummy_binding: &'a NameBinding<'a>,
913
914     crate_loader: CrateLoader<'a>,
915     macro_names: FxHashSet<Ident>,
916     builtin_macros: FxHashMap<Name, SyntaxExtension>,
917     registered_attrs: FxHashSet<Ident>,
918     registered_tools: FxHashSet<Ident>,
919     macro_use_prelude: FxHashMap<Name, &'a NameBinding<'a>>,
920     all_macros: FxHashMap<Name, Res>,
921     macro_map: FxHashMap<DefId, Lrc<SyntaxExtension>>,
922     dummy_ext_bang: Lrc<SyntaxExtension>,
923     dummy_ext_derive: Lrc<SyntaxExtension>,
924     non_macro_attrs: [Lrc<SyntaxExtension>; 2],
925     macro_defs: FxHashMap<ExpnId, DefId>,
926     local_macro_def_scopes: FxHashMap<NodeId, Module<'a>>,
927     ast_transform_scopes: FxHashMap<ExpnId, Module<'a>>,
928     unused_macros: NodeMap<Span>,
929     proc_macro_stubs: NodeSet,
930     /// Traces collected during macro resolution and validated when it's complete.
931     single_segment_macro_resolutions: Vec<(Ident, MacroKind, ParentScope<'a>,
932                                            Option<&'a NameBinding<'a>>)>,
933     multi_segment_macro_resolutions: Vec<(Vec<Segment>, Span, MacroKind, ParentScope<'a>,
934                                           Option<Res>)>,
935     builtin_attrs: Vec<(Ident, ParentScope<'a>)>,
936     /// `derive(Copy)` marks items they are applied to so they are treated specially later.
937     /// Derive macros cannot modify the item themselves and have to store the markers in the global
938     /// context, so they attach the markers to derive container IDs using this resolver table.
939     containers_deriving_copy: FxHashSet<ExpnId>,
940     /// Parent scopes in which the macros were invoked.
941     /// FIXME: `derives` are missing in these parent scopes and need to be taken from elsewhere.
942     invocation_parent_scopes: FxHashMap<ExpnId, ParentScope<'a>>,
943     /// Legacy scopes *produced* by expanding the macro invocations,
944     /// include all the `macro_rules` items and other invocations generated by them.
945     output_legacy_scopes: FxHashMap<ExpnId, LegacyScope<'a>>,
946     /// Helper attributes that are in scope for the given expansion.
947     helper_attrs: FxHashMap<ExpnId, Vec<Ident>>,
948
949     /// Avoid duplicated errors for "name already defined".
950     name_already_seen: FxHashMap<Name, Span>,
951
952     potentially_unused_imports: Vec<&'a ImportDirective<'a>>,
953
954     /// Table for mapping struct IDs into struct constructor IDs,
955     /// it's not used during normal resolution, only for better error reporting.
956     struct_constructors: DefIdMap<(Res, ty::Visibility)>,
957
958     /// Features enabled for this crate.
959     active_features: FxHashSet<Name>,
960
961     /// Stores enum visibilities to properly build a reduced graph
962     /// when visiting the correspondent variants.
963     variant_vis: DefIdMap<ty::Visibility>,
964
965     lint_buffer: lint::LintBuffer,
966
967     next_node_id: NodeId,
968 }
969
970 /// Nothing really interesting here; it just provides memory for the rest of the crate.
971 #[derive(Default)]
972 pub struct ResolverArenas<'a> {
973     modules: arena::TypedArena<ModuleData<'a>>,
974     local_modules: RefCell<Vec<Module<'a>>>,
975     name_bindings: arena::TypedArena<NameBinding<'a>>,
976     import_directives: arena::TypedArena<ImportDirective<'a>>,
977     name_resolutions: arena::TypedArena<RefCell<NameResolution<'a>>>,
978     legacy_bindings: arena::TypedArena<LegacyBinding<'a>>,
979     ast_paths: arena::TypedArena<ast::Path>,
980 }
981
982 impl<'a> ResolverArenas<'a> {
983     fn alloc_module(&'a self, module: ModuleData<'a>) -> Module<'a> {
984         let module = self.modules.alloc(module);
985         if module.def_id().map(|def_id| def_id.is_local()).unwrap_or(true) {
986             self.local_modules.borrow_mut().push(module);
987         }
988         module
989     }
990     fn local_modules(&'a self) -> std::cell::Ref<'a, Vec<Module<'a>>> {
991         self.local_modules.borrow()
992     }
993     fn alloc_name_binding(&'a self, name_binding: NameBinding<'a>) -> &'a NameBinding<'a> {
994         self.name_bindings.alloc(name_binding)
995     }
996     fn alloc_import_directive(&'a self, import_directive: ImportDirective<'a>)
997                               -> &'a ImportDirective<'_> {
998         self.import_directives.alloc(import_directive)
999     }
1000     fn alloc_name_resolution(&'a self) -> &'a RefCell<NameResolution<'a>> {
1001         self.name_resolutions.alloc(Default::default())
1002     }
1003     fn alloc_legacy_binding(&'a self, binding: LegacyBinding<'a>) -> &'a LegacyBinding<'a> {
1004         self.legacy_bindings.alloc(binding)
1005     }
1006     fn alloc_ast_paths(&'a self, paths: &[ast::Path]) -> &'a [ast::Path] {
1007         self.ast_paths.alloc_from_iter(paths.iter().cloned())
1008     }
1009 }
1010
1011 impl<'a> AsMut<Resolver<'a>> for Resolver<'a> {
1012     fn as_mut(&mut self) -> &mut Resolver<'a> { self }
1013 }
1014
1015 impl<'a, 'b> DefIdTree for &'a Resolver<'b> {
1016     fn parent(self, id: DefId) -> Option<DefId> {
1017         match id.krate {
1018             LOCAL_CRATE => self.definitions.def_key(id.index).parent,
1019             _ => self.cstore().def_key(id).parent,
1020         }.map(|index| DefId { index, ..id })
1021     }
1022 }
1023
1024 /// This interface is used through the AST→HIR step, to embed full paths into the HIR. After that
1025 /// the resolver is no longer needed as all the relevant information is inline.
1026 impl<'a> hir::lowering::Resolver for Resolver<'a> {
1027     fn cstore(&self) -> &dyn CrateStore {
1028         self.cstore()
1029     }
1030
1031     fn resolve_str_path(
1032         &mut self,
1033         span: Span,
1034         crate_root: Option<Name>,
1035         components: &[Name],
1036         ns: Namespace,
1037     ) -> (ast::Path, Res) {
1038         let root = if crate_root.is_some() {
1039             kw::PathRoot
1040         } else {
1041             kw::Crate
1042         };
1043         let segments = iter::once(Ident::with_dummy_span(root))
1044             .chain(
1045                 crate_root.into_iter()
1046                     .chain(components.iter().cloned())
1047                     .map(Ident::with_dummy_span)
1048             ).map(|i| self.new_ast_path_segment(i)).collect::<Vec<_>>();
1049
1050         let path = ast::Path {
1051             span,
1052             segments,
1053         };
1054
1055         let parent_scope = &ParentScope::module(self.graph_root);
1056         let res = match self.resolve_ast_path(&path, ns, parent_scope) {
1057             Ok(res) => res,
1058             Err((span, error)) => {
1059                 self.report_error(span, error);
1060                 Res::Err
1061             }
1062         };
1063         (path, res)
1064     }
1065
1066     fn get_partial_res(&mut self, id: NodeId) -> Option<PartialRes> {
1067         self.partial_res_map.get(&id).cloned()
1068     }
1069
1070     fn get_import_res(&mut self, id: NodeId) -> PerNS<Option<Res>> {
1071         self.import_res_map.get(&id).cloned().unwrap_or_default()
1072     }
1073
1074     fn get_label_res(&mut self, id: NodeId) -> Option<NodeId> {
1075         self.label_res_map.get(&id).cloned()
1076     }
1077
1078     fn definitions(&mut self) -> &mut Definitions {
1079         &mut self.definitions
1080     }
1081
1082     fn lint_buffer(&mut self) -> &mut lint::LintBuffer {
1083         &mut self.lint_buffer
1084     }
1085
1086     fn next_node_id(&mut self) -> NodeId {
1087         self.next_node_id()
1088     }
1089 }
1090
1091 impl<'a> Resolver<'a> {
1092     pub fn new(session: &'a Session,
1093                krate: &Crate,
1094                crate_name: &str,
1095                metadata_loader: &'a MetadataLoaderDyn,
1096                arenas: &'a ResolverArenas<'a>)
1097                -> Resolver<'a> {
1098         let root_def_id = DefId::local(CRATE_DEF_INDEX);
1099         let root_module_kind = ModuleKind::Def(
1100             DefKind::Mod,
1101             root_def_id,
1102             kw::Invalid,
1103         );
1104         let graph_root = arenas.alloc_module(ModuleData {
1105             no_implicit_prelude: attr::contains_name(&krate.attrs, sym::no_implicit_prelude),
1106             ..ModuleData::new(None, root_module_kind, root_def_id, ExpnId::root(), krate.span)
1107         });
1108         let empty_module_kind = ModuleKind::Def(
1109             DefKind::Mod,
1110             root_def_id,
1111             kw::Invalid,
1112         );
1113         let empty_module = arenas.alloc_module(ModuleData {
1114             no_implicit_prelude: true,
1115             ..ModuleData::new(
1116                 Some(graph_root),
1117                 empty_module_kind,
1118                 root_def_id,
1119                 ExpnId::root(),
1120                 DUMMY_SP,
1121             )
1122         });
1123         let mut module_map = FxHashMap::default();
1124         module_map.insert(DefId::local(CRATE_DEF_INDEX), graph_root);
1125
1126         let mut definitions = Definitions::default();
1127         definitions.create_root_def(crate_name, session.local_crate_disambiguator());
1128
1129         let mut extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'_>> =
1130             session.opts.externs.iter().map(|kv| (Ident::from_str(kv.0), Default::default()))
1131                                        .collect();
1132
1133         if !attr::contains_name(&krate.attrs, sym::no_core) {
1134             extern_prelude.insert(Ident::with_dummy_span(sym::core), Default::default());
1135             if !attr::contains_name(&krate.attrs, sym::no_std) {
1136                 extern_prelude.insert(Ident::with_dummy_span(sym::std), Default::default());
1137                 if session.rust_2018() {
1138                     extern_prelude.insert(Ident::with_dummy_span(sym::meta), Default::default());
1139                 }
1140             }
1141         }
1142
1143         let (registered_attrs, registered_tools) =
1144             macros::registered_attrs_and_tools(session, &krate.attrs);
1145
1146         let mut invocation_parent_scopes = FxHashMap::default();
1147         invocation_parent_scopes.insert(ExpnId::root(), ParentScope::module(graph_root));
1148
1149         let mut macro_defs = FxHashMap::default();
1150         macro_defs.insert(ExpnId::root(), root_def_id);
1151
1152         let features = session.features_untracked();
1153         let non_macro_attr =
1154             |mark_used| Lrc::new(SyntaxExtension::non_macro_attr(mark_used, session.edition()));
1155
1156         Resolver {
1157             session,
1158
1159             definitions,
1160
1161             // The outermost module has def ID 0; this is not reflected in the
1162             // AST.
1163             graph_root,
1164             prelude: None,
1165             extern_prelude,
1166
1167             has_self: FxHashSet::default(),
1168             field_names: FxHashMap::default(),
1169
1170             determined_imports: Vec::new(),
1171             indeterminate_imports: Vec::new(),
1172
1173             last_import_segment: false,
1174             blacklisted_binding: None,
1175
1176             primitive_type_table: PrimitiveTypeTable::new(),
1177
1178             partial_res_map: Default::default(),
1179             import_res_map: Default::default(),
1180             label_res_map: Default::default(),
1181             extern_crate_map: Default::default(),
1182             export_map: FxHashMap::default(),
1183             trait_map: Default::default(),
1184             underscore_disambiguator: 0,
1185             empty_module,
1186             module_map,
1187             block_map: Default::default(),
1188             extern_module_map: FxHashMap::default(),
1189             binding_parent_modules: FxHashMap::default(),
1190             ast_transform_scopes: FxHashMap::default(),
1191
1192             glob_map: Default::default(),
1193
1194             used_imports: FxHashSet::default(),
1195             maybe_unused_trait_imports: Default::default(),
1196             maybe_unused_extern_crates: Vec::new(),
1197
1198             privacy_errors: Vec::new(),
1199             ambiguity_errors: Vec::new(),
1200             use_injections: Vec::new(),
1201             macro_expanded_macro_export_errors: BTreeSet::new(),
1202
1203             arenas,
1204             dummy_binding: arenas.alloc_name_binding(NameBinding {
1205                 kind: NameBindingKind::Res(Res::Err, false),
1206                 ambiguity: None,
1207                 expansion: ExpnId::root(),
1208                 span: DUMMY_SP,
1209                 vis: ty::Visibility::Public,
1210             }),
1211
1212             crate_loader: CrateLoader::new(session, metadata_loader, crate_name),
1213             macro_names: FxHashSet::default(),
1214             builtin_macros: Default::default(),
1215             registered_attrs,
1216             registered_tools,
1217             macro_use_prelude: FxHashMap::default(),
1218             all_macros: FxHashMap::default(),
1219             macro_map: FxHashMap::default(),
1220             dummy_ext_bang: Lrc::new(SyntaxExtension::dummy_bang(session.edition())),
1221             dummy_ext_derive: Lrc::new(SyntaxExtension::dummy_derive(session.edition())),
1222             non_macro_attrs: [non_macro_attr(false), non_macro_attr(true)],
1223             invocation_parent_scopes,
1224             output_legacy_scopes: Default::default(),
1225             helper_attrs: Default::default(),
1226             macro_defs,
1227             local_macro_def_scopes: FxHashMap::default(),
1228             name_already_seen: FxHashMap::default(),
1229             potentially_unused_imports: Vec::new(),
1230             struct_constructors: Default::default(),
1231             unused_macros: Default::default(),
1232             proc_macro_stubs: Default::default(),
1233             single_segment_macro_resolutions: Default::default(),
1234             multi_segment_macro_resolutions: Default::default(),
1235             builtin_attrs: Default::default(),
1236             containers_deriving_copy: Default::default(),
1237             active_features:
1238                 features.declared_lib_features.iter().map(|(feat, ..)| *feat)
1239                     .chain(features.declared_lang_features.iter().map(|(feat, ..)| *feat))
1240                     .collect(),
1241             variant_vis: Default::default(),
1242             lint_buffer: lint::LintBuffer::default(),
1243             next_node_id: NodeId::from_u32(1),
1244         }
1245     }
1246
1247     pub fn next_node_id(&mut self) -> NodeId {
1248         let next = self.next_node_id.as_usize()
1249             .checked_add(1)
1250             .expect("input too large; ran out of NodeIds");
1251         self.next_node_id = ast::NodeId::from_usize(next);
1252         self.next_node_id
1253     }
1254
1255     pub fn lint_buffer(&mut self) -> &mut lint::LintBuffer {
1256         &mut self.lint_buffer
1257     }
1258
1259     pub fn arenas() -> ResolverArenas<'a> {
1260         Default::default()
1261     }
1262
1263     pub fn into_outputs(self) -> ResolverOutputs {
1264         ResolverOutputs {
1265             definitions: self.definitions,
1266             cstore: Box::new(self.crate_loader.into_cstore()),
1267             extern_crate_map: self.extern_crate_map,
1268             export_map: self.export_map,
1269             trait_map: self.trait_map,
1270             glob_map: self.glob_map,
1271             maybe_unused_trait_imports: self.maybe_unused_trait_imports,
1272             maybe_unused_extern_crates: self.maybe_unused_extern_crates,
1273             extern_prelude: self.extern_prelude.iter().map(|(ident, entry)| {
1274                 (ident.name, entry.introduced_by_item)
1275             }).collect(),
1276         }
1277     }
1278
1279     pub fn clone_outputs(&self) -> ResolverOutputs {
1280         ResolverOutputs {
1281             definitions: self.definitions.clone(),
1282             cstore: Box::new(self.cstore().clone()),
1283             extern_crate_map: self.extern_crate_map.clone(),
1284             export_map: self.export_map.clone(),
1285             trait_map: self.trait_map.clone(),
1286             glob_map: self.glob_map.clone(),
1287             maybe_unused_trait_imports: self.maybe_unused_trait_imports.clone(),
1288             maybe_unused_extern_crates: self.maybe_unused_extern_crates.clone(),
1289             extern_prelude: self.extern_prelude.iter().map(|(ident, entry)| {
1290                 (ident.name, entry.introduced_by_item)
1291             }).collect(),
1292         }
1293     }
1294
1295     pub fn cstore(&self) -> &CStore {
1296         self.crate_loader.cstore()
1297     }
1298
1299     fn non_macro_attr(&self, mark_used: bool) -> Lrc<SyntaxExtension> {
1300         self.non_macro_attrs[mark_used as usize].clone()
1301     }
1302
1303     fn dummy_ext(&self, macro_kind: MacroKind) -> Lrc<SyntaxExtension> {
1304         match macro_kind {
1305             MacroKind::Bang => self.dummy_ext_bang.clone(),
1306             MacroKind::Derive => self.dummy_ext_derive.clone(),
1307             MacroKind::Attr => self.non_macro_attr(true),
1308         }
1309     }
1310
1311     /// Runs the function on each namespace.
1312     fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
1313         f(self, TypeNS);
1314         f(self, ValueNS);
1315         f(self, MacroNS);
1316     }
1317
1318     fn is_builtin_macro(&mut self, res: Res) -> bool {
1319         self.get_macro(res).map_or(false, |ext| ext.is_builtin)
1320     }
1321
1322     fn macro_def(&self, mut ctxt: SyntaxContext) -> DefId {
1323         loop {
1324             match self.macro_defs.get(&ctxt.outer_expn()) {
1325                 Some(&def_id) => return def_id,
1326                 None => ctxt.remove_mark(),
1327             };
1328         }
1329     }
1330
1331     /// Entry point to crate resolution.
1332     pub fn resolve_crate(&mut self, krate: &Crate) {
1333         let _prof_timer =
1334             self.session.prof.generic_activity("resolve_crate");
1335
1336         ImportResolver { r: self }.finalize_imports();
1337         self.finalize_macro_resolutions();
1338
1339         self.late_resolve_crate(krate);
1340
1341         self.check_unused(krate);
1342         self.report_errors(krate);
1343         self.crate_loader.postprocess(krate);
1344     }
1345
1346     fn new_module(
1347         &self,
1348         parent: Module<'a>,
1349         kind: ModuleKind,
1350         normal_ancestor_id: DefId,
1351         expn_id: ExpnId,
1352         span: Span,
1353     ) -> Module<'a> {
1354         let module = ModuleData::new(Some(parent), kind, normal_ancestor_id, expn_id, span);
1355         self.arenas.alloc_module(module)
1356     }
1357
1358     fn new_key(&mut self, ident: Ident, ns: Namespace) -> BindingKey {
1359         let ident = ident.modern();
1360         let disambiguator = if ident.name == kw::Underscore {
1361             self.underscore_disambiguator += 1;
1362             self.underscore_disambiguator
1363         } else {
1364             0
1365         };
1366         BindingKey { ident, ns, disambiguator }
1367     }
1368
1369     fn resolutions(&mut self, module: Module<'a>) -> &'a Resolutions<'a> {
1370         if module.populate_on_access.get() {
1371             module.populate_on_access.set(false);
1372             self.build_reduced_graph_external(module);
1373         }
1374         &module.lazy_resolutions
1375     }
1376
1377     fn resolution(&mut self, module: Module<'a>, key: BindingKey)
1378                   -> &'a RefCell<NameResolution<'a>> {
1379         *self.resolutions(module).borrow_mut().entry(key)
1380                .or_insert_with(|| self.arenas.alloc_name_resolution())
1381     }
1382
1383     fn record_use(&mut self, ident: Ident, ns: Namespace,
1384                   used_binding: &'a NameBinding<'a>, is_lexical_scope: bool) {
1385         if let Some((b2, kind)) = used_binding.ambiguity {
1386             self.ambiguity_errors.push(AmbiguityError {
1387                 kind, ident, b1: used_binding, b2,
1388                 misc1: AmbiguityErrorMisc::None,
1389                 misc2: AmbiguityErrorMisc::None,
1390             });
1391         }
1392         if let NameBindingKind::Import { directive, binding, ref used } = used_binding.kind {
1393             // Avoid marking `extern crate` items that refer to a name from extern prelude,
1394             // but not introduce it, as used if they are accessed from lexical scope.
1395             if is_lexical_scope {
1396                 if let Some(entry) = self.extern_prelude.get(&ident.modern()) {
1397                     if let Some(crate_item) = entry.extern_crate_item {
1398                         if ptr::eq(used_binding, crate_item) && !entry.introduced_by_item {
1399                             return;
1400                         }
1401                     }
1402                 }
1403             }
1404             used.set(true);
1405             directive.used.set(true);
1406             self.used_imports.insert((directive.id, ns));
1407             self.add_to_glob_map(&directive, ident);
1408             self.record_use(ident, ns, binding, false);
1409         }
1410     }
1411
1412     #[inline]
1413     fn add_to_glob_map(&mut self, directive: &ImportDirective<'_>, ident: Ident) {
1414         if directive.is_glob() {
1415             self.glob_map.entry(directive.id).or_default().insert(ident.name);
1416         }
1417     }
1418
1419     /// A generic scope visitor.
1420     /// Visits scopes in order to resolve some identifier in them or perform other actions.
1421     /// If the callback returns `Some` result, we stop visiting scopes and return it.
1422     fn visit_scopes<T>(
1423         &mut self,
1424         scope_set: ScopeSet,
1425         parent_scope: &ParentScope<'a>,
1426         ident: Ident,
1427         mut visitor: impl FnMut(&mut Self, Scope<'a>, /*use_prelude*/ bool, Ident) -> Option<T>,
1428     ) -> Option<T> {
1429         // General principles:
1430         // 1. Not controlled (user-defined) names should have higher priority than controlled names
1431         //    built into the language or standard library. This way we can add new names into the
1432         //    language or standard library without breaking user code.
1433         // 2. "Closed set" below means new names cannot appear after the current resolution attempt.
1434         // Places to search (in order of decreasing priority):
1435         // (Type NS)
1436         // 1. FIXME: Ribs (type parameters), there's no necessary infrastructure yet
1437         //    (open set, not controlled).
1438         // 2. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1439         //    (open, not controlled).
1440         // 3. Extern prelude (open, the open part is from macro expansions, not controlled).
1441         // 4. Tool modules (closed, controlled right now, but not in the future).
1442         // 5. Standard library prelude (de-facto closed, controlled).
1443         // 6. Language prelude (closed, controlled).
1444         // (Value NS)
1445         // 1. FIXME: Ribs (local variables), there's no necessary infrastructure yet
1446         //    (open set, not controlled).
1447         // 2. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1448         //    (open, not controlled).
1449         // 3. Standard library prelude (de-facto closed, controlled).
1450         // (Macro NS)
1451         // 1-3. Derive helpers (open, not controlled). All ambiguities with other names
1452         //    are currently reported as errors. They should be higher in priority than preludes
1453         //    and probably even names in modules according to the "general principles" above. They
1454         //    also should be subject to restricted shadowing because are effectively produced by
1455         //    derives (you need to resolve the derive first to add helpers into scope), but they
1456         //    should be available before the derive is expanded for compatibility.
1457         //    It's mess in general, so we are being conservative for now.
1458         // 1-3. `macro_rules` (open, not controlled), loop through legacy scopes. Have higher
1459         //    priority than prelude macros, but create ambiguities with macros in modules.
1460         // 1-3. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1461         //    (open, not controlled). Have higher priority than prelude macros, but create
1462         //    ambiguities with `macro_rules`.
1463         // 4. `macro_use` prelude (open, the open part is from macro expansions, not controlled).
1464         // 4a. User-defined prelude from macro-use
1465         //    (open, the open part is from macro expansions, not controlled).
1466         // 4b. "Standard library prelude" part implemented through `macro-use` (closed, controlled).
1467         // 4c. Standard library prelude (de-facto closed, controlled).
1468         // 6. Language prelude: builtin attributes (closed, controlled).
1469         // 4-6. Legacy plugin helpers (open, not controlled). Similar to derive helpers,
1470         //    but introduced by legacy plugins using `register_attribute`. Priority is somewhere
1471         //    in prelude, not sure where exactly (creates ambiguities with any other prelude names).
1472
1473         let rust_2015 = ident.span.rust_2015();
1474         let (ns, macro_kind, is_absolute_path) = match scope_set {
1475             ScopeSet::All(ns, _) => (ns, None, false),
1476             ScopeSet::AbsolutePath(ns) => (ns, None, true),
1477             ScopeSet::Macro(macro_kind) => (MacroNS, Some(macro_kind), false),
1478         };
1479         // Jump out of trait or enum modules, they do not act as scopes.
1480         let module = parent_scope.module.nearest_item_scope();
1481         let mut scope = match ns {
1482             _ if is_absolute_path => Scope::CrateRoot,
1483             TypeNS | ValueNS => Scope::Module(module),
1484             MacroNS => Scope::DeriveHelpers(parent_scope.expansion),
1485         };
1486         let mut ident = ident.modern();
1487         let mut use_prelude = !module.no_implicit_prelude;
1488
1489         loop {
1490             let visit = match scope {
1491                 // Derive helpers are not in scope when resolving derives in the same container.
1492                 Scope::DeriveHelpers(expn_id) =>
1493                     !(expn_id == parent_scope.expansion && macro_kind == Some(MacroKind::Derive)),
1494                 Scope::DeriveHelpersCompat => true,
1495                 Scope::MacroRules(..) => true,
1496                 Scope::CrateRoot => true,
1497                 Scope::Module(..) => true,
1498                 Scope::RegisteredAttrs => use_prelude,
1499                 Scope::MacroUsePrelude => use_prelude || rust_2015,
1500                 Scope::BuiltinAttrs => true,
1501                 Scope::LegacyPluginHelpers => use_prelude || rust_2015,
1502                 Scope::ExternPrelude => use_prelude || is_absolute_path,
1503                 Scope::ToolPrelude => use_prelude,
1504                 Scope::StdLibPrelude => use_prelude || ns == MacroNS,
1505                 Scope::BuiltinTypes => true,
1506             };
1507
1508             if visit {
1509                 if let break_result @ Some(..) = visitor(self, scope, use_prelude, ident) {
1510                     return break_result;
1511                 }
1512             }
1513
1514             scope = match scope {
1515                 Scope::DeriveHelpers(expn_id) if expn_id != ExpnId::root() => {
1516                     // Derive helpers are not visible to code generated by bang or derive macros.
1517                     let expn_data = expn_id.expn_data();
1518                     match expn_data.kind {
1519                         ExpnKind::Root |
1520                         ExpnKind::Macro(MacroKind::Bang, _) |
1521                         ExpnKind::Macro(MacroKind::Derive, _) => Scope::DeriveHelpersCompat,
1522                         _ => Scope::DeriveHelpers(expn_data.parent),
1523                     }
1524                 }
1525                 Scope::DeriveHelpers(..) => Scope::DeriveHelpersCompat,
1526                 Scope::DeriveHelpersCompat =>
1527                     Scope::MacroRules(parent_scope.legacy),
1528                 Scope::MacroRules(legacy_scope) => match legacy_scope {
1529                     LegacyScope::Binding(binding) => Scope::MacroRules(
1530                         binding.parent_legacy_scope
1531                     ),
1532                     LegacyScope::Invocation(invoc_id) => Scope::MacroRules(
1533                         self.output_legacy_scopes.get(&invoc_id).cloned()
1534                             .unwrap_or(self.invocation_parent_scopes[&invoc_id].legacy)
1535                     ),
1536                     LegacyScope::Empty => Scope::Module(module),
1537                 }
1538                 Scope::CrateRoot => match ns {
1539                     TypeNS => {
1540                         ident.span.adjust(ExpnId::root());
1541                         Scope::ExternPrelude
1542                     }
1543                     ValueNS | MacroNS => break,
1544                 }
1545                 Scope::Module(module) => {
1546                     use_prelude = !module.no_implicit_prelude;
1547                     match self.hygienic_lexical_parent(module, &mut ident.span) {
1548                         Some(parent_module) => Scope::Module(parent_module),
1549                         None => {
1550                             ident.span.adjust(ExpnId::root());
1551                             match ns {
1552                                 TypeNS => Scope::ExternPrelude,
1553                                 ValueNS => Scope::StdLibPrelude,
1554                                 MacroNS => Scope::RegisteredAttrs,
1555                             }
1556                         }
1557                     }
1558                 }
1559                 Scope::RegisteredAttrs => Scope::MacroUsePrelude,
1560                 Scope::MacroUsePrelude => Scope::StdLibPrelude,
1561                 Scope::BuiltinAttrs => Scope::LegacyPluginHelpers,
1562                 Scope::LegacyPluginHelpers => break, // nowhere else to search
1563                 Scope::ExternPrelude if is_absolute_path => break,
1564                 Scope::ExternPrelude => Scope::ToolPrelude,
1565                 Scope::ToolPrelude => Scope::StdLibPrelude,
1566                 Scope::StdLibPrelude => match ns {
1567                     TypeNS => Scope::BuiltinTypes,
1568                     ValueNS => break, // nowhere else to search
1569                     MacroNS => Scope::BuiltinAttrs,
1570                 }
1571                 Scope::BuiltinTypes => break, // nowhere else to search
1572             };
1573         }
1574
1575         None
1576     }
1577
1578     /// This resolves the identifier `ident` in the namespace `ns` in the current lexical scope.
1579     /// More specifically, we proceed up the hierarchy of scopes and return the binding for
1580     /// `ident` in the first scope that defines it (or None if no scopes define it).
1581     ///
1582     /// A block's items are above its local variables in the scope hierarchy, regardless of where
1583     /// the items are defined in the block. For example,
1584     /// ```rust
1585     /// fn f() {
1586     ///    g(); // Since there are no local variables in scope yet, this resolves to the item.
1587     ///    let g = || {};
1588     ///    fn g() {}
1589     ///    g(); // This resolves to the local variable `g` since it shadows the item.
1590     /// }
1591     /// ```
1592     ///
1593     /// Invariant: This must only be called during main resolution, not during
1594     /// import resolution.
1595     fn resolve_ident_in_lexical_scope(&mut self,
1596                                       mut ident: Ident,
1597                                       ns: Namespace,
1598                                       parent_scope: &ParentScope<'a>,
1599                                       record_used_id: Option<NodeId>,
1600                                       path_span: Span,
1601                                       ribs: &[Rib<'a>])
1602                                       -> Option<LexicalScopeBinding<'a>> {
1603         assert!(ns == TypeNS || ns == ValueNS);
1604         if ident.name == kw::Invalid {
1605             return Some(LexicalScopeBinding::Res(Res::Err));
1606         }
1607         let (general_span, modern_span) = if ident.name == kw::SelfUpper {
1608             // FIXME(jseyfried) improve `Self` hygiene
1609             let empty_span = ident.span.with_ctxt(SyntaxContext::root());
1610             (empty_span, empty_span)
1611         } else if ns == TypeNS {
1612             let modern_span = ident.span.modern();
1613             (modern_span, modern_span)
1614         } else {
1615             (ident.span.modern_and_legacy(), ident.span.modern())
1616         };
1617         ident.span = general_span;
1618         let modern_ident = Ident { span: modern_span, ..ident };
1619
1620         // Walk backwards up the ribs in scope.
1621         let record_used = record_used_id.is_some();
1622         let mut module = self.graph_root;
1623         for i in (0 .. ribs.len()).rev() {
1624             debug!("walk rib\n{:?}", ribs[i].bindings);
1625             // Use the rib kind to determine whether we are resolving parameters
1626             // (modern hygiene) or local variables (legacy hygiene).
1627             let rib_ident = if ribs[i].kind.contains_params() {
1628                 modern_ident
1629             } else {
1630                 ident
1631             };
1632             if let Some(res) = ribs[i].bindings.get(&rib_ident).cloned() {
1633                 // The ident resolves to a type parameter or local variable.
1634                 return Some(LexicalScopeBinding::Res(
1635                     self.validate_res_from_ribs(i, rib_ident, res, record_used, path_span, ribs),
1636                 ));
1637             }
1638
1639             module = match ribs[i].kind {
1640                 ModuleRibKind(module) => module,
1641                 MacroDefinition(def) if def == self.macro_def(ident.span.ctxt()) => {
1642                     // If an invocation of this macro created `ident`, give up on `ident`
1643                     // and switch to `ident`'s source from the macro definition.
1644                     ident.span.remove_mark();
1645                     continue
1646                 }
1647                 _ => continue,
1648             };
1649
1650
1651             let item = self.resolve_ident_in_module_unadjusted(
1652                 ModuleOrUniformRoot::Module(module),
1653                 ident,
1654                 ns,
1655                 parent_scope,
1656                 record_used,
1657                 path_span,
1658             );
1659             if let Ok(binding) = item {
1660                 // The ident resolves to an item.
1661                 return Some(LexicalScopeBinding::Item(binding));
1662             }
1663
1664             match module.kind {
1665                 ModuleKind::Block(..) => {}, // We can see through blocks
1666                 _ => break,
1667             }
1668         }
1669
1670         ident = modern_ident;
1671         let mut poisoned = None;
1672         loop {
1673             let opt_module = if let Some(node_id) = record_used_id {
1674                 self.hygienic_lexical_parent_with_compatibility_fallback(module, &mut ident.span,
1675                                                                          node_id, &mut poisoned)
1676             } else {
1677                 self.hygienic_lexical_parent(module, &mut ident.span)
1678             };
1679             module = unwrap_or!(opt_module, break);
1680             let adjusted_parent_scope = &ParentScope { module, ..*parent_scope };
1681             let result = self.resolve_ident_in_module_unadjusted(
1682                 ModuleOrUniformRoot::Module(module),
1683                 ident,
1684                 ns,
1685                 adjusted_parent_scope,
1686                 record_used,
1687                 path_span,
1688             );
1689
1690             match result {
1691                 Ok(binding) => {
1692                     if let Some(node_id) = poisoned {
1693                         self.lint_buffer.buffer_lint_with_diagnostic(
1694                             lint::builtin::PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
1695                             node_id, ident.span,
1696                             &format!("cannot find {} `{}` in this scope", ns.descr(), ident),
1697                             lint::builtin::BuiltinLintDiagnostics::
1698                                 ProcMacroDeriveResolutionFallback(ident.span),
1699                         );
1700                     }
1701                     return Some(LexicalScopeBinding::Item(binding))
1702                 }
1703                 Err(Determined) => continue,
1704                 Err(Undetermined) =>
1705                     span_bug!(ident.span, "undetermined resolution during main resolution pass"),
1706             }
1707         }
1708
1709         if !module.no_implicit_prelude {
1710             ident.span.adjust(ExpnId::root());
1711             if ns == TypeNS {
1712                 if let Some(binding) = self.extern_prelude_get(ident, !record_used) {
1713                     return Some(LexicalScopeBinding::Item(binding));
1714                 }
1715                 if let Some(ident) = self.registered_tools.get(&ident) {
1716                     let binding = (Res::ToolMod, ty::Visibility::Public,
1717                                    ident.span, ExpnId::root()).to_name_binding(self.arenas);
1718                     return Some(LexicalScopeBinding::Item(binding));
1719                 }
1720             }
1721             if let Some(prelude) = self.prelude {
1722                 if let Ok(binding) = self.resolve_ident_in_module_unadjusted(
1723                     ModuleOrUniformRoot::Module(prelude),
1724                     ident,
1725                     ns,
1726                     parent_scope,
1727                     false,
1728                     path_span,
1729                 ) {
1730                     return Some(LexicalScopeBinding::Item(binding));
1731                 }
1732             }
1733         }
1734
1735         None
1736     }
1737
1738     fn hygienic_lexical_parent(&mut self, module: Module<'a>, span: &mut Span)
1739                                -> Option<Module<'a>> {
1740         if !module.expansion.outer_expn_is_descendant_of(span.ctxt()) {
1741             return Some(self.macro_def_scope(span.remove_mark()));
1742         }
1743
1744         if let ModuleKind::Block(..) = module.kind {
1745             return Some(module.parent.unwrap().nearest_item_scope());
1746         }
1747
1748         None
1749     }
1750
1751     fn hygienic_lexical_parent_with_compatibility_fallback(&mut self, module: Module<'a>,
1752                                                            span: &mut Span, node_id: NodeId,
1753                                                            poisoned: &mut Option<NodeId>)
1754                                                            -> Option<Module<'a>> {
1755         if let module @ Some(..) = self.hygienic_lexical_parent(module, span) {
1756             return module;
1757         }
1758
1759         // We need to support the next case under a deprecation warning
1760         // ```
1761         // struct MyStruct;
1762         // ---- begin: this comes from a proc macro derive
1763         // mod implementation_details {
1764         //     // Note that `MyStruct` is not in scope here.
1765         //     impl SomeTrait for MyStruct { ... }
1766         // }
1767         // ---- end
1768         // ```
1769         // So we have to fall back to the module's parent during lexical resolution in this case.
1770         if let Some(parent) = module.parent {
1771             // Inner module is inside the macro, parent module is outside of the macro.
1772             if module.expansion != parent.expansion &&
1773             module.expansion.is_descendant_of(parent.expansion) {
1774                 // The macro is a proc macro derive
1775                 if let Some(&def_id) = self.macro_defs.get(&module.expansion) {
1776                     if let Some(ext) = self.get_macro_by_def_id(def_id) {
1777                         if !ext.is_builtin && ext.macro_kind() == MacroKind::Derive {
1778                             if parent.expansion.outer_expn_is_descendant_of(span.ctxt()) {
1779                                 *poisoned = Some(node_id);
1780                                 return module.parent;
1781                             }
1782                         }
1783                     }
1784                 }
1785             }
1786         }
1787
1788         None
1789     }
1790
1791     fn resolve_ident_in_module(
1792         &mut self,
1793         module: ModuleOrUniformRoot<'a>,
1794         ident: Ident,
1795         ns: Namespace,
1796         parent_scope: &ParentScope<'a>,
1797         record_used: bool,
1798         path_span: Span
1799     ) -> Result<&'a NameBinding<'a>, Determinacy> {
1800         self.resolve_ident_in_module_ext(
1801             module, ident, ns, parent_scope, record_used, path_span
1802         ).map_err(|(determinacy, _)| determinacy)
1803     }
1804
1805     fn resolve_ident_in_module_ext(
1806         &mut self,
1807         module: ModuleOrUniformRoot<'a>,
1808         mut ident: Ident,
1809         ns: Namespace,
1810         parent_scope: &ParentScope<'a>,
1811         record_used: bool,
1812         path_span: Span
1813     ) -> Result<&'a NameBinding<'a>, (Determinacy, Weak)> {
1814         let tmp_parent_scope;
1815         let mut adjusted_parent_scope = parent_scope;
1816         match module {
1817             ModuleOrUniformRoot::Module(m) => {
1818                 if let Some(def) = ident.span.modernize_and_adjust(m.expansion) {
1819                     tmp_parent_scope =
1820                         ParentScope { module: self.macro_def_scope(def), ..*parent_scope };
1821                     adjusted_parent_scope = &tmp_parent_scope;
1822                 }
1823             }
1824             ModuleOrUniformRoot::ExternPrelude => {
1825                 ident.span.modernize_and_adjust(ExpnId::root());
1826             }
1827             ModuleOrUniformRoot::CrateRootAndExternPrelude |
1828             ModuleOrUniformRoot::CurrentScope => {
1829                 // No adjustments
1830             }
1831         }
1832         let result = self.resolve_ident_in_module_unadjusted_ext(
1833             module, ident, ns, adjusted_parent_scope, false, record_used, path_span,
1834         );
1835         result
1836     }
1837
1838     fn resolve_crate_root(&mut self, ident: Ident) -> Module<'a> {
1839         let mut ctxt = ident.span.ctxt();
1840         let mark = if ident.name == kw::DollarCrate {
1841             // When resolving `$crate` from a `macro_rules!` invoked in a `macro`,
1842             // we don't want to pretend that the `macro_rules!` definition is in the `macro`
1843             // as described in `SyntaxContext::apply_mark`, so we ignore prepended modern marks.
1844             // FIXME: This is only a guess and it doesn't work correctly for `macro_rules!`
1845             // definitions actually produced by `macro` and `macro` definitions produced by
1846             // `macro_rules!`, but at least such configurations are not stable yet.
1847             ctxt = ctxt.modern_and_legacy();
1848             let mut iter = ctxt.marks().into_iter().rev().peekable();
1849             let mut result = None;
1850             // Find the last modern mark from the end if it exists.
1851             while let Some(&(mark, transparency)) = iter.peek() {
1852                 if transparency == Transparency::Opaque {
1853                     result = Some(mark);
1854                     iter.next();
1855                 } else {
1856                     break;
1857                 }
1858             }
1859             // Then find the last legacy mark from the end if it exists.
1860             for (mark, transparency) in iter {
1861                 if transparency == Transparency::SemiTransparent {
1862                     result = Some(mark);
1863                 } else {
1864                     break;
1865                 }
1866             }
1867             result
1868         } else {
1869             ctxt = ctxt.modern();
1870             ctxt.adjust(ExpnId::root())
1871         };
1872         let module = match mark {
1873             Some(def) => self.macro_def_scope(def),
1874             None => return self.graph_root,
1875         };
1876         self.get_module(DefId { index: CRATE_DEF_INDEX, ..module.normal_ancestor_id })
1877     }
1878
1879     fn resolve_self(&mut self, ctxt: &mut SyntaxContext, module: Module<'a>) -> Module<'a> {
1880         let mut module = self.get_module(module.normal_ancestor_id);
1881         while module.span.ctxt().modern() != *ctxt {
1882             let parent = module.parent.unwrap_or_else(|| self.macro_def_scope(ctxt.remove_mark()));
1883             module = self.get_module(parent.normal_ancestor_id);
1884         }
1885         module
1886     }
1887
1888     fn resolve_path(
1889         &mut self,
1890         path: &[Segment],
1891         opt_ns: Option<Namespace>, // `None` indicates a module path in import
1892         parent_scope: &ParentScope<'a>,
1893         record_used: bool,
1894         path_span: Span,
1895         crate_lint: CrateLint,
1896     ) -> PathResult<'a> {
1897         self.resolve_path_with_ribs(
1898             path, opt_ns, parent_scope, record_used, path_span, crate_lint, None
1899         )
1900     }
1901
1902     fn resolve_path_with_ribs(
1903         &mut self,
1904         path: &[Segment],
1905         opt_ns: Option<Namespace>, // `None` indicates a module path in import
1906         parent_scope: &ParentScope<'a>,
1907         record_used: bool,
1908         path_span: Span,
1909         crate_lint: CrateLint,
1910         ribs: Option<&PerNS<Vec<Rib<'a>>>>,
1911     ) -> PathResult<'a> {
1912         let mut module = None;
1913         let mut allow_super = true;
1914         let mut second_binding = None;
1915
1916         debug!(
1917             "resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
1918              path_span={:?}, crate_lint={:?})",
1919             path,
1920             opt_ns,
1921             record_used,
1922             path_span,
1923             crate_lint,
1924         );
1925
1926         for (i, &Segment { ident, id }) in path.iter().enumerate() {
1927             debug!("resolve_path ident {} {:?} {:?}", i, ident, id);
1928             let record_segment_res = |this: &mut Self, res| {
1929                 if record_used {
1930                     if let Some(id) = id {
1931                         if !this.partial_res_map.contains_key(&id) {
1932                             assert!(id != ast::DUMMY_NODE_ID, "Trying to resolve dummy id");
1933                             this.record_partial_res(id, PartialRes::new(res));
1934                         }
1935                     }
1936                 }
1937             };
1938
1939             let is_last = i == path.len() - 1;
1940             let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
1941             let name = ident.name;
1942
1943             allow_super &= ns == TypeNS &&
1944                 (name == kw::SelfLower ||
1945                  name == kw::Super);
1946
1947             if ns == TypeNS {
1948                 if allow_super && name == kw::Super {
1949                     let mut ctxt = ident.span.ctxt().modern();
1950                     let self_module = match i {
1951                         0 => Some(self.resolve_self(&mut ctxt, parent_scope.module)),
1952                         _ => match module {
1953                             Some(ModuleOrUniformRoot::Module(module)) => Some(module),
1954                             _ => None,
1955                         },
1956                     };
1957                     if let Some(self_module) = self_module {
1958                         if let Some(parent) = self_module.parent {
1959                             module = Some(ModuleOrUniformRoot::Module(
1960                                 self.resolve_self(&mut ctxt, parent)));
1961                             continue;
1962                         }
1963                     }
1964                     let msg = "there are too many initial `super`s.".to_string();
1965                     return PathResult::Failed {
1966                         span: ident.span,
1967                         label: msg,
1968                         suggestion: None,
1969                         is_error_from_last_segment: false,
1970                     };
1971                 }
1972                 if i == 0 {
1973                     if name == kw::SelfLower {
1974                         let mut ctxt = ident.span.ctxt().modern();
1975                         module = Some(ModuleOrUniformRoot::Module(
1976                             self.resolve_self(&mut ctxt, parent_scope.module)));
1977                         continue;
1978                     }
1979                     if name == kw::PathRoot && ident.span.rust_2018() {
1980                         module = Some(ModuleOrUniformRoot::ExternPrelude);
1981                         continue;
1982                     }
1983                     if name == kw::PathRoot &&
1984                        ident.span.rust_2015() && self.session.rust_2018() {
1985                         // `::a::b` from 2015 macro on 2018 global edition
1986                         module = Some(ModuleOrUniformRoot::CrateRootAndExternPrelude);
1987                         continue;
1988                     }
1989                     if name == kw::PathRoot ||
1990                        name == kw::Crate ||
1991                        name == kw::DollarCrate {
1992                         // `::a::b`, `crate::a::b` or `$crate::a::b`
1993                         module = Some(ModuleOrUniformRoot::Module(
1994                             self.resolve_crate_root(ident)));
1995                         continue;
1996                     }
1997                 }
1998             }
1999
2000             // Report special messages for path segment keywords in wrong positions.
2001             if ident.is_path_segment_keyword() && i != 0 {
2002                 let name_str = if name == kw::PathRoot {
2003                     "crate root".to_string()
2004                 } else {
2005                     format!("`{}`", name)
2006                 };
2007                 let label = if i == 1 && path[0].ident.name == kw::PathRoot {
2008                     format!("global paths cannot start with {}", name_str)
2009                 } else {
2010                     format!("{} in paths can only be used in start position", name_str)
2011                 };
2012                 return PathResult::Failed {
2013                     span: ident.span,
2014                     label,
2015                     suggestion: None,
2016                     is_error_from_last_segment: false,
2017                 };
2018             }
2019
2020             let binding = if let Some(module) = module {
2021                 self.resolve_ident_in_module(
2022                     module, ident, ns, parent_scope, record_used, path_span
2023                 )
2024             } else if ribs.is_none() || opt_ns.is_none() || opt_ns == Some(MacroNS) {
2025                 let scopes = ScopeSet::All(ns, opt_ns.is_none());
2026                 self.early_resolve_ident_in_lexical_scope(ident, scopes, parent_scope, record_used,
2027                                                           record_used, path_span)
2028             } else {
2029                 let record_used_id =
2030                     if record_used { crate_lint.node_id().or(Some(CRATE_NODE_ID)) } else { None };
2031                 match self.resolve_ident_in_lexical_scope(
2032                     ident, ns, parent_scope, record_used_id, path_span, &ribs.unwrap()[ns]
2033                 ) {
2034                     // we found a locally-imported or available item/module
2035                     Some(LexicalScopeBinding::Item(binding)) => Ok(binding),
2036                     // we found a local variable or type param
2037                     Some(LexicalScopeBinding::Res(res))
2038                             if opt_ns == Some(TypeNS) || opt_ns == Some(ValueNS) => {
2039                         record_segment_res(self, res);
2040                         return PathResult::NonModule(PartialRes::with_unresolved_segments(
2041                             res, path.len() - 1
2042                         ));
2043                     }
2044                     _ => Err(Determinacy::determined(record_used)),
2045                 }
2046             };
2047
2048             match binding {
2049                 Ok(binding) => {
2050                     if i == 1 {
2051                         second_binding = Some(binding);
2052                     }
2053                     let res = binding.res();
2054                     let maybe_assoc = opt_ns != Some(MacroNS) && PathSource::Type.is_expected(res);
2055                     if let Some(next_module) = binding.module() {
2056                         module = Some(ModuleOrUniformRoot::Module(next_module));
2057                         record_segment_res(self, res);
2058                     } else if res == Res::ToolMod && i + 1 != path.len() {
2059                         if binding.is_import() {
2060                             self.session.struct_span_err(
2061                                 ident.span, "cannot use a tool module through an import"
2062                             ).span_note(
2063                                 binding.span, "the tool module imported here"
2064                             ).emit();
2065                         }
2066                         let res = Res::NonMacroAttr(NonMacroAttrKind::Tool);
2067                         return PathResult::NonModule(PartialRes::new(res));
2068                     } else if res == Res::Err {
2069                         return PathResult::NonModule(PartialRes::new(Res::Err));
2070                     } else if opt_ns.is_some() && (is_last || maybe_assoc) {
2071                         self.lint_if_path_starts_with_module(
2072                             crate_lint,
2073                             path,
2074                             path_span,
2075                             second_binding,
2076                         );
2077                         return PathResult::NonModule(PartialRes::with_unresolved_segments(
2078                             res, path.len() - i - 1
2079                         ));
2080                     } else {
2081                         let label = format!(
2082                             "`{}` is {} {}, not a module",
2083                             ident,
2084                             res.article(),
2085                             res.descr(),
2086                         );
2087
2088                         return PathResult::Failed {
2089                             span: ident.span,
2090                             label,
2091                             suggestion: None,
2092                             is_error_from_last_segment: is_last,
2093                         };
2094                     }
2095                 }
2096                 Err(Undetermined) => return PathResult::Indeterminate,
2097                 Err(Determined) => {
2098                     if let Some(ModuleOrUniformRoot::Module(module)) = module {
2099                         if opt_ns.is_some() && !module.is_normal() {
2100                             return PathResult::NonModule(PartialRes::with_unresolved_segments(
2101                                 module.res().unwrap(), path.len() - i
2102                             ));
2103                         }
2104                     }
2105                     let module_res = match module {
2106                         Some(ModuleOrUniformRoot::Module(module)) => module.res(),
2107                         _ => None,
2108                     };
2109                     let (label, suggestion) = if module_res == self.graph_root.res() {
2110                         let is_mod = |res| {
2111                             match res { Res::Def(DefKind::Mod, _) => true, _ => false }
2112                         };
2113                         let mut candidates =
2114                             self.lookup_import_candidates(ident, TypeNS, is_mod);
2115                         candidates.sort_by_cached_key(|c| {
2116                             (c.path.segments.len(), pprust::path_to_string(&c.path))
2117                         });
2118                         if let Some(candidate) = candidates.get(0) {
2119                             (
2120                                 String::from("unresolved import"),
2121                                 Some((
2122                                     vec![(ident.span, pprust::path_to_string(&candidate.path))],
2123                                     String::from("a similar path exists"),
2124                                     Applicability::MaybeIncorrect,
2125                                 )),
2126                             )
2127                         } else if !ident.is_reserved() {
2128                             (format!("maybe a missing crate `{}`?", ident), None)
2129                         } else {
2130                             // the parser will already have complained about the keyword being used
2131                             return PathResult::NonModule(PartialRes::new(Res::Err));
2132                         }
2133                     } else if i == 0 {
2134                         (format!("use of undeclared type or module `{}`", ident), None)
2135                     } else {
2136                         (format!("could not find `{}` in `{}`", ident, path[i - 1].ident), None)
2137                     };
2138                     return PathResult::Failed {
2139                         span: ident.span,
2140                         label,
2141                         suggestion,
2142                         is_error_from_last_segment: is_last,
2143                     };
2144                 }
2145             }
2146         }
2147
2148         self.lint_if_path_starts_with_module(crate_lint, path, path_span, second_binding);
2149
2150         PathResult::Module(match module {
2151             Some(module) => module,
2152             None if path.is_empty() => ModuleOrUniformRoot::CurrentScope,
2153             _ => span_bug!(path_span, "resolve_path: non-empty path `{:?}` has no module", path),
2154         })
2155     }
2156
2157     fn lint_if_path_starts_with_module(
2158         &mut self,
2159         crate_lint: CrateLint,
2160         path: &[Segment],
2161         path_span: Span,
2162         second_binding: Option<&NameBinding<'_>>,
2163     ) {
2164         let (diag_id, diag_span) = match crate_lint {
2165             CrateLint::No => return,
2166             CrateLint::SimplePath(id) => (id, path_span),
2167             CrateLint::UsePath { root_id, root_span } => (root_id, root_span),
2168             CrateLint::QPathTrait { qpath_id, qpath_span } => (qpath_id, qpath_span),
2169         };
2170
2171         let first_name = match path.get(0) {
2172             // In the 2018 edition this lint is a hard error, so nothing to do
2173             Some(seg) if seg.ident.span.rust_2015() && self.session.rust_2015() => seg.ident.name,
2174             _ => return,
2175         };
2176
2177         // We're only interested in `use` paths which should start with
2178         // `{{root}}` currently.
2179         if first_name != kw::PathRoot {
2180             return
2181         }
2182
2183         match path.get(1) {
2184             // If this import looks like `crate::...` it's already good
2185             Some(Segment { ident, .. }) if ident.name == kw::Crate => return,
2186             // Otherwise go below to see if it's an extern crate
2187             Some(_) => {}
2188             // If the path has length one (and it's `PathRoot` most likely)
2189             // then we don't know whether we're gonna be importing a crate or an
2190             // item in our crate. Defer this lint to elsewhere
2191             None => return,
2192         }
2193
2194         // If the first element of our path was actually resolved to an
2195         // `ExternCrate` (also used for `crate::...`) then no need to issue a
2196         // warning, this looks all good!
2197         if let Some(binding) = second_binding {
2198             if let NameBindingKind::Import { directive: d, .. } = binding.kind {
2199                 // Careful: we still want to rewrite paths from
2200                 // renamed extern crates.
2201                 if let ImportDirectiveSubclass::ExternCrate { source: None, .. } = d.subclass {
2202                     return
2203                 }
2204             }
2205         }
2206
2207         let diag = lint::builtin::BuiltinLintDiagnostics
2208             ::AbsPathWithModule(diag_span);
2209         self.lint_buffer.buffer_lint_with_diagnostic(
2210             lint::builtin::ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
2211             diag_id, diag_span,
2212             "absolute paths must start with `self`, `super`, \
2213             `crate`, or an external crate name in the 2018 edition",
2214             diag);
2215     }
2216
2217     // Validate a local resolution (from ribs).
2218     fn validate_res_from_ribs(
2219         &mut self,
2220         rib_index: usize,
2221         rib_ident: Ident,
2222         res: Res,
2223         record_used: bool,
2224         span: Span,
2225         all_ribs: &[Rib<'a>],
2226     ) -> Res {
2227         debug!("validate_res_from_ribs({:?})", res);
2228         let ribs = &all_ribs[rib_index + 1..];
2229
2230         // An invalid forward use of a type parameter from a previous default.
2231         if let ForwardTyParamBanRibKind = all_ribs[rib_index].kind {
2232             if record_used {
2233                 let res_error = if rib_ident.name == kw::SelfUpper {
2234                     ResolutionError::SelfInTyParamDefault
2235                 } else {
2236                     ResolutionError::ForwardDeclaredTyParam
2237                 };
2238                 self.report_error(span, res_error);
2239             }
2240             assert_eq!(res, Res::Err);
2241             return Res::Err;
2242         }
2243
2244         match res {
2245             Res::Local(_) => {
2246                 use ResolutionError::*;
2247                 let mut res_err = None;
2248
2249                 for rib in ribs {
2250                     match rib.kind {
2251                         NormalRibKind | ModuleRibKind(..) | MacroDefinition(..) |
2252                         ForwardTyParamBanRibKind => {
2253                             // Nothing to do. Continue.
2254                         }
2255                         ItemRibKind(_) | FnItemRibKind | AssocItemRibKind => {
2256                             // This was an attempt to access an upvar inside a
2257                             // named function item. This is not allowed, so we
2258                             // report an error.
2259                             if record_used {
2260                                 // We don't immediately trigger a resolve error, because
2261                                 // we want certain other resolution errors (namely those
2262                                 // emitted for `ConstantItemRibKind` below) to take
2263                                 // precedence.
2264                                 res_err = Some(CannotCaptureDynamicEnvironmentInFnItem);
2265                             }
2266                         }
2267                         ConstantItemRibKind => {
2268                             // Still doesn't deal with upvars
2269                             if record_used {
2270                                 self.report_error(span, AttemptToUseNonConstantValueInConstant);
2271                             }
2272                             return Res::Err;
2273                         }
2274                     }
2275                 }
2276                 if let Some(res_err) = res_err {
2277                      self.report_error(span, res_err);
2278                      return Res::Err;
2279                 }
2280             }
2281             Res::Def(DefKind::TyParam, _) | Res::SelfTy(..) => {
2282                 for rib in ribs {
2283                     let has_generic_params = match rib.kind {
2284                         NormalRibKind | AssocItemRibKind |
2285                         ModuleRibKind(..) | MacroDefinition(..) | ForwardTyParamBanRibKind |
2286                         ConstantItemRibKind => {
2287                             // Nothing to do. Continue.
2288                             continue;
2289                         }
2290                         // This was an attempt to use a type parameter outside its scope.
2291                         ItemRibKind(has_generic_params) => has_generic_params,
2292                         FnItemRibKind => HasGenericParams::Yes,
2293                     };
2294
2295                     if record_used {
2296                         self.report_error(span, ResolutionError::GenericParamsFromOuterFunction(
2297                             res, has_generic_params));
2298                     }
2299                     return Res::Err;
2300                 }
2301             }
2302             Res::Def(DefKind::ConstParam, _) => {
2303                 let mut ribs = ribs.iter().peekable();
2304                 if let Some(Rib { kind: FnItemRibKind, .. }) = ribs.peek() {
2305                     // When declaring const parameters inside function signatures, the first rib
2306                     // is always a `FnItemRibKind`. In this case, we can skip it, to avoid it
2307                     // (spuriously) conflicting with the const param.
2308                     ribs.next();
2309                 }
2310                 for rib in ribs {
2311                     let has_generic_params = match rib.kind {
2312                         ItemRibKind(has_generic_params) => has_generic_params,
2313                         FnItemRibKind => HasGenericParams::Yes,
2314                         _ => continue,
2315                     };
2316
2317                     // This was an attempt to use a const parameter outside its scope.
2318                     if record_used {
2319                         self.report_error(span, ResolutionError::GenericParamsFromOuterFunction(
2320                             res, has_generic_params));
2321                     }
2322                     return Res::Err;
2323                 }
2324             }
2325             _ => {}
2326         }
2327         res
2328     }
2329
2330     fn record_partial_res(&mut self, node_id: NodeId, resolution: PartialRes) {
2331         debug!("(recording res) recording {:?} for {}", resolution, node_id);
2332         if let Some(prev_res) = self.partial_res_map.insert(node_id, resolution) {
2333             panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
2334         }
2335     }
2336
2337     fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
2338         vis.is_accessible_from(module.normal_ancestor_id, self)
2339     }
2340
2341     fn set_binding_parent_module(&mut self, binding: &'a NameBinding<'a>, module: Module<'a>) {
2342         if let Some(old_module) = self.binding_parent_modules.insert(PtrKey(binding), module) {
2343             if !ptr::eq(module, old_module) {
2344                 span_bug!(binding.span, "parent module is reset for binding");
2345             }
2346         }
2347     }
2348
2349     fn disambiguate_legacy_vs_modern(
2350         &self,
2351         legacy: &'a NameBinding<'a>,
2352         modern: &'a NameBinding<'a>,
2353     ) -> bool {
2354         // Some non-controversial subset of ambiguities "modern macro name" vs "macro_rules"
2355         // is disambiguated to mitigate regressions from macro modularization.
2356         // Scoping for `macro_rules` behaves like scoping for `let` at module level, in general.
2357         match (self.binding_parent_modules.get(&PtrKey(legacy)),
2358                self.binding_parent_modules.get(&PtrKey(modern))) {
2359             (Some(legacy), Some(modern)) =>
2360                 legacy.normal_ancestor_id == modern.normal_ancestor_id &&
2361                 modern.is_ancestor_of(legacy),
2362             _ => false,
2363         }
2364     }
2365
2366     fn binding_description(&self, b: &NameBinding<'_>, ident: Ident, from_prelude: bool) -> String {
2367         let res = b.res();
2368         if b.span.is_dummy() {
2369             let add_built_in = match b.res() {
2370                 // These already contain the "built-in" prefix or look bad with it.
2371                 Res::NonMacroAttr(..) | Res::PrimTy(..) | Res::ToolMod => false,
2372                 _ => true,
2373             };
2374             let (built_in, from) = if from_prelude {
2375                 ("", " from prelude")
2376             } else if b.is_extern_crate() && !b.is_import() &&
2377                         self.session.opts.externs.get(&ident.as_str()).is_some() {
2378                 ("", " passed with `--extern`")
2379             } else if add_built_in {
2380                 (" built-in", "")
2381             } else {
2382                 ("", "")
2383             };
2384
2385             let article = if built_in.is_empty() { res.article() } else { "a" };
2386             format!("{a}{built_in} {thing}{from}",
2387                     a = article, thing = res.descr(), built_in = built_in, from = from)
2388         } else {
2389             let introduced = if b.is_import() { "imported" } else { "defined" };
2390             format!("the {thing} {introduced} here",
2391                     thing = res.descr(), introduced = introduced)
2392         }
2393     }
2394
2395     fn report_ambiguity_error(&self, ambiguity_error: &AmbiguityError<'_>) {
2396         let AmbiguityError { kind, ident, b1, b2, misc1, misc2 } = *ambiguity_error;
2397         let (b1, b2, misc1, misc2, swapped) = if b2.span.is_dummy() && !b1.span.is_dummy() {
2398             // We have to print the span-less alternative first, otherwise formatting looks bad.
2399             (b2, b1, misc2, misc1, true)
2400         } else {
2401             (b1, b2, misc1, misc2, false)
2402         };
2403
2404         let mut err = struct_span_err!(self.session, ident.span, E0659,
2405                                        "`{ident}` is ambiguous ({why})",
2406                                        ident = ident, why = kind.descr());
2407         err.span_label(ident.span, "ambiguous name");
2408
2409         let mut could_refer_to = |b: &NameBinding<'_>, misc: AmbiguityErrorMisc, also: &str| {
2410             let what = self.binding_description(b, ident, misc == AmbiguityErrorMisc::FromPrelude);
2411             let note_msg = format!("`{ident}` could{also} refer to {what}",
2412                                    ident = ident, also = also, what = what);
2413
2414             let thing = b.res().descr();
2415             let mut help_msgs = Vec::new();
2416             if b.is_glob_import() && (kind == AmbiguityKind::GlobVsGlob ||
2417                                       kind == AmbiguityKind::GlobVsExpanded ||
2418                                       kind == AmbiguityKind::GlobVsOuter &&
2419                                       swapped != also.is_empty()) {
2420                 help_msgs.push(format!("consider adding an explicit import of \
2421                                         `{ident}` to disambiguate", ident = ident))
2422             }
2423             if b.is_extern_crate() && ident.span.rust_2018() {
2424                 help_msgs.push(format!(
2425                     "use `::{ident}` to refer to this {thing} unambiguously",
2426                     ident = ident, thing = thing,
2427                 ))
2428             }
2429             if misc == AmbiguityErrorMisc::SuggestCrate {
2430                 help_msgs.push(format!(
2431                     "use `crate::{ident}` to refer to this {thing} unambiguously",
2432                     ident = ident, thing = thing,
2433                 ))
2434             } else if misc == AmbiguityErrorMisc::SuggestSelf {
2435                 help_msgs.push(format!(
2436                     "use `self::{ident}` to refer to this {thing} unambiguously",
2437                     ident = ident, thing = thing,
2438                 ))
2439             }
2440
2441             err.span_note(b.span, &note_msg);
2442             for (i, help_msg) in help_msgs.iter().enumerate() {
2443                 let or = if i == 0 { "" } else { "or " };
2444                 err.help(&format!("{}{}", or, help_msg));
2445             }
2446         };
2447
2448         could_refer_to(b1, misc1, "");
2449         could_refer_to(b2, misc2, " also");
2450         err.emit();
2451     }
2452
2453     fn report_errors(&mut self, krate: &Crate) {
2454         self.report_with_use_injections(krate);
2455
2456         for &(span_use, span_def) in &self.macro_expanded_macro_export_errors {
2457             let msg = "macro-expanded `macro_export` macros from the current crate \
2458                        cannot be referred to by absolute paths";
2459             self.lint_buffer.buffer_lint_with_diagnostic(
2460                 lint::builtin::MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
2461                 CRATE_NODE_ID, span_use, msg,
2462                 lint::builtin::BuiltinLintDiagnostics::
2463                     MacroExpandedMacroExportsAccessedByAbsolutePaths(span_def),
2464             );
2465         }
2466
2467         for ambiguity_error in &self.ambiguity_errors {
2468             self.report_ambiguity_error(ambiguity_error);
2469         }
2470
2471         let mut reported_spans = FxHashSet::default();
2472         for &PrivacyError(dedup_span, ident, binding) in &self.privacy_errors {
2473             if reported_spans.insert(dedup_span) {
2474                 let session = &self.session;
2475                 let mk_struct_span_error = |is_constructor| {
2476                     struct_span_err!(
2477                         session,
2478                         ident.span,
2479                         E0603,
2480                         "{}{} `{}` is private",
2481                         binding.res().descr(),
2482                         if is_constructor { " constructor"} else { "" },
2483                         ident.name,
2484                     )
2485                 };
2486
2487                 let mut err = if let NameBindingKind::Res(
2488                     Res::Def(DefKind::Ctor(CtorOf::Struct, CtorKind::Fn), ctor_def_id), _
2489                 ) = binding.kind {
2490                     let def_id = (&*self).parent(ctor_def_id).expect("no parent for a constructor");
2491                     if let Some(fields) = self.field_names.get(&def_id) {
2492                         let mut err = mk_struct_span_error(true);
2493                         let first_field = fields.first().expect("empty field list in the map");
2494                         err.span_label(
2495                             fields.iter().fold(first_field.span, |acc, field| acc.to(field.span)),
2496                             "a constructor is private if any of the fields is private",
2497                         );
2498                         err
2499                     } else {
2500                         mk_struct_span_error(false)
2501                     }
2502                 } else {
2503                     mk_struct_span_error(false)
2504                 };
2505
2506                 err.emit();
2507             }
2508         }
2509     }
2510
2511     fn report_with_use_injections(&mut self, krate: &Crate) {
2512         for UseError { mut err, candidates, node_id, better } in self.use_injections.drain(..) {
2513             let (span, found_use) = UsePlacementFinder::check(krate, node_id);
2514             if !candidates.is_empty() {
2515                 diagnostics::show_candidates(&mut err, span, &candidates, better, found_use);
2516             }
2517             err.emit();
2518         }
2519     }
2520
2521     fn report_conflict<'b>(&mut self,
2522                        parent: Module<'_>,
2523                        ident: Ident,
2524                        ns: Namespace,
2525                        new_binding: &NameBinding<'b>,
2526                        old_binding: &NameBinding<'b>) {
2527         // Error on the second of two conflicting names
2528         if old_binding.span.lo() > new_binding.span.lo() {
2529             return self.report_conflict(parent, ident, ns, old_binding, new_binding);
2530         }
2531
2532         let container = match parent.kind {
2533             ModuleKind::Def(DefKind::Mod, _, _) => "module",
2534             ModuleKind::Def(DefKind::Trait, _, _) => "trait",
2535             ModuleKind::Block(..) => "block",
2536             _ => "enum",
2537         };
2538
2539         let old_noun = match old_binding.is_import() {
2540             true => "import",
2541             false => "definition",
2542         };
2543
2544         let new_participle = match new_binding.is_import() {
2545             true => "imported",
2546             false => "defined",
2547         };
2548
2549         let (name, span) = (ident.name, self.session.source_map().def_span(new_binding.span));
2550
2551         if let Some(s) = self.name_already_seen.get(&name) {
2552             if s == &span {
2553                 return;
2554             }
2555         }
2556
2557         let old_kind = match (ns, old_binding.module()) {
2558             (ValueNS, _) => "value",
2559             (MacroNS, _) => "macro",
2560             (TypeNS, _) if old_binding.is_extern_crate() => "extern crate",
2561             (TypeNS, Some(module)) if module.is_normal() => "module",
2562             (TypeNS, Some(module)) if module.is_trait() => "trait",
2563             (TypeNS, _) => "type",
2564         };
2565
2566         let msg = format!("the name `{}` is defined multiple times", name);
2567
2568         let mut err = match (old_binding.is_extern_crate(), new_binding.is_extern_crate()) {
2569             (true, true) => struct_span_err!(self.session, span, E0259, "{}", msg),
2570             (true, _) | (_, true) => match new_binding.is_import() && old_binding.is_import() {
2571                 true => struct_span_err!(self.session, span, E0254, "{}", msg),
2572                 false => struct_span_err!(self.session, span, E0260, "{}", msg),
2573             },
2574             _ => match (old_binding.is_import(), new_binding.is_import()) {
2575                 (false, false) => struct_span_err!(self.session, span, E0428, "{}", msg),
2576                 (true, true) => struct_span_err!(self.session, span, E0252, "{}", msg),
2577                 _ => struct_span_err!(self.session, span, E0255, "{}", msg),
2578             },
2579         };
2580
2581         err.note(&format!("`{}` must be defined only once in the {} namespace of this {}",
2582                           name,
2583                           ns.descr(),
2584                           container));
2585
2586         err.span_label(span, format!("`{}` re{} here", name, new_participle));
2587         err.span_label(
2588             self.session.source_map().def_span(old_binding.span),
2589             format!("previous {} of the {} `{}` here", old_noun, old_kind, name),
2590         );
2591
2592         // See https://github.com/rust-lang/rust/issues/32354
2593         use NameBindingKind::Import;
2594         let directive = match (&new_binding.kind, &old_binding.kind) {
2595             // If there are two imports where one or both have attributes then prefer removing the
2596             // import without attributes.
2597             (Import { directive: new, .. }, Import { directive: old, .. }) if {
2598                 !new_binding.span.is_dummy() && !old_binding.span.is_dummy() &&
2599                     (new.has_attributes || old.has_attributes)
2600             } => {
2601                 if old.has_attributes {
2602                     Some((new, new_binding.span, true))
2603                 } else {
2604                     Some((old, old_binding.span, true))
2605                 }
2606             },
2607             // Otherwise prioritize the new binding.
2608             (Import { directive, .. }, other) if !new_binding.span.is_dummy() =>
2609                 Some((directive, new_binding.span, other.is_import())),
2610             (other, Import { directive, .. }) if !old_binding.span.is_dummy() =>
2611                 Some((directive, old_binding.span, other.is_import())),
2612             _ => None,
2613         };
2614
2615         // Check if the target of the use for both bindings is the same.
2616         let duplicate = new_binding.res().opt_def_id() == old_binding.res().opt_def_id();
2617         let has_dummy_span = new_binding.span.is_dummy() || old_binding.span.is_dummy();
2618         let from_item = self.extern_prelude.get(&ident)
2619             .map(|entry| entry.introduced_by_item)
2620             .unwrap_or(true);
2621         // Only suggest removing an import if both bindings are to the same def, if both spans
2622         // aren't dummy spans. Further, if both bindings are imports, then the ident must have
2623         // been introduced by a item.
2624         let should_remove_import = duplicate && !has_dummy_span &&
2625             ((new_binding.is_extern_crate() || old_binding.is_extern_crate()) || from_item);
2626
2627         match directive {
2628             Some((directive, span, true)) if should_remove_import && directive.is_nested() =>
2629                 self.add_suggestion_for_duplicate_nested_use(&mut err, directive, span),
2630             Some((directive, _, true)) if should_remove_import && !directive.is_glob() => {
2631                 // Simple case - remove the entire import. Due to the above match arm, this can
2632                 // only be a single use so just remove it entirely.
2633                 err.tool_only_span_suggestion(
2634                     directive.use_span_with_attributes,
2635                     "remove unnecessary import",
2636                     String::new(),
2637                     Applicability::MaybeIncorrect,
2638                 );
2639             },
2640             Some((directive, span, _)) =>
2641                 self.add_suggestion_for_rename_of_use(&mut err, name, directive, span),
2642             _ => {},
2643         }
2644
2645         err.emit();
2646         self.name_already_seen.insert(name, span);
2647     }
2648
2649     /// This function adds a suggestion to change the binding name of a new import that conflicts
2650     /// with an existing import.
2651     ///
2652     /// ```ignore (diagnostic)
2653     /// help: you can use `as` to change the binding name of the import
2654     ///    |
2655     /// LL | use foo::bar as other_bar;
2656     ///    |     ^^^^^^^^^^^^^^^^^^^^^
2657     /// ```
2658     fn add_suggestion_for_rename_of_use(
2659         &self,
2660         err: &mut DiagnosticBuilder<'_>,
2661         name: Name,
2662         directive: &ImportDirective<'_>,
2663         binding_span: Span,
2664     ) {
2665         let suggested_name = if name.as_str().chars().next().unwrap().is_uppercase() {
2666             format!("Other{}", name)
2667         } else {
2668             format!("other_{}", name)
2669         };
2670
2671         let mut suggestion = None;
2672         match directive.subclass {
2673             ImportDirectiveSubclass::SingleImport { type_ns_only: true, .. } =>
2674                 suggestion = Some(format!("self as {}", suggested_name)),
2675             ImportDirectiveSubclass::SingleImport { source, .. } => {
2676                 if let Some(pos) = source.span.hi().0.checked_sub(binding_span.lo().0)
2677                                                      .map(|pos| pos as usize) {
2678                     if let Ok(snippet) = self.session.source_map()
2679                                                      .span_to_snippet(binding_span) {
2680                         if pos <= snippet.len() {
2681                             suggestion = Some(format!(
2682                                 "{} as {}{}",
2683                                 &snippet[..pos],
2684                                 suggested_name,
2685                                 if snippet.ends_with(";") { ";" } else { "" }
2686                             ))
2687                         }
2688                     }
2689                 }
2690             }
2691             ImportDirectiveSubclass::ExternCrate { source, target, .. } =>
2692                 suggestion = Some(format!(
2693                     "extern crate {} as {};",
2694                     source.unwrap_or(target.name),
2695                     suggested_name,
2696                 )),
2697             _ => unreachable!(),
2698         }
2699
2700         let rename_msg = "you can use `as` to change the binding name of the import";
2701         if let Some(suggestion) = suggestion {
2702             err.span_suggestion(
2703                 binding_span,
2704                 rename_msg,
2705                 suggestion,
2706                 Applicability::MaybeIncorrect,
2707             );
2708         } else {
2709             err.span_label(binding_span, rename_msg);
2710         }
2711     }
2712
2713     /// This function adds a suggestion to remove a unnecessary binding from an import that is
2714     /// nested. In the following example, this function will be invoked to remove the `a` binding
2715     /// in the second use statement:
2716     ///
2717     /// ```ignore (diagnostic)
2718     /// use issue_52891::a;
2719     /// use issue_52891::{d, a, e};
2720     /// ```
2721     ///
2722     /// The following suggestion will be added:
2723     ///
2724     /// ```ignore (diagnostic)
2725     /// use issue_52891::{d, a, e};
2726     ///                      ^-- help: remove unnecessary import
2727     /// ```
2728     ///
2729     /// If the nested use contains only one import then the suggestion will remove the entire
2730     /// line.
2731     ///
2732     /// It is expected that the directive provided is a nested import - this isn't checked by the
2733     /// function. If this invariant is not upheld, this function's behaviour will be unexpected
2734     /// as characters expected by span manipulations won't be present.
2735     fn add_suggestion_for_duplicate_nested_use(
2736         &self,
2737         err: &mut DiagnosticBuilder<'_>,
2738         directive: &ImportDirective<'_>,
2739         binding_span: Span,
2740     ) {
2741         assert!(directive.is_nested());
2742         let message = "remove unnecessary import";
2743
2744         // Two examples will be used to illustrate the span manipulations we're doing:
2745         //
2746         // - Given `use issue_52891::{d, a, e};` where `a` is a duplicate then `binding_span` is
2747         //   `a` and `directive.use_span` is `issue_52891::{d, a, e};`.
2748         // - Given `use issue_52891::{d, e, a};` where `a` is a duplicate then `binding_span` is
2749         //   `a` and `directive.use_span` is `issue_52891::{d, e, a};`.
2750
2751         let (found_closing_brace, span) = find_span_of_binding_until_next_binding(
2752             self.session, binding_span, directive.use_span,
2753         );
2754
2755         // If there was a closing brace then identify the span to remove any trailing commas from
2756         // previous imports.
2757         if found_closing_brace {
2758             if let Some(span) = extend_span_to_previous_binding(self.session, span) {
2759                 err.tool_only_span_suggestion(span, message, String::new(),
2760                                               Applicability::MaybeIncorrect);
2761             } else {
2762                 // Remove the entire line if we cannot extend the span back, this indicates a
2763                 // `issue_52891::{self}` case.
2764                 err.span_suggestion(directive.use_span_with_attributes, message, String::new(),
2765                                     Applicability::MaybeIncorrect);
2766             }
2767
2768             return;
2769         }
2770
2771         err.span_suggestion(span, message, String::new(), Applicability::MachineApplicable);
2772     }
2773
2774     fn extern_prelude_get(&mut self, ident: Ident, speculative: bool)
2775                           -> Option<&'a NameBinding<'a>> {
2776         if ident.is_path_segment_keyword() {
2777             // Make sure `self`, `super` etc produce an error when passed to here.
2778             return None;
2779         }
2780         self.extern_prelude.get(&ident.modern()).cloned().and_then(|entry| {
2781             if let Some(binding) = entry.extern_crate_item {
2782                 if !speculative && entry.introduced_by_item {
2783                     self.record_use(ident, TypeNS, binding, false);
2784                 }
2785                 Some(binding)
2786             } else {
2787                 let crate_id = if !speculative {
2788                     self.crate_loader.process_path_extern(ident.name, ident.span)
2789                 } else if let Some(crate_id) =
2790                         self.crate_loader.maybe_process_path_extern(ident.name, ident.span) {
2791                     crate_id
2792                 } else {
2793                     return None;
2794                 };
2795                 let crate_root = self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX });
2796                 Some((crate_root, ty::Visibility::Public, DUMMY_SP, ExpnId::root())
2797                     .to_name_binding(self.arenas))
2798             }
2799         })
2800     }
2801
2802     /// Rustdoc uses this to resolve things in a recoverable way. `ResolutionError<'a>`
2803     /// isn't something that can be returned because it can't be made to live that long,
2804     /// and also it's a private type. Fortunately rustdoc doesn't need to know the error,
2805     /// just that an error occurred.
2806     // FIXME(Manishearth): intra-doc links won't get warned of epoch changes.
2807     pub fn resolve_str_path_error(
2808         &mut self, span: Span, path_str: &str, ns: Namespace, module_id: NodeId
2809     ) -> Result<(ast::Path, Res), ()> {
2810         let path = if path_str.starts_with("::") {
2811             ast::Path {
2812                 span,
2813                 segments: iter::once(Ident::with_dummy_span(kw::PathRoot))
2814                     .chain({
2815                         path_str.split("::").skip(1).map(Ident::from_str)
2816                     })
2817                     .map(|i| self.new_ast_path_segment(i))
2818                     .collect(),
2819             }
2820         } else {
2821             ast::Path {
2822                 span,
2823                 segments: path_str
2824                     .split("::")
2825                     .map(Ident::from_str)
2826                     .map(|i| self.new_ast_path_segment(i))
2827                     .collect(),
2828             }
2829         };
2830         let module = self.block_map.get(&module_id).copied().unwrap_or_else(|| {
2831             let def_id = self.definitions.local_def_id(module_id);
2832             self.module_map.get(&def_id).copied().unwrap_or(self.graph_root)
2833         });
2834         let parent_scope = &ParentScope::module(module);
2835         let res = self.resolve_ast_path(&path, ns, parent_scope).map_err(|_| ())?;
2836         Ok((path, res))
2837     }
2838
2839     // Resolve a path passed from rustdoc or HIR lowering.
2840     fn resolve_ast_path(
2841         &mut self,
2842         path: &ast::Path,
2843         ns: Namespace,
2844         parent_scope: &ParentScope<'a>,
2845     ) -> Result<Res, (Span, ResolutionError<'a>)> {
2846         match self.resolve_path(
2847             &Segment::from_path(path), Some(ns), parent_scope, true, path.span, CrateLint::No
2848         ) {
2849             PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
2850                 Ok(module.res().unwrap()),
2851             PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 =>
2852                 Ok(path_res.base_res()),
2853             PathResult::NonModule(..) => {
2854                 Err((path.span, ResolutionError::FailedToResolve {
2855                     label: String::from("type-relative paths are not supported in this context"),
2856                     suggestion: None,
2857                 }))
2858             }
2859             PathResult::Module(..) | PathResult::Indeterminate => unreachable!(),
2860             PathResult::Failed { span, label, suggestion, .. } => {
2861                 Err((span, ResolutionError::FailedToResolve {
2862                     label,
2863                     suggestion,
2864                 }))
2865             }
2866         }
2867     }
2868
2869     fn new_ast_path_segment(&mut self, ident: Ident) -> ast::PathSegment {
2870         let mut seg = ast::PathSegment::from_ident(ident);
2871         seg.id = self.next_node_id();
2872         seg
2873     }
2874
2875     // For rustdoc.
2876     pub fn graph_root(&self) -> Module<'a> {
2877         self.graph_root
2878     }
2879
2880     // For rustdoc.
2881     pub fn all_macros(&self) -> &FxHashMap<Name, Res> {
2882         &self.all_macros
2883     }
2884 }
2885
2886 fn names_to_string(names: &[Name]) -> String {
2887     let mut result = String::new();
2888     for (i, name) in names.iter()
2889                             .filter(|name| **name != kw::PathRoot)
2890                             .enumerate() {
2891         if i > 0 {
2892             result.push_str("::");
2893         }
2894         result.push_str(&name.as_str());
2895     }
2896     result
2897 }
2898
2899 fn path_names_to_string(path: &Path) -> String {
2900     names_to_string(&path.segments.iter()
2901                         .map(|seg| seg.ident.name)
2902                         .collect::<Vec<_>>())
2903 }
2904
2905 /// A somewhat inefficient routine to obtain the name of a module.
2906 fn module_to_string(module: Module<'_>) -> Option<String> {
2907     let mut names = Vec::new();
2908
2909     fn collect_mod(names: &mut Vec<Name>, module: Module<'_>) {
2910         if let ModuleKind::Def(.., name) = module.kind {
2911             if let Some(parent) = module.parent {
2912                 names.push(name);
2913                 collect_mod(names, parent);
2914             }
2915         } else {
2916             names.push(Name::intern("<opaque>"));
2917             collect_mod(names, module.parent.unwrap());
2918         }
2919     }
2920     collect_mod(&mut names, module);
2921
2922     if names.is_empty() {
2923         return None;
2924     }
2925     names.reverse();
2926     Some(names_to_string(&names))
2927 }
2928
2929 #[derive(Copy, Clone, Debug)]
2930 enum CrateLint {
2931     /// Do not issue the lint.
2932     No,
2933
2934     /// This lint applies to some arbitrary path; e.g., `impl ::foo::Bar`.
2935     /// In this case, we can take the span of that path.
2936     SimplePath(NodeId),
2937
2938     /// This lint comes from a `use` statement. In this case, what we
2939     /// care about really is the *root* `use` statement; e.g., if we
2940     /// have nested things like `use a::{b, c}`, we care about the
2941     /// `use a` part.
2942     UsePath { root_id: NodeId, root_span: Span },
2943
2944     /// This is the "trait item" from a fully qualified path. For example,
2945     /// we might be resolving  `X::Y::Z` from a path like `<T as X::Y>::Z`.
2946     /// The `path_span` is the span of the to the trait itself (`X::Y`).
2947     QPathTrait { qpath_id: NodeId, qpath_span: Span },
2948 }
2949
2950 impl CrateLint {
2951     fn node_id(&self) -> Option<NodeId> {
2952         match *self {
2953             CrateLint::No => None,
2954             CrateLint::SimplePath(id) |
2955             CrateLint::UsePath { root_id: id, .. } |
2956             CrateLint::QPathTrait { qpath_id: id, .. } => Some(id),
2957         }
2958     }
2959 }